comparison runtime/syntax/indent.vim @ 839:1f3b1021f002 v7.0e05

updated for version 7.0e05
author vimboss
date Fri, 21 Apr 2006 22:12:41 +0000
parents 4fe8e1a7758e
children 8906c10ecbb0
comparison
equal deleted inserted replaced
838:8e5830943bff 839:1f3b1021f002
1 " Vim syntax file 1 " Vim syntax file
2 " Language: indent(1) configuration file 2 " Language: indent(1) configuration file
3 " Maintainer: Nikolai Weibull <nikolai+work.vim@bitwi.se> 3 " Maintainer: Nikolai Weibull <now@bitwi.se>
4 " Latest Revision: 2005-07-04 4 " Latest Revision: 2006-04-19
5 " indent_is_bsd: If exists, will change somewhat to match BSD implementation 5 " indent_is_bsd: If exists, will change somewhat to match BSD implementation
6 " 6 "
7 " TODO: is the deny-all (a la lilo.vim nice or no?)... 7 " TODO: is the deny-all (a la lilo.vim nice or no?)...
8 " irritating to be wrong to the last char... 8 " irritating to be wrong to the last char...
9 " would be sweet if right until one char fails 9 " would be sweet if right until one char fails
13 endif 13 endif
14 14
15 let s:cpo_save = &cpo 15 let s:cpo_save = &cpo
16 set cpo&vim 16 set cpo&vim
17 17
18 setlocal iskeyword=@,48-57,-,_ 18 setlocal iskeyword=@,48-57,-,+,_
19 19
20 syn match indentError '\S\+' 20 syn match indentError '\S\+'
21 21
22 syn keyword indentTodo contained TODO FIXME XXX NOTE 22 syn keyword indentTodo contained TODO FIXME XXX NOTE
23 23