Intellij插件开发,SDK源文件内容

Intellij plugin development, SDK source file content

我不知道如何添加 Intellij SDK 插件开发源文件以便能够导航文件。

现在我只得到一个反编译列表。我也想要评论。

注意,我知道有 https://github.com/JetBrains/intellij-community/blob/master/platform/platform-impl/src/com/intellij/openapi/editor/actions/

但是这些不应该已经包括在内了吗?

有人可以解释一下如何添加源吗?我尝试了模块设置,但无法正常工作。

如果您正在开发插件,或者 viewing/modifying 现有插件,我建议您查看 IntelliJ SDK docs, especially the prerequisites 部分,其中解释了如何设置合适的开发环境。

基本上,您应该使用

克隆 IntelliJ 社区
git clone git://git.jetbrains.org/idea/community.git idea

然后配置一个IntelliJ SDK,在Sourcepath选项卡中,添加本地git repo以附加源代码。