diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/keyringer/completions/bash/keyringer | 4 | ||||
-rw-r--r-- | lib/keyringer/completions/zsh/_keyringer | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/keyringer/completions/bash/keyringer b/lib/keyringer/completions/bash/keyringer index e33977a..3d519c9 100644 --- a/lib/keyringer/completions/bash/keyringer +++ b/lib/keyringer/completions/bash/keyringer @@ -53,7 +53,7 @@ _keyringer() { # Process config source $config/config path="`eval echo '$'$instance`" - keyrings="`ls $config | sed -e 's/config//'`" + keyrings="`ls --color=never $config | sed -e 's/config//'`" # Available instances instances="`echo $keyrings | sed -e 's/ /|/'`" @@ -89,7 +89,7 @@ _keyringer() { elif [ "${#COMP_WORDS[@]}" == "5" ]; then case "${command}" in recipients) - opts="$(cd $path/config/recipients && ls -p ${cur}* 2> /dev/null)" + opts="$(cd $path/config/recipients && ls --color=never -p ${cur}* 2> /dev/null)" ;; genpair) opts="$(bash -c "set -f && keyringer $instance ls -p -d ${cur}*" 2> /dev/null)" diff --git a/lib/keyringer/completions/zsh/_keyringer b/lib/keyringer/completions/zsh/_keyringer index c8ada9b..6059697 100644 --- a/lib/keyringer/completions/zsh/_keyringer +++ b/lib/keyringer/completions/zsh/_keyringer @@ -19,7 +19,7 @@ _keyringer() { fi # Process config - local keyrings="`ls $config | sed -e 's/config//'`" + local keyrings="`ls --color=never $config | sed -e 's/config//'`" source $config/config keyring_path="`eval echo '$'$words[2]`" @@ -62,7 +62,7 @@ _keyringer() { misc) case "$words[3]" in recipients) - compadd "$@" $(cd $keyring_path/config/recipients && ls -p $words[5]* 2> /dev/null) + compadd "$@" $(cd $keyring_path/config/recipients && ls --color=never -p $words[5]* 2> /dev/null) ;; genpair) # TODO: do not rely on bash |