diff options
author | Oliver Kiddle <okiddle@yahoo.co.uk> | 2015-04-24 10:54:14 +0200 |
---|---|---|
committer | Mikael Magnusson <mikachu@gmail.com> | 2015-04-24 10:59:27 +0200 |
commit | f4d8051de1179a47632b56afdf8659dac689e51f (patch) | |
tree | a3783748e41ff953f828eab4952680141c9e8e9f /Completion/Zsh/Command/_fc | |
parent | 9a0f5ea8a7bc7a1a467664632f17237d1c60d22c (diff) | |
download | zsh-f4d8051de1179a47632b56afdf8659dac689e51f.tar.gz zsh-f4d8051de1179a47632b56afdf8659dac689e51f.tar.xz zsh-f4d8051de1179a47632b56afdf8659dac689e51f.zip |
34940: _fc: fix typo breaking completion for history
Diffstat (limited to 'Completion/Zsh/Command/_fc')
-rw-r--r-- | Completion/Zsh/Command/_fc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Zsh/Command/_fc b/Completion/Zsh/Command/_fc index 133145670..c2987211e 100644 --- a/Completion/Zsh/Command/_fc +++ b/Completion/Zsh/Command/_fc @@ -49,7 +49,7 @@ fc_r='(-A -R -W -I -e)-l[list resulting commands on stdout]' case $service in history) - _arguments "$fc_common[@]" "$fc_hist[@] && ret=0" + _arguments "$fc_common[@]" "$fc_hist[@]" && ret=0 ;; r) _arguments "$fc_common[@]" "$fc_r" && ret=0 |