diff options
| author | 2026-01-28 19:30:17 +0100 | |
|---|---|---|
| committer | 2026-01-28 19:30:17 +0100 | |
| commit | a30b93f2ca27fa0070b69b0c33fafba54bc42a3f (patch) | |
| tree | 7b1bcb2c42a6c5adec2814e0a1f83222c444acbb | |
| parent | zsh: add LS_COLORS defaults and use them for completions (diff) | |
zsh: remove / from WORDCHARS
| -rw-r--r-- | dot_config/zsh/zshrc.style | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dot_config/zsh/zshrc.style b/dot_config/zsh/zshrc.style index fdb4584..32febcb 100644 --- a/dot_config/zsh/zshrc.style +++ b/dot_config/zsh/zshrc.style @@ -1,5 +1,10 @@ # -*- mode: sh -*- # vim: ft=zsh + +# default -> remove the / +[[ $WORDCHARS = '*?_-.[]~=/&;!#$%^(){}<>' ]] && + WORDCHARS='*?_-.[]~=&;!#$%^(){}<>' + ### ZStyle ## completion # TODO: a lot of this is stolen from grml; probably figure out more details |
