msysgit: include old libiconv2 for use by dd.exe and stat.exe.
[msysgit.git] / etc / inputrc
blobbe27ccb49805d28a1e3d38558fd4c7ed905b6bbf
1 # none, visible or audible
2 set bell-style visible
4 # Ask before displaying >40 items
5 # Since $WINDIR $PATH var can be in $PATH, this could list
6 # all window executables in C:\WINDOWS
7 set completion-query-items 40
9 # Ignore case for the command-line-completion functionality
10 # on:  default on a Windows style console
11 # off: default on a *nix style console
12 set completion-ignore-case on
14 # disable/enable 8bit input
15 set meta-flag on
16 set input-meta on
17 set output-meta off
18 set convert-meta on
20 # visible-stats
21 # Append a mark according to the file type in a listing
22 set visible-stats off
23 set mark-directories on
25 # Show all instead of beeping first
26 set show-all-if-ambiguous off
28 # MSYSTEM is emacs based
29 $if mode=emacs
30         # Common to Console & RXVT
31         "\e[2~": paste-from-clipboard           # "Ins. Key"
32         "\e[5~": beginning-of-history           # Page up
33         "\e[6~": end-of-history                 # Page down
35         $if term=xterm # RXVT
36                 "\C-h": backward-kill-line
37                 "\C-?": backward-delete-char
38                 "\e[7~": beginning-of-line      # Home Key
39                 "\e[8~": end-of-line            # End Key
40                 "\e[11~": display-shell-version # F1
41                 "\e[15~": re-read-init-file     # F5
42                 "\e[12~": "Function Key 2"
43                 "\e[13~": "Function Key 3"
44                 "\e[14~": "Function Key 4"
45                 "\e[17~": "Function Key 6"
46                 "\e[18~": "Function Key 7"
47                 "\e[19~": "Function Key 8"
48                 "\e[20~": "Function Key 9"
49                 "\e[21~": "Function Key 10"
50         $else
51                 "\C-?": backward-kill-line      # Ctrl-BackSpace
52                 "\e[1~": beginning-of-line      # Home Key
53                 "\e[4~": end-of-line            # End Key
54                 "\e[17~": "Function Key 6"
55                 "\e[18~": "Function Key 7"
56                 "\e[19~": "Function Key 8"
57                 "\e[20~": "Function Key 9"
58                 "\e[21~": "Function Key 10"
59                 "\e[23~": "Function Key 11"
60         $endif
61 $endif