blob: 85a2da8bc1b9e1303800e2eb0a5a44114ec135df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# completion file for bash
# (C) Copyright 2012 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
# This is released under the GPLv2+. Please see COPYING for more information.
_pass()
{
local cur prev prefix suffix
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
prefix="$HOME/.password-store/"
suffix=".gpg"
if [[ $prev == --* ]]; then
return 0
fi
local IFS=$'\n'
local i=0
for item in $(compgen -f $prefix$cur); do
if [[ $item == $prefix.* ]]; then
continue
fi
if [[ -d $item ]]; then
item="$item/"
fi
item="${item%$suffix}"
COMPREPLY[$i]="${item#$prefix}"
(( i++ ))
done
}
complete -o filenames -o nospace -F _pass pass
|