Files
.emacs.d/modules/lsp/siren-helm-lsp.el
Jim Myhrberg a6a84524bd 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.
2020-05-10 21:26:29 +01:00

19 lines
354 B
EmacsLisp

;;; siren-helm-lsp.el --- jimeh's Emacs Siren: helm-lsp configuration.
;;; Commentary:
;; Basic configuration for helm-lsp.
;;; Code:
(require 'siren-helm)
(require 'siren-lsp)
(use-package helm-lsp
:bind
("C-c '" . helm-lsp-workspace-symbol)
("C-c C-'" . helm-lsp-workspace-symbol))
(provide 'siren-helm-lsp)
;;; siren-helm-lsp.el ends here