Mercurial > vim
view runtime/syntax/gyp.vim @ 31833:3516e35f409f v9.0.1249
patch 9.0.1249: cannot export an abstract class
Commit: https://github.com/vim/vim/commit/657aea7fc47fb919ce76fad64ba0ec55a1af80f1
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jan 27 13:16:19 2023 +0000
patch 9.0.1249: cannot export an abstract class
Problem: Cannot export an abstract class. (Ernie Rael)
Solution: Add the EX_EXPORT flag to :abstract. (closes https://github.com/vim/vim/issues/11884)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 27 Jan 2023 14:30:04 +0100 |
parents | 1e91e26ceebf |
children |
line wrap: on
line source
" Vim syntax file " Language: GYP " Maintainer: ObserverOfTime <chronobserver@disroot.org> " Filenames: *.gyp,*.gypi " Last Change: 2022 Sep 27 if !exists('g:main_syntax') if exists('b:current_syntax') && b:current_syntax ==# 'gyp' finish endif let g:main_syntax = 'gyp' endif " Based on JSON syntax runtime! syntax/json.vim " Single quotes are allowed syn clear jsonStringSQError syn match jsonKeywordMatch /'\([^']\|\\\'\)\+'[[:blank:]\r\n]*\:/ contains=jsonKeyword if has('conceal') && (!exists('g:vim_json_conceal') || g:vim_json_conceal==1) syn region jsonKeyword matchgroup=jsonQuote start=/'/ end=/'\ze[[:blank:]\r\n]*\:/ concealends contained else syn region jsonKeyword matchgroup=jsonQuote start=/'/ end=/'\ze[[:blank:]\r\n]*\:/ contained endif syn match jsonStringMatch /'\([^']\|\\\'\)\+'\ze[[:blank:]\r\n]*[,}\]]/ contains=jsonString if has('conceal') && (!exists('g:vim_json_conceal') || g:vim_json_conceal==1) syn region jsonString oneline matchgroup=jsonQuote start=/'/ skip=/\\\\\|\\'/ end=/'/ concealends contains=jsonEscape contained else syn region jsonString oneline matchgroup=jsonQuote start=/'/ skip=/\\\\\|\\'/ end=/'/ contains=jsonEscape contained endif " Trailing commas are allowed if !exists('g:vim_json_warnings') || g:vim_json_warnings==1 syn clear jsonTrailingCommaError endif " Python-style comments are allowed syn match jsonComment /#.*$/ contains=jsonTodo,@Spell syn keyword jsonTodo FIXME NOTE TODO XXX TBD contained hi def link jsonComment Comment hi def link jsonTodo Todo let b:current_syntax = 'gyp' if g:main_syntax ==# 'gyp' unlet g:main_syntax endif