Search code examples
intellij-ideaintellij-plugin

Custom notification in Intellij reacting to string in console


Is it possible to create custom notifications in Intellij? For example: I run script in Intellij console and want to get notified when string "are available for use" is printed.


Solution

  • You can achieve that by writing a plugin that contains an implementation of the Filter interface and a ConsoleFilterProvider that will instantiate your Filter.