主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2019年09月16日 15:36
You need to add "lib/tools.jar" to the configured JDKs.
社区
IntelliJ IDEA Open API and Plugin Development
Classes not found whilst trying to build community source
0 票
创建于
2019年07月25日 13:08
IIUC, `GitRepository.getCurrentRevision` should be already updated, when accessed from `callInAwtLater` callback.
社区
IntelliJ IDEA Open API and Plugin Development
Git checkout event?
0 票
已编辑于
2019年07月25日 10:38
If you need to know up-to-date value of HEAD when button is clicked (to know which next commit to checkout), it's better to re-check its value manually via `GitRevisionNumber.resolve(project, root,...
社区
IntelliJ IDEA Open API and Plugin Development
Git checkout event?
0 票
创建于
2019年07月25日 08:42
You could, probably, register "post-checkout" hook in git and notify IDE from it (using launcher, custom url handler, rpc, etc).But that requires modifying repository config, which might be an anno...
社区
IntelliJ IDEA Open API and Plugin Development
Git checkout event?
0 票
创建于
2019年07月24日 12:00
You can try `com.intellij.openapi.vcs.BranchChangeListener`. but it might not be fired for some checkouts (ex: performed from command line or for rolled back checkouts).You can also listen for all ...
社区
IntelliJ IDEA Open API and Plugin Development
Git checkout event?
0 票
已编辑于
2019年07月22日 09:41
Does "appearing" means it is visible in the list of available tool windows, or that it is expanded and focused when project is opened? `isDoNotActivateOnStart` should stop IDE from activating it on...
社区
IntelliJ IDEA Open API and Plugin Development
Cancel Tool Window appearance on startup
0 票
创建于
2019年07月16日 18:13
You can pass specific jvm option in debug environment and check it with System.getProperty.For example: `-Didea.debug.mode=true`.
社区
IntelliJ IDEA Open API and Plugin Development
Determining if plugin was launched from IDEA itself during plugin development
0 票
已编辑于
2019年07月16日 12:42
You can create ActionToolbar using `com.intellij.openapi.actionSystem.ActionManager.createActionToolbar` and add AnAction on it via ActionGroup.Or, if you need to use JButton, Action and InputEvent...
社区
IntelliJ IDEA Open API and Plugin Development
AnAction event from Toolwindow button.
0 票
创建于
2019年07月16日 10:47
Probably, by modifying Document and invoking `FileDocumentManager.saveDocument(Document)` on it (to sync Document -> VirtualFile / FS).
社区
IntelliJ IDEA Open API and Plugin Development
Custom file editor / save file
0 票
创建于
2019年07月16日 10:09
Which part of IDE do you want to notify about this change? What should it do with that notification?If the file is a text one and changes in JTextFields are not mirrored to corresponding Document, ...
社区
IntelliJ IDEA Open API and Plugin Development
Custom file editor / save file
0 票
«
第一页
‹
上一页
下一页
›
最后
»