Open
Description
Only happening inside tag based CFCs. Fully scripted CFCs and <cfscript>
blocks in .cfm files are good.
Given the following code, '|' being the cursor position:
<cffunction>
<cfscript>
if (a == b)
{|}
</cfscript>
</cffunction>
Hitting enter comes out like:
<cffunction>
<cfscript>
if (a == b)
{
|
}
</cfscript>
</cffunction>