cargo.el
cargo.el copied to clipboard
feature request: open cargo buffer inside current window
when emacs is split into 2 or 3 windows, hitting c-c c-c c-r to run the code will make cargo buffer displayed in one of the split windows. is there a way to open cargo buffer only inside current window like helm ( helm-split-window-in-side-p )? not automatically taking one of the other windows
Something like
(add-to-list 'display-buffer-alist
'("\*Cargo.*"
(display-buffer-reuse-window display-buffer-in-side-window)
(side . bottom)
(window-height . 0.3)))
?