Skip to content

Commit 4932594

Browse files
committed
updated for version 7.1b
1 parent 5f52cff commit 4932594

25 files changed

+249
-78
lines changed

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.1a of Vim: Vi IMproved.
1+
README_amisrc.txt for version 7.1b 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_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.1a of Vim: Vi IMproved.
1+
README_vms.txt for version 7.1b 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.1a of Vim: Vi IMproved.
1+
README_w32s.txt for version 7.1b 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.

runtime/autoload/spellfile.vim

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
" Vim script to download a missing spell file
22
" Maintainer: Bram Moolenaar <Bram@vim.org>
3-
" Last Change: 2007 May 06
3+
" Last Change: 2007 May 08
44

55
if !exists('g:spellfile_URL')
66
let g:spellfile_URL = 'ftp://ftp.vim.org/pub/vim/runtime/spell'
@@ -145,6 +145,12 @@ endfunc
145145

146146
" Read "fname" from the server.
147147
function! spellfile#Nread(fname)
148+
" We do our own error handling, don't want a window for it.
149+
if exists("g:netrw_use_errorwindow")
150+
let save_ew = g:netrw_use_errorwindow
151+
endif
152+
let g:netrw_use_errorwindow=0
153+
148154
if g:spellfile_URL =~ '^ftp://'
149155
" for an ftp server use a default login and password to avoid a prompt
150156
let machine = substitute(g:spellfile_URL, 'ftp://\([^/]*\).*', '\1', '')
@@ -153,4 +159,10 @@ function! spellfile#Nread(fname)
153159
else
154160
exe 'Nread ' g:spellfile_URL . '/' . a:fname
155161
endif
162+
163+
if exists("save_ew")
164+
let g:netrw_use_errorwindow = save_ew
165+
else
166+
unlet g:netrw_use_errorwindow
167+
endif
156168
endfunc

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.1a. Last change: 2005 Mar 29
1+
*farsi.txt* For Vim version 7.1b. Last change: 2005 Mar 29
22

33

44
VIM REFERENCE MANUAL by Mortaza Ghassab Shiran

runtime/doc/filetype.txt

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*filetype.txt* For Vim version 7.1a. Last change: 2007 Mar 24
1+
*filetype.txt* For Vim version 7.1b. Last change: 2007 May 10
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -423,7 +423,8 @@ Global mappings:
423423
same as the local <Leader>o described above.
424424

425425
Variables:
426-
g:changelog_timeformat The date (and time) format used in ChangeLog entries.
426+
g:changelog_timeformat Deprecated; use g:changelog_dateformat instead.
427+
g:changelog_dateformat The date (and time) format used in ChangeLog entries.
427428
The format accepted is the same as for the
428429
|strftime()| function.
429430
The default is "%Y-%m-%d" which is the standard format
@@ -473,6 +474,14 @@ g:changelog_date_entry_search
473474
|2003-01-14 Full Name <user@host>
474475
< and some similar formats.
475476

477+
g:changelog_date_end_entry_search
478+
The search pattern to use when searching for the end
479+
of a date-entry.
480+
The same tokens that can be used for
481+
g:changelog_new_date_format can be used here as well.
482+
The default is '^\s*$' which finds lines that contain
483+
only whitespace or are completely empty.
484+
476485
The Changelog entries are inserted where they add the least amount of text.
477486
After figuring out the current date and user, the file is searched for an
478487
entry beginning with the current date and user and if found adds another item

runtime/doc/os_dos.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*os_dos.txt* For Vim version 7.1a. Last change: 2006 Mar 30
1+
*os_dos.txt* For Vim version 7.1b. Last change: 2006 Mar 30
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/os_win32.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*os_win32.txt* For Vim version 7.1a. Last change: 2007 Apr 22
1+
*os_win32.txt* For Vim version 7.1b. Last change: 2007 Apr 22
22

33

44
VIM REFERENCE MANUAL by George Reilly

runtime/doc/pi_spec.txt

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

33
by Gustavo Niemeyer ~
44

runtime/doc/scroll.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*scroll.txt* For Vim version 7.1a. Last change: 2006 Aug 27
1+
*scroll.txt* For Vim version 7.1b. Last change: 2006 Aug 27
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

0 commit comments

Comments
 (0)