diff --git a/README.md b/README.md index 94dc7c9..a3ca0a9 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ https://user-images.githubusercontent.com/107862700/213752097-2eee026a-ddee-4531 use { 'JuanZoran/Trans.nvim' run = 'bash ./install.sh', - requires = 'kharji/sqlite.lua', + requires = 'kkharji/sqlite.lua', -- 如果你不需要任何配置的话, 可以直接按照下面的方式启动 config = function () require'Trans'.setup{ @@ -89,7 +89,7 @@ use { { 'n', 'mi' }, }, run = 'bash ./install.sh', -- 自动下载使用的本地词库 - requires = 'kharji/sqlite.lua', + requires = 'kkharji/sqlite.lua', config = function() require("Trans").setup {} -- 启动Trans vim.keymap.set({"v", 'n'}, "mm", 'Translate', { desc = ' Translate' }) -- 自动判断virtual 还是 normal 模式 diff --git a/lua/Trans/init.lua b/lua/Trans/init.lua index 193ded3..062b5b0 100644 --- a/lua/Trans/init.lua +++ b/lua/Trans/init.lua @@ -4,7 +4,7 @@ local title = vim.fn.has('nvim-0.9') == 1 and { { '', 'TransTitleRound' }, { ' Trans', 'TransTitle' }, { '', 'TransTitleRound' }, -} or nil --[[ { ' Trans', 'TransTitleRound' } ]] +} or nil M.conf = { @@ -19,7 +19,6 @@ M.conf = { border = 'rounded', title = title, keymap = { - -- TODO : pageup = '[[', pagedown = ']]', pin = '[', diff --git a/lua/Trans/view/float.lua b/lua/Trans/view/float.lua index 8cf0c7e..1a03212 100644 --- a/lua/Trans/view/float.lua +++ b/lua/Trans/view/float.lua @@ -47,6 +47,8 @@ local function set_title() it('', round) ) ) + + title:newline('') end end diff --git a/lua/Trans/view/hover.lua b/lua/Trans/view/hover.lua index 06ca954..9bf8986 100644 --- a/lua/Trans/view/hover.lua +++ b/lua/Trans/view/hover.lua @@ -252,7 +252,8 @@ action = { play = vim.fn.has('linux') == 1 and function() vim.fn.jobstart('echo ' .. m_result.word .. ' | festival --tts') end or function() - local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua/') .. 'tts/say.js' + local seperator = vim.fn.has('unix') and '/' or '\\' + local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. seperator .. 'tts' .. seperator .. 'say.js' vim.fn.jobstart('node ' .. file .. ' ' .. m_result.word) end, } @@ -280,7 +281,12 @@ return function(word) m_content = m_window.contents[1] if m_result then - if hover.auto_play then action.play() end + if hover.auto_play then + local ok = pcall(action.play) + if not ok then + vim.notify('自动发音失败, 请检查README发音部分', vim.log.WARN) + end + end for _, field in ipairs(conf.order) do process[field]()