.bash_completion
author Oleksandr Gavenko <gavenkoa@gmail.com>
Tue, 25 Oct 2011 22:19:01 +0300
changeset 238 1ae5fbcaea7c
parent 220 987a83ddd689
permissions -rwxr-xr-x
Use 'Control+TAB' for cycling possible completion in bash.


if [[ -s ~/.bash_completion.d ]]; then
  for f in ~/.bash_completion.d/* ~/.bash_completion.d/.*; do
    . $f
  done
fi

# Local variables:
# mode: shell-script
# End: