aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/aidl.vim
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-04-29 08:54:38 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-04-29 09:27:19 -0400
commit0a0034718c00fd9f434d20d29e415287db284bbe (patch)
tree8d99d94c42772a4c39acf059745609b85d596974 /runtime/syntax/aidl.vim
parent27fb03f5a03db6738967f9e0e0ea85ea0fab7592 (diff)
downloadrneovim-0a0034718c00fd9f434d20d29e415287db284bbe.tar.gz
rneovim-0a0034718c00fd9f434d20d29e415287db284bbe.tar.bz2
rneovim-0a0034718c00fd9f434d20d29e415287db284bbe.zip
vim-patch:2547aa930b59
Update runtime files. https://github.com/vim/vim/commit/2547aa930b59f5e2bcb70e81d5a57ed461e59b4f Omit modifyOtherKeys, vim9, vim.man.
Diffstat (limited to 'runtime/syntax/aidl.vim')
-rw-r--r--runtime/syntax/aidl.vim23
1 files changed, 23 insertions, 0 deletions
diff --git a/runtime/syntax/aidl.vim b/runtime/syntax/aidl.vim
new file mode 100644
index 0000000000..1947ab97d8
--- /dev/null
+++ b/runtime/syntax/aidl.vim
@@ -0,0 +1,23 @@
+" 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"