From 9a3828c293f8007cffb54988458ea1fba1d7fb8e Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 6 Oct 2021 04:37:55 +0100 Subject: [PATCH] feat(lsp): add keybindings for helm-lsp-diagnostics This makes it easy to get a nice list of all errors and warnings reported by the language server. --- modules/lsp/siren-helm-lsp.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/lsp/siren-helm-lsp.el b/modules/lsp/siren-helm-lsp.el index 0d58fc0..82467d1 100644 --- a/modules/lsp/siren-helm-lsp.el +++ b/modules/lsp/siren-helm-lsp.el @@ -13,7 +13,9 @@ :after (helm-global-bindings) :bind ("C-c '" . helm-lsp-workspace-symbol) - ("C-c C-'" . helm-lsp-workspace-symbol)) + ("C-c C-'" . helm-lsp-workspace-symbol) + ("C-c \\" . helm-lsp-diagnostics) + ("C-c C-\\" . helm-lsp-diagnostics)) (provide 'siren-helm-lsp) ;;; siren-helm-lsp.el ends here