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:
parent
33b846810c
commit
6636282a16
2 changed files with 6 additions and 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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue