Damianczap
- Total activity 28
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 9
-
Created Can I pause the plugin from being available in the marketplace
AnsweredI have a plugin, I paused its development and maintenance, I would like to pause it in the marketplace. Is that possible? -
Created NullPointerException
AnsweredI have a tool window with a JTextPane and JTextArea within JScrollPane components. It all worked ok. But then I've added a feature that required to append the text in JTextPane multiple times in a ... -
Edited How to have one instance of a class shared by an action and a tool window?
AnsweredI have a tool window and I have an action. I also have some class (let's call it class X). I would like the tool window class and action class to use class X. But I would like them to use the same ... -
Created How to highlight / change background color of the code in the editor?
AnsweredWhen you use "find" functionality in the IDE, the text that you look for is highlighted / changes the background (for example, when you search for "cow", then all occurrences of the word "cow" in c... -
Created Plugins - search results
AnsweredIf I go to Settings -> Plugins and type something in the search, what is the algorithm that decides which plugins are going to appear? Of course, I assume that this is based on description, title, ... -
Created Getting paths to the files in a project
AnsweredWhat I want to do is to construct an array of strings that will contain a path to the file, for each file in a given project. I have the instance of Project class. One way that I have found how to ... -
Edited getSelectedFiles - can there be multiple files selected at a time?
AnsweredWhy does FileEditorManager.getSelectedFiles method returns an array, not a single VirtualFile? Can there be many selected files in an editor? How to select multiple files in the editor? I understan... -
Edited Writing in a document when handling websocket message
AnsweredI have method like this: private void addSomeCode() { ApplicationManager.getApplication().runWriteAction(() -> { Editor editor = FileEditorManager.getInstance(project).getSelectedTextEdit... -
Edited How to open document in the editor?
AnsweredHello. I would like my plugin to be able to open a file in the editor and make it the current document, if it's not already open. If it's already open, then just make it the current document (if it...