Home
last modified time | relevance | path

Searched refs:ends_excmd (Results 1 – 10 of 10) sorted by relevance

/vim-8.2.3635/src/proto/
H A Dex_docmd.pro31 int ends_excmd(int c);
/vim-8.2.3635/src/
H A Dex_docmd.c2913 || *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
H A Dautocmd.c1349 while (*arg && !ends_excmd(*arg) && !VIM_ISWHITE(*arg)) in do_doautocmd()
1976 else if (fname != NULL && !ends_excmd(*fname)) in apply_autocmds_group()
H A Devalvars.c1202 if (!VIM_ISWHITE(*arg) && !ends_excmd(*arg)) in list_arg_vars()
1619 && !ends_excmd(*name_end))) in ex_unletlock()
H A Duserfunc.c3993 if (!ends_excmd(*skipwhite(p))) in define_function()
4709 if (!ends_excmd(*skipwhite(p))) in ex_delfunction()
H A Dsyntax.c4504 if (ends_excmd(*arg) || *rest == NUL) in get_group_name()
5222 if (!ends_excmd(*rest) || eap->skip) in syn_cmd_region()
H A Dcmdexpand.c1389 if (*arg == NUL || !ends_excmd(*arg)) in set_one_cmd_context()
H A Dvim9compile.c4829 if (ends_excmd(*skipwhite(*arg))) in compile_expr7()
9795 if (ends_excmd(*skipwhite(ea.cmd + 1))) in compile_def_function()
H A Deval.c856 if (unlet && !VIM_ISWHITE(*p) && !ends_excmd(*p) in get_lval()
/vim-8.2.3635/runtime/doc/
H A Dversion8.txt44809 Problem: Vim9: not all commands using ends_excmd() tested.