You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wolfram-mode seems not to recognize \[...] as a matched pair of delimiters since the opening bracket is (as Emacs sees it) escaped. This should be fixed in the syntax-table as described in Fanael/rainbow-delimiters#14.
Additionally, the unmatched delimiter causes Emacs not to indent properly. In particular, the following code
M$Foo = {
S[20] == {
Name -> \[kappa],
Mass -> 5,
}
}
will get indented to
M$Foo = {
S[20] == {
Name -> \[kappa],
Mass -> 5,
}
}
which is not exactly desirable.
The text was updated successfully, but these errors were encountered:
Wolfram-mode seems not to recognize
\[...]
as a matched pair of delimiters since the opening bracket is (as Emacs sees it) escaped. This should be fixed in the syntax-table as described in Fanael/rainbow-delimiters#14.Additionally, the unmatched delimiter causes Emacs not to indent properly. In particular, the following code
will get indented to
which is not exactly desirable.
The text was updated successfully, but these errors were encountered: