dotfiles/inputrc

19 lines
417 B
Plaintext

$include /etc/inputrc
set editing-mode vi
set show-all-if-ambiguous on
set visible-stats on
set page-completions off
$if mode=vi
set keymap vi-command
# these are for vi-command mode
"\e[A": history-search-backward
"\e[B": history-search-forward
Control-l: clear-screen
set keymap vi-insert
# these are for vi-insert mode
"\e[A": history-search-backward
"\e[B": history-search-forward
Control-l: clear-screen
$endif