summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorThiago Farina <tfarina@chromium.org>2012-07-09 19:09:31 (GMT)
committerThiago Farina <tfarina@chromium.org>2012-07-09 19:09:31 (GMT)
commit3baedf17677e5d8f0c248d950e0681a0f5668992 (patch)
tree026c0c528b04e723d42a98211d29a2e5a3b22f8d /misc
parent0ca93baf35d3c2b1e70e008276555b5bec2f9f3e (diff)
downloadNinja-3baedf17677e5d8f0c248d950e0681a0f5668992.zip
Ninja-3baedf17677e5d8f0c248d950e0681a0f5668992.tar.gz
Ninja-3baedf17677e5d8f0c248d950e0681a0f5668992.tar.bz2
Rename parsers.* to manifest_parser.*
So it matches with the class name in there. Signed-off-by: Thiago Farina <tfarina@chromium.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/ninja.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/ninja.vim b/misc/ninja.vim
index 51a95c2..6f0e48d 100644
--- a/misc/ninja.vim
+++ b/misc/ninja.vim
@@ -10,7 +10,7 @@
" ninja lexer and parser are at
" https://github.com/martine/ninja/blob/master/src/lexer.in.cc
-" https://github.com/martine/ninja/blob/master/src/parsers.cc
+" https://github.com/martine/ninja/blob/master/src/manifest_parser.cc
if exists("b:current_syntax")
finish
@@ -22,7 +22,7 @@ syn match ninjaComment /#.*/ contains=@Spell
" Toplevel statements are the ones listed here and
" toplevel variable assignments (ident '=' value).
-" lexer.in.cc, ReadToken() and parsers.cc, Parse()
+" lexer.in.cc, ReadToken() and manifest_parser.cc, Parse()
syn match ninjaKeyword "^build\>"
syn match ninjaKeyword "^rule\>"
syn match ninjaKeyword "^default\>"
@@ -33,7 +33,7 @@ syn match ninjaKeyword "^subninja\>"
" on the first line without indent. 'rule' allows only a
" limited set of magic variables, 'build' allows general
" let assignments.
-" parsers.cc, ParseRule()
+" manifest_parser.cc, ParseRule()
syn region ninjaRule start="^rule" end="^\ze\S" contains=ALL transparent
syn keyword ninjaRuleCommand contained command depfile description generator restat