Dan Cioca
- 活动总数 363
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 122
-
创建于 PsiFile not being built for files coming from a custom VirtualFileSystem
Created my own VirtualFileSystem and FileEditorProvider. The content is coming from some database. My implementation of VirtualFile is linked to my custom language. The editor content is properly h... -
创建于 Autopopup code completion in custom language
Need to trigger the code completion in my custom language after certain characters (like "dot"). The default "after dot" setting for Java does not seem to work for custom languages.Any idea how to ... -
创建于 Runtime class loading from jar libraries
Is there any Intellij OpenAPI support for loading classes on runtime from a jar library? I need something similar to the Tools>Data Sources>> "Find Driver Class". Actually, I need exactly the same ... -
创建于 Create an Editor for a non physical file
I need to create an editor which has no underlying file (from the file system), but information coming from database. Is it possible to define a VirtualFile and implement custom read/write (e.g. fr... -
创建于 What happen to DocumentationProvider in idea 7.0?
The documentation provider in my custom language is simply ignored in idea 7.0 (build #6827).Neither the old Language.getDocumentationProvider() nor Language.createDocumentationProvider() or Langua... -
创建于 Trigger progress indicator within Daemon code analyzer (ProgressManager)
My annotator engine uses lazy loaded data from database. Since database responses may take more than few seconds, I want to be able to show a modal progress indicator using ProgressManager.Neverthe... -
创建于 How to determine what type of code completion was invoked
In my implementation of PsiReference.getVariants() I need to find out what type of code completion was issued. (Basic, SmartType...)Does anyone has an idea how to do that. Appreciate any help.. -
创建于 Why is the parser being triggered for every Return stroke?
I have implemented a parser which is very expensive in terms of processor load, it takes about one second to parse a normal sized file (e.g. up to one hundred rows).... Normally the parser is trigg... -
创建于 How to trigger annotator without changing file?
I need to trigger the annotation engine to be carried out again on my entire editor document, without having the file changed.Needed scenario:My document annotator is directly depending on data pro... -
创建于 How to display Hint (Tooltip) for resolved PsiReference on Ctrl + MouseOver
This might look trivial, yet I didn't find out how...I have a properly resolved PsiReference in my custom language: - element is correctly underlining on Ctrl+MouseOver - mouse cursor is changing t...