Miloslav Macko

- Total activity 52
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 14
-
Created ImageLoader.toImage(Icon, ScaleContext) usage in Plugins
AnsweredHi, I need to scale an svg icon, and found the perfect method in ImageLoader for that:ImageLoader.toImage(icon: javax.swing.Icon, scaleContext: com.intellij.ui.scale.ScaleContext)It works fine, an... -
Created verify plugin emojipicker.jar does not exist
AnsweredHi,I have a Pycharm plugin with org.jetbrains.intellij.platform 2.0.1When I run the plugin verifier for the following IDEs: pluginVerification { ides { ide(Intel... -
Created verifyPlugin error
AnsweredHi, I switched to the 'org.jetbrains.intellij.platform' version ‘2.0.1’, and my plugin builds and runs OK on Pycharm 2024.2When I start the gradle task verifyPlugin, I get this error message:* What... -
Created Annotations "Jump to Source"
AnsweredHi, in my Pycharm plugin, I have text editor annotations - errors and warnings. If I use the the editor shortcut F2 - Next Highlighted Error, the caret properly jumps to the problem. However, in th... -
Created Pycharm Python console synchronization
AnsweredI'm using Pycharm's Python console interface to execute code from my plugin. PyExecuteInConsole.executeCodeInConsole(prj, code, null, true, true, false, null); Declaration in com.jetbrains.pyth... -
Created Custom Text Editor Key Shortcuts
AnsweredHi, I have a Pycharm plugin with custom editor implementation. How do I block the default Key shortcuts, for example F1-F8, and have it call my callbacks instead? Also, I'd need to detect CTRL Up /... -
Created Custom Editor run code analysis
AnsweredHi JetBrains Support, I created a custom text editor ScpiFileEditor by using the EditorFactory.createEditor(), extended FileEditorProvider and registered it in the plugin xml file. It works well,... -
Created Custom File Type in File -> New
AnsweredIs there a way to add my file type to the File -> New popup? : -
Created Problems Highlighting in custom EditorTextField
AnsweredHi, I have a plugin with my own new language, I created and registered annotator for it, and it works fine in editors managed by the FileEditorManager. But when I have my own EditorTextField, the s... -
Created PsiLiteralExpression for Pycharm Plugin
AnsweredHi, I'm working on a plugin for Pycharm, and wanted to implement new Language. So, I followed the tutorial https://plugins.jetbrains.com/docs/intellij/custom-language-support-tutorial.html The exam...