2023-03-09 19:42:41 +08:00
|
|
|
|
local api, fn = vim.api, vim.fn
|
|
|
|
|
|
2023-03-10 11:23:22 +08:00
|
|
|
|
--- 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
|
|
|
|
|
|
2023-04-07 19:05:24 +08:00
|
|
|
|
command('Translate', function() Trans.translate() end,
|
|
|
|
|
{ desc = ' Translate cursor word' })
|
2023-03-22 22:27:27 +08:00
|
|
|
|
|
|
|
|
|
|
2023-04-07 19:05:24 +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()
|
2023-03-22 23:09:09 +08:00
|
|
|
|
local util = Trans.util
|
|
|
|
|
local str = util.get_str(vim.fn.mode())
|
2023-04-07 19:05:24 +08:00
|
|
|
|
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' })
|
2023-03-23 14:56:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string.width = api.nvim_strwidth
|
|
|
|
|
|
2023-04-02 11:01:37 +08:00
|
|
|
|
local system = Trans.system
|
2023-03-23 14:56:48 +08:00
|
|
|
|
local f =
|
2023-04-02 11:01:37 +08:00
|
|
|
|
system == 'mac' and 'say %q' or
|
|
|
|
|
system == 'termux' and 'termux-tts-speak %q' or
|
|
|
|
|
system == 'linux' and 'echo %q | festival --tts' or
|
|
|
|
|
'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
|
2023-04-24 13:02:48 +08:00
|
|
|
|
-- 'python ' .. Trans.relative_path { 'pytts', 'say.py' } .. ' %q'
|
2023-04-07 19:05:24 +08:00
|
|
|
|
-- 'powershell -Command "Add-Type –AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())" | Out-File -Encoding ASCII %q'
|
|
|
|
|
-- or 'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
|
|
|
|
|
-- system == 'win' and 'powershell -Command "Add-Type –AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())" | Out-File -Encoding ASCII %q'
|
2023-04-02 11:01:37 +08:00
|
|
|
|
|
2023-03-23 14:56:48 +08:00
|
|
|
|
string.play = function(self)
|
|
|
|
|
fn.jobstart(f:format(self))
|
|
|
|
|
end
|