summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2025-08-08 18:51:24 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2025-08-08 18:51:24 +0900
commit1afd14381079a35eac0a4c2a5cacb86e2a3f476b (patch)
tree0a7748d4112a56751026f21b89d505f74e4a613a /test
parente5cd7f0a3a73ef598267c1e9f29b0fe9a80925ab (diff)
downloadfzf-1afd14381079a35eac0a4c2a5cacb86e2a3f476b.tar.gz
Fix incorrect truncation of --info-command with --info=inline-right
Fix #4479
Diffstat (limited to 'test')
-rw-r--r--test/test_core.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_core.rb b/test/test_core.rb
index d77bbcce..0b6d5db5 100644
--- a/test/test_core.rb
+++ b/test/test_core.rb
@@ -1415,6 +1415,11 @@ class TestCore < TestInteractive
tmux.until { assert_match(%r{ --1/10000/10000-- *$}, it[-1]) }
end
+ def test_info_command_inline_right_no_ansi
+ tmux.send_keys(%(seq 10000 | #{FZF} --info-command 'echo -e "--$FZF_POS/$FZF_INFO--"' --info inline-right), :Enter)
+ tmux.until { assert_match(%r{ --1/10000/10000-- *$}, it[-1]) }
+ end
+
def test_info_command_and_focus
tmux.send_keys(%(seq 100 | #{FZF} --separator x --info-command 'echo $FZF_POS' --bind focus:clear-query), :Enter)
tmux.until { assert_match(/^ 1 xx/, it[-2]) }