File: dosini.vim

package info (click to toggle)
vim-rt 5.3-12
  • links: PTS
  • area: main
  • in suites: slink
  • size: 3,172 kB
  • ctags: 815
  • sloc: makefile: 857; awk: 778; ansic: 379; perl: 192; sh: 167
file content (28 lines) | stat: -rw-r--r-- 675 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
" Vim syntax file
" Language:	Configuration File (ini file) for MSDOS/MS Windows
" Maintainer:	Sean M. McKee <mckee@misslink.net>
" Last change:	1997/12/15
" Version Info: @(#)dosini.vim	1.6	97/12/15 08:54:12

" clear any unwanted syntax defs
syn clear

" shut case off
syn case ignore

syn match  dosiniLabel		"^.\{-}="
syn region dosiniHeader		start="\[" end="\]"
syn match  dosiniComment	";.*$"

if !exists("did_dosini_syntax_inits")
	let did_dosini_syntax_inits = 1
	" The default methods for highlighting.  Can be overridden later
	hi link dosiniHeader	Special
	hi link dosiniComment	Comment
	hi link dosiniLabel	Type

endif

let b:current_syntax = "dosini"

" vim:ts=8