mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix `+eshell/split-window' error
`+eshell/split-window' eventually calls `+eshell--bury-buffer', which invoked `+eshell/here' with `t' instead of a command string, erroring.
This commit is contained in:
@ -28,7 +28,7 @@
|
||||
(switch-to-buffer (doom-fallback-buffer)))
|
||||
(when +eshell-enable-new-shell-on-split
|
||||
(let ((default-directory directory))
|
||||
(when-let (win (get-buffer-window (+eshell/here t)))
|
||||
(when-let (win (get-buffer-window (+eshell/here)))
|
||||
(set-window-dedicated-p win dedicated-p))))))
|
||||
|
||||
(defun +eshell--setup-window (window &optional flag)
|
||||
|
Reference in New Issue
Block a user