haskell-vim icon indicating copy to clipboard operation
haskell-vim copied to clipboard

Custom Haskell Vimscripts

Results 36 haskell-vim issues
Sort by recently updated
recently updated
newest added

The syntax highlighting doesnt seem to work. Im using NVIM v0.4.3 and started from a plain init.vim file, with just the minimal requirements for this plugin (pathogen installation). Heres a...

For those who are using Unicode.

If I start with this file: ![screenshot from 2017-05-15 00-00-49](https://cloud.githubusercontent.com/assets/543423/26042243/aee8b8aa-3901-11e7-9eaa-062c2b70c524.png) And I hit ``, ``, ``, I get this: ![screenshot from 2017-05-15 00-01-32](https://cloud.githubusercontent.com/assets/543423/26042244/b24f19f8-3901-11e7-95b4-b12c86591c20.png) However, I was expecting to get this:...

```haskell search :: Matrix [Digit] -> [Grid] search cm | not (safe pm) = [] | complete pm = [extract pm] | otherwise = concatMap search (expand1 pm) where pm...

When a character literal contains a "region" start pattern ('(','[','{','"'), everything after the start pattern is interpreted as a contained region, and consequently breaks syntax highlighting. After further investigation, the...

(See #132) > When a character literal contains a "region" start pattern > ('(','[','{','"'), everything after the start pattern is interpreted as > a contained region, and consequently breaks syntax...

Some other plugins achieve something similar, like `vimtex`, which replaces some expressions in math blocks with their unicode representation. For example, this expression ![image](https://user-images.githubusercontent.com/43295942/129478328-f96e3bb5-c352-4644-ae01-57dd0e0bcb21.png) transforms into the following when the...

I typed in this example: ```haskell main = do let n = 1 if n > 0 then do print 1 else print 2 ``` The `else` is indented too...

* Use custom vimrc when running tests, so the results aren't determined by the user's personal vim config * Some of the tests fail, so I might not have the...

notice that record fields and regular type signatures are already fine (in definitions of `haskellRecordField` and `haskellTypeSig`), before the fix I'm getting ![haskell-vim-before-fix](https://user-images.githubusercontent.com/1219667/125323074-14700180-e347-11eb-9d1e-50ee14663b9f.png) after the fix it gets correctly highlighted...