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