diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2022-01-26 14:18:44 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2022-01-29 10:08:40 +0000 |
commit | cb2b0e7c6cdd851f79b6856335e8ab7a3d3d1935 (patch) | |
tree | 4ab2d9175d440448638dd3b2cfc82c55710e015b /Completion | |
parent | 63425124835ec6c5cccdb17b50ac2a4cb8a0e90f (diff) | |
download | zsh-cb2b0e7c6cdd851f79b6856335e8ab7a3d3d1935.tar.gz zsh-cb2b0e7c6cdd851f79b6856335e8ab7a3d3d1935.tar.xz zsh-cb2b0e7c6cdd851f79b6856335e8ab7a3d3d1935.zip |
49712: _subversion: svn rm: Complete all svn-controlled files, not only missing/deleted files
Note that currently, _svn_controlled matches all files.
Diffstat (limited to 'Completion')
-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 2f66c3522..9ef3077f6 100644 --- a/Completion/Unix/Command/_subversion +++ b/Completion/Unix/Command/_subversion @@ -146,7 +146,7 @@ _svn () { ;; (delete) args+=( - '*:file:_files -g ".svn(/e:_svn_deletedfiles:)"' + '*:file:_files -g "*(e:_svn_controlled:)"' ) ;; (diff) |