diff options
author | 2018-12-22 14:28:01 -0500 | |
---|---|---|
committer | 2018-12-22 14:28:01 -0500 | |
commit | f2a5794494de4bf1b018c6c540365bad40b0dafb (patch) | |
tree | 8f01c4c7db3911332f36a50e141011b51563310a /init.org | |
parent | 0571b240759700a2036605691e1ac31dc59820aa (diff) | |
download | configs-f2a5794494de4bf1b018c6c540365bad40b0dafb.tar.gz configs-f2a5794494de4bf1b018c6c540365bad40b0dafb.tar.xz configs-f2a5794494de4bf1b018c6c540365bad40b0dafb.zip |
[emacs] Assimilate (the awesome) expand-region 0.11.0-18-ged32924
Diffstat (limited to 'init.org')
-rw-r--r-- | init.org | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -911,8 +911,9 @@ There's no way I could top that, so I won't attempt to. #+begin_src emacs-lisp (use-package swiper - :bind (("C-s" . swiper) - ("C-r" . swiper))) + :bind (("C-s" . swiper) + ("C-r" . swiper) + ("C-S-s" . isearch-forward))) #+end_src **** Counsel @@ -1989,6 +1990,13 @@ Hopefully temporary. (global-page-break-lines-mode)) #+end_src +** expand-region + +#+begin_src emacs-lisp +(use-package expand-region + :bind ("C-=" . er/expand-region)) +#+end_src + * Email #+begin_src emacs-lisp |