Skip to content

Commit 677d665

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 0d6868f + c79d6aa commit 677d665

30 files changed

Lines changed: 1494 additions & 1203 deletions

appveyor.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ matrix:
1616

1717
before_build:
1818
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release'
19-
# Work around for Python 2.7.11's bug
20-
- reg copy HKLM\SOFTWARE\Python\PythonCore\2.7 HKLM\SOFTWARE\Python\PythonCore\2.7-32 /s /reg:32
21-
- reg copy HKLM\SOFTWARE\Python\PythonCore\2.7 HKLM\SOFTWARE\Python\PythonCore\2.7-32 /s /reg:64
2219

2320
build_script:
2421
- src/appveyor.bat

runtime/autoload/getscript.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ fun! getscript#GetLatestVimScripts()
236236
" call Decho("..depscript<".depscript.">")
237237

238238
" found a "GetLatestVimScripts: # #" line in the script;
239-
" check if its already in the datafile by searching backwards from llp1,
239+
" check if it's already in the datafile by searching backwards from llp1,
240240
" the (prior to reading in the plugin script) last line plus one of the GetLatestVimScripts.dat file,
241241
" for the script-id with no wrapping allowed.
242242
let curline = line(".")

runtime/autoload/phpcomplete.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ function! phpcomplete#EvaluateModifiers(modifiers, required_modifiers, prohibite
931931
endfor
932932

933933
for modifier in a:modifiers
934-
" if the modifier is prohibited its a no match
934+
" if the modifier is prohibited it's a no match
935935
if index(a:prohibited_modifiers, modifier) != -1
936936
return 0
937937
endif

runtime/autoload/tar.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ fun! tar#Browse(tarfile)
117117
if !filereadable(a:tarfile)
118118
" call Decho('a:tarfile<'.a:tarfile.'> not filereadable')
119119
if a:tarfile !~# '^\a\+://'
120-
" if its an url, don't complain, let url-handlers such as vim do its thing
120+
" if it's an url, don't complain, let url-handlers such as vim do its thing
121121
redraw!
122122
echohl Error | echo "***error*** (tar#Browse) File not readable<".a:tarfile.">" | echohl None
123123
endif

runtime/autoload/vimball.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ fun! vimball#Vimball(really,...)
347347
" call Decho("exe tabn ".curtabnr)
348348
exe "tabn ".curtabnr
349349

350-
" set up help if its a doc/*.txt file
350+
" set up help if it's a doc/*.txt file
351351
" call Decho("didhelp<".didhelp."> fname<".fname.">")
352352
if a:really && didhelp == "" && fname =~ 'doc/[^/]\+\.\(txt\|..x\)$'
353353
let didhelp= substitute(fname,'^\(.*\<doc\)[/\\][^.]*\.\(txt\|..x\)$','\1','')

runtime/autoload/zip.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ endif
6565
" zip#Browse: {{{2
6666
fun! zip#Browse(zipfile)
6767
" call Dfunc("zip#Browse(zipfile<".a:zipfile.">)")
68-
" sanity check: insure that the zipfile has "PK" as its first two letters
68+
" sanity check: ensure that the zipfile has "PK" as its first two letters
6969
" (zipped files have a leading PK as a "magic cookie")
7070
if !filereadable(a:zipfile) || readfile(a:zipfile, "", 1)[0] !~ '^PK'
7171
exe "noautocmd e ".fnameescape(a:zipfile)
7272
" call Dret("zip#Browse : not a zipfile<".a:zipfile.">")
7373
return
7474
" else " Decho
75-
" call Decho("zip#Browse: a:zipfile<".a:zipfile."> passed PK test - its a zip file")
75+
" call Decho("zip#Browse: a:zipfile<".a:zipfile."> passed PK test - it's a zip file")
7676
endif
7777

7878
let repkeep= &report
@@ -95,7 +95,7 @@ fun! zip#Browse(zipfile)
9595
endif
9696
if !filereadable(a:zipfile)
9797
if a:zipfile !~# '^\a\+://'
98-
" if its an url, don't complain, let url-handlers such as vim do its thing
98+
" if it's an url, don't complain, let url-handlers such as vim do its thing
9999
redraw!
100100
echohl Error | echo "***error*** (zip#Browse) File not readable<".a:zipfile.">" | echohl None
101101
" call inputsave()|call input("Press <cr> to continue")|call inputrestore()

runtime/doc/eval.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 8.0. Last change: 2016 Sep 22
1+
*eval.txt* For Vim version 8.0. Last change: 2016 Sep 25
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -4788,6 +4788,7 @@ histadd({history}, {item}) *histadd()*
47884788
"expr" or "=" typed expression history
47894789
"input" or "@" input line history
47904790
"debug" or ">" debug command history
4791+
empty the current or last used history
47914792
The {history} string does not need to be the whole name, one
47924793
character is sufficient.
47934794
If {item} does already exist in the history, it will be

runtime/doc/intro.txt

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*intro.txt* For Vim version 8.0. Last change: 2015 Jan 20
1+
*intro.txt* For Vim version 8.0. Last change: 2016 Sep 24
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -135,10 +135,14 @@ http://www.vim.org/maillist.php
135135

136136
Bug reports: *bugs* *bug-reports* *bugreport.vim*
137137

138-
Send bug reports to: Vim Developers <[email protected]>
139-
This is a maillist, you need to become a member first and many people will see
140-
the message. If you don't want that, e.g. because it is a security issue,
141-
send it to <[email protected]>, this only goes to the Vim maintainer (that's Bram).
138+
There are two ways to report bugs, both work:
139+
1. Send bug reports to: Vim Developers <[email protected]>
140+
This is a maillist, you need to become a member first and many people will
141+
see the message. If you don't want that, e.g. because it is a security
142+
issue, send it to <[email protected]>, this only goes to the Vim maintainer
143+
(that's Bram).
144+
2. Open issue on GitHub: https://github.com/vim/vim/issues
145+
The text will be forwarded to the vim-dev maillist.
142146

143147
Please be brief; all the time that is spent on answering mail is subtracted
144148
from the time that is spent on improving Vim! Always give a reproducible

runtime/doc/pi_netrw.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ variable (ex. scp uses the variable g:netrw_scp_cmd, which is defaulted to
532532
let g:netrw_sftp_cmd= '"c:\Program Files\PuTTY\psftp.exe"'
533533
<
534534
(note: it has been reported that windows 7 with putty v0.6's "-batch" option
535-
doesn't work, so its best to leave it off for that system)
535+
doesn't work, so it's best to leave it off for that system)
536536

537537
See |netrw-p8| for more about putty, pscp, psftp, etc.
538538

@@ -1206,7 +1206,7 @@ The :NetrwMB command is available outside of netrw buffers (once netrw has been
12061206
invoked in the session).
12071207

12081208
The file ".netrwbook" holds bookmarks when netrw (and vim) is not active. By
1209-
default, its stored on the first directory on the user's |'runtimepath'|.
1209+
default, it's stored on the first directory on the user's |'runtimepath'|.
12101210

12111211
Related Topics:
12121212
|netrw-gb| how to return (go) to a bookmark
@@ -1431,7 +1431,7 @@ be used in that count.
14311431
*.netrwhist*
14321432
See |g:netrw_dirhistmax| for how to control the quantity of history stack
14331433
slots. The file ".netrwhist" holds history when netrw (and vim) is not
1434-
active. By default, its stored on the first directory on the user's
1434+
active. By default, it's stored on the first directory on the user's
14351435
|'runtimepath'|.
14361436

14371437
Related Topics:
@@ -3271,7 +3271,7 @@ The user function is passed one argument; it resembles >
32713271
32723272
fun! ExampleUserMapFunc(islocal)
32733273
<
3274-
where a:islocal is 1 if its a local-directory system call or 0 when
3274+
where a:islocal is 1 if it's a local-directory system call or 0 when
32753275
remote-directory system call.
32763276

32773277
Use netrw#Expose("varname") to access netrw-internal (script-local)
@@ -3595,7 +3595,7 @@ Example: Clear netrw's marked file list via a mapping on gu >
35953595

35963596
*netrw-p16*
35973597
P16. When editing remote files (ex. :e ftp://hostname/path/file),
3598-
under Windows I get an |E303| message complaining that its unable
3598+
under Windows I get an |E303| message complaining that it's unable
35993599
to open a swap file.
36003600

36013601
(romainl) It looks like you are starting Vim from a protected
@@ -3649,7 +3649,7 @@ Example: Clear netrw's marked file list via a mapping on gu >
36493649
P21. I've made a directory (or file) with an accented character, but
36503650
netrw isn't letting me enter that directory/read that file:
36513651

3652-
Its likely that the shell or o/s is using a different encoding
3652+
It's likely that the shell or o/s is using a different encoding
36533653
than you have vim (netrw) using. A patch to vim supporting
36543654
"systemencoding" may address this issue in the future; for
36553655
now, just have netrw use the proper encoding. For example: >

runtime/doc/todo.txt

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 8.0. Last change: 2016 Sep 22
1+
*todo.txt* For Vim version 8.0. Last change: 2016 Sep 25
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -34,16 +34,7 @@ not be repeated below, unless there is extra information.
3434
*known-bugs*
3535
-------------------- Known bugs and current work -----------------------
3636

37-
Ukrainian translations (Anatolii Sakhnik, 2016 Sep 15)
38-
39-
Netbeans test fails with Python 3. (jonathon, 2016 Sep 13, #1070)
40-
41-
Revert 7.4.990? (Christian Brabandt, 2016 Sep 16)
42-
43-
Update for ratpoison (Magnus Woldrich, 2016 Sep 15)
44-
45-
Crash when editing file with only encryption header. (igor2x, 2016 Sep 18,
46-
#1096) Patch by Christian, Sep 22.
37+
Move test71 tests to test_crypt.
4738

4839
Idea from Sven: record sequence of keys. Useful to show others what they are
4940
doing (look over the shoulder), and also to see what happened.
@@ -52,6 +43,7 @@ Could store in logfile to be able to analyise it with an external command.
5243
E.g. to see when's the last time a plugin command was used.
5344

5445
Patch for typos. (Matthew Brener, 2016 Sep 16, #1088)
46+
Lots of its to it's.
5547

5648
After 8.0 is released:
5749
- Drop support for older MS-Windows systems, before XP.
@@ -62,6 +54,7 @@ After 8.0 is released:
6254
Perhaps try to read once more?
6355
Possibly reproduced by Santiago Alejandro Agüero, 2016 Sep 12, 13.
6456
Apparently select() returns an error while reading could work.
57+
Another example from Daniel Hahler, Sep 24.
6558
- Problem with stderr on Windows? (Vincent Rischmann, 2016 Aug 31, #1026)
6659
- Add 'cwd' argument to start_job(): directory to change to in the child.
6760
check for valid directory before forking.
@@ -157,6 +150,9 @@ Add tests for using number larger than number of lines in buffer.
157150
Invalid behavior with NULL list. (Nikolai Pavlov, #768)
158151
E.g. deepcopy(test_null_list())
159152

153+
Patch to make it possible to extend a list with itself.
154+
(Nikolai Pavlov, 2016 Sep 23)
155+
160156
min() and max() spawn lots of error messages if sorted list/dictionary
161157
contains invalid data (Nikolay Pavlov, 2016 Sep 4, #1039)
162158

0 commit comments

Comments
 (0)