vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 373ccf286ae3f795c6afbb3b349afd17bad87b62
parent 5d7fcdc1a0bf58632298fa36ae83bcefc421a4b7
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Mon, 31 Aug 2020 22:10:38 +0200

text: improve and simplify inner word text object

Previously words ending in special symbols would wrongly be included
in range.

Diffstat:
Mtext-objects.c | 35++++++++++++++---------------------
1 file changed, 14 insertions(+), 21 deletions(-)

diff --git a/text-objects.c b/text-objects.c @@ -27,33 +27,26 @@ static Filerange text_object_customword(Text *txt, size_t pos, int (*isboundary) if (space(c)) { r.start = text_char_next(txt, text_customword_end_prev(txt, pos, isboundary)); r.end = text_customword_start_next(txt, pos, isboundary); - } else if (boundary(prev) && boundary(next)) { - if ((space(prev) && space(next)) || !boundary(c)) { - /* on a single character */ + } else if (boundary(c)) { + if (boundary(prev) && !space(prev)) + r.start = text_customword_start_prev(txt, pos, isboundary); + else r.start = pos; + + if (boundary(next) && !space(next)) + r.end = text_char_next(txt, text_customword_end_next(txt, pos, isboundary)); + else r.end = text_char_next(txt, pos); - } else if (space(prev)) { + } else { + if (boundary(prev)) r.start = pos; - r.end = text_char_next(txt, text_customword_end_next(txt, pos, isboundary)); - } else if (space(next)) { + else r.start = text_customword_start_prev(txt, pos, isboundary); + + if (boundary(next)) r.end = text_char_next(txt, pos); - } else { - r.start = text_customword_start_prev(txt, pos, isboundary); + else r.end = text_char_next(txt, text_customword_end_next(txt, pos, isboundary)); - } - } else if (boundary(prev)) { - /* at start of a word */ - r.start = pos; - r.end = text_char_next(txt, text_customword_end_next(txt, pos, isboundary)); - } else if (boundary(next)) { - /* at end of a word */ - r.start = text_customword_start_prev(txt, pos, isboundary); - r.end = text_char_next(txt, pos); - } else { - /* in the middle of a word */ - r.start = text_customword_start_prev(txt, pos, isboundary); - r.end = text_char_next(txt, text_customword_end_next(txt, pos, isboundary)); } return r;