Mercurial > vim
view runtime/syntax/vsejcl.vim @ 11595:42cd59477698 v8.0.0680
patch 8.0.0680: plugins in start packages are sourced twice
commit https://github.com/vim/vim/commit/07ecfa64a18609a986f21d6132d04ee8934f3200
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jun 27 14:43:55 2017 +0200
patch 8.0.0680: plugins in start packages are sourced twice
Problem: Plugins in start packages are sourced twice. (mseplowitz)
Solution: Use the unmodified runtime path when loading plugins (test by Ingo
Karkat, closes #1801)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 27 Jun 2017 14:45:04 +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