Example usage for com.intellij.openapi.actionSystem IdeActions MOVE_ELEMENT_RIGHT

List of usage examples for com.intellij.openapi.actionSystem IdeActions MOVE_ELEMENT_RIGHT

Introduction

In this page you can find the example usage for com.intellij.openapi.actionSystem IdeActions MOVE_ELEMENT_RIGHT.

Prototype

String MOVE_ELEMENT_RIGHT

To view the source code for com.intellij.openapi.actionSystem IdeActions MOVE_ELEMENT_RIGHT.

Click Source Link

Usage

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);
}