diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-01-27 18:42:21 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-01-27 18:44:18 +0100 |
| commit | 84eeabfef92559cb71233bf69db4f1b1fd4f9cd8 (patch) | |
| tree | d0b935dbe0ab6925deba1fa8a0f64dd1352529b0 /vis-motions.c | |
| parent | e2c6526a97018f695d3d2e9a420c36bd2797b37b (diff) | |
| download | vis-84eeabfef92559cb71233bf69db4f1b1fd4f9cd8.tar.gz vis-84eeabfef92559cb71233bf69db4f1b1fd4f9cd8.tar.xz | |
text-motion: change text_bracket_match API
Diffstat (limited to 'vis-motions.c')
| -rw-r--r-- | vis-motions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vis-motions.c b/vis-motions.c index 07090c0..399d51d 100644 --- a/vis-motions.c +++ b/vis-motions.c @@ -174,7 +174,7 @@ static size_t window_nop(Vis *vis, Win *win, size_t pos) { } static size_t bracket_match(Text *txt, size_t pos) { - size_t hit = text_bracket_match_except(txt, pos, "<>\"'`"); + size_t hit = text_bracket_match_symbol(txt, pos, "(){}[]"); if (hit != pos) return hit; char current; |
