Browse Source

Emacs: Add bindings for function signature preview cycling

master
Riyyi 2 years ago
parent
commit
3492090285
  1. 5
      .config/emacs/config.org

5
.config/emacs/config.org

@ -779,6 +779,11 @@ Set keybinds to functionality of installed packages.
(global-set-key [remap describe-variable] #'helpful-variable)
(which-key-add-key-based-replacements "C-h o" "describe-symbol-at-point")
;; LSP
(with-eval-after-load 'lsp-mode
(define-key lsp-signature-mode-map (kbd "M-j") #'lsp-signature-next)
(define-key lsp-signature-mode-map (kbd "M-k") #'lsp-signature-previous))
;; Magit
(with-eval-after-load 'magit
(define-key magit-log-select-mode-map (kbd "M-c") #'magit-log-select-pick)

Loading…
Cancel
Save