From ff64f7c3a18edd8fecaac3b6ca1411b611648e40 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 24 Mar 2022 00:32:51 +0100 Subject: [PATCH] Remove _ from WORDCHARS --- .config/zsh/.zprofile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile index 2f285aa..5258b98 100644 --- a/.config/zsh/.zprofile +++ b/.config/zsh/.zprofile @@ -79,8 +79,10 @@ fi ############################# Variables ######################################## -# Stop at / with backward-word and so on -export WORDCHARS="${WORDCHARS/\//}" +# Stop at / and _ with backward-word and so on +WORDCHARS="${WORDCHARS/\/}" +WORDCHARS="${WORDCHARS/_}" +export WORDCHARS # minicom color on. export MINICOM="-c on -R utf-8"