diff options
| author | Justin Gassner <justin.gassner@web.de> | 2016-01-25 19:36:57 +0100 |
|---|---|---|
| committer | Justin Gassner <justin.gassner@web.de> | 2016-01-25 21:45:26 +0100 |
| commit | 299044d4efff0f3ea0ae910977ebe77099cfebf4 (patch) | |
| tree | b31b8baec4752be50cf6fc270092b85c768a7202 /runtime/syntax/upstreamdat.vim | |
| parent | 45b378259ebc66530cfa2a3fdb2504f17a185a22 (diff) | |
| download | rneovim-299044d4efff0f3ea0ae910977ebe77099cfebf4.tar.gz rneovim-299044d4efff0f3ea0ae910977ebe77099cfebf4.tar.bz2 rneovim-299044d4efff0f3ea0ae910977ebe77099cfebf4.zip | |
vim-patch:7.4.656
Problem: Missing changes for glob() in one file.
Solution: Add the missing changes.
https://github.com/vim/vim/commit/d8b77f7dc04e5721989df9c505b8568194261a39
Diffstat (limited to 'runtime/syntax/upstreamdat.vim')
| -rw-r--r-- | runtime/syntax/upstreamdat.vim | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/runtime/syntax/upstreamdat.vim b/runtime/syntax/upstreamdat.vim index 7be806730d..e3b415a4bc 100644 --- a/runtime/syntax/upstreamdat.vim +++ b/runtime/syntax/upstreamdat.vim @@ -1,13 +1,14 @@ " Vim syntax file " Language: Innovation Data Processing upstream.dat file " Maintainer: Rob Owens <rowens@fdrinnovation.com> -" Latest Revision: 2013-06-17 +" Latest Revision: 2013-11-27 " Quit when a syntax file was already loaded if exists("b:current_syntax") finish endif +" Parameters: syn keyword upstreamdat_Parameter ACCEPTPCREMOTE syn keyword upstreamdat_Parameter ACCEPTREMOTE syn keyword upstreamdat_Parameter ACTION @@ -291,6 +292,14 @@ syn keyword upstreamdat_Parameter XFERECORDSIZE syn keyword upstreamdat_Parameter XFERRECSEP syn keyword upstreamdat_Parameter XFERRECUSECR +" File Specs: +syn match upstreamdat_Filespec /file spec\c \d\{1,3}.*/ + +" Comments: +syn match upstreamdat_Comment /^#.*/ + hi def link upstreamdat_Parameter Type +"hi def link upstreamdat_Filespec Underlined +hi def link upstreamdat_Comment Comment let b:current_syntax = "upstreamdat" |