1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-20 23:16:04 +02:00

unposted (c.f. Norikatsu Shigemura: github #96): add missing local declaration

This commit is contained in:
Oliver Kiddle 2022-11-17 21:10:28 +01:00
parent dbefe08f3e
commit e4aeb3b911
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2022-11-17 Oliver Kiddle <opk@zsh.org>
* unposted (c.f. Norikatsu Shigemura: github #96):
Completion/Unix/Command/_cut: add missing local declaration
* github #87: Matt Koscica: Completion/Unix/Command/_tmux:
update options tmux 3.4

View File

@ -1,6 +1,7 @@
#compdef cut gcut
typeset -A _cut_args
local -a args
case $LANG in
(de_DE.UTF-8)
@ -45,7 +46,7 @@ if _pick_variant gnu="Free Soft" unix --version; then
'*:file:_files'
else
case $OSTYPE in
freebsd*|dragonfly*) args+=( '(-d)-w[use whitespace as the delimiter]' ) ;;
freebsd*|dragonfly*) args=( '(-d)-w[use whitespace as the delimiter]' ) ;;
esac
_arguments $args \
"-b[${_cut_args[bytes]}]:list" \