LoginSignup
3
1

More than 3 years have passed since last update.

ZSH で補完で表示がバグる対処メモ

Posted at

現象

zshでコマンド入力の途中でTABを押して補完を使おうとするとなぜか最初の2文字が先頭に入る

❯ vim inde

TABを押すと

❯ vivim inde

deleteで消してもこの2文字は消えない

❯ vi

結論

以下を~/.zshrcに書いておく


export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1