Skip to content

Commit 210bc6a

Browse files
authored
lsp-enable-which-key-integration: fix infinite loop (#2645)
1 parent a02f92f commit 210bc6a

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

lsp-mode.el

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2354,17 +2354,17 @@ active `major-mode', or for all major modes when ALL-MODES is t."
23542354
(apply
23552355
#'which-key-fn
23562356
(lsp--prepend-prefix
2357-
(nconc
2358-
'("" "lsp"
2359-
"s" "sessions"
2360-
"F" "folders"
2361-
"=" "formatting"
2362-
"T" "toggle"
2363-
"g" "goto"
2364-
"h" "help"
2365-
"r" "refactor"
2366-
"a" "code actions"
2367-
"G" "peek")
2357+
(cl-list*
2358+
"" "lsp"
2359+
"s" "sessions"
2360+
"F" "folders"
2361+
"=" "formatting"
2362+
"T" "toggle"
2363+
"g" "goto"
2364+
"h" "help"
2365+
"r" "refactor"
2366+
"a" "code actions"
2367+
"G" "peek"
23682368
lsp--binding-descriptions)))))
23692369

23702370

0 commit comments

Comments
 (0)