Arc Forumnew | comments | leaders | submitlogin
1 point by evanrmurphy 5535 days ago | link | parent

It's fixed now. Thanks, that is so much better.

Checking out your syntax highlighter now. :)



1 point by evanrmurphy 5529 days ago | link

The syntax highlighter has increased my quality of life substantially (insomuch as my life is coding in Vim, which it is for a good part these days :) .

The red highlighting that suddenly appears for mismatched parens is very useful. Saves me a lot of cursoring around to make sure all are matched up. The only nuisance in my own usage is sometimes it's distracting if I deliberately have a temporary mismatch while editing code.

-----

1 point by fallintothis 5528 days ago | link

Good to hear, thanks!

The parenthesis highlighting is a bit of an all-or-nothing proposition, since Vim can't really tell if you intended to leave unmatched parentheses. You can disable it altogether (which won't highlight any paren errors) with

  :hi link arcParenError NONE
and re-enable it with

  :hi link arcParenError Error
Similarly, there's arcBracketError for [] syntax.

If you find any, feel free to let me know of code it doesn't highlight correctly: http://bitbucket.org/fallintothis/arc-vim/issues/

-----