# HG changeset patch # User Oleksandr Gavenko # Date 1273127679 -10800 # Node ID 06fb23a66904444b7fbf6eda477170fd6645cebd # Parent e938121eda626799b65338a960e4bb7ccbfb18cf Under Cygwin bash completition start a long time. diff -r e938121eda62 -r 06fb23a66904 .bashrc --- a/.bashrc Tue May 04 23:08:25 2010 +0300 +++ b/.bashrc Thu May 06 09:34:39 2010 +0300 @@ -95,7 +95,10 @@ # Use bash-completion, if available. if [ -f /etc/bash_completion ]; then - . /etc/bash_completion + # Under Cygwin bash completition start a long time. + if [ ! "$OSTYPE" = cygwin ]; then + . /etc/bash_completion + fi fi if [ -f $HOME/usr/etc/bash_completion ]; then . $HOME/usr/etc/bash_completion