diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-02-11 14:19:15 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-02-11 14:19:15 +0100 |
commit | 6dfc28be25dc1e4323b6652fa517e972007ff1bd (patch) | |
tree | ff19f5d6d935e56922bafdcab481d25d3ddbf759 /runtime/syntax/indent.vim | |
parent | cee6a352b23c8e444d4e0f4a219c288da1b19f76 (diff) | |
download | vim-git-6dfc28be25dc1e4323b6652fa517e972007ff1bd.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/syntax/indent.vim')
-rw-r--r-- | runtime/syntax/indent.vim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/syntax/indent.vim b/runtime/syntax/indent.vim index 4070769fc..389101a52 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 @@ syn region indentComment start='//' skip='\\$' end='$' \ 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 @@ syn keyword indentOptions -bacc --blank-lines-after-ifdefs \ -ut --use-tabs \ -v --verbose \ -version --version + \ -linux --linux-style if exists("indent_is_bsd") syn keyword indentOptions -ip -ei -nei |