Actions
Bug #28
openMatching braces appears to try and match over multiple lines
Start date:
03/27/2017
Due date:
% Done:
0%
Estimated time:
Description
In previous version it highlighted unmatched braces in red.
Here's an example where it highlights some irrelevant braces (just added one extra closing brace).
See attached screenshot.
Files
Updated by Wil van Antwerpen almost 9 years ago
- Status changed from New to Resolved
Added checks now so that when scintilla finds a match that is on another line that it will flag that match as invalid.
Unless the code between the lines ends on a ";" character.
Eg.
Nove Valid:
Move (trim(a+x)) to z
Move (abc)) to d
but this is OK
Move (trim(a+x) + ;
def)
Actions