@b4n commented on this pull request.
g_string_append_c(stats_str, ' ');
- g_string_append_printf(stats_str, "%d", - sci_get_style_at(doc->editor->sci, pos)); + g_string_append_printf(stats_str, "%d", base_style); + if (base_style != style) + { + gint sub_start = scintilla_send_message(doc->editor->sci, SCI_GETSUBSTYLESSTART, base_style, 0); + + g_string_append_printf(stats_str, "+%d", style + 1 - sub_start);
Here the format is also pretty much whatever I first though of, and `B.S` might be better than `B+S`.