feat: add TranslateInput command

This commit is contained in:
JuanZoran 2023-03-22 22:27:27 +08:00
parent 2bb4b4d46b
commit e90b55d297
2 changed files with 2 additions and 0 deletions

View File

@ -168,6 +168,7 @@ end
function M.visible_lines(opts) function M.visible_lines(opts)
opts = opts or {} opts = opts or {}
-- INFO : don't calculate the height of statusline and cmdheight or winbar? -- INFO : don't calculate the height of statusline and cmdheight or winbar?
local winid = opts.winid or 0 local winid = opts.winid or 0
local win_height = opts.height or api.nvim_win_get_height(winid) local win_height = opts.height or api.nvim_win_get_height(winid)

View File

@ -34,6 +34,7 @@ command("TranslateInput", function()
end, { desc = " Translate input word" }) end, { desc = " Translate input word" })
command("TransPlay", function() command("TransPlay", function()
--- FIXME :
local str = Trans.util.get_str(api.nvim_get_mode().mode) local str = Trans.util.get_str(api.nvim_get_mode().mode)
if str and str ~= "" and Trans.util.is_English(str) then if str and str ~= "" and Trans.util.is_English(str) then
str:play() str:play()