Miloslav Macko
- Total activity 52
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 14
-
Created DialogWrapper OK Button Enter key
AnsweredHi, is it possible to disable the Enter key shortcut on the DialogWrapper's OK button? I need to do some actions in the dialog that require to press enter, and the dialog keeps closing :-) -
Created Java Swing JTextPane in intellij framework
AnsweredHi, I'm creating a Pycharm Plugin with a simple JTextPane (plain text). If I paste (CTRL+V) a multi-line text into it, it always pastes it into a single line replacing any type of EOL to spaces. Al... -
Edited Initiate the Tool Window programmaticaly
Hi, according the Tool Window guide ( here: https://plugins.jetbrains.com/docs/intellij/tool-windows.html#programmatic-setup) one should use the ToolWindowManager.registerToolWindow() The problem i... -
Created Intellij Pycharm Plugin PyExecuteInConsole synchronization
AnsweredHi, I'm writing a Pycharm plugin that executes commands in Python console. For that, I'm using, for example: PyExecuteInConsole.executeCodeInConsole(prj, "import math", null, true, true, false, n... -
Created Intellij Pycharm Plugin using python-ce.zip
AnsweredHi, I'm writing a Pycharm plugin where I wanted to use the Python Package Manager class: var pck = PyPackageManager.getInstance(projectSdk).getPackages(); For that, I needed to add the python-ce.ja... -
Edited Intellij install Python package from Pycharm plugin
AnsweredHi JetBrains, I'm developing Pycharm plugin that at the load checks certain installed Python packages and shows to the user install/update notification. Right now, I'm doing it by calling pip as pr...