Hi Raghuzar, Rahguzar <rahgu...@mailbox.org> writes:
>>> One question about it: One problem I have had is that, if I have >>> something like >>> >>> \begin{align} >>> [\hat{X},\hat{P}] = i\hbar >>> \end{align} >>> >>> the commutator gets folded as an optional argument to the \begin. >>> It is possible to not have this effect with new machinery without >>> specifying \begin as not taking any optional arguments? >> >> Could you please share your tex folding config, or better, the part >> relevant for folding \begin{align}? > > It is this: > > (setq TeX-fold-macro-spec-list > `(("⬖ {1}" ("begin")) > ("⬗ {1}" ("end")))) With the new folding signature support, you can achieve the desired effect using either ;; At most 1 args. (setq TeX-fold-macro-spec-list `((("⬖ {1}" . 1) ("begin")) (("⬗ {1}" . 1) ("end")))) or ;; At most 0 optional, 1 required args. (setq TeX-fold-macro-spec-list `((("⬖ {1}" . (0 . 1)) ("begin")) (("⬗ {1}" . (0 . 1)) ("end")))) --- Another approach here would be prettification, assuming you're OK with specifying each environment. I use something like: (with-eval-after-load 'tex-mode (mapc (lambda (sym) (add-to-list 'tex--prettify-symbols-alist sym)) '(("\\begin{equation}" . ?↴) ("\\end{equation}" . ?↲) ("\\begin{align}" . ?⌈) ("\\end{align}" . ?⌋) ("\\begin{multline}" . ?⎧) ("\\end{multline}" . ?⎭)))) Paul _______________________________________________ bug-auctex mailing list bug-auctex@gnu.org https://lists.gnu.org/mailman/listinfo/bug-auctex