emacs: bind <leader>a to code actions provided by eglot/lsp-mode
Alan Pearce alan@alanpearce.eu
Tue, 25 Jun 2024 10:41:53 +0200
1 files changed, 7 insertions(+), 0 deletions(-)
jump to
M user/emacs/init.el → user/emacs/init.el
@@ -1216,6 +1216,12 @@ (if lsp-mode (call-interactively #'consult-lsp-symbols) (call-interactively #'consult-eglot-symbols))) +(defun my/ls-code-actions () + (interactive) + (call-interactively + (if lsp-mode + #'lsp-execute-code-action + #'eglot-code-actions))) ;;;; Reformat on save @@ -1270,6 +1276,7 @@ "o" #'other-window "s" #'treemacs-select-window "u" #'universal-argument ";" #'execute-extended-command + "a" #'my/ls-code-actions "bb" #'consult-buffer "bx" #'kill-this-buffer "br" #'revert-buffer