mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-19 17:03:40 -05:00
13 lines
658 B
VimL
13 lines
658 B
VimL
if polyglot#init#is_disabled(expand('<sfile>:p'), 'typescript', 'syntax/yats/web-location.vim')
|
|
finish
|
|
endif
|
|
|
|
syntax keyword typescriptBOMLocationProp contained href protocol host hostname port
|
|
syntax keyword typescriptBOMLocationProp contained pathname search hash username password
|
|
syntax keyword typescriptBOMLocationProp contained origin
|
|
syntax cluster props add=typescriptBOMLocationProp
|
|
hi def link typescriptBOMLocationProp Keyword
|
|
syntax keyword typescriptBOMLocationMethod contained assign reload replace toString nextgroup=typescriptFuncCallArg
|
|
syntax cluster props add=typescriptBOMLocationMethod
|
|
hi def link typescriptBOMLocationMethod Keyword
|