Lines Matching refs:last_dash
1331 char_u *last_dash; in find_special_key() local
1349 last_dash = src; in find_special_key()
1354 last_dash = bp; in find_special_key()
1392 for (bp = src + 1; bp < last_dash; bp++) in find_special_key()
1406 if (bp >= last_dash) in find_special_key()
1408 if (STRNICMP(last_dash + 1, "char-", 5) == 0 in find_special_key()
1409 && VIM_ISDIGIT(last_dash[6])) in find_special_key()
1412 vim_str2nr(last_dash + 6, NULL, &l, STR2NR_ALL, NULL, in find_special_key()
1426 if (in_string && last_dash[1] == '\\' && last_dash[2] == '"') in find_special_key()
1429 l = mb_ptr2len(last_dash + off); in find_special_key()
1432 if (modifiers != 0 && last_dash[l + off] == '>') in find_special_key()
1433 key = PTR2CHAR(last_dash + off); in find_special_key()
1436 key = get_special_key_code(last_dash + off); in find_special_key()