DejaVuSansCode
DejaVuSansCode copied to clipboard
>>= is getting converted into ligature partially. Only >= part of >>= gets converted.
= is the Haskell bind operator. Only second part of this (>=) is converted to ligature.
Added rules, which prevents partial conversion of >>= and <<= to ligatures >= and <=. Ligatures for operators <<= and >>= will be implemented soon.
Thanks for this! I look forward to the ligatures but this is great in the meantime.