Mercurial > vim
view runtime/syntax/vgrindefs.vim @ 18650:3aab097c8d26 v8.1.2317
patch 8.1.2317: no test for spell affix file with flag on suffix
Commit: https://github.com/vim/vim/commit/37ff4cf87069e54f991d86df9beff19bfdd15875
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Nov 17 20:10:20 2019 +0100
patch 8.1.2317: no test for spell affix file with flag on suffix
Problem: No test for spell affix file with flag on suffix.
Solution: Add a test case.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 17 Nov 2019 20:15:03 +0100 |
parents | 7033303ea0c0 |
children | 4027cefc2aab |
line wrap: on
line source
" Vim syntax file " Language: Vgrindefs " Maintainer: Bram Moolenaar <Bram@vim.org> " Last Change: 2005 Jun 20 " The Vgrindefs file is used to specify a language for vgrind " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") finish endif " Comments syn match vgrindefsComment "^#.*" " The fields that vgrind recognizes syn match vgrindefsField ":ab=" syn match vgrindefsField ":ae=" syn match vgrindefsField ":pb=" syn match vgrindefsField ":bb=" syn match vgrindefsField ":be=" syn match vgrindefsField ":cb=" syn match vgrindefsField ":ce=" syn match vgrindefsField ":sb=" syn match vgrindefsField ":se=" syn match vgrindefsField ":lb=" syn match vgrindefsField ":le=" syn match vgrindefsField ":nc=" syn match vgrindefsField ":tl" syn match vgrindefsField ":oc" syn match vgrindefsField ":kw=" " Also find the ':' at the end of the line, so all ':' are highlighted syn match vgrindefsField ":\\$" syn match vgrindefsField ":$" syn match vgrindefsField "\\$" " Define the default highlighting. " Only used when an item doesn't have highlighting yet hi def link vgrindefsField Statement hi def link vgrindefsComment Comment let b:current_syntax = "vgrindefs" " vim: ts=8