blob: 588c3a7de628245c3b91263735eeccdc45578cff [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* message.c */
Bram Moolenaaref269542016-01-19 13:22:12 +01002int msg(char_u *s);
3int verb_msg(char_u *s);
4int msg_attr(char_u *s, int attr);
5int msg_attr_keep(char_u *s, int attr, int keep);
6char_u *msg_strtrunc(char_u *s, int force);
Bram Moolenaara6b7a082016-08-10 20:53:05 +02007void trunc_string(char_u *s, char_u *buf, int room_in, int buflen);
Bram Moolenaaref269542016-01-19 13:22:12 +01008void reset_last_sourcing(void);
9void msg_source(int attr);
10int emsg_not_now(void);
Bram Moolenaare0c31f62017-03-01 15:07:05 +010011void ignore_error_for_testing(char_u *error);
Bram Moolenaarb869c0d2016-07-20 00:10:51 +020012void do_perror(char *msg);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +010013int emsg(char *s);
Bram Moolenaarb5443cc2019-01-15 20:19:40 +010014
15int semsg(const char *s, ...)
16#ifdef USE_PRINTF_FORMAT_ATTRIBUTE
17 __attribute__((format(printf, 1, 2)))
18#endif
19;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +010020void iemsg(char *s);
Bram Moolenaarb5443cc2019-01-15 20:19:40 +010021void siemsg(const char *s, ...)
22#ifdef USE_PRINTF_FORMAT_ATTRIBUTE
23 __attribute__((format(printf, 1, 2)))
24#endif
25;
Bram Moolenaar95f09602016-11-10 20:01:45 +010026void internal_error(char *where);
Bram Moolenaaref269542016-01-19 13:22:12 +010027void emsg_invreg(int name);
28char_u *msg_trunc_attr(char_u *s, int force, int attr);
29char_u *msg_may_trunc(int force, char_u *s);
30int delete_first_msg(void);
31void ex_messages(exarg_T *eap);
32void msg_end_prompt(void);
33void wait_return(int redraw);
34void set_keep_msg(char_u *s, int attr);
35void set_keep_msg_from_hist(void);
36void msg_start(void);
37void msg_starthere(void);
38void msg_putchar(int c);
39void msg_putchar_attr(int c, int attr);
40void msg_outnum(long n);
41void msg_home_replace(char_u *fname);
42void msg_home_replace_hl(char_u *fname);
43int msg_outtrans(char_u *str);
44int msg_outtrans_attr(char_u *str, int attr);
45int msg_outtrans_len(char_u *str, int len);
46char_u *msg_outtrans_one(char_u *p, int attr);
47int msg_outtrans_len_attr(char_u *msgstr, int len, int attr);
48void msg_make(char_u *arg);
49int msg_outtrans_special(char_u *strstart, int from);
50char_u *str2special_save(char_u *str, int is_lhs);
51char_u *str2special(char_u **sp, int from);
52void str2specialbuf(char_u *sp, char_u *buf, int len);
53void msg_prt_line(char_u *s, int list);
54void msg_puts(char_u *s);
55void msg_puts_title(char_u *s);
56void msg_puts_long_attr(char_u *longstr, int attr);
57void msg_puts_long_len_attr(char_u *longstr, int len, int attr);
58void msg_puts_attr(char_u *s, int attr);
Bram Moolenaar7b668e82016-08-23 23:51:21 +020059int message_filtered(char_u *msg);
Bram Moolenaaref269542016-01-19 13:22:12 +010060void may_clear_sb_text(void);
Bram Moolenaarf2405ed2017-03-16 19:58:25 +010061void sb_text_start_cmdline(void);
62void sb_text_end_cmdline(void);
63void clear_sb_text(int all);
Bram Moolenaaref269542016-01-19 13:22:12 +010064void show_sb_text(void);
65void msg_sb_eol(void);
66int msg_use_printf(void);
67void mch_errmsg(char *str);
68void mch_msg(char *str);
69void msg_moremsg(int full);
70void repeat_message(void);
71void msg_clr_eos(void);
72void msg_clr_eos_force(void);
73void msg_clr_cmdline(void);
74int msg_end(void);
75void msg_check(void);
76int redirecting(void);
77void verbose_enter(void);
78void verbose_leave(void);
79void verbose_enter_scroll(void);
80void verbose_leave_scroll(void);
81void verbose_stop(void);
82int verbose_open(void);
83void give_warning(char_u *message, int hl);
Bram Moolenaarf8be4612017-06-23 20:52:40 +020084void give_warning2(char_u *message, char_u *a1, int hl);
Bram Moolenaaref269542016-01-19 13:22:12 +010085void msg_advance(int col);
86int do_dialog(int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield, int ex_cmd);
87void display_confirm_msg(void);
88int vim_dialog_yesno(int type, char_u *title, char_u *message, int dflt);
89int vim_dialog_yesnocancel(int type, char_u *title, char_u *message, int dflt);
90int vim_dialog_yesnoallcancel(int type, char_u *title, char_u *message, int dflt);
91char_u *do_browse(int flags, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter, buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000092/* vim: set ft=c : */