comparison runtime/syntax/indent.vim @ 1621:82b5078be2dd

updated for version 7.2a
author vimboss
date Tue, 24 Jun 2008 21:56:24 +0000
parents 8fe7832b1e10
children 4a1bcdd9ea55
comparison
equal deleted inserted replaced
1620:73fe8baea242 1621:82b5078be2dd
1 " Vim syntax file 1 " Vim syntax file
2 " Language: indent(1) configuration file 2 " Language: indent(1) configuration file
3 " Maintainer: Nikolai Weibull <now@bitwi.se> 3 " Maintainer: Nikolai Weibull <now@bitwi.se>
4 " Latest Revision: 2007-05-10 4 " Latest Revision: 2007-06-17
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+=-,+
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