2004-06-13 20:20:40 +00:00
|
|
|
/* ex_docmd.c */
|
2016-01-19 13:22:12 +01:00
|
|
|
void do_exmode(int improved);
|
|
|
|
|
int do_cmdline_cmd(char_u *cmd);
|
2019-06-25 04:12:16 +02:00
|
|
|
int do_cmdline(char_u *cmdline, char_u *(*fgetline)(int, void *, int, int), void *cookie, int flags);
|
|
|
|
|
int getline_equal(char_u *(*fgetline)(int, void *, int, int), void *cookie, char_u *(*func)(int, void *, int, int));
|
|
|
|
|
void *getline_cookie(char_u *(*fgetline)(int, void *, int, int), void *cookie);
|
2019-01-13 23:38:42 +01:00
|
|
|
int parse_command_modifiers(exarg_T *eap, char **errormsg, int skip_only);
|
|
|
|
|
int parse_cmd_address(exarg_T *eap, char **errormsg, int silent);
|
2016-01-19 13:22:12 +01:00
|
|
|
int checkforcmd(char_u **pp, char *cmd, int len);
|
|
|
|
|
int modifier_len(char_u *cmd);
|
|
|
|
|
int cmd_exists(char_u *name);
|
2019-08-23 21:17:35 +02:00
|
|
|
cmdidx_T excmd_get_cmdidx(char_u *cmd, int len);
|
|
|
|
|
long excmd_get_argt(cmdidx_T idx);
|
2016-01-19 13:22:12 +01:00
|
|
|
char_u *skip_range(char_u *cmd, int *ctx);
|
|
|
|
|
void ex_ni(exarg_T *eap);
|
2019-01-13 23:38:42 +01:00
|
|
|
int expand_filename(exarg_T *eap, char_u **cmdlinep, char **errormsgp);
|
2016-01-19 13:22:12 +01:00
|
|
|
void separate_nextcmd(exarg_T *eap);
|
2019-08-23 21:17:35 +02:00
|
|
|
char_u *skip_cmd_arg( char_u *p, int rembs);
|
2018-04-04 22:57:29 +02:00
|
|
|
int get_bad_opt(char_u *p, exarg_T *eap);
|
2016-01-19 13:22:12 +01:00
|
|
|
int ends_excmd(int c);
|
|
|
|
|
char_u *find_nextcmd(char_u *p);
|
|
|
|
|
char_u *check_nextcmd(char_u *p);
|
|
|
|
|
char_u *get_command_name(expand_T *xp, int idx);
|
|
|
|
|
void not_exiting(void);
|
|
|
|
|
void tabpage_close(int forceit);
|
|
|
|
|
void tabpage_close_other(tabpage_T *tp, int forceit);
|
2018-07-29 17:35:23 +02:00
|
|
|
void handle_drop(int filec, char_u **filev, int split, void (*callback)(void *), void *cookie);
|
|
|
|
|
void handle_any_postponed_drop(void);
|
2016-01-19 13:22:12 +01:00
|
|
|
void ex_splitview(exarg_T *eap);
|
|
|
|
|
void tabpage_new(void);
|
|
|
|
|
void do_exedit(exarg_T *eap, win_T *old_curwin);
|
|
|
|
|
void free_cd_dir(void);
|
2019-05-07 22:06:52 +02:00
|
|
|
void post_chdir(cdscope_T cdscope);
|
|
|
|
|
int changedir_func(char_u *new_dir, int forceit, cdscope_T cdscope);
|
2016-01-19 13:22:12 +01:00
|
|
|
void ex_cd(exarg_T *eap);
|
|
|
|
|
void do_sleep(long msec);
|
|
|
|
|
void ex_may_print(exarg_T *eap);
|
2016-01-31 20:24:32 +01:00
|
|
|
void ex_redraw(exarg_T *eap);
|
2016-01-19 13:22:12 +01:00
|
|
|
int vim_mkdir_emsg(char_u *name, int prot);
|
|
|
|
|
FILE *open_exfile(char_u *fname, int forceit, char *mode);
|
|
|
|
|
void update_topline_cursor(void);
|
2017-09-23 16:33:50 +02:00
|
|
|
int save_current_state(save_state_T *sst);
|
|
|
|
|
void restore_current_state(save_state_T *sst);
|
2016-01-30 23:20:33 +01:00
|
|
|
void ex_normal(exarg_T *eap);
|
2016-01-19 13:22:12 +01:00
|
|
|
void exec_normal_cmd(char_u *cmd, int remap, int silent);
|
2018-10-02 16:23:58 +02:00
|
|
|
void exec_normal(int was_typed, int use_vpeekc, int may_use_terminal_loop);
|
2016-01-19 13:22:12 +01:00
|
|
|
int find_cmdline_var(char_u *src, int *usedlen);
|
2019-01-13 23:38:42 +01:00
|
|
|
char_u *eval_vars(char_u *src, char_u *srcstart, int *usedlen, linenr_T *lnump, char **errormsg, int *escaped);
|
2016-01-19 13:22:12 +01:00
|
|
|
char_u *expand_sfile(char_u *arg);
|
|
|
|
|
int put_eol(FILE *fd);
|
|
|
|
|
int put_line(FILE *fd, char *s);
|
|
|
|
|
void dialog_msg(char_u *buff, char *format, char_u *fname);
|
2018-04-27 22:53:07 +02:00
|
|
|
void set_no_hlsearch(int flag);
|
2018-08-15 20:59:48 +02:00
|
|
|
int is_loclist_cmd(int cmdidx);
|
2017-09-14 22:55:37 +02:00
|
|
|
int get_pressedreturn(void);
|
|
|
|
|
void set_pressedreturn(int val);
|
2004-06-13 20:20:40 +00:00
|
|
|
/* vim: set ft=c : */
|