From 586cd6ff08de2a61de9b2d8a3886dba648bbde28 Mon Sep 17 00:00:00 2001 From: JuanZoran <1430359574@qq.com> Date: Sat, 13 May 2023 19:36:37 +0800 Subject: [PATCH] fix: system checker mistake --- plugin/Trans.lua | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/plugin/Trans.lua b/plugin/Trans.lua index a4573e4..3cc1992 100644 --- a/plugin/Trans.lua +++ b/plugin/Trans.lua @@ -24,12 +24,16 @@ string.width = api.nvim_strwidth local system = Trans.system 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 + (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 system == 'mac' and 'say %q' or system == 'termux' and 'termux-tts-speak %q' or - system == 'linux' and 'echo %q | festival --tts' + system == 'linux' and 'echo %q | festival --tts' or + error 'Unsupported system' + string.play = function(self) - local s = string.gsub(self, "\"", " ") + ---@diagnostic disable-next-line: param-type-mismatch + local s = string.gsub(self, '\"', ' ') fn.jobstart(f:format(s)) end