neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit eb629cce917155a4d436327db10c8b1b44ae7861
parent 6072153796d1b1e54067ac9823583be96b24ede1
Author: Jaehwang Jung <tomtomjhj@gmail.com>
Date:   Sat,  3 Aug 2024 18:14:34 +0900

fix(lsp): redundant spaces in lsp log (#29970)


Diffstat:
Mruntime/lua/vim/lsp/log.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime/lua/vim/lsp/log.lua b/runtime/lua/vim/lsp/log.lua @@ -19,7 +19,7 @@ local current_log_level = log_levels.WARN local log_date_format = '%F %H:%M:%S' local function format_func(arg) - return vim.inspect(arg, { newline = '' }) + return vim.inspect(arg, { newline = ' ', indent = '' }) end local function notify(msg, level)