Damianczap
- 活动总数 32
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 6
- 订阅数 11
-
创建于 PyCharm automatically adding absolute imports instead of relative
Let's say I write a name of a class that I haven't imported yet in the module that I write. PyCharm will automatically suggest importing that class and if I click or press the right keyboard shortc... -
创建于 Can I pause the plugin from being available in the marketplace
已回答I have a plugin, I paused its development and maintenance, I would like to pause it in the marketplace. Is that possible? -
创建于 NullPointerException
已回答I 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 ... -
已编辑于 How to have one instance of a class shared by an action and a tool window?
已回答I 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 ... -
创建于 How to highlight / change background color of the code in the editor?
已回答When 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... -
创建于 Plugins - search results
已回答If 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, ... -
创建于 Getting paths to the files in a project
已回答What 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 ... -
已编辑于 getSelectedFiles - can there be multiple files selected at a time?
已回答Why 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... -
已编辑于 Writing in a document when handling websocket message
已回答I have method like this: private void addSomeCode() { ApplicationManager.getApplication().runWriteAction(() -> { Editor editor = FileEditorManager.getInstance(project).getSelectedTextEdit... -
已编辑于 How to open document in the editor?
已回答Hello. 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...