haskell-vim
haskell-vim copied to clipboard
Custom Haskell Vimscripts
in my `.vim/ftplugin/haskell.vim` i have following settings: ``` let g:haskell_enable_quantification = 1 " to enable highlighting of forall let g:haskell_enable_recursivedo = 1 " to enable highlighting of mdo and rec...
It's possible my issue lies elsewhere, but adding a "setlocal expandtab" to cabal.vim fixed it. Prior to that, newlines in nested conditionals were inserting tabs into my cabal files.
I had haskell-vim working, but I no longer get syntax highlighting at all for Haskell. I did do an update just now to your latest commit, but probably the error...
Highlighting unicode operators as other operators would be good. [This PR](https://github.com/neovimhaskell/haskell-vim/pull/106) solves it.
The indentation and highlighting etc all work fine just by adding .lhs to the ftdetect (or manually setting filetype=haskell), but the comments are highlighted as if they're code. I can...
This makes it hard to edit module namespaces. To move through Cow.Horse.Sheep I have to use `f.` and then to say change Horse to Donkey I have to do `ct.`...
I really like this plugin but I'm missing [data declaration](https://github.com/merijn/haskellFoldIndent#user-content-data-declarations) and [type signature](https://github.com/merijn/haskellFoldIndent#user-content-type-signatures) indenting, like in [merijn/haskellFoldIndent](https://github.com/merijn/haskellFoldIndent). Would you be interested in adding a feature like this?
I'm collecting some problems with the indentation here, with examples. --- - Enter a comment. Make sure the comment ends with character `.`. E.g. something like `-- | This is...
I swiped some highlighting tricks from my old `syntax/haskell.vim` file. This particular group adds highlighting of Haddock docs as `SpecialComment`s
Hi there, i just installed `haskell-vim` plugin hoping for better syntax with haskell source files, however highlighting is not working as it should:   I've already uninstalled and re-installed...