cursor-git-ref-command.nvim
centers around git operations on the git ref or sha under the cursor or on the current line. I'm using it together with vim-fugitive as a way to quickly operate based on refs or sha:s.
For example it can be used to:
- Cherry-pick a commit from
:G log <another-branch>
and apply it to the current branch usingCursorCherryPick
. - Check-out a commit or branch from
:G reflog
to go back to a previous state, for some reason, usingCursorCheckOut
. - Drop a commit from
:G log
that you no longer need, for instance when preparing commits for a PR, usingCursorDrop
. - Reset the current branch to another commit, via
CursorResetSoft
,CursorResetMixed
orCursorResetHard
.
If there's more than one commit or ref on the cursor line, a telescope picker is used for selecting the desired one, such as in this example:
commit ab9cfc4dc3422af5235759efef456d3e02745217 (HEAD -> master, origin/master, origin/HEAD)
where you'd often want to check out master
and not ab9cfc4dc3422af5235759efef456d3e02745217
.
Example workflow:
- Open git log in buffer
- Move cursor to a commit line such as:
commit ab9cfc4dc3422af5235759efef456d3e02745217 (HEAD -> master, origin/master, origin/HEAD)
- Run e.g.
:CursorResetHard
(preferrably via some key binding :) to reset your working tree to that commit.
Install example with the Lazy package manager:
require("lazy").setup({
{
"oflisback/cursor-git-ref-command.nvim",
config = function()
require("cursor-git-ref-command").setup()
end,
dependencies = {
"nvim-telescope/telescope.nvim"
}
}
})
It's also possible to use the plugin without Telescope by providing a custom picker, here's an example of a dummy picker that always returns the commit_sha:
require("lazy").setup({
{
"oflisback/cursor-git-ref-command.nvim",
config = function()
require("cursor-git-ref-command").setup({
pick_sha_or_ref = function(commit_hash, refs, callback)
callback(commit_hash)
end,
})
end,
}
})
The plugin provides the following commands:
CursorCherryPick
: Cherry-pick commit at the cursor line.CursorCheckOut
: Check out commit or ref at the cursor line.CursorDrop
: Drop commit at the cursor line.CursorResetSoft
: Soft reset to the commit or ref at the cursor line.CursorResetMixed
: Mixed reset to the commit or ref at the cursor line.CursorResetHard
: Hard reset to the commit or ref at the cursor line.
Tests are using https://github.com/lunarmodules/busted install via luarocks install --local busted
and add ~/.luarocks/bin
to your PATH. After that run tests via busted --helper=test_helper.lua tests
.
Contributions, bug reports and suggestions are very welcome.
If you have a suggestion that would make the project better, please fork the repo and create a pull request.