Releases: StackInTheWild/headhunter.nvim
Releases · StackInTheWild/headhunter.nvim
v1.3.0
What's Changed
- fix: Discard
git ls-filesoutput by @dan-woz in #11 - Support stash conflict markers in headhunter.nvim by @Faria22 in #8
- Add quickfix listing and improve conflict handling by @Faria22 in #9
- Always register default keymaps by @Faria22 in #10
New Contributors
Full Changelog: v1.2.0...v1.3.0
v1.2.0
v1.1.0
What's Changed
- Feature/support backward conflict navigation by @StackInTheWild in #4
Full Changelog: v1.0.1...v1.1.0
v1.0.1
v1.0.0 - Initial Release
Introducing headhunter.nvim, a Neovim plugin to make resolving git merge conflicts faster and easier.
🔹 Features
- Jump directly to the next conflict with
]g - Resolve conflicts with intuitive defaults:
<leader>gh→ Take HEAD<leader>go→ Take origin<leader>gb→ Take both
- Fully customizable keymaps
- Lightweight, pure Lua — no external dependencies
🔹 Installation (lazy.nvim)
{
"StackInTheWild/headhunter.nvim",
config = function()
require("headhunter").setup()
end
}