about summary refs log tree commit homepage
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/completion/lei-completion.bash1
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/completion/lei-completion.bash b/contrib/completion/lei-completion.bash
index 2c28d44a..5c137e68 100644
--- a/contrib/completion/lei-completion.bash
+++ b/contrib/completion/lei-completion.bash
@@ -9,6 +9,7 @@ _lei() {
         *':'* | *'='* | '//'*) compopt -o nospace ;;
         *) compopt +o nospace ;; # the default
         esac
+        wordlist="${wordlist//;/\\\\;}" # escape ';' for ';UIDVALIDITY' and such
         COMPREPLY=($(compgen -W "$wordlist" -- "${COMP_WORDS[COMP_CWORD]}"))
         return 0
 }