diff options
author | Clint Adams <clint@users.sourceforge.net> | 2003-07-20 16:15:23 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2003-07-20 16:15:23 +0000 |
commit | 49d9ee0e09f77f6feee3565963b544024914f888 (patch) | |
tree | e912a3bb81b2b9dd2a8c54b98bfea099b3739cb6 /Completion/Unix | |
parent | 639272fb27e4077d4a580a72fcdfc68413fa2fe6 (diff) | |
download | zsh-49d9ee0e09f77f6feee3565963b544024914f888.tar.gz zsh-49d9ee0e09f77f6feee3565963b544024914f888.tar.xz zsh-49d9ee0e09f77f6feee3565963b544024914f888.zip |
18874: Completion/Unix/Command/_subversion: PATH can mean files too.
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_subversion | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_subversion b/Completion/Unix/Command/_subversion index e0a473fe4..4fea4f72e 100644 --- a/Completion/Unix/Command/_subversion +++ b/Completion/Unix/Command/_subversion @@ -49,7 +49,7 @@ _svn_subcommand () { ) [[ "$_svn_subcmd_usage" == *URL* ]] && _svn_subcmds=($_svn_subcmds ":url:_urls") - [[ "$_svn_subcmd_usage" == *PATH* ]] && _svn_subcmds=($_svn_subcmds "*:path:_files -/") + [[ "$_svn_subcmd_usage" == *PATH* ]] && _svn_subcmds=($_svn_subcmds "*:path:_files") _arguments \ "$_svn_subcmds[@]" && ret=0 |