File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
src/main/kotlin/io/runescript/plugin/ide/searchEverywhere Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import com.intellij.openapi.actionSystem.AnAction
7
7
import com.intellij.openapi.actionSystem.AnActionEvent
8
8
import com.intellij.openapi.actionSystem.CommonDataKeys
9
9
import com.intellij.openapi.project.Project
10
+ import com.intellij.util.containers.ContainerUtil
10
11
11
12
class RsSearchEverywhereContributor (event : AnActionEvent ) : AbstractGotoSEContributor(event),
12
13
SearchFieldActionsContributor {
@@ -58,6 +59,16 @@ class RsSearchEverywhereContributor(event: AnActionEvent) : AbstractGotoSEContri
58
59
}
59
60
}
60
61
62
+ override fun createRightActions (pattern : String , onChanged : Runnable ): List <AnAction > {
63
+ return ContainerUtil .emptyList();
64
+ }
65
+
66
+ @Suppress(" unused" )
67
+ fun createRightActions (registerShortcut : (AnAction ) -> Unit , onChanged : Runnable ): List <AnAction > {
68
+ // For compatability with 241
69
+ return ContainerUtil .emptyList();
70
+ }
71
+
61
72
companion object {
62
73
fun createTriggerFilter (project : Project ): PersistentSearchEverywhereContributorFilter <RsTriggerRef > {
63
74
val items = RsTriggerRef .forAllTriggers()
You can’t perform that action at this time.
0 commit comments