Skip to content

Commit bbe917d

Browse files
committed
patch 8.0.0007
Problem: Vim 7.4 is still mentioned in a few places. Solution: Update to Vim 8. (Uncle Bill, closes #1094)
1 parent ebdd90a commit bbe917d

4 files changed

Lines changed: 21 additions & 19 deletions

File tree

src/INSTALLpc.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -722,40 +722,40 @@ The MS-DOS support was removed in patch 7.4.1399.
722722
After you've built the Vim binaries as described above, you're ready to
723723
install Vim on your system. However, if you've obtained the Vim sources
724724
using Git, Mercurial or by downloading them as a unix tar file, you must
725-
first create a "vim74" directory. If you instead downloaded the sources as
725+
first create a "vim80" directory. If you instead downloaded the sources as
726726
zip files, you can skip this setup as the zip archives already have the
727727
correct directory structure.
728728

729-
A. Create a Vim "runtime" subdirectory named "vim74"
729+
A. Create a Vim "runtime" subdirectory named "vim80"
730730
-----------------------------------------------------
731731
If you obtained your Vim sources as zip files, you can skip this step.
732732
Otherwise, continue reading.
733733

734734
Go to the directory that contains the Vim "src" and "runtime"
735-
directories and create a new subdirectory named "vim74".
735+
directories and create a new subdirectory named "vim80".
736736

737-
Copy the "runtime" files into "vim74":
738-
copy runtime\* vim74
737+
Copy the "runtime" files into "vim80":
738+
copy runtime\* vim80
739739

740-
B. Copy the new binaries into the "vim74" directory
740+
B. Copy the new binaries into the "vim80" directory
741741
----------------------------------------------------
742742
Regardless of how you installed the Vim sources, you need to copy the
743-
new binaries you created above into "vim74":
743+
new binaries you created above into "vim80":
744744

745-
copy src\*.exe vim74
746-
copy src\GvimExt\gvimext.dll vim74
747-
copy src\xxd\xxd.exe vim74
745+
copy src\*.exe vim80
746+
copy src\GvimExt\gvimext.dll vim80
747+
copy src\xxd\xxd.exe vim80
748748

749-
C. Move the "vim74" directory into the Vim installation subdirectory
749+
C. Move the "vim80" directory into the Vim installation subdirectory
750750
---------------------------------------------------------------------
751-
Move the "vim74" subdirectory into the subdirectory where you want Vim
751+
Move the "vim80" subdirectory into the subdirectory where you want Vim
752752
to be installed. Typically, this subdirectory will be named "vim".
753-
If you already have a "vim74" subdirectory in "vim", delete it first
753+
If you already have a "vim80" subdirectory in "vim", delete it first
754754
by running its uninstal.exe program.
755755

756756
D. Install Vim
757757
---------------
758-
"cd" to your Vim installation subdirectory "vim\vim74" and run the
758+
"cd" to your Vim installation subdirectory "vim\vim80" and run the
759759
"install.exe" program. It will ask you a number of questions about
760760
how you would like to have your Vim setup. Among these are:
761761
- You can tell it to write a "_vimrc" file with your preferences in the

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
7,
767769
/**/
768770
6,
769771
/**/

src/vimtutor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111

1212
# Vim could be called "vim" or "vi". Also check for "vimN", for people who
1313
# have Vim installed with its version number.
14-
# We anticipate up to a future Vim 8 version :-).
15-
seq="vim vim8 vim75 vim74 vim73 vim72 vim71 vim70 vim7 vim6 vi"
14+
# We anticipate up to a future Vim 8.1 version :-).
15+
seq="vim vim81 vim80 vim8 vim74 vim73 vim72 vim71 vim70 vim7 vim6 vi"
1616
if test "$1" = "-g"; then
1717
# Try to use the GUI version of Vim if possible, it will fall back
1818
# on Vim if Gvim is not installed.
19-
seq="gvim gvim8 gvim75 gvim74 gvim73 gvim72 gvim71 gvim70 gvim7 gvim6 $seq"
19+
seq="gvim gvim81 gvim80 gvim8 gvim74 gvim73 gvim72 gvim71 gvim70 gvim7 gvim6 $seq"
2020
shift
2121
fi
2222

uninstal.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ Here are guidelines for removing Vim by hand:
5555
skip the next step.
5656

5757
5. Delete the distributed files. If you followed the directions, these will
58-
be located in a directory like "C:\vim\vim74". If the $VIM environment
59-
variable is set, the directory will be $VIM\vim74. Delete the "vim74"
58+
be located in a directory like "C:\vim\vim80". If the $VIM environment
59+
variable is set, the directory will be $VIM\vim80. Delete the "vim80"
6060
directory and all that is in it. Warning: If you changed any of the
6161
distributed files, or added some of your own files, you might want to save
6262
these first. But normally you would not have changed or added files here.

0 commit comments

Comments
 (0)