Mercurial > vim
annotate runtime/syntax/aidl.vim @ 27257:68c33419fdc6 v8.2.4157
patch 8.2.4157: terminal test fails because Windows sets the title
Commit: https://github.com/vim/vim/commit/ae1bd87fe84bfb31379bc5da351bca56a3d3b571
Author: ichizok <gclient.gaap@gmail.com>
Date: Thu Jan 20 14:57:29 2022 +0000
patch 8.2.4157: terminal test fails because Windows sets the title
Problem: Terminal test fails because Windows sets the title.
Solution: Add the "vterm_title" testing override and use it in the test.
(Ozaki Kiichi, closes #9556)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 20 Jan 2022 16:00:07 +0100 |
parents | 99ef85ff1af4 |
children |
rev | line source |
---|---|
21499 | 1 " 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> | |
23164 | 5 " LastChange: 2020/12/03 |
21499 | 6 |
7 " Quit when a syntax file was already loaded. | |
8 if exists("b:current_syntax") | |
9 finish | |
10 endif | |
11 | |
12 source <sfile>:p:h/java.vim | |
13 | |
14 syn keyword aidlParamDir in out inout | |
23164 | 15 syn keyword aidlKeyword const oneway parcelable |
21499 | 16 |
17 " Needed for the 'in', 'out', 'inout' keywords to be highlighted. | |
18 syn cluster javaTop add=aidlParamDir | |
19 | |
20 hi def link aidlParamDir StorageClass | |
21 hi def link aidlKeyword Keyword | |
22 | |
23 let b:current_syntax = "aidl" |