-
Notifications
You must be signed in to change notification settings - Fork 0
/
inputrc
36 lines (27 loc) · 825 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
34
35
36
$include /etc/inputrc
set editing-mode emacs
$if mode=emacs
# incremental searching history with Up and Down keys
"\e[A": history-search-backward
"\e[B": history-search-forward
"\e[C": forward-char
"\e[D": backward-char
"\C-q": quoted-insert
# don't strip characters to 7 bits when reading
set input-meta on
# allow iso-latin1 characters to be inserted rather than converted to
# prefix-meta sequences
set convert-meta off
# display characters with the eighth bit set directly rather than
# as meta-prefixed characters
set output-meta on
# if there are more than 150 possible completions for a word, ask the
# user if he wants to see all of them
set completion-query-items 150
$endif
$if Bash
Space: magic-space
$endif
set completion-ignore-case on
#set mark-modified-lines on
set visible-stats on