From 1b9c7bb51a97e6d3738cdad2d5520295b667ef31 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Tue, 16 Apr 2013 12:18:39 -0700 Subject: [PATCH] Note that version 1.3 of the vim syntax file has been sent upstream. Also fix an issue noticed by Bram during integration: Make sure to set "cpo" correctly. This matches other vim syntax files and is required to make sure that the backslash continuation works with all .vimrc files (see `:help line-continuation`). --- misc/ninja.vim | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/misc/ninja.vim b/misc/ninja.vim index ec120d8..d813267 100644 --- a/misc/ninja.vim +++ b/misc/ninja.vim @@ -2,9 +2,9 @@ " Language: ninja build file as described at " http://martine.github.com/ninja/manual.html " Version: 1.3 -" Last Change: 2013/04/09 +" Last Change: 2013/04/16 " Maintainer: Nicolas Weber -" Version 1.2 of this script is in the upstream vim repository and will be +" Version 1.3 of this script is in the upstream vim repository and will be " included in the next vim release. If you change this, please send your change " upstream. @@ -16,6 +16,9 @@ if exists("b:current_syntax") finish endif +let s:cpo_save = &cpo +set cpo&vim + syn case match syn match ninjaComment /#.*/ contains=@Spell @@ -73,3 +76,6 @@ hi def link ninjaSimpleVar ninjaVar hi def link ninjaVar Identifier let b:current_syntax = "ninja" + +let &cpo = s:cpo_save +unlet s:cpo_save