Dan Cioca
- Total activity 363
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 122
-
Created [HOWTO] XDebugger default tab selection (Console)
My debugger implementation based on the xdebugger api seems to prefer selecting the Console tab by default instead of the Debugger tab. i.e. every time i start a new debugging session, the debug to... -
Created Receiving "The should return focus on closing the message" when using Messages.showDialog
I am sometimes receiving the following assertion exception when using Messages.showDialog(): "The should return focus on closing the message".Not sure what i am doing wrong. I am ensuring this runs... -
Created [HOW-TO] how can i trigger parsing of a document programatically
Typicaly parsing is done for every untouched document and when this is being edited. Still, i need to be able to reparse a file if for example the diallect of the language was changed by the user. ... -
Created [HOW TO] change the order of the editor intentions
Is there a way to influence the order of the intentions listed on Alt-Enter? I have a list of 5+ intentions and they all get sorted by the action text. I would have them sorted differently, i.e. gr... -
Created CPU / Memory snapshot with JProfiler instead of YourKit Profiler
Looking at this article (http://devnet.jetbrains.com/docs/DOC-1253), profiling memory and CPU in IntelliJ products is using YourKit Profiler, producing YourKit proprietary format snapshots.Is there... -
Created [HOW TO] Soft assertions with support for error reporting
Is it possible to do "handled" assertions that do not break the code execution but are handled by the standard error reporting interface (i.e. show error notification at the right bottom of the scr... -
Created Events triggering PsiParser.parse()
I see the psi language parser is being triggered several times for a psi file after one single edit action (most probably for building the temporary psi tree for code completion).Is there a way to ... -
Created Spam messages with ratings in the plugin repository site
I saw that spam messages in plugin repository are being removed quite promptly by the site admins. Nevertheless, in most of the cases the spam messages come with a rating which is by no means repre... -
Created Change/extend behavior of the OpenFileDescriptor
Looking at the references of this class (no factory facade), there is no way to change/extend its behavior by subclassing it. Can I suggest extending this with something like OpenFileDescriptorProv... -
Created [HOW-TO] implement code completion fallback
I want to be able to suggest completion variants from another CompletionContributor (only) if the main one is not returning any completion variants. Was not able to achieve this just by sorting the...