Mercurial > vim
view runtime/syntax/vsejcl.vim @ 14958:b898f9093199 v8.1.0490
patch 8.1.0490: MS-Windows: doesn't handle missing glibwinpthread-1.dll
commit https://github.com/vim/vim/commit/eda9e9c2fe4577ad451418253b990a3f60b70444
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 21 22:45:43 2018 +0200
patch 8.1.0490: MS-Windows: doesn't handle missing glibwinpthread-1.dll
Problem: MS-Windows: doesn't handle missing glibwinpthread-1.dll.
Solution: Adjust Cygwin/MinGW build file. (Ken Takata, closes https://github.com/vim/vim/issues/2827)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 21 Oct 2018 23:00:05 +0200 |
parents | 46763b01cd9a |
children |
line wrap: on
line source
" Vim syntax file " Language: JCL job control language - DOS/VSE " Maintainer: Davyd Ondrejko <david.ondrejko@safelite.com> " URL: " Last change: 2001 May 10 " quit when a syntax file was already loaded if exists("b:current_syntax") finish endif " tags syn keyword vsejclKeyword DLBL EXEC JOB ASSGN EOJ syn keyword vsejclField JNM CLASS DISP USER SYSID JSEP SIZE syn keyword vsejclField VSAM syn region vsejclComment start="^/\*" end="$" syn region vsejclComment start="^[\* ]\{}$" end="$" syn region vsejclMisc start="^ " end="$" contains=Jparms syn match vsejclString /'.\{-}'/ syn match vsejclParms /(.\{-})/ contained " Define the default highlighting. " Only when an item doesn't have highlighting yet hi def link vsejclComment Comment hi def link vsejclField Type hi def link vsejclKeyword Statement hi def link vsejclObject Constant hi def link vsejclString Constant hi def link vsejclMisc Special hi def link vsejclParms Constant let b:current_syntax = "vsejcl" " vim: ts=4