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

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

Introduction

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

Prototype

String MOVE_ELEMENT_LEFT

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

Click Source Link

Usage

From source file:org.intellij.grammar.BnfMoveLeftRightTest.java

License:Apache License

private void doExpressionTestRightLeft(String text, String after) {
    doExpressionTestRight(text, after);// www  . j a v a  2  s .c om
    myFixture.performEditorAction(IdeActions.MOVE_ELEMENT_LEFT);
    myFixture.checkResult("r ::= " + text);
}