aboutsummaryrefslogtreecommitdiff
path: root/compl/crypt.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'compl/crypt.zsh')
-rwxr-xr-xcompl/crypt.zsh13
1 files changed, 0 insertions, 13 deletions
diff --git a/compl/crypt.zsh b/compl/crypt.zsh
deleted file mode 100755
index 2e1e57a..0000000
--- a/compl/crypt.zsh
+++ /dev/null
@@ -1,13 +0,0 @@
-#compdef crypt
-#autoload
-
-# copy to /usr/share/zsh/site-functions/_crypt
-
-_crypt() {
- local IFS=$'\n'
- local location
- zstyle -s ":completion:${curcontext}:" location location || location="${CRYPT_PATH:-$HOME/.crypt}"
- _values -C 'entries' ${$(crypt list --plain | sed -e "s#\([^[:space:]]*\)[[:space:]]*\(.*\)#\1\[\2\]#g" | sort):-""}
-}
-
-_crypt