From 15c0e9f385036687547ebcf22d2e749bce89f3de Mon Sep 17 00:00:00 2001 From: Avram Colak Date: Tue, 6 Oct 2015 00:08:37 +1300 Subject: [PATCH] Replace switch-window with ace-window. --- init.el | 2 +- lisp/ace-window-rc.el | 9 +++++++++ lisp/switch-window-rc.el | 8 -------- 3 files changed, 10 insertions(+), 9 deletions(-) create mode 100644 lisp/ace-window-rc.el delete mode 100644 lisp/switch-window-rc.el diff --git a/init.el b/init.el index 12771cc..ab4b249 100644 --- a/init.el +++ b/init.el @@ -21,7 +21,7 @@ "edit-rc" "smex-rc" "ido-ubiquitous-rc" - "switch-window-rc" + "ace-window-rc" "paredit-rc" "mouse-copy-rc" "org-rc" diff --git a/lisp/ace-window-rc.el b/lisp/ace-window-rc.el new file mode 100644 index 0000000..0d4ba23 --- /dev/null +++ b/lisp/ace-window-rc.el @@ -0,0 +1,9 @@ +;;; Simple rc to configure ace-window. + +(y-require 'ace-window) + +(global-set-key (kbd "C-x o") 'ace-window) + +(setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l) + aw-background nil + aw-dispatch-always t) diff --git a/lisp/switch-window-rc.el b/lisp/switch-window-rc.el deleted file mode 100644 index beb1d8c..0000000 --- a/lisp/switch-window-rc.el +++ /dev/null @@ -1,8 +0,0 @@ -;;; A simple rc to configure switch-window. - -(y-require 'switch-window) - -(global-set-key (kbd "C-x o") 'switch-window) - -;; Less finger travel this way. -(setq switch-window-shortcut-style 'qwerty) -- 2.11.4.GIT