]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - inputrc
inputrc: Always tab complete all items.
[config/dotfiles.git] / inputrc
1 # Configuration file for readline.
2
3
4 # Only one <tab> is necessary to get a list of all possible options.
5 set show-all-if-ambiguous on
6 set show-all-if-unmodified on
7
8 # Always complete all items no matter how many there are.
9 set completion-query-items -1
10 # And make sure we use a pager for completions (this is also the default).
11 set page-completions on
12
13 # Activate Vi editing mode.
14 set editing-mode vi
15
16
17 # KEY BINDINGS
18
19 # Also use jj to exit insert mode.
20 "jj": vi-movement-mode
21
22 "\C-p": previous-history
23 "\C-n": next-history