all repos — nixfiles @ c9ab8eff28536cd11aab21175faf6d7c9fb4c2a6

System and user configuration, managed by nix and home-manager

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
commit

c9ab8eff28536cd11aab21175faf6d7c9fb4c2a6

parent

e8e28f1b15ec8c16df739b1d3933961c0f450fb4

1 files changed, 7 insertions(+), 0 deletions(-)

jump to
M user/emacs/init.eluser/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