Home
last modified time | relevance | path

Searched refs:b_syn_clusters (Results 1 – 2 of 2) sorted by relevance

/vim-8.2.3635/src/
H A Dsyntax.c126 #define SYN_CLSTR(buf) ((syn_cluster_T *)((buf)->b_syn_clusters.ga_data))
3538 for (i = block->b_syn_clusters.ga_len; --i >= 0; ) in syntax_clear()
3540 ga_clear(&block->b_syn_clusters); in syntax_clear()
5455 for (i = curwin->w_s->b_syn_clusters.ga_len; --i >= 0; ) in syn_scl_name2id()
5518 if (curwin->w_s->b_syn_clusters.ga_data == NULL) in syn_add_cluster()
5520 curwin->w_s->b_syn_clusters.ga_itemsize = sizeof(syn_cluster_T); in syn_add_cluster()
5521 curwin->w_s->b_syn_clusters.ga_growsize = 10; in syn_add_cluster()
5524 len = curwin->w_s->b_syn_clusters.ga_len; in syn_add_cluster()
5535 if (ga_grow(&curwin->w_s->b_syn_clusters, 1) == FAIL) in syn_add_cluster()
5545 ++curwin->w_s->b_syn_clusters.ga_len; in syn_add_cluster()
[all …]
H A Dstructs.h2590 garray_T b_syn_clusters; // table for syntax clusters member