Merge pull request #34 from Xiao-M0/v2
feat: add win wsl, remove python and nodejs dependencies
This commit is contained in:
commit
b5e626a88c
@ -99,6 +99,8 @@ local formatter = {
|
|||||||
['p'] = '过去式 ',
|
['p'] = '过去式 ',
|
||||||
['r'] = '比较级 ',
|
['r'] = '比较级 ',
|
||||||
['t'] = '最高级 ',
|
['t'] = '最高级 ',
|
||||||
|
['b'] = '比较级 ',
|
||||||
|
['z'] = '最高级 ',
|
||||||
['s'] = '复数 ',
|
['s'] = '复数 ',
|
||||||
['d'] = '过去分词 ',
|
['d'] = '过去分词 ',
|
||||||
['i'] = '现在分词 ',
|
['i'] = '现在分词 ',
|
||||||
|
@ -32,7 +32,27 @@ function M.get_select()
|
|||||||
local e = #lines
|
local e = #lines
|
||||||
lines[1] = lines[1]:sub(s_col)
|
lines[1] = lines[1]:sub(s_col)
|
||||||
lines[e] = line:sub(1, e_col)
|
lines[e] = line:sub(1, e_col)
|
||||||
return table.concat(lines)
|
return table.concat(lines, ' ')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---Get selected text
|
||||||
|
---@return string
|
||||||
|
function M.get_lines()
|
||||||
|
local _start = vim.fn.getpos 'v'
|
||||||
|
local _end = vim.fn.getpos '.'
|
||||||
|
|
||||||
|
if _start[2] > _end[2] then
|
||||||
|
_start, _end = _end, _start
|
||||||
|
end
|
||||||
|
|
||||||
|
local s_row, e_row = _start[2], _end[2]
|
||||||
|
|
||||||
|
if s_row == e_row then
|
||||||
|
return vim.fn.getline(s_row)
|
||||||
|
else
|
||||||
|
local lines = vim.fn.getline(s_row, e_row)
|
||||||
|
return table.concat(lines, " ")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -52,8 +72,8 @@ function M.get_str(mode)
|
|||||||
return fn.input '需要翻译的字符串: '
|
return fn.input '需要翻译的字符串: '
|
||||||
end,
|
end,
|
||||||
V = function()
|
V = function()
|
||||||
print 'TODO'
|
api.nvim_input '<Esc>'
|
||||||
return ''
|
return M.get_lines()
|
||||||
end,
|
end,
|
||||||
})[mode]():match '^%s*(.-)%s*$'
|
})[mode]():match '^%s*(.-)%s*$'
|
||||||
end
|
end
|
||||||
|
@ -24,15 +24,12 @@ string.width = api.nvim_strwidth
|
|||||||
|
|
||||||
local system = Trans.system
|
local system = Trans.system
|
||||||
local f =
|
local f =
|
||||||
|
(vim.fn.has 'wsl' or system == 'win') and 'powershell.exe -Command "Add-Type -AssemblyName System.speech;(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\\\"%s\\\")"' or
|
||||||
system == 'mac' and 'say %q' or
|
system == 'mac' and 'say %q' or
|
||||||
system == 'termux' and 'termux-tts-speak %q' or
|
system == 'termux' and 'termux-tts-speak %q' or
|
||||||
system == 'linux' and 'echo %q | festival --tts' or
|
system == 'linux' and 'echo %q | festival --tts'
|
||||||
'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
|
|
||||||
-- 'python ' .. Trans.relative_path { 'pytts', 'say.py' } .. ' %q'
|
|
||||||
-- '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'
|
|
||||||
|
|
||||||
string.play = function(self)
|
string.play = function(self)
|
||||||
fn.jobstart(f:format(self))
|
local s = string.gsub(self, "\"", " ")
|
||||||
|
fn.jobstart(f:format(s))
|
||||||
end
|
end
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
import pyttsx3
|
|
||||||
import sys
|
|
||||||
|
|
||||||
a = pyttsx3.init()
|
|
||||||
|
|
||||||
a.say(sys.argv[1])
|
|
||||||
a.runAndWait()
|
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"dependencies": {
|
|
||||||
"say": "^0.16.0"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
const say = require('say')
|
|
||||||
|
|
||||||
// console.log(word)
|
|
||||||
say.speak(process.argv.slice(2))
|
|
Loading…
x
Reference in New Issue
Block a user