1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-30 07:10:58 +02:00

Vincent Lefevre: 21767: add ~ to the default svn status pattern.

This commit is contained in:
Clint Adams 2005-09-27 13:56:53 +00:00
parent d9bb1a52c9
commit 161746bd9b
2 changed files with 6 additions and 1 deletions

View file

@ -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

View file

@ -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)"