X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=default_plugins%2Fbash_completion%2Fbash_completion.zshrc;h=dc0e35021fc95789ead7e3b2766ec691797267e9;hb=HEAD;hp=1618dfcbe24391872e7a4ddea939ffb72dd2048a;hpb=e445aae75b3ae09ee2c4bbc1c70e2ee4796c30eb;p=ax-zsh.git diff --git a/default_plugins/bash_completion/bash_completion.zshrc b/default_plugins/bash_completion/bash_completion.zshrc deleted file mode 100644 index 1618dfc..0000000 --- a/default_plugins/bash_completion/bash_completion.zshrc +++ /dev/null @@ -1,17 +0,0 @@ -# AX-ZSH: Alex' Modular ZSH Configuration -# bash_completion.zshrc: Setup bash(1) completion - -autoload -Uz bashcompinit || return 1 -bashcompinit - -for dir ( - /etc/bash_completion.d - /usr/local/etc/bash_completion.d -); do - # Read in all completion functions ... - for file ("$dir/"*(N)); do - # Ignore errors ... - source "$file" 2>/dev/null - done -done -unset dir