feat: add expand/shrink_selection and select_next/prev_sibling commands

This commit is contained in:
CJ van den Berg 2024-11-25 18:51:37 +01:00
parent 6735d52090
commit b0a1b80acb
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
4 changed files with 176 additions and 1 deletions

View file

@ -759,7 +759,7 @@ const Node = union(enum) {
return if (found) ctx.result else error.NotFound;
}
pub fn pos_to_width(self: *const Node, line: usize, pos: usize, metrics_: Metrics) !usize {
pub fn pos_to_width(self: *const Node, line: usize, pos: usize, metrics_: Metrics) error{NotFound}!usize {
const do = struct {
result: usize = 0,
pos: usize,