Skip to content

Commit c4d038d

Browse files
committed
2 parents 9db6cd0 + ce9008c commit c4d038d

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed

git-extra/inputrc

+46
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,49 @@ set mark-symlinked-directories on
2424

2525
# Show all instead of beeping first
2626
set show-all-if-ambiguous on
27+
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
35+
36+
# Mintty
37+
"\e[1;5D": "\eOD" # Ctrl-Left
38+
"\e[1;5C": "\eOC" # Ctrl-Right
39+
"\e[1;5A": "\eOA" # Ctrl-Up
40+
"\e[1;5B": "\eOB" # Ctrl-Down
41+
"\e[1;3D": "\e\e[D" # Alt-Left
42+
"\e[1;3C": "\e\e[C" # Alt-Right
43+
44+
$if term=msys # RXVT
45+
"\e[7~": beginning-of-line # Home Key
46+
"\e[8~": end-of-line # End Key
47+
"\e[11~": display-shell-version # F1
48+
"\e[15~": re-read-init-file # F5
49+
"\e[12~": "Function Key 2"
50+
"\e[13~": "Function Key 3"
51+
"\e[14~": "Function Key 4"
52+
"\e[17~": "Function Key 6"
53+
"\e[18~": "Function Key 7"
54+
"\e[19~": "Function Key 8"
55+
"\e[20~": "Function Key 9"
56+
"\e[21~": "Function Key 10"
57+
$else
58+
# Eh, normal Console is not really cygwin anymore, is it? Using 'else' instead. -mstormo
59+
# $if term=cygwin # Console
60+
"\e[1~": beginning-of-line # Home Key
61+
"\e[4~": end-of-line # End Key
62+
"\e[3~": delete-char # Delete Key
63+
"\e\e[C": forward-word # Alt-Right
64+
"\e\e[D": backward-word # Alt-Left
65+
"\e[17~": "Function Key 6"
66+
"\e[18~": "Function Key 7"
67+
"\e[19~": "Function Key 8"
68+
"\e[20~": "Function Key 9"
69+
"\e[21~": "Function Key 10"
70+
"\e[23~": "Function Key 11"
71+
$endif
72+
$endif

make-file-list.sh

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ grep -v -e '\.[acho]$' -e '\.l[ao]$' -e '/aclocal/' \
3434
-e '/man/' -e '/pkgconfig/' -e '/emacs/' \
3535
-e '^/usr/lib/python' -e '^/usr/lib/ruby' \
3636
-e '^/usr/share/awk' -e '^/usr/share/subversion' \
37+
-e '^/etc/skel/' -e '^/mingw../etc/skel/' \
3738
-e '^/usr/bin/svn' \
3839
-e '^/mingw../share/doc/gettext/' \
3940
-e '^/mingw../share/doc/lib' \

net-installer/setup-git-sdk.bat

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
perl-Error perl perl-Authen-SASL perl-libwww perl-MIME-tools ^
7474
perl-Net-SMTP-SSL perl-TermReadKey dos2unix asciidoc xmlto ^
7575
subversion mintty vim git-extra ^
76+
mingw-w64-@@ARCH@@-git-doc-html ^
7677
mingw-w64-@@ARCH@@-git mingw-w64-@@ARCH@@-toolchain ^
7778
mingw-w64-@@ARCH@@-curl mingw-w64-@@ARCH@@-expat ^
7879
mingw-w64-@@ARCH@@-openssl mingw-w64-@@ARCH@@-tcl ^

0 commit comments

Comments
 (0)