New to creating plugins. Trying to like a color di...
# intellij-plugins
a
New to creating plugins. Trying to like a color display in gutter for a kotlin file. Is the java PSI api going to work for a Kotlin file, and if not, where do I get the kotlin PSI dependency? (I've started with the github template for plugins) I'm unable to import PsiIdentifier 😕
m
Java PSI is not going to work for Kotlin files. You can try UAST for both languages.
a
Thanks Mike. I'll try that.