| /vim-8.2.3635/src/ |
| H A D | ex_docmd.c | 1948 ea.line1 = ea.line2 = default_address(&ea); in do_one_cmd() 1961 ea.cmd = skipwhite(ea.cmd); in do_one_cmd() 1963 ea.cmd = skipwhite(ea.cmd + 1); in do_one_cmd() 1980 if ((*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2)) in do_one_cmd() 2207 ea.line1 = ea.line2; in do_one_cmd() 2307 ea.arg = skipwhite(ea.arg); in do_one_cmd() 2380 ea.regname = *ea.arg++; in do_one_cmd() 2390 ea.arg += STRLEN(ea.arg); in do_one_cmd() 2393 ea.arg = skipwhite(ea.arg); in do_one_cmd() 2406 ea.arg = skipwhite(ea.arg); in do_one_cmd() [all …]
|
| H A D | cmdexpand.c | 973 exarg_T ea; in set_one_cmd_context() local 983 ea.argt = 0; in set_one_cmd_context() 1019 ea.cmdidx = CMD_k; in set_one_cmd_context() 1071 ea.cmd = cmd; in set_one_cmd_context() 1094 ea.argt = excmd_get_argt(ea.cmdidx); in set_one_cmd_context() 1107 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update) in set_one_cmd_context() 1132 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift) in set_one_cmd_context() 1208 if (ea.argt & EX_XFILE) in set_one_cmd_context() 1274 if (usefilter || ea.cmdidx == CMD_bang || ea.cmdidx == CMD_terminal) in set_one_cmd_context() 1317 switch (ea.cmdidx) in set_one_cmd_context() [all …]
|
| H A D | vim9compile.c | 9152 exarg_T ea; in compile_exec() local 9695 exarg_T ea; in compile_def_function() local 9830 p = ea.cmd; in compile_def_function() 9839 ea.cmd = skipwhite(ea.cmd); in compile_def_function() 9861 cmd = ea.cmd; in compile_def_function() 9867 ea.cmd = skip_range(ea.cmd, TRUE, NULL); in compile_def_function() 9931 if (p == ea.cmd && ea.cmdidx != CMD_SIZE) in compile_def_function() 9963 && ea.cmdidx != CMD_write && ea.cmdidx != CMD_read) in compile_def_function() 9966 ea.argt = excmd_get_argt(ea.cmdidx); in compile_def_function() 10001 line = compile_assignment(p, &ea, ea.cmdidx, &cctx); in compile_def_function() [all …]
|
| H A D | ex_getln.c | 228 exarg_T ea; in do_incsearch_highlighting() local 253 CLEAR_FIELD(ea); in do_incsearch_highlighting() 254 ea.line1 = 1; in do_incsearch_highlighting() 255 ea.line2 = 1; in do_incsearch_highlighting() 256 ea.cmd = ccline.cmdbuff; in do_incsearch_highlighting() 257 ea.addr_type = ADDR_LINES; in do_incsearch_highlighting() 342 if (ea.addr_count > 0) in do_incsearch_highlighting() 345 if (ea.line2 < ea.line1) in do_incsearch_highlighting() 347 search_first_line = ea.line2; in do_incsearch_highlighting() 348 search_last_line = ea.line1; in do_incsearch_highlighting() [all …]
|
| H A D | ex_cmds2.c | 161 exarg_T ea; in dialog_changed() local 171 CLEAR_FIELD(ea); in dialog_changed() 179 if (buf->b_fname != NULL && check_overwrite(&ea, buf, in dialog_changed() 212 if (buf2->b_fname != NULL && check_overwrite(&ea, buf2, in dialog_changed()
|
| H A D | vim9execute.c | 1888 exarg_T ea; in exec_instructions() local 1891 CLEAR_FIELD(ea); in exec_instructions() 1897 res = cexpr_core(&ea, tv); in exec_instructions() 3209 exarg_T ea; in exec_instructions() local 3211 CLEAR_FIELD(ea); in exec_instructions() 3212 ea.cmd = ea.arg = iptr->isn_arg.string; in exec_instructions() 4333 exarg_T ea; in exec_instructions() local 4336 ea.line2 = 0; in exec_instructions() 4337 ea.addr_count = 0; in exec_instructions() 4340 ea.skip = FALSE; in exec_instructions() [all …]
|
| H A D | terminal.c | 3388 exarg_T ea; in term_after_channel_closed() local 3390 CLEAR_FIELD(ea); in term_after_channel_closed() 3391 ex_quit(&ea); in term_after_channel_closed() 4188 exarg_T ea; in handle_drop_command() local 4202 CLEAR_FIELD(ea); in handle_drop_command() 4218 ea.force_ff = *p; in handle_drop_command() 4229 ea.force_enc = 11; in handle_drop_command() 4230 tofree = ea.cmd; in handle_drop_command() 4249 if (ea.cmd == NULL) in handle_drop_command() 4251 ea.arg = fname; in handle_drop_command() [all …]
|
| H A D | diff.c | 2570 exarg_T ea; in nv_diffgetput() local 2581 ea.arg = (char_u *)""; in nv_diffgetput() 2585 ea.arg = buf; in nv_diffgetput() 2588 ea.cmdidx = CMD_diffput; in nv_diffgetput() 2590 ea.cmdidx = CMD_diffget; in nv_diffgetput() 2591 ea.addr_count = 0; in nv_diffgetput() 2592 ea.line1 = curwin->w_cursor.lnum; in nv_diffgetput() 2593 ea.line2 = curwin->w_cursor.lnum; in nv_diffgetput() 2594 ex_diffgetput(&ea); in nv_diffgetput()
|
| H A D | channel.c | 2507 exarg_T ea; in channel_exe_cmd() local 2510 CLEAR_FIELD(ea); in channel_exe_cmd() 2511 ea.arg = arg; in channel_exe_cmd() 2512 ea.addr_count = 0; in channel_exe_cmd() 2513 ea.forceit = TRUE; // no mapping in channel_exe_cmd() 2514 ex_normal(&ea); in channel_exe_cmd() 2518 exarg_T ea; in channel_exe_cmd() local 2521 CLEAR_FIELD(ea); in channel_exe_cmd() 2522 ea.forceit = *arg != NUL; in channel_exe_cmd() 2523 ex_redraw(&ea); in channel_exe_cmd()
|
| H A D | popupmenu.c | 1440 exarg_T ea; in pum_execute_menu() local 1445 CLEAR_FIELD(ea); in pum_execute_menu() 1446 execute_menu(&ea, mp, -1); in pum_execute_menu()
|
| H A D | os_win32.c | 7402 void *ea = NULL; in copy_extattr() local 7433 ea = alloc(eainfo.EaSize); in copy_extattr() 7434 if (ea != NULL) in copy_extattr() 7436 if (pNtQueryEaFile(h, &iosb, ea, eainfo.EaSize, FALSE, in copy_extattr() 7439 vim_free(ea); in copy_extattr() 7440 ea = NULL; in copy_extattr() 7447 if (ea != NULL) in copy_extattr() 7455 pNtSetEaFile(h, &iosb, ea, eainfo.EaSize); in copy_extattr() 7464 vim_free(ea); in copy_extattr()
|
| H A D | quickfix.c | 6060 exarg_T ea; in vgr_jump_to_match() local 6062 CLEAR_FIELD(ea); in vgr_jump_to_match() 6063 ea.arg = target_dir; in vgr_jump_to_match() 6064 ea.cmdidx = CMD_lcd; in vgr_jump_to_match() 6065 ex_cd(&ea); in vgr_jump_to_match() 6435 exarg_T ea; in restore_start_dir() local 6437 CLEAR_FIELD(ea); in restore_start_dir() 6438 ea.arg = dirname_start; in restore_start_dir() 6439 ea.cmdidx = (curwin->w_localdir == NULL) ? CMD_cd : CMD_lcd; in restore_start_dir() 6440 ex_cd(&ea); in restore_start_dir()
|
| H A D | fileio.c | 4332 exarg_T ea; in buf_reload() local 4348 if (prep_exarg(&ea, buf) == OK) in buf_reload() 4400 (linenr_T)MAXLNUM, &ea, flags) != OK) in buf_reload() 4432 vim_free(ea.cmd); in buf_reload()
|
| H A D | buffer.c | 5780 exarg_T ea; in buf_contents_changed() local 5788 if (prep_exarg(&ea, buf) == FAIL) in buf_contents_changed() 5800 &ea, READ_NEW | READ_DUMMY) == OK) in buf_contents_changed() 5814 vim_free(ea.cmd); in buf_contents_changed()
|
| /vim-8.2.3635/src/libvterm/t/ |
| H A D | 25state_input.test | 20 output "\ea"
|
| /vim-8.2.3635/runtime/spell/nl/ |
| H A D | nl_NL.diff | 125 - REP ea e.a.
|
| /vim-8.2.3635/runtime/spell/ga/ |
| H A D | ga_IE.diff | 276 + SAL TINF(EI)- T*NV # exception to F(EA|I)DH$, d?tinf(ea|i)dh only 277 + SAL THINF(EI)- H*NV # exception to F(EA|I)DH$, thinf(ea|i)dh only
|
| /vim-8.2.3635/runtime/spell/gd/ |
| H A D | gd_GB.diff | 272 + SAL TINF(EI)- T*NV # exception to F(EA|I)DH$, d?tinf(ea|i)dh only 273 + SAL THINF(EI)- H*NV # exception to F(EA|I)DH$, thinf(ea|i)dh only
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | usr_05.txt | 346 :map <F5> i{<Esc>ea}<Esc> 375 :map \p i(<Esc>ea)<Esc> 376 :map \c i{<Esc>ea}<Esc>
|
| H A D | indent.txt | 686 nisi ut aliquip ex ea commodo consequat.") 692 nisi ut aliquip ex ea commodo consequat.")
|
| H A D | undo.txt | 152 *:ea* *:earlier*
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_spell_utf8.vim | 154 \"SYLLABLE a\xE1e\xE9i\xEDo\xF3\xF6\xF5u\xFA\xFC\xFBy/aa/au/ea/ee/ei/ie/oa/oe/oo/ou/uu/ui",
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | aml.vim | 28 …o[cluster] it[ems] iview j[oinitem] join keeps keepselect keyan[gle] keyar[ea] keyb[ox] keyf[orms]…
|
| H A D | vim.vim | 25 …r comp[iler] cpf[ile] cun def deletep delp diffp[atch] disa[ssemble] doaut ea echon endf[unction] … 32 … cindent cm colorcolumn completeopt cp cscopeprg csprg culopt def diffexpr ea ei ep eventignore fd…
|
| /vim-8.2.3635/runtime/ |
| H A D | optwin.vim | 480 call <SID>BinOptionG("ea", &ea)
|