aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--zsh/zshrc.org8
1 files changed, 8 insertions, 0 deletions
diff --git a/zsh/zshrc.org b/zsh/zshrc.org
index 5d54e59..e57431a 100644
--- a/zsh/zshrc.org
+++ b/zsh/zshrc.org
@@ -8,6 +8,14 @@ Autoload any ZSH function from =$HOME/.zsh/functions=.
autoload -U $HOME/.zsh/functions/*(:t)
#+END_SRC
+Remove =/= from ZSH's characters considered to be part of a word. This means that something like =M-DEL= will stop at =/= characters.
+
+#+begin_src sh
+ WORDCHARS=${WORDCHARS/\/}
+ WORDCHARS=${WORDCHARS/-}
+ WORDCHARS=${WORDCHARS/)}
+#+end_src
+
* Aliases
Use rlwrap on some less-than-pleasant REPLs that don't have GNU Readline-like features themselves.