From b1bd1a1460998ed1f1548347e68d70589dddb612 Mon Sep 17 00:00:00 2001 From: Michel Date: Wed, 26 Apr 2023 10:04:45 +0200 Subject: [PATCH] feat(zsh): WORDCHARS --- .zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index 5da6ba9..17fc2ce 100644 --- a/.zshrc +++ b/.zshrc @@ -7,8 +7,8 @@ # Customize spelling correction prompt. SPROMPT='zsh: correct %F{red}%R%f to %F{green}%r%f [nyae]? ' -# Remove path separator from WORDCHARS. -WORDCHARS=${WORDCHARS//[\/]} +# Characters considered part of a word by the line editor +WORDCHARS="*?_-.~$" ###