recursive
                                
                                 recursive copied to clipboard
                                
                                    recursive copied to clipboard
                            
                            
                            
                        List of ligatures in Jetbrains preview text without a ligature
PyCharm and IDEA list <!-- -- != := === >= >- >=> |-> -> <$> </> #[ |||> |= ~@ := </> #[ ~@ do not have a ligature >=> uses the >= ligature followed by another > |-> has a | and then the -> ligature
Jetbrains Mono does have a ligature for all of these. <=< <-| do not work as well
 
 
and with Jetbrains Mono

Additionally I prefer the way Jetbrains Mono draws the <$> ligature, it is more apparent that it is connected.
Hi Alex, thanks for taking the time to document and suggest this! Sorry I missed the issue for a bit.
I'll keep this set in mind for the next time I'm able to add some more code ligatures.
The >=> ligature is very annoying with Haskell code using point-free monadic code:
parse' :: Text -> Either Error [Node]
parse' =
    first LexerError . Lexer.parse
        >=> first ParserError . parse
 
                                    
                                    
                                    
                                
@wolverian ouch, yeah, that combination is not good. I might prioritize fixing that before the others, as this one is actively confusing while the others are still pretty legible, IMO.
Thanks for leaving the comment!