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

Remove redundant bashcompinit calls

Fixes #9246
parent a8828aad
...@@ -64,7 +64,6 @@ fi ...@@ -64,7 +64,6 @@ fi
# AWS CLI v2 comes with its own autocompletion. Check if that is there, otherwise fall back # AWS CLI v2 comes with its own autocompletion. Check if that is there, otherwise fall back
if command -v aws_completer &> /dev/null; then if command -v aws_completer &> /dev/null; then
autoload -Uz bashcompinit && bashcompinit
complete -C aws_completer aws complete -C aws_completer aws
else else
function _awscli-homebrew-installed() { function _awscli-homebrew-installed() {
......
...@@ -10,11 +10,8 @@ if (( ${+commands[compleat]} )); then ...@@ -10,11 +10,8 @@ if (( ${+commands[compleat]} )); then
local setup="${prefix}/share/compleat-1.0/compleat_setup" local setup="${prefix}/share/compleat-1.0/compleat_setup"
if [[ -f "$setup" ]]; then if [[ -f "$setup" ]]; then
if ! bashcompinit >/dev/null 2>&1; then
autoload -U bashcompinit
bashcompinit -i
fi
source "$setup" source "$setup"
fi fi
unset prefix setup
fi fi
...@@ -99,6 +99,4 @@ alias drvg="drush variable-get" ...@@ -99,6 +99,4 @@ alias drvg="drush variable-get"
alias drvs="drush variable-set" alias drvs="drush variable-set"
# Enable drush autocomplete support # Enable drush autocomplete support
autoload bashcompinit
bashcompinit
source $(dirname $0)/drush.complete.sh source $(dirname $0)/drush.complete.sh
(( $+commands[stack] )) || return (( $+commands[stack] )) || return
autoload -U +X bashcompinit && bashcompinit
source <(stack --bash-completion-script stack) source <(stack --bash-completion-script stack)
...@@ -138,7 +138,6 @@ alias wpwm='wp widget move' ...@@ -138,7 +138,6 @@ alias wpwm='wp widget move'
alias wpwu='wp widget update' alias wpwu='wp widget update'
autoload -U +X bashcompinit && bashcompinit
# bash completion for the `wp` command # bash completion for the `wp` command
_wp_complete() { _wp_complete() {
......
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