Commit cf347ef3 authored by Marc Cornellà's avatar Marc Cornellà
Browse files

lib: bind to all keymaps when COMPLETION_WAITING_DOTS is set

Fixes #9050
parent e04564d5
...@@ -65,7 +65,10 @@ if [[ $COMPLETION_WAITING_DOTS = true ]]; then ...@@ -65,7 +65,10 @@ if [[ $COMPLETION_WAITING_DOTS = true ]]; then
zle redisplay zle redisplay
} }
zle -N expand-or-complete-with-dots zle -N expand-or-complete-with-dots
bindkey "^I" expand-or-complete-with-dots # Set the function as the default tab completion widget
bindkey -M emacs "^I" expand-or-complete-with-dots
bindkey -M viins "^I" expand-or-complete-with-dots
bindkey -M vicmd "^I" expand-or-complete-with-dots
fi fi
# automatically load bash completion functions # automatically load bash completion functions
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment