Lines Matching refs:linehl
1036 char_u *linehl, in sign_define_by_name() argument
1074 if (linehl != NULL) in sign_define_by_name()
1075 sp->sn_line_hl = syn_check_group(linehl, (int)STRLEN(linehl)); in sign_define_by_name()
1299 char_u *linehl = NULL; in sign_define_cmd() local
1323 linehl = vim_strnsave(arg, p - arg); in sign_define_cmd()
1339 sign_define_by_name(sign_name, icon, linehl, text, texthl); in sign_define_cmd()
1343 vim_free(linehl); in sign_define_cmd()
2173 char_u *linehl = NULL; in sign_define_from_dict() local
2191 linehl = dict_get_string(dict, (char_u *)"linehl", TRUE); in sign_define_from_dict()
2196 if (sign_define_by_name(name, icon, linehl, text, texthl) == OK) in sign_define_from_dict()
2202 vim_free(linehl); in sign_define_from_dict()