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.
This commit is contained in:
2020-05-10 21:20:21 +01:00
parent 620b78368c
commit a6a84524bd

View File

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