From a48caf51e11d482685271b207dd277d15eeff5cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=B0=9B?= Date: Mon, 24 Apr 2023 19:57:33 +0800 Subject: [PATCH] remove: node --- plugin/Trans.lua | 9 ++------- tts/package.json | 5 ----- tts/say.js | 4 ---- 3 files changed, 2 insertions(+), 16 deletions(-) delete mode 100644 tts/package.json delete mode 100644 tts/say.js 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))