I have a LaTeX editing environment that does some assistive stuff such as auto-indenting, closing parentheses, etc.
However, one of the things that it does is unknown to me, and is difficult to search for. If I type an empty set of braces, it replaces them with
{}<++>
If I type two empty sets, for example when I'm setting up a fraction \frac{}{} what I actually get is
\frac\left\{ } \right\}<++>}<++>
Is this a problem? What does <++> do?
Edit: This is using Vim-LaTex / LaTeX-Suite
<++>is a regex pattern for the plugin in order to allow code completion. Like placeholders. – Paulo Cereda Jun 15 '11 at 14:14`/, which will insert\frac{}{<++>}<++>, placing the cursor under the first}. That means you can just type the numerator, pressCrtl-J, type the denominator, pressCrtl-Jagain, and continue typing after the fraction. – Jan Hlavacek Jun 15 '11 at 18:56