Trans.nvim/plugin/Trans.lua

35 lines
863 B
Lua
Raw Normal View History

2023-03-09 19:42:41 +08:00
local api, fn = vim.api, vim.fn
2023-03-07 21:52:29 +08:00
--- INFO :Define plugin command
2023-03-18 13:53:09 +08:00
local Trans = require("Trans")
2023-03-09 19:42:41 +08:00
local command = api.nvim_create_user_command
2023-03-18 13:53:09 +08:00
command("Translate", function()
Trans.translate()
2023-03-22 22:27:27 +08:00
end, { desc = " Translate cursor word" })
command("TranslateInput", function()
Trans.translate({ mode = 'i' })
2023-03-22 22:27:27 +08:00
end, { desc = " Translate input word" })
2023-03-18 13:53:09 +08:00
command("TransPlay", function()
local util = Trans.util
local str = util.get_str(vim.fn.mode())
if str and str ~= "" and util.is_English(str) then
2023-03-09 19:42:41 +08:00
str:play()
end
end, { desc = " Auto play" })
string.width = api.nvim_strwidth
local f =
fn.has('linux') == 1 and ([[echo %q | festival --tts]])
or fn.has('mac') == 1 and ([[say %q]])
or 'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
string.play = function(self)
fn.jobstart(f:format(self))
end