From 67a0c99e52db4563524d12786905b828381d3c35 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 24 Oct 2021 03:58:33 +0100 Subject: [PATCH] chore(lsp): tweak lsp-related keybindings again --- modules/lsp/siren-consult-lsp.el | 4 +--- modules/lsp/siren-helm-lsp.el | 7 +++---- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/modules/lsp/siren-consult-lsp.el b/modules/lsp/siren-consult-lsp.el index e50e6fb..e7a1ac8 100644 --- a/modules/lsp/siren-consult-lsp.el +++ b/modules/lsp/siren-consult-lsp.el @@ -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 diff --git a/modules/lsp/siren-helm-lsp.el b/modules/lsp/siren-helm-lsp.el index e962e1b..bfcfdd7 100644 --- a/modules/lsp/siren-helm-lsp.el +++ b/modules/lsp/siren-helm-lsp.el @@ -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