Dan Cioca
- Total activity 363
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 122
-
Created How to override/manipulate the context menu in "Structure" tool window.
I need to provide completely different features to the Structure context menu for a given file type. I use StructureViewModel to provide the structure view for it. There seems to be a way to add me... -
Created Question to LocalFileSystem ignored files
General IDE settings allow specifying file or directory name patterns to be ignored ("Ignore files and folders:"). How do i check if a VirtualFile is being ignored? NOTE: this has nothing to do wit... -
Created [ANN] Database Navigator 1.0.283 released
A new version of the tool has been released. The plugin is available for download at: http://plugins.intellij.net/plugin/?id=1800This release encloses several improvements on the SQL coding support... -
Created Sort code completion variants (using LookupItem)
The getVariants of my PsiReference returns an array of com.intellij.codeInsight.lookup.LookupItem objects.I done my own implementation of LookupItem and have overwritten the compareTo() method in t... -
-
Created How to get the "Right margin" from the CodeStyleSettings
This may appear trivial, still I didn't find out how...There is an accessible attribute called RIGHT_MARGIN in the CodeStyleSettings instance, but this does not return the value I configured.Apprec... -
Created How to trigger additional operations on code formatting (Ctrl+Alt+L)
Need to do additional code formatting operations (others than INDENT, WRAP and SPACING) when code formatting is triggered (like changing the case of the tokens). Unfortunately the FormattingDocumen... -
Created Question to ModuleComponent and Configurable
As I understood, if a class implements the ModuleComponent and Configurable interfaces, the setup screen will show-up in the options panel of a module. I need the ModuleRootManager to show up as we... -
Created Create new file dialog
Is there something like "create new file" dialog in intellij openapi? ..or even non-openapi? I need to provide the ability to create a new file within the scope of a given module or project (solely... -
Created Show action caption (text) in ActionToolbar
Want to display the name of the action in a custom toolbar, and not only the icon. Is this possible?