mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-10 20:43:52 -05:00
35 lines
970 B
VimL
35 lines
970 B
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/aidl.vim', 1, 1), Filter)
|
|
if len(files) > 0
|
|
exec 'source ' . files[0]
|
|
finish
|
|
endif
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'aidl') == -1
|
|
|
|
" Vim syntax file
|
|
" Language: aidl (Android Interface Definition Language)
|
|
" https://developer.android.com/guide/components/aidl
|
|
" Maintainer: Dominique Pelle <dominique.pelle@tomtom.com>
|
|
" LastChange: 2020/07/25
|
|
|
|
" Quit when a syntax file was already loaded.
|
|
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
source <sfile>:p:h/java.vim
|
|
|
|
syn keyword aidlParamDir in out inout
|
|
syn keyword aidlKeyword oneway parcelable
|
|
|
|
" Needed for the 'in', 'out', 'inout' keywords to be highlighted.
|
|
syn cluster javaTop add=aidlParamDir
|
|
|
|
hi def link aidlParamDir StorageClass
|
|
hi def link aidlKeyword Keyword
|
|
|
|
let b:current_syntax = "aidl"
|
|
|
|
endif
|