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 56c5277 commit e378979Copy full SHA for e378979
CHANGELOG.md
@@ -1,6 +1,15 @@
1
Change Log
2
========================================
3
4
+v0.7.2 - 2022-01-28
5
+----------------------------------------
6
+
7
+- Add support for stdin
8
+- Refactor catch_all (internal)
9
+- Refactor command scopes
10
+- Fix autocomplete in ZSH
11
12
13
v0.7.1 - 2021-11-17
14
----------------------------------------
15
examples/completions/README.md
@@ -172,7 +172,7 @@ Options:
172
# Modifying it manually is not recommended
173
_cli_completions() {
174
local cur=${COMP_WORDS[COMP_CWORD]}
175
- local comp_line="${COMP_WORDS[*]:1}"
+ local comp_line="${COMP_WORDS[@]:1}"
176
177
case "$comp_line" in
178
'completions'*) COMPREPLY=($(compgen -W "--help -h" -- "$cur")) ;;
0 commit comments