mirror of
https://github.com/udalov/kotlin-vim.git
synced 2025-12-22 12:13:51 +01:00
- Add comparison operators: ==, !=, ===, !==, <, <=, >, >=. The latter four are highlighted only if there's a whitespace nearby (as per the Kotlin style guide), to avoid coloring generic type parameters and arguments - Do not highlight '?', otherwise the safe call operator '?.' looks weird. Also '?' at the end of nullable types is not exactly an operator - Add 'as' / 'as?'