ace-window.el (aw-transpose-frame): Add and bind to "t"

Fixes #96
old-master
Oleh Krehel 7 years ago
parent a3ad48f380
commit 2d132bab25
  1. 5
      ace-window.el

@ -167,6 +167,7 @@ Consider changing this if the overlay tends to overlap with other things."
(?v aw-split-window-vert "Split Vert Window")
(?b aw-split-window-horz "Split Horz Window")
(?o delete-other-windows "Delete Other Windows")
(?t aw-transpose-frame "Transpose Frame")
(?? aw-show-dispatch-help))
"List of actions for `aw-dispatch-default'.
Each action is a list of either:
@ -580,6 +581,10 @@ Amend MODE-LINE to the mode line for the duration of the selection."
(aw-select " Ace - Delete Other Windows"
#'delete-other-windows))
(defun aw-transpose-frame (w)
"Select any window on frame and `tranpose-frame'."
(transpose-frame (window-frame w)))
(define-obsolete-function-alias
'ace-maximize-window 'ace-delete-other-windows "0.10.0")

Loading…
Cancel
Save