Last active
September 11, 2021 05:13
-
-
Save mollifier/4331a4db00a5555582e4 to your computer and use it in GitHub Desktop.
zsh で / や . も単語の区切り文字とみなす設定
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .zshrcに書く | |
# word-chars で指定した文字が単語の区切りとみなされる。 | |
# M-f, M-b, ^w などの動作に影響する | |
autoload -Uz select-word-style | |
select-word-style default | |
zstyle ':zle:*' word-chars ' /=;@:{}[]()<>,|.' | |
zstyle ':zle:*' word-style unspecified |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment