From 254fc3062c299654f2bb5fcefa83697f433638a0 Mon Sep 17 00:00:00 2001 From: eeemsi Date: Fri, 2 Jan 2026 13:48:07 +0100 Subject: [PATCH] fix (zshrc): WORDCHARS are a feature from zsh and should not require an export --- zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 2f3e1b2..0e820fb 100644 --- a/zshrc +++ b/zshrc @@ -14,7 +14,7 @@ bindkey '^P' history-beginning-search-backward bindkey '^N' history-beginning-search-forward # List of non-alphanumeric characters considered part of a word -export WORDCHARS='*?_-.[]~=&;!#$%^(){}<>' +WORDCHARS='*?_-.[]~=&;!#$%^(){}<>' # Do not create a history file for less export LESSHISTFILE=/dev/null