Mercurial > vim
annotate runtime/syntax/objcpp.vim @ 16519:a147acab726f v8.1.1263
patch 8.1.1263: mouse clicks in WinBar not tested
commit https://github.com/vim/vim/commit/66f83111520f299e688eb15e3cb95ec1fa10ba10
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 4 16:06:12 2019 +0200
patch 8.1.1263: mouse clicks in WinBar not tested
Problem: Mouse clicks in WinBar not tested.
Solution: Add a test for clicking on the WinBar entries.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 04 May 2019 16:15:05 +0200 |
parents | 43efa4f5a8ea |
children |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
1620 | 2 " Language: Objective C++ |
3 " Maintainer: Kazunobu Kuriyama <kazunobu.kuriyama@nifty.com> | |
4 " Ex-Maintainer: Anthony Hodsdon <ahodsdon@fastmail.fm> | |
5 " Last Change: 2007 Oct 29 | |
7 | 6 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1620
diff
changeset
|
7 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1620
diff
changeset
|
8 if exists("b:current_syntax") |
7 | 9 finish |
10 endif | |
11 | |
12 " Read in C++ and ObjC syntax files | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1620
diff
changeset
|
13 runtime! syntax/cpp.vim |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1620
diff
changeset
|
14 unlet b:current_syntax |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1620
diff
changeset
|
15 runtime! syntax/objc.vim |
7 | 16 |
17 syn keyword objCppNonStructure class template namespace transparent contained | |
18 syn keyword objCppNonStatement new delete friend using transparent contained | |
19 | |
20 let b:current_syntax = "objcpp" |