Environment
- TeXstudio: any
- Qt: 6.10
- OS: Win10
- TeX distribution: miktex
Description
I started using package systeme. Command \systeme knows several boolean keys. For example ignore empty eq (true by default):
\documentclass[11pt,a5paper]{article}
\usepackage{systeme}
\begin{document}
\systeme[ignore empty eq]{
7x - 6 = 22 | L
}
\end{document}
The cwl contains ignore empty eq#true,false, thus the completer offers ignore empty eq after typing ignore empty. After using this you need to type = and then force txs to reopen the completer list that offers values true and false. After choosing one value and typing , the completer opens and offers true and false again. I would expect that a key is needed before offering a value.
Is it normal/intended that the possible values are offered again?