-
Notifications
You must be signed in to change notification settings - Fork 0
/
.inputrc
31 lines (24 loc) · 814 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
# completion that ignores the the case of the files
set completion-ignore-case On
# these allow you to use ctrl+left/right arrow keys
# to jump the cursor over words
#
#"\e[5C": forward-word
#"\e[5D": backward-word]
"3": "#"
"£": "#"
set meta-flag on
set input-meta on
# Be more intelligent when autocompleting by also looking at the text after
# # the cursor. For example, when the current line is "cd ~/src/mozil", and
# # the cursor is on the "z", pressing Tab will not autocomplete it to "cd
# # ~/src/mozillail", but to "cd ~/src/mozilla". (This is supported by the
# # Readline used by Bash 4.)
set skip-completed-text on
set input-meta on
set output-meta on
set convert-meta off
set match-hidden-files off
"\e[A": history-search-backward
"\e[B": history-search-forward
set show-all-if-ambiguous on