Lines Matching refs:nextchar
1243 int nextchar; // next non-white char after option name in do_set() local
1351 nextchar = arg[len]; in do_set()
1354 arg[len] = nextchar; // restore nextchar in do_set()
1403 nextchar = arg[len]; in do_set()
1421 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL in do_set()
1423 || nextchar == '?')) in do_set()
1494 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL) in do_set()
1498 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i') in do_set()
1511 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL in do_set()
1523 if (nextchar == '?' in do_set()
1525 && vim_strchr((char_u *)"=:&<", nextchar) == NULL in do_set()
1569 if (nextchar != '?' in do_set()
1570 && nextchar != NUL && !VIM_ISWHITE(afterchar)) in do_set()
1580 if (nextchar == '=' || nextchar == ':') in do_set()
1591 if (nextchar == '!') in do_set()
1593 else if (nextchar == '&') in do_set()
1597 else if (nextchar == '<') in do_set()
1613 if (nextchar != NUL && !VIM_ISWHITE(afterchar)) in do_set()
1629 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL in do_set()
1648 if (nextchar == '&') in do_set()
1652 else if (nextchar == '<') in do_set()
1761 if (nextchar == '&') // set to default val in do_set()
1794 else if (nextchar == '<') // set to global val in do_set()
2142 if (nextchar == '&') in do_set()
2153 nextchar = *p; in do_set()
2156 *p = nextchar; in do_set()
6213 int nextchar; in set_context_in_set_cmd() local
6274 nextchar = *++p; in set_context_in_set_cmd()
6288 nextchar = *++p; in set_context_in_set_cmd()
6300 nextchar = *p; in set_context_in_set_cmd()
6303 *p = nextchar; in set_context_in_set_cmd()
6318 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=') in set_context_in_set_cmd()
6321 nextchar = '='; in set_context_in_set_cmd()
6323 if ((nextchar != '=' && nextchar != ':') in set_context_in_set_cmd()