Removed /usr/local from CDPATH
[clearscm.git] / rc / inputrc
1 # .inputrc is used by GNU's readline routine 
2 #
3 # This tells filename completion to be case insensitive
4 set completion-ignore-case on
5
6 # Home
7 "\e[7~": beginning-of-line
8 "\e[h~": beginning-of-line
9
10 # End
11 "\e[8~": end-of-line
12
13 # Delete
14 "\e[3~": delete-char
15
16 # Insert
17 "\e[2~": paste-from-clipboard
18
19 # Control left
20 "\eOd": backward-word
21 "\e[1;5D": backward-word
22
23 # Control right
24 "\eOc": forward-word
25 "\e[1;5C": forward-word
26
27 # Function keys (From Randhuall R Schulz <rrschulz@cris.com>)
28 # F1 - F5 (Console)
29 "\M-[[A" "F1"
30 "\M-[[B" "F2"
31 "\M-[[C" "2>&1 &"
32 "\M-[[D" "F4"
33 "\M-[[E" "F5"
34
35 # F1 - F3 (RXVT)
36 "\M-[11~" "F1"
37 "\M-[12~" "F2"
38 "\M-[13~" "2>&1 &"
39 "\M-[14~" "F4"
40 "\M-[15~" "F5"
41
42 # Both Console and RXVT
43 "\M-[17~" "F6"
44 "\M-[18~" "F7"
45 "\M-[19~" "exit\C-M"
46 "\M-[20~" "F9"
47 "\M-[21~" "F10"
48 "\M-[23~" "F11"
49 "\M-[24~" "F12"
50
51 # Horizontal scroll...
52 #set horizontal-scroll-mode on
53
54 # The following tells bash to show all filenames if ambiguous instead of 
55 # beeping first
56 #set show-all-if-ambiguous on