xref: /vim-8.2.3635/runtime/syntax/aidl.vim (revision 1b884a00)
1" Vim syntax file
2" Language:	aidl (Android Interface Definition Language)
3"		https://developer.android.com/guide/components/aidl
4" Maintainer:	Dominique Pelle <[email protected]>
5" LastChange:	2020/12/03
6
7" Quit when a syntax file was already loaded.
8if exists("b:current_syntax")
9   finish
10endif
11
12source <sfile>:p:h/java.vim
13
14syn keyword aidlParamDir in out inout
15syn keyword aidlKeyword const oneway parcelable
16
17" Needed for the 'in', 'out', 'inout' keywords to be highlighted.
18syn cluster javaTop add=aidlParamDir
19
20hi def link aidlParamDir StorageClass
21hi def link aidlKeyword Keyword
22
23let b:current_syntax = "aidl"
24