view runtime/syntax/objcpp.vim @ 13373:0802633a0b2d v8.0.1560

patch 8.0.1560: build failure without GUI on MS-Windows commit https://github.com/vim/vim/commit/3767b61ad99fe6ff2cace2dccb5d35331786735f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 3 19:51:58 2018 +0100 patch 8.0.1560: build failure without GUI on MS-Windows Problem: Build failure without GUI on MS-Windows. Solution: Adjust #ifdef for vcol2col().
author Christian Brabandt <cb@256bit.org>
date Sat, 03 Mar 2018 20:00:07 +0100
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"