Updated runtime files.
diff --git a/runtime/syntax/indent.vim b/runtime/syntax/indent.vim
index 4070769..389101a 100644
--- a/runtime/syntax/indent.vim
+++ b/runtime/syntax/indent.vim
@@ -1,7 +1,7 @@
" Vim syntax file
" Language: indent(1) configuration file
" Maintainer: Nikolai Weibull <now@bitwi.se>
-" Latest Revision: 2007-06-17
+" Latest Revision: 2010-01-23
" indent_is_bsd: If exists, will change somewhat to match BSD implementation
"
" TODO: is the deny-all (a la lilo.vim nice or no?)...
@@ -27,7 +27,7 @@
\ contains=indentTodo,@Spell
if !exists("indent_is_bsd")
- syn match indentOptions '-i\|--indentation-level'
+ syn match indentOptions '-i\|--indentation-level\|-il\|--indent-level'
\ nextgroup=indentNumber skipwhite skipempty
endif
syn match indentOptions '-\%(bli\|c\%([bl]i\|[dip]\)\=\|di\=\|ip\=\|lc\=\|pp\=i\|sbi\|ts\|-\%(brace-indent\|comment-indentation\|case-brace-indentation\|declaration-comment-column\|continuation-indentation\|case-indentation\|else-endif-column\|line-comments-indentation\|declaration-indentation\|indent-level\|parameter-indentation\|line-length\|comment-line-length\|paren-indentation\|preprocessor-indentation\|struct-brace-indentation\|tab-size\)\)'
@@ -123,6 +123,7 @@
\ -ut --use-tabs
\ -v --verbose
\ -version --version
+ \ -linux --linux-style
if exists("indent_is_bsd")
syn keyword indentOptions -ip -ei -nei
diff --git a/runtime/syntax/lilo.vim b/runtime/syntax/lilo.vim
index 14bd940..3e94592 100644
--- a/runtime/syntax/lilo.vim
+++ b/runtime/syntax/lilo.vim
@@ -1,8 +1,8 @@
" Vim syntax file
" Language: lilo configuration (lilo.conf)
-" Maintainer: help wanted!
+" Maintainer: Niels Horn <niels.horn@gmail.com>
" Previous Maintainer: David Necas (Yeti) <yeti@physics.muni.cz>
-" Last Change: 2009-01-27
+" Last Change: 2010-02-03
" Setup
if version >= 600
diff --git a/runtime/syntax/rst.vim b/runtime/syntax/rst.vim
index 245c3ae..acb5616 100644
--- a/runtime/syntax/rst.vim
+++ b/runtime/syntax/rst.vim
@@ -1,7 +1,7 @@
" Vim syntax file
" Language: reStructuredText documentation format
" Maintainer: Nikolai Weibull <now@bitwi.se>
-" Latest Revision: 2009-05-25
+" Latest Revision: 2010-01-23
if exists("b:current_syntax")
finish
@@ -137,7 +137,7 @@
" TODO: Use better syncing. I don’t know the specifics of syncing well enough,
" though.
-syn sync minlines=50
+syn sync minlines=50 linebreaks=1
hi def link rstTodo Todo
hi def link rstComment Comment
diff --git a/runtime/syntax/zsh.vim b/runtime/syntax/zsh.vim
index ecd6f05..79fd017 100644
--- a/runtime/syntax/zsh.vim
+++ b/runtime/syntax/zsh.vim
@@ -1,7 +1,7 @@
" Vim syntax file
" Language: Zsh shell script
" Maintainer: Nikolai Weibull <now@bitwi.se>
-" Latest Revision: 2008-07-17
+" Latest Revision: 2010-01-23
if exists("b:current_syntax")
finish
@@ -14,7 +14,7 @@
syn keyword zshTodo contained TODO FIXME XXX NOTE
-syn region zshComment display oneline start='\%(^\|\s\)#' end='$'
+syn region zshComment oneline start='\%(^\|\s\)#' end='$'
\ contains=zshTodo,@Spell
syn match zshPreProc '^\%1l#\%(!\|compdef\|autoload\).*$'