1
0
Fork 0

Remove _ from WORDCHARS

This commit is contained in:
tastytea 2022-03-24 00:32:51 +01:00
parent bb502cb8bb
commit ff64f7c3a1
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 4 additions and 2 deletions

View File

@ -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"