Skip to content

Commit f7a2e90

Browse files
brammooldouglaskayama
authored andcommitted
Updated runtime files.
1 parent f5ada5c commit f7a2e90

16 files changed

Lines changed: 1392 additions & 645 deletions

File tree

README.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,3 @@ MAIN AUTHOR
110110
Send any other comments, patches, flowers and suggestions to:
111111

112112
Bram Moolenaar E-mail: [email protected]
113-
Finsterruetihof 1
114-
8134 Adliswil
115-
Switzerland

runtime/doc/autocmd.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*autocmd.txt* For Vim version 7.4. Last change: 2014 Sep 23
1+
*autocmd.txt* For Vim version 7.4. Last change: 2015 Mar 21
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -933,6 +933,13 @@ WinLeave Before leaving a window. If the window to be
933933
==============================================================================
934934
6. Patterns *autocmd-patterns* *{pat}*
935935

936+
The {pat} argument can be a comma separated list. This works as if the
937+
command was given with each pattern separately. Thus this command: >
938+
:autocmd BufRead *.txt,*.info set et
939+
Is equivalent to: >
940+
:autocmd BufRead *.txt set et
941+
:autocmd BufRead *.info set et
942+
936943
The file pattern {pat} is tested for a match against the file name in one of
937944
two ways:
938945
1. When there is no '/' in the pattern, Vim checks for a match against only

runtime/doc/eval.txt

Lines changed: 2 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: 2015 Mar 21
1+
*eval.txt* For Vim version 7.4. Last change: 2015 Apr 11
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -525,7 +525,7 @@ Funcref to a Dictionary, but the "self" variable is not available then.
525525
To avoid the extra name for the function it can be defined and directly
526526
assigned to a Dictionary in this way: >
527527
:let mydict = {'data': [0, 1, 2, 3]}
528-
:function mydict.len() dict
528+
:function mydict.len()
529529
: return len(self.data)
530530
:endfunction
531531
:echo mydict.len()

runtime/doc/help.txt

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

33
VIM - main help file
44
k
@@ -24,6 +24,7 @@ Get specific help: It is possible to go directly to whatever you want help
2424
Command-line editing c_ :help c_<Del>
2525
Vim command argument - :help -r
2626
Option ' :help 'textwidth'
27+
Regular expression / :help /[
2728
Search for help: Type ":help word", then hit CTRL-D to see matching
2829
help entries for "word".
2930
Or use ":helpgrep word". |:helpgrep|
@@ -204,6 +205,16 @@ Standard plugins ~
204205
|pi_zip.txt| Zip archive explorer
205206

206207
LOCAL ADDITIONS: *local-additions*
208+
|Mines.txt| The Mines Game Jul 30, 2009
209+
|Tabular.txt| Configurable, flexible, intuitive text aligning
210+
|cecutil.txt| DrChip's Utilities Jun 11, 2004
211+
|example.txt| Example for a locally added help file
212+
|matchit.txt| Extended "%" matching
213+
|pi_netrw.txt| For Vim version 7.4. Last change: 2014 Jul 09
214+
|synchk.txt| Syntax Checker May 15, 2013
215+
|test.txt| Testing the hélp cömmånd nôw
216+
|typecorr.txt| Plugin for correcting typing mistakes
217+
|helpp.txt| Dummy line to avoid an error message
207218

208219
------------------------------------------------------------------------------
209220
*bars* Bars example

runtime/doc/syntax.txt

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*syntax.txt* For Vim version 7.4. Last change: 2015 Mar 20
1+
*syntax.txt* For Vim version 7.4. Last change: 2015 Mar 29
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3322,6 +3322,32 @@ must not click outside of the pixel strings, but feel free to improve it.
33223322
It will look much better with a font in a quadratic cell size, e.g. for X: >
33233323
:set guifont=-*-clean-medium-r-*-*-8-*-*-*-*-80-*
33243324
3325+
3326+
YAML *yaml.vim* *ft-yaml-syntax*
3327+
3328+
*g:yaml_schema* *b:yaml_schema*
3329+
A YAML schema is a combination of a set of tags and a mechanism for resolving
3330+
non-specific tags. For user this means that YAML parser may, depending on
3331+
plain scalar contents, treat plain scalar (which can actually be only string
3332+
and nothing else) as a value of the other type: null, boolean, floating-point,
3333+
integer. `g:yaml_schema` option determines according to which schema values
3334+
will be highlighted specially. Supported schemas are
3335+
3336+
Schema Description ~
3337+
failsafe No additional highlighting.
3338+
json Supports JSON-style numbers, booleans and null.
3339+
core Supports more number, boolean and null styles.
3340+
pyyaml In addition to core schema supports highlighting timestamps,
3341+
but there are some differences in what is recognized as
3342+
numbers and many additional boolean values not present in core
3343+
schema.
3344+
3345+
Default schema is `core`.
3346+
3347+
Note that schemas are not actually limited to plain scalars, but this is the
3348+
only difference between schemas defined in YAML specification and the only
3349+
difference defined in the syntax file.
3350+
33253351
==============================================================================
33263352
5. Defining a syntax *:syn-define* *E410*
33273353

runtime/doc/tags

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -944,6 +944,7 @@ $VIMRUNTIME starting.txt /*$VIMRUNTIME*
944944
't_RI' term.txt /*'t_RI'*
945945
't_RV' term.txt /*'t_RV'*
946946
't_SI' term.txt /*'t_SI'*
947+
't_SR' term.txt /*'t_SR'*
947948
't_Sb' term.txt /*'t_Sb'*
948949
't_Sf' term.txt /*'t_Sf'*
949950
't_WP' term.txt /*'t_WP'*
@@ -8194,6 +8195,7 @@ t_KL term.txt /*t_KL*
81948195
t_RI term.txt /*t_RI*
81958196
t_RV term.txt /*t_RV*
81968197
t_SI term.txt /*t_SI*
8198+
t_SR term.txt /*t_SR*
81978199
t_Sb term.txt /*t_Sb*
81988200
t_Sf term.txt /*t_Sf*
81998201
t_WP term.txt /*t_WP*

runtime/doc/todo.txt

Lines changed: 39 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.4. Last change: 2015 Mar 20
1+
*todo.txt* For Vim version 7.4. Last change: 2015 Apr 12
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -68,19 +68,28 @@ Regexp problems:
6868
- this doesn't work: "syntax match ErrorMsg /.\%9l\%>20c\&\%<28c/". Leaving
6969
out the \& works. Seems any column check after \& fails.
7070

71+
PHP complete update, (complex, 2015 Apr 2)
72+
73+
PHP syntax file update. (Jason Woofenden, 2015 Mar 24)
74+
75+
Updated syntax files. (Charles Campbell, Apr 2)
76+
Two messages.
77+
7178
Check out neovim bug reports that apply to Vim:
7279
https://github.com/neovim/neovim/issues?q=label%3Abug-vim
7380
Specifically:
7481
https://github.com/neovim/neovim/commit/cf8e175cf54281bcad5e704308e92ebb3e6381d3
7582
https://github.com/neovim/neovim/commit/d7038127ca6b356ad33fdec08aa3b23ac6a817af
7683
https://github.com/neovim/neovim/commit/77ace65bdce379f2d9b13ee81ab3fc01951f92dc
84+
https://patch-diff.githubusercontent.com/raw/neovim/neovim/pull/2390.patch
7785
And also:
7886
https://github.com/neovim/neovim/pull/2157/commits
7987

8088
Still using freed memory after using setloclist(). (lcd, 2014 Jul 23)
8189
More info Jul 24. Not clear why.
8290

83-
Updated Irish translation. (Kevin Scannell, 2015 Mar 13)
91+
Patch to fix issues with locked and fixed variables.
92+
(Ola Dabrunz, 2015 Apr 11, update Apr 12)
8493

8594
Better .ico file for Windows. (Pat Suwalski, 2015 Feb 13)
8695
Waiting for response on remark from Edward Fox.
@@ -89,20 +98,36 @@ Patch to make getregtype() return the right size for non-linux systems.
8998
(Yasuhiro Matsumoto, 2014 Jul 8)
9099
Breaks test_eval. Inefficient, can we only compute y_width when needed?
91100

101+
Show Vim icon in Windows context menu. Issue 249. (Mario Weber, 2015 Apr 11)
102+
92103
Problem that a previous silent ":throw" causes a following try/catch not to
93104
work. (ZyX, 2013 Sep 28)
94105

95106
Problem using ":try" inside ":execute". (ZyX, 2013 Sep 15)
96107

108+
R indent files update. (Jakson Alves de Aquino, Mar 31)
109+
110+
Updated Python syntax file. (Dmitry Vasiliev, Mar 30)
111+
97112
":cd C:\Windows\System32\drivers\etc*" does not work, even though the
98113
directory exists. (Sergio Gallelli, 2013 Dec 29)
99114

115+
Using ":windo" to set options in all windows has the side effect that it
116+
changes the window layout and the current window. Make a variant that saves
117+
and restores. Use in the matchparen plugin.
118+
Perhaps we can use ":silent window"?
119+
120+
Patch to make Ruby 2.2 work. (Andrei Olsen)
121+
122+
Window drawn wrong with 'laststatus' zero and a command-line window.
123+
(Yclept Nemo, 2015 Apr 7)
124+
Patch by Christian, Apr 8.
125+
126+
Patch to make undo files not executable. (Mikael Berthe, 2015 Apr 5)
127+
100128
C indent: should recognize C11 raw strings. (Mark Lodato, 2015 Mar 1)
101129
Need to recognize R"string".
102130

103-
Suggested patch to MingW makefiles. (Michael Soyka, 2015 Mar 11)
104-
Feedback from others?
105-
106131
Patch for :tabmove not working as documented. (Hirohito Higashi, 2015 Mar 10)
107132
https://gist.github.com/h-east/ffabb0cdd589a5f9acd2
108133
Updated patch emailed. (Mar 17) Awaiting comments.
@@ -131,32 +156,20 @@ is Vi compatible, the completion fails. (Hirohito Higashi, 2015 Feb 19)
131156
Weird encryption problems on Windows. (Ben Fritz, 2015 Feb 13)
132157
Goes away when disabling the swap file. (might1, Feb 16)
133158

134-
Problem caused by patch 7.3.638: window->open does not update window
135-
correctly. Issue 91. With patch.
136-
137159
MS-Windows: Crash opening very long file name starting with "\\".
138160
(Christian Brock, 2012 Jun 29)
139161

140-
Patch to handle directories better for --remote. (xaizek, 2015 Mar 1)
141-
142-
Cursorline background color not mixed with character highlight.
143-
Patch by Yasuhiro Matsumoto, 2014 Dec 3.
144-
145162
The argument for "-S" is not taken literally, the ":so" command expands
146163
wildcards. Add a ":nowild" command modifier? (ZyX, 2015 March 4)
147164

148-
Problem using diff syntax with cp932 encoding. Idea from Yasuhiro Matsumoto,
149-
patch from Ken Takata (2014 Nov 6)
165+
Build with Python on Mac does not always use the right library.
166+
(Kazunobu Kuriyama, 2015 Mar 28)
150167

151168
ml_updatechunk() is slow when retrying for another encoding. (John Little,
152169
2014 Sep 11)
153170

154-
Patch to add counts to zr and zm. (Marcin Szamotulski, 2015 Jan 28)
155-
156-
Patch to add a different escape sequence for replace mode.
157-
(Omar Sandoval, 2014 Nov 30)
158-
159-
Patch on Issue 166, popup drawing with '$' in 'cpo'.
171+
Patch to add 'space' argument to 'listchars'. (Issue 350)
172+
Author: David Bürgin
160173

161174
When a session file is created and there are "nofile" buffers, these are not
162175
filled. Need to trigger BufReadCmd autocommands. Also handle deleting the
@@ -174,15 +187,6 @@ Crash when using R syntax. (Jakson Alves de Aquino, 2015 Jan 30)
174187
Memory freed by ":syn clear" but still referenced, syntax items referenced
175188
from two windows? Stopped happening (Feb 5).
176189

177-
Window height computed incorrectly when Vim is minimized.
178-
Patch to fix this. (Ingo Karkat, 2014 Dec 19)
179-
180-
Patch to fix CTRL-W handling in Insert mode for multi-byte characters.
181-
(Yasuhiro Matsumoto, 2015 Jan 29, update with test)
182-
183-
Patch to allow values greater than 255 for ctermfg/ctermbg on Windows.
184-
(Yasuhiro Matsumoto, 2014 Dec 5)
185-
186190
Patch for an extra argument to matchadd() for conceal. (Christian Brabandt,
187191
2015 Feb 17, update Feb 19)
188192

@@ -409,6 +413,9 @@ highlight group. Add a "\zs" after it?
409413

410414
Go through more coverity reports.
411415

416+
The undo file name can get too long. (Issue 346)
417+
For the path use a hash instead of dir%dir%dir%name hash%name.
418+
412419
Patch to add ":undorecover", get as much text out of the undo file as
413420
possible. (Christian Brabandt, 2014 Mar 12, update Aug 22)
414421

@@ -625,7 +632,7 @@ line are opened again, but from the wrong directory. Apply 'autochdir' only
625632
after starting up?
626633

627634
Patch to add ":ldo" and ":cdo", execute commands over quickfix list and
628-
location list. (Yegappan Lakshmanan, 2013 Jun 2)
635+
location list. (Yegappan Lakshmanan, 2013 Jun 2, update 2015 Mar 21)
629636

630637
8 "stl" and "stlnc" in 'fillchars' don't work for multi-byte characters.
631638
Patch by Christian Wellenbrock, 2013 Jul 5.
@@ -1429,6 +1436,7 @@ Kondakoff, 2009 May 13)
14291436

14301437
Problem with 'langmap' being used on the rhs of a mapping. (Nikolai Weibull,
14311438
2008 May 14)
1439+
Possibly related problem: Alexey Muranov, 2015 Apr 2
14321440

14331441
Problem with CTRL-F. (Charles Campbell, 2008 March 21)
14341442
Only happens with "gvim -geometry "160x26+4+27" -u NONE -U NONE prop.c".

runtime/doc/usr_02.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_02.txt* For Vim version 7.4. Last change: 2010 Jul 20
1+
*usr_02.txt* For Vim version 7.4. Last change: 2015 Apr 12
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -527,9 +527,11 @@ Summary: *help-summary* >
527527
:help subject()
528528
< Function "subject". >
529529
:help -subject
530-
< Command-line option "-subject". >
530+
< Command-line argument "-subject". >
531531
:help +subject
532532
< Compile-time feature "+subject". >
533+
:help /*
534+
< Regular expression item "*" >
533535
:help EventName
534536
< Autocommand event "EventName". >
535537
:help digraphs.txt

runtime/filetype.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim support file to detect file types
22
"
33
" Maintainer: Bram Moolenaar <[email protected]>
4-
" Last Change: 2015 Mar 13
4+
" Last Change: 2015 Apr 06
55

66
" Listen very carefully, I will say this only once
77
if exists("did_load_filetypes")
@@ -1295,7 +1295,7 @@ au BufNewFile,BufRead *.mush setf mush
12951295
au BufNewFile,BufRead Mutt{ng,}rc setf muttrc
12961296

12971297
" Nano
1298-
au BufNewFile,BufRead */etc/nanorc,.nanorc setf nanorc
1298+
au BufNewFile,BufRead */etc/nanorc,*.nanorc setf nanorc
12991299

13001300
" Nastran input/DMAP
13011301
"au BufNewFile,BufRead *.dat setf nastran

runtime/ftplugin/j.vim

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
" Language: J
33
" Maintainer: David Bürgin <[email protected]>
44
" URL: https://github.com/glts/vim-j
5-
" Last Change: 2015-01-11
5+
" Last Change: 2015-03-27
66

77
if exists('b:did_ftplugin')
88
finish
@@ -16,12 +16,9 @@ setlocal iskeyword=48-57,A-Z,_,a-z
1616
setlocal comments=:NB.
1717
setlocal commentstring=NB.\ %s
1818
setlocal formatoptions-=t
19-
setlocal shiftwidth=2
20-
setlocal softtabstop=2
21-
setlocal expandtab
2219
setlocal matchpairs=(:)
2320

24-
let b:undo_ftplugin = 'setlocal matchpairs< expandtab< softtabstop< shiftwidth< formatoptions< commentstring< comments< iskeyword<'
21+
let b:undo_ftplugin = 'setlocal matchpairs< formatoptions< commentstring< comments< iskeyword<'
2522

2623
" Section movement with ]] ][ [[ []. The start/end patterns below are amended
2724
" inside the function in order to avoid matching on the current cursor line.

0 commit comments

Comments
 (0)