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