summaryrefslogtreecommitdiff
path: root/platform/platform-impl/src/com/intellij/ide/ui/search/DefaultSearchEverywhereTabsCustomization.kt
blob: 8e446ca5a70ddf4f79bfacb95f3be857b1de6e5d (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.ide.ui.search

class DefaultSearchEverywhereTabsCustomization: SearchEverywhereTabsCustomization {

  override fun getContributorsWithTab(): List<String> =
    listOf("ClassSearchEverywhereContributor", "FileSearchEverywhereContributor", "SymbolSearchEverywhereContributor",
           "ActionSearchEverywhereContributor", "Vcs.Git")

}