1406633849

- Total activity 18
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
-
Created why setting width for table in document will not take effect in suspended doc When using extension point DocumentationProvider?
AnsweredHello! I am trying to develop a idea plugin where extension point com.intellij.lang.documentationProvider used for custom displayed doc content.I added styles prop in document text like <style\>th... -
Edited How to release an instance of custom class that extends class ‘LocalInspectionTool’ when switch to another project?
AnsweredHello, 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... -
Edited How to control the completion order by custom algorithm instead of arranged by alphabetic order?
AnsweredHello, 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... -
Created How to Add Additional Operations to an existing action implemented by Intellij platform when it is performed?
AnsweredI'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 ... -
Edited How to use LocalFileSystem.getInstance().refreshAndFindFileByNIO() method in a thread where only read allowed?
AnsweredI'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... -
Edited The method deselectNotify() of class FileEditor does not take effect in 'split right' mode in MAC machine
PlannedHello, 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 ... -
Edited How to control the execution sequence of parser and completion extension points when modifying a file
AnsweredHello, 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...