m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 07:43:39 -05:00

Rename actions: exclude and exclude-multi

https://github.com/junegunn/fzf/pull/4231#issuecomment-2646067669
This commit is contained in:
Junegunn Choi
2025-02-09 13:52:20 +09:00
parent 1be1991299
commit a2420026ab
5 changed files with 15 additions and 13 deletions

View File

@@ -1666,8 +1666,8 @@ class TestCore < TestInteractive
end
end
def test_exclude
tmux.send_keys %(seq 1000 | #{FZF} --multi --bind 'a:exclude,b:reload(seq 1000),c:reload-sync(seq 1000)'), :Enter
def test_exclude_multi
tmux.send_keys %(seq 1000 | #{FZF} --multi --bind 'a:exclude-multi,b:reload(seq 1000),c:reload-sync(seq 1000)'), :Enter
tmux.until do |lines|
assert_equal 1000, lines.match_count
@@ -1702,8 +1702,8 @@ class TestCore < TestInteractive
# TODO: We should also check the behavior of 'exclude' during reloads
end
def test_exclude_current
tmux.send_keys %(seq 1000 | #{FZF} --multi --bind 'a:exclude-current,b:reload(seq 1000),c:reload-sync(seq 1000)'), :Enter
def test_exclude
tmux.send_keys %(seq 1000 | #{FZF} --multi --bind 'a:exclude,b:reload(seq 1000),c:reload-sync(seq 1000)'), :Enter
tmux.until do |lines|
assert_equal 1000, lines.match_count