summaryrefslogtreecommitdiffstats
path: root/completions/monodevelop
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--completions/monodevelop19
1 files changed, 19 insertions, 0 deletions
diff --git a/completions/monodevelop b/completions/monodevelop
new file mode 100644
index 0000000..1c5b5ba
--- /dev/null
+++ b/completions/monodevelop
@@ -0,0 +1,19 @@
+# monodevelop completion -*- shell-script -*-
+
+_monodevelop()
+{
+ local cur prev words cword split
+ _init_completion -s || return
+
+ $split && return
+
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '$(_parse_help "$1" -h)' -- "$cur"))
+ [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
+ else
+ _filedir
+ fi
+} &&
+ complete -F _monodevelop monodevelop
+
+# ex: filetype=sh