Searched refs:ends_excmd (Results 1 – 10 of 10) sorted by relevance
31 int ends_excmd(int c);
2913 || *p == NUL || ends_excmd(*p)) in parse_command_modifiers()2919 if (*p == NUL || ends_excmd(*p)) in parse_command_modifiers()2951 || *p == NUL || ends_excmd(*p)) in parse_command_modifiers()3465 if (ends_excmd(*skipwhite(p))) in find_ex_command()3495 if (*eap->cmd == '{' && ends_excmd(*skipwhite(eap->cmd + 1))) in find_ex_command()3614 if (p > eap->cmd && ends_excmd(*skipwhite(p)) in find_ex_command()5407 ends_excmd(int c) in ends_excmd() function
1349 while (*arg && !ends_excmd(*arg) && !VIM_ISWHITE(*arg)) in do_doautocmd()1976 else if (fname != NULL && !ends_excmd(*fname)) in apply_autocmds_group()
1202 if (!VIM_ISWHITE(*arg) && !ends_excmd(*arg)) in list_arg_vars()1619 && !ends_excmd(*name_end))) in ex_unletlock()
3993 if (!ends_excmd(*skipwhite(p))) in define_function()4709 if (!ends_excmd(*skipwhite(p))) in ex_delfunction()
4504 if (ends_excmd(*arg) || *rest == NUL) in get_group_name()5222 if (!ends_excmd(*rest) || eap->skip) in syn_cmd_region()
1389 if (*arg == NUL || !ends_excmd(*arg)) in set_one_cmd_context()
4829 if (ends_excmd(*skipwhite(*arg))) in compile_expr7()9795 if (ends_excmd(*skipwhite(ea.cmd + 1))) in compile_def_function()
856 if (unlet && !VIM_ISWHITE(*p) && !ends_excmd(*p) in get_lval()
44809 Problem: Vim9: not all commands using ends_excmd() tested.