主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Jakub Chrzanowski
活动总数
1394
最后的活动
2025年04月24日 07:29
成员加入日期
2020年01月22日 06:34
关注
0 名用户
关注者数
1 名用户
投票数
8
订阅数
571
活动概览
文章(0)
帖子(0)
评论(815)
按最近的活动排序
最近的活动
投票数
创建于
2020年07月20日 08:29
You can read information from the AnActionEvent event in the actionPerformed method. Check the GitShowCommitInLogAction file for more details.
社区
IntelliJ IDEA Open API and Plugin Development
How to get git log the selected row Data?
1 票
创建于
2020年07月14日 06:28
You can create an Editor using one of the EditorFactory.createEditor methods. Editor object contains a method that provides JComponent which you can render inside the ToolWindow. panel.add(editor.g...
社区
IntelliJ IDEA Open API and Plugin Development
How to mirror editor behavior in a custom tool window?
1 票
创建于
2020年07月13日 20:37
There is a built-in UI Inspector tool available, which will help you inspect the existing UI implementation. The UI Inspector is a tool to interrogate elements of the IntelliJ IDEA UI to get an int...
社区
IntelliJ IDEA Open API and Plugin Development
How to build this interface in Plugin Settings
1 票
创建于
2020年07月13日 05:23
Such check with PluginManagerCore wouldn't be necessary anymore because your implementation defined in the withMarkdown.xml file will be available in your plugin only in case when Markdown is enabl...
社区
IntelliJ IDEA Open API and Plugin Development
Optional dependency - JetBrains Markdown plugin
1 票
创建于
2020年07月13日 05:05
Steven, That's the idea behind the since/until build attributes: if you release the plugin with such compatibility range defined, only the matching IDEs will be able to get this specific update. Ch...
社区
IntelliJ IDEA Open API and Plugin Development
Will older IJ versions select correct plugin after uploading a plugin with a restriction on a later IJ version?
1 票
已编辑于
2020年07月13日 04:56
Already answered on StackOverflow.
社区
IntelliJ IDEA Open API and Plugin Development
Implementing IntelliJ Completion Contributor for the file top level
1 票
创建于
2020年07月13日 04:23
You can solve it in two ways: 1. Check if the plugin that you depend on is available using PluginManager as you already did. This method requires a bit of caution because you may use 3rd party clas...
社区
IntelliJ IDEA Open API and Plugin Development
Optional dependency - JetBrains Markdown plugin
1 票
创建于
2020年07月07日 10:31
In your Gradle configuration, you have set plugins twice overriding the list just with Kotlin. Merge it into one list of plugins instead: intellij { plugins 'android', 'java', 'maven', 'gradle',...
社区
IntelliJ IDEA Open API and Plugin Development
Cannot resolve language with id ''JVM'' and "Kotlin"
1 票
创建于
2020年07月06日 05:44
Chris, The name from before the refactoring is available in refactoringStarted as: beforeData.getUserData(RefactoringEventData.STRING_PROPERTIES)
社区
IntelliJ IDEA Open API and Plugin Development
RefactoringEventListener is not working for Local Variable
1 票
创建于
2020年06月30日 19:33
You may try using the KeymapManager to remove existing shortcut: Keymap active = KeymapManager.getInstance().getActiveKeymap();
社区
IntelliJ IDEA Open API and Plugin Development
How to override built-in action's key mapping?
1 票
«
第一页
‹
上一页
下一页
›
最后
»