Extend the IntelliJ Platform by creating plugins, custom language support, or UI themes. Quick Start Guide Basics of working with the IntelliJ Platform and creating plugins. Get started Developing a Plugin Get started building IDE plugins.
IntelliJ Platform Gradle Plugin 2.x requires the following minimal versions: IntelliJ Platform: 2022.3 Gradle: 8.2 See the Gradle Installation guide on how to upgrade. Java Runtime: 17 See Gradle JVM in Settings | Build, Execution, Deployment | Build Tools | Gradle. ...
用IDEA 2023.1开发插件,提示No Java SDK of appropriate version found. In addition to the IntelliJ Platform Plugin SDK, you need to define a JDK with the same Java version (JDK_17).,也就是说要用JDK17 如果用IDEA 2023.1 JDK17开发的插件,别人其他低版本的idea,使用JDK8,会有兼容性的问题吗,不然...
官网下载 IntelliJ 后直接安装启动。 启动完成后点击Create New Project创建新的项目,在新的界面中点击左侧IntelliJ Platform Plugin,右侧选择 Project SDK,若第一次创建插件项目下拉列表没有选项,则需点击右侧New指定 SDK 目录。 完成后点击Next进入下一步,在弹出框中选择 JDK,最后点击Finish。 创建Action plugin.xml ...
IntelliJPlatformSDKplugin操作⽂档内容IntelliJ Platform SDK 操作⽂档内容 IntelliJ Plateform SDK 中不允许直接修改⽂件内容。必须要包裹在 ApplicationManager.getApplication().runWriteAction(Runnable { CommandProcessor.getInstance().executeCommand(project, Runnable { // 具体操作 }, "","")})代码中。Appl...
你在使用IntelliJ IDEA打开一个Project时,IDEA会对该Project中的各个单词、文件名、文件类型等各种元素生成索引。为什么IDEA中的搜索功能能够快速找到指定的元素,就是这些索引的功劳,当然索引不只能IDEA自己用,我们开发的插件也能用,具体可以参考Jetbrains的官方文档:File-Based Indexes | IntelliJ Platform Plugin SDK...
IntelliJ Platform Plugin SDK 就是开发 IntelliJ 平台插件的SDK, 是基于 JDK 之上运行的,类似于开发 Android 应用需要 Android SDK。 导航到File | Project Structure,选择对话框左侧栏Platform Settings下的SDKs 点击+按钮,先选择JDK,指定 JDK 的路径;再创建IntelliJ Platform Plugin SDK,指定 home path 为 IDEA ...
IntelliJ IDEA Open API and Plugin Development Followed by 105 people New post Show all Sort by newest post votes comments Pinned Yann Cebron Last update2 years ago [ANN] JetBrains Platform Slack for Plugin Developers 19 0 A、 Last update1 day ago ...
3、配置 IntelliJ Platform Plugin SDK IntelliJ Platform Plugin SDK 就是开发 IntelliJ 平台插件的 SDK,是基于 JDK 之上运行的,类似于开发 Android 应用需要 Android SDK。 导航到 File | Project Structure,选择对话框左侧栏 Platform Settings 下的 SDKs 进行添加操作,如下图所示: ...
配置SDK,如果你把IDEA源码也下载了,那么还需要配置一下源码的路径 添加SDK.jpg 选择源码路径.jpg 环境搭建好了,那么接下来我们就创建一个简易的插件工程,依次点击File->New->Project然后在弹出框左栏选择Gradle,然后在右侧一栏勾选IntelliJ Platform Plugin(如果想要使用Kotlin进行开发就把Kotlin那一项也勾选上) ...