diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:47:23 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:47:23 +0000 |
commit | 795d0737fed40d88a7801b451b7750ba90802345 (patch) | |
tree | b561a10468955d1a893a828446dbeebd225a28f6 /support/vim/syntax | |
parent | 8891504ae11f7ae5ed5e9eb05ec3686564617373 (diff) | |
download | build-795d0737fed40d88a7801b451b7750ba90802345.tar.gz build-795d0737fed40d88a7801b451b7750ba90802345.tar.bz2 build-795d0737fed40d88a7801b451b7750ba90802345.tar.xz build-795d0737fed40d88a7801b451b7750ba90802345.zip |
Fixed a few condition issues, and the install script is a little better, I think.
Diffstat (limited to 'support/vim/syntax')
-rw-r--r-- | support/vim/syntax/build.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/vim/syntax/build.vim b/support/vim/syntax/build.vim index 04d1f90..631db10 100644 --- a/support/vim/syntax/build.vim +++ b/support/vim/syntax/build.vim | |||
@@ -14,11 +14,11 @@ endif | |||
14 | " Keywords | 14 | " Keywords |
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 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 range open close read write | 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 open close read write |
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 fileExists |
22 | syn keyword Builtins files dirs matches replace regex execute unlink exists getMakeDeps toString targets fileName dirName unique | 22 | syn keyword Builtins files dirs matches replace regex execute unlink exists getMakeDeps toString targets fileName dirName unique |
23 | 23 | ||
24 | syn match TargetProcess /[a-zA-Z_][a-zA-Z0-9_]*:/he=e-1 | 24 | syn match TargetProcess /[a-zA-Z_][a-zA-Z0-9_]*:/he=e-1 |