Vovahost
- Total activity 38
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 11
- Subscriptions 9
-
Created Info about the new "Machine Learning in Find Usages" plugin
AnsweredCan you provide more details about this new Intellij Idea bundled plugin:https://plugins.jetbrains.com/plugin/28630-machine-learning-in-find-usages> The descriptions states: The plugin is collectin... -
Created PropertiesComponent properties location
AnsweredHow do I inspect and clear the properties my plugin saved in `PropertiesComponent.getInstance()`?Which xml file do I need to Edit? -
Edited Calling ToolWindow.show() throws exception
AnsweredThis is my code: protected fun showMyToolWindow() { val currentProject = getActiveProject() if (currentProject != null) { SwingUtilities.invokeLater { val task = RegisterToo... -
Edited runIde fails: finished with non-zero exit value 3
AnsweredTrying to run the plugin and it fails with an error while it works if I run the `assemble` task. I uninstalled and installed the latest version of Intellij Idea. val kotlinVersion = "1.6.10"p... -
Created Disable .val variable declaration shortcut
AnsweredHow do I disable ".val" and ".var" shortcuts which define a new variable in Intellij Idea? It's annoying as it's shown as top suggestion. -
Edited Strange bug when using ComposePanel in ToolWindowFactory
AnsweredStrange bug while using `ComposePanel` inside a ToolWindow Tab. When the ComposePanel is shown there is an empty window shown in the left side of the Project window. Also the `ComposePanel` state i... -
Edited Error while launching a coroutine
AnsweredDo you know why I'm getting an error while trying to launch a Coroutine when running my plugin: GlobalScope.launch(Dispatchers.IO) {} Error: java.lang.ExceptionInInitializerErrorat kotlin.random.Ra... -
Edited Add custom custom Toolbar for specific type of files
AnsweredI need to add the same behaviour the Markdown plugin currently has: a custom toolbar with 3 buttons (Show editor only, Editor & Preview, Preview only).I want to show a preview for some types of fil...