主页
IDEs Support (IntelliJ Platform) | JetBrains
提交请求
社区
登录
Breandan Considine
活动总数
33
最后的活动
2018年04月29日 05:51
成员加入日期
2016年11月02日 23:44
关注
0 名用户
关注者数
0 名用户
投票数
5
订阅数
12
活动概览
帖子(6)
评论(10)
按最近的活动排序
最近的活动
投票数
创建于
2018年04月29日 05:51
Just chiming in to say the above fix worked for me. Not sure why this is necessary, but thanks!
社区
IntelliJ IDEA Open API and Plugin Development
How to load classes in a plugin with ServiceLoader?
0 票
创建于
2018年01月08日 21:11
If you can't see your icon in the project structure view, it's important to set the tag priority: <iconProvider implementation="..." order="first"/>
社区
IntelliJ IDEA Open API and Plugin Development
How to change the text/icon displayed for each file/directory in project view
0 票
创建于
2018年01月08日 21:10
If you can't see your icon in the project structure view, it's important to set the tag priority: <iconProvider implementation="..." order="first"/>
社区
IntelliJ IDEA Open API and Plugin Development
Associating icons with folders.
0 票
创建于
2017年12月22日 03:56
Just chiming in to say this was super useful. Thanks Vladimir!
社区
IntelliJ IDEA Open API and Plugin Development
find virtual file for relative path under content roots
0 票
创建于
2017年08月31日 15:43
Never mind, just found the component: the component for the entire editor including the scrollbars, error stripe, gutter and other decorations.
社区
IntelliJ IDEA Open API and Plugin Development
Painting over the Editor
0 票
创建于
2017年08月31日 14:38
You're right, the scrolling behavior was implementation related, but it needed to be updated for editor related events. How can I paint over the sidebar gutter (where the line numbers are displayed...
社区
IntelliJ IDEA Open API and Plugin Development
Painting over the Editor
0 票
创建于
2017年07月27日 16:26
Unfortunately this answer is no longer visible. What did it say?
社区
IntelliJ IDEA Open API and Plugin Development
HighlightManager - how to enable F3 functionality
0 票
创建于
2017年07月27日 16:16
HighlightManager is exactly what we need, thanks Dmitry!
社区
IntelliJ IDEA Open API and Plugin Development
Alternative to LivePreviewController for displaying SearchResults
0 票
创建于
2016年12月05日 05:02
In case anyone is interested, I figured out how to hijack the keystrokes from another plugin that has registered a custom shortcut to a component via AnAction.registerCustomShortcutSet(). You need ...
社区
IntelliJ IDEA Open API and Plugin Development
What happens when multiple plugins register a custom shortcut to the same component?
0 票
创建于
2016年11月03日 17:23
Here is a solution for fetching multiple shortcuts, in case someone else runs into the same issue: AnAction action = ActionManager.getInstance().getAction(actionId); final ShortcutSet short...
社区
IntelliJ IDEA Open API and Plugin Development
Inconsistent behavior rewriting shortcuts for Mac OS
0 票