Michael Wölk
- Total activity 161
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 37
-
Created No Reproducable Error
AnsweredHi! Unfortunately i must often fix my Plugin "Git Scope" after releases from JetBrains :-/. The Problem is: I cannot even Reproduce the Issue under development environment. Its Reproducable "in Pro... -
Created How to run/debug PHPStorm to Test Plugin
AnsweredHow to run/debug PHPStorm to Test Plugin instead of default intellij IDEA.Maybe its important:Im Using :- Gradle- Linux- SDK is already PHPStorm- Test using RunIDE Gradle-Task Any help are welcome ... -
Created Scroll from Source action customization
AnsweredSimilar question to https://intellij-support.jetbrains.com/hc/en-us/community/posts/360002682719-Scroll-from-Source-action-customization . Is it possible to listen to the action of "Scroll from Sou... -
Created LineStatusTracker with partial commit feature
AnsweredFor one of my Plugins i use com/intellij/openapi/vcs/ex/SimpleLineStatusTracker.class to create own LST instead of the original ones to show changes according to any selected branch or revision m... -
Edited How to create own BranchActionGroupPopup?
AnsweredHi, This one is a little bit hard to explain and maybe much harder to solve. I have created my own GitBranchPopup-Menu which extends from MyDvcsBranchPopup. Why do i need this?: I need a branch-sel... -
Created FileStatusListener reacts only onSave
AnsweredHey, I try to implement an FileStatusListener in a way that reacts "live" while typing.But The fileStatusesChanged Methods are exccuted only "OnSave" which is not fancy enough for me :-)I would lik... -
Created How to Manipulate .idea settings?
AnsweredHi, is it possible to change "server -> tasks"- password in workspace.xml programmatically to solve this issue https://youtrack.jetbrains.com/issue/IDEA-137068 Thank you -
Created "custom scope" based on changed lines instead of whole files?
AnsweredWithin my plugin "Git Scope" I use an implementation of PackageSet to offer a search based on changed files. This search is based on whole files. Is it possible to rewrite the "contains"-method so ... -
Created ScopeManager - Remove a NamedScope by its name?
Hey!How can i remove a NamedScope by its name? At the moment i use RemoveAllSets:this.scopeManager = NamedScopeManager.getInstance(this.project);this.scopeManager.removeAllSets();...but this remo... -
Created increase memory limit for local storage
AnsweredHey guys, Ive build a Plugin with a webview. This webview use localStorage to persist data. I was a little surprised that it works at all. But now i run out of memory. Can i increase that memory ...