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

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

Introduction

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

Prototype

String ACTION_UNSELECT_PREVIOUS_OCCURENCE

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

Click Source Link

Usage

From source file:com.intellij.find.editorHeaderActions.RemoveOccurrenceAction.java

License:Apache License

public RemoveOccurrenceAction(EditorSearchComponent editorSearchComponent) {
    super(editorSearchComponent);

    copyFrom(ActionManager.getInstance().getAction(IdeActions.ACTION_UNSELECT_PREVIOUS_OCCURENCE));
    getTemplatePresentation().setIcon(AllIcons.Actions.RemoveMulticaret);

    registerShortcutsForComponent(Arrays.asList(getShortcutSet().getShortcuts()),
            editorSearchComponent.getSearchField());
}