Skip to content

Commit 541f92d

Browse files
committed
Updated runtime files.
1 parent c7a0d32 commit 541f92d

10 files changed

Lines changed: 556 additions & 536 deletions

File tree

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 Apr 30
1+
*eval.txt* For Vim version 7.4. Last change: 2015 Jun 19
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1021,7 +1021,7 @@ A string constant accepts these special characters:
10211021
\X. same as \x.
10221022
\u.... character specified with up to 4 hex numbers, stored according to the
10231023
current value of 'encoding' (e.g., "\u02a4")
1024-
\U.... same as \u....
1024+
\U.... same as \u but allows up to 8 hex numbers.
10251025
\b backspace <BS>
10261026
\e escape <Esc>
10271027
\f formfeed <FF>

runtime/doc/todo.txt

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.4. Last change: 2015 Jun 09
1+
*todo.txt* For Vim version 7.4. Last change: 2015 Jun 19
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -78,32 +78,16 @@ Patch to make getregtype() return the right size for non-linux systems.
7878
(Yasuhiro Matsumoto, 2014 Jul 8)
7979
Breaks test_eval. Inefficient, can we only compute y_width when needed?
8080

81-
Patch to fix test (Christian, 2015 May 5)
82-
83-
Patch to fix ml_get error. (Yukihiro Nakadaira, 2015 May 22)
84-
85-
Patch for neovim. (Christian, 2015 May 5)
86-
8781
Problem that a previous silent ":throw" causes a following try/catch not to
8882
work. (ZyX, 2013 Sep 28)
8983

9084
Problem using ":try" inside ":execute". (ZyX, 2013 Sep 15)
9185

9286
Regression for v_b_A. (Ingo Karkat, 2015 May 18)
9387

94-
Patch for memory access problem. (Dominique Pelle, 2015 May 5)
95-
96-
R indent files update. (Jakson Alves de Aquino, Mar 31)
97-
98-
Updated Python syntax file. (Dmitry Vasiliev, Mar 30)
99-
Discucussion about what version to use, Petkovic, 2015 May 19.
100-
Patch for existing syntax file, Zvezdan Petkovic, 2015 May 17)
101-
10288
":cd C:\Windows\System32\drivers\etc*" does not work, even though the
10389
directory exists. (Sergio Gallelli, 2013 Dec 29)
10490

105-
Patch on issue 361 by James McCoy.
106-
10791
Patch on issue 365.
10892

10993
Patch to add "vsplit" to 'switchbuf'. (Brook Hong, 2015 Jun 4)
@@ -121,6 +105,10 @@ keymap for Russian typewriter layout. (Danwerspb, 2015 May 15)
121105
Patch for man.vim. (SungHyun Nam, 2015 May 20)
122106
Doesn't work completely (Dominique Orban)
123107

108+
The entries added by matchaddpos() are returned by getmatches() but can't be
109+
set with setmatches(). (lcd47, 2014 Jun 29)
110+
Patch by Christian, 2015 Jun 16.
111+
124112
Invalid memory access in regexp.c. (Dominique Pelle, 2015 May 23)
125113

126114
Using ":windo" to set options in all windows has the side effect that it
@@ -142,6 +130,7 @@ Patch for appending in Visual mode with 'linebreak' set.
142130

143131
Patch to make CTRL-A in Visual mode increment all Visually selected numbers.
144132
Same for decrement with CTRL-X. (Christian Brabandt, 2015 Jun 8)
133+
Update Jun 9.
145134

146135
C indent: should recognize C11 raw strings. (Mark Lodato, 2015 Mar 1)
147136
Need to recognize R"string" for 'cindent'.
@@ -154,6 +143,11 @@ Patch to detect background terminal color in xterm. (Lubomir Rintel, 2015 Jun
154143
Patch to fix that in command-line window first character is erased
155144
when conceallevel is set. (Hirohito Higashi, 2015 May 12)
156145

146+
Patch to make Lua 5.3 and later work. (Felix Schnizlein, 2015 Jun 11)
147+
148+
Patch to make \U in a string accept up to 8 characters. (Christian Brabandt,
149+
2015 Jun 12) Does this break existing scripts?
150+
157151
Crash when changing the 'tags' option from a remote command.
158152
(Benjamin Fritz, 2015 Mar 18, stack trace Mar 20)
159153

@@ -176,6 +170,13 @@ specifically? First try with the parens, then without.
176170

177171
Patch to force redraw after ":syn spell" command. (Christian, 2015 May 8)
178172

173+
Patch for multi-byte characters in langmap and applying a mapping on them.
174+
(Christian Brabandt, 2015 Jun 12)
175+
Is this the right solution?
176+
177+
Patch for langmap not working properly with mapping in Command-line mode.
178+
Issue 376.
179+
179180
Value returned by virtcol() changes depending on how lines wrap. This is
180181
inconsistent with the documentation.
181182

@@ -184,6 +185,7 @@ Better greek spell checking. Issue 299.
184185
Patch to add 'completeselect' option. Specifies how to select a candidate in
185186
insert completion. (Shougo, 2013 May 29)
186187
Update to add to existing 'completeopt'. 2013 May 30
188+
Updated update: Shougo 2015 Jun 12
187189

188190
When complete() first argument is before where insert started and 'backspace'
189191
is Vi compatible, the completion fails. (Hirohito Higashi, 2015 Feb 19)
@@ -336,9 +338,6 @@ Patch to add argument to :cquit. (Thinca, 2014 Oct 12)
336338

337339
No error for missing endwhile. (ZyX, 2014 Mar 20)
338340

339-
The entries added by matchaddpos() are returned by getmatches() but can't be
340-
set with setmatches(). (lcd47, 2014 Jun 29)
341-
342341
Patch to make extend() fail early when it might fail at some point.
343342
(Olaf Dabrunz, 2015 May 2) Makes extend() slower, do we still want it?
344343
Perhaps only the checks that can be done without looping over the dict or

runtime/indent/html.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
" Header: "{{{
33
" Maintainer: Bram Moolenaar
44
" Original Author: Andy Wokula <[email protected]>
5-
" Last Change: 2015 Jan 11
5+
" Last Change: 2015 Jun 12
66
" Version: 1.0
77
" Description: HTML indent script with cached state for faster indenting on a
88
" range of lines.
@@ -94,7 +94,7 @@ func! HtmlIndent_CheckUserSettings()
9494
let autotags = g:html_indent_autotags
9595
endif
9696
let b:hi_removed_tags = {}
97-
if autotags
97+
if len(autotags) > 0
9898
call s:RemoveITags(b:hi_removed_tags, split(autotags, ","))
9999
endif
100100

0 commit comments

Comments
 (0)