fix: fix typo
This commit is contained in:
parent
9f93247c22
commit
2bdb386272
@ -69,7 +69,7 @@ https://user-images.githubusercontent.com/107862700/213752097-2eee026a-ddee-4531
|
|||||||
use {
|
use {
|
||||||
'JuanZoran/Trans.nvim'
|
'JuanZoran/Trans.nvim'
|
||||||
run = 'bash ./install.sh',
|
run = 'bash ./install.sh',
|
||||||
requires = 'kharji/sqlite.lua',
|
requires = 'kkharji/sqlite.lua',
|
||||||
-- 如果你不需要任何配置的话, 可以直接按照下面的方式启动
|
-- 如果你不需要任何配置的话, 可以直接按照下面的方式启动
|
||||||
config = function ()
|
config = function ()
|
||||||
require'Trans'.setup{
|
require'Trans'.setup{
|
||||||
@ -89,7 +89,7 @@ use {
|
|||||||
{ 'n', 'mi' },
|
{ 'n', 'mi' },
|
||||||
},
|
},
|
||||||
run = 'bash ./install.sh', -- 自动下载使用的本地词库
|
run = 'bash ./install.sh', -- 自动下载使用的本地词库
|
||||||
requires = 'kharji/sqlite.lua',
|
requires = 'kkharji/sqlite.lua',
|
||||||
config = function()
|
config = function()
|
||||||
require("Trans").setup {} -- 启动Trans
|
require("Trans").setup {} -- 启动Trans
|
||||||
vim.keymap.set({"v", 'n'}, "mm", '<Cmd>Translate<CR>', { desc = ' Translate' }) -- 自动判断virtual 还是 normal 模式
|
vim.keymap.set({"v", 'n'}, "mm", '<Cmd>Translate<CR>', { desc = ' Translate' }) -- 自动判断virtual 还是 normal 模式
|
||||||
|
@ -4,7 +4,7 @@ local title = vim.fn.has('nvim-0.9') == 1 and {
|
|||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
{ ' Trans', 'TransTitle' },
|
{ ' Trans', 'TransTitle' },
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
} or nil --[[ { ' Trans', 'TransTitleRound' } ]]
|
} or nil
|
||||||
|
|
||||||
|
|
||||||
M.conf = {
|
M.conf = {
|
||||||
@ -19,7 +19,6 @@ M.conf = {
|
|||||||
border = 'rounded',
|
border = 'rounded',
|
||||||
title = title,
|
title = title,
|
||||||
keymap = {
|
keymap = {
|
||||||
-- TODO :
|
|
||||||
pageup = '[[',
|
pageup = '[[',
|
||||||
pagedown = ']]',
|
pagedown = ']]',
|
||||||
pin = '<leader>[',
|
pin = '<leader>[',
|
||||||
|
@ -47,6 +47,8 @@ local function set_title()
|
|||||||
it('', round)
|
it('', round)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
title:newline('')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -252,7 +252,8 @@ action = {
|
|||||||
play = vim.fn.has('linux') == 1 and function()
|
play = vim.fn.has('linux') == 1 and function()
|
||||||
vim.fn.jobstart('echo ' .. m_result.word .. ' | festival --tts')
|
vim.fn.jobstart('echo ' .. m_result.word .. ' | festival --tts')
|
||||||
end or function()
|
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)
|
vim.fn.jobstart('node ' .. file .. ' ' .. m_result.word)
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
@ -280,7 +281,12 @@ return function(word)
|
|||||||
m_content = m_window.contents[1]
|
m_content = m_window.contents[1]
|
||||||
|
|
||||||
if m_result then
|
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
|
for _, field in ipairs(conf.order) do
|
||||||
process[field]()
|
process[field]()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user