diff options
author | Clint Adams <clint@users.sourceforge.net> | 2005-09-27 13:56:53 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2005-09-27 13:56:53 +0000 |
commit | 161746bd9b27e9cc059b2f3b886c352000450022 (patch) | |
tree | 8d15f2a039744fc88b09a13f522e44713ed77cec /Completion/Unix/Command | |
parent | d9bb1a52c91bdff06bb7af281dc75ceae332a4e3 (diff) | |
download | zsh-161746bd9b27e9cc059b2f3b886c352000450022.tar.gz zsh-161746bd9b27e9cc059b2f3b886c352000450022.tar.xz zsh-161746bd9b27e9cc059b2f3b886c352000450022.zip |
Vincent Lefevre: 21767: add ~ to the default svn status pattern.
Diffstat (limited to 'Completion/Unix/Command')
-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 0b0c31245..04509611c 100644 --- a/Completion/Unix/Command/_subversion +++ b/Completion/Unix/Command/_subversion @@ -156,7 +156,7 @@ _svn_deletedfiles() { (( $+functions[_svn_status] )) || _svn_status() { local dir=$REPLY:h - local pat="${1:-([ADMR]|?M)}" + local pat="${1:-([ADMR~]|?M)}" if (( ! $+_cache_svn_status[$dir] )); then _cache_svn_status[$dir]="$(_call_program files svn status -N $dir)" |