Ok, let me expand on this. How do I turn off ALL automatic code inserts.
I type in <td> then </ and ME inserts </td>.
I have turned off automatically make suggestions inserts everywhere I could find it. I have removed every template in JSP and HTML.
This is a problem because I do not code in a linear fashion. I start a scriplet such as:
<%
for ( int c = 0; c < mySize; c++ )
{
}
%>
This completes the block. I then move the cursor to the blank line between the curly braces and I type in
%>
<%
which is a prelude to putting in HTML. I should have at this point
<%
for ( int c = 0; c < mySize; c++ )
{
%>
<%
}
%>
instead I have
<%
for ( int c = 0; c < mySize; c++ )
{
%>
<% %>
}
%>
So I need to delete the automatically inserted %>