vim2hs
vim2hs copied to clipboard
vim2hs :: Vim -> Haskell
Currently its not obvious that there is an option for turning off the folding that vim2hs uses, this means that users have to unfold things themselves even in small files....
vim2hs folds code by default. This change preserves that default, but allows adding `g:haskell_fold = 0` to your .vimrc (or similar) to opt out of folding by default on .hs...
Function color doesn't changed, when I use "'" in function name
`x = 2.5` is highlighted just fine, but in `y = -2.5`, the `-2.` isn't highlighted.
If I write `f :: Int -> Int`, it works great. However, if I write `f' :: Int -> Int`, that line isn't highlighted at all. Likewise, `foobar = 0`...
It seems that vim2hs makes `e` behave like `E` and `w` as `W` (only in *.hs files, of course). I uninstalled it and it went back to normal, so it...
I noticed that there is no folding for import lists. Since import lists can be very long, I think it would be useful. Would you accept a pull request defining...
It seems that currently, the characters `::` are concealed by `⦂` (U+2982). This seems to cause issues on some systems - it was not visible on mine, and several other...
- added matching for type signatures that end with ticks e.g. b' :: a -> a - fixes #92