summaryrefslogtreecommitdiff
path: root/bash-completion.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion.sh')
-rw-r--r--bash-completion.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/bash-completion.sh b/bash-completion.sh
deleted file mode 100644
index f3d285a..0000000
--- a/bash-completion.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-_pass()
-{
- local cur prev prefix suffix gen
- COMPREPLY=()
- cur="${COMP_WORDS[COMP_CWORD]}"
- prev="${COMP_WORDS[COMP_CWORD-1]}"
- prefix="$HOME/.password-store/"
- suffix=".gpg"
-
- if [[ $prev == --* ]]; then
- return 0
- fi
-
- for item in $(compgen -f $prefix$cur); do
- if [[ $item == $prefix.* ]]; then
- continue
- fi
- if [[ -d $item ]]; then
- item="$item/"
- fi
- item="${item%$suffix}"
- gen="$gen ${item#$prefix}"
- done
-
- COMPREPLY=( $gen )
-}
-complete -o filenames -o nospace -F _pass pass