diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-04-27 17:48:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-27 17:48:35 +0200 |
commit | 521e91e1c420bd5c94c35908181dbba81e58dd0f (patch) | |
tree | eaa4be5323cc89048f71f4a61539d24c0647ca9e /runtime/syntax/apache.vim | |
parent | ee85d8d7566042df0b988ae28bbbaa7a16bbb5a9 (diff) | |
download | rneovim-521e91e1c420bd5c94c35908181dbba81e58dd0f.tar.gz rneovim-521e91e1c420bd5c94c35908181dbba81e58dd0f.tar.bz2 rneovim-521e91e1c420bd5c94c35908181dbba81e58dd0f.zip |
vim-patch:ce001a337e28 (#18287)
Update runtime files
https://github.com/vim/vim/commit/ce001a337e28fa368f40ac6422835d730fb8ebb1
also add `vimStdPlugin` keywords missing from previous updates
Diffstat (limited to 'runtime/syntax/apache.vim')
-rw-r--r-- | runtime/syntax/apache.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/syntax/apache.vim b/runtime/syntax/apache.vim index dd18aa6570..e73045e4c8 100644 --- a/runtime/syntax/apache.vim +++ b/runtime/syntax/apache.vim @@ -3,7 +3,7 @@ " Maintainer: David Necas (Yeti) <yeti@physics.muni.cz> " License: This file can be redistribued and/or modified under the same terms " as Vim itself. -" Last Change: 2020 Oct 07 +" Last Change: 2022 Apr 25 " Notes: Last synced with apache-2.2.3, version 1.x is no longer supported " TODO: see particular FIXME's scattered through the file " make it really linewise? @@ -46,6 +46,7 @@ syn keyword apacheMethodOption GET POST PUT DELETE CONNECT OPTIONS TRACE PATCH P syn keyword apacheMethodOption BASELINE-CONTROL CHECKIN CHECKOUT LABEL MERGE MKACTIVITY MKWORKSPACE REPORT UNCHECKOUT UPDATE VERSION-CONTROL contained syn case ignore syn match apacheSection "<\/\=\(Directory\|DirectoryMatch\|Files\|FilesMatch\|IfModule\|IfDefine\|Location\|LocationMatch\|VirtualHost\)[^>]*>" contains=apacheAnything +syn match apacheSection "<\/\=\(RequireAll\|RequireAny\|RequireNone\)>" contains=apacheAnything syn match apacheLimitSection "<\/\=\(Limit\|LimitExcept\)[^>]*>" contains=apacheLimitSectionKeyword,apacheMethodOption,apacheError syn keyword apacheLimitSectionKeyword Limit LimitExcept contained syn match apacheAuthType "AuthType\s.*$" contains=apacheAuthTypeValue |