fix: fix close window twice

This commit is contained in:
JuanZoran 2023-02-18 13:24:13 +08:00
commit c6ad825dac
5 changed files with 21 additions and 26 deletions

View File

@ -169,7 +169,7 @@ use {
- **`auto_play`** 使用步骤:
> linux需要安装`festival`
> linux需要安装`festival`
> sudo apt-get install festival festvox-kallpc16k
> **_如果你想要设置音色发音可以访问:_** [Festival 官方](https://www.cstr.ed.ac.uk/projects/festival/morevoices.html)
> 可以选择英音、美音、男声、女声

View File

@ -24,7 +24,7 @@ string.width = api.nvim_strwidth
string.isEn = function(self)
local char = { self:byte(1, -1) }
for i = 1, #self do
if char[i] > 127 then
if char[i] > 128 then
return false
end
end
@ -169,6 +169,7 @@ M.setup = function(opts)
conf.engines = engines
times = times + 1
if times == 1 then
---@format disable
local new_command = api.nvim_create_user_command
new_command('Translate' , function() M.translate() 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
set_hl(0, hl, opt)
end
---@format enable
end
end

View File

@ -82,6 +82,7 @@ local function process()
end
return function(word)
buffer:init()
-- TODO :online query
-- local float = conf.float
vim.notify([[

View File

@ -1,9 +1,10 @@
local api = vim.api
local conf = require('Trans').conf
local hover = conf.hover
local buffer = require('Trans.buffer')()
local error_msg = conf.icon.notfound .. ' 没有找到相关的翻译'
local buffer = require('Trans.buffer')()
local node = require('Trans.node')
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
buffer:addline(it(word, 'TransWord'))
else
buffer:addline(f {
width = hover.width,
@ -50,7 +50,6 @@ local function handle_result(result)
})
end
end,
tag = function(tag)
addtitle('标签')
local tag_map = {
@ -86,7 +85,6 @@ local function handle_result(result)
buffer:addline('')
end,
pos = function(pos)
addtitle('词性')
local pos_map = {
@ -114,7 +112,6 @@ local function handle_result(result)
buffer:addline('')
end,
exchange = function(exchange)
addtitle('词形变化')
local exchange_map = {
@ -138,7 +135,6 @@ local function handle_result(result)
buffer:addline('')
end,
translation = function(translation)
addtitle('中文翻译')
@ -150,7 +146,6 @@ local function handle_result(result)
buffer:addline('')
end,
definition = function(definition)
addtitle('英文注释')
@ -215,11 +210,9 @@ local function handle_keymap(win, word)
pageup = function()
buffer:normal('gg')
end,
pagedown = function()
buffer:normal('G')
end,
pin = function()
if lock then
error('请先关闭窗口')
@ -256,7 +249,6 @@ local function handle_keymap(win, word)
})
end)
end,
close = function()
pcall(api.nvim_del_autocmd, cmd_id)
local run = win:try_close()
@ -265,7 +257,6 @@ local function handle_keymap(win, word)
end)
try_del_keymap()
end,
toggle_entry = function()
if lock and win:is_valid() then
local prev = api.nvim_get_current_win()
@ -275,7 +266,6 @@ local function handle_keymap(win, word)
del('n', keymap.toggle_entry)
end
end,
play = function()
if word then
word:play()
@ -322,7 +312,7 @@ local function online_query(win, word)
local s = '%s %s'
local width, height = hover.width, hover.height
local function waitting_result(this, times)
for i = 1, size do
for i = size, 1, -1 do
local res = lists[i][1]
if res then
buffer:wipe()
@ -379,7 +369,6 @@ return function(word)
win:set('wrap', true)
handle_keymap(win, word)
end)
else
local win, run = open_window {
width = error_msg:width(),

View File

@ -27,8 +27,10 @@ end
---@param option string option name
---@param value any
function window:set(option, value)
if self:is_valid() then
api.nvim_win_set_option(self.winid, option, value)
end
end
---@param name string option name
---@return any
@ -99,6 +101,7 @@ function window:try_close()
field = field,
target = 1,
}
run(function()
api.nvim_win_close(self.winid, true)
end)