From 871cc1e48a2c1ddc8c5aa14946263ed283ad425f Mon Sep 17 00:00:00 2001 From: xiaomo Date: Sat, 13 May 2023 18:13:32 +0800 Subject: [PATCH] refactor: wsl --- plugin/Trans.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugin/Trans.lua b/plugin/Trans.lua index e78a7e0..a4573e4 100644 --- a/plugin/Trans.lua +++ b/plugin/Trans.lua @@ -24,8 +24,7 @@ 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 + (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 == 'termux' and 'termux-tts-speak %q' or system == 'linux' and 'echo %q | festival --tts'