Home
last modified time | relevance | path

Searched refs:nextcmd (Results 1 – 17 of 17) sorted by relevance

/vim-8.2.3635/src/
H A Dautocmd.c848 eap->nextcmd = arg + 1; in do_autocmd()
873 eap->nextcmd = pat + 1; in do_autocmd()
2135 patcmd.nextcmd = NULL; in apply_autocmds_group()
2366 apc->nextcmd = ap->cmds; in auto_next_pat()
2405 while (acp->nextcmd != NULL && acp->nextcmd->cmd == NULL) in getnextac()
2407 acp->nextcmd = NULL; in getnextac()
2409 acp->nextcmd = acp->nextcmd->next; in getnextac()
2411 if (acp->nextcmd != NULL) in getnextac()
2425 ac = acp->nextcmd; in getnextac()
2441 acp->nextcmd = NULL; in getnextac()
[all …]
H A Dvim9script.c181 char_u *nextcmd = eap->nextcmd; in ex_incdec() local
200 eap->nextcmd = NULL; in ex_incdec()
204 eap->nextcmd = nextcmd; in ex_incdec()
H A Dex_docmd.c2352 ea.nextcmd = p + 1; in do_one_cmd()
2682 if (ea.nextcmd && *ea.nextcmd == NUL) // not really a next command in do_one_cmd()
2683 ea.nextcmd = NULL; in do_one_cmd()
2690 return ea.nextcmd; in do_one_cmd()
2819 if (eap->nextcmd != NULL) in parse_command_modifiers()
2820 ++eap->nextcmd; in parse_command_modifiers()
4980 if (eap->nextcmd != NULL) in repl_cmdline()
5481 eap->nextcmd = p; in set_nextcmd()
6899 if (eap->nextcmd != NULL) in do_exedit()
6902 eap->nextcmd = NULL; in do_exedit()
[all …]
H A Dex_cmds.c453 else if (eap->nextcmd == NULL && check_nextcmd(p) != NULL) in ex_sort()
455 eap->nextcmd = check_nextcmd(p); in ex_sort()
3307 if (eap->nextcmd == NULL || *eap->nextcmd == NUL) in ex_append()
3309 p = vim_strchr(eap->nextcmd, NL); in ex_append()
3311 p = eap->nextcmd + STRLEN(eap->nextcmd); in ex_append()
3312 theline = vim_strnsave(eap->nextcmd, p - eap->nextcmd); in ex_append()
3315 eap->nextcmd = p; in ex_append()
3949 if (eap->nextcmd == NULL) in ex_substitute()
H A Duserfunc.c816 char_u *nextcmd = NULL; in get_function_body() local
819 nextcmd = p + 1; in get_function_body()
821 nextcmd = line_arg; in get_function_body()
834 if (nextcmd != NULL && *skipwhite(nextcmd) != NUL) in get_function_body()
839 eap->nextcmd = nextcmd; in get_function_body()
1183 *arg = eap.nextcmd; in lambda_function_body()
3999 if (eap->nextcmd != NULL) in define_function()
4716 if (eap->nextcmd != NULL) in ex_delfunction()
4882 eap->nextcmd = NULL; in ex_return()
4909 eap->nextcmd = NULL; in ex_return()
[all …]
H A Dsyntax.c3326 eap->nextcmd = find_nextcmd(arg); in syn_cmd_conceal()
3356 eap->nextcmd = find_nextcmd(arg); in syn_cmd_case()
3385 eap->nextcmd = find_nextcmd(arg); in syn_cmd_foldlevel()
3427 eap->nextcmd = find_nextcmd(arg); in syn_cmd_spell()
3665 eap->nextcmd = find_nextcmd(arg); in syn_cmd_clear()
3845 eap->nextcmd = find_nextcmd(arg); in syn_cmd_list()
4744 eap->nextcmd = find_nextcmd(arg); in syn_cmd_include()
5571 eap->nextcmd = find_nextcmd(arg); in syn_cmd_cluster()
H A Dvim9compile.c5822 return eap->nextcmd == NULL ? (char_u *)"" : eap->nextcmd; in compile_nested_function()
7582 return eap->nextcmd == NULL ? (char_u *)"" : eap->nextcmd; in compile_unletlock()
9086 char_u *nextcmd = (char_u *)""; in compile_exec() local
9127 if (eap->nextcmd != NULL) in compile_exec()
9128 nextcmd = eap->nextcmd; in compile_exec()
9141 nextcmd = p + 1; in compile_exec()
9256 if (*nextcmd != NUL) in compile_exec()
9259 --nextcmd; in compile_exec()
9260 *nextcmd = '|'; in compile_exec()
9264 return nextcmd; in compile_exec()
H A Dex_eval.c1728 eap->nextcmd = find_nextcmd(eap->arg); in ex_catch()
1841 eap->nextcmd = find_nextcmd(end); in ex_catch()
H A Dhelp.c55 eap->nextcmd = arg; in ex_help()
H A Dmatch.c1417 eap->nextcmd = find_nextcmd(end); in ex_match()
H A Dscriptfile.c964 openscript(fname, global_busy || listcmd_busy || eap->nextcmd != NULL in cmd_source()
H A Dex_cmds.h1903 char_u *nextcmd; // next command (NULL if none) member
H A Deval.c2260 eap->nextcmd = check_nextcmd(p); in eval0()
H A Devalfunc.c3763 eap.nextcmd = NULL; in f_expandcmd()
/vim-8.2.3635/src/testdir/
H A Dtest_vimscript.vim5619 call NEXT('echo novar') " (checks nextcmd)
5621 call NEXT('let novar #') " (skips nextcmd)
5623 call NEXT('unlet novar #') " (skips nextcmd)
5625 call NEXT('let {novar}') " (skips nextcmd)
5627 call NEXT('unlet{ novar}') " (skips nextcmd)
/vim-8.2.3635/runtime/doc/
H A Dif_pyth.txt197 [{'cmd': '/^eval_expr(arg, nextcmd)$/', 'static': 0, 'name': ~
H A Dversion8.txt41016 Solution: Remove EX_TRLBAR and set nextcmd pointer.