List of usage examples for com.intellij.openapi.actionSystem IdeActions MOVE_ELEMENT_RIGHT
String MOVE_ELEMENT_RIGHT
To view the source code for com.intellij.openapi.actionSystem IdeActions MOVE_ELEMENT_RIGHT.
Click Source Link
From source file:org.intellij.grammar.BnfMoveLeftRightTest.java
License:Apache License
private void doExpressionTestRight(String text, String after) { myFixture.configureByText("_.bnf", "r ::= " + text); myFixture.performEditorAction(IdeActions.MOVE_ELEMENT_RIGHT); myFixture.checkResult("r ::= " + after); }