diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-02-09 22:46:07 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-02-09 22:46:07 -0500 |
commit | 1cdc0a3f156e7a07b4ee55487f2731f65e19ffef (patch) | |
tree | 3ed5b601949990b4e923f92435202f5ff37c40bd | |
parent | 7c084296fa00b3e0986b2642dc96e407b438f7d0 (diff) | |
download | emacs.d-1cdc0a3f156e7a07b4ee55487f2731f65e19ffef.tar.gz |
Change aw-scope to frame
I had this set to global so I could jump to windows displayed in frames
of other monitors, but I didn't use this often and it had the
disadvantage of needing to type a letter for the current two-window
frame if there were any frames on other monitors.
-rw-r--r-- | lisp/init-ace.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/init-ace.el b/lisp/init-ace.el index 6a7bccf..c6e1071 100644 --- a/lisp/init-ace.el +++ b/lisp/init-ace.el @@ -34,7 +34,7 @@ ;;; Ace Window (setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l) - aw-scope 'global) + aw-scope 'frame) (key-chord-define-global "jw" 'ace-window) |