vim-patch:13d5aee

Update runtime files

13d5aeef56

Ignored changes to
* doc/develop.txt, since they were all in the "Coding Style"
  section, which is completely different between Vim and Neovim.
* doc/tags, doc/todo.txt
* syntax/vim.vim, generated at build time
This commit is contained in:
James McCoy
2016-06-04 06:52:51 -04:00
parent 999590b313
commit 7634764e4c
10 changed files with 726 additions and 403 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
*develop.txt* For Vim version 7.4. Last change: 2014 Mar 27 *develop.txt* For Vim version 7.4. Last change: 2016 Jan 19
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar

View File

@@ -1,4 +1,4 @@
*eval.txt* For Vim version 7.4. Last change: 2016 Jan 16 *eval.txt* For Vim version 7.4. Last change: 2016 Jan 21
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@@ -100,6 +100,9 @@ When mixing Number and Float the Number is converted to Float. Otherwise
there is no automatic conversion of Float. You can use str2float() for String there is no automatic conversion of Float. You can use str2float() for String
to Float, printf() for Float to String and float2nr() for Float to Number. to Float, printf() for Float to String and float2nr() for Float to Number.
*E891* *E892* *E893* *E894*
When expecting a Float a Number can also be used, but nothing else.
*E706* *sticky-type-checking* *E706* *sticky-type-checking*
You will get an error if you try to change the type of a variable. You need You will get an error if you try to change the type of a variable. You need
to |:unlet| it first to avoid this error. String and Number are considered to |:unlet| it first to avoid this error. String and Number are considered
@@ -3665,7 +3668,8 @@ getftype({fname}) *getftype()*
getftype("/home") getftype("/home")
< Note that a type such as "link" will only be returned on < Note that a type such as "link" will only be returned on
systems that support it. On some systems only "dir" and systems that support it. On some systems only "dir" and
"file" are returned. "file" are returned. On MS-Windows a symbolic link to a
directory returns "dir" instead of "link".
*getline()* *getline()*
getline({lnum} [, {end}]) getline({lnum} [, {end}])
@@ -6207,6 +6211,9 @@ sort({list} [, {func} [, {dict}]]) *sort()* *E702*
sorted numerical. This is like 'n' but a string containing sorted numerical. This is like 'n' but a string containing
digits will be used as the number they represent. digits will be used as the number they represent.
When {func} is given and it is 'f' then all items will be
sorted numerical. All values must be a Number or a Float.
When {func} is a |Funcref| or a function name, this function When {func} is a |Funcref| or a function name, this function
is called to compare items. The function is invoked with two is called to compare items. The function is invoked with two
items as argument and must return zero if they are equal, 1 or items as argument and must return zero if they are equal, 1 or

View File

@@ -1,4 +1,4 @@
*index.txt* For Vim version 7.4. Last change: 2016 Jan 10 *index.txt* For Vim version 7.4. Last change: 2016 Jan 19
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1515,14 +1515,14 @@ tag command action ~
|:tabdo| :tabdo execute command in each tab page |:tabdo| :tabdo execute command in each tab page
|:tabedit| :tabe[dit] edit a file in a new tab page |:tabedit| :tabe[dit] edit a file in a new tab page
|:tabfind| :tabf[ind] find file in 'path', edit it in a new tab page |:tabfind| :tabf[ind] find file in 'path', edit it in a new tab page
|:tabfirst| :tabfir[st] got to first tab page |:tabfirst| :tabfir[st] go to first tab page
|:tablast| :tabl[ast] got to last tab page |:tablast| :tabl[ast] go to last tab page
|:tabmove| :tabm[ove] move tab page to other position |:tabmove| :tabm[ove] move tab page to other position
|:tabnew| :tabnew edit a file in a new tab page |:tabnew| :tabnew edit a file in a new tab page
|:tabnext| :tabn[ext] go to next tab page |:tabnext| :tabn[ext] go to next tab page
|:tabonly| :tabo[nly] close all tab pages except the current one |:tabonly| :tabo[nly] close all tab pages except the current one
|:tabprevious| :tabp[revious] go to previous tab page |:tabprevious| :tabp[revious] go to previous tab page
|:tabrewind| :tabr[ewind] got to first tab page |:tabrewind| :tabr[ewind] go to first tab page
|:tabs| :tabs list the tab pages and what they contain |:tabs| :tabs list the tab pages and what they contain
|:tab| :tab create new tab when opening new window |:tab| :tab create new tab when opening new window
|:tag| :ta[g] jump to tag |:tag| :ta[g] jump to tag

View File

@@ -1,4 +1,4 @@
*quickfix.txt* For Vim version 7.4. Last change: 2015 Sep 08 *quickfix.txt* For Vim version 7.4. Last change: 2016 Jan 21
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar

View File

@@ -1,8 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: DCL (Digital Command Language - vms) " Language: DCL (Digital Command Language - vms)
" Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz> " Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz>
" Last Change: Oct 23, 2014 " Last Change: Jan 20, 2016
" Version: 7 " Version: 8
" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_DCL " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_DCL
" For version 5.x: Clear all syntax items " For version 5.x: Clear all syntax items
@@ -13,10 +13,10 @@ elseif exists("b:current_syntax")
finish finish
endif endif
if version < 600 if !has("patch-7.4.1141")
set iskeyword=$,@,48-57,_
else
setlocal iskeyword=$,@,48-57,_ setlocal iskeyword=$,@,48-57,_
else
syn iskeyword $,@,48-57,_
endif endif
syn case ignore syn case ignore

View File

@@ -1,8 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: Lisp " Language: Lisp
" Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz> " Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz>
" Last Change: Oct 06, 2014 " Last Change: Jan 20, 2016
" Version: 23 " Version: 24
" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_LISP " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_LISP
" "
" Thanks to F Xavier Noria for a list of 978 Common Lisp symbols taken from HyperSpec " Thanks to F Xavier Noria for a list of 978 Common Lisp symbols taken from HyperSpec
@@ -16,8 +16,10 @@ endif
if exists("g:lisp_isk") if exists("g:lisp_isk")
exe "setl isk=".g:lisp_isk exe "setl isk=".g:lisp_isk
else elseif !has("patch-7.4.1141")
setl isk=38,42,43,45,47-58,60-62,64-90,97-122,_ setl isk=38,42,43,45,47-58,60-62,64-90,97-122,_
else
syn iskeyword 38,42,43,45,47-58,60-62,64-90,97-122,_
endif endif
if exists("g:lispsyntax_ignorecase") || exists("g:lispsyntax_clisp") if exists("g:lispsyntax_ignorecase") || exists("g:lispsyntax_clisp")

View File

@@ -1,8 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: Maple V (based on release 4) " Language: Maple V (based on release 4)
" Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz> " Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz>
" Last Change: Oct 23, 2014 " Last Change: Jan 20, 2016
" Version: 11 " Version: 12
" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_MAPLE " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_MAPLE
" "
" Package Function Selection: {{{1 " Package Function Selection: {{{1
@@ -30,10 +30,10 @@ elseif exists("b:current_syntax")
endif endif
" Iskeyword Effects: {{{1 " Iskeyword Effects: {{{1
if version < 600 if !has("patch-7.4.1141")
set iskeyword=$,48-57,_,a-z,@-Z setl isk=$,48-57,_,a-z,@-Z
else else
setlocal iskeyword=$,48-57,_,a-z,@-Z syn iskeyword $,48-57,_,a-z,@-Z
endif endif
" Package Selection: {{{1 " Package Selection: {{{1

View File

@@ -3,6 +3,7 @@
" Maintainer: Yakov Lerner <iler.ml@gmail.com> " Maintainer: Yakov Lerner <iler.ml@gmail.com>
" Latest Revision: 2008-06-29 " Latest Revision: 2008-06-29
" Changes: 2008-06-29 support for RFC3339 tuimestamps James Vega " Changes: 2008-06-29 support for RFC3339 tuimestamps James Vega
" 2016 Jan 19: messagesDate changed by Bram
if exists("b:current_syntax") if exists("b:current_syntax")
finish finish
@@ -13,7 +14,7 @@ set cpo&vim
syn match messagesBegin display '^' nextgroup=messagesDate,messagesDateRFC3339 syn match messagesBegin display '^' nextgroup=messagesDate,messagesDateRFC3339
syn match messagesDate contained display '\a\a\a [ 0-9]\d *' syn match messagesDate contained display '[[:lower:][:upper:]][[:lower:][:upper:]][[:lower:][:upper:]] [ 0-9]\d *'
\ nextgroup=messagesHour \ nextgroup=messagesHour
syn match messagesHour contained display '\d\d:\d\d:\d\d\s*' syn match messagesHour contained display '\d\d:\d\d:\d\d\s*'

View File

@@ -1,8 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: TeX " Language: TeX
" Maintainer: Charles E. Campbell <NdrchipO@ScampbellPfamily.AbizM> " Maintainer: Charles E. Campbell <NdrchipO@ScampbellPfamily.AbizM>
" Last Change: Oct 20, 2015 " Last Change: Jan 20, 2016
" Version: 90 " Version: 91
" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_TEX " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_TEX
" "
" Notes: {{{1 " Notes: {{{1
@@ -129,8 +129,10 @@ endif
" g:tex_isk " g:tex_isk
if exists("g:tex_isk") if exists("g:tex_isk")
exe "setlocal isk=".g:tex_isk exe "setlocal isk=".g:tex_isk
elseif !has("patch-7.4.1141")
setl isk=48-57,a-z,A-Z,192-255
else else
setlocal isk=48-57,a-z,A-Z,192-255 syn iskeyword 48-57,a-z,A-Z,192-255
endif endif
if b:tex_stylish if b:tex_stylish
setlocal isk+=@-@ setlocal isk+=@-@