texstudio-org / texstudio

TeXstudio is a fully featured LaTeX editor. Our goal is to make writing LaTeX documents as easy and comfortable as possible.
http://www.texstudio.org/
GNU General Public License v3.0
2.78k stars 344 forks source link

Auto-completion of \\[ #3563

Open tercelxy opened 6 months ago

tercelxy commented 6 months ago

Environment

Expected behavior

Actual behavior

When entering the code \\[, the result given by the auto-completion is \\[\]. Can you correct it to the correct form \\[]? Thank you.

How to reproduce

sunderme commented 6 months ago

I have experimented a bit but there is no solution here. txs parser for parenthesis can not distinguish between \[ and \\[. If we add the later as special element, the completion with ] leads to problems as this also matches with [ and txs can't handle that ambiguity.

tercelxy commented 6 months ago

Thank you for your efforts