1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-02-24 11:51:19 +01:00

users/13477: call _files instead of _path_files to correctly handle

cycling through choices.
This commit is contained in:
Bart Schaefer 2008-11-23 18:23:28 +00:00
parent 33b846810c
commit 6636282a16
2 changed files with 6 additions and 1 deletions
ChangeLog
Completion/Unix/Command

View file

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

View file

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