Don't use vim.trim

This commit is contained in:
przepompownia 2025-08-05 01:35:15 +02:00
parent 3f6f15cab9
commit 7fe20240bf

View File

@ -17,7 +17,7 @@ function M.get_toplevel(cwd)
log.line("git", "%s", table.concat(cmd, " ")) log.line("git", "%s", table.concat(cmd, " "))
local obj = vim.system(cmd):wait() local obj = vim.system(cmd):wait()
local out = vim.trim(obj.stdout) local out = obj.stdout
log.raw("git", out) log.raw("git", out)
log.profile_end(profile) log.profile_end(profile)