From 5ad90cc437a88854ab55b076cbd3a2ebc4fb77d5 Mon Sep 17 00:00:00 2001 From: kj Date: Thu, 13 Apr 2023 13:04:04 -0400 Subject: [PATCH] Add expand region. --- configs/init-packages.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configs/init-packages.el b/configs/init-packages.el index ba63d4e..1e67dd1 100644 --- a/configs/init-packages.el +++ b/configs/init-packages.el @@ -29,6 +29,12 @@ ("M-S-" . buf-move-right)) ) +;; Seleccionar por regiones (similar a mark-sexp, pero toma en cuenta hacia atrás del cursor también) +(use-package expand-region + :straight t + :defer t + :bind ("C-+" . er/expand-region)) + ;; Major mode para archivos CSV (use-package csv-mode :straight t