1406633849

- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 6
-
1406633849 created a post, AnsweredHow to release an instance of custom class that extends class ‘LocalInspectionTool’ when switch to another project?
Hello, I'm trying to promote the performance of my custom plugin. I developed my own code inspection via the extension point 'localInspection'. When I use visualVM to observe JVM activites, I fou... -
1406633849 created a post, AnsweredHow to control the completion order by custom algorithm instead of arranged by alphabetic order?
Hello, I am trying to use a custom algorithm(not machine learning) to decide the order of completion list. Is there some extension point available? I found the extension point `com.intellij.complet... -
1406633849 created a post, AnsweredHow to Add Additional Operations to an existing action implemented by Intellij platform when it is performed?
I'm trying to add a additional operation to the exsisting action 'Help->Diagnostic Tools->Debug Log Settings..->OK',But I don't know how to monitor whether this action is triggered, because it is ... -
-
-
-
1406633849 created a post, AnsweredHow to use LocalFileSystem.getInstance().refreshAndFindFileByNIO() method in a thread where only read allowed?
I'm trying to find a file in SDK after the SDK is downloaded. However, I cant get file using the LocalFileSystem.getInstance().FindFileByNioFile(path) method cause the LocalFileSystem is not latest... -
1406633849 created a post, PlannedThe method deselectNotify() of class FileEditor does not take effect in 'split right' mode in MAC machine
Hello, I am trying to implement a editor with preview by extending com.intellij.openapi.fileEditor.TextEditorWithPreview. The editor window gets tow tabs, one for text and another for preview. The ... -
-
1406633849 created a post, AnsweredHow to control the execution sequence of parser and completion extension points when modifying a file
Hello, I have implement parserDefinition and CompletionContributor these tow extension point . I found the parser extension point will excute before the completion extension point ,But now I am goi...