# HG changeset patch # User Oleksandr Gavenko # Date 1361986223 -7200 # Node ID 8080fc135a183159da41ade01108dc4358192921 # Parent 9145a4e8857f637921c6ac437d7606154ebb4940 Enable '**' patttern matching. If the pattern is followed by a /, only dirs match. Ignore case in glob. Show stopped jobs before exit. diff -r 9145a4e8857f -r 8080fc135a18 .bashrc --- a/.bashrc Wed Feb 27 19:11:17 2013 +0200 +++ b/.bashrc Wed Feb 27 19:30:23 2013 +0200 @@ -76,6 +76,15 @@ # ksh-88 egrep-style extended pattern matching. shopt -s extglob +# Enable '**' patttern matching. If the pattern is followed by a /, only dirs match. +shopt -s globstar + +# Ignore case in glob. +shopt -s nocaseglob + +# Show stopped jobs before exit. Next ^D force to leave bash... +shopt -s checkjobs + # Adjust settings according to current terminal window width # which may have changed while the last command was running # (which is a common occurance for vim/less/etc.)