summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2013-04-16 19:18:39 (GMT)
committerNico Weber <thakis@chromium.org>2013-04-16 19:18:39 (GMT)
commit1b9c7bb51a97e6d3738cdad2d5520295b667ef31 (patch)
tree6e573167ccda717e2cd3c6724d9150dbe7ec830d /misc
parent96cc21d1ed14938852249718705ca536daa32817 (diff)
downloadNinja-1b9c7bb51a97e6d3738cdad2d5520295b667ef31.zip
Ninja-1b9c7bb51a97e6d3738cdad2d5520295b667ef31.tar.gz
Ninja-1b9c7bb51a97e6d3738cdad2d5520295b667ef31.tar.bz2
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`).
Diffstat (limited to 'misc')
-rw-r--r--misc/ninja.vim10
1 files 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 <nicolasweber@gmx.de>
-" 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