Lines Matching refs:texthl
1038 char_u *texthl) in sign_define_by_name() argument
1077 if (texthl != NULL) in sign_define_by_name()
1078 sp->sn_text_hl = syn_check_group(texthl, (int)STRLEN(texthl)); in sign_define_by_name()
1300 char_u *texthl = NULL; in sign_define_cmd() local
1328 texthl = vim_strnsave(arg, p - arg); in sign_define_cmd()
1339 sign_define_by_name(sign_name, icon, linehl, text, texthl); in sign_define_cmd()
1344 vim_free(texthl); in sign_define_cmd()
2175 char_u *texthl = NULL; in sign_define_from_dict() local
2193 texthl = dict_get_string(dict, (char_u *)"texthl", TRUE); in sign_define_from_dict()
2196 if (sign_define_by_name(name, icon, linehl, text, texthl) == OK) in sign_define_from_dict()
2204 vim_free(texthl); in sign_define_from_dict()