commit e54676b867af70f1f126eaf4bc024528d3cf5025
parent 8692263f75ed2007425ebf94d5a48c8d500a0ed2
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date: Tue, 12 Jan 2021 19:54:00 -0600
Add ace-window
Diffstat:
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/README.org b/README.org
@@ -1480,6 +1480,17 @@ Packages providing enhancements to Emacs interface. Mostly simple plug-and-play
packages. Load enhancements in the end to prevent their dependencies getting
loaded prior to their own customization.
+** Ace Window
+Prepare for the age of multi-monitor and ultra-wide.
+#+BEGIN_SRC emacs-lisp
+ (use-package ace-window
+ :ensure t
+ :bind
+ (("M-o" . ace-window))
+ :init
+ (setq aw-keys '(?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9 ?0)))
+#+END_SRC
+
** Avy
Jump to visible text using a char-based decision tree, similar to =ace-jump=.
#+BEGIN_SRC emacs-lisp