我正在尝试使用PSI为Intellij实现Golang代码生成/自动完成插件,因此我需要在Golang插件上添加依赖项。这看起来像我想做的-https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_dependencies.html
现在的问题是如何确定我正在使用的插件的ID以及名称和版本? It does not seem to be anywhere in the plugin preferences
PSI元素属于com.goide.psi.impl.GoTypeImpl类,并且类似。
答案 0 :(得分:1)
没有简单的方法来获取插件ID。您可以检查plugin.xml
来获取它。对于Go插件,它是org.jetbrains.plugins.go
。
版本可以在plugin page上找到。
答案 1 :(得分:1)