Skip to content

Commit 0ac18cc

Browse files
brammooldouglaskayama
authored andcommitted
Updated runtime files.
1 parent 8db654e commit 0ac18cc

4 files changed

Lines changed: 8 additions & 24 deletions

File tree

runtime/doc/repeat.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*repeat.txt* For Vim version 7.4. Last change: 2015 Jan 07
1+
*repeat.txt* For Vim version 7.4. Last change: 2015 Apr 13
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -600,6 +600,7 @@ For example, to profile the one_script.vim script file: >
600600
601601
:prof[ile] start {fname} *:prof* *:profile* *E750*
602602
Start profiling, write the output in {fname} upon exit.
603+
"~/" and environment variables in {fname} will be expanded.
603604
If {fname} already exists it will be silently overwritten.
604605
The variable |v:profiling| is set to one.
605606

runtime/doc/todo.txt

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.4. Last change: 2015 Apr 13
1+
*todo.txt* For Vim version 7.4. Last change: 2015 Apr 15
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -68,22 +68,9 @@ 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-
Check out neovim bug reports that apply to Vim:
72-
https://github.com/neovim/neovim/issues?q=label%3Abug-vim
73-
Specifically:
74-
https://github.com/neovim/neovim/commit/cf8e175cf54281bcad5e704308e92ebb3e6381d3
75-
https://github.com/neovim/neovim/commit/d7038127ca6b356ad33fdec08aa3b23ac6a817af
76-
https://github.com/neovim/neovim/commit/77ace65bdce379f2d9b13ee81ab3fc01951f92dc
77-
https://patch-diff.githubusercontent.com/raw/neovim/neovim/pull/2390.patch
78-
And also:
79-
https://github.com/neovim/neovim/pull/2157/commits
80-
8171
Still using freed memory after using setloclist(). (lcd, 2014 Jul 23)
8272
More info Jul 24. Not clear why.
8373

84-
Patch to fix issues with locked and fixed variables.
85-
(Ola Dabrunz, 2015 Apr 11, update Apr 12)
86-
8774
Better .ico file for Windows. (Pat Suwalski, 2015 Feb 13)
8875
Waiting for response on remark from Edward Fox.
8976

@@ -368,7 +355,7 @@ Editing an ascii file as ucs-2 or ucs-4 causes display errors.
368355
":Next 1 some-arg" does not complain about trailing argument. Also for
369356
various other commands. (ZyX, 2014 Mar 30)
370357

371-
patch to skip sort if no line matches the expression.
358+
Patch to skip sort if no line matches the expression.
372359
(Christian Brabandt, 2014 Jun 25)
373360

374361
Patch to add sortuniq(). (Cade Forester, 2014 Mar 19)
@@ -459,9 +446,6 @@ When evaluating expression in backticks, autoload doesn't work.
459446
Using <nr>ifoobar<esc> can slow down Vim. Patch by Christian Brabandt, 2013
460447
Dec 13.
461448

462-
Fold can't be opened after ":move". (Ein Brown)
463-
Patch from Christian Brabandt doesn't fix it completely.
464-
465449
Patch from Christian Brabandt to preserve upper case marks when wiping out a
466450
buffer. (2013 Dec 9)
467451

runtime/syntax/groovy.vim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
" Maintainer: Tobias Rapp <[email protected]>
55
" Version: 0.1.13
66
" URL: http://www.vim.org/scripts/script.php?script_id=945
7-
" Last Change: 2013 Apr 24
7+
" Last Change: 2015 Apr 13
88

99
" THE ORIGINAL AUTHOR'S NOTES:
1010
"
@@ -220,7 +220,6 @@ syn region groovyComment start="/\*" end="\*/" contains=@groovyCommen
220220
syn match groovyCommentStar contained "^\s*\*[^/]"me=e-1
221221
syn match groovyCommentStar contained "^\s*\*$"
222222
syn match groovyLineComment "//.*" contains=@groovyCommentSpecial2,groovyTodo,@Spell
223-
syn match groovyLineComment "#.*" contains=@groovyCommentSpecial2,groovyTodo,@Spell
224223
GroovyHiLink groovyCommentString groovyString
225224
GroovyHiLink groovyComment2String groovyString
226225
GroovyHiLink groovyCommentCharacter groovyCharacter

runtime/syntax/sh.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
" Language: shell (sh) Korn shell (ksh) bash (sh)
33
" Maintainer: Charles E. Campbell <[email protected]>
44
" Previous Maintainer: Lennart Schultz <[email protected]>
5-
" Last Change: Apr 02, 2015
6-
" Version: 135
5+
" Last Change: Apr 10, 2015
6+
" Version: 136
77
" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_SH
88
" For options and settings, please use: :help ft-sh-syntax
99
" This file includes many ideas from ?ric Brunet ([email protected])
@@ -127,7 +127,7 @@ syn cluster shHereList contains=shBeginHere,shHerePayload
127127
syn cluster shHereListDQ contains=shBeginHere,@shDblQuoteList,shHerePayload
128128
syn cluster shIdList contains=shCommandSub,shWrapLineOperator,shSetOption,shDeref,shDerefSimple,shRedir,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shExpr,shCtrlSeq,shStringSpecial,shAtExpr
129129
syn cluster shIfList contains=@shLoopList,shDblBrace,shDblParen,shFunctionKey,shFunctionOne,shFunctionTwo
130-
syn cluster shLoopList contains=@shCaseLis,t@shErrorList,shCaseEsac,shConditional,shDblBrace,shExpr,shFor,shForPP,shIf,shOption,shSet,shTest,shTestOpr
130+
syn cluster shLoopList contains=@shCaseList,@shErrorList,shCaseEsac,shConditional,shDblBrace,shExpr,shFor,shForPP,shIf,shOption,shSet,shTest,shTestOpr
131131
syn cluster shSubShList contains=@shCommandSubList,shCaseEsac,shColon,shCommandSub,shComment,shDo,shEcho,shExpr,shFor,shIf,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq,shOperator
132132
syn cluster shTestList contains=shCharClass,shCommandSub,shComment,shCtrlSeq,shDeref,shDerefSimple,shDoubleQuote,shExDoubleQuote,shExpr,shExSingleQuote,shNumber,shOperator,shSingleQuote,shTest,shTestOpr
133133
" Echo: {{{1

0 commit comments

Comments
 (0)