norm / homedir

Public home directory files

This URL has Read+Write access

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