From 161746bd9b27e9cc059b2f3b886c352000450022 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Tue, 27 Sep 2005 13:56:53 +0000 Subject: [PATCH] Vincent Lefevre: 21767: add ~ to the default svn status pattern. --- ChangeLog | 5 +++++ Completion/Unix/Command/_subversion | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 040086a8d..84c88d215 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-09-27 Clint Adams + + * Vincent Lefevre: 21767: Completion/Unix/Command/_subversion: + add ~ to the default svn status pattern. + 2005-09-26 Peter Stephenson * 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)"