summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorChitoku <chitoku-k@users.noreply.github.com>2020-03-24 08:58:22 +0900
committerGitHub <noreply@github.com>2020-03-24 08:58:22 +0900
commit079046863c0a9f5bc37d629bab02dccffcf329bc (patch)
tree51e967680be97cfeefcdf507ea80bcfe9d6e302b /test
parent07b965bba18fcea575458aeb3e6cc4fc832b11f2 (diff)
[zsh-completion] Fix a bug where _fzf_complete did not iterate through args (#1936)
Diffstat (limited to 'test')
-rwxr-xr-xtest/test_go.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_go.rb b/test/test_go.rb
index ca862a53..765108ca 100755
--- a/test/test_go.rb
+++ b/test/test_go.rb
@@ -2176,7 +2176,7 @@ unset <%= UNSETS.join(' ') %>
# Old API
_fzf_complete_f() {
- _fzf_complete "--multi --prompt \"prompt-f> \"" "$@" < <(
+ _fzf_complete "+m --multi --prompt \"prompt-f> \"" "$@" < <(
echo foo
echo bar
)
@@ -2184,7 +2184,7 @@ _fzf_complete_f() {
# New API
_fzf_complete_g() {
- _fzf_complete --multi --prompt "prompt-g> " -- "$@" < <(
+ _fzf_complete +m --multi --prompt "prompt-g> " -- "$@" < <(
echo foo
echo bar
)