Zsh: Make / not be part of words

makes backward-word and so on stop at /.
This commit is contained in:
tastytea 2022-03-23 14:34:53 +01:00
parent 16c62ade60
commit c8dce951d6
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM

View File

@ -78,6 +78,9 @@ fi
############################# Variables ########################################
# Stop at / with backward-word and so on
export WORDCHARS="${WORDCHARS/\//}"
# minicom color on.
export MINICOM="-c on -R utf-8"