vim2hs
vim2hs copied to clipboard
vim2hs :: Vim -> Haskell
Vim2hs is a bit of a kitchen sink that I've been using for experimenting with Haskell in Vim, and that I've thus intentionally avoided announcing officially anywhere. I want to...
Function name in type signature have `hsType` syntax group, see screenshot. 
Hi! I'm using [following trick](http://vim.wikia.com/wiki/Identify_the_syntax_highlighting_group_used_at_the_cursor) to determine what syntax group is under cursor. I've noticed that there is no syntax groups attached to module names, functions etc. imports, thus there...

Folding functions inside Haskell files does not work for me. The fold column also stays empty. Cabal files can be folded however. Tested with Vim 7.8.4 without any other plugins...
My vim has python3 enabled instead of python. So I changed the existing HPaste slightly to allow for python3 as well as python. It required a different hpaste.py but the...
This makes it play nice with other plugins.
This should highlight as a type signature, but doesn't: ``` haskell a, b, c :: SameType ```
This is probably a _won't fix_ but I wanted to get some feedback anyway: While the error format parsing of hlint output works just fine the errors can be very...
first of all thanks for your effort. two things I noticed using vim2hs, let's start with 'where', consider the following: ``` haskell add1 x = x + y where y...