Dan Cioca
- 活动总数 363
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 122
-
创建于 [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... -
创建于 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... -
创建于 [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. ... -
创建于 [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... -
创建于 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... -
创建于 [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... -
创建于 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 ... -
创建于 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... -
创建于 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... -
创建于 [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...