Adding an action to existing line marker provider
Answered
Hi!
I've been wondering if it's possible to add some custom action to existing line marker provider (e.g. RunLineMarkerProvider/TestRunLineMarkerProvider) without creating new line marker provider?
Put it last in the list of Run/Debug... actions.
Thanks in advance!
Please sign in to leave a comment.
For this specific case, there is com.intellij.execution.lineMarker.RunLineMarkerContributor
Samples: https://plugins.jetbrains.com/intellij-platform-explorer?extensions=com.intellij.runLineMarkerContributor
Reference https://plugins.jetbrains.com/docs/intellij/run-configuration-management.html#running-from-the-gutter
Thanks! Going to see into it.