主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Aleksey Pivovarov
活动总数
801
最后的活动
2024年09月23日 14:52
成员加入日期
2013年08月06日 15:41
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
444
活动概览
文章(0)
帖子(0)
评论(357)
按最近的活动排序
最近的活动
投票数
创建于
2020年09月12日 13:01
>Is there a way to disable this behaviour?I'm not sure I understand the problem.If you're having problems with layout generated by UI Designer from .form file, it can be replaced with plain Swing i...
社区
IntelliJ IDEA Open API and Plugin Development
How to access the components of a custom Tool Window post-creation
0 票
已编辑于
2020年09月04日 16:54
This depends on "GetSourceCode" implementation (what it does with AnActionEvent). You can use "ActionUtil#invokeAction" using "CheckinProjectPanel" as target component and ActionPlaces#UNKNOWN, but...
社区
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 票
创建于
2020年09月04日 14:50
The code above declares new AnAction, but never calls it.Why do you need AnAction there? Is it possible to extract "GetSourceCode" logic into a static utility method or method in some Service?
社区
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 票
已编辑于
2020年08月31日 10:24
You can use "com.intellij.openapi.vcs.checkin.CheckinHandlerFactory". <extensions defaultExtensionNs="com.intellij"> <checkinHandlerFactory implementation="com.MyPluginCheckinHandlerFactory"/></ex...
社区
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 票
已编辑于
2020年08月24日 11:32
Do you specify 'depends' in your custom updatePlugins.xml? Smth like `<plugin id="" > <depends>...</depends> </plugin>`?Note that it might not work with 'simple' format of this file: https://intell...
社区
IntelliJ IDEA Open API and Plugin Development
How to control one plugin not show on different IDE Plugin Marketplace?
0 票
创建于
2020年08月24日 10:42
Because this plugin depends on PHP language from platform. IDEs that do not provide it hide plugin from marketplace as incompatible.https://github.com/Haehnchen/idea-php-laravel-plugin/blob/master/...
社区
IntelliJ IDEA Open API and Plugin Development
How to control one plugin not show on different IDE Plugin Marketplace?
0 票
创建于
2020年08月19日 13:41
>Editor.logicalPositionToXY/offsetToXYThese are absolute numbers. So you might need to adjust for scrollbar position by substracting Editor.getScrollingModel.getVerticalScrollOffset()/getHorizontal...
社区
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 票
已编辑于
2020年08月19日 13:35
Note that "showInBestPositionFor" is likely to show popup near caret, rather than at current mouse position.You can use "showInScreenCoordinates" or "show(RelativePoint)" and "new RelativePoint(edi...
社区
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 票
已编辑于
2020年08月19日 13:30
createComponentPopupBuilder(e.getEditor().getComponent(),e.getEditor().getComponent()) This line takes Editor component and tries to show in in a popup. Swing does not allow to show same component ...
社区
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 票
创建于
2020年08月19日 11:31
RangeHighlighter start/end offsets are "number of symbols since the start of file".You can convert LogicalPosition to offset using Editor.logicalPositionToOffset. See also https://jetbrains.org/int...
社区
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 票
«
第一页
‹
上一页
下一页
›
最后
»