8000
Skip to content

Tags: julienvincent/hunk.nvim

Tags

v1.9.0

Toggle v1.9.0's commit message

Verified

This commit was signed with the committer’s verified signature.
julienvincent Julien Vincent
Add docs on how to accept or reject changes

Closes #23

v1.8.0

Toggle v1.8.0's commit message

Verified

This commit was signed with the committer’s verified signature.
julienvincent Julien Vincent
Add keymaps to allow toggling lines on both sides

Currently if you want to toggle line-by-line you need to navigate to the
'other' side of the diff to toggle the corresponding line there.

The more natural experience would be to have a keymap which toggles the
corresponding line (from the perspective of the current hunk) on the
other side of the diff at the same time.

This patch adds the keymap `toggle_line_pair` which is default mapped to
`s` in normal and visual mode which exposes this behaviour.

v1.7.0

Toggle v1.7.0's commit message
< 8000 h1 class="Overlay-title sr-only" id="commit-badge-verified-5644c8b3-dialog-title"> Verified
This commit was signed with the committer’s verified signature.
julienvincent Julien Vincent
Remove unused highlight names

v1.6.0

Toggle v1.6.0's commit message

Verified

This commit was signed with the committer’s verified signature.
julienvincent Julien Vincent
Fix neovim nightly downloads

This also removes v0.9.5 from the test matrix as the format for release
downloads changed and it's too much effort to support the old format

v1.5.0

Toggle v1.5.0's commit message

Verified

This commit was signed with the committer’s verified signature.
julienvincent Julien Vincent
Pass reference to `tree` when calling action fns

When the tree first loads it attempts to call the `on_preview` hook.
This hook currently references the `tree` var which is only bound after
the tree has completed loading.

This introduces a race and results in the `tree` var being nil for
buffers that are opened on init.

This is fixed in this change by passing an explicit reference to itself
when the tree component called `on_preview`.

Fixes #13

v1.4.0

Toggle v1.4.0's commit message

Verified

This commit was signed with the committer’s verified signature.
julienvincent Julien Vincent
Allow toggle on dir to recursively toggle files

This allows pressing the toggle file binding on a directory in the
filetree to recursively toggle all files in that directory.

v1.3.0

Toggle v1.3.0's commit message

Verified

This commit was signed with the committer’s verified signature.
julienvincent Julien Vincent
Fix diff highlight tweaks

Currently the HunkDiffAddAsDelete expects the `bg` property of the
DiffDelete highlight group to be present which isn't true for all
colorschemes.

This updates the highlight group mapping to take all properties from the
DiffDelete hl group and map them to hex with proper presence checks.

Fixes #8

v1.2.0

Toggle v1.2.0's commit message

Verified

This commit was signed with the committer’s verified signature.
julienvincent Julien Vincent
Update README with new config options

v1.1.0

Toggle v1.1.0's commit message

Verified

This commit was signed with the committer’s verified signature.
julienvincent Julien Vincent
Document devicons and mini.icons as optional deps

v1.0.1

Toggle v1.0.1's commit message

Verified

This commit was signed with the committer’s verified signature.
julienvincent Julien Vincent
Fix bug applying lines inserted at start of file

0