From e993dc12be4970c0301f0cac07652dcd674fe50c Mon Sep 17 00:00:00 2001 From: xiaomo Date: Sat, 13 May 2023 18:16:28 +0800 Subject: [PATCH] fix: get_select get_lines --- lua/Trans/core/util.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/Trans/core/util.lua b/lua/Trans/core/util.lua index 0450d33..134ff37 100644 --- a/lua/Trans/core/util.lua +++ b/lua/Trans/core/util.lua @@ -32,7 +32,7 @@ function M.get_select() local e = #lines lines[1] = lines[1]:sub(s_col) lines[e] = line:sub(1, e_col) - return table.concat(lines, '\n') + return table.concat(lines, ' ') end end @@ -52,7 +52,7 @@ function M.get_lines() return vim.fn.getline(s_row) else local lines = vim.fn.getline(s_row, e_row) - return table.concat(lines, "\n") + return table.concat(lines, " ") end end