1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 14:24:10 +02:00

Clear paren pair list on new statement

This commit is contained in:
Brian Fiete 2020-10-17 13:09:18 -07:00
parent 743a8da08b
commit 1a44732189

View file

@ -2987,8 +2987,12 @@ namespace IDE.ui
} }
} }
else else
{
// Assume this means we're at the end of a statement, or at least we're not pulling along any other closing parens
mCurParenPairIdSet.Clear();
CursorToLineEnd(); CursorToLineEnd();
} }
}
if ((mAutoComplete != null) && (mAutoComplete.mInvokeWidget != null)) if ((mAutoComplete != null) && (mAutoComplete.mInvokeWidget != null))
{ {