Hook on Live Template generation
Answered
Hello,
I am working on a plugin and want to track usage statistics for a live template in the plugin. The live template is generating code as expected, but I want to call additional code on generation to ping our server. Is there a hook to call custom code when a live template is generated by a user?
Thank you
Please sign in to leave a comment.
You can implement a "dummy" com.intellij.codeInsight.template.impl.TemplateOptionalProcessor, see com.intellij.codeInsight.template.impl.CodeBlockReformattingProcessor as base.
PS: Please note that collecting/sending such statistics which may exhibit personal data requires explicit consent from users.
Thank you for your quick response!