summary refs log tree commit diff stats
path: root/zsh
diff options
context:
space:
mode:
authorAlan Pearce2018-12-07 11:33:35 +0100
committerAlan Pearce2018-12-07 11:33:35 +0100
commit24c4964b3ec11cfba6d0169e6fbc12fa31ee3d44 (patch)
tree978ea3da4a66c50a3d505cc52671fe7af7157033 /zsh
parente7b0cb6d8e65d9e3c2f2deb25a0a3b07d5ddf148 (diff)
downloaddotfiles-24c4964b3ec11cfba6d0169e6fbc12fa31ee3d44.tar.lz
dotfiles-24c4964b3ec11cfba6d0169e6fbc12fa31ee3d44.tar.zst
dotfiles-24c4964b3ec11cfba6d0169e6fbc12fa31ee3d44.zip
zsh: remove = from WORDCHARS
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.config/zsh/.zshrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc
index 4a87bed..422fd4d 100644
--- a/zsh/.config/zsh/.zshrc
+++ b/zsh/.config/zsh/.zshrc
@@ -10,7 +10,7 @@ setopt hist_ignore_space
 unsetopt share_history
 setopt inc_append_history_time
 
-WORDCHARS=${${WORDCHARS//[-.]}//[\/]}
+WORDCHARS=${${WORDCHARS//[-.=]}//[\/]}
 
 export EDITOR=emacsclient
 alias ec=emacsclient