Skip to content

Commit

Permalink
fix(mutt): avoid unexpected word splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga authored and scop committed Jan 3, 2024
1 parent ec0068d commit 3183e67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completions/mutt
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ _comp_cmd_mutt__query()
command sed -n '2,$s|^\([^[:space:]]\{1,\}\).*|\1|p'))
fi

_comp_compgen -a -- -W "${queryresults[*]}"
_comp_compgen -a -- -W '"${queryresults[@]}"'
}

# @param $1 (cur) Current word to complete
Expand Down

0 comments on commit 3183e67

Please sign in to comment.