Mercurial > vim
view runtime/syntax/rng.vim @ 11354:129077fb57e6 v8.0.0562
patch 8.0.0562: not enough test coverage for syntax commands
commit https://github.com/vim/vim/commit/ea588154d00aec288e48b344b2685e46bea99cd6
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Apr 10 22:45:30 2017 +0200
patch 8.0.0562: not enough test coverage for syntax commands
Problem: Not enough test coverage for syntax commands.
Solution: Add a few more tests. (Dominique Pelle, closes https://github.com/vim/vim/issues/1624)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 10 Apr 2017 23:00:03 +0200 |
parents | 2d1383658bb4 |
children |
line wrap: on
line source
" Vim syntax file " Language: RELAX NG " Maintainer: Jaromir Hradilek <jhradilek@gmail.com> " URL: https://github.com/jhradilek/vim-rng " Last Change: 25 March 2013 " Description: A syntax file for RELAX NG, a schema language for XML if exists('b:current_syntax') finish endif do Syntax xml syn spell toplevel syn cluster xmlTagHook add=rngTagName syn case match syn keyword rngTagName anyName attribute choice data define div contained syn keyword rngTagName element empty except externalRef grammar contained syn keyword rngTagName group include interleave list mixed name contained syn keyword rngTagName notAllowed nsName oneOrMore optional param contained syn keyword rngTagName parentRef ref start text value zeroOrMore contained hi def link rngTagName Statement let b:current_syntax = 'rng'