chore: close window and buffer more safely
This commit is contained in:
parent
fcde85544a
commit
38b8e20729
@ -37,7 +37,7 @@ end
|
|||||||
|
|
||||||
---Destory buffer
|
---Destory buffer
|
||||||
function buffer:destroy()
|
function buffer:destroy()
|
||||||
api.nvim_buf_delete(self.bufnr, { force = true })
|
pcall(api.nvim_buf_delete, self.bufnr, { force = true })
|
||||||
end
|
end
|
||||||
|
|
||||||
---Set buffer load keymap
|
---Set buffer load keymap
|
||||||
|
@ -37,7 +37,7 @@ function M.new(opts)
|
|||||||
data.backends[i] = Trans.backend[name]
|
data.backends[i] = Trans.backend[name]
|
||||||
end
|
end
|
||||||
|
|
||||||
if Trans.util.is_English(str) then
|
if Trans.util.is_english(str) then
|
||||||
data.from = 'en'
|
data.from = 'en'
|
||||||
data.to = 'zh'
|
data.to = 'zh'
|
||||||
else
|
else
|
||||||
|
@ -59,8 +59,7 @@ local strategy = {
|
|||||||
|
|
||||||
local name = backend.name
|
local name = backend.name
|
||||||
---@cast backend TransBackend
|
---@cast backend TransBackend
|
||||||
while result[name] == nil do
|
while result[name] == nil and update(backend) do
|
||||||
if not update(backend) then break end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if result[name] then return true end
|
if result[name] then return true end
|
||||||
@ -72,7 +71,6 @@ local strategy = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- HACK : Core process logic
|
-- HACK : Core process logic
|
||||||
local function process(opts)
|
local function process(opts)
|
||||||
opts = init_opts(opts)
|
opts = init_opts(opts)
|
||||||
|
@ -72,7 +72,7 @@ end
|
|||||||
---Detect whether the string is English
|
---Detect whether the string is English
|
||||||
---@param str string
|
---@param str string
|
||||||
---@return boolean
|
---@return boolean
|
||||||
function M.is_English(str)
|
function M.is_english(str)
|
||||||
local char = { str:byte(1, -1) }
|
local char = { str:byte(1, -1) }
|
||||||
for i = 1, #str do
|
for i = 1, #str do
|
||||||
if char[i] > 128 then
|
if char[i] > 128 then
|
||||||
|
@ -124,7 +124,8 @@ function window:try_close()
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
api.nvim_win_close(self.winid, true)
|
|
||||||
|
pcall(api.nvim_win_close, self.winid, true)
|
||||||
end
|
end
|
||||||
|
|
||||||
---Set window local highlight group
|
---Set window local highlight group
|
||||||
|
@ -4,19 +4,17 @@ local api, fn = vim.api, vim.fn
|
|||||||
local Trans = require 'Trans'
|
local Trans = require 'Trans'
|
||||||
local command = api.nvim_create_user_command
|
local command = api.nvim_create_user_command
|
||||||
|
|
||||||
command('Translate', function()
|
command('Translate', function() Trans.translate() end,
|
||||||
Trans.translate()
|
{ desc = ' Translate cursor word' })
|
||||||
end, { desc = ' Translate cursor word' })
|
|
||||||
|
|
||||||
|
|
||||||
command('TranslateInput', function()
|
command('TranslateInput', function() Trans.translate { mode = 'i' } end,
|
||||||
Trans.translate { mode = 'i' }
|
{ desc = ' Translate input word' })
|
||||||
end, { desc = ' Translate input word' })
|
|
||||||
|
|
||||||
command('TransPlay', function()
|
command('TransPlay', function()
|
||||||
local util = Trans.util
|
local util = Trans.util
|
||||||
local str = util.get_str(vim.fn.mode())
|
local str = util.get_str(vim.fn.mode())
|
||||||
if str and str ~= '' and util.is_English(str) then
|
if str and str ~= '' and util.is_english(str) then
|
||||||
str:play()
|
str:play()
|
||||||
end
|
end
|
||||||
end, { desc = ' Auto play' })
|
end, { desc = ' Auto play' })
|
||||||
@ -30,9 +28,9 @@ local f =
|
|||||||
system == 'termux' and 'termux-tts-speak %q' or
|
system == 'termux' and 'termux-tts-speak %q' or
|
||||||
system == 'linux' and 'echo %q | festival --tts' or
|
system == 'linux' and 'echo %q | festival --tts' or
|
||||||
'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
|
'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
|
||||||
-- 'powershell -Command "Add-Type –AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())" | Out-File -Encoding ASCII %q'
|
-- 'powershell -Command "Add-Type –AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())" | Out-File -Encoding ASCII %q'
|
||||||
-- or 'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
|
-- or 'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
|
||||||
-- system == 'win' and 'powershell -Command "Add-Type –AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())" | Out-File -Encoding ASCII %q'
|
-- system == 'win' and 'powershell -Command "Add-Type –AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())" | Out-File -Encoding ASCII %q'
|
||||||
|
|
||||||
string.play = function(self)
|
string.play = function(self)
|
||||||
fn.jobstart(f:format(self))
|
fn.jobstart(f:format(self))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user