From d6786e33f1bd52ff37af9c826be7db0c70c96b42 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Sun, 6 May 2018 09:35:46 +0300 Subject: [PATCH] [Fix #1147] Add an extra keybinding for ace-window that's Windows friendly --- core/prelude-global-keybindings.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/prelude-global-keybindings.el b/core/prelude-global-keybindings.el index 1196d90..a456cbb 100644 --- a/core/prelude-global-keybindings.el +++ b/core/prelude-global-keybindings.el @@ -109,7 +109,10 @@ (global-set-key (kbd "C-c j") 'avy-goto-word-or-subword-1) (global-set-key (kbd "s-.") 'avy-goto-word-or-subword-1) + +;; improved window navigation with ace-window (global-set-key (kbd "s-w") 'ace-window) +(global-set-key [remap other-window] 'ace-window) (provide 'prelude-global-keybindings)