diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2016-01-27 23:41:19 -0500 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2016-01-27 23:41:19 -0500 |
| commit | 164fb2a688b8ce992acf3f9b50f154c14f670285 (patch) | |
| tree | 45c475d1e439a66347b218f33510e7cc6a8e3e5f /runtime/syntax/upstreamdat.vim | |
| parent | d459a0891cfafbbb9e4a36af2a3e77ced96983f2 (diff) | |
| parent | 299044d4efff0f3ea0ae910977ebe77099cfebf4 (diff) | |
| download | rneovim-164fb2a688b8ce992acf3f9b50f154c14f670285.tar.gz rneovim-164fb2a688b8ce992acf3f9b50f154c14f670285.tar.bz2 rneovim-164fb2a688b8ce992acf3f9b50f154c14f670285.zip | |
Merge pull request #4098 from jusga/vim-7.4.656
vim-patch:7.4.656
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" |