mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-30 19:20:53 +02:00
Vincent Lefevre: 21767: add ~ to the default svn status pattern.
This commit is contained in:
parent
d9bb1a52c9
commit
161746bd9b
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)"
|
||||
|
|
Loading…
Reference in a new issue