-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.inputrc
More file actions
36 lines (26 loc) · 753 Bytes
/
.inputrc
File metadata and controls
36 lines (26 loc) · 753 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
28
29
30
31
32
33
34
35
36
$include /etc/inputrc
set echo-control-characters off
# "\e[A":history-search-backward
# "\e[B":history-search-forward
set editing-mode vi
$if mode=vi
set keymap vi-command
# these are for vi-command mode
"\e[A": history-search-backward
"\e[B": history-search-forward
# "v": rlwrap-call-editor
set keymap vi-insert
# these are for vi-insert mode
"\e[A": history-search-backward
"\e[B": history-search-forward
$endif
# Color files by types
set colored-stats On
# Append char to indicate type
set visible-stats On
# Mark symlinked directories
set mark-symlinked-directories On
# Color the common prefix
set colored-completion-prefix On
# Color the common prefix in menu-complete
set menu-complete-display-prefix On