We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Haskell doesn't use parentheses so it's kind of weird and ugly to see myfunc() in the status bar.
myfunc()
In the tagbar, currently function types and various other things are displayed with parens. For example:
function types myFunc((Num a) => a -> a -> a)
Please make it possible to instead have this:
function types myFunc :: (Num a) => a -> a -> a
with the ::, ->, and => highlighted in yellow like the Haskell syntax.
::
->
=>
Both of those things should probably be a thing in g:tagbar_type_* settings.
g:tagbar_type_*
This would make things much nicer for Haskell. Thank you for the support it has so far, it's great!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Haskell doesn't use parentheses so it's kind of weird and ugly to see
myfunc()
in the status bar.In the tagbar, currently function types and various other things are displayed with parens. For example:
Please make it possible to instead have this:
with the
::
,->
, and=>
highlighted in yellow like the Haskell syntax.Both of those things should probably be a thing in
g:tagbar_type_*
settings.This would make things much nicer for Haskell. Thank you for the support it has so far, it's great!
The text was updated successfully, but these errors were encountered: