blob: a8ca7af17babff35bd5c9be2d482ec3a4863a5eb [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* ex_getln.c */
Bram Moolenaarc447d8d2018-12-18 21:56:28 +01002void cmdline_init(void);
Bram Moolenaare96a2492019-06-25 04:12:16 +02003char_u *getcmdline(int firstc, long count, int indent, int do_concat);
Bram Moolenaaref269542016-01-19 13:22:12 +01004char_u *getcmdline_prompt(int firstc, char_u *prompt, int attr, int xp_context, char_u *xp_arg);
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01005int check_opt_wim(void);
Bram Moolenaaref269542016-01-19 13:22:12 +01006int text_locked(void);
7void text_locked_msg(void);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008char *get_text_locked_msg(void);
Bram Moolenaaref269542016-01-19 13:22:12 +01009int curbuf_locked(void);
10int allbuf_locked(void);
Bram Moolenaare96a2492019-06-25 04:12:16 +020011char_u *getexline(int c, void *cookie, int indent, int do_concat);
12char_u *getexmodeline(int promptc, void *cookie, int indent, int do_concat);
Bram Moolenaaref269542016-01-19 13:22:12 +010013int cmdline_overstrike(void);
14int cmdline_at_end(void);
15colnr_T cmdline_getvcol_cursor(void);
Bram Moolenaar66b51422019-08-18 21:44:12 +020016int realloc_cmdbuff(int len);
Bram Moolenaar48ac6712019-07-04 20:26:21 +020017void free_arshape_buf(void);
Bram Moolenaaref269542016-01-19 13:22:12 +010018void putcmdline(int c, int shift);
19void unputcmdline(void);
20int put_on_cmdline(char_u *str, int len, int redraw);
Bram Moolenaaref269542016-01-19 13:22:12 +010021void cmdline_paste_str(char_u *s, int literally);
22void redrawcmdline(void);
Bram Moolenaar29ae3772017-04-30 19:39:39 +020023void redrawcmdline_ex(int do_compute_cmdrow);
Bram Moolenaaref269542016-01-19 13:22:12 +010024void redrawcmd(void);
25void compute_cmdrow(void);
Bram Moolenaar66b51422019-08-18 21:44:12 +020026void cursorcmd(void);
Bram Moolenaaref269542016-01-19 13:22:12 +010027void gotocmdline(int clr);
Bram Moolenaaref269542016-01-19 13:22:12 +010028char_u *vim_strsave_fnameescape(char_u *fname, int shell);
Bram Moolenaar66b51422019-08-18 21:44:12 +020029void escape_fname(char_u **pp);
Bram Moolenaaref269542016-01-19 13:22:12 +010030void tilde_replace(char_u *orig_pat, int num_files, char_u **files);
Bram Moolenaar66b51422019-08-18 21:44:12 +020031cmdline_info_T *get_cmdline_info(void);
Bram Moolenaar08c308a2019-09-04 17:48:15 +020032void f_getcmdline(typval_T *argvars, typval_T *rettv);
33void f_getcmdpos(typval_T *argvars, typval_T *rettv);
34void f_setcmdpos(typval_T *argvars, typval_T *rettv);
35void f_getcmdtype(typval_T *argvars, typval_T *rettv);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +020036int get_cmdline_type(void);
Bram Moolenaard7663c22019-08-06 21:59:57 +020037int get_cmdline_firstc(void);
Bram Moolenaaref269542016-01-19 13:22:12 +010038int get_list_range(char_u **str, int *num1, int *num2);
Bram Moolenaar7bae0b12019-11-21 22:14:18 +010039char *check_cedit(void);
Bram Moolenaaref269542016-01-19 13:22:12 +010040char_u *script_get(exarg_T *eap, char_u *cmd);
Bram Moolenaarda6c0332019-09-01 16:01:30 +020041void get_user_input(typval_T *argvars, typval_T *rettv, int inputdialog, int secret);
Bram Moolenaar071d4272004-06-13 20:20:40 +000042/* vim: set ft=c : */