From 8091660b21e3a152c26fb4849ee8d92fc532e110 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Sun, 30 Aug 2020 16:11:28 -0400 Subject: [PATCH] Fix non-functional ls-ui-doc keybind --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index c0546f7..3cb4969 100644 --- a/init.el +++ b/init.el @@ -537,7 +537,7 @@ (setq lsp-ui-doc-border (face-background 'lsp-ui-doc-background)) :bind (:map lsp-ui-mode-map - ("M-," . (lambda () (interactive) (lsp-ui-doc-mode t) (lsp-ui-doc-glance) (lsp-ui-doc-mode nil))) + ("M-," . lsp-ui-doc-mode) ("M-." . lsp-ui-peek-find-definitions) ("M-?" . lsp-ui-peek-find-references)))