branch: externals/auctex commit bf0330029614c7e099fa2978856ae1539168efe3 Author: Ikumi Keita <ik...@ikumi.que.jp> Commit: Ikumi Keita <ik...@ikumi.que.jp>
Add M-RET support for smallmatrix variants * style/mathtools.el ("mathtools"): Add smallmatrix variant environments to `LaTeX-item-list'. --- style/mathtools.el | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/style/mathtools.el b/style/mathtools.el index d6b09881a4..4643df7e9a 100644 --- a/style/mathtools.el +++ b/style/mathtools.el @@ -446,6 +446,17 @@ Put line break macro on the last line. Next, insert an ampersand." ("Bmatrix*" . LaTeX-item-equation) ("vmatrix*" . LaTeX-item-equation) ("Vmatrix*" . LaTeX-item-equation) + ("smallmatrix*" . LaTeX-item-equation) + ("psmallmatrix" . LaTeX-item-equation) + ("psmallmatrix*" . LaTeX-item-equation) + ("bsmallmatrix" . LaTeX-item-equation) + ("bsmallmatrix*" . LaTeX-item-equation) + ("Bsmallmatrix" . LaTeX-item-equation) + ("Bsmallmatrix*" . LaTeX-item-equation) + ("vsmallmatrix" . LaTeX-item-equation) + ("vsmallmatrix*" . LaTeX-item-equation) + ("Vsmallmatrix" . LaTeX-item-equation) + ("Vsmallmatrix*" . LaTeX-item-equation) ("dcases" . LaTeX-mathtools-item-cases) ("dcases*" . LaTeX-mathtools-item-cases) ("rcases" . LaTeX-mathtools-item-cases)