Lines Matching refs:ea
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()
4225 ea.cmd = alloc(STRLEN(p) + 12); in handle_drop_command()
4226 if (ea.cmd != NULL) in handle_drop_command()
4228 sprintf((char *)ea.cmd, "sbuf ++enc=%s", p); in handle_drop_command()
4229 ea.force_enc = 11; in handle_drop_command()
4230 tofree = ea.cmd; in handle_drop_command()
4236 get_bad_opt(p, &ea); in handle_drop_command()
4239 ea.force_bin = FORCE_BIN; in handle_drop_command()
4241 ea.force_bin = FORCE_BIN; in handle_drop_command()
4243 ea.force_bin = FORCE_NOBIN; in handle_drop_command()
4245 ea.force_bin = FORCE_NOBIN; in handle_drop_command()
4249 if (ea.cmd == NULL) in handle_drop_command()
4250 ea.cmd = (char_u *)"split"; in handle_drop_command()
4251 ea.arg = fname; in handle_drop_command()
4252 ea.cmdidx = CMD_split; in handle_drop_command()
4253 ex_splitview(&ea); in handle_drop_command()