diff options
| -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 689bb1f..6d695be 100644 --- a/text-motions.c +++ b/text-motions.c @@ -601,7 +601,7 @@ size_t text_bracket_match_symbol(Text *txt, size_t pos, const char *symbols) { 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; } |
