view runtime/syntax/objcpp.vim @ 16971:e18b1c654d09

Update runtime files - Add typescript syntax and indent. commit https://github.com/vim/vim/commit/773a97c254d02784079fb3b20447620412588850 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 6 20:39:55 2019 +0200 Update runtime files - Add typescript syntax and indent.
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 Jun 2019 20:45:06 +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"