Skip to content

Commit 09c033c

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents a1cb3f3 + 3f169ce commit 09c033c

217 files changed

Lines changed: 13905 additions & 2113 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Filelist

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ SRC_ALL = \
1111
.cirrus.yml \
1212
appveyor.yml \
1313
ci/appveyor.bat \
14+
ci/if_ver*.vim \
1415
src/Make_all.mak \
1516
src/README.md \
17+
src/README_VIM9.md \
1618
src/alloc.h \
1719
src/arabic.c \
1820
src/arglist.c \
@@ -132,6 +134,10 @@ SRC_ALL = \
132134
src/version.c \
133135
src/version.h \
134136
src/vim.h \
137+
src/vim9.h \
138+
src/vim9compile.c \
139+
src/vim9execute.c \
140+
src/vim9script.c \
135141
src/viminfo.c \
136142
src/winclip.c \
137143
src/window.c \
@@ -177,7 +183,6 @@ SRC_ALL = \
177183
src/testdir/dumps/*.dump \
178184
src/testdir/samples/*.txt \
179185
src/testdir/samples/test000 \
180-
src/testdir/if_ver*.vim \
181186
src/testdir/color_ramp.vim \
182187
src/testdir/silent.wav \
183188
src/testdir/popupbounce.vim \
@@ -275,6 +280,9 @@ SRC_ALL = \
275280
src/proto/usercmd.pro \
276281
src/proto/userfunc.pro \
277282
src/proto/version.pro \
283+
src/proto/vim9compile.pro \
284+
src/proto/vim9execute.pro \
285+
src/proto/vim9script.pro \
278286
src/proto/viminfo.pro \
279287
src/proto/winclip.pro \
280288
src/proto/window.pro \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ MINOR = 2
153153
# > msvc2015.bat
154154
# - Build the console binary:
155155
# > nmake -f Make_mvc.mak
156-
# - Run the tests and check the ouput:
156+
# - Run the tests and check the output:
157157
# > nmake -f Make_mvc.mak testclean
158158
# > nmake -f Make_mvc.mak test
159159
# - Rename (using ../tools/rename.bat):

README.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ All commands are given with normal keyboard characters, so those who can type
1616
with ten fingers can work very fast. Additionally, function keys can be
1717
mapped to commands by the user, and the mouse can be used.
1818

19-
Vim runs under MS-Windows (NT, 2000, XP, Vista, 7, 8, 10), Macintosh, VMS and
20-
almost all flavours of UNIX. Porting to other systems should not be very
21-
difficult. Older versions of Vim run on MS-DOS, MS-Windows 95/98/Me, Amiga
22-
DOS, Atari MiNT, BeOS, RISC OS and OS/2. These are no longer maintained.
19+
Vim runs under MS-Windows (XP, Vista, 7, 8, 10), macOS, VMS and almost all
20+
flavours of UNIX. Porting to other systems should not be very difficult.
21+
Older versions of Vim run on MS-DOS, MS-Windows 95/98/Me/NT/2000, Amiga DOS,
22+
Atari MiNT, BeOS, RISC OS and OS/2. These are no longer maintained.
2323

2424

2525
DISTRIBUTION

0 commit comments

Comments
 (0)