Stephen Samuel (Sam)
- 活动总数 47
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 5
- 订阅数 14
-
创建于 How to choose when to apply TestGenerator
已回答I have a custom TestGenerator that I have registered with language `kotlin`.However it is always applied even for Java classes. I cannot find out how or where to specify whether my custom TestGener... -
创建于 Hide gutter in diff
已回答Hi, I'm wanting to hide a line marker / gutter icon when the diff window is open. Is there a way inside LineMarkerProvider to find out if the element passed into getLineMarkerInfo is from a diff wi... -
创建于 Include jar with plugin
已回答What is the best way to include a dependency with a plugin? Either 1) Have that dependency be shaded into the plugin jar 2) Have the plugin download the dependency and store it somewhere. -
创建于 RunLineMarkerContributor loops on package and imports
I must be doing something really wrong, but my RunLineMarkerContributor is only processing the package declaration and the import statements. It gets to PsiElement(class) and the begins again at th... -
创建于 Module dependencies with gradle implementation
Using this code to bring back module deps: OrderEnumerator.orderEntries(module) Does not include transitive dependencies marked as implementation in the library's gradle build. It makes sense that ... -
创建于 Refresh action after change
已回答I have code which sets the enabled flag of an action like this: templatePresentation.isEnabled = runEnabled But this never seems to redraw the icon (they don't grey out. It works if I hard code it ... -
创建于 Index access error despite running in smart mode callback
已回答I'm running some code inside a smart mode callback. DumbService.getInstance(project).runWhenSmart { ...} Yet I am still getting the following error. Is this because by the time my code runs so... -
创建于 How to populate "superclass" list in Test Generator
已回答In my plugin I have a `TestGenerator` which works well but I cannot figure out how to set the list of available superclasses. Any ideas ? -
创建于 Refresh run configurations
已回答Hi, I am creating a run configuration programmatically via RunManager and then adding this to the list, before executing it. This all works fine, but the drop down list in the toolbar doesn't ref... -
创建于 Tool window notifications
已回答Hi, How can I have a custom tool window be notified of changes in the editor / whatever so that it can refresh it's view? I guess there's something I can register a listener with.