I want to create an intention action that operates...
# intellij-plugins
e
I want to create an intention action that operates on a KtProperty. I've implemented PsiElementBaseIntentionAction and I want to check if the element passed to
isAvailable
is of type
KtProperty
. For this, I need the Kotlin PSI libraries in the classpath. How would I add the the Kotlin PSI libs to my plugin? simple smile