Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Peter Gromov
Total activity
2258
Last activity
May 09, 2023 12:44
Member since
July 25, 2008 18:59
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
739
Activity overview
Articles (0)
Posts (3)
Comments (1516)
Sort by recent activity
Recent activity
Votes
Created
November 21, 2013 09:02
Please attach sources for this jar (taken from IntelliJ IDEA Community Edition released at the same time, http://www.jetbrains.org/display/IJOS/Download) and put a breakpoint there.
Community
IntelliJ IDEA Open API and Plugin Development
I want to add completion with no annotations.
0 votes
Created
November 21, 2013 09:44
Thanks. The solution for your contributor would be to be executed before PhpCompletionContributor. For this, just add order="first" to the completion.contributor tag in plugin.xml
Community
IntelliJ IDEA Open API and Plugin Development
I want to add completion with no annotations.
0 votes
Created
January 09, 2014 17:06
You can implement FileDocumentManagerListener and listen to save events using project/application.getMessageBus().connect().subscribe(AppTopics.FILE_DOCUMENT_SYNC, listener)
Community
IntelliJ IDEA Open API and Plugin Development
How can i intercept the Save All action?
0 votes
Created
January 07, 2014 12:46
No, line comment action is not supposed to trigger this event, and it doesn't for me. If it does for you, please provide a stack trace when this event occurs.
Community
IntelliJ IDEA Open API and Plugin Development
contentsChanged vs beforeContentsChange
0 votes
Created
February 24, 2014 14:47
You're right, everything might be a bit inconsistent inside event handlers. The usual approach to such issues is to make the event handlers just do something very simple, like invalidating caches a...
Community
IntelliJ IDEA Open API and Plugin Development
JavaPsiFacade.findClass() starts returning null after rootsChanged event
0 votes
Created
February 25, 2014 09:58
ResolveResult.getElement being null is a completely normal situation. If you have a reference with an undefined name and call advancedResolve on it, you'll get JavaResolveResult.EMPTY which returns...
Community
IntelliJ IDEA Open API and Plugin Development
why would psielement . geparent return null?
0 votes
Created
February 24, 2014 14:49
DataKeys class is IntelliJ IDEA-specific, you should be able to use LangDataKeys or PlatformDataKeys instead.
Community
IntelliJ IDEA Open API and Plugin Development
DataKeys class not found in PhpStorm
0 votes
Created
February 24, 2014 14:41
There's no such way currently.
Community
IntelliJ IDEA Open API and Plugin Development
HighLighting in CodeFolding
0 votes
Created
May 07, 2014 13:02
The easiest way is to implement getVariants in your reference and return LookupElement[] from it.If your completion might take a long time or you need some advanced stuff, you can implement Complet...
Community
IntelliJ IDEA Open API and Plugin Development
Provide completion from my language to another
0 votes
Created
May 07, 2014 18:18
I wouldn't call it a bad decision, it helps tremendously when writing completion stuff. :)You may probably check !(FileDocumentManager.getFile(document) instanceof LightVirtualFile)
Community
IntelliJ IDEA Open API and Plugin Development
Cannot capture file changes from refactorings
0 votes
«
First
‹
Previous
Next
›
Last
»