Trans.nvim/plugin/Trans.lua

40 lines
1.2 KiB
Lua
Raw Permalink Normal View History

2023-03-09 19:42:41 +08:00
local api, fn = vim.api, vim.fn
--- INFO :Define plugin command
2023-04-02 11:01:37 +08:00
local Trans = require 'Trans'
2023-03-09 19:42:41 +08:00
local command = api.nvim_create_user_command
command('Translate', function() Trans.translate() end,
{ desc = '󰊿 Translate cursor word' })
2023-03-22 22:27:27 +08:00
command('TranslateInput', function() Trans.translate { mode = 'i' } end,
{ desc = '󰊿 Translate input word' })
2023-03-18 13:53:09 +08:00
2023-04-02 11:01:37 +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
2023-04-02 11:01:37 +08:00
end, { desc = ' Auto play' })
string.width = api.nvim_strwidth
2023-04-02 11:01:37 +08:00
local system = Trans.system
local f =
2023-05-13 19:36:37 +08:00
(vim.fn.has 'wsl' == 1 or system == 'win') and
'powershell.exe -Command "Add-Type -AssemblyName System.speech;(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\\\"%s\\\")"' or
2023-04-02 11:01:37 +08:00
system == 'mac' and 'say %q' or
system == 'termux' and 'termux-tts-speak %q' or
2023-05-13 19:36:37 +08:00
system == 'linux' and 'echo %q | festival --tts' or
error 'Unsupported system'
2023-04-02 11:01:37 +08:00
string.play = function(self)
2023-05-13 19:36:37 +08:00
---@diagnostic disable-next-line: param-type-mismatch
local s = string.gsub(self, '\"', ' ')
2023-05-12 20:27:39 +08:00
fn.jobstart(f:format(s))
end