Files
vim-polyglot/syntax/yats/dom-form.vim
2024-07-24 14:11:07 -07:00

12 lines
566 B
VimL

if polyglot#init#is_disabled(expand('<sfile>:p'), 'typescript', 'syntax/yats/dom-form.vim')
finish
endif
syntax keyword typescriptDOMFormProp contained acceptCharset action elements encoding
syntax keyword typescriptDOMFormProp contained enctype length method name target
syntax cluster props add=typescriptDOMFormProp
hi def link typescriptDOMFormProp Keyword
syntax keyword typescriptDOMFormMethod contained reportValidity reset submit nextgroup=typescriptFuncCallArg
syntax cluster props add=typescriptDOMFormMethod
hi def link typescriptDOMFormMethod Keyword