view runtime/syntax/objcpp.vim @ 35359:082986a7377d default tip

runtime(doc): Added definitions of Vim scripts and plugins Commit: https://github.com/vim/vim/commit/c593b9ead9b4346724187ab604fa593ead1fa4b2 Author: Ubaldo Tiberi <ubaldo.tiberi@gmail.com> Date: Sun Jun 9 18:47:53 2024 +0200 runtime(doc): Added definitions of Vim scripts and plugins closes: https://github.com/vim/vim/issues/14935 Signed-off-by: Ubaldo Tiberi <ubaldo.tiberi@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 09 Jun 2024 19:00:03 +0200
parents 43efa4f5a8ea
children
line wrap: on
line source

" Vim syntax file
" Language:	    Objective C++
" Maintainer:	    Kazunobu Kuriyama <kazunobu.kuriyama@nifty.com>
" Ex-Maintainer:    Anthony Hodsdon <ahodsdon@fastmail.fm>
" 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"