svorden
- 活动总数 31
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 4
- 订阅数 8
-
创建于 How to have a popup window similar to this on the ThreeSideView editor?
已回答Hello. I want to show a popup window similar to below after hovering over a certain line while viewing a three-way diff (in the editor). I just want to know how to get this type of popup informatio... -
已编辑于 Why am I getting an incomplete file path for diff view action (Diff.EditorPopupMenu)?
已回答Hello. I created a Diff.EditorPopupMenu action, and I would like to get the file path of the current file I'm looking at while using the threeside diff view. For example, if I'm viewing a threeside... -
创建于 Can I show specific commits in git log without filter?
已回答I'm creating a tool window that shows log UI views and I'd like to know if it's possible to customize which commits appear in the log without relying on the filter provided. The commits I'd like to... -
创建于 How to add a new log tab to existing git vcs tool window?
已回答Hi. I want add a new log tab to the git vcs tool window. I'm able to get and show the tool window using: ToolWindow window = ToolWindowManager.getInstance(project).getToolWindow(ToolWindowId.VCS);w... -
创建于 Testing plugin action using testData, but no repository found
已回答Hello. I am trying to test a plugin action that is only visible if there is git installed for a project. I created a directory in testdata that has mock git data (with configs, refs, etc.), and som... -
已编辑于 Git log - how can I change text color of certain commits?
已回答Hello. I'd like to make a plugin that changes the color of certain commits in the git log tree in the git plugin. I'd like to change this: to something similar to this: How can I do this? -
已编辑于 Git4Idea: GitHistoryUtils.history() with "--follow" parameter leads to VcsException bad revision
已回答I'd like to run the command git log HEAD --follow <file> to see what commits touch a specific file on the current head. So I tried running: List<GitCommit> listOfCommits = GitHistoryUtils.history( ... -
创建于 (Plugin development - open api) how to detect merge conflicts using git4idea?
已回答Hello. I'm new to plugin development for IntelliJ and I'm trying to create a plugin dealing with git (using git4idea). I want my plugin to detect merge conflicts (whether the user used IntelliJ act...