iterm에서 ‘Opt+방향키’ 설정

By | 2021년 3월 8일

bash 의 경우 ~/.inputrc 에 아래와 같이 추가

"\e\e[D": backward-word
"\e\e[C": forward-word

zsh 의 경우 ~/.zshrc 에 아래와 같이 추가

bindkey "\e\e[D" backward-word
bindkey "\e\e[C" forward-word

출처 : https://edykim.com/ko/post/setting-opt-direction-keys-when-using-zsh-in-iterm/