mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-14 06:13:47 -05:00
Stop processing more actions after a terminal action (accept, abort, etc.)
This commit is contained in:
@@ -4831,6 +4831,10 @@ func (t *Terminal) Loop() error {
|
|||||||
if !doAction(action) {
|
if !doAction(action) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
// A terminal action performed. We should stop processing more.
|
||||||
|
if !looping {
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if onFocus, prs := t.keymap[tui.Focus.AsEvent()]; prs && iter < maxFocusEvents {
|
if onFocus, prs := t.keymap[tui.Focus.AsEvent()]; prs && iter < maxFocusEvents {
|
||||||
|
|||||||
@@ -299,4 +299,9 @@ class TestFilter < TestBase
|
|||||||
assert_equal expected, result
|
assert_equal expected, result
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_abort_action_chain
|
||||||
|
assert_equal '1', `seq 100 | #{FZF} --bind 'load:accept+up+up'`.chomp
|
||||||
|
assert_equal '', `seq 100 | #{FZF} --bind 'load:abort+become(echo {})'`.chomp
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user