mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-13 14:03:50 -05:00
24 lines
1.0 KiB
VimL
24 lines
1.0 KiB
VimL
let s:base = expand("<sfile>:h:h")
|
|
let Filter = { _, v -> stridx(v, s:base) == -1 && stridx(v, $VIMRUNTIME) == -1 && v !~ "after" }
|
|
let files = filter(globpath(&rtp, 'syntax/yats/dom-storage.vim', 1, 1), Filter)
|
|
if len(files) > 0
|
|
exec 'source ' . files[0]
|
|
finish
|
|
endif
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1
|
|
|
|
syntax keyword typescriptDOMStorage contained sessionStorage localStorage
|
|
if exists("did_typescript_hilink") | HiLink typescriptDOMStorage Keyword
|
|
endif
|
|
syntax keyword typescriptDOMStorageProp contained length
|
|
syntax cluster props add=typescriptDOMStorageProp
|
|
if exists("did_typescript_hilink") | HiLink typescriptDOMStorageProp Keyword
|
|
endif
|
|
syntax keyword typescriptDOMStorageMethod contained getItem key setItem removeItem nextgroup=typescriptFuncCallArg
|
|
syntax keyword typescriptDOMStorageMethod contained clear nextgroup=typescriptFuncCallArg
|
|
syntax cluster props add=typescriptDOMStorageMethod
|
|
if exists("did_typescript_hilink") | HiLink typescriptDOMStorageMethod Keyword
|
|
endif
|
|
|
|
endif
|