mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-12-23 11:29:01 +00:00
Clear characters on 1-column margin after the preview window on the left
This commit is contained in:
parent
f6aa28c380
commit
9dee8edc0c
@ -1452,6 +1452,14 @@ func (t *Terminal) resizeWindows(forcePreview bool) {
|
|||||||
// Add a 1-column margin between the preview window and the main window
|
// Add a 1-column margin between the preview window and the main window
|
||||||
t.window = t.tui.NewWindow(
|
t.window = t.tui.NewWindow(
|
||||||
marginInt[0], marginInt[3]+pwidth+1, width-pwidth-1, height, false, noBorder)
|
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)
|
createPreviewWindow(marginInt[0], marginInt[3], pwidth, height)
|
||||||
} else {
|
} else {
|
||||||
t.window = t.tui.NewWindow(
|
t.window = t.tui.NewWindow(
|
||||||
|
Loading…
Reference in New Issue
Block a user