From 1bfbc5d4b11e6bac3e313e2332fd3bdcb05add5d Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Sun, 11 May 2008 16:20:37 +0100 Subject: [PATCH] remove '/' from WORDCHARS --- .zsh/zshrc/99_TODO | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.zsh/zshrc/99_TODO b/.zsh/zshrc/99_TODO index 079f851..92f8f3f 100644 --- a/.zsh/zshrc/99_TODO +++ b/.zsh/zshrc/99_TODO @@ -49,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 -- 2.39.2