fix: fix close window twice
This commit is contained in:
commit
c6ad825dac
@ -169,7 +169,7 @@ use {
|
|||||||
|
|
||||||
- **`auto_play`** 使用步骤:
|
- **`auto_play`** 使用步骤:
|
||||||
|
|
||||||
> linux需要安装`festival`
|
> linux 只需要安装`festival`
|
||||||
> sudo apt-get install festival festvox-kallpc16k
|
> sudo apt-get install festival festvox-kallpc16k
|
||||||
> **_如果你想要设置音色,发音可以访问:_** [Festival 官方](https://www.cstr.ed.ac.uk/projects/festival/morevoices.html)
|
> **_如果你想要设置音色,发音可以访问:_** [Festival 官方](https://www.cstr.ed.ac.uk/projects/festival/morevoices.html)
|
||||||
> 可以选择英音、美音、男声、女声
|
> 可以选择英音、美音、男声、女声
|
||||||
|
@ -24,7 +24,7 @@ string.width = api.nvim_strwidth
|
|||||||
string.isEn = function(self)
|
string.isEn = function(self)
|
||||||
local char = { self:byte(1, -1) }
|
local char = { self:byte(1, -1) }
|
||||||
for i = 1, #self do
|
for i = 1, #self do
|
||||||
if char[i] > 127 then
|
if char[i] > 128 then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -169,6 +169,7 @@ M.setup = function(opts)
|
|||||||
conf.engines = engines
|
conf.engines = engines
|
||||||
times = times + 1
|
times = times + 1
|
||||||
if times == 1 then
|
if times == 1 then
|
||||||
|
---@format disable
|
||||||
local new_command = api.nvim_create_user_command
|
local new_command = api.nvim_create_user_command
|
||||||
new_command('Translate' , function() M.translate() end, { desc = ' 单词翻译',})
|
new_command('Translate' , function() M.translate() end, { desc = ' 单词翻译',})
|
||||||
new_command('TranslateInput' , function() M.translate('i') end, { desc = ' 搜索翻译',})
|
new_command('TranslateInput' , function() M.translate('i') end, { desc = ' 搜索翻译',})
|
||||||
@ -185,6 +186,7 @@ M.setup = function(opts)
|
|||||||
for hl, opt in pairs(hls) do
|
for hl, opt in pairs(hls) do
|
||||||
set_hl(0, hl, opt)
|
set_hl(0, hl, opt)
|
||||||
end
|
end
|
||||||
|
---@format enable
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -82,6 +82,7 @@ local function process()
|
|||||||
end
|
end
|
||||||
|
|
||||||
return function(word)
|
return function(word)
|
||||||
|
buffer:init()
|
||||||
-- TODO :online query
|
-- TODO :online query
|
||||||
-- local float = conf.float
|
-- local float = conf.float
|
||||||
vim.notify([[
|
vim.notify([[
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
local api = vim.api
|
local api = vim.api
|
||||||
local conf = require('Trans').conf
|
local conf = require('Trans').conf
|
||||||
local hover = conf.hover
|
local hover = conf.hover
|
||||||
local buffer = require('Trans.buffer')()
|
|
||||||
local error_msg = conf.icon.notfound .. ' 没有找到相关的翻译'
|
local error_msg = conf.icon.notfound .. ' 没有找到相关的翻译'
|
||||||
|
|
||||||
|
local buffer = require('Trans.buffer')()
|
||||||
|
|
||||||
local node = require('Trans.node')
|
local node = require('Trans.node')
|
||||||
local it, t, f = node.item, node.text, node.format
|
local it, t, f = node.item, node.text, node.format
|
||||||
|
|
||||||
@ -33,7 +34,6 @@ local function handle_result(result)
|
|||||||
|
|
||||||
if not phonetic and not collins and not oxford then
|
if not phonetic and not collins and not oxford then
|
||||||
buffer:addline(it(word, 'TransWord'))
|
buffer:addline(it(word, 'TransWord'))
|
||||||
|
|
||||||
else
|
else
|
||||||
buffer:addline(f {
|
buffer:addline(f {
|
||||||
width = hover.width,
|
width = hover.width,
|
||||||
@ -50,7 +50,6 @@ local function handle_result(result)
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
tag = function(tag)
|
tag = function(tag)
|
||||||
addtitle('标签')
|
addtitle('标签')
|
||||||
local tag_map = {
|
local tag_map = {
|
||||||
@ -86,7 +85,6 @@ local function handle_result(result)
|
|||||||
|
|
||||||
buffer:addline('')
|
buffer:addline('')
|
||||||
end,
|
end,
|
||||||
|
|
||||||
pos = function(pos)
|
pos = function(pos)
|
||||||
addtitle('词性')
|
addtitle('词性')
|
||||||
local pos_map = {
|
local pos_map = {
|
||||||
@ -114,7 +112,6 @@ local function handle_result(result)
|
|||||||
|
|
||||||
buffer:addline('')
|
buffer:addline('')
|
||||||
end,
|
end,
|
||||||
|
|
||||||
exchange = function(exchange)
|
exchange = function(exchange)
|
||||||
addtitle('词形变化')
|
addtitle('词形变化')
|
||||||
local exchange_map = {
|
local exchange_map = {
|
||||||
@ -138,7 +135,6 @@ local function handle_result(result)
|
|||||||
|
|
||||||
buffer:addline('')
|
buffer:addline('')
|
||||||
end,
|
end,
|
||||||
|
|
||||||
translation = function(translation)
|
translation = function(translation)
|
||||||
addtitle('中文翻译')
|
addtitle('中文翻译')
|
||||||
|
|
||||||
@ -150,7 +146,6 @@ local function handle_result(result)
|
|||||||
|
|
||||||
buffer:addline('')
|
buffer:addline('')
|
||||||
end,
|
end,
|
||||||
|
|
||||||
definition = function(definition)
|
definition = function(definition)
|
||||||
addtitle('英文注释')
|
addtitle('英文注释')
|
||||||
|
|
||||||
@ -215,11 +210,9 @@ local function handle_keymap(win, word)
|
|||||||
pageup = function()
|
pageup = function()
|
||||||
buffer:normal('gg')
|
buffer:normal('gg')
|
||||||
end,
|
end,
|
||||||
|
|
||||||
pagedown = function()
|
pagedown = function()
|
||||||
buffer:normal('G')
|
buffer:normal('G')
|
||||||
end,
|
end,
|
||||||
|
|
||||||
pin = function()
|
pin = function()
|
||||||
if lock then
|
if lock then
|
||||||
error('请先关闭窗口')
|
error('请先关闭窗口')
|
||||||
@ -256,7 +249,6 @@ local function handle_keymap(win, word)
|
|||||||
})
|
})
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
close = function()
|
close = function()
|
||||||
pcall(api.nvim_del_autocmd, cmd_id)
|
pcall(api.nvim_del_autocmd, cmd_id)
|
||||||
local run = win:try_close()
|
local run = win:try_close()
|
||||||
@ -265,7 +257,6 @@ local function handle_keymap(win, word)
|
|||||||
end)
|
end)
|
||||||
try_del_keymap()
|
try_del_keymap()
|
||||||
end,
|
end,
|
||||||
|
|
||||||
toggle_entry = function()
|
toggle_entry = function()
|
||||||
if lock and win:is_valid() then
|
if lock and win:is_valid() then
|
||||||
local prev = api.nvim_get_current_win()
|
local prev = api.nvim_get_current_win()
|
||||||
@ -275,7 +266,6 @@ local function handle_keymap(win, word)
|
|||||||
del('n', keymap.toggle_entry)
|
del('n', keymap.toggle_entry)
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
play = function()
|
play = function()
|
||||||
if word then
|
if word then
|
||||||
word:play()
|
word:play()
|
||||||
@ -322,7 +312,7 @@ local function online_query(win, word)
|
|||||||
local s = '%s %s'
|
local s = '%s %s'
|
||||||
local width, height = hover.width, hover.height
|
local width, height = hover.width, hover.height
|
||||||
local function waitting_result(this, times)
|
local function waitting_result(this, times)
|
||||||
for i = 1, size do
|
for i = size, 1, -1 do
|
||||||
local res = lists[i][1]
|
local res = lists[i][1]
|
||||||
if res then
|
if res then
|
||||||
buffer:wipe()
|
buffer:wipe()
|
||||||
@ -379,7 +369,6 @@ return function(word)
|
|||||||
win:set('wrap', true)
|
win:set('wrap', true)
|
||||||
handle_keymap(win, word)
|
handle_keymap(win, word)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
else
|
else
|
||||||
local win, run = open_window {
|
local win, run = open_window {
|
||||||
width = error_msg:width(),
|
width = error_msg:width(),
|
||||||
|
@ -27,8 +27,10 @@ end
|
|||||||
---@param option string option name
|
---@param option string option name
|
||||||
---@param value any
|
---@param value any
|
||||||
function window:set(option, value)
|
function window:set(option, value)
|
||||||
|
if self:is_valid() then
|
||||||
api.nvim_win_set_option(self.winid, option, value)
|
api.nvim_win_set_option(self.winid, option, value)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
---@param name string option name
|
---@param name string option name
|
||||||
---@return any
|
---@return any
|
||||||
@ -99,6 +101,7 @@ function window:try_close()
|
|||||||
field = field,
|
field = field,
|
||||||
target = 1,
|
target = 1,
|
||||||
}
|
}
|
||||||
|
|
||||||
run(function()
|
run(function()
|
||||||
api.nvim_win_close(self.winid, true)
|
api.nvim_win_close(self.winid, true)
|
||||||
end)
|
end)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user