summaryrefslogtreecommitdiff
path: root/uvim/runtime/syntax/aidl.vim
diff options
context:
space:
mode:
Diffstat (limited to 'uvim/runtime/syntax/aidl.vim')
-rw-r--r--uvim/runtime/syntax/aidl.vim23
1 files changed, 0 insertions, 23 deletions
diff --git a/uvim/runtime/syntax/aidl.vim b/uvim/runtime/syntax/aidl.vim
deleted file mode 100644
index 3a79433aa9..0000000000
--- a/uvim/runtime/syntax/aidl.vim
+++ /dev/null
@@ -1,23 +0,0 @@
-" 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/12/03
-
-" 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 const 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"