How can I make this command not wrap things like \item?
For example:
\begin{enumerate}
\item this might be a long paragraph that spans multiple lines
\item blah
\end{enumerate}
if I run "gq}" with the cursor on the first item (first letter of this), it produces this output:
\begin{enumerate}
\item this might be a long
paragraph that spans multiple
lines \item blah \end{enumerate}
This is what I want:
\begin{enumerate}
\item this might be a long
paragraph that spans multiple
lines
\item blah
\end{enumerate}
If I can somehow get vim to recognize that the token \item signifies the end of a paragraph, I'm thinking it will work correctly. How would I go about doing that, though?