inputrc (565B)
1 # set editing-mode vi 2 # set keymap vi 3 4 # Edit options before rerunning previous command, eg: ls a b c -> ls -al a b c 5 #"\e-": "\C-p\C-a\M-f " 6 # Cycle thru completions. 7 #"\e/": menu-complete 8 9 # glob patterns without executing, eg: 'rm *x' 10 #"\ee": glob-expand-word 11 12 # Vim style history search 13 #"\e[A": history-search-backward 14 #"\e[B": history-search-forward 15 16 #"\e[C": forward-char 17 #"\e[D": backward-char 18 19 # Two escapes clear command line. 20 #"\e\e": "\C-a\C-k" 21 22 C-R: reverse-search-history 23 C-S: forward-search-history 24 C-N: next-history 25 C-P: previous-history 26 C-_: undo 27