From a6a84524bd0648f5e02869302b3142cc7e135bbf Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 10 May 2020 21:20:21 +0100 Subject: [PATCH] fix(lsp): Add helm-lsp-workspace-symbol keybinding for terminal use Make `C-c '` run `helm-lsp-workspace-symbol` just like `C-c C-'` already did. This is required as `C-'` cannot be used within terminals. --- modules/lsp/siren-helm-lsp.el | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/lsp/siren-helm-lsp.el b/modules/lsp/siren-helm-lsp.el index d8f1743..4936861 100644 --- a/modules/lsp/siren-helm-lsp.el +++ b/modules/lsp/siren-helm-lsp.el @@ -11,6 +11,7 @@ (use-package helm-lsp :bind + ("C-c '" . helm-lsp-workspace-symbol) ("C-c C-'" . helm-lsp-workspace-symbol)) (provide 'siren-helm-lsp)