From fe86fe038557ab56b6457175968fb8cbbc5192f0 Mon Sep 17 00:00:00 2001 From: StrawberryTea Date: Wed, 24 Apr 2024 17:24:47 -0500 Subject: [PATCH] fix: correct padding for lsp-modeline-progress --- lsp-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lsp-mode.el b/lsp-mode.el index 882e4eb29a..20e3fed73c 100644 --- a/lsp-mode.el +++ b/lsp-mode.el @@ -2190,7 +2190,7 @@ PARAMS - the data sent from WORKSPACE." "|")))) (lsp-workspaces))))) (unless (s-blank? progress-status) - (concat lsp-progress-prefix progress-status)))) + (concat lsp-progress-prefix progress-status " ")))) (lsp-defun lsp-on-progress-modeline (workspace (&ProgressParams :token :value (value &as &WorkDoneProgress :kind)))