LoginSignup
0
0

More than 5 years have passed since last update.

bindkey -v でも(ある程度) emacs したい!

Last updated at Posted at 2015-02-01

.zshrcに追記する設定

.zshrc

bindkey -v
# vim bind normalmode extends emacskey
autoload history-search-end
zle -N history-beginning-search-backward-end history-search-end
zle -N history-beginning-search-forward-end history-search-end
bindkey "^P" history-beginning-search-backward-end
bindkey "^N" history-beginning-search-forward-end
bindkey "^U" backward-kill-line
bindkey "^F" forward-char
bindkey "^B" backward-char
bindkey "^A" beginning-of-line
bindkey "^E" end-of-line

とりあえず基本的によく使うものだけ

少し使ってみて,
補完時のフォーカス移動にfbnpが使えなくなるのがすごい不便であることに気づいたのでアドバイスがほしいです

0
0
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
0
0