Skip to content

Commit 91c4937

Browse files
committed
Updated runtime files.
1 parent ea83bf0 commit 91c4937

12 files changed

Lines changed: 228 additions & 268 deletions

File tree

runtime/doc/channel.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*channel.txt* For Vim version 7.4. Last change: 2016 Apr 26
1+
*channel.txt* For Vim version 7.4. Last change: 2016 Apr 30
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -254,10 +254,6 @@ message, it must use the number zero:
254254
Then channel handler will then get {response} converted to Vim types. If the
255255
channel does not have a handler the message is dropped.
256256

257-
On read error or ch_close(), when using a socket with RAW or NL mode, the
258-
string "DETACH\n" is sent, if still possible. The channel will then be
259-
inactive.
260-
261257
It is also possible to use ch_sendraw() and ch_evalraw() on a JSON or JS
262258
channel. The caller is then completely responsible for correct encoding and
263259
decoding.

runtime/doc/eval.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 7.4. Last change: 2016 Apr 26
1+
*eval.txt* For Vim version 7.4. Last change: 2016 May 05
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -7709,6 +7709,7 @@ netbeans_enabled Compiled with support for |netbeans| and connected.
77097709
netbeans_intg Compiled with support for |netbeans|.
77107710
ole Compiled with OLE automation support for Win32.
77117711
os2 OS/2 version of Vim.
7712+
packages Compiled with |packages| support.
77127713
path_extra Compiled with up/downwards search in 'path' and 'tags'
77137714
perl Compiled with Perl interface.
77147715
persistent_undo Compiled with support for persistent undo history.
@@ -7742,9 +7743,9 @@ tag_old_static Compiled with support for old static tags
77427743
tag_any_white Compiled with support for any white characters in tags
77437744
files |tag-any-white|.
77447745
tcl Compiled with Tcl interface.
7746+
termguicolors Compiled with true color in terminal support.
77457747
terminfo Compiled with terminfo instead of termcap.
77467748
termresponse Compiled with support for |t_RV| and |v:termresponse|.
7747-
termtruecolor Compiled with true color in terminal support.
77487749
textobjects Compiled with support for |text-objects|.
77497750
tgetent Compiled with tgetent support, able to use a termcap
77507751
or terminfo file.

runtime/doc/todo.txt

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.4. Last change: 2016 Apr 30
1+
*todo.txt* For Vim version 7.4. Last change: 2016 May 08
22

33

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

37-
Athena version doesn't start up. Related to termguicolors change. (Kelvin
38-
Lee)
39-
40-
Test_out_close_cb sometimes fails.
41-
Why is DETACH not send to OutHandler()?
42-
43-
Vim reliably crashes when freeing the job and operator-pending mode is active.
44-
(James McCoy, 2016 Apr 26)
45-
46-
Using close callback to read output doesn't work reliably.
47-
(Andrew Stewart, 2016 Apr 27)
37+
Crash when running a job a second time. (stewart, May 4)
4838

4939
problem with "Ignore" after adding 'guicolors'. (Charles Campbell, 2016 Apr
5040
27)
5141

5242
In test_partial when start_job() has a non-existing command memory leaks.
5343

44+
Rename garbagecollect_for_testing() to test_garbagecollect_now().
45+
Add test_get_null_list(), use in test_expr.
46+
5447
Memory leak in test49
5548
Memory leak in test_alot, with matchstrpos()
5649

5750
Packages:
58-
Also keep a list of loaded plugins, skip when encountered again?
51+
- Add the "after" directory to 'runtimepath' only if it exists.
52+
(Greg Hurrell, May 1)
53+
- Also keep a list of loaded plugins, skip when encountered again?
5954

6055
Vim.org: when a user already has a homepage, do show the field so that it can
6156
be deleted.
6257

63-
Running gvim from Agide causes a crash.
64-
6558
+channel:
66-
- Only add DETACH message for netbeans.
59+
- When running "echo hello" the job remains defunc. (Nicola, May 7)
60+
- Feedback from Ramel Eshed, May 7. Occasional crashes.
6761
- GUI:cursor blinking is irregular when invoking callbacks. (Ramel Eshed, 2016
6862
Apr 16) somehow remember the previous state?
6963
- When a message in the queue but there is no callback, drop it after a while?
@@ -81,9 +75,6 @@ Later
8175

8276
Make it so that the window ID can be used where currently a window nr is used
8377

84-
Patch to fix invalid behavior with NULL list. (Nikolai Pavlov, #768)
85-
Also check :for.
86-
8778
Regexp problems:
8879
- Since 7.4.704 the old regex engine fails to match [[:print:]] in 0xf6.
8980
(Manuel Ortega, 2016 Apr 24)
@@ -139,6 +130,9 @@ What if there is an invalid character?
139130
Once .exe with updated installer is available: Add remark to download page
140131
about /S and /D options (Ken Takata, 2016 Apr 13)
141132

133+
Patch to avoid reallocating buffer for quickfix lines three times.
134+
(Yegappan Lakshmanan, 2016 May 7)
135+
142136
Patch to make cursor blinking work better with GTK3. (Kazunobu Kuriyama, 2016
143137
Apr 19) Need to check this works on Linux.
144138
Alternative:
@@ -152,6 +146,11 @@ Add tests for using number larger than number of lines in buffer.
152146
Patch to fix escaping special characters for delete(). (tc-0, 2016 Mar 20,
153147
#700) Test fails on MS-Windows.
154148

149+
Invalid behavior with NULL list. (Nikolai Pavlov, #768)
150+
151+
After patch 7.4.1818 the language is removed too often. (Ken Takata, 2016 May
152+
5)
153+
155154
When 'autochdir' is set, writing new file does not change the current dir.
156155
(Dan Church, issue #777)
157156

@@ -834,6 +833,7 @@ optional. (2013 Jul 12)
834833
Dialog is too big on Linux too. (David Fishburn, 2013 Sep 2)
835834

836835
Improve the installer for MS-Windows. There are a few alternatives:
836+
- Add silent install option. (Shane Lee, #751)
837837
- Installer from Cream (Steve Hall).
838838
- Modern UI 2.0 for the Nsis installer. (Guopeng Wen)
839839
https://github.com/gpwen/vim-installer-mui2

runtime/doc/various.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*various.txt* For Vim version 7.4. Last change: 2016 Apr 29
1+
*various.txt* For Vim version 7.4. Last change: 2016 May 05
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -391,6 +391,7 @@ m *+mzscheme* Mzscheme interface |mzscheme|
391391
m *+mzscheme/dyn* Mzscheme interface |mzscheme-dynamic| |/dyn|
392392
m *+netbeans_intg* |netbeans|
393393
m *+ole* Win32 GUI only: |ole-interface|
394+
N *+packages* Loading |packages|
394395
N *+path_extra* Up/downwards search in 'path' and 'tags'
395396
m *+perl* Perl interface |perl|
396397
m *+perl/dyn* Perl interface |perl-dynamic| |/dyn|

runtime/plugin/manpager.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
" Vim plugin for using Vim as manpager.
22
" Maintainer: Enno Nagel <[email protected]>
3-
" Last Change: 2016 Apr 30
3+
" Last Change: 2016 May 07
44

55
" $MAN_PN is supposed to be set by MANPAGER, see ":help manpager.vim".
66
if empty($MAN_PN)
@@ -20,10 +20,10 @@ function! s:MANPAGER()
2020
let manpage = expand('$MAN_PN')
2121
endif
2222

23-
let page_sec = matchlist( manpage, '^' . pagesec_pattern . '$')
23+
let page_sec = matchlist(tolower(manpage), '^' . pagesec_pattern . '$')
2424

2525
bwipe!
2626

2727
setlocal filetype=man
28-
exe 'Man' page_sec[3] page_sec[1]
28+
exe 'Man' page_sec[1] page_sec[0]
2929
endfunction

runtime/syntax/dcl.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
" Vim syntax file
22
" Language: DCL (Digital Command Language - vms)
33
" Maintainer: Charles E. Campbell <[email protected]>
4-
" Last Change: Jan 20, 2016
5-
" Version: 8
4+
" Last Change: May 02, 2016
5+
" Version: 9
66
" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_DCL
77

88
" For version 5.x: Clear all syntax items
@@ -13,7 +13,7 @@ elseif exists("b:current_syntax")
1313
finish
1414
endif
1515

16-
if !has("patch-7.4.1141")
16+
if !has("patch-7.4.1142")
1717
setlocal iskeyword=$,@,48-57,_
1818
else
1919
syn iskeyword $,@,48-57,_

runtime/syntax/lisp.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
" Vim syntax file
22
" Language: Lisp
33
" Maintainer: Charles E. Campbell <[email protected]>
4-
" Last Change: Jan 20, 2016
5-
" Version: 24
4+
" Last Change: May 02, 2016
5+
" Version: 25
66
" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_LISP
77
"
88
" Thanks to F Xavier Noria for a list of 978 Common Lisp symbols taken from HyperSpec
@@ -16,7 +16,7 @@ endif
1616

1717
if exists("g:lisp_isk")
1818
exe "setl isk=".g:lisp_isk
19-
elseif !has("patch-7.4.1141")
19+
elseif !has("patch-7.4.1142")
2020
setl isk=38,42,43,45,47-58,60-62,64-90,97-122,_
2121
else
2222
syn iskeyword 38,42,43,45,47-58,60-62,64-90,97-122,_

runtime/syntax/maple.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
" Vim syntax file
22
" Language: Maple V (based on release 4)
33
" Maintainer: Charles E. Campbell <[email protected]>
4-
" Last Change: Jan 20, 2016
5-
" Version: 12
4+
" Last Change: May 02, 2016
5+
" Version: 13
66
" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_MAPLE
77
"
88
" Package Function Selection: {{{1
@@ -30,7 +30,7 @@ elseif exists("b:current_syntax")
3030
endif
3131

3232
" Iskeyword Effects: {{{1
33-
if !has("patch-7.4.1141")
33+
if !has("patch-7.4.1142")
3434
setl isk=$,48-57,_,a-z,@-Z
3535
else
3636
syn iskeyword $,48-57,_,a-z,@-Z

0 commit comments

Comments
 (0)