From d3cf76fded99e282e5f6c689cb4fa7fb19e8c76d Mon Sep 17 00:00:00 2001 From: Holger Just Date: Mon, 14 Oct 2013 17:15:35 +0200 Subject: [PATCH] Actually load additional bash completion files --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 5051a89..73c8643 100644 --- a/.bashrc +++ b/.bashrc @@ -71,7 +71,7 @@ if [[ $- =~ 'i' ]]; then fi if [[ -d "$DOTFILES/bash_completion.d" ]]; then - for i in "$DOTFILES/bash_completion.d/*"; do + for i in $DOTFILES/bash_completion.d/*; do if [[ -r "$i" ]]; then . "$i" fi