diff options
author | Eric Cook <llua@gmx.com> | 2013-10-08 12:52:31 -0400 |
---|---|---|
committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2013-10-08 20:47:51 +0100 |
commit | dc272d0d14b126ee445c39d1de3962524930fb70 (patch) | |
tree | 9e8ac60c8b5ffaf149c7caeb812afa45ba2bc77a /Completion/Linux/Command/_btrfs | |
parent | 8ffdf161c781b374dcaa461c1a5333f70cffdf6f (diff) | |
download | zsh-dc272d0d14b126ee445c39d1de3962524930fb70.tar.gz zsh-dc272d0d14b126ee445c39d1de3962524930fb70.tar.xz zsh-dc272d0d14b126ee445c39d1de3962524930fb70.zip |
31801: missing local declaration for variables in completion
Diffstat (limited to 'Completion/Linux/Command/_btrfs')
-rw-r--r-- | Completion/Linux/Command/_btrfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Linux/Command/_btrfs b/Completion/Linux/Command/_btrfs index eac827050..da2514e99 100644 --- a/Completion/Linux/Command/_btrfs +++ b/Completion/Linux/Command/_btrfs @@ -1,7 +1,7 @@ #compdef btrfs local curcontext="$curcontext" curstate state line expl grp cmd ret=1 -local -a groups args +local -a groups args cmds_1 cmds_2 cmds_3 cmds_4 cmds_5 cmds_6 groups=( subvolume filesystem device scrub balance inspect-internal help version ) cmds_1=( create delete list snapshot get-default set-default find-new help ) |