Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Sergiy Dubovik
Total activity
88
Last activity
December 05, 2019 17:37
Member since
September 06, 2006 13:44
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
31
Activity overview
Posts (19)
Comments (38)
Sort by recent activity
Recent activity
Votes
Created
June 14, 2011 13:13
Thanks. Found several, after looking at them for half a day they don't look that complex after all.Is it possible to implement just syntax highlighting? I registered<fileTypeFactory implementation=...
Community
IntelliJ IDEA Open API and Plugin Development
Source for simple language plugin
0 votes
Created
June 10, 2012 06:53
I don't remember exactly, it was a year ago. Try to start parsing something, I don't think I did something special, at least from git log can't see anything. You seem to have all required pieces so...
Community
IntelliJ IDEA Open API and Plugin Development
Source for simple language plugin
0 votes
Created
September 06, 2006 14:30
What exactly do you want to do? "EditorCopy" is notan event.If you want to execute an action programmatically,you can callActionManager.getInstance().getAction(id).actionPerformed() with a correct ...
Community
IntelliJ IDEA Open API and Plugin Development
Fire an event from a plugin
0 votes
Created
September 06, 2006 15:06
Great, thanks!Sergiy
Community
IntelliJ IDEA Open API and Plugin Development
Fire an event from a plugin
0 votes
Created
October 17, 2006 12:18
The common design rule is to use DialogWrapper as thecommon base class for dialogs. We know that it works. :) You can findplenty of examples of its use in the plugins provided in the development ki...
Community
IntelliJ IDEA Open API and Plugin Development
Dialog management for a settings window
0 votes
Created
October 17, 2006 13:37
SD> I spent hours trying to get DialogWrapper towork, but I failed.Why?I guess the most common mistake is not to callinit().Correct. I found an example in devkit sources, NewActionDialog and didn't...
Community
IntelliJ IDEA Open API and Plugin Development
Dialog management for a settings window
0 votes
Created
September 27, 2007 11:35
Have you tried to set order of severities?
Community
IntelliJ IDEA Open API and Plugin Development
Create new severity for inspection
0 votes
Created
September 27, 2007 11:43
This version seems to work: severites = new ArrayList(); for(int i = 0; i < severityRegistrar.getSeveritiesCount(); i++){ severites.add(severityRegistrar.getSeverityByIn...
Community
IntelliJ IDEA Open API and Plugin Development
Create new severity for inspection
0 votes
Created
October 30, 2007 11:54
Could you please be more specific. How to use CompletionData, how can I add my items in it? Thanks.
Community
IntelliJ IDEA Open API and Plugin Development
Comments, plain text code completion
0 votes
Created
December 23, 2008 18:38
Thanks Dmitry,Actually I don't need to know all lookup items, it's enough to know that there is at least one. Is it possible to find out if "there is something to suggest"?I'm trying to port to 8th...
Community
IntelliJ IDEA Open API and Plugin Development
SmartCompletion results
0 votes
«
First
‹
Previous
Next
›
Last
»