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 | |
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.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_subversion | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 040086a8d..84c88d215 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-09-27 Clint Adams <clint@zsh.org> + + * Vincent Lefevre: 21767: Completion/Unix/Command/_subversion: + add ~ to the default svn status pattern. + 2005-09-26 Peter Stephenson <pws@csr.com> * 21764: Src/Zle/zle_hist.c: unmetafication mangled history lines 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)" |