mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 11:33:52 -05:00
15 lines
734 B
VimL
15 lines
734 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
|
|
if exists("did_typescript_hilink") | HiLink typescriptBOMLocationProp Keyword
|
|
endif
|
|
syntax keyword typescriptBOMLocationMethod contained assign reload replace toString nextgroup=typescriptFuncCallArg
|
|
syntax cluster props add=typescriptBOMLocationMethod
|
|
if exists("did_typescript_hilink") | HiLink typescriptBOMLocationMethod Keyword
|
|
endif
|