From 029f72b1a93430b24b88eb3a72c6114d9f149737 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:09:20 +0200 Subject: Adding upstream version 2:9.1.0016. Signed-off-by: Daniel Baumann --- runtime/syntax/objcpp.vim | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 runtime/syntax/objcpp.vim (limited to 'runtime/syntax/objcpp.vim') diff --git a/runtime/syntax/objcpp.vim b/runtime/syntax/objcpp.vim new file mode 100644 index 0000000..f11e307 --- /dev/null +++ b/runtime/syntax/objcpp.vim @@ -0,0 +1,20 @@ +" Vim syntax file +" Language: Objective C++ +" Maintainer: Kazunobu Kuriyama +" Ex-Maintainer: Anthony Hodsdon +" Last Change: 2007 Oct 29 + +" quit when a syntax file was already loaded +if exists("b:current_syntax") + finish +endif + +" Read in C++ and ObjC syntax files +runtime! syntax/cpp.vim +unlet b:current_syntax +runtime! syntax/objc.vim + +syn keyword objCppNonStructure class template namespace transparent contained +syn keyword objCppNonStatement new delete friend using transparent contained + +let b:current_syntax = "objcpp" -- cgit v1.2.3