Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Bas Leijdekkers
Total activity
1072
Last activity
March 14, 2024 19:13
Member since
May 15, 2003 14:47
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
426
Activity overview
Articles (0)
Posts (41)
Comments (605)
Sort by recent activity
Recent activity
Votes
Created
March 27, 2006 19:24
Adding "-Didea.ProcessCanceledException=disabled" to the VM options of your plugin run configuration should work I think (haven't tried it).Bas
Community
IntelliJ IDEA Open API and Plugin Development
How to disable ProcessCanceledException?
0 votes
Created
September 14, 2006 12:57
com.intellij.openapi.compiler.CompilerManager.addBeforeTask might be what you need. Also check out the other classes in the com.intellij.openapi.compiler package.Bas
Community
IntelliJ IDEA Open API and Plugin Development
Modify files before build
0 votes
Created
September 11, 2006 20:43
PsiManager.getInstance(project).findFile(virtualFile);Bas
Community
IntelliJ IDEA Open API and Plugin Development
Get current Project, current file in editor
0 votes
Created
September 11, 2006 13:35
Hi Taras,Ok, I'm trying to do this now. How do I get hold ofan Editor inside my LocalQuickFix?FileEditorManager.getInstance(project).getSelectedTextEditor() will work I think.However several refact...
Community
IntelliJ IDEA Open API and Plugin Development
Triggering 'Create Method' intention
0 votes
Created
September 20, 2006 16:58
Perhaps I am misunderstanding you, but isn't the "getPolicy()" method in com.intellij.openapi.fileEditor.FileEditorProvider what you need? As far as I understand it making that return com.intellij....
Community
IntelliJ IDEA Open API and Plugin Development
Programatically open file as non-default editor
0 votes
Created
September 20, 2006 20:48
Well, the method wouldn't have to return the same value every time. If there isn't a proper way to do what you need, the navigate action could temporarily change the return value and set it back af...
Community
IntelliJ IDEA Open API and Plugin Development
Programatically open file as non-default editor
0 votes
Created
September 25, 2006 09:15
Package statements belong to the file not the class. This means you can use the getPackageName() and getPackageStatement() methods available in PsiJavaFIle. Something like this should do the trick:Bas
Community
IntelliJ IDEA Open API and Plugin Development
How to obtain "package" of a class?
0 votes
Created
December 14, 2006 17:35
psiFile.navigate(true);Bas
Community
IntelliJ IDEA Open API and Plugin Development
How to open a newly created class
0 votes
Created
January 04, 2007 13:39
com.intellij.psi.codeStyle.CodeStyleManager#suggestVariableNameorcom.intellij.psi.codeStyle.CodeStyleManager#suggestUniqueVariableNameprobably do want you want.Bas
Community
IntelliJ IDEA Open API and Plugin Development
Create new field with name as configured in code style
0 votes
Created
May 17, 2007 16:00
How about we start with existing infrastructure -JIRA and patches? If you are willing to contribute javadocs, just write them,create a patch and attach it to a JIRA request. We'll review them and a...
Community
IntelliJ IDEA Open API and Plugin Development
Proper documentation ?
0 votes
«
First
‹
Previous
Next
›
Last
»