chore(lsp): tweak lsp-related keybindings again

This commit is contained in:
2021-10-24 03:58:33 +01:00
parent 6daac868e2
commit 67a0c99e52
2 changed files with 4 additions and 7 deletions

View File

@@ -11,9 +11,7 @@
(use-package consult-lsp
:bind
(:map lsp-mode-map
("C-t" . consult-lsp-file-symbols)
("C-c C-\\" . consult-lsp-diagnostics)))
("C-c C-\\" . consult-lsp-diagnostics))
(provide 'siren-consult-lsp)
;;; siren-consult-lsp.el ends here

View File

@@ -12,10 +12,9 @@
(use-package helm-lsp
:after (helm-global-bindings)
:bind
(:map lsp-mode-map
("C-c '" . helm-lsp-workspace-symbol)
("C-c C-'" . helm-lsp-workspace-symbol)
("C-c \\" . helm-lsp-diagnostics)))
("C-c '" . helm-lsp-workspace-symbol)
("C-c C-'" . helm-lsp-workspace-symbol)
("C-c \\" . helm-lsp-diagnostics))
(provide 'siren-helm-lsp)
;;; siren-helm-lsp.el ends here