From 758b9c0b3323f334f573adeae351e4db562aaca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=B0=9B?= Date: Mon, 24 Apr 2023 12:42:59 +0800 Subject: [PATCH] fix: win separator --- lua/Trans/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/Trans/init.lua b/lua/Trans/init.lua index a3b01a9..b592e08 100644 --- a/lua/Trans/init.lua +++ b/lua/Trans/init.lua @@ -25,7 +25,7 @@ local system = uname == 'Linux' and (vim.fn.executable 'termux-api-start' == 1 and 'termux' or 'linux') or error 'Unknown System, Please Report Issue' -local sep = system == 'win' and '\\' or '/' +local sep = system == 'win' and '\\\\' or '/' ---@class Trans ---@field style table @Style module ---@field cache table @Cache for translated data object