Skip to content

Commit 6c39767

Browse files
committed
Updated runtime files.
1 parent 2aae64e commit 6c39767

File tree

7 files changed

+42
-55
lines changed

7 files changed

+42
-55
lines changed

runtime/doc/change.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*change.txt* For Vim version 7.4. Last change: 2013 Aug 25
1+
*change.txt* For Vim version 7.4. Last change: 2013 Nov 05
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -475,8 +475,8 @@ If the 'shiftround' option is on, the indent is rounded to a multiple of
475475
'shiftwidth'.
476476

477477
If the 'smartindent' option is on, or 'cindent' is on and 'cinkeys' contains
478-
'#', shift right does not affect lines starting with '#' (these are supposed
479-
to be C preprocessor lines that must stay in column 1).
478+
'#' with a zero value, shift right does not affect lines starting with '#'
479+
(these are supposed to be C preprocessor lines that must stay in column 1).
480480

481481
When the 'expandtab' option is off (this is the default) Vim uses <Tab>s as
482482
much as possible to make the indent. You can use ">><<" to replace an indent

runtime/doc/eval.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 7.4. Last change: 2013 Nov 02
1+
*eval.txt* For Vim version 7.4. Last change: 2013 Nov 08
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -4235,6 +4235,9 @@ matchadd({group}, {pattern}[, {priority}[, {id}]])
42354235
"match"). It will be highlighted with {group}. Returns an
42364236
identification number (ID), which can be used to delete the
42374237
match using |matchdelete()|.
4238+
Matching is case sensitive and magic, unless case sensitivity
4239+
or magicness are explicitly overridden in {pattern}. The
4240+
'magic', 'smartcase' and 'ignorecase' options are not used.
42384241

42394242
The optional {priority} argument assigns a priority to the
42404243
match. A match with a high priority will have its

runtime/doc/indent.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*indent.txt* For Vim version 7.4. Last change: 2013 Aug 03
1+
*indent.txt* For Vim version 7.4. Last change: 2013 Nov 05
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim version 7.4. Last change: 2013 Aug 22
1+
*options.txt* For Vim version 7.4. Last change: 2013 Nov 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

runtime/doc/tags

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4902,6 +4902,7 @@ builtin_terms term.txt /*builtin_terms*
49024902
byte-count editing.txt /*byte-count*
49034903
byte2line() eval.txt /*byte2line()*
49044904
byteidx() eval.txt /*byteidx()*
4905+
byteidxcomp() eval.txt /*byteidxcomp()*
49054906
bzip2 pi_gzip.txt /*bzip2*
49064907
c change.txt /*c*
49074908
c.vim syntax.txt /*c.vim*
@@ -6360,6 +6361,7 @@ hl-WarningMsg syntax.txt /*hl-WarningMsg*
63606361
hl-WildMenu syntax.txt /*hl-WildMenu*
63616362
hlID() eval.txt /*hlID()*
63626363
hlexists() eval.txt /*hlexists()*
6364+
hlsearch-variable eval.txt /*hlsearch-variable*
63636365
holy-grail index.txt /*holy-grail*
63646366
home intro.txt /*home*
63656367
home-replace editing.txt /*home-replace*
@@ -8366,6 +8368,7 @@ v:folddashes eval.txt /*v:folddashes*
83668368
v:foldend eval.txt /*v:foldend*
83678369
v:foldlevel eval.txt /*v:foldlevel*
83688370
v:foldstart eval.txt /*v:foldstart*
8371+
v:hlsearch eval.txt /*v:hlsearch*
83698372
v:insertmode eval.txt /*v:insertmode*
83708373
v:key eval.txt /*v:key*
83718374
v:lang eval.txt /*v:lang*

runtime/doc/todo.txt

Lines changed: 7 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.4. Last change: 2013 Nov 03
1+
*todo.txt* For Vim version 7.4. Last change: 2013 Nov 09
22

33

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

37-
Revert patch 7.4.056? Do it differently?
37+
Patch From Lech Lorens doesn't quite work:
38+
Problem: When using ":'<,'>del" errors may be given for the visual line
39+
numbers being out of range.
40+
Solution: Reset Visual mode in ":del". (Lech Lorens)
41+
Files: src/ex_docmd.c
42+
3843

3944
Using \1 in pattern goes one line too far. (Bohr Shaw, 2013 Sep 5)
4045
Column is OK. "/\v(^.+\n)\1/e" (John Little, Sep 5)
@@ -58,59 +63,23 @@ Problem using ":try" inside ":execute". (ZyX, 2013 Sep 15)
5863

5964
Issue 164: freeze on regexp search.
6065

61-
Patch to Fix Python: DictionaryContains return -1 on error. (ZyX, 2013 Nov 1)
62-
63-
Patch to fix that inserting CR when replacing a Visual block doesn't cause a
64-
line break. (Christian Brabandt, 2013 Oct 19)
65-
Check: does CTRL-V CR insert a literal CR? New patch Oct 21
66-
With test Oct 22.
67-
68-
When recording the character typed at the hit-enter prompt is recorded twice.
69-
(Urtica Dioica) Patch by Christian Brabandt, 2013 Oct 8.
70-
7166
Update for Clojure ftplugin. (Sung Pae). Await discussion about formatting in
7267
ftplugins.
7368

7469
Python: ":py raw_input('prompt')" doesn't work. (Manu Hack)
7570

76-
Patch to avoid problem with colon in file name. (Yasuhiro Matsumoto, 2013 Sep
77-
5) Only copy file name when needed: Sep 9.
78-
79-
After inserting comment leader, CTRL-\ CTRL-O does move the cursor.
80-
(Wiktor Ruben, 2013 Oct 7)
81-
Patch by Christian Brabandt.
82-
8371
Patch to support slices in Python vim.List. (ZyX, 2013 Oct 20)
8472

8573
Patch to support iterator on Python vim.options. (ZyX, 2013 Nov 2)
8674

87-
Patch to avoid "-no-cpp-precomp" on Mac. (Misty De Meo, demeo, 2013 Oct 19)
88-
8975
Patch to make Dictionary.update() work without arguments.
9076
(ZyX, 2013 Oct 19)
9177

92-
Patch to make #N in 'cino' stop not indenting #lines. (Christian Brabandt,
93-
2013 Sep 25)
94-
9578
Patch for Cobol ftplugin. (ZyX, 2013 Oct 20)
9679
Await response from maintainer.
9780

98-
Can 'undolevels' be a buffer-local option? Helps for making big changes in
99-
one file only, set 'ul' to -1 only for that buffer.
100-
Patch by Christian Brabandt, 2010 Dec 17. Needs test.
101-
10281
Include systemverilog file? Two votes yes.
10382

104-
Wrapping around end of file does not work for "." after "cgn". (Dimitar
105-
Dimitrov)
106-
Patch by Christian Brabandt, 2013 Aug 22
107-
108-
Clang error for integer overflow. (Dominique Pelle, 2013 Sep 21)
109-
110-
Patch to add v:hlsearch. (ZyX, 2013 Sep 22)
111-
112-
Patch to fix E315 error. (Lech Lorens, 2013 Oct 26)
113-
11483
Patch to add :keeppatterns, don't put used search patterns in history.
11584
(Christian Brabandt, 2013 Oct 18)
11685

runtime/syntax/svn.vim

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
" Language: Subversion (svn) commit file
33
" Maintainer: Dmitry Vasiliev <dima at hlabs dot org>
44
" URL: https://github.com/hdima/vim-scripts/blob/master/syntax/svn.vim
5-
" Last Change: 2012-07-21
5+
" Last Change: 2013-11-08
66
" Filenames: svn-commit*.tmp
7-
" Version: 1.9
7+
" Version: 1.10
88

99
" Contributors:
10-
" Stefano Zacchiroli
10+
"
11+
" List of the contributors in alphabetical order:
12+
"
1113
" A. S. Budden
12-
" Myk Taylor
1314
" Ingo Karkat
15+
" Myk Taylor
16+
" Stefano Zacchiroli
1417

1518
" For version 5.x: Clear all syntax items.
1619
" For version 6.x: Quit when a syntax file was already loaded.
@@ -20,14 +23,19 @@ elseif exists("b:current_syntax")
2023
finish
2124
endif
2225

23-
syn region svnText start="\%^" end="^--.*--$"me=s-1 contains=@Spell
26+
syn spell toplevel
27+
28+
syn match svnFirstLine "\%^.*" nextgroup=svnRegion,svnBlank skipnl
29+
syn match svnSummary "^.\{0,50\}" contained containedin=svnFirstLine nextgroup=svnOverflow contains=@Spell
30+
syn match svnOverflow ".*" contained contains=@Spell
31+
syn match svnBlank "^.*" contained contains=@Spell
2432

25-
syn region svnRegion start="^--.*--$" end="\%$" contains=ALL
26-
syn match svnRemoved "^D .*$" contained
27-
syn match svnRenamed "^R[ M][ U][ +] .*$" contained
28-
syn match svnAdded "^A[ M][ U][ +] .*$" contained
29-
syn match svnModified "^M[ M][ U] .*$" contained
30-
syn match svnProperty "^_M[ U] .*$" contained
33+
syn region svnRegion end="\%$" matchgroup=svnDelimiter start="^--.*--$" contains=svnRemoved,svnRenamed,svnAdded,svnModified,svnProperty,@NoSpell
34+
syn match svnRemoved "^D .*$" contained contains=@NoSpell
35+
syn match svnRenamed "^R[ M][ U][ +] .*$" contained contains=@NoSpell
36+
syn match svnAdded "^A[ M][ U][ +] .*$" contained contains=@NoSpell
37+
syn match svnModified "^M[ M][ U] .*$" contained contains=@NoSpell
38+
syn match svnProperty "^_M[ U] .*$" contained contains=@NoSpell
3139

3240
" Synchronization.
3341
syn sync clear
@@ -44,7 +52,11 @@ if version >= 508 || !exists("did_svn_syn_inits")
4452
command -nargs=+ HiLink hi def link <args>
4553
endif
4654

55+
HiLink svnSummary Keyword
56+
HiLink svnBlank Error
57+
4758
HiLink svnRegion Comment
59+
HiLink svnDelimiter NonText
4860
HiLink svnRemoved Constant
4961
HiLink svnAdded Identifier
5062
HiLink svnModified Special

0 commit comments

Comments
 (0)