Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ace-window.el
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,9 @@ Windows are numbered top down, left to right."
(defun aw-flip-window ()
"Switch to the window you were previously in."
(interactive)
(aw-switch-to-window (aw--pop-window)))
(let ((win (get-mru-window t t t)))
(unless win (error "Last window not found"))
(aw-switch-to-window win)))

(defun aw-show-dispatch-help ()
"Display action shortucts in echo area."
Expand Down