mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-09 00:11:25 +02:00
34940: _fc: fix typo breaking completion for history
This commit is contained in:
parent
9a0f5ea8a7
commit
f4d8051de1
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2015-04-24 Mikael Magnusson <mikachu@gmail.com>
|
||||||
|
|
||||||
|
* Oliver: 34940: Completion/Zsh/Command/_fc: fix typo breaking
|
||||||
|
completion for history
|
||||||
|
|
||||||
2015-04-17 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
2015-04-17 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||||
|
|
||||||
* 34921: Src/parse.c: handle error in recursive par_event().
|
* 34921: Src/parse.c: handle error in recursive par_event().
|
||||||
|
|
|
@ -49,7 +49,7 @@ fc_r='(-A -R -W -I -e)-l[list resulting commands on stdout]'
|
||||||
|
|
||||||
case $service in
|
case $service in
|
||||||
history)
|
history)
|
||||||
_arguments "$fc_common[@]" "$fc_hist[@] && ret=0"
|
_arguments "$fc_common[@]" "$fc_hist[@]" && ret=0
|
||||||
;;
|
;;
|
||||||
r)
|
r)
|
||||||
_arguments "$fc_common[@]" "$fc_r" && ret=0
|
_arguments "$fc_common[@]" "$fc_r" && ret=0
|
||||||
|
|
Loading…
Reference in a new issue