X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/1a45cff1fa888f9819adc7471b0e7331916bbab1..199d859a271f4793abd067c8f9e4023a24575108:/.zsh/zshrc/99_TODO diff --git a/.zsh/zshrc/99_TODO b/.zsh/zshrc/99_TODO index 82fb245..92f8f3f 100644 --- a/.zsh/zshrc/99_TODO +++ b/.zsh/zshrc/99_TODO @@ -35,6 +35,9 @@ setopt checkjobs # disable backslashed escape sequences unless -e is given to echo setopt bsd_echo +# use full globbing powers +setopt extended_glob + # don't bitch about bad patterns, just use them verbatim setopt no_bad_pattern @@ -46,7 +49,8 @@ setopt no_beep [ "$(umask)" = 022 ] && umask 0077 -WORDCHARS="*?_-.[]~/&;!#$%^(){}<>" +# remove '/' from WORDCHARS +WORDCHARS="${WORDCHARS//\/}" # report time stats when command takes longer than 5 seconds REPORTTIME=5