diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-07-23 13:06:29 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-07-23 13:06:29 +0100 |
commit | feec02aa28e9972f4b6e3f8465f4c5dc7be43fc7 (patch) | |
tree | 11f8b4d978363de2f21d2c1012680e1bdc7c45af /emacs-prelude/personal/lisp/init-lsp.el | |
parent | 769926dee8bed6be8278dfb3f540ff0d376fbbc6 (diff) | |
download | dotfiles-feec02aa28e9972f4b6e3f8465f4c5dc7be43fc7.tar.gz |
More emacs.d updates
Diffstat (limited to 'emacs-prelude/personal/lisp/init-lsp.el')
-rw-r--r-- | emacs-prelude/personal/lisp/init-lsp.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emacs-prelude/personal/lisp/init-lsp.el b/emacs-prelude/personal/lisp/init-lsp.el index 6568229..9f8f1cd 100644 --- a/emacs-prelude/personal/lisp/init-lsp.el +++ b/emacs-prelude/personal/lisp/init-lsp.el @@ -21,7 +21,8 @@ lsp-enable-indentation nil lsp-completion-enable nil) (key-chord-define-global "QQ" 'lsp-find-references) - (key-chord-define-global "GG" 'lsp-find-definition)) + (key-chord-define-global "PP" 'lsp-peek-find-references) + (key-chord-define-global "GG" 'lsp-find-definition) + (key-chord-define-global "DD" 'lsp-peek-find-definition)) (provide 'init-lsp) - |