diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2020-01-28 08:37:32 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2020-01-28 08:37:32 +0100 |
| commit | 6174097fd8157ef01d5361952b7bd4146c61dfbf (patch) | |
| tree | db6fde9af8d78614289802a6239880eb3dbb8579 | |
| parent | 97bfecaf908bbe2ae5ac87475c85cfba2fe5267f (diff) | |
| parent | 9cc17dfe11975e8b76eb8cfdcc001ced828460ec (diff) | |
| download | vis-6174097fd8157ef01d5361952b7bd4146c61dfbf.tar.gz vis-6174097fd8157ef01d5361952b7bd4146c61dfbf.tar.xz | |
Merge branch 'master' of https://github.com/eafe/vis
| -rw-r--r-- | text-motions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/text-motions.c b/text-motions.c index 0b4398d..21967e5 100644 --- 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; } |
