Clear characters on 1-column margin after the preview window on the left

pull/1299/merge
Junegunn Choi 2 weeks ago
parent f6aa28c380
commit 9dee8edc0c
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -1452,6 +1452,14 @@ func (t *Terminal) resizeWindows(forcePreview bool) {
// Add a 1-column margin between the preview window and the main window
t.window = t.tui.NewWindow(
marginInt[0], marginInt[3]+pwidth+1, width-pwidth-1, height, false, noBorder)
// Clear characters on the margin
// fzf --bind 'space:preview(seq 100)' --preview-window left,1
for y := 0; y < height; y++ {
t.window.Move(y, -1)
t.window.Print(" ")
}
createPreviewWindow(marginInt[0], marginInt[3], pwidth, height)
} else {
t.window = t.tui.NewWindow(

Loading…
Cancel
Save