svorden
- Total activity 31
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 8
-
Created How to have a popup window similar to this on the ThreeSideView editor?
AnsweredHello. 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... -
Edited Why am I getting an incomplete file path for diff view action (Diff.EditorPopupMenu)?
AnsweredHello. 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... -
Created Can I show specific commits in git log without filter?
AnsweredI'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... -
Created How to add a new log tab to existing git vcs tool window?
AnsweredHi. 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... -
Created Testing plugin action using testData, but no repository found
AnsweredHello. 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... -
Edited Git log - how can I change text color of certain commits?
AnsweredHello. 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? -
Edited Git4Idea: GitHistoryUtils.history() with "--follow" parameter leads to VcsException bad revision
AnsweredI'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( ... -
Created (Plugin development - open api) how to detect merge conflicts using git4idea?
AnsweredHello. 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...