Hi everyone,
I’m using Sublime Text 4 with the LaTeXTools
package andI’ve encountered an issue where autocompletions strip the \
from LaTeX commands when I press Tab
. For example:
- When I type
\be
, Sublime suggests\begin
, but pressingTab
results inbegin
(without the\
).
Things I’ve tried so far:
- Confirmed the issue is located in LaTeXTools package (It fixes itself when said package is disabled)
- Removed all snippets from the LaTeXTools package
Interestingly, disabling the LaTeXTools
package entirely resolves the issue, so it seems LaTeXTools
How can I prevent LaTeXTools
from stripping the \
in autocompletions?
Thanks in advance.
Interestingly, other snippets that I’ve created also break in the same way (for instance, I created a snipped that turned \listaromana into
\begin{enumerate}[label=(\roman*)]
\end{enumerate}
But sometimes (and only sometimes), it also removes the first \ from the snippet.