about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-02-24 08:53:40 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-02-24 08:53:40 +0000
commit870a0699ceede82eb498bfe9d0bad93909c8a9f5 (patch)
treecedfa08ab93d66fd77601e5ec869c61932051d48
parent171f9b8c9ce03d8e901eb2ff6977fde3a1c11ccb (diff)
downloadzsh-870a0699ceede82eb498bfe9d0bad93909c8a9f5.tar.gz
zsh-870a0699ceede82eb498bfe9d0bad93909c8a9f5.tar.xz
zsh-870a0699ceede82eb498bfe9d0bad93909c8a9f5.zip
zsh-workers/9855
-rw-r--r--Completion/Core/_multi_parts2
-rw-r--r--Doc/Zsh/compsys.yo2
2 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Core/_multi_parts b/Completion/Core/_multi_parts
index c31a519ca..c4182a6a1 100644
--- a/Completion/Core/_multi_parts
+++ b/Completion/Core/_multi_parts
@@ -15,7 +15,7 @@ typeset -U tmp2
 
 zparseopts -D -a sopts \
     'J:=group' 'V:=group' 'X:=expl' 'P:=opts' 'F:=opts' \
-    S: r: R: q 1 2 n 'M+:=match' 'i=imm'
+    S: r: R: q 1 2 n f 'M+:=match' 'i=imm'
 
 sopts=( "$sopts[@]" "$opts[@]" )
 if (( $#match )); then
diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo
index 1e9addec2..65c850c9c 100644
--- a/Doc/Zsh/compsys.yo
+++ b/Doc/Zsh/compsys.yo
@@ -2121,7 +2121,7 @@ often the expected behaviour. But if tt(_multi_parts) should behave
 like completing pathnames, the tt(-i) option should not be used.
 
 Like other utility functions, this function accepts the `tt(-V)',
-`tt(-J)', `tt(-1)', `tt(-2)', `tt(-n)', `tt(-X)', `tt(-M)', `tt(-P)',
+`tt(-J)', `tt(-1)', `tt(-2)', `tt(-n)', `tt(-f)', `tt(-X)', `tt(-M)', `tt(-P)',
 `tt(-S)', `tt(-r)', `tt(-R)', and `tt(-q)' options and passes them to
 the tt(compadd) builtin.
 )