Trans.nvim/plugin/Trans.lua

42 lines
1.2 KiB
Lua
Raw Normal View History

2023-03-09 19:42:41 +08:00
local api, fn = vim.api, vim.fn
string.width = api.nvim_strwidth
--- INFO :Define string play method
2023-03-18 13:53:09 +08:00
if fn.has("linux") == 1 then
2023-03-09 19:42:41 +08:00
string.play = function(self)
2023-03-18 13:53:09 +08:00
local cmd = ([[echo %q | festival --tts]]):format(self)
2023-03-09 19:42:41 +08:00
fn.jobstart(cmd)
end
2023-03-18 13:53:09 +08:00
elseif fn.has("mac") == 1 then
2023-03-09 19:42:41 +08:00
string.play = function(self)
2023-03-18 13:53:09 +08:00
local cmd = ([[say %q]]):format(self)
2023-03-09 19:42:41 +08:00
fn.jobstart(cmd)
end
else
string.play = function(self)
2023-03-18 13:53:09 +08:00
local separator = fn.has("unix") and "/" or "\\"
local file = debug.getinfo(1, "S").source:sub(2):match("(.*)lua") .. separator .. "tts" .. separator .. "say.js"
fn.jobstart("node " .. file .. " " .. self)
2023-03-09 19:42:41 +08:00
end
end
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 = 'input' })
end, { desc = " Translate input word" })
2023-03-18 13:53:09 +08:00
command("TransPlay", function()
2023-03-12 09:56:31 +08:00
local str = Trans.util.get_str(api.nvim_get_mode().mode)
2023-03-18 13:53:09 +08:00
if str and str ~= "" and Trans.util.is_English(str) then
2023-03-09 19:42:41 +08:00
str:play()
end
2023-03-22 22:27:27 +08:00
end, { desc = " auto play" })