主页
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)
按最近的活动排序
最近的活动
投票数
已编辑于
2024年09月23日 14:52
>I want to replace “git commit” commandThe only way is to replace the “Path to Git executable” with some wrapper script, that delegates non-commit commands to real git and handles commit itself.You...
社区
IntelliJ IDEA Open API and Plugin Development
Running custom CLI command before Commit
0 票
创建于
2024年01月23日 19:51
There is no good API to solve it.Below are some hacks that might help, but these are not universal (main difference being "Use non-modal commit interface" option).The general approach is to find `c...
社区
IntelliJ IDEA Open API and Plugin Development
Removing text selection for commit message
0 票
已编辑于
2023年07月10日 13:24
Do you need help filtering `List<T>` by condition? includedChanges.filter { change -> com.intellij.openapi.vcs.changes.ChangesUtil.getFilePath(change).getName() != "package-lock.json" }
社区
IntelliJ IDEA Open API and Plugin Development
How to get the list of files that are selected in the commit dialog?
0 票
创建于
2023年03月28日 16:18
To follow up, there's a gray area (in a sense, that it's more of poorly-hidden internal data structures, than API) to access "partially included into commit" files (aka checkboxes in diff viewer gu...
社区
IntelliJ IDEA Open API and Plugin Development
How to get the list of files that are selected in the commit dialog?
1 票
创建于
2023年03月27日 14:42
There is no direct data key. It is further complicated by three (and a half) different UIs for commit - Modal, Git Staging and Non-Modal.1) You can use 'com.intellij.openapi.vcs.VcsDataKeys#COMMIT_...
社区
IntelliJ IDEA Open API and Plugin Development
How to get the list of files that are selected in the commit dialog?
2 票
创建于
2023年01月11日 10:29
Please, describe the use case in finer details. In general, there is no such listener.
社区
IntelliJ IDEA Open API and Plugin Development
How to run action after LineStatusTracker gets updated
0 票
已编辑于
2023年01月10日 15:35
No, at this point the knowledge is already lost. (Looks like a data race with 'invokeLater' lets you read it sometimes - but it's not a feature).Probably, you can remember the state in 'CheckinHand...
社区
IntelliJ IDEA Open API and Plugin Development
Get all selected changes from non-modal commit interface.
0 票
已编辑于
2023年01月10日 10:41
Sorry, no clue why 'hasPartialChangesToCommit' doesn't work for you. The other way would be 'getExcludedFromCommitState' (which is more precise status), but they're using the same data.Do you theck...
社区
IntelliJ IDEA Open API and Plugin Development
Get all selected changes from non-modal commit interface.
0 票
创建于
2022年08月23日 08:21
Another approach might be replacing "default" "Push" AnAction with another implementation in a plugin.That implementation might show the dialog you need, send ssh requests before/after/instead the ...
社区
IntelliJ IDEA Open API and Plugin Development
Add Parameters to wsl
0 票
创建于
2022年08月23日 08:12
No, wsl arguments are not customizable. How do you affect `git push` behavior via .bashrc? Some ENV variables for git config?You can probably try to point IDE git executable to "//wsl/ubuntu/..../g...
社区
IntelliJ IDEA Open API and Plugin Development
Add Parameters to wsl
0 票
下一页
›
最后
»