Add eldoc-box and a shortcut (F1) to show eldoc buffer as a popup.

This commit is contained in:
kj 2023-04-14 23:37:36 -04:00
parent 026549eff7
commit 811ff581cf
1 changed files with 6 additions and 0 deletions

View File

@ -28,6 +28,12 @@
("M-S-<right>" . buf-move-right))
)
;; Mostrar la ayuda de eldoc/documentación en un childframe
(use-package eldoc-box
:straight t
:defer t
:bind ("<f1>" . eldoc-box-help-at-point))
;; Seleccionar por regiones (similar a mark-sexp, pero toma en cuenta hacia atrás del cursor también)
(use-package expand-region
:straight t