]> gitweb.fluxo.info Git - keyringer.git/commitdiff
Added find action into shell completions
authorSilvio Rhatto <rhatto@riseup.net>
Sun, 23 Feb 2014 14:33:55 +0000 (11:33 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sun, 23 Feb 2014 14:33:55 +0000 (11:33 -0300)
ChangeLog
lib/keyringer/completions/bash/keyringer
lib/keyringer/completions/zsh/_keyringer

index c9454e10aa8fb00ba481af2042c5d943de311774..6304d563bbb8b01d31744fd6b790df1459e29d37 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,6 @@
-2014-02-20 - Silvio Rhatto  <rhatto@riseup.net>
+2014-02-23 - Silvio Rhatto  <rhatto@riseup.net>
+
+       Added find action into shell completions
 
        Using XA_PRIMARY selection at xclip action
 
index a6405839d4edcb889c578a9eeb7f8772b1b19cc7..0f2cb2bbcbf714e108c15d9e66efb9e534d4032d 100644 (file)
@@ -94,7 +94,7 @@ _keyringer() {
       recipients)
         opts="ls edit"
         ;;
-      ls|tree|mkdir|encrypt|encrypt-batch|decrypt|edit|append|append-batch|del|rm|recrypt|open|clip|xclip)
+      ls|tree|mkdir|encrypt|encrypt-batch|decrypt|edit|append|append-batch|del|rm|recrypt|open|clip|xclip|find)
         cur="`echo ${cur} | sed -e "s|^/*||"`" # avoid leading slash
         opts="$(bash -c "set -f && export KEYRINGER_CHECK_VERSION=false && keyringer $instance ls -p -d ${cur}*" 2> /dev/null)"
         ;;
index 1a6d8c65b2dff939f7d051d9f7e34f44a548244b..b4ccdd40113af6b6e76f460be63e5e81799d9374 100644 (file)
@@ -50,7 +50,7 @@ _keyringer() {
           recipients)
             compadd "$@" ls edit
             ;;
-          ls|tree|mkdir|encrypt|encrypt-batch|decrypt|edit|append|append-batch|del|rm|recrypt|open|clip|xclip)
+          ls|tree|mkdir|encrypt|encrypt-batch|decrypt|edit|append|append-batch|del|rm|recrypt|open|clip|xclip|find)
             words[4]="`echo $words[4] | sed -e "s|^/*||"`" # avoid leading slash
             compadd "$@" $(KEYRINGER_CHECK_VERSION=false keyringer $words[2] ls -p -d $words[4]'*' 2> /dev/null)
             ;;