vis

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

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

commit bf221ad3b2685c11d35d5d2497c7eb157c009988
parent e3504d9b40597779b8890f62eeefec795a736735
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Tue, 28 Jan 2020 08:37:32 +0100

Merge branch 'master' of https://github.com/eafe/vis

Diffstat:
Mtext-motions.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/text-motions.c b/text-motions.c @@ -605,7 +605,7 @@ size_t text_bracket_match_symbol(Text *txt, size_t pos, const char *symbols, con if (text_iterator_byte_next(&it, &c)) { /* if a single or double quote is followed by * a special character, search backwards */ - char special[] = " \n)}]>.,:;"; + char special[] = " \t\n)}]>.,:;"; if (memchr(special, c, sizeof(special))) direction = -1; }