diff options
| author | Bart Schaefer <barts@users.sourceforge.net> | 2008-11-23 18:23:28 +0000 |
|---|---|---|
| committer | Bart Schaefer <barts@users.sourceforge.net> | 2008-11-23 18:23:28 +0000 |
| commit | 6636282a1607343553c2aab52defc165b0e97838 (patch) | |
| tree | 3aa76f8287f57c8556866004a60a7c9300742094 | |
| parent | users/13464: allow MIME suffixes to match upper case variants (diff) | |
| download | zsh-6636282a1607343553c2aab52defc165b0e97838.tar zsh-6636282a1607343553c2aab52defc165b0e97838.tar.gz zsh-6636282a1607343553c2aab52defc165b0e97838.tar.bz2 zsh-6636282a1607343553c2aab52defc165b0e97838.tar.lz zsh-6636282a1607343553c2aab52defc165b0e97838.tar.xz zsh-6636282a1607343553c2aab52defc165b0e97838.tar.zst zsh-6636282a1607343553c2aab52defc165b0e97838.zip | |
users/13477: call _files instead of _path_files to correctly handle
cycling through choices.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Completion/Unix/Command/_rm | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2008-11-23 Barton E. Schaefer <schaefer@zsh.org> + + * users/13477: Completion/Unix/Command/_rm: call _files instead + of _path_files to correctly handle cycling through choices. + 2008-11-20 Peter Stephenson <pws@csr.com> * 26075: Functions/Calendar/calendar_parse: update repeated events diff --git a/Completion/Unix/Command/_rm b/Completion/Unix/Command/_rm index 4209134b0..815bbbdf8 100644 --- a/Completion/Unix/Command/_rm +++ b/Completion/Unix/Command/_rm @@ -34,7 +34,7 @@ case $state in (file) declare -a ignored ignored=(${line//(#m)[\[\]()\\*?#<>~\^]/\\$MATCH}) - _path_files -F ignored && ret=0 + _files -F ignored && ret=0 ;; esac |
