norm / homedir

Public home directory files

This URL has Read+Write access

homedir / .inputrc
100644 21 lines (14 sloc) 0.449 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ~/.inputrc
#
# control the readline library functions
 
 
# tab lists all matches immediately
set show-all-if-ambiguous on
 
 
# search partial matches in history using [Esc]+[P], +[N] and arrow keys
"\ep": history-search-backward
"\en": history-search-forward
"\e[A": history-search-backward
"\e[B": history-search-forward
 
 
$if Bash
    # do history expansion when [Space] entered
    Space: magic-space
$endif