annotate runtime/syntax/chaskell.vim @ 8134:8abef552ece7
v7.4.1361
commit https://github.com/vim/vim/commit/254e00d71429aa4e71b93d3e8c6bb93bfebe4f26
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Feb 19 23:23:12 2016 +0100
patch 7.4.1361
Problem: Channel test fails on Solaris.
Solution: Use the 1 msec waittime for all systems.
author |
Christian Brabandt <cb@256bit.org> |
date |
Fri, 19 Feb 2016 23:45:04 +0100 |
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
|