diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-10-10 14:12:21 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-10-10 14:12:21 +0000 |
commit | b9f6bdf162ccdd6b6c644c63a42f993d271ccdce (patch) | |
tree | 347e5604968962abbf9732f854c229b9995a7ab5 /Completion/Base/_math | |
parent | bd4490b966dd4c06bd1088d432418ff764552ce2 (diff) | |
download | zsh-b9f6bdf162ccdd6b6c644c63a42f993d271ccdce.tar.gz zsh-b9f6bdf162ccdd6b6c644c63a42f993d271ccdce.tar.xz zsh-b9f6bdf162ccdd6b6c644c63a42f993d271ccdce.zip |
add fake-parameters style to allow completing parameters which are not yet set (12946)
Diffstat (limited to 'Completion/Base/_math')
-rw-r--r-- | Completion/Base/_math | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Base/_math b/Completion/Base/_math index 61c991e3c..278189ebe 100644 --- a/Completion/Base/_math +++ b/Completion/Base/_math @@ -9,4 +9,4 @@ if [[ "$SUFFIX" = *[^a-zA-Z0-9_]* ]]; then SUFFIX="${SUFFIX%%[^a-zA-Z0-9_]*}" fi -_parameters -g '(integer|float)*' +_parameters -g '(integer|float)*' || _parameters |