diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-02 21:27:47 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-02 21:27:47 +0100 |
commit | bc2eada5424bff06f7eb77c032ecc067da52b846 (patch) | |
tree | 13e0f8ddf22eca74068bc5b8f31f91386bd7f8f9 /runtime | |
parent | 269aec7e615b7710139a69a4c715dfe534aa3a1a (diff) | |
download | vim-git-bc2eada5424bff06f7eb77c032ecc067da52b846.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/channel.txt | 6 | ||||
-rw-r--r-- | runtime/doc/cmdline.txt | 6 | ||||
-rw-r--r-- | runtime/doc/message.txt | 7 | ||||
-rw-r--r-- | runtime/doc/options.txt | 4 | ||||
-rw-r--r-- | runtime/doc/pi_logipat.txt | 2 | ||||
-rw-r--r-- | runtime/doc/quickref.txt | 4 | ||||
-rw-r--r-- | runtime/doc/tags | 3 | ||||
-rw-r--r-- | runtime/doc/todo.txt | 87 | ||||
-rw-r--r-- | runtime/doc/usr_22.txt | 4 | ||||
-rw-r--r-- | runtime/doc/version8.txt | 8 | ||||
-rw-r--r-- | runtime/keymap/armenian-eastern_utf-8.vim | 4 | ||||
-rw-r--r-- | runtime/keymap/armenian-western_utf-8.vim | 4 | ||||
-rw-r--r-- | runtime/syntax/html.vim | 18 | ||||
-rw-r--r-- | runtime/syntax/php.vim | 40 | ||||
-rw-r--r-- | runtime/syntax/sshconfig.vim | 5 | ||||
-rw-r--r-- | runtime/syntax/sshdconfig.vim | 5 |
16 files changed, 149 insertions, 58 deletions
diff --git a/runtime/doc/channel.txt b/runtime/doc/channel.txt index c72f9c8b1..3078d31ac 100644 --- a/runtime/doc/channel.txt +++ b/runtime/doc/channel.txt @@ -1,4 +1,4 @@ -*channel.txt* For Vim version 8.0. Last change: 2016 Dec 01 +*channel.txt* For Vim version 8.0. Last change: 2016 Dec 02 VIM REFERENCE MANUAL by Bram Moolenaar @@ -605,11 +605,11 @@ See |job_setoptions()| and |ch_setoptions()|. *job-close_cb* "close_cb": handler Callback for when the channel is closed. Same as "close_cb" on |ch_open()|, see |close_cb|. - *job-exit_cb* + *job-drop* "drop" Specifies when to drop messages. Same as "drop" on |ch_open()|, see |channel-drop|. For "auto" the exit_cb is not considered. - + *job-exit_cb* "exit_cb": handler Callback for when the job ends. The arguments are the job and the exit status. Vim checks up to 10 times per second for jobs that diff --git a/runtime/doc/cmdline.txt b/runtime/doc/cmdline.txt index e05e6d36e..aab2a3e32 100644 --- a/runtime/doc/cmdline.txt +++ b/runtime/doc/cmdline.txt @@ -1060,10 +1060,10 @@ There are several ways to leave the command-line window: Insert and in Normal mode. CTRL-C Continue in Command-line mode. The command-line under the cursor is used as the command-line. Works both in Insert and - in Normal mode. ":close" also works. There is no redraw, - thus the window will remain visible. + in Normal mode. There is no redraw, thus the window will + remain visible. :quit Discard the command line and go back to Normal mode. - ":exit", ":xit" and CTRL-\ CTRL-N also work. + ":close", ":exit", ":xit" and CTRL-\ CTRL-N also work. :qall Quit Vim, unless there are changes in some buffer. :qall! Quit Vim, discarding changes to any buffer. diff --git a/runtime/doc/message.txt b/runtime/doc/message.txt index 83e219837..b2d057825 100644 --- a/runtime/doc/message.txt +++ b/runtime/doc/message.txt @@ -1,4 +1,4 @@ -*message.txt* For Vim version 8.0. Last change: 2016 Sep 01 +*message.txt* For Vim version 8.0. Last change: 2017 Jan 02 VIM REFERENCE MANUAL by Bram Moolenaar @@ -129,8 +129,9 @@ closed properly. Mostly harmless. Command too recursive This happens when an Ex command executes an Ex command that executes an Ex -command, etc. This is only allowed 200 times. When it's more there probably -is an endless loop. Probably a |:execute| or |:source| command is involved. +command, etc. The limit is 200 or the value of 'maxfuncdepth', whatever is +larger. When it's more there probably is an endless loop. Probably a +|:execute| or |:source| command is involved. *E254* > Cannot allocate color {name} diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 5e0d06075..3d8e053f4 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1,4 +1,4 @@ -*options.txt* For Vim version 8.0. Last change: 2016 Nov 26 +*options.txt* For Vim version 8.0. Last change: 2017 Jan 02 VIM REFERENCE MANUAL by Bram Moolenaar @@ -5021,6 +5021,8 @@ A jump table for the options with a short description can be found at |Q_op|. catches endless recursion. When using a recursive function with more depth, set 'maxfuncdepth' to a bigger number. But this will use more memory, there is the danger of failing when memory is exhausted. + Increasing this limit above 200 also changes the maximum for Ex + command resursion, see |E169|. See also |:function|. *'maxmapdepth'* *'mmd'* *E223* diff --git a/runtime/doc/pi_logipat.txt b/runtime/doc/pi_logipat.txt index d2eac8055..f8d666234 100644 --- a/runtime/doc/pi_logipat.txt +++ b/runtime/doc/pi_logipat.txt @@ -1,4 +1,4 @@ -*logiPat.txt* Logical Patterns Jun 22, 2015 +*pi_logipat.txt* Logical Patterns Jun 22, 2015 Author: Charles E. Campbell <NdrOchip@ScampbellPfamily.AbizM> Copyright: (c) 2004-2015 by Charles E. Campbell *logiPat-copyright* diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt index 4ffc836fc..e0252f77b 100644 --- a/runtime/doc/quickref.txt +++ b/runtime/doc/quickref.txt @@ -1,4 +1,4 @@ -*quickref.txt* For Vim version 8.0. Last change: 2016 Aug 21 +*quickref.txt* For Vim version 8.0. Last change: 2016 Dec 16 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1067,6 +1067,8 @@ Short explanation of each option: *option-list* |c_<Up>| <Up>/<Down> recall older/newer command-line that starts with current command |c_<S-Up>| <S-Up>/<S-Down> recall older/newer command-line from history +|c_CTRL-G| CTRL-G next match when 'incsearch' is active +|c_CTRL-T| CTRL-T previous match when 'incsearch' is active |:history| :his[tory] show older command-lines Context-sensitive completion on the command-line: diff --git a/runtime/doc/tags b/runtime/doc/tags index 3ce8dc085..dd12f1073 100644 --- a/runtime/doc/tags +++ b/runtime/doc/tags @@ -6964,6 +6964,7 @@ job-callback channel.txt /*job-callback* job-channel-overview channel.txt /*job-channel-overview* job-close_cb channel.txt /*job-close_cb* job-control channel.txt /*job-control* +job-drop channel.txt /*job-drop* job-err_cb channel.txt /*job-err_cb* job-err_io channel.txt /*job-err_io* job-exit_cb channel.txt /*job-exit_cb* @@ -7099,7 +7100,6 @@ logiPat-man pi_logipat.txt /*logiPat-man* logiPat-manual pi_logipat.txt /*logiPat-manual* logiPat-operators pi_logipat.txt /*logiPat-operators* logiPat-pattern pi_logipat.txt /*logiPat-pattern* -logiPat.txt pi_logipat.txt /*logiPat.txt* long-lines version5.txt /*long-lines* love intro.txt /*love* lowercase change.txt /*lowercase* @@ -7781,6 +7781,7 @@ php3.vim syntax.txt /*php3.vim* phtml.vim syntax.txt /*phtml.vim* pi_getscript.txt pi_getscript.txt /*pi_getscript.txt* pi_gzip.txt pi_gzip.txt /*pi_gzip.txt* +pi_logipat.txt pi_logipat.txt /*pi_logipat.txt* pi_netrw.txt pi_netrw.txt /*pi_netrw.txt* pi_paren.txt pi_paren.txt /*pi_paren.txt* pi_spec.txt pi_spec.txt /*pi_spec.txt* diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 1f3a90ce1..c83eb5e62 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -1,4 +1,4 @@ -*todo.txt* For Vim version 8.0. Last change: 2016 Dec 01 +*todo.txt* For Vim version 8.0. Last change: 2017 Jan 02 VIM REFERENCE MANUAL by Bram Moolenaar @@ -36,10 +36,14 @@ there will not be repeated below, unless there is extra information. -------------------- Known bugs and current work ----------------------- +channel: +- Try out background make plugin: + https://github.com/AndrewVos/vim-make-background - Problem with stderr on Windows? (Vincent Rischmann, 2016 Aug 31, #1026) - Add 'cwd' argument to start_job(): directory to change to in the child. check for valid directory before forking. Part of patch for environment, Yasuhiro Matsumoto, #1160 +- When out_cb executes :sleep, the close_cb may be invoked. (Daniel Hahler, + 2016 Dec 11, #1320) - Implement |job-term| ? - Channel test fails with Motif. Sometimes kills the X11 server. - When a message in the queue but there is no callback, drop it after a while? @@ -70,8 +74,8 @@ Regexp problems: - Issue 164: freeze on regexp search. - Ignorecase not handled properly for multi-byte characters. (Axel Bender, 2013 Dec 11) -- Using \@> and \?. (Brett Stahlman, 2013 Dec 21) Remark from Marcin Szamotulski - Remark from Brett 2014 Jan 6 and 7. +- Using \@> and \?. (Brett Stahlman, 2013 Dec 21) Remark from Marcin + Szamotulski; Remark from Brett 2014 Jan 6 and 7. - NFA regexp doesn't handle \%<v correctly. (Ingo Karkat, 2014 May 12) - Does not work with NFA regexp engine: \%u, \%x, \%o, \%d followed by a composing character @@ -105,28 +109,53 @@ Regexp problems: Make html indent file use javascript indent, now that it's not just cindent. #1220 -Use __sun instead of sun define check. #1296 +Patch to fix completion of :filter command. (Ichizok, 2016 Dec 3, #1299) Patch to use buffer id for system() and systemlist() (LemonBoy, 2016 Nov 7, #1240) +Concatenation with null string causes an error: 'a'[1:0] .. 'b' +Might as well handle it like an empty string. + When using symbolic links, a package path will not be inserted at the right position in 'runtimepath'. (Dugan Chen, 2016 Nov 18) json_encode(): should convert to utf-8. (Nikolai Pavlov, 2016 Jan 23) What if there is an invalid character? +Putting "k" early in 'complete' does not use dictionary first? +(RubenGZ, 2016 Dec 10, #1316) +patch proposed by Hirohito Higashi, 2016 Dec 11. + +Patch to fix NULL pointer when sorting zero elements. (Dominique, 2016 Dec 15) + +Patch to test float functions. (Dominique, 2016 Dec 16) + +Patch to improve completion of :syntax command. (Dominique, 2016 Dec 12) + +Patch to use IEMSG() in more places. (Dominique, 2016 Dec 27) + +Patch to avoid ubsan warning for integer overflow. (Dominique, 2016 Dec 26) + Bug: ":earlier 100d" doesn't work after using undo file. (Pavol Juhas, 2016 Nov 15, #1254) Fix by Christian, but lacks a test. +Test in testdir/test_undo.vim doesn't catch the problem. Test by Pavol Juhas, Nov 22. +Patch with test (Pavol Juhas,, 2016 Dec 3, #1300) Bug: Json with same key should not give internal error. (Lcd, 2016 Oct 26) Make dict_add give a duplicate key error. +Patch to make str2nr and str2float work with signed values. +(Lemonbody, 2016 Dec 18, #1332) + Should json_encode()/json_decode() restrict recursiveness? Or avoid recursiveness. +Patch to fix UBSan error. Is this actually needed? +(Yegappan, 2016 Dec 18) + Allow using json with empty key? Dict already has it. Json string with trailing \u should be an error. (Lcd) @@ -137,17 +166,55 @@ Patch to deal with changed configure events in GTK 3. (Jan Alexander Steffens, 2016 Oct 23 #1193) Remarks from nuko8, 2016 Nov 2. +Patch to change order of compiler flags. (Yousong Zhou, 2016 Sep 19, #1100) + +Patch to add command line completion for :cexpr commands. (Yegappan +Lakshmanan, 2016 Dec 13) + +Patch to avoid warnings for overflow. (Mike Williams, 2016 Dec 16) +Update Dec 19. + Wrong diff highlighting with three files. (2016 Oct 20, #1186) Also get E749 on exit. +Another example in #1309 + +Patch to fix vim_iswordp() works differently on chars <256 that are two bytes. +Ozaki Kiichi, 2016 Dec 11. + +When deleting a mark or register, leave a tombstone, so that it's also deleted +when writing viminfo (and the delete was the most recent action). #1339 + +Relevant neovim patch: +https://github.com/neovim/neovim/pull/5717 +test case: +https://github.com/neovim/neovim/pull/5717#issuecomment-264845481 +Others: +https://github.com/neovim/neovim/issues/5713#issuecomment-265136186 +https://github.com/neovim/neovim/pull/5737#issuecomment-266055165 Patch for better explanation of 'compatible' side effects. https://github.com/vim/vim/pull/1161/files +Patch to adjust marks when adding a new line to the end of buffer in diff +mode. (James McCoy, 2016 Dec 14, #1329) + +Suggestion to improve pt-br spell checking. (Marcelo D Montu, 2016 Dec 15, +#1330) + Error in test_startup_utf8 on Solaris. (Danek Duvall, 2016 Aug 17) +Rule to use "^" for statusline does not work if a space is defined with +highlighting for both stl and stlnc. Patch by Ken Hamada (itchyny, 2016 Dec 11) + +8 "stl" and "stlnc" in 'fillchars' don't work for multi-byte characters. + Patch by Christian Wellenbrock, 2013 Jul 5. + Screen updated delayed when using CTRL-O u in Insert mode. (Barlik, #1191) Perhaps because status message? +Patch to add buffer name argument to taglist(). +Ordering of tags in result of taglist call. (Duncan McDougall, #1194) + Patch to fix that empty first tab is not in session. (Hirohito Higashi, 2016 Nov 25, #1282) @@ -171,7 +238,7 @@ Use ADDR_OTHER instead of ADDR_LINES for many more commands. Add tests for using number larger than number of lines in buffer. Patch to make v:shell_error writable. (Christian Brabandt, 2016 Sep 27) -Is there another solution? +Useful to restore it. Is there another solution? On MS-Windows with 'clipboard' set to "unnamed" this doesn't work to double lines: :g/^/normal yyp On Unix it works OK. (Bryce Orgill, 2016 Nov 5) @@ -235,10 +302,11 @@ execute() cannot be used with command completeion. (Daniel Hahler, 2016 Oct 1, cmap using execute() has side effects. (Killthemule, 2016 Aug 17, #983) -Patch to change order of compiler flags. (Yousong Zhou, 2016 Sep 19, #1100) - Patch to order results from taglist(). (Duncan McDougall, 2016 Oct 25) +patch for 'spellcamelcase' option: spellcheck each CamelCased word. +(Ben Tucker, 2016 Dec 2) + Patch for :pyx, run python commands depending on the supported version. (Marc Weber, update from Ken Takata, 2016 Sep 19) @@ -268,7 +336,7 @@ Patch to fix wrong encoding of error message on Cygwin/MSYS terminal. 'hlsearch' interferes with a Conceal match. (Rom Grk, 2016 Aug 9) Patch to add context information to quickfix/location list. (Yegappan -Lakshmanan, 2016 Aug 25) +Lakshmanan, 2016 Aug 25, #1012) MS-Windows: use WS_HIDE instead of SW_SHOWMINNOACTIVE in os_win32.c? Otherwise task flickers in taskbar. @@ -981,9 +1049,6 @@ Szamotulski, 2012 Nov 8) Session file creation: 'autochdir' causes trouble. Keep it off until after loading all files. -8 "stl" and "stlnc" in 'fillchars' don't work for multi-byte characters. - Patch by Christian Wellenbrock, 2013 Jul 5. - MS-Windows resizing problems: - Windows window on screen positioning: Patch by Yukihiro Nakadaira, 2012 Jun 20. Uses getWindowRect() instead of GetWindowPlacement() diff --git a/runtime/doc/usr_22.txt b/runtime/doc/usr_22.txt index f0efbc541..68352da8f 100644 --- a/runtime/doc/usr_22.txt +++ b/runtime/doc/usr_22.txt @@ -1,4 +1,4 @@ -*usr_22.txt* For Vim version 8.0. Last change: 2012 Nov 15 +*usr_22.txt* For Vim version 8.0. Last change: 2016 Dec 13 VIM USER MANUAL - by Bram Moolenaar @@ -93,7 +93,7 @@ browser. This is what you get: > o................Browsing with a Horizontal Split...........|netrw-o| p................Use Preview Window.........................|netrw-p| P................Edit in Previous Window....................|netrw-p| - q................Listing Bookmarks and History..............|netrw-q| + q................Listing Bookmarks and History..............|netrw-qb| r................Reversing Sorting Order....................|netrw-r| < (etc) diff --git a/runtime/doc/version8.txt b/runtime/doc/version8.txt index a419bd7d1..9cf047bb7 100644 --- a/runtime/doc/version8.txt +++ b/runtime/doc/version8.txt @@ -1,4 +1,4 @@ -*version8.txt* For Vim version 8.0. Last change: 2016 Nov 06 +*version8.txt* For Vim version 8.0. Last change: 2016 Dec 10 VIM REFERENCE MANUAL by Bram Moolenaar @@ -181,6 +181,12 @@ Insert mode commands: ~ |i_CTRL-G_U| CTRL-G U don't break undo with next cursor movement +Cmdline mode commands: ~ + +|/_CTRL-G| CTRL-G move to the next match in 'incsearch' mode +|/_CTRL-T| CTRL-T move to the previous match in 'incsearch' mode + + Options: ~ 'belloff' do not ring the bell for these reasons diff --git a/runtime/keymap/armenian-eastern_utf-8.vim b/runtime/keymap/armenian-eastern_utf-8.vim index 7b03c5ac7..eaa60a77f 100644 --- a/runtime/keymap/armenian-eastern_utf-8.vim +++ b/runtime/keymap/armenian-eastern_utf-8.vim @@ -1,5 +1,5 @@ " Maintainer: Benjamin Linskey <vim@benlinskey.com> -" Last Changed: 2016 July 20 +" Last Changed: 2016 December 5 " URL: https://github.com/blinskey/vim-armenian-keymaps let b:keymap_name = "hy" @@ -98,6 +98,8 @@ f ֆ 7 . 8 « 9 » +* ( +( ) \\ ' | ՞ diff --git a/runtime/keymap/armenian-western_utf-8.vim b/runtime/keymap/armenian-western_utf-8.vim index e02485ed8..cf3efdc00 100644 --- a/runtime/keymap/armenian-western_utf-8.vim +++ b/runtime/keymap/armenian-western_utf-8.vim @@ -1,5 +1,5 @@ " Maintainer: Benjamin Linskey <vim@benlinskey.com> -" Last Changed: 2016 July 20 +" Last Changed: 2016 December 5 " URL: https://github.com/blinskey/vim-armenian-keymaps let b:keymap_name = "hy" @@ -98,6 +98,8 @@ f ֆ 7 . 8 « 9 » +* ( +( ) \\ ' | ՞ diff --git a/runtime/syntax/html.vim b/runtime/syntax/html.vim index 336d8c9f4..7408f6647 100644 --- a/runtime/syntax/html.vim +++ b/runtime/syntax/html.vim @@ -1,9 +1,9 @@ " Vim syntax file -" Language: HTML -" Maintainer: Claudio Fleiner <claudio@fleiner.com> -" URL: http://www.fleiner.com/vim/syntax/html.vim -" Last Change: 2015 Jan 07 -" included patch from David Felix +" Language: HTML +" Maintainer: Jorge Maldonado Ventura <jorgesumle@freakspot.net> +" Previous Maintainer: Claudio Fleiner <claudio@fleiner.com> +" Last Change: 2016 Dec 29 +" included patch from Jorge Maldonado Ventura " Please check :help html.vim for some comments and a description of the options @@ -53,6 +53,14 @@ syn keyword htmlTagName contained abbr acronym bdo button col label syn keyword htmlTagName contained colgroup del fieldset iframe ins legend syn keyword htmlTagName contained object optgroup q s tbody tfoot thead +" new html 5 tags +syn keyword htmlTagName contained article aside audio bdi canvas datalist +syn keyword htmlTagName contained details embed figcaption figure +syn keyword htmlTagName contained footer header hgroup main mark +syn keyword htmlTagName contained menuitem meter nav output picture +syn keyword htmlTagName contained progress rb rp rt rtc ruby section +syn keyword htmlTagName contained slot source template time track video wbr + " legal arg names syn keyword htmlArg contained action syn keyword htmlArg contained align alink alt archive background bgcolor diff --git a/runtime/syntax/php.vim b/runtime/syntax/php.vim index f86a32f40..34b0b6afb 100644 --- a/runtime/syntax/php.vim +++ b/runtime/syntax/php.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: php PHP 3/4/5/7 " Maintainer: Jason Woofenden <jason@jasonwoof.com> -" Last Change: Jul 27, 2016 +" Last Change: Dec 11, 2016 " URL: https://jasonwoof.com/gitweb/?p=vim-syntax.git;a=blob;f=php.vim;hb=HEAD " Former Maintainers: Peter Hodge <toomuchphp-vim@yahoo.com> " Debian VIM Maintainers <pkg-vim-maintainers@lists.alioth.debian.org> @@ -495,7 +495,7 @@ syntax keyword phpSpecialFunction containedin=ALLBUT,phpComment,phpStringDouble, " Highlighting for __autoload slightly different from line above syntax keyword phpSpecialFunction containedin=ALLBUT,phpComment,phpStringDouble,phpStringSingle,phpIdentifier,phpMethodsVar \ __autoload -highlight link phpSpecialFunction phpOperator +hi def link phpSpecialFunction phpOperator " Highlighting for PHP5's built-in classes " - built-in classes harvested from get_declared_classes() in 5.1.4 @@ -518,14 +518,14 @@ syntax keyword phpClasses containedin=ALLBUT,phpComment,phpStringDouble,phpStrin \ DOMCharacterData DOMAttr DOMElement DOMText DOMComment DOMTypeinfo DOMUserDataHandler \ DOMLocator DOMConfiguration DOMCdataSection DOMDocumentType DOMNotation DOMEntity \ DOMEntityReference DOMProcessingInstruction DOMStringExtend DOMXPath -highlight link phpClasses phpFunctions +hi def link phpClasses phpFunctions " Highlighting for PHP5's built-in interfaces " - built-in classes harvested from get_declared_interfaces() in 5.1.4 syntax keyword phpInterfaces containedin=ALLBUT,phpComment,phpStringDouble,phpStringSingle,phpIdentifier,phpMethodsVar \ Iterator IteratorAggregate RecursiveIterator OuterIterator SeekableIterator \ Traversable ArrayAccess Serializable Countable SplObserver SplSubject Reflector -highlight link phpInterfaces phpConstant +hi def link phpInterfaces phpConstant " option defaults: if ! exists('php_special_functions') @@ -553,7 +553,7 @@ endif if php_alt_assignByReference " special highlighting for '=&' operator syntax match phpAssignByRef /=\s*&/ containedin=ALLBUT,phpComment,phpStringDouble,phpStringSingle - highlight link phpAssignByRef Type + hi def link phpAssignByRef Type endif if php_alt_comparisons @@ -565,7 +565,7 @@ if php_alt_comparisons syntax case ignore syntax keyword phpComparison instanceof contained containedin=phpRegion - hi link phpComparison Statement + hi def link phpComparison Statement endif " ================================================================ @@ -645,21 +645,21 @@ hi def link phpTodo Todo hi def link phpDocTodo Todo hi def link phpMemberSelector Structure if exists("php_oldStyle") -hi phpIntVar guifg=Red ctermfg=DarkRed -hi phpEnvVar guifg=Red ctermfg=DarkRed -hi phpOperator guifg=SeaGreen ctermfg=DarkGreen -hi phpVarSelector guifg=SeaGreen ctermfg=DarkGreen -hi phpRelation guifg=SeaGreen ctermfg=DarkGreen -hi phpIdentifier guifg=DarkGray ctermfg=Brown -hi phpIdentifierSimply guifg=DarkGray ctermfg=Brown + hi def phpIntVar guifg=Red ctermfg=DarkRed + hi def phpEnvVar guifg=Red ctermfg=DarkRed + hi def phpOperator guifg=SeaGreen ctermfg=DarkGreen + hi def phpVarSelector guifg=SeaGreen ctermfg=DarkGreen + hi def phpRelation guifg=SeaGreen ctermfg=DarkGreen + hi def phpIdentifier guifg=DarkGray ctermfg=Brown + hi def phpIdentifierSimply guifg=DarkGray ctermfg=Brown else -hi def link phpIntVar Identifier -hi def link phpEnvVar Identifier -hi def link phpOperator Operator -hi def link phpVarSelector Operator -hi def link phpRelation Operator -hi def link phpIdentifier Identifier -hi def link phpIdentifierSimply Identifier + hi def link phpIntVar Identifier + hi def link phpEnvVar Identifier + hi def link phpOperator Operator + hi def link phpVarSelector Operator + hi def link phpRelation Operator + hi def link phpIdentifier Identifier + hi def link phpIdentifierSimply Identifier endif diff --git a/runtime/syntax/sshconfig.vim b/runtime/syntax/sshconfig.vim index 8401923e0..755d08e76 100644 --- a/runtime/syntax/sshconfig.vim +++ b/runtime/syntax/sshconfig.vim @@ -5,8 +5,8 @@ " Contributor: Leonard Ehrenfried <leonard.ehrenfried@web.de> " Contributor: Karsten Hopp <karsten@redhat.com> " Contributor: Dean, Adam Kenneth <adam.ken.dean@hpe.com> -" Last Change: 2016 Aug 11 -" SSH Version: 7.3p1 +" Last Change: 2016 Dec 28 +" SSH Version: 7.4p1 " " Setup @@ -181,6 +181,7 @@ syn keyword sshconfigKeyword IPQoS syn keyword sshconfigKeyword IdentitiesOnly syn keyword sshconfigKeyword IdentityFile syn keyword sshconfigKeyword IgnoreUnknown +syn keyword sshconfigKeyword Include syn keyword sshconfigKeyword IPQoS syn keyword sshconfigKeyword KbdInteractiveAuthentication syn keyword sshconfigKeyword KbdInteractiveDevices diff --git a/runtime/syntax/sshdconfig.vim b/runtime/syntax/sshdconfig.vim index 1556258b2..c3abfff63 100644 --- a/runtime/syntax/sshdconfig.vim +++ b/runtime/syntax/sshdconfig.vim @@ -6,8 +6,8 @@ " Contributor: Leonard Ehrenfried <leonard.ehrenfried@web.de> " Contributor: Karsten Hopp <karsten@redhat.com> " Originally: 2009-07-09 -" Last Change: 2016 Mar 1 -" SSH Version: 7.2 +" Last Change: 2016 Dec 28 +" SSH Version: 7.4p1 " " Setup @@ -161,6 +161,7 @@ syn keyword sshdconfigKeyword Compression syn keyword sshdconfigKeyword DebianBanner syn keyword sshdconfigKeyword DenyGroups syn keyword sshdconfigKeyword DenyUsers +syn keyword sshdconfigKeyword DisableForwarding syn keyword sshdconfigKeyword ForceCommand syn keyword sshdconfigKeyword GSSAPIAuthentication syn keyword sshdconfigKeyword GSSAPICleanupCredentials |