summarylogtreecommitdiffstats
path: root/bash.completions
diff options
context:
space:
mode:
Diffstat (limited to 'bash.completions')
-rw-r--r--bash.completions11
1 files changed, 0 insertions, 11 deletions
diff --git a/bash.completions b/bash.completions
deleted file mode 100644
index 831d07890137..000000000000
--- a/bash.completions
+++ /dev/null
@@ -1,11 +0,0 @@
-function _pyxstitch()
-{
- local cur opts
- if [ $COMP_CWORD -eq 1 ]; then
- cur=${COMP_WORDS[COMP_CWORD]}
- opts=$(pyxstitch --help | sed "s/^\s*//g;s/, //g;s/^-h//g" | grep "^\-" | cut -d " " -f 1)
- COMPREPLY=( $(compgen -W "$opts" -- $cur) )
- fi
-}
-
-complete -F _pyxstitch pyxstitch