Skip to content

Commit 8c1f407

Browse files
committed
Merge branch 'development' of https://github.com/fdorg/flashdevelop into development
2 parents 409f29b + cb55111 commit 8c1f407

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

External/Plugins/ASCompletion/Completion/Reformater.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ public static bool lookupXML(string txt, ref int index)
455455
// AS expression
456456
if (c == '{')
457457
{
458-
if ((inTag && (c2 == '<' || c2 == ' ' || c2 == '=' || c2 == '/'))
458+
if ((inTag && (c2 == '<' || c2 == ' ' || c2 == '=' || c2 == '/' || c2 == '$'))
459459
|| isXML && (c2 == '>'))
460460
{
461461
inExpr = true;

External/Plugins/ASCompletion/Settings/GeneralSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public int DescriptionLinesLimit
7171
const int DEFAULT_ALWAYSCOMPLETELENGTH = 2;
7272
const bool DEFAULT_DISABLECALLTIP = false;
7373
const string DEFAULT_COMPACTCHARS = ",;.():[]";
74-
const string DEFAULT_SPACEDCHARS = ",;{}*+-=/%<>|&!^";
74+
const string DEFAULT_SPACEDCHARS = ",;*+-=/%<>|&!^";
7575
const string DEFAULT_ADDSPACEAFTER = "if for while do catch with";
7676

7777
private bool disableAutoCloseBraces = DEFAULT_DISABLE_CLOSEBRACE;

0 commit comments

Comments
 (0)