diff --git a/plugin/Trans.lua b/plugin/Trans.lua index 5788005..3b00025 100644 --- a/plugin/Trans.lua +++ b/plugin/Trans.lua @@ -25,15 +25,10 @@ string.width = api.nvim_strwidth local system = Trans.system local f = vim.fn.has 'wsl' == 1 and 'powershell.exe -Command "Add-Type -AssemblyName System.speech;(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\\\"%s\\\")"' or + system == 'win' and 'powershell -Command "Add-Type -AssemblyName System.speech;(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\\\"%s\\\")"' or system == 'mac' and 'say %q' or system == 'termux' and 'termux-tts-speak %q' or - system == 'win' and 'powershell.exe -Command "Add-Type -AssemblyName System.speech;(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\\\"%s\\\")"' or - system == 'linux' and 'echo %q | festival --tts' or - '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' + system == 'linux' and 'echo %q | festival --tts' string.play = function(self) fn.jobstart(f:format(self)) diff --git a/tts/package.json b/tts/package.json deleted file mode 100644 index e5abbcc..0000000 --- a/tts/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "dependencies": { - "say": "^0.16.0" - } -} diff --git a/tts/say.js b/tts/say.js deleted file mode 100644 index 1d4298b..0000000 --- a/tts/say.js +++ /dev/null @@ -1,4 +0,0 @@ -const say = require('say') - -// console.log(word) -say.speak(process.argv.slice(2))