Emacs: enable progressively-nicer goto-{def,ref} commands
Alan Pearce alan@alanpearce.eu
Fri, 15 Nov 2019 16:47:20 +0100
1 files changed, 8 insertions(+), 0 deletions(-)
jump to
M user/emacs/.emacs.d/init.el → user/emacs/.emacs.d/init.el
@@ -762,6 +762,10 @@ :fringe-face 'flycheck-fringe-info :info-list-face 'flycheck-error-list-info))) (use-package lsp-mode + :general (:states 'normal :keymaps 'lsp-mode-map + "gd" #'xref-find-definitions + "gr" #'xref-find-references + "C-t" #'xref-pop-marker-stack) :ghook ('(typescript-mode-hook dockerfile-mode-hook yaml-mode-hook @@ -784,6 +788,10 @@ (use-package lsp-ui :after lsp-mode :ghook ('lsp-mode-hook) + :general (:states 'normal :keymaps 'lsp-ui-mode-map + "gd" #'lsp-ui-peek-find-definitions + "gr" #'lsp-ui-peek-find-references + "C-t" #'lsp-ui-peek-jump-backward) :config (progn (setq-default lsp-ui-doc-mode nil)) :custom ((lsp-ui-sideline-enable t)