From 9beeda8a9dcf7df12e95229dc145a0a02dc7bdd2 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Fri, 5 Apr 2024 22:18:59 +0100 Subject: [PATCH] Add the expand-region mode --- lisp/fg42/editor.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lisp/fg42/editor.el b/lisp/fg42/editor.el index 20d811a..1f8cbe9 100644 --- a/lisp/fg42/editor.el +++ b/lisp/fg42/editor.el @@ -99,6 +99,12 @@ external dependencies." "`pkg-info' integration.") + (use! expand-region + "Expand region increases the selected region by semantic units. +Just keep pressing the key until it selects what you want." + :bind ("C-=" . er/expand-region)) + + (use! helpful "Helpful is an alternative to the built-in Emacs help that provides much more contextual information."