Closed zeltak closed 7 years ago
It's best left to user config. It's very easy to implement a custom command that does that.
thx, you mean ontop of ace-window or a complete separate elisp? i cant really code so an example starting point would be great if you have time :)
thx!
Z
(defun my-ace-window (arg)
(interactive "p")
(if (= 1 (length (window-list)))
(next-buffer)
(ace-window arg)))
(global-set-key (kbd "M-p") 'my-ace-window)
perfect!
thx alot!
Z
Hi
i saw a cool lisp code today that gave me an idea. If there is only one window displayed, it would be cool if ace-window could swap it with previous buffer. This would add additional functionality to ace-window when working with 1 window :)
thoughts?
best
Z