Up Next:
-* highlighting is broken for comments partially off screen (again)
+* moving fromtags to the gutter does not trasnfer focus to edit like one would expect
* implement transaction control in buf.c
* highlight all matches of search term
* highlight classes of identifiers
size_t start = (view->spans ? view->spans->end : 0);
if (first-start > config_get_int(MaxScanDist))
start = first - config_get_int(MaxScanDist);
- view->spans = colors_scan(view->syntax, view->spans, &(view->buffer), first, last+1);
+ view->spans = colors_scan(view->syntax, view->spans, &(view->buffer), start, last+1);
apply_colors(view);
}