Bashのviモード set -o viでキーバインドがviモードになる(デフォルトはemacsモード) viの方が慣れてるのに微妙に使いにくいのは何でだろう・・・? 大文字小文字を無視~/.inputrcに以下を追加。 set completion-ignore-case on 履歴補完で前方一致を利用~/.bashrcに以下を追加 bind '"\e[A": history-search-backward' bind '"\e[0A": history-search-backward' bind '"\e[B": history-search-forward' bind '"\e[0B": history-search-forward' bind '"\C-n": history-search-forward' bind '"\C-p": history-search-backward