summaryrefslogtreecommitdiffstats
path: root/bashrc/common/bashcomp.sh
blob: 48d83fa177be627517134e5ed427c0fef0a8c4bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# bash completion

bmajor=${BASH_VERSION%%.*}
bminor=${BASH_VERSION#*.}
bminor=${bminor//[^0-9]*}

if [[ ${bmajor} -eq 2 && ${bminor} -gt 4 ]] || [[ ${bmajor} -gt 2 ]]; then
	[[ -f /etc/bash_completion ]] && source /etc/bash_completion

	if [[ -d ~/.bash_completion.d ]]; then
		for i in ~/.bash_completion.d/*; do
			[[ -f ${i} ]] && source ${i}
		done
	fi
fi

unset bmajor bminor

export COMP_WORDBREAKS=${COMP_WORDBREAKS/:/}
export FIGNORE=".o:~"