We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 654a702 commit 73d04a5Copy full SHA for 73d04a5
lib/App/Spec/Completion/Bash.pm
@@ -53,8 +53,9 @@ $completion_outer
53
54
_${appname}_compreply() \{
55
local prefix=""
56
+ local IFS=\$'\\n'
57
cur="\$(printf '%q' "\$cur")"
- IFS=\$'\\n' COMPREPLY=(\$(compgen -P "\$prefix" -W "\$*" -- "\$cur"))
58
+ IFS=\$IFS COMPREPLY=(\$(compgen -P "\$prefix" -W "\$*" -- "\$cur"))
59
__ltrim_colon_completions "\$prefix\$cur"
60
61
# http://stackoverflow.com/questions/7267185/bash-autocompletion-add-description-for-possible-completions
0 commit comments