-
-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
\left(
inserts incorrect paired brace
#3493
Comments
I agree but on the condition that we can ensure the |
\left(
does not autocomplete with \right)
\left(
inserts incorrect paired brace
That did not fix my issue. My test, characterized by: $\left<caret> $ typing expected: $\left(<caret>\right) $ actual: $\left(<caret>) $ the unit test described above can be characterized below: fun testCorrectPairedBrace() {
myFixture.configureByText(LatexFileType, """$\left<caret>$""")
myFixture.type('(')
myFixture.checkResult("""$\left(<caret>\right)$""")
} Is not fixed by Please reopen/ |
Thanks, closed this by mistake |
In a math environment, doing
\left(
should, imo, automatically insert\right)
rather than)
IE
\left<carret>
-> type(
->\left(<caret>)
expected
\left<carret>
-> type(
->\left(<caret>\right)
The text was updated successfully, but these errors were encountered: