Dan Cioca
- 活动总数 363
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 122
-
创建于 How to enable "Search>>Find" functionality for non-text FileEditor
Find functionality only gets enabled for text editors. (Menu: Search>> Find...)I have a tabular data editor, which I need to enhance with search functionality. Is there a way to aggregate the stand... -
创建于 Idea 7.0 license for plugin contest participants
Since every contest participant hopes to win something, and a license of intellij 7.0 is part of almost every prize, I don't think anyone considers buying an upgrade before the contest is over. Is ... -
创建于 How to enable "Go To Line" (Ctrl+G) for non text FileEditors
I have implemented com.intellij.openapi.fileEditor.FileEditor for editing data coming from a database table. The main component of the editor is a JTable, populated from an editable ResultSet.I wan... -
创建于 How to handle exceptions within FileEditorProvider.createEditor()
My file editor provider loads the editable content from a database, content which may not always be available. In bad cases a SQLException is thrown which I can catch and display a proper message..... -
创建于 How to create an ActionToolbar with visible captions (menu-like)
Need to create a panel with actions similar to a menu list. The only method i found is ActionManager.getInstance().createActionToolbar(...)But this is creating an action toolbar which can be vertic... -
创建于 Editor diff functionality for custom file system
Need to provide diff functionality to my custom file system.I have a database file system, providing source code for editing in a standard text editor. Changes in the editor are not automatically s... -
创建于 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... -
创建于 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 ... -
创建于 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 ... -
创建于 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...