Mercurial > vim
view runtime/syntax/aidl.vim @ 21817:c2c2e57562ee v8.2.1458
patch 8.2.1458: .gawk files not recognized
Commit: https://github.com/vim/vim/commit/9a5c553f790f74e4c36295ce5d46c1aa7d13eae6
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 15 14:07:23 2020 +0200
patch 8.2.1458: .gawk files not recognized
Problem: .gawk files not recognized.
Solution: Recognize .gawk files. (Doug Kearns)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 15 Aug 2020 14:15:07 +0200 |
parents | 3a1ed539ae2a |
children | 99ef85ff1af4 |
line wrap: on
line source
" 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"