about summary refs log tree commit diff
path: root/Completion/Zsh/Type
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2013-03-17 20:53:44 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2013-03-17 20:53:44 +0000
commit146374a2af8cbc7674374b44ef6c963ee008e8a2 (patch)
tree23f38f984cdcd9c6b60c95c212c98dae670b77a2 /Completion/Zsh/Type
parentab8fe84a8c179f5990c4fd7cd7e2cfa82ed03cc3 (diff)
downloadzsh-146374a2af8cbc7674374b44ef6c963ee008e8a2.tar.gz
zsh-146374a2af8cbc7674374b44ef6c963ee008e8a2.tar.xz
zsh-146374a2af8cbc7674374b44ef6c963ee008e8a2.zip
improved math context completion: functions
Diffstat (limited to 'Completion/Zsh/Type')
-rw-r--r--Completion/Zsh/Type/.distfiles3
-rw-r--r--Completion/Zsh/Type/_math_params3
-rw-r--r--Completion/Zsh/Type/_module_math_func9
-rw-r--r--Completion/Zsh/Type/_user_math_func9
4 files changed, 24 insertions, 0 deletions
diff --git a/Completion/Zsh/Type/.distfiles b/Completion/Zsh/Type/.distfiles
index 74a4e101d..4011353a0 100644
--- a/Completion/Zsh/Type/.distfiles
+++ b/Completion/Zsh/Type/.distfiles
@@ -15,10 +15,13 @@ _jobs
 _jobs_bg
 _jobs_fg
 _limits
+_math_params
+_module_math_func
 _options
 _options_set
 _options_unset
 _parameters
 _suffix_alias_files
+_user_math_func
 _vars
 '
diff --git a/Completion/Zsh/Type/_math_params b/Completion/Zsh/Type/_math_params
new file mode 100644
index 000000000..8a4b9e1b6
--- /dev/null
+++ b/Completion/Zsh/Type/_math_params
@@ -0,0 +1,3 @@
+#autoload
+
+_parameters -g '(integer|float)*' || _parameters
diff --git a/Completion/Zsh/Type/_module_math_func b/Completion/Zsh/Type/_module_math_func
new file mode 100644
index 000000000..4df8d9714
--- /dev/null
+++ b/Completion/Zsh/Type/_module_math_func
@@ -0,0 +1,9 @@
+#autoload
+
+local expl
+local -a funcs
+
+funcs=(${${${(f)"$(zmodload -Fl zsh/mathfunc 2>/dev/null)"}:#^+f:*}##+f:})
+
+_wanted module-math-functions expl 'math function from zsh/mathfunc' \
+    compadd -S '(' "$@" -a funcs
diff --git a/Completion/Zsh/Type/_user_math_func b/Completion/Zsh/Type/_user_math_func
new file mode 100644
index 000000000..16774f70b
--- /dev/null
+++ b/Completion/Zsh/Type/_user_math_func
@@ -0,0 +1,9 @@
+#autoload
+
+local expl
+local -a funcs
+
+funcs=(${${${(f)"$(functions -M)"}##functions -M }%% *})
+
+_wanted user-math-functions expl 'user math function' \
+    compadd -S '(' "$@" -a funcs