From 4f1e5849d4a48eb674d81164ba4baba4ad51a89f Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 3 Jun 2011 05:51:21 +0000 Subject: Added a range function. It works a lot like the range function in python, if called with one parameter, it will produce a list of the numbers 1 through the number provided inclusive, if two numbers, it will produce a list of all numbers between the first and second parameter, inclusive, and if three parameters are provided it will use the last one as a step. --- support/vim/syntax/build.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support') diff --git a/support/vim/syntax/build.vim b/support/vim/syntax/build.vim index cb491e6..a867092 100644 --- a/support/vim/syntax/build.vim +++ b/support/vim/syntax/build.vim @@ -15,7 +15,7 @@ endif syn keyword Conditional if then else syn keyword Loop for do in syn keyword Logic not and or -syn keyword Statement include set unset function target input condition requires rule profile auto config display type default cache global value return output allow action warning error notice local continue break all export tag +syn keyword Statement include set unset function target input condition requires rule profile auto config display type default cache global value return output allow action warning error notice local continue break all export tag range syn keyword Todo TODO FIXME XXX syn keyword Type int string bool float version syn keyword Constant null true false file never always important normal hidden autogenerated filetime -- cgit v1.2.3