diff options
| author | dana <dana@dana.is> | 2026-06-14 04:07:37 +0000 |
|---|---|---|
| committer | dana <dana@dana.is> | 2026-06-20 19:27:09 -0500 |
| commit | 74fa2341401ce9157df7d062b5811f92097a6bf1 (patch) | |
| tree | a283dae8c677991e3c7c332e43e8c8d124c0eb17 /Completion/Unix/Command/_csplit | |
| parent | 54767: zformat: replace -qn by spec quoting indicator syntax (diff) | |
| download | zsh-74fa2341401ce9157df7d062b5811f92097a6bf1.tar zsh-74fa2341401ce9157df7d062b5811f92097a6bf1.tar.gz zsh-74fa2341401ce9157df7d062b5811f92097a6bf1.tar.bz2 zsh-74fa2341401ce9157df7d062b5811f92097a6bf1.tar.lz zsh-74fa2341401ce9157df7d062b5811f92097a6bf1.tar.xz zsh-74fa2341401ce9157df7d062b5811f92097a6bf1.tar.zst zsh-74fa2341401ce9157df7d062b5811f92097a6bf1.zip | |
54768: completion: use `zformat -q` for formatting
Diffstat (limited to 'Completion/Unix/Command/_csplit')
| -rw-r--r-- | Completion/Unix/Command/_csplit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_csplit b/Completion/Unix/Command/_csplit index b0ba1d7f4..eb354bd83 100644 --- a/Completion/Unix/Command/_csplit +++ b/Completion/Unix/Command/_csplit @@ -17,7 +17,7 @@ specs=( if _pick_variant gnu='(GNU|uutils)' unix --version; then # GNU coreutils 8.32 specs+=( - '(hv -b --suffix-format -n --digits)'{-b+,--suffix-format=}'[specify format for numbers in output file names]:format [%%02d]: ' + '(hv -b --suffix-format -n --digits)'{-b+,--suffix-format=}'[specify format for numbers in output file names]:format [%02d]: ' '(hv)--suppress-matched[suppress the lines matching the pattern]' '(hv -z --elide-empty)'{-z,--elide-empty-files}'[remove empty output files]' + hv @@ -44,7 +44,7 @@ case $state in elif compset -P '[0-9]*'; then _message 'line number' && ret=0 elif [[ ${words[CURRENT]} != -* ]] then - _message "line_number, '/regex/[offset]', '%%regex%%[offset]', or '{count}'" && ret=0 + _message "line_number, '/regex/[offset]', '%regex%[offset]', or '{count}'" && ret=0 fi esac |
