Installer: Disable changing the console font for all windows by default
[msysgit.git] / etc / inputrc
blobab06f3ac4d3977a76d226d4ef5821bee889dec4a
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         "\C-?": backward-kill-line              # Ctrl-BackSpace
32         "\e[2~": paste-from-clipboard           # "Ins. Key"
33         "\e[5~": beginning-of-history           # Page up
34         "\e[6~": end-of-history                 # Page down
36         $if term=msys # RXVT
37                 "\e[7~": beginning-of-line      # Home Key
38                 "\e[8~": end-of-line            # End Key
39                 "\e[11~": display-shell-version # F1
40                 "\e[15~": re-read-init-file     # F5
41                 "\e[12~": "Function Key 2"
42                 "\e[13~": "Function Key 3"
43                 "\e[14~": "Function Key 4"
44                 "\e[17~": "Function Key 6"
45                 "\e[18~": "Function Key 7"
46                 "\e[19~": "Function Key 8"
47                 "\e[20~": "Function Key 9"
48                 "\e[21~": "Function Key 10"
49         $else
50         # Eh, normal Console is not really cygwin anymore, is it? Using 'else' instead. -mstormo
51         # $if term=cygwin # Console
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