fix: fix window is not valid
This commit is contained in:
parent
0dca4c2007
commit
c6c5bf4f7c
@ -20,11 +20,33 @@ local win_title = fn.has('nvim-0.9') == 1 and {
|
|||||||
-- " ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝",
|
-- " ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝",
|
||||||
--}
|
--}
|
||||||
|
|
||||||
|
-- 中文字符匹配函数
|
||||||
|
local function is_chinese(str)
|
||||||
|
local len = #str
|
||||||
|
local left = 0
|
||||||
|
local right = len
|
||||||
|
local mid = 0
|
||||||
|
while left <= right do
|
||||||
|
mid = math.floor((left + right) / 2)
|
||||||
|
local cur_byte = string.byte(str, mid)
|
||||||
|
local cur_char = string.sub(str, mid, mid)
|
||||||
|
if cur_byte == nil then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
if cur_byte > 128 then
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
left = mid + 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
string.width = api.nvim_strwidth
|
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
|
||||||
|
@ -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
|
||||||
|
|
||||||
@ -375,6 +376,7 @@ return function(word)
|
|||||||
width = width,
|
width = width,
|
||||||
height = math.min(buffer:height(width), hover.height)
|
height = math.min(buffer:height(width), hover.height)
|
||||||
}
|
}
|
||||||
|
|
||||||
run(function()
|
run(function()
|
||||||
win:set('wrap', true)
|
win:set('wrap', true)
|
||||||
handle_keymap(win, word)
|
handle_keymap(win, word)
|
||||||
|
@ -27,7 +27,9 @@ 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)
|
||||||
api.nvim_win_set_option(self.winid, option, value)
|
if self:is_valid() then
|
||||||
|
api.nvim_win_set_option(self.winid, option, value)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param name string option name
|
---@param name string option name
|
||||||
|
Loading…
x
Reference in New Issue
Block a user