annotate runtime/syntax/chaskell.vim @ 18:293621502c4d
v7.0010
updated for version 7.0010
author |
vimboss |
date |
Sun, 18 Jul 2004 21:34:53 +0000 |
parents |
3fc0f57ecb91 |
children |
43efa4f5a8ea |
rev |
line source |
7
|
1 " Vim syntax file
|
|
2 " Language: Haskell supporting c2hs binding hooks
|
|
3 " Maintainer: Armin Sander <armin@mindwalker.org>
|
|
4 " Last Change: 2001 November 1
|
|
5 "
|
|
6 " 2001 November 1: Changed commands for sourcing haskell.vim
|
|
7
|
|
8 " Enable binding hooks
|
|
9 let b:hs_chs=1
|
|
10
|
|
11 " Include standard Haskell highlighting
|
|
12 if version < 600
|
|
13 source <sfile>:p:h/haskell.vim
|
|
14 else
|
|
15 runtime! syntax/haskell.vim
|
|
16 endif
|
|
17
|
|
18 " vim: ts=8
|