diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-07-04 22:49:24 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-07-04 22:49:24 +0000 |
commit | 0dc065ee7c3bd51e5df3926700e409ae74cdfecf (patch) | |
tree | 3e2f974603cbba12d3f1dcebf493e7ff2bf54d7f /runtime/syntax/indent.vim | |
parent | 7d1f5dbc0a254d7524b3f985f2440bf89e037355 (diff) | |
download | vim-git-0dc065ee7c3bd51e5df3926700e409ae74cdfecf.tar.gz |
updated for version 7.0102v7.0102
Diffstat (limited to 'runtime/syntax/indent.vim')
-rw-r--r-- | runtime/syntax/indent.vim | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/runtime/syntax/indent.vim b/runtime/syntax/indent.vim index 8d822ea47..9310c4914 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 <nikolai+work.vim@bitwi.se> -" Latest Revision: 2005-06-29 +" Latest Revision: 2005-07-04 " indent_is_bsd: If exists, will change somewhat to match BSD implementation " " TODO: is the deny-all (a la lilo.vim nice or no?)... @@ -21,11 +21,9 @@ syn match indentError '\S\+' syn keyword indentTodo contained TODO FIXME XXX NOTE -syn region indentComment matchgroup=indentComment - \ start='/\*' end='\*/' +syn region indentComment start='/\*' end='\*/' \ contains=indentTodo,@Spell -syn region indentComment matchgroup=indentComment - \ start='//' skip='\\$' end='$' +syn region indentComment start='//' skip='\\$' end='$' \ contains=indentTodo,@Spell syn keyword indentOptions -bacc --blank-lines-after-ifdefs |