From 5457809eef7476db1cef6252a6e532eee6c946f8 Mon Sep 17 00:00:00 2001 From: JuanZoran <1430359574@qq.com> Date: Fri, 10 Mar 2023 11:35:14 +0800 Subject: [PATCH] refactor: add -L option for install stardict --- README.md | 8 ++++---- lua/Trans/health.lua | 2 +- lua/Trans/wrapper/curl.lua | 4 +--- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a87bbd8..2bda1a7 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ _安装之前, 首先需要明确本插件的依赖:_ use { 'JuanZoran/Trans.nvim' run = function() require('Trans').install() end, -- 自动下载使用的本地词库 - requires = { 'kkharji/sqlite.lua', 'nvim-lua/plenary.nvim' }, + requires = { 'kkharji/sqlite.lua', }, -- 如果你不需要任何配置的话, 可以直接按照下面的方式启动 config = function () require'Trans'.setup{ @@ -108,7 +108,7 @@ use { { 'n', 'mi' }, }, run = function() require('Trans').install() end, -- 自动下载使用的本地词库 - requires = { 'kkharji/sqlite.lua', 'nvim-lua/plenary.nvim' }, + requires = { 'kkharji/sqlite.lua', }, config = function() require("Trans").setup {} -- 启动Trans vim.keymap.set({"n", 'x'}, "mm", 'Translate', { desc = ' Translate' }) -- 自动判断virtual 还是 normal 模式 @@ -134,7 +134,7 @@ use { -- 目前这个功能的视窗还没有做好,可以在配置里将view.i改成hover { 'mi', 'TranslateInput', desc = ' Translate From Input' }, }, - dependencies = { 'kkharji/sqlite.lua', 'nvim-lua/plenary.nvim' }, + dependencies = { 'kkharji/sqlite.lua', }, opts = { -- your configuration there } @@ -314,7 +314,7 @@ require'Trans'.setup { -- success = '#10b981', -- }, -- }, -} +} ``` diff --git a/lua/Trans/health.lua b/lua/Trans/health.lua index 488e6fd..93c36da 100644 --- a/lua/Trans/health.lua +++ b/lua/Trans/health.lua @@ -18,7 +18,7 @@ local check = function() -- INFO :Check plugin dependencies local plugin_dependencies = { - 'plenary', + -- 'plenary', 'sqlite', } diff --git a/lua/Trans/wrapper/curl.lua b/lua/Trans/wrapper/curl.lua index c3759e4..484bef9 100644 --- a/lua/Trans/wrapper/curl.lua +++ b/lua/Trans/wrapper/curl.lua @@ -7,7 +7,7 @@ curl.get = function(uri, opts) local output = opts.output -- INFO :Init Curl command with {s}ilent and {G}et - local cmd = { 'curl', '-Gs' } + local cmd = { 'curl', '-GLs' } -- INFO :Add headers if headers then @@ -56,8 +56,6 @@ curl.get = function(uri, opts) end end - vim.pretty_print(table.concat(cmd, ' ')) - vim.fn.jobstart(table.concat(cmd, ' '), { stdin = 'null', on_stdout = on_stdout,