diff options
author | Franck Cuny <franck@fcuny.net> | 2020-12-09 18:15:30 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2020-12-09 18:15:30 -0800 |
commit | 3eb16698e4cf2e2bb6f486d2a8d02c9031f2eb85 (patch) | |
tree | d5ac1b5371278acbd0742d6e76d84e1697c93bc4 | |
parent | emacs: add binding for counsel-imenu (diff) | |
download | emacs.d-3eb16698e4cf2e2bb6f486d2a8d02c9031f2eb85.tar.gz |
emacs: add binding for lsp's imenu
-rw-r--r-- | emacs.d/custom/fcuny-prog.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs.d/custom/fcuny-prog.el b/emacs.d/custom/fcuny-prog.el index 961a155..9717df0 100644 --- a/emacs.d/custom/fcuny-prog.el +++ b/emacs.d/custom/fcuny-prog.el @@ -25,6 +25,8 @@ (lsp-enable-which-key-integration))))) :config (define-key lsp-mode-map (kbd "C-c l") lsp-command-map) + :bind + (("C-c l i" . lsp-ui-imenu)) :custom (lsp-session-file (expand-file-name "lsp-session-v1" fcuny/path-emacs-var)) (lsp-enable-snippet t) |