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.
This commit is contained in:
2021-10-06 04:37:55 +01:00
parent 5849a7b522
commit 9a3828c293

View File

@@ -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