From 6a3f13a3943c8db62742bed7179c88d1356cc31a Mon Sep 17 00:00:00 2001 From: Eval Exec Date: Wed, 1 Jan 2025 02:01:04 +0800 Subject: [PATCH] Update lsp-completion.el It seems that `lsp-completion--annotate` have no reason to execute `(lsp-completion--resolve-async item #'ignore)`. --- lsp-completion.el | 1 - 1 file changed, 1 deletion(-) diff --git a/lsp-completion.el b/lsp-completion.el index a835eac6d6..b42ffb2cf9 100644 --- a/lsp-completion.el +++ b/lsp-completion.el @@ -249,7 +249,6 @@ The CLEANUP-FN will be called to cleanup." "Annotate ITEM detail." (-let (((completion-item &as &CompletionItem :detail? :kind? :label-details?) (get-text-property 0 'lsp-completion-item item))) - (lsp-completion--resolve-async item #'ignore) (concat (when (and lsp-completion-show-detail detail?) (concat " " (s-replace "\r" "" detail?)))