-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.inputrc
More file actions
27 lines (23 loc) · 748 Bytes
/
.inputrc
File metadata and controls
27 lines (23 loc) · 748 Bytes
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
# Set variables
# ==============================================================================
set colored-stats on
set completion-prefix-display-length 1
set enable-bracketed-paste on
set mark-symlinked-directories on
set menu-complete-display-prefix on
set show-all-if-ambiguous on
set skip-completed-text on
set visible-stats on
set completion-ignore-case on
# Rebind keys
# ==============================================================================
# <Tab> and <S-Tab>
"\t": menu-complete
"\e[Z": menu-complete-backward
# <Up> and <Down>
"\e[A": history-search-backward
"\e[B": history-search-forward
# <C-p> and <C-n>
"\C-p": history-search-backward
"\C-n": history-search-forward
# For more: man bash > search "Commands for Moving"