From 94d92ff080f24bd14d44a1a09b6ef57381f17a76 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 3 Apr 2022 06:19:07 +0200 Subject: [PATCH] Zsh: Remove - from WORDCHARS --- .config/zsh/.zprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile index b506176..db03e8a 100644 --- a/.config/zsh/.zprofile +++ b/.config/zsh/.zprofile @@ -81,7 +81,7 @@ fi ############################# Variables ######################################## # Stop at chars not in there with backward-word and so on -export WORDCHARS="${WORDCHARS//(\/|_|.)}" +export WORDCHARS="${WORDCHARS//(\/|_|.|-)}" # minicom color on. export MINICOM="-c on -R utf-8"