blob: 1947ab97d8b2c2fc5150f8f8b83655d2cbd2834b [file] [log] [blame]
Bram Moolenaar2547aa92020-07-26 17:00:44 +02001" Vim syntax file
2" Language: aidl (Android Interface Definition Language)
3" https://developer.android.com/guide/components/aidl
4" Maintainer: Dominique Pelle <dominique.pelle@tomtom.com>
5" LastChange: 2020/07/25
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 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"