Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ data class MenuItem(
val isVisible: Boolean = true,
val shortcut: String? = null,
val subItems: List<MenuItem> = emptyList(),
val action: () -> Unit,
/**
* Optional tooltip tag to look up under the plugin's tooltip category
* (`plugin_<pluginId>`). When null, the IDE composes a tag using the
Expand All @@ -64,7 +65,7 @@ data class MenuItem(
* both the sidebar and the toolbar surfaces.
*/
val tooltipTag: String? = null,
val action: () -> Unit

)

data class ContextMenuContext(
Expand Down
Loading