diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-05-26 20:43:03 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-05-26 20:43:03 -0400 |
commit | 67fb702912a6f7fd8566857d4e722331c1da2fc1 (patch) | |
tree | dbab3a83495f395863288eac65dfd2f1676e9edb | |
parent | 2c374204cbc10e0b5646cc0b327202aadc93698f (diff) | |
download | emacs.d-67fb702912a6f7fd8566857d4e722331c1da2fc1.tar.gz |
Return ace-window scope back to global
Commit d6ed99f in ace-window fixed issue with invisible frames when
running daemon.
-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 dac5464..9714a90 100644 --- a/lisp/init-ace.el +++ b/lisp/init-ace.el @@ -13,7 +13,7 @@ (define-key window-map "a" 'ace-window) (setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l) - aw-scope 'frame) + aw-scope 'global) (key-chord-define-global ",w" 'ace-window) |