Alain Tavan

- Total activity 68
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 3
- Subscriptions 19
-
Created Throwable: Synchronous execution on EDT on PsiFile.delete() why is this happening, how can I prevent this ?
AnsweredDear Support, first of all happy new year to you ;) I wish you guys the same success like you had during all these years :)my issue : on my plugin I try deleting a psiFile then add another psiFile... -
Created PasteAction not called when running through IntelliJ?
AnsweredHi all, for my plugin I created my own JTextPane that listen to drap and drop and copy/paste of pictures This Component is named DragDropTextPane Basically I registered my own action in my DragDr... -
Created What is the best way to get the branch of a file ?
AnsweredHi all, I wrote following code. It executed when the editor is changing file or during a schedule timer task (every 30 seconds) public String getBranchOfFile(Project project, VirtualFile file) {... -
Created how to use a TextFieldWithCompletion inside of a configuration window that was build with the form builder ?
AnsweredHi All, I have a class that implements Configurable and that is working as expected. I replaced one combobox with a TextFieldWithCompletion and I get some nasty exception when opening the setting... -
Edited annotation right click add a menu entry and get the author string
AnsweredHi all, I wrote a plugin that allow me to get some specific information about some user. I'm looking for a way to make it even better for users Therefore I need to add a context menu to the annota... -
Created is there a way to know that a PsiLiteralExpression is on a modified line ?
Hi all, I build my own LocalInspectionTool that is working great. In fact it found so much problems that i often have a file with a lot of yellow highlighting in the code. My idea : add an option t... -
Created is it possible to override CTRL + mouse click for specific SpiElement ?
AnsweredHi Everybody. I already wrote a quickNavigateInfo for some specific PsiElement that show me the translation corresponding to the java variable (the same way that I18n works) Now i'm looking for... -
Created package does not exists issue when removing my graddle version '2018.3' option
AnsweredHi All, I have an IntelliJ plugin. I saw that in my build.gradle i had following option intellij { version '2018.3' type 'IC'} I tried removing the version to build on the same version i'm ... -
Created intelliJ get classname of variable at carret
AnsweredHi, anyone knows how to get the classname of a variable under the mouse caret ? I started something like that final PsiFile file = CommonDataKeys.PSI_FILE.getData(dataContext);Project project ... -
Edited Autopopup on CTRL + mouse over
AnsweredHi all, I want to extend a plugin I wrote to have the same behavior as the CTRL + mouse over on variables. The company I work for is using it own way of handling translations (i wished they used I1...