主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Aleksey Pivovarov
活动总数
801
最后的活动
2024年09月23日 14:52
成员加入日期
2013年08月06日 15:41
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
444
活动概览
文章(0)
帖子(0)
评论(357)
按最近的活动排序
最近的活动
投票数
创建于
2018年04月04日 10:11
(I assume, you're talking about `showSettingsDialog(Project project, String nameToSelect)` method)This "nameToSelect" is just `Configurable#getDisplayName` (User-visible string in a settings tree: ...
社区
IntelliJ IDEA Open API and Plugin Development
Is it possible to open the settings menu of the IDE programaticly and jump to a specific Point?
0 票
创建于
2018年03月27日 22:17
To get current branch name: git4idea.repo.GitRepositoryManager.getInstance(myProject).getRepositories()gitRepository.getCurrentBranch().getName(); To get all commits in a local branch (query `git l...
社区
IntelliJ IDEA Open API and Plugin Development
how to get Git branch name, commit IDs from local branch?
0 票
创建于
2018年03月14日 14:07
>point where I can add some kind of project or file listener on project open.You can register ProjectComponent and do it in `projectOpened()` method.https://www.jetbrains.org/intellij/sdk/docs/basi...
社区
IntelliJ IDEA Open API and Plugin Development
Dynamic tool windows - project and file listeners
0 票
创建于
2018年03月14日 11:09
Hi, sorry for the late reply.What kind of API do you have in mind?Which events should it fire? How should it work with commands, performed via command line?Could you also describe this idea with se...
社区
IntelliJ IDEA Open API and Plugin Development
Git Repository Events Mechanism
0 票
已编辑于
2018年03月12日 17:57
In this case you might want to use `com.intellij.openapi.application.ApplicationStarter` (or ApplicationStarterEx, to reuse existing IDE instance to reduce startup time).You can take a look at `com...
社区
IntelliJ IDEA Open API and Plugin Development
How to develop on top of the IDEA?
0 票
创建于
2018年03月12日 12:55
The mock PersistentStateComponent can have setters to update necessary settings.Probably, your non-mock PersistentStateComponent has setters too. Can't you just set necessary settings before each r...
社区
IntelliJ IDEA Open API and Plugin Development
How to test with `PersistentStateComponent`
0 票
创建于
2018年03月12日 11:15
You can take a look at "IDE Scripting Console" https://gist.github.com/gregsh/b7ef2e4ebbc4c4c11ee9 See also org.jetbrains.ide.script.IdeScriptEngineManager
社区
IntelliJ IDEA Open API and Plugin Development
Running a script in a plugin
0 票
创建于
2018年03月12日 11:08
You can manually register mock component in tests by casting `Application.getPicoContainer` or `Project.getPicoContainer` to `MutablePicoContainer`.https://github.com/JetBrains/intellij-community/b...
社区
IntelliJ IDEA Open API and Plugin Development
How to test with `PersistentStateComponent`
0 票
创建于
2018年03月05日 10:35
It should work. Are these new directorie actually used?As another option, you can try installing earlier major IDE version (ex: 17.2 or 17.1) and use it to debug custom IDE.
社区
IntelliJ IDEA Open API and Plugin Development
Can I run a custom IDEA bundled app under the IDEA debugger?
0 票
创建于
2018年03月04日 23:31
You can check `AnActionEvent#isFromActionToolbar` and `AnActionEvent#isFromContextMenu`. (and `AnActionEvent#getPlace` to differentiate between different toolbars)
社区
IntelliJ IDEA Open API and Plugin Development
How show action item to context menu, but not tollbar?
0 票
«
第一页
‹
上一页
下一页
›
最后
»