diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-05 18:24:42 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-05 18:24:42 +0000 |
commit | c81e5e79a0f2f5c2ac1896fa51cbe47e2e2a8d97 (patch) | |
tree | 5211ea86daed8e43c3dd25458e808c3d32100097 /runtime/syntax/dosini.vim | |
parent | 9aae141a6bcfc26bcce352deb8bf34566a3e1be2 (diff) | |
download | vim-c81e5e79a0f2f5c2ac1896fa51cbe47e2e2a8d97.zip |
updated for version 7.1a
Diffstat (limited to 'runtime/syntax/dosini.vim')
-rw-r--r-- | runtime/syntax/dosini.vim | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/runtime/syntax/dosini.vim b/runtime/syntax/dosini.vim index 73744183a..219384fc7 100644 --- a/runtime/syntax/dosini.vim +++ b/runtime/syntax/dosini.vim @@ -1,8 +1,10 @@ " Vim syntax file " Language: Configuration File (ini file) for MSDOS/MS Windows -" Maintainer: Sean M. McKee <mckee@misslink.net> -" Last Change: 2001 May 09 -" Version Info: @(#)dosini.vim 1.6 97/12/15 08:54:12 +" Version Info: @(#)dosini.vim 1.6 97/12/15 08:54:12 +" Author: Sean M. McKee <mckee@misslink.net> +" Maintainer: Nima Talebi <nima@it.net.au> +" Last Change: Mon, 26 Jun 2006 22:07:28 +1000 + " For version 5.x: Clear all syntax items " For version 6.x: Quit when a syntax file was already loaded @@ -16,7 +18,7 @@ endif syn case ignore syn match dosiniLabel "^.\{-}=" -syn region dosiniHeader start="\[" end="\]" +syn region dosiniHeader start="^\[" end="\]" syn match dosiniComment "^;.*$" " Define the default highlighting. |