cargo.el icon indicating copy to clipboard operation
cargo.el copied to clipboard

feature request: open cargo buffer inside current window

Open fliar opened this issue 8 years ago • 1 comments

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

fliar avatar Sep 15 '17 01:09 fliar

Something like

(add-to-list 'display-buffer-alist
                 '("\*Cargo.*"
                   (display-buffer-reuse-window display-buffer-in-side-window)
                   (side . bottom)
                   (window-height . 0.3)))

?

mookid avatar Oct 26 '17 22:10 mookid