diff options
author | Case Duckworth | 2021-02-08 07:39:48 -0600 |
---|---|---|
committer | Case Duckworth | 2021-02-08 07:39:48 -0600 |
commit | a8c99e0f143420ec4eb8b1859bcef78dc48125a7 (patch) | |
tree | aea03ca53521b329117f21da26f81100eb51b208 | |
parent | Add text-scale-adjust to elfeed show (diff) | |
download | emacs-a8c99e0f143420ec4eb8b1859bcef78dc48125a7.tar.gz emacs-a8c99e0f143420ec4eb8b1859bcef78dc48125a7.zip |
Add expand-region
-rw-r--r-- | config.org | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config.org b/config.org index 0511321..bd60ff2 100644 --- a/config.org +++ b/config.org | |||
@@ -1414,6 +1414,18 @@ see also | |||
1414 | (setq-default set-mark-repeat-command-pop t) | 1414 | (setq-default set-mark-repeat-command-pop t) |
1415 | #+end_src | 1415 | #+end_src |
1416 | 1416 | ||
1417 | ** The Region | ||
1418 | |||
1419 | *** Expand region :package: | ||
1420 | |||
1421 | #+begin_src emacs-lisp :noweb-ref packages | ||
1422 | (straight-use-package 'expand-region) | ||
1423 | #+end_src | ||
1424 | |||
1425 | #+begin_src emacs-lisp :noweb-ref bindings | ||
1426 | (define-key acdw/map (kbd "C-=") #'er/expand-region) | ||
1427 | #+end_src | ||
1428 | |||
1417 | ** Undo :package: | 1429 | ** Undo :package: |
1418 | 1430 | ||
1419 | *** Undo Fu | 1431 | *** Undo Fu |