diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-24T17·15+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-24T17·15+0100 |
commit | 637cb0bd2a091d8a4c60e6566a7d7ba3a83fa6a0 (patch) | |
tree | b3073ddd6da04d882252a9b147899e8e9348a89a /tools/emacs/config | |
parent | ceaa0ff0bafd1efeb154b982cc6db8a4907029f1 (diff) |
fix(emacs.d): Pick new buffers *into* the active window r/298
Instead of splitting below and moving the target buffer into the new split, split and move the buffer into the active window. The other way around does (for some reason I don't fully understand) not work because `split-window-below` may return invalid windows.
Diffstat (limited to 'tools/emacs/config')
-rw-r--r-- | tools/emacs/config/init.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/emacs/config/init.el b/tools/emacs/config/init.el index 975164383ce9..307699536cc4 100644 --- a/tools/emacs/config/init.el +++ b/tools/emacs/config/init.el @@ -55,10 +55,10 @@ :keymap ivy-switch-buffer-map :preselect (buffer-name (other-buffer (current-buffer))) :action (lambda (buffer) - (let ((new-window (split-window-below))) - (edwina-arrange) - (with-selected-window new-window - (switch-to-buffer buffer nil 'force-same-window)))) + (interactive) + (split-window-below) + (switch-to-buffer buffer nil 'force-same-window) + (edwina-arrange)) :matcher #'ivy--switch-buffer-matcher :caller 'ivy-switch-buffer)) :bind (:map edwina-mode-map |