Home
IDEs Support (IntelliJ Platform) | JetBrains
Submit a request
Community
Sign in
Breandan Considine
Total activity
33
Last activity
April 29, 2018 05:51
Member since
November 02, 2016 23:44
Following
0 users
Followed by
0 users
Votes
5
Subscriptions
12
Activity overview
Posts (6)
Comments (10)
Sort by recent activity
Recent activity
Votes
Created
April 29, 2018 05:51
Just chiming in to say the above fix worked for me. Not sure why this is necessary, but thanks!
Community
IntelliJ IDEA Open API and Plugin Development
How to load classes in a plugin with ServiceLoader?
0 votes
Created
January 08, 2018 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"/>
Community
IntelliJ IDEA Open API and Plugin Development
How to change the text/icon displayed for each file/directory in project view
0 votes
Created
January 08, 2018 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"/>
Community
IntelliJ IDEA Open API and Plugin Development
Associating icons with folders.
0 votes
Created
December 22, 2017 03:56
Just chiming in to say this was super useful. Thanks Vladimir!
Community
IntelliJ IDEA Open API and Plugin Development
find virtual file for relative path under content roots
0 votes
Created
August 31, 2017 15:43
Never mind, just found the component: the component for the entire editor including the scrollbars, error stripe, gutter and other decorations.
Community
IntelliJ IDEA Open API and Plugin Development
Painting over the Editor
0 votes
Created
August 31, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
Painting over the Editor
0 votes
Created
July 27, 2017 16:26
Unfortunately this answer is no longer visible. What did it say?
Community
IntelliJ IDEA Open API and Plugin Development
HighlightManager - how to enable F3 functionality
0 votes
Created
July 27, 2017 16:16
HighlightManager is exactly what we need, thanks Dmitry!
Community
IntelliJ IDEA Open API and Plugin Development
Alternative to LivePreviewController for displaying SearchResults
0 votes
Created
December 05, 2016 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
What happens when multiple plugins register a custom shortcut to the same component?
0 votes
Created
November 03, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
Inconsistent behavior rewriting shortcuts for Mac OS
0 votes