Skip to content

Commit 5d200ba

Browse files
committed
Merge branch 'vim'
Conflicts: src/auto/configure
2 parents 864d43f + 4fa0083 commit 5d200ba

File tree

201 files changed

+1667
-1064
lines changed

Some content is hidden

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

201 files changed

+1667
-1064
lines changed

.hgtags

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2700,3 +2700,26 @@ da95a7f1d5a8413ae719188cec5b706b99db4a91 v7-4a-045
27002700
f0361e297d9ceb533a17530647b4482c3990df3c v7-4a-046
27012701
8c6615a30951fb9f2d2b218e55626f5dfa3fa24e v7-4a-047
27022702
09c88160095d98a0b1403e9230c76e8adbb75d59 v7-4b-000
2703+
47a09a572ea670d0498983eaa6ded5ab4f12fd15 v7-4b-001
2704+
2e63b6c763f7af2ef11f751d3047847652dddfe0 v7-4b-002
2705+
ea876fe914833a69018c54d6927dbbdb42ce6ecc v7-4b-003
2706+
3c6e2b89875f39c8417021aa369695ec1ba762df v7-4b-004
2707+
e63e4b4be9236c2d811b5ec7bdd79e387ec8bac9 v7-4b-005
2708+
6b7ab6a4f31a54bceb4e7d6f0f9404b5a37bdad3 v7-4b-006
2709+
b882d4b14e00af23444fd630aae3ac32214dd097 v7-4b-007
2710+
3059c799fcd997ea60a63ed10a2a09d73e3ed3cf v7-4b-008
2711+
cd971e951b0626c253059d8e25859032560920a6 v7-4b-009
2712+
585b623a1aa3baea87a1584e6064612b2183d312 v7-4b-010
2713+
7d1f89b2710305a00e6adac35a1fa6edd47982ba v7-4b-011
2714+
25f67b62afd8c58b6c661961cc762f00ee89e562 v7-4b-012
2715+
1ed6fd19c36051da73f9987777002b331853f5ea v7-4b-013
2716+
3ddec3d25bd178d4f90114bce9ce889f3889e6d2 v7-4b-014
2717+
d96f16667cc48d89c380fae29d86286b20040d5b v7-4b-015
2718+
ba37e955913e85700677b89a720c6e5fc8d23cc3 v7-4b-016
2719+
8c42772f05438e9f06200bca731cf301097be8ea v7-4b-017
2720+
7ed1ec814dafe8109a2f34302174267d31bbc924 v7-4b-018
2721+
74a211a0d3a3135dd67329cd981f5100f5e4d064 v7-4b-019
2722+
46cf49cc9289920704999a971f397eee1efdb3fc v7-4b-020
2723+
059c8a4b103f6971276435127c7ad970a81b0b2c v7-4b-021
2724+
d5d6b78cff090e87d52924179e44131b5ba7436d v7-4b-022
2725+
359743c1f59af353454dd80a26d9f8c20ae6ee8e v7-4

Contents

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Vim Vi IMproved. A clone of the UNIX text editor Vi. Very useful
99
messages, shows current file name in window title, on-line
1010
help, rectangular cut/paste, etc., etc., etc...
1111

12-
Version 7.4b. Also runs under UNIX, MSDOS and other systems.
13-
vim74brt.tgz contains the documentation and syntax files.
14-
vim74bbin.tgz contains the binaries.
15-
vim74bsrc.tgz contains the sources.
12+
Version 7.4. Also runs under UNIX, MSDOS and other systems.
13+
vim74rt.tgz contains the documentation and syntax files.
14+
vim74bin.tgz contains the binaries.
15+
vim74src.tgz contains the sources.
1616
Author: Bram Moolenaar et al.
1717

1818

Makefile

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ all install uninstall tools config configure reconfig proto depend lint tags typ
7474
# Before creating an archive first delete all backup files, *.orig, etc.
7575

7676
MAJOR = 7
77-
MINOR = 4b
77+
MINOR = 4
7878

7979
# Uncomment this line if the Win32s version is to be included.
8080
# DOSBIN_S = dosbin_s
@@ -92,8 +92,6 @@ MINOR = 4b
9292
# runtime/doc/*.txt and nsis/gvim.nsi. Other things in README_os2.txt. For a
9393
# minor/major version: src/GvimExt/GvimExt.reg, src/vim.def, src/vim16.def,
9494
# src/gvim.exe.mnf.
95-
# - Adjust the date and other info in src/version.h.
96-
# - Correct included_patches[] in src/version.c.
9795
# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, MZscheme, Lua (if
9896
# you can make it all work), Cscope and "huge" features. Exclude workshop
9997
# and SNiFF.
@@ -102,17 +100,23 @@ MINOR = 4b
102100
# - With these features: "make depend" (works best with gcc).
103101
# - If you have a lint program: "make lint" and check the output (ignore GTK
104102
# warnings).
105-
# - Enable the efence library in "src/Makefile" and run "make test". Disable
106-
# Python and Ruby to avoid trouble with threads (efence is not threadsafe).
103+
# - If you have valgrind, enable it in src/testdir/Makefile and run "make
104+
# test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
105+
# Check the valgrind output.
106+
# - If you have the efence library, enable it in "src/Makefile" and run "make
107+
# test". Disable Python and Ruby to avoid trouble with threads (efence is
108+
# not threadsafe).
109+
# - Adjust the date and other info in src/version.h.
110+
# - Correct included_patches[] in src/version.c.
107111
# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
108112
# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
109113
# - Do "make menu" to update the runtime/synmenu.vim file.
110114
# - Add remarks for changes to runtime/doc/version7.txt.
111115
# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
112116
# ADDITIONS".
113117
# - In runtime/doc run "make" and "make html" to check for errors.
114-
# - Check if src/Makefile and src/feature.h don't contain any personal
115-
# preferences or the GTK, Perl, etc. mentioned above.
118+
# - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
119+
# any personal preferences or the changes mentioned above.
116120
# - Check file protections to be "644" for text and "755" for executables (run
117121
# the "check" script).
118122
# - Check compiling on Amiga, MS-DOS and MS-Windows.

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README.txt for version 7.4b of Vim: Vi IMproved.
1+
README.txt for version 7.4 of Vim: Vi IMproved.
22

33

44
WHAT IS VIM

README_ami.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_ami.txt for version 7.4b of Vim: Vi IMproved.
1+
README_ami.txt for version 7.4 of Vim: Vi IMproved.
22

33
This file explains the installation of Vim on Amiga systems.
44
See README.txt for general information about Vim.

README_amibin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_amibin.txt for version 7.4b of Vim: Vi IMproved.
1+
README_amibin.txt for version 7.4 of Vim: Vi IMproved.
22

33
See "README.txt" for general information about Vim.
44
See "README_ami.txt" for installation instructions for the Amiga.

README_amisrc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_amisrc.txt for version 7.4b of Vim: Vi IMproved.
1+
README_amisrc.txt for version 7.4 of Vim: Vi IMproved.
22

33
See "README.txt" for general information about Vim.
44
See "README_ami.txt" for installation instructions for the Amiga.

README_bindos.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_bindos.txt for version 7.4b of Vim: Vi IMproved.
1+
README_bindos.txt for version 7.4 of Vim: Vi IMproved.
22

33
See "README.txt" for general information about Vim.
44
See "README_dos.txt" for installation instructions for MS-DOS and MS-Windows.

README_dos.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_dos.txt for version 7.4b of Vim: Vi IMproved.
1+
README_dos.txt for version 7.4 of Vim: Vi IMproved.
22

33
This file explains the installation of Vim on MS-DOS and MS-Windows systems.
44
See "README.txt" for general information about Vim.

README_extra.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_extra.txt for version 7.4b of Vim: Vi IMproved.
1+
README_extra.txt for version 7.4 of Vim: Vi IMproved.
22

33
These extra files of Vim are for special purposes. This README explains what
44
the files are for. For general information about Vim, see the "README.txt"

README_mac.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_mac.txt for version 7.4b of Vim: Vi IMproved.
1+
README_mac.txt for version 7.4 of Vim: Vi IMproved.
22

33
This file explains the installation of MacVim.
44
See "README.txt" for general information about Vim.

README_ole.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_ole.txt for version 7.4b of Vim: Vi IMproved.
1+
README_ole.txt for version 7.4 of Vim: Vi IMproved.
22

33
This archive contains gvim.exe with OLE interface and VisVim.
44
This version of gvim.exe can also load a number of interface dynamically (you

README_os2.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_os2.txt for version 7.4b of Vim: Vi IMproved.
1+
README_os2.txt for version 7.4 of Vim: Vi IMproved.
22

33
This file explains the installation of Vim on OS/2 systems.
44
See "README.txt" for general information about Vim.

README_os390.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_zOS.txt for version 7.4b of Vim: Vi IMproved.
1+
README_zOS.txt for version 7.4 of Vim: Vi IMproved.
22

33
This readme explains how to build Vim on z/OS. Formerly called OS/390.
44
See "README.txt" for general information about Vim.

README_src.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_src.txt for version 7.4b of Vim: Vi IMproved.
1+
README_src.txt for version 7.4 of Vim: Vi IMproved.
22

33
The source archive contains the files needed to compile Vim on Unix systems.
44
It is packed for Unix systems (NL line separator).

README_srcdos.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_srcdos.txt for version 7.4b of Vim: Vi IMproved.
1+
README_srcdos.txt for version 7.4 of Vim: Vi IMproved.
22

33
See "README.txt" for general information about Vim.
44
See "README_dos.txt" for installation instructions for MS-DOS and MS-Windows.

README_unix.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_unix.txt for version 7.4b of Vim: Vi IMproved.
1+
README_unix.txt for version 7.4 of Vim: Vi IMproved.
22

33
This file explains the installation of Vim on Unix systems.
44
See "README.txt" for general information about Vim.

README_vms.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_vms.txt for version 7.4b of Vim: Vi IMproved.
1+
README_vms.txt for version 7.4 of Vim: Vi IMproved.
22

33
This file explains the installation of Vim on VMS systems.
44
See "README.txt" in the runtime archive for information about Vim.

README_w32s.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_w32s.txt for version 7.4b of Vim: Vi IMproved.
1+
README_w32s.txt for version 7.4 of Vim: Vi IMproved.
22

33
This archive contains the gvim.exe that was specifically compiled for use in
44
the Win32s subsystem in MS-Windows 3.1 and 3.11.

nsis/gvim.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
!define HAVE_NLS
2323

2424
!define VER_MAJOR 7
25-
!define VER_MINOR 4b
25+
!define VER_MINOR 4
2626

2727
# ----------- No configurable settings below this line -----------
2828

runtime/doc/arabic.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*arabic.txt* For Vim version 7.4b. Last change: 2010 Nov 13
1+
*arabic.txt* For Vim version 7.4. Last change: 2010 Nov 13
22

33

44
VIM REFERENCE MANUAL by Nadim Shaikli

runtime/doc/autocmd.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*autocmd.txt* For Vim version 7.4b. Last change: 2013 Jun 15
1+
*autocmd.txt* For Vim version 7.4. Last change: 2013 Aug 04
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -952,7 +952,8 @@ the autocommand is executed. This is different from the command!
952952

953953
*file-pattern*
954954
The pattern is interpreted like mostly used in file names:
955-
* matches any sequence of characters
955+
* matches any sequence of characters; Unusual: includes path
956+
separators
956957
? matches any single character
957958
\? matches a '?'
958959
. matches a '.'
@@ -961,6 +962,9 @@ The pattern is interpreted like mostly used in file names:
961962
\, matches a ','
962963
{ } like \( \) in a |pattern|
963964
, inside { }: like \| in a |pattern|
965+
\} literal }
966+
\{ literal {
967+
\\\{n,m\} like \{n,m} in a |pattern|
964968
\ special meaning like in a |pattern|
965969
[ch] matches 'c' or 'h'
966970
[^ch] match any character but 'c' and 'h'

runtime/doc/change.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*change.txt* For Vim version 7.4b. Last change: 2013 Jul 17
1+
*change.txt* For Vim version 7.4. Last change: 2013 Jul 17
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/cmdline.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*cmdline.txt* For Vim version 7.4b. Last change: 2013 Mar 16
1+
*cmdline.txt* For Vim version 7.4. Last change: 2013 Mar 16
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/debug.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*debug.txt* For Vim version 7.4b. Last change: 2012 Feb 11
1+
*debug.txt* For Vim version 7.4. Last change: 2012 Feb 11
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/debugger.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*debugger.txt* For Vim version 7.4b. Last change: 2005 Mar 29
1+
*debugger.txt* For Vim version 7.4. Last change: 2005 Mar 29
22

33

44
VIM REFERENCE MANUAL by Gordon Prieur

runtime/doc/develop.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*develop.txt* For Vim version 7.4b. Last change: 2013 Apr 27
1+
*develop.txt* For Vim version 7.4. Last change: 2013 Apr 27
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/diff.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*diff.txt* For Vim version 7.4b. Last change: 2013 Jul 07
1+
*diff.txt* For Vim version 7.4. Last change: 2013 Jul 07
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/digraph.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*digraph.txt* For Vim version 7.4b. Last change: 2011 Jan 15
1+
*digraph.txt* For Vim version 7.4. Last change: 2011 Jan 15
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/editing.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*editing.txt* For Vim version 7.4b. Last change: 2013 Feb 07
1+
*editing.txt* For Vim version 7.4. Last change: 2013 Aug 03
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -185,12 +185,13 @@ If you want to automatically save the changes without asking, switch on the
185185
that does not work for all commands.
186186

187187
If you want to keep the changed buffer without saving it, switch on the
188-
'hidden' option. See |hidden-buffer|.
188+
'hidden' option. See |hidden-buffer|. Some commands work like this even when
189+
'hidden' is not set, check the help for the command.
189190

190191
==============================================================================
191192
2. Editing a file *edit-a-file*
192193

193-
*:e* *:edit*
194+
*:e* *:edit* *reload*
194195
:e[dit] [++opt] [+cmd] Edit the current file. This is useful to re-edit the
195196
current file, when it has been changed outside of Vim.
196197
This fails when changes have been made to the current
@@ -199,7 +200,7 @@ If you want to keep the changed buffer without saving it, switch on the
199200
Also see |++opt| and |+cmd|.
200201
{Vi: no ++opt}
201202

202-
*:edit!*
203+
*:edit!* *discard*
203204
:e[dit]! [++opt] [+cmd]
204205
Edit the current file always. Discard any changes to
205206
the current buffer. This is useful if you want to

runtime/doc/eval.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 7.4b. Last change: 2013 Jun 11
1+
*eval.txt* For Vim version 7.4. Last change: 2013 Aug 03
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -5884,6 +5884,9 @@ system({expr} [, {input}]) *system()* *E677*
58845884
< To make the result more system-independent, the shell output
58855885
is filtered to replace <CR> with <NL> for Macintosh, and
58865886
<CR><NL> with <NL> for DOS-like systems.
5887+
To avoid the string being truncated at a NUL, all NUL
5888+
characters are replaced with SOH (0x01).
5889+
58875890
The command executed is constructed using several options:
58885891
'shell' 'shellcmdflag' 'shellxquote' {expr} 'shellredir' {tmp} 'shellxquote'
58895892
({tmp} is an automatically generated file name).

runtime/doc/farsi.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*farsi.txt* For Vim version 7.4b. Last change: 2010 Aug 07
1+
*farsi.txt* For Vim version 7.4. Last change: 2010 Aug 07
22

33

44
VIM REFERENCE MANUAL by Mortaza Ghassab Shiran

runtime/doc/filetype.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*filetype.txt* For Vim version 7.4b. Last change: 2013 May 25
1+
*filetype.txt* For Vim version 7.4. Last change: 2013 May 25
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/fold.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*fold.txt* For Vim version 7.4b. Last change: 2010 May 13
1+
*fold.txt* For Vim version 7.4. Last change: 2010 May 13
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/ft_ada.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*ft_ada.txt* For Vim version 7.4b. Last change: 2010 Jul 20
1+
*ft_ada.txt* For Vim version 7.4. Last change: 2010 Jul 20
22

33

44
ADA FILE TYPE PLUG-INS REFERENCE MANUAL~

runtime/doc/ft_sql.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*ft_sql.txt* For Vim version 7.4b. Last change: 2013 May 15
1+
*ft_sql.txt* For Vim version 7.4. Last change: 2013 May 15
22

33
by David Fishburn
44

runtime/doc/gui.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*gui.txt* For Vim version 7.4b. Last change: 2013 Jun 12
1+
*gui.txt* For Vim version 7.4. Last change: 2013 Jun 12
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/gui_w16.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*gui_w16.txt* For Vim version 7.4b. Last change: 2005 Mar 29
1+
*gui_w16.txt* For Vim version 7.4. Last change: 2005 Mar 29
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/gui_w32.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*gui_w32.txt* For Vim version 7.4b. Last change: 2012 Aug 04
1+
*gui_w32.txt* For Vim version 7.4. Last change: 2012 Aug 04
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/gui_x11.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*gui_x11.txt* For Vim version 7.4b. Last change: 2011 Sep 14
1+
*gui_x11.txt* For Vim version 7.4. Last change: 2011 Sep 14
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/hangulin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*hangulin.txt* For Vim version 7.4b. Last change: 2009 Jun 24
1+
*hangulin.txt* For Vim version 7.4. Last change: 2009 Jun 24
22

33

44
VIM REFERENCE MANUAL by Chi-Deok Hwang and Sung-Hyun Nam

runtime/doc/hebrew.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*hebrew.txt* For Vim version 7.4b. Last change: 2007 Jun 14
1+
*hebrew.txt* For Vim version 7.4. Last change: 2007 Jun 14
22

33

44
VIM REFERENCE MANUAL by Ron Aaron (and Avner Lottem)

runtime/doc/help.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*help.txt* For Vim version 7.4b. Last change: 2012 Dec 06
1+
*help.txt* For Vim version 7.4. Last change: 2012 Dec 06
22

33
VIM - main help file
44
k

runtime/doc/helphelp.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*helphelp.txt* For Vim version 7.4b. Last change: 2012 Nov 28
1+
*helphelp.txt* For Vim version 7.4. Last change: 2012 Nov 28
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/howto.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*howto.txt* For Vim version 7.4b. Last change: 2006 Apr 02
1+
*howto.txt* For Vim version 7.4. Last change: 2006 Apr 02
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

0 commit comments

Comments
 (0)