Trans.nvim/plugin/Trans.lua

63 lines
1.7 KiB
Lua
Raw Normal View History

2023-03-09 19:42:41 +08:00
local api, fn = vim.api, vim.fn
--- INFO :Define string play method
2023-03-09 19:42:41 +08:00
if fn.has('linux') == 1 then
string.play = function(self)
local cmd = ([[echo "%s" | festival --tts]]):format(self)
fn.jobstart(cmd)
end
elseif fn.has('mac') == 1 then
string.play = function(self)
local cmd = ([[say "%s"]]):format(self)
fn.jobstart(cmd)
end
else
string.play = function(self)
local seperator = fn.has('unix') and '/' or '\\'
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. seperator .. 'tts' .. seperator .. 'say.js'
fn.jobstart('node ' .. file .. ' ' .. self)
end
end
2023-03-07 21:52:29 +08:00
--- INFO :Define plugin command
2023-03-12 09:56:31 +08:00
local Trans = require('Trans')
2023-03-09 19:42:41 +08:00
local command = api.nvim_create_user_command
2023-03-12 09:56:31 +08:00
command('Translate', function() Trans.translate() end, { desc = ' 单词翻译', })
2023-03-09 19:42:41 +08:00
command('TransPlay', function()
2023-03-12 09:56:31 +08:00
local str = Trans.util.get_str(api.nvim_get_mode().mode)
if str and str ~= '' and Trans.util.is_English(str) then
2023-03-09 19:42:41 +08:00
str:play()
end
end, { desc = ' 自动发音' })
2023-03-08 11:53:41 +08:00
--- INFO :Parse online engines config file
2023-03-11 11:32:13 +08:00
local function parse_engine_file()
2023-03-12 09:56:31 +08:00
local path = Trans.conf.dir .. '/Trans.json'
2023-03-11 11:32:13 +08:00
local file = io.open(path, "r")
if file then
local content = file:read("*a")
local status, result = pcall(vim.json.decode, content)
file:close()
assert(status, 'Unable to parse json file: ' .. path)
return result
end
2023-03-11 11:32:13 +08:00
end
2023-03-11 11:32:13 +08:00
local result = parse_engine_file()
if result then
for name, opts in pairs(result) do
2023-03-12 09:56:31 +08:00
if not opts.enable then
result[name] = nil
2023-03-11 11:32:13 +08:00
end
end
2023-03-12 09:56:31 +08:00
Trans.conf.engines = result
2023-03-11 11:32:13 +08:00
2023-03-12 09:56:31 +08:00
else
Trans.conf.engines = {}
end