Dan Cioca
- Total activity 363
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 122
-
Created 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... -
Created 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 ... -
Created 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 ... -
Created 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... -
Created 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... -
Created 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... -
Created 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.. -
Created 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... -
Created 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... -
Created 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...