diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-06-03 05:51:21 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-06-03 05:51:21 +0000 |
commit | 4f1e5849d4a48eb674d81164ba4baba4ad51a89f (patch) | |
tree | ee590deb9b6d99a73c24ea36877039d623d9cfd3 /support/vim/syntax/build.vim | |
parent | e8a57991458cfaa536fcc0d8b9a72739a8859da5 (diff) | |
download | build-4f1e5849d4a48eb674d81164ba4baba4ad51a89f.tar.gz build-4f1e5849d4a48eb674d81164ba4baba4ad51a89f.tar.bz2 build-4f1e5849d4a48eb674d81164ba4baba4ad51a89f.tar.xz build-4f1e5849d4a48eb674d81164ba4baba4ad51a89f.zip |
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.
Diffstat (limited to '')
-rw-r--r-- | support/vim/syntax/build.vim | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
15 | syn keyword Conditional if then else | 15 | syn keyword Conditional if then else |
16 | syn keyword Loop for do in | 16 | syn keyword Loop for do in |
17 | syn keyword Logic not and or | 17 | syn keyword Logic not and or |
18 | 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 | 18 | 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 |
19 | syn keyword Todo TODO FIXME XXX | 19 | syn keyword Todo TODO FIXME XXX |
20 | syn keyword Type int string bool float version | 20 | syn keyword Type int string bool float version |
21 | syn keyword Constant null true false file never always important normal hidden autogenerated filetime | 21 | syn keyword Constant null true false file never always important normal hidden autogenerated filetime |