style: code format

This commit is contained in:
JuanZoran 2023-03-18 13:53:09 +08:00
parent a6a5a33bff
commit 46c69fb758
8 changed files with 190 additions and 272 deletions

View File

@ -6,12 +6,12 @@
---@field disable boolean ---@field disable boolean
local M = { local M = {
uri = 'https://fanyi-api.baidu.com/api/trans/vip/translate', uri = "https://fanyi-api.baidu.com/api/trans/vip/translate",
salt = tostring(math.random(bit.lshift(1, 15))), salt = tostring(math.random(bit.lshift(1, 15))),
name = 'baidu', name = "baidu",
} }
local Trans = require('Trans') local Trans = require("Trans")
---@class BaiduQuery ---@class BaiduQuery
---@field q string ---@field q string
@ -21,7 +21,6 @@ local Trans = require('Trans')
---@field salt string ---@field salt string
---@field sign string ---@field sign string
---Get content for query ---Get content for query
---@param data TransData ---@param data TransData
---@return BaiduQuery ---@return BaiduQuery
@ -53,8 +52,8 @@ function M.query(data)
local handle = function(res) local handle = function(res)
local status, body = pcall(vim.json.decode, res.body) local status, body = pcall(vim.json.decode, res.body)
if not status or not body then if not status or not body then
data.result.baidu = false
data.trace = res data.trace = res
data.result.baidu = false
return return
end end
@ -65,13 +64,12 @@ function M.query(data)
assert(#result == 1) assert(#result == 1)
result = result[1] result = result[1]
data.result.baidu = { data.result.baidu = {
['str'] = result.src, ["str"] = result.src,
[data.from == 'en' and 'translation' or 'definition'] = { result.dst }, [data.from == "en" and "translation" or "definition"] = { result.dst },
} }
end end
end end
Trans.curl.get(M.uri, { Trans.curl.get(M.uri, {
query = M.get_content(data), query = M.get_content(data),
callback = handle, callback = handle,

View File

@ -1,56 +1,53 @@
---@class Offline: TransBackend ---@class Offline: TransBackend
local M = { local M = {
name = "offline",
no_wait = true, no_wait = true,
name = 'offline',
} }
local db = require("sqlite.db")
local db = require 'sqlite.db' vim.api.nvim_create_autocmd("VimLeavePre", {
vim.api.nvim_create_autocmd('VimLeavePre', {
once = true, once = true,
callback = function() callback = function()
if db:isopen() then if db:isopen() then db:close() end
db:close() end,
end
end
}) })
---@param data any ---@param data any
---@return any ---@return any
---@overload fun(TransData): TransResult ---@overload fun(TransData): TransResult
function M.query(data) function M.query(data)
if data.is_word == false or data.from == 'zh' then return end if data.is_word == false or data.from == "zh" then
return
end
local path = require('Trans').conf.dir .. '/ultimate.db' local path = require("Trans").conf.dir .. "/ultimate.db"
local dict = db:open(path) local dict = db:open(path)
local db_name = data.db_name or 'stardict' local db_name = data.db_name or "stardict"
local res = dict:select(db_name, { local res = dict:select(db_name, {
where = { word = data.str, }, where = { word = data.str },
keys = M.query_field, keys = M.query_field,
limit = 1, limit = 1,
})[1] })[1]
data.result.offline = res and M.formatter(res) or false data.result.offline = res and M.formatter(res) or false
end end
-- this is a awesome plugin -- this is a awesome plugin
M.query_field = { M.query_field = {
'word', "word",
'phonetic', "phonetic",
'definition', "definition",
'translation', "translation",
'pos', "pos",
'collins', "collins",
'oxford', "oxford",
'tag', "tag",
'exchange', "exchange",
} }
local function exist(str) local function exist(str)
return str and str ~= '' return str and str ~= ""
end end
---@type (fun(res):any)[] ---@type (fun(res):any)[]
@ -63,7 +60,6 @@ local formatter = {
phonetic = res.phonetic, phonetic = res.phonetic,
} }
res.word = nil res.word = nil
res.oxford = nil res.oxford = nil
res.collins = nil res.collins = nil
@ -71,87 +67,97 @@ local formatter = {
return title return title
end, end,
tag = function(res) tag = function(res)
if not exist(res.tag) then return end if not exist(res.tag) then
return
end
local tag_map = { local tag_map = {
zk = '中考', zk = "中考",
gk = '高考', gk = "高考",
ky = '考研', ky = "考研",
gre = 'gre ', gre = "gre ",
cet4 = '四级', cet4 = "四级",
cet6 = '六级', cet6 = "六级",
ielts = '雅思', ielts = "雅思",
toefl = '托福', toefl = "托福",
} }
local tag = {} local tag = {}
for i, _tag in ipairs(vim.split(res.tag, ' ', { plain = true })) do for i, _tag in ipairs(vim.split(res.tag, " ", { plain = true })) do
tag[i] = tag_map[_tag] tag[i] = tag_map[_tag]
end end
return tag return tag
end, end,
exchange = function(res) exchange = function(res)
if not exist(res.exchange) then return end if not exist(res.exchange) then
return
end
local exchange_map = { local exchange_map = {
['0'] = '原型 ', ["0"] = "原型 ",
['1'] = '类别 ', ["1"] = "类别 ",
['p'] = '过去式 ', ["p"] = "过去式 ",
['r'] = '比较级 ', ["r"] = "比较级 ",
['t'] = '最高级 ', ["t"] = "最高级 ",
['s'] = '复数 ', ["s"] = "复数 ",
['d'] = '过去分词 ', ["d"] = "过去分词 ",
['i'] = '现在分词 ', ["i"] = "现在分词 ",
['3'] = '第三人称单数', ["3"] = "第三人称单数",
['f'] = '第三人称单数', ["f"] = "第三人称单数",
} }
local exchange = {} local exchange = {}
for _, _exchange in ipairs(vim.split(res.exchange, '/', { plain = true })) do for _, _exchange in ipairs(vim.split(res.exchange, "/", { plain = true })) do
exchange[exchange_map[_exchange:sub(1, 1)]] = _exchange:sub(3) exchange[exchange_map[_exchange:sub(1, 1)]] = _exchange:sub(3)
end end
return exchange return exchange
end, end,
pos = function(res) pos = function(res)
if not exist(res.pos) then return end if not exist(res.pos) then
return
end
local pos_map = { local pos_map = {
a = '代词pron ', a = "代词pron ",
c = '连接词conj ', c = "连接词conj ",
i = '介词prep ', i = "介词prep ",
j = '形容词adj ', j = "形容词adj ",
m = '数词num ', m = "数词num ",
n = '名词n ', n = "名词n ",
p = '代词pron ', p = "代词pron ",
r = '副词adv ', r = "副词adv ",
u = '感叹词int ', u = "感叹词int ",
v = '动词v ', v = "动词v ",
x = '否定标记not ', x = "否定标记not ",
t = '不定式标记infm ', t = "不定式标记infm ",
d = '限定词determiner ', d = "限定词determiner ",
} }
local pos = {} local pos = {}
for _, _pos in ipairs(vim.split(res.pos, '/', { plain = true })) do for _, _pos in ipairs(vim.split(res.pos, "/", { plain = true })) do
pos[pos_map[_pos:sub(1, 1)]] = ('%2s%%'):format(_pos:sub(3)) pos[pos_map[_pos:sub(1, 1)]] = ("%2s%%"):format(_pos:sub(3))
end end
return pos return pos
end, end,
translation = function(res) translation = function(res)
if not exist(res.translation) then return end if not exist(res.translation) then
return
end
local translation = {} local translation = {}
for i, _translation in ipairs(vim.split(res.translation, '\n', { plain = true })) do for i, _translation in ipairs(vim.split(res.translation, "\n", { plain = true })) do
translation[i] = _translation translation[i] = _translation
end end
return translation return translation
end, end,
definition = function(res) definition = function(res)
if not exist(res.definition) then return end if not exist(res.definition) then
return
end
local definition = {} local definition = {}
for i, _definition in ipairs(vim.split(res.definition, '\n', { plain = true })) do for i, _definition in ipairs(vim.split(res.definition, "\n", { plain = true })) do
-- -- TODO :判断是否需要分割空格 -- -- TODO :判断是否需要分割空格
definition[i] = _definition:gsub('^%s+', '', 1) definition[i] = _definition:gsub("^%s+", "", 1)
end end
return definition return definition
@ -169,5 +175,4 @@ function M.formatter(res)
return res return res
end end
return M return M

View File

@ -3,35 +3,33 @@ local api = vim.api
---@type table<string, fun(hover: TransHover)> ---@type table<string, fun(hover: TransHover)>
local strategy = { local strategy = {
pageup = function(hover) pageup = function(hover)
hover.buffer:normal('gg') hover.buffer:normal("gg")
end, end,
pagedown = function(hover) pagedown = function(hover)
hover.buffer:normal('G') hover.buffer:normal("G")
end, end,
pin = function(hover) pin = function(hover)
if hover.pin then return end if hover.pin then
return
end
hover.pin = true hover.pin = true
local window = hover.window local window = hover.window
local width, height = window:width(), window:height() local width, height = window:width(), window:height()
local col = vim.o.columns - width - 3 local col = vim.o.columns - width - 3
window:try_close() window:try_close()
window = hover:init_window({ window = hover:init_window {
col = col,
width = width, width = width,
height = height, height = height,
relative = 'editor', relative = "editor",
col = col, }
})
window:set('wrap', true) window:set("wrap", true)
end, end,
close = function(hover) close = function(hover)
hover:destroy() hover:destroy()
end, end,
toggle_entry = function(hover) toggle_entry = function(hover)
if api.nvim_get_current_win() ~= hover.window.winid then if api.nvim_get_current_win() ~= hover.window.winid then
api.nvim_set_current_win(hover.window.winid) api.nvim_set_current_win(hover.window.winid)
@ -47,7 +45,6 @@ local strategy = {
end, end,
} }
---@class TransHover ---@class TransHover
---@field execute fun(hover: TransHover, action: string) ---@field execute fun(hover: TransHover, action: string)
return function(hover, action) return function(hover, action)

View File

@ -1,4 +1,4 @@
local Trans = require('Trans') local Trans = require("Trans")
-- FIXME :Adjust Window Size -- FIXME :Adjust Window Size
@ -10,8 +10,8 @@ local Trans = require('Trans')
---@field destroy_funcs fun(hover:TransHover)[] @functions to be executed when hover window is closed ---@field destroy_funcs fun(hover:TransHover)[] @functions to be executed when hover window is closed
---@field opts TransHoverOpts @options for hover window ---@field opts TransHoverOpts @options for hover window
---@field pin boolean @whether hover window is pinned ---@field pin boolean @whether hover window is pinned
local M = Trans.metatable('frontend.hover', { local M = Trans.metatable("frontend.hover", {
ns = vim.api.nvim_create_namespace('TransHoverWin'), ns = vim.api.nvim_create_namespace("TransHoverWin"),
queue = {}, queue = {},
}) })
M.__index = M M.__index = M
@ -55,9 +55,12 @@ function M:destroy()
func(self) func(self)
end end
if self.window:is_valid() then
if self.window:is_valid() then self.window:try_close() end self.window:try_close()
if self.buffer:is_valid() then self.buffer:destroy() end end
if self.buffer:is_valid() then
self.buffer:destroy()
end
self.pin = false self.pin = false
end)() end)()
end end
@ -75,17 +78,19 @@ function M:init_window(opts)
animation = m_opts.animation, animation = m_opts.animation,
} }
-- stylua: ignore start
local win_opts = { local win_opts = {
col = opts.col or 1, col = opts.col or 1,
row = opts.row or 1, row = opts.row or 1,
title = m_opts.title, title = m_opts.title,
relative = opts.relative or 'cursor',
width = opts.width or m_opts.width, width = opts.width or m_opts.width,
height = opts.height or m_opts.height, height = opts.height or m_opts.height,
relative = opts.relative or "cursor",
} }
-- stylua: ignore end
if win_opts.title then if win_opts.title then
win_opts.title_pos = 'center' win_opts.title_pos = "center"
end end
option.win_opts = win_opts option.win_opts = win_opts
@ -98,7 +103,7 @@ end
---@return string formatted text ---@return string formatted text
---@return integer _ replaced count ---@return integer _ replaced count
function M:icon_format(format) function M:icon_format(format)
return format:gsub('{{(%w+)}}', self.opts.icon, 1) return format:gsub("{{(%w+)}}", self.opts.icon, 1)
end end
---Get Check function for waiting ---Get Check function for waiting
@ -122,7 +127,7 @@ function M:wait()
return function() return function()
cur = cur + 1 cur = cur + 1
buffer[1] = spinner[cur % size + 1] .. (cell):rep(cur) buffer[1] = spinner[cur % size + 1] .. (cell):rep(cur)
buffer:add_highlight(1, 'TransWaitting') buffer:add_highlight(1, "TransWaitting")
pause(interval) pause(interval)
return cur < times return cur < times
end end
@ -137,7 +142,6 @@ function M:fallback()
} }
end end
local buffer = self.buffer local buffer = self.buffer
buffer:wipe() buffer:wipe()
@ -146,22 +150,23 @@ function M:fallback()
-- TODO :Center -- TODO :Center
buffer[1] = Trans.util.center(fallback_msg, opts.width) buffer[1] = Trans.util.center(fallback_msg, opts.width)
buffer:add_highlight(1, 'TransFailed') buffer:add_highlight(1, "TransFailed")
self:defer() self:defer()
end end
---Defer function when process done ---Defer function when process done
function M:defer() function M:defer()
self.window:set('wrap', true) self.window:set("wrap", true)
self.buffer:set('modifiable', false) self.buffer:set("modifiable", false)
local auto_close_events = self.opts.auto_close_events local auto_close_events = self.opts.auto_close_events
if auto_close_events then if auto_close_events then
vim.api.nvim_create_autocmd(auto_close_events, { vim.api.nvim_create_autocmd(auto_close_events, {
once = true, once = true,
callback = function() callback = function()
if self.pin then return end if self.pin then
return
end
self:destroy() self:destroy()
end, end,
}) })
@ -172,7 +177,9 @@ end
---@param data TransData ---@param data TransData
---@overload fun(result:TransResult) ---@overload fun(result:TransResult)
function M:process(data) function M:process(data)
if self.pin then return end if self.pin then
return
end
local result, name = data:get_available_result() local result, name = data:get_available_result()
if not result then if not result then
@ -182,7 +189,7 @@ function M:process(data)
-- vim.pretty_print(result) -- vim.pretty_print(result)
local opts = self.opts local opts = self.opts
if opts.auto_play then if opts.auto_play then
(data.from == 'en' and data.str or result.definition[1]):play() (data.from == "en" and data.str or result.definition[1]):play()
end end
-- local node = Trans.util.node -- local node = Trans.util.node
-- local it, t, f = node.item, node.text, node.format -- local it, t, f = node.item, node.text, node.format
@ -213,6 +220,7 @@ function M:process(data)
width = math.min(opts.width, display_size.width + opts.padding), width = math.min(opts.width, display_size.width + opts.padding),
} }
end end
self:defer() self:defer()
end end
@ -225,90 +233,3 @@ end
---@class TransFrontend ---@class TransFrontend
---@field hover TransHover @hover frontend ---@field hover TransHover @hover frontend
return M return M
-- local cmd_id
-- local next
-- local action = {
-- pageup = function()
-- buffer:normal('gg')
-- end,
-- pagedown = function()
-- buffer:normal('G')
-- end,
-- pin = function()
-- if lock then
-- error('请先关闭窗口')
-- else
-- lock = true
-- end
-- pcall(api.nvim_del_autocmd, cmd_id)
-- local width, height = win.width, win.height
-- local col = vim.o.columns - width - 3
-- local buf = buffer.bufnr
-- local run = win:try_close()
-- run(function()
-- local w, r = open_window {
-- width = width,
-- height = height,
-- relative = 'editor',
-- col = col,
-- }
-- next = w.winid
-- win = w
-- r(function()
-- w:set('wrap', true)
-- end)
-- del('n', keymap.pin)
-- api.nvim_create_autocmd('BufWipeOut', {
-- callback = function(opt)
-- if opt.buf == buf or opt.buf == cur_buf then
-- lock = false
-- api.nvim_del_autocmd(opt.id)
-- end
-- end
-- })
-- end)
-- end,
-- close = function()
-- pcall(api.nvim_del_autocmd, cmd_id)
-- local run = win:try_close()
-- run(function()
-- buffer:delete()
-- end)
-- try_del_keymap()
-- end,
-- toggle_entry = function()
-- if lock and win:is_valid() then
-- local prev = api.nvim_get_current_win()
-- api.nvim_set_current_win(next)
-- next = prev
-- else
-- del('n', keymap.toggle_entry)
-- end
-- end,
-- play = function()
-- if word then
-- word:play()
-- end
-- end,
-- }
-- local set = vim.keymap.set
-- for act, key in pairs(hover.keymap) do
-- set('n', key, action[act])
-- end
-- if hover.auto_close_events then
-- cmd_id = api.nvim_create_autocmd(
-- hover.auto_close_events, {
-- buffer = 0,
-- callback = action.close,
-- })
-- end
-- end

View File

@ -1,89 +1,89 @@
local health, fn = vim.health, vim.fn local health, fn = vim.health, vim.fn
local ok = health.report_ok local ok = health.report_ok
local warn = health.report_warn local warn = health.report_warn
local error = health.report_error local error = health.report_error
local has = fn.has local has = fn.has
local executable = fn.executable local executable = fn.executable
local function check_neovim_version() local function check_neovim_version()
if has('nvim-0.9') == 1 then if has("nvim-0.9") == 1 then
ok [[You have [neovim-nightly] ]] ok([[You have [neovim-nightly] ]])
else else
warn [[Trans Title requires Neovim 0.9 or newer warn([[Trans Title requires Neovim 0.9 or newer
See neovim-nightly: [https://github.com/neovim/neovim/releases/tag/nightly] See neovim-nightly: [https://github.com/neovim/neovim/releases/tag/nightly]
]] ]])
end end
end end
local function check_plugin_dependencies() local function check_plugin_dependencies()
local plugin_dependencies = { local plugin_dependencies = {
-- 'plenary', -- 'plenary',
'sqlite', "sqlite",
} }
for _, dep in ipairs(plugin_dependencies) do for _, dep in ipairs(plugin_dependencies) do
if pcall(require, dep) then if pcall(require, dep) then
ok(string.format('Dependency [%s] is installed', dep)) ok(string.format("Dependency [%s] is installed", dep))
else else
error(string.format('Dependency [%s] is not installed', dep)) error(string.format("Dependency [%s] is not installed", dep))
end end
end end
end end
local function check_binary_dependencies() local function check_binary_dependencies()
local binary_dependencies = { local binary_dependencies = {
'curl', "curl",
'sqlite3', "sqlite3",
} }
if has('linux') == 1 then if has("linux") == 1 then
binary_dependencies[3] = 'festival' binary_dependencies[3] = "festival"
elseif has('mac') == 1 then elseif has("mac") == 1 then
binary_dependencies[3] = 'say' binary_dependencies[3] = "say"
else else
binary_dependencies[3] = 'node' binary_dependencies[3] = "node"
end end
for _, dep in ipairs(binary_dependencies) do for _, dep in ipairs(binary_dependencies) do
if executable(dep) == 1 then if executable(dep) == 1 then
ok(string.format('Binary dependency [%s] is installed', dep)) ok(string.format("Binary dependency [%s] is installed", dep))
else else
error(string.format('Binary dependency [%s] is not installed', dep)) error(string.format("Binary dependency [%s] is not installed", dep))
end end
end end
end end
local function check_database() local function check_database()
local db_path = require('Trans').conf.dir .. '/ultimate.db' local db_path = require("Trans").conf.dir .. "/ultimate.db"
if fn.filereadable(db_path) == 1 then if fn.filereadable(db_path) == 1 then
ok [[ultimate database found ]] ok([[ultimate database found ]])
else else
error [[Stardict database not found error([[Stardict database not found
[Manually]: Please check the doc in github: [https://github.com/JuanZoran/Trans.nvim] [Manually]: Please check the doc in github: [https://github.com/JuanZoran/Trans.nvim]
[Automatically]: Try to run `:lua require "Trans".install()` [Automatically]: Try to run `:lua require "Trans".install()`
]] ]])
end end
end end
local function check_configure_file() local function check_configure_file()
local path = fn.expand(require('Trans').conf.dir .. '/Trans.json') local path = fn.expand(require("Trans").conf.dir .. "/Trans.json")
if not fn.filereadable(path) then if not fn.filereadable(path) then
warn 'Backend configuration file[%s] not found' warn("Backend configuration file[%s] not found")
end end
local file = io.open(path, "r") local file = io.open(path, "r")
local valid = file and pcall(vim.json.decode, file:read("*a")) local valid = file and pcall(vim.json.decode, file:read("*a"))
if valid then if valid then
ok(string.format([[Backend configuration file [%s] found and valid ]], path)) ok(string.format([[Backend configuration file [%s] found and valid ]], path))
else else
error(string.format([[Backend configuration file [%s] invalid error(string.format(
[[Backend configuration file [%s] invalid
Please check the doc in github: [https://github.com/JuanZoran/Trans.nvim] Please check the doc in github: [https://github.com/JuanZoran/Trans.nvim]
]], path)) ]],
path
))
end end
end end
@ -95,4 +95,4 @@ local function check()
check_binary_dependencies() check_binary_dependencies()
end end
return { check = check, } return { check = check }

View File

@ -5,35 +5,33 @@
local function metatable(folder_name, origin) local function metatable(folder_name, origin)
return setmetatable(origin or {}, { return setmetatable(origin or {}, {
__index = function(tbl, key) __index = function(tbl, key)
local status, result = pcall(require, ('Trans.%s.%s'):format(folder_name, key)) local status, result = pcall(require, ("Trans.%s.%s"):format(folder_name, key))
if status then if status then
tbl[key] = result tbl[key] = result
return result return result
end end
end end,
}) })
end end
---@class string ---@class string
---@field width function @Get string display width ---@field width function @Get string display width
---@field play function @Use tts to play string ---@field play function @Use tts to play string
---@class Trans ---@class Trans
---@field style table @Style module ---@field style table @Style module
---@field cache table<string, TransData> @Cache for translated data object ---@field cache table<string, TransData> @Cache for translated data object
---@field modes string[] @all modes name ---@field modes string[] @all modes name
local M = metatable('core', { local M = metatable("core", {
style = metatable("style"),
cache = {}, cache = {},
style = metatable("style"),
modes = { modes = {
'normal', "normal",
'visual', "visual",
'input', "input",
}, },
augroup = vim.api.nvim_create_augroup('Trans', { clear = true }) augroup = vim.api.nvim_create_augroup("Trans", { clear = true }),
}) })
M.metatable = metatable M.metatable = metatable

View File

@ -9,7 +9,7 @@ local item_meta = {
local text_meta = { local text_meta = {
render = function(self, buffer, line, col) render = function(self, buffer, line, col)
local items = self.items local items = self.items
local step = self.step or '' local step = self.step or ""
local len = #step local len = #step
for i = 1, self.size do for i = 1, self.size do
@ -17,7 +17,7 @@ local text_meta = {
item:render(buffer, line, col) item:render(buffer, line, col)
col = col + #item[1] + len col = col + #item[1] + len
end end
end end,
} }
item_meta.__index = item_meta item_meta.__index = item_meta
@ -25,7 +25,6 @@ text_meta.__index = function(self, key)
return text_meta[key] or (key == 1 and table.concat(self.strs, self.step) or nil) return text_meta[key] or (key == 1 and table.concat(self.strs, self.step) or nil)
end end
local function item(text, highlight) local function item(text, highlight)
return setmetatable({ return setmetatable({
[1] = text, [1] = text,
@ -52,7 +51,7 @@ local function format(opts)
local str = opts.text local str = opts.text
local size = str.size local size = str.size
local width = opts.width local width = opts.width
local spin = opts.spin or ' ' local spin = opts.spin or " "
local wid = str[1]:width() local wid = str[1]:width()
local space = math.max(math.floor((width - wid) / (size - 1)), 0) local space = math.max(math.floor((width - wid) / (size - 1)), 0)
@ -62,7 +61,6 @@ local function format(opts)
return str return str
end end
---@type table<string, function> ---@type table<string, function>
return { return {
item = item, item = item,
@ -70,9 +68,9 @@ return {
format = format, format = format,
conjunction = function(str) conjunction = function(str)
return { return {
item('', 'TransTitleRound'), item("", "TransTitleRound"),
item(str, 'TransTitle'), item(str, "TransTitle"),
item('', 'TransTitleRound'), item("", "TransTitleRound"),
} }
end end,
} }

View File

@ -1,35 +1,36 @@
local api, fn = vim.api, vim.fn local api, fn = vim.api, vim.fn
string.width = api.nvim_strwidth string.width = api.nvim_strwidth
--- INFO :Define string play method --- INFO :Define string play method
if fn.has('linux') == 1 then if fn.has("linux") == 1 then
string.play = function(self) string.play = function(self)
local cmd = ([[echo "%s" | festival --tts]]):format(self) local cmd = ([[echo %q | festival --tts]]):format(self)
fn.jobstart(cmd) fn.jobstart(cmd)
end end
elseif fn.has('mac') == 1 then elseif fn.has("mac") == 1 then
string.play = function(self) string.play = function(self)
local cmd = ([[say "%s"]]):format(self) local cmd = ([[say %q]]):format(self)
fn.jobstart(cmd) fn.jobstart(cmd)
end end
else else
string.play = function(self) string.play = function(self)
local separator = fn.has('unix') and '/' or '\\' local separator = fn.has("unix") and "/" or "\\"
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. separator .. 'tts' .. separator .. 'say.js' local file = debug.getinfo(1, "S").source:sub(2):match("(.*)lua") .. separator .. "tts" .. separator .. "say.js"
fn.jobstart('node ' .. file .. ' ' .. self) fn.jobstart("node " .. file .. " " .. self)
end end
end end
--- INFO :Define plugin command --- INFO :Define plugin command
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() Trans.translate() end, { desc = ' 单词翻译', }) command("Translate", function()
command('TransPlay', function() Trans.translate()
end, { desc = " 单词翻译" })
command("TransPlay", function()
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()
end end
end, { desc = ' 自动发音' }) end, { desc = " 自动发音" })