-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputrc
33 lines (27 loc) · 908 Bytes
/
inputrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
set editing-mode vi
set keymap vi-insert
"jl": vi-movement-mode
"\e.": yank-last-arg
"\et": transpose-words
"\C-a": beginning-of-line
"\C-e": end-of-line
"\C-p": previous-history
set keymap vi-command
"\C-a": beginning-of-line
"\C-e": end-of-line
# "\C-I" self-insert
# isearch-terminators is a list of sequences that, when used in incremental
# search, will do nothing other than terminate incremental search. Default
# includes ESC, but that causes later portions of sequences that start with
# ESC to be entered verbatim into the command line.
set isearch-terminators "\C-J jl"
set completion-ignore-case on
# Treat "-" and "_" as equivalent in case-insensitive completion
set completion-map-case on
set completion-prefix-display-length 2
#set show-mode-in-prompt
#
set show-all-if-ambiguous on
set show-all-if-unmodified on
set menu-complete-display-prefix on
set visible-stats on