Create plugin that interacts with and extends the Task Management plugin?

Is it possible to create a plugin that interacts with and extends the Task Management functionality in Intellij?

For example, my plugin would need to store state that corresponds to the current Task & Context, and respond to the event of switching to a different Task or Context. Also, if possible, piggyback on the UI dialogs that popup when creating a new Task, to expose some additional options that would feed into the stored state.

Is any of this possible?

Thanks

0
1 comment

Hi, you can use com.intellij.tasks.TaskManager to access current task information. To track task activity, use TaskManager.addTaskListener(...).

0

Please sign in to leave a comment.