[Tex/LaTex] TeXstudio: Don’t autocomplete “content…” in block environments

auto-completiontexstudio

Each time I use autocompletion in TeXstudio for a block environment, e.g.

\begin{itemize}
content...
\end{itemize}

the "content…" is automatically inserted. Is it possible to disable that? It slows me down, because I need to delete it before filling in the contents of the block. I would like the autocomplete to produce just e.g.

\begin{itemize}
                        <-- Just a blank line here
\end{itemize}

A partial solution I found: Use CTRL+RIGHT to jump to the "content…" and overwrite it. But as I said, I would prefer not to have it there at all.

Best Answer

You need to disable insert arguments

Go to Options > Configure TexStudio > Make sure that Advanced Options is checked > Completion > Uncheck Insert arguments

Related Question