feat: Add keyboard shortcuts to jump to the prev/next differences in diff view (#2445)

Adds keyboard shortcuts (currently `n` and `N`) in the diffing plugin
view to jump to the next/prev difference in the list.

IMPORTANT NOTE: Depends on changes made in a library submodule. [This
PR](https://github.com/WerWolv/libwolv/pull/34) must be accepted first.

---------

Co-authored-by: Nik <werwolv98@gmail.com>
This commit is contained in:
Zackary Newman
2025-09-21 04:39:37 -04:00
committed by GitHub
parent fedbce6f9e
commit 3c167c3306
5 changed files with 121 additions and 7 deletions

View File

@@ -14,5 +14,10 @@
"hex.diffing.view.diff.algorithm": "Diffing Algorithm",
"hex.diffing.view.diff.settings": "No settings available",
"hex.diffing.view.diff.settings.no_settings": "No settings available",
"hex.diffing.view.diff.task.diffing": "Diffing data..."
}
"hex.diffing.view.diff.task.diffing": "Diffing data...",
"hex.diffing.view.diff.menu.file.jumping": "Jump Between Differences",
"hex.diffing.view.diff.menu.file.jumping.prev_diff": "Jump to Previous Difference",
"hex.diffing.view.diff.menu.file.jumping.next_diff": "Jump to Next Difference",
"hex.diffing.view.diff.jumping.beginning_reached": "No more differences till the beginning of the file",
"hex.diffing.view.diff.jumping.end_reached": "No more differences till the end of the file"
}