Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Imants Cekusins
Total activity
410
Last activity
June 25, 2024 06:27
Member since
July 30, 2015 11:35
Following
0 users
Followed by
0 users
Votes
15
Subscriptions
108
Activity overview
Posts (12)
Comments (275)
Sort by recent activity
Recent activity
Votes
Created
January 16, 2016 19:28
(how to) listen to "file opened" event with MessageBus :public class FileOpenListenerA implements FileEditorManagerAdapter { @Override public void fileOpened(@NotNull FileEditorManager manager, ...
Community
IntelliJ IDEA Open API and Plugin Development
What is 'message bus' and how to use it?
1 vote
Created
September 18, 2015 18:12
this seems ok:PsiElement element = parameters.getPosition().getParent();now you can call element.getParent().getParent()... until you get up to Function PsiElementthen you could call PsiTreeUtil.c...
Community
IntelliJ IDEA Open API and Plugin Development
Code Completion - get context in which is method called
1 vote
Created
January 06, 2016 10:16
Hello Hasintha,CompletionParameters.getOriginalPosition() returns the current element.you could look up parent elements withcurrentElement.getContext().getParent().getText();something like this.
Community
IntelliJ IDEA Open API and Plugin Development
Completion Contributor for Scala
1 vote
Edited
January 21, 2016 03:50
Hello Jin,in what programming language?xml?
Community
IntelliJ IDEA Open API and Plugin Development
How to intercept and process code nodes (syntax and highlight)
1 vote
Created
March 29, 2016 11:01
> is that the reason it isn't showing in the first step? I am not sure. Just guessing: could try to implement moduleConfigurationEditorProvider extension point here is an example
Community
IntelliJ IDEA Open API and Plugin Development
Setting up an SDK and Language Version for new Project
1 vote
Created
March 05, 2016 22:06
Hello Igor, you could implement a VirtualFileAdapter and override its public void fileMoved(@NotNull VirtualFileMoveEvent event) register this listener with VirtualFileManager.getInstance().addV...
Community
IntelliJ IDEA Open API and Plugin Development
reference to file in dragged folder
1 vote
Created
February 14, 2016 18:36
Hello Jihui, override this method to collapse symbols by default: public abstract boolean isCollapsedByDefault(@NotNull ASTNode node); the shortcut should work ok on both collapsed (by default or t...
Community
IntelliJ IDEA Open API and Plugin Development
[Question] how can i replace identifer with other symbols
1 vote
Created
February 18, 2016 18:46
Hello Brian, > method or methods that will return a list of classes, members and methods of a package what language is your plugin for? > what method returns the current contents if you are askin...
Community
IntelliJ IDEA Open API and Plugin Development
Completion list APIs
1 vote
Created
March 18, 2016 18:48
Hello Mikhail, Hopefully this is ok to suggest on forum too. The ideal support level may be: code obfuscation & copy protection prevent (or at least monitor) unlicensed use help distribute free tr...
Community
IntelliJ IDEA Open API and Plugin Development
Distribute and Monetize IntelliJ/WebStorm Plugins
1 vote
Edited
March 29, 2016 09:01
Hello Shai, Did you check Project Settings > Platform Settings > SDKs ? is SDK configured there? did you put a breakpoint right after Sdk[] s and check if the array is empty?
Community
IntelliJ IDEA Open API and Plugin Development
Setting up an SDK and Language Version for new Project
1 vote
«
First
‹
Previous
Next
›
Last
»