m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-16 15:23:48 -05:00

Fix adaptive height with --header-border

This commit is contained in:
Junegunn Choi
2025-01-07 19:16:16 +09:00
parent a30181e240
commit 9c2f6cae88
2 changed files with 19 additions and 0 deletions

View File

@@ -1093,6 +1093,9 @@ func (t *Terminal) extraLines() int {
if t.listBorderShape.Visible() { if t.listBorderShape.Visible() {
extra += borderLines(t.listBorderShape) extra += borderLines(t.listBorderShape)
} }
if t.headerBorderShape.Visible() {
extra += borderLines(t.headerBorderShape)
}
if !t.noSeparatorLine() { if !t.noSeparatorLine() {
extra++ extra++
} }

View File

@@ -3702,6 +3702,22 @@ class TestGoFZF < TestBase
BLOCK BLOCK
tmux.until { assert_block(block, _1) } tmux.until { assert_block(block, _1) }
end end
def test_style_full_adaptive_height
tmux.send_keys %(seq 1| #{FZF} --style=full --height=~100% --header-lines=1 --info=default), :Enter
block = <<~BLOCK
1
0/0
>
BLOCK
tmux.until { assert_block(block, _1) }
end
end end
module TestShell module TestShell