Refactor/revise ui/window-select

And bind SPC w C-w (or C-w C-w) to other-window.
This commit is contained in:
Henrik Lissner 2018-01-04 03:24:00 -05:00
parent 815fc6ef02
commit 58573a0ce7
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
3 changed files with 56 additions and 34 deletions

View file

@ -1,24 +1,24 @@
;;; ui/window-select/config.el -*- lexical-binding: t; -*-
(cond ((featurep! +switch-window)
;; Configure switch-window if that flag is found
(def-package! switch-window
:commands (switch-window switch-window-then-maximize switch-window-then-split-below
switch-window-then-split-right switch-window-then-delete
switch-window-then-swap-buffer)
:init
(setq switch-window-shortcut-style 'qwerty
switch-window-qwerty-shortcuts '("a" "s" "d" "f" "g" "h" "j" "k" "l"))
;; Redefine how we switch windows with switch-window
(define-key global-map [remap other-window] #'switch-window)))
((or (featurep! +ace-window) t)
;; Configure ace-window if that flag or no flag is found
(def-package! ace-window
:commands (ace-window ace-swap-window ace-delete-window
ace-select-window ace-delete-other-windows)
:init
(define-key global-map [remap other-window] #'ace-window)
:config
(setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l)
aw-scope 'frame
aw-background t))))
(cond
((featurep! +switch-window)
(def-package! switch-window
:commands (switch-window switch-window-then-maximize switch-window-then-split-below
switch-window-then-split-right switch-window-then-delete
switch-window-then-swap-buffer)
:init
(define-key global-map [remap other-window] #'switch-window)
:config
(setq switch-window-shortcut-style 'qwerty
switch-window-qwerty-shortcuts '("a" "s" "d" "f" "g" "h" "j" "k" "l"))))
((or (featurep! +ace-window) t) ; default to ace-window
(def-package! ace-window
:commands (ace-window ace-swap-window ace-delete-window
ace-select-window ace-delete-other-windows)
:init
(define-key global-map [remap other-window] #'ace-window)
:config
(setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l)
aw-scope 'frame
aw-background t))))