diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2006-11-03 19:44:47 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2006-11-03 19:44:47 +0000 |
commit | ebc76673aaa9a4f1017a67ae65a1acee10f6bb42 (patch) | |
tree | 80af3ee1ae5b7f1c15f636d85ec91141e033a764 /Completion/Base | |
parent | d8207acddbd1ad5e9339115f7b7bf09820b98c5a (diff) | |
download | zsh-ebc76673aaa9a4f1017a67ae65a1acee10f6bb42.tar.gz zsh-ebc76673aaa9a4f1017a67ae65a1acee10f6bb42.tar.xz zsh-ebc76673aaa9a4f1017a67ae65a1acee10f6bb42.zip |
22953: Mikael Magnusson: _most_recent_file fix.
users/10928: send all "jobs" output to stdout
Diffstat (limited to 'Completion/Base')
-rw-r--r-- | Completion/Base/Widget/_most_recent_file | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Base/Widget/_most_recent_file b/Completion/Base/Widget/_most_recent_file index fd13044e8..68d1c91a2 100644 --- a/Completion/Base/Widget/_most_recent_file +++ b/Completion/Base/Widget/_most_recent_file @@ -21,4 +21,4 @@ else eval "file=($PREFIX*$SUFFIX(om[${NUMERIC:-1}]N))" file=(${(q)file}) fi -(( $#file )) && compadd -U -i "$IPREFIX" -I "$ISUFFIX" -f -Q $file +(( $#file )) && compadd -U -i "$IPREFIX" -I "$ISUFFIX" -f -Q -- $file |