blob: fddb28e2b81517aba744573d429331eaccaa7cc3 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * message.c: functions for displaying messages on the command line
12 */
13
14#define MESSAGE_FILE /* don't include prototype for smsg() */
Bram Moolenaar44ca54a2016-08-27 15:41:32 +020015#define USING_FLOAT_STUFF
Bram Moolenaar071d4272004-06-13 20:20:40 +000016
17#include "vim.h"
18
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010019static void add_msg_hist(char_u *s, int len, int attr);
20static void hit_return_msg(void);
21static void msg_home_replace_attr(char_u *fname, int attr);
Bram Moolenaar32526b32019-01-19 17:43:09 +010022static void msg_puts_attr_len(char *str, int maxlen, int attr);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010023static void msg_puts_display(char_u *str, int maxlen, int attr, int recurse);
24static void msg_scroll_up(void);
25static void inc_msg_scrolled(void);
26static void store_sb_text(char_u **sb_str, char_u *s, int attr, int *sb_col, int finish);
27static void t_puts(int *t_col, char_u *t_s, char_u *s, int attr);
28static void msg_puts_printf(char_u *str, int maxlen);
29static int do_more_prompt(int typed_char);
30static void msg_screen_putchar(int c, int attr);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020031static void msg_moremsg(int full);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010032static int msg_check_screen(void);
33static void redir_write(char_u *s, int maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +000034#ifdef FEAT_CON_DIALOG
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010035static char_u *msg_show_console_dialog(char_u *message, char_u *buttons, int dfltbutton);
Bram Moolenaar071d4272004-06-13 20:20:40 +000036static int confirm_msg_used = FALSE; /* displaying confirm_msg */
37static char_u *confirm_msg = NULL; /* ":confirm" message */
38static char_u *confirm_msg_tail; /* tail of confirm_msg */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020039static void display_confirm_msg(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#endif
Bram Moolenaar958dc692016-12-01 15:34:12 +010041#ifdef FEAT_JOB_CHANNEL
42static int emsg_to_channel_log = FALSE;
43#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000044
45struct msg_hist
46{
47 struct msg_hist *next;
48 char_u *msg;
49 int attr;
50};
51
52static struct msg_hist *first_msg_hist = NULL;
53static struct msg_hist *last_msg_hist = NULL;
54static int msg_hist_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000055
Bram Moolenaarb5b5b892011-09-14 15:39:29 +020056static FILE *verbose_fd = NULL;
57static int verbose_did_open = FALSE;
58
Bram Moolenaar071d4272004-06-13 20:20:40 +000059/*
60 * When writing messages to the screen, there are many different situations.
61 * A number of variables is used to remember the current state:
62 * msg_didany TRUE when messages were written since the last time the
63 * user reacted to a prompt.
64 * Reset: After hitting a key for the hit-return prompt,
65 * hitting <CR> for the command line or input().
66 * Set: When any message is written to the screen.
67 * msg_didout TRUE when something was written to the current line.
68 * Reset: When advancing to the next line, when the current
69 * text can be overwritten.
70 * Set: When any message is written to the screen.
71 * msg_nowait No extra delay for the last drawn message.
72 * Used in normal_cmd() before the mode message is drawn.
73 * emsg_on_display There was an error message recently. Indicates that there
74 * should be a delay before redrawing.
75 * msg_scroll The next message should not overwrite the current one.
76 * msg_scrolled How many lines the screen has been scrolled (because of
77 * messages). Used in update_screen() to scroll the screen
78 * back. Incremented each time the screen scrolls a line.
79 * msg_scrolled_ign TRUE when msg_scrolled is non-zero and msg_puts_attr()
80 * writes something without scrolling should not make
81 * need_wait_return to be set. This is a hack to make ":ts"
82 * work without an extra prompt.
83 * lines_left Number of lines available for messages before the
Bram Moolenaar5d6f75e2011-12-30 14:14:29 +010084 * more-prompt is to be given. -1 when not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +000085 * need_wait_return TRUE when the hit-return prompt is needed.
86 * Reset: After giving the hit-return prompt, when the user
87 * has answered some other prompt.
88 * Set: When the ruler or typeahead display is overwritten,
89 * scrolling the screen for some message.
90 * keep_msg Message to be displayed after redrawing the screen, in
91 * main_loop().
92 * This is an allocated string or NULL when not used.
93 */
94
95/*
96 * msg(s) - displays the string 's' on the status line
97 * When terminal not initialized (yet) mch_errmsg(..) is used.
98 * return TRUE if wait_return not called
99 */
100 int
Bram Moolenaar32526b32019-01-19 17:43:09 +0100101msg(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102{
103 return msg_attr_keep(s, 0, FALSE);
104}
105
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000106/*
107 * Like msg() but keep it silent when 'verbosefile' is set.
108 */
109 int
Bram Moolenaar32526b32019-01-19 17:43:09 +0100110verb_msg(char *s)
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000111{
112 int n;
113
114 verbose_enter();
115 n = msg_attr_keep(s, 0, FALSE);
116 verbose_leave();
117
118 return n;
119}
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000120
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 int
Bram Moolenaar32526b32019-01-19 17:43:09 +0100122msg_attr(char *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123{
124 return msg_attr_keep(s, attr, FALSE);
125}
126
127 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100128msg_attr_keep(
Bram Moolenaar32526b32019-01-19 17:43:09 +0100129 char *s,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100130 int attr,
131 int keep) /* TRUE: set keep_msg if it doesn't scroll */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132{
133 static int entered = 0;
134 int retval;
135 char_u *buf = NULL;
136
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200137 /* Skip messages not matching ":filter pattern".
138 * Don't filter when there is an error. */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100139 if (!emsg_on_display && message_filtered((char_u *)s))
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200140 return TRUE;
141
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142#ifdef FEAT_EVAL
143 if (attr == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100144 set_vim_var_string(VV_STATUSMSG, (char_u *)s, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145#endif
146
147 /*
148 * It is possible that displaying a messages causes a problem (e.g.,
149 * when redrawing the window), which causes another message, etc.. To
150 * break this loop, limit the recursiveness to 3 levels.
151 */
152 if (entered >= 3)
153 return TRUE;
154 ++entered;
155
156 /* Add message to history (unless it's a repeated kept message or a
157 * truncated message) */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100158 if ((char_u *)s != keep_msg
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 || (*s != '<'
160 && last_msg_hist != NULL
161 && last_msg_hist->msg != NULL
162 && STRCMP(s, last_msg_hist->msg)))
Bram Moolenaar32526b32019-01-19 17:43:09 +0100163 add_msg_hist((char_u *)s, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164
Bram Moolenaar958dc692016-12-01 15:34:12 +0100165#ifdef FEAT_JOB_CHANNEL
166 if (emsg_to_channel_log)
Bram Moolenaar958dc692016-12-01 15:34:12 +0100167 /* Write message in the channel log. */
Bram Moolenaar2f3a90a2017-08-03 14:49:29 +0200168 ch_log(NULL, "ERROR: %s", (char *)s);
Bram Moolenaar958dc692016-12-01 15:34:12 +0100169#endif
170
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171 /* Truncate the message if needed. */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000172 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +0100173 buf = msg_strtrunc((char_u *)s, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174 if (buf != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100175 s = (char *)buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176
Bram Moolenaar32526b32019-01-19 17:43:09 +0100177 msg_outtrans_attr((char_u *)s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178 msg_clr_eos();
179 retval = msg_end();
180
Bram Moolenaar32526b32019-01-19 17:43:09 +0100181 if (keep && retval && vim_strsize((char_u *)s)
182 < (int)(Rows - cmdline_row - 1) * Columns + sc_col)
183 set_keep_msg((char_u *)s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184
185 vim_free(buf);
186 --entered;
187 return retval;
188}
189
190/*
191 * Truncate a string such that it can be printed without causing a scroll.
192 * Returns an allocated string or NULL when no truncating is done.
193 */
194 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100195msg_strtrunc(
196 char_u *s,
197 int force) /* always truncate */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198{
199 char_u *buf = NULL;
200 int len;
201 int room;
202
203 /* May truncate message to avoid a hit-return prompt */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000204 if ((!msg_scroll && !need_wait_return && shortmess(SHM_TRUNCALL)
205 && !exmode_active && msg_silent == 0) || force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 {
207 len = vim_strsize(s);
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000208 if (msg_scrolled != 0)
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000209 /* Use all the columns. */
210 room = (int)(Rows - msg_row) * Columns - 1;
211 else
212 /* Use up to 'showcmd' column. */
213 room = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 if (len > room && room > 0)
215 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 if (enc_utf8)
217 /* may have up to 18 bytes per cell (6 per char, up to two
218 * composing chars) */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100219 len = (room + 2) * 18;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 else if (enc_dbcs == DBCS_JPNU)
221 /* may have up to 2 bytes per cell for euc-jp */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100222 len = (room + 2) * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223 else
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100224 len = room + 2;
225 buf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 if (buf != NULL)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100227 trunc_string(s, buf, room, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228 }
229 }
230 return buf;
231}
232
233/*
234 * Truncate a string "s" to "buf" with cell width "room".
235 * "s" and "buf" may be equal.
236 */
237 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100238trunc_string(
239 char_u *s,
240 char_u *buf,
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200241 int room_in,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100242 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243{
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200244 size_t room = room_in - 3; /* "..." takes 3 chars */
245 size_t half;
246 size_t len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 int e;
248 int i;
249 int n;
250
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200251 if (room_in < 3)
252 room = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 half = room / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254
255 /* First part: Start of the string. */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100256 for (e = 0; len < half && e < buflen; ++e)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 {
258 if (s[e] == NUL)
259 {
260 /* text fits without truncating! */
261 buf[e] = NUL;
262 return;
263 }
264 n = ptr2cells(s + e);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200265 if (len + n > half)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 break;
267 len += n;
268 buf[e] = s[e];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000270 for (n = (*mb_ptr2len)(s + e); --n > 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 {
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100272 if (++e == buflen)
273 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274 buf[e] = s[e];
275 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 }
277
278 /* Last part: End of the string. */
279 i = e;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 if (enc_dbcs != 0)
281 {
282 /* For DBCS going backwards in a string is slow, but
283 * computing the cell width isn't too slow: go forward
284 * until the rest fits. */
285 n = vim_strsize(s + i);
286 while (len + n > room)
287 {
288 n -= ptr2cells(s + i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000289 i += (*mb_ptr2len)(s + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 }
291 }
292 else if (enc_utf8)
293 {
294 /* For UTF-8 we can go backwards easily. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000295 half = i = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296 for (;;)
297 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000298 do
Bram Moolenaarace95982017-03-29 17:30:27 +0200299 half = half - utf_head_off(s, s + half - 1) - 1;
Bram Moolenaarb9644432016-07-19 12:33:44 +0200300 while (half > 0 && utf_iscomposing(utf_ptr2char(s + half)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 n = ptr2cells(s + half);
Bram Moolenaarb9644432016-07-19 12:33:44 +0200302 if (len + n > room || half == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 break;
304 len += n;
Bram Moolenaara5c0cc12016-07-30 16:40:39 +0200305 i = (int)half;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 }
307 }
308 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 {
310 for (i = (int)STRLEN(s); len + (n = ptr2cells(s + i - 1)) <= room; --i)
311 len += n;
312 }
313
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200314
315 if (i <= e + 3)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100316 {
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200317 /* text fits without truncating */
318 if (s != buf)
319 {
320 len = STRLEN(s);
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200321 if (len >= (size_t)buflen)
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200322 len = buflen - 1;
323 len = len - e + 1;
324 if (len < 1)
325 buf[e - 1] = NUL;
326 else
327 mch_memmove(buf + e, s + e, len);
328 }
329 }
330 else if (e + 3 < buflen)
331 {
332 /* set the middle and copy the last part */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100333 mch_memmove(buf + e, "...", (size_t)3);
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200334 len = STRLEN(s + i) + 1;
335 if (len >= (size_t)buflen - e - 3)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100336 len = buflen - e - 3 - 1;
337 mch_memmove(buf + e + 3, s + i, len);
338 buf[e + 3 + len - 1] = NUL;
339 }
340 else
341 {
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200342 /* can't fit in the "...", just truncate it */
343 buf[e - 1] = NUL;
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100344 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345}
346
347/*
348 * Automatic prototype generation does not understand this function.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100349 * Note: Caller of smsg() and smsg_attr() must check the resulting string is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 * shorter than IOSIZE!!!
351 */
352#ifndef PROTO
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100354int vim_snprintf(char *str, size_t str_m, const char *fmt, ...);
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000355
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100357smsg(const char *s, ...)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358{
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200359 if (IObuff == NULL)
360 {
361 // Very early in initialisation and already something wrong, just
362 // give the raw message so the user at least gets a hint.
363 return msg((char *)s);
364 }
365 else
366 {
367 va_list arglist;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200369 va_start(arglist, s);
370 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist);
371 va_end(arglist);
372 return msg((char *)IObuff);
373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374}
375
376 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100377smsg_attr(int attr, const char *s, ...)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378{
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200379 if (IObuff == NULL)
380 {
381 // Very early in initialisation and already something wrong, just
382 // give the raw message so the user at least gets a hint.
383 return msg_attr((char *)s, attr);
384 }
385 else
386 {
387 va_list arglist;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200389 va_start(arglist, s);
390 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist);
391 va_end(arglist);
392 return msg_attr((char *)IObuff, attr);
393 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394}
395
Bram Moolenaare0429682018-07-01 16:44:03 +0200396 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100397smsg_attr_keep(int attr, const char *s, ...)
Bram Moolenaare0429682018-07-01 16:44:03 +0200398{
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200399 if (IObuff == NULL)
400 {
401 // Very early in initialisation and already something wrong, just
402 // give the raw message so the user at least gets a hint.
403 return msg_attr_keep((char *)s, attr, TRUE);
404 }
405 else
406 {
407 va_list arglist;
Bram Moolenaare0429682018-07-01 16:44:03 +0200408
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200409 va_start(arglist, s);
410 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist);
411 va_end(arglist);
412 return msg_attr_keep((char *)IObuff, attr, TRUE);
413 }
Bram Moolenaare0429682018-07-01 16:44:03 +0200414}
415
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416#endif
417
418/*
419 * Remember the last sourcing name/lnum used in an error message, so that it
420 * isn't printed each time when it didn't change.
421 */
422static int last_sourcing_lnum = 0;
423static char_u *last_sourcing_name = NULL;
424
425/*
426 * Reset the last used sourcing name/lnum. Makes sure it is displayed again
427 * for the next error message;
428 */
Bram Moolenaar4eec5ec2005-06-26 22:26:21 +0000429 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100430reset_last_sourcing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431{
Bram Moolenaard23a8232018-02-10 18:45:26 +0100432 VIM_CLEAR(last_sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 last_sourcing_lnum = 0;
434}
435
436/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000437 * Return TRUE if "sourcing_name" differs from "last_sourcing_name".
438 */
439 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100440other_sourcing_name(void)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000441{
442 if (sourcing_name != NULL)
443 {
444 if (last_sourcing_name != NULL)
445 return STRCMP(sourcing_name, last_sourcing_name) != 0;
446 return TRUE;
447 }
448 return FALSE;
449}
450
451/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 * Get the message about the source, as used for an error message.
453 * Returns an allocated string with room for one more character.
454 * Returns NULL when no message is to be given.
455 */
456 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100457get_emsg_source(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458{
459 char_u *Buf, *p;
460
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000461 if (sourcing_name != NULL && other_sourcing_name())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 {
463 p = (char_u *)_("Error detected while processing %s:");
Bram Moolenaar964b3742019-05-24 18:54:09 +0200464 Buf = alloc(STRLEN(sourcing_name) + STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 if (Buf != NULL)
466 sprintf((char *)Buf, (char *)p, sourcing_name);
467 return Buf;
468 }
469 return NULL;
470}
471
472/*
473 * Get the message about the source lnum, as used for an error message.
474 * Returns an allocated string with room for one more character.
475 * Returns NULL when no message is to be given.
476 */
477 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100478get_emsg_lnum(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479{
480 char_u *Buf, *p;
481
482 /* lnum is 0 when executing a command from the command line
483 * argument, we don't want a line number then */
484 if (sourcing_name != NULL
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000485 && (other_sourcing_name() || sourcing_lnum != last_sourcing_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486 && sourcing_lnum != 0)
487 {
488 p = (char_u *)_("line %4ld:");
Bram Moolenaar964b3742019-05-24 18:54:09 +0200489 Buf = alloc(STRLEN(p) + 20);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 if (Buf != NULL)
491 sprintf((char *)Buf, (char *)p, (long)sourcing_lnum);
492 return Buf;
493 }
494 return NULL;
495}
496
497/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000498 * Display name and line number for the source of an error.
499 * Remember the file name and line number, so that for the next error the info
500 * is only displayed if it changed.
501 */
502 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100503msg_source(int attr)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000504{
505 char_u *p;
506
507 ++no_wait_return;
508 p = get_emsg_source();
509 if (p != NULL)
510 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100511 msg_attr((char *)p, attr);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000512 vim_free(p);
513 }
514 p = get_emsg_lnum();
515 if (p != NULL)
516 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100517 msg_attr((char *)p, HL_ATTR(HLF_N));
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000518 vim_free(p);
519 last_sourcing_lnum = sourcing_lnum; /* only once for each line */
520 }
521
522 /* remember the last sourcing name printed, also when it's empty */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000523 if (sourcing_name == NULL || other_sourcing_name())
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000524 {
525 vim_free(last_sourcing_name);
526 if (sourcing_name == NULL)
527 last_sourcing_name = NULL;
528 else
529 last_sourcing_name = vim_strsave(sourcing_name);
530 }
531 --no_wait_return;
532}
533
534/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000535 * Return TRUE if not giving error messages right now:
536 * If "emsg_off" is set: no error messages at the moment.
537 * If "msg" is in 'debug': do error message but without side effects.
538 * If "emsg_skip" is set: never do error messages.
539 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +0200540 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100541emsg_not_now(void)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000542{
543 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL
544 && vim_strchr(p_debug, 't') == NULL)
545#ifdef FEAT_EVAL
546 || emsg_skip > 0
547#endif
548 )
549 return TRUE;
550 return FALSE;
551}
552
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +0100553#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100554static garray_T ignore_error_list = GA_EMPTY;
555
556 void
557ignore_error_for_testing(char_u *error)
558{
559 if (ignore_error_list.ga_itemsize == 0)
560 ga_init2(&ignore_error_list, sizeof(char_u *), 1);
561
Bram Moolenaar461a7fc2018-12-22 13:28:07 +0100562 if (STRCMP("RESET", error) == 0)
563 ga_clear_strings(&ignore_error_list);
564 else
565 ga_add_string(&ignore_error_list, error);
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100566}
567
568 static int
569ignore_error(char_u *msg)
570{
571 int i;
572
573 for (i = 0; i < ignore_error_list.ga_len; ++i)
574 if (strstr((char *)msg,
575 (char *)((char_u **)(ignore_error_list.ga_data))[i]) != NULL)
576 return TRUE;
577 return FALSE;
578}
579#endif
580
Bram Moolenaarb869c0d2016-07-20 00:10:51 +0200581#if !defined(HAVE_STRERROR) || defined(PROTO)
582/*
583 * Replacement for perror() that behaves more or less like emsg() was called.
584 * v:errmsg will be set and called_emsg will be set.
585 */
586 void
587do_perror(char *msg)
588{
589 perror(msg);
590 ++emsg_silent;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100591 emsg(msg);
Bram Moolenaarb869c0d2016-07-20 00:10:51 +0200592 --emsg_silent;
593}
594#endif
595
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000596/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100597 * emsg_core() - display an error message
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598 *
599 * Rings the bell, if appropriate, and calls message() to do the real work
600 * When terminal not initialized (yet) mch_errmsg(..) is used.
601 *
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100602 * Return TRUE if wait_return not called.
603 * Note: caller must check 'emsg_not_now()' before calling this.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100605 static int
606emsg_core(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607{
608 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 char_u *p;
Bram Moolenaar958dc692016-12-01 15:34:12 +0100610 int r;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611#ifdef FEAT_EVAL
612 int ignore = FALSE;
613 int severe;
614#endif
615
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100616#ifdef FEAT_EVAL
617 /* When testing some errors are turned into a normal message. */
618 if (ignore_error(s))
Bram Moolenaarf8ab1b12017-03-01 18:30:34 +0100619 /* don't call msg() if it results in a dialog */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100620 return msg_use_printf() ? FALSE : msg((char *)s);
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100621#endif
622
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 called_emsg = TRUE;
624
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625#ifdef FEAT_EVAL
Bram Moolenaare723c422017-09-06 23:40:10 +0200626 /* If "emsg_severe" is TRUE: When an error exception is to be thrown,
627 * prefer this message over previous messages for the same command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 severe = emsg_severe;
629 emsg_severe = FALSE;
630#endif
631
Bram Moolenaar57657d82006-04-21 22:12:41 +0000632 if (!emsg_off || vim_strchr(p_debug, 't') != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 {
634#ifdef FEAT_EVAL
635 /*
636 * Cause a throw of an error exception if appropriate. Don't display
637 * the error message in this case. (If no matching catch clause will
638 * be found, the message will be displayed later on.) "ignore" is set
639 * when the message should be ignored completely (used for the
640 * interrupt message).
641 */
642 if (cause_errthrow(s, severe, &ignore) == TRUE)
643 {
644 if (!ignore)
Bram Moolenaar76a63452018-11-28 20:38:37 +0100645 ++did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 return TRUE;
647 }
648
649 /* set "v:errmsg", also when using ":silent! cmd" */
650 set_vim_var_string(VV_ERRMSG, s, -1);
651#endif
652
653 /*
Bram Moolenaara7241f52008-06-24 20:39:31 +0000654 * When using ":silent! cmd" ignore error messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 * But do write it to the redirection file.
656 */
657 if (emsg_silent != 0)
658 {
Bram Moolenaar79815f12016-07-09 17:07:29 +0200659 if (emsg_noredir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 {
Bram Moolenaar79815f12016-07-09 17:07:29 +0200661 msg_start();
662 p = get_emsg_source();
663 if (p != NULL)
664 {
665 STRCAT(p, "\n");
666 redir_write(p, -1);
667 vim_free(p);
668 }
669 p = get_emsg_lnum();
670 if (p != NULL)
671 {
672 STRCAT(p, "\n");
673 redir_write(p, -1);
674 vim_free(p);
675 }
676 redir_write(s, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 }
Bram Moolenaar958dc692016-12-01 15:34:12 +0100678#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare809a4e2019-07-04 17:35:05 +0200679 ch_log(NULL, "ERROR silent: %s", (char *)s);
Bram Moolenaar958dc692016-12-01 15:34:12 +0100680#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 return TRUE;
682 }
683
Bram Moolenaar2b7bc562017-01-14 19:24:52 +0100684 ex_exitval = 1;
685
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200686 /* Reset msg_silent, an error causes messages to be switched back on.
687 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 msg_silent = 0;
689 cmd_silent = FALSE;
690
691 if (global_busy) /* break :global command */
692 ++global_busy;
693
694 if (p_eb)
695 beep_flush(); /* also includes flush_buffers() */
696 else
Bram Moolenaar6a2633b2018-10-07 23:16:36 +0200697 flush_buffers(FLUSH_MINIMAL); // flush internal buffers
Bram Moolenaar76a63452018-11-28 20:38:37 +0100698 ++did_emsg; // flag for DoOneCmd()
Bram Moolenaare723c422017-09-06 23:40:10 +0200699#ifdef FEAT_EVAL
700 did_uncaught_emsg = TRUE;
701#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 }
703
704 emsg_on_display = TRUE; /* remember there is an error message */
705 ++msg_scroll; /* don't overwrite a previous message */
Bram Moolenaar8820b482017-03-16 17:23:31 +0100706 attr = HL_ATTR(HLF_E); /* set highlight mode for error messages */
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000707 if (msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 need_wait_return = TRUE; /* needed in case emsg() is called after
709 * wait_return has reset need_wait_return
710 * and a redraw is expected because
711 * msg_scrolled is non-zero */
712
Bram Moolenaar958dc692016-12-01 15:34:12 +0100713#ifdef FEAT_JOB_CHANNEL
714 emsg_to_channel_log = TRUE;
715#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 /*
717 * Display name and line number for the source of the error.
718 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000719 msg_source(attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720
721 /*
722 * Display the error message itself.
723 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000724 msg_nowait = FALSE; /* wait for this msg */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100725 r = msg_attr((char *)s, attr);
Bram Moolenaar958dc692016-12-01 15:34:12 +0100726
727#ifdef FEAT_JOB_CHANNEL
728 emsg_to_channel_log = FALSE;
729#endif
730 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731}
732
733/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100734 * Print an error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 */
736 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100737emsg(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100739 /* Skip this if not giving error messages at the moment. */
740 if (!emsg_not_now())
741 return emsg_core((char_u *)s);
742 return TRUE; /* no error messages at the moment */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743}
744
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100745#ifndef PROTO // manual proto with __attribute__
Bram Moolenaar95f09602016-11-10 20:01:45 +0100746/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100747 * Print an error message with format string and variable arguments.
748 * Note: caller must not pass 'IObuff' as 1st argument.
Bram Moolenaar95f09602016-11-10 20:01:45 +0100749 */
750 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100751semsg(const char *s, ...)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100752{
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200753 // Skip this if not giving error messages at the moment.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100754 if (!emsg_not_now())
755 {
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200756 if (IObuff == NULL)
757 {
758 // Very early in initialisation and already something wrong, just
759 // give the raw message so the user at least gets a hint.
760 return emsg_core((char_u *)s);
761 }
762 else
763 {
764 va_list ap;
Bram Moolenaar95f09602016-11-10 20:01:45 +0100765
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200766 va_start(ap, s);
767 vim_vsnprintf((char *)IObuff, IOSIZE, s, ap);
768 va_end(ap);
769 return emsg_core(IObuff);
770 }
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100771 }
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200772 return TRUE; // no error messages at the moment
Bram Moolenaar95f09602016-11-10 20:01:45 +0100773}
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100774#endif
Bram Moolenaar95f09602016-11-10 20:01:45 +0100775
776/*
777 * Same as emsg(...), but abort on error when ABORT_ON_INTERNAL_ERROR is
778 * defined. It is used for internal errors only, so that they can be
779 * detected when fuzzing vim.
780 */
781 void
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100782iemsg(char *s)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100783{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100784 if (!emsg_not_now())
785 emsg_core((char_u *)s);
Bram Moolenaar95f09602016-11-10 20:01:45 +0100786#ifdef ABORT_ON_INTERNAL_ERROR
787 abort();
788#endif
789}
790
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100791#ifndef PROTO // manual proto with __attribute__
Bram Moolenaar95f09602016-11-10 20:01:45 +0100792/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100793 * Same as semsg(...) but abort on error when ABORT_ON_INTERNAL_ERROR is
Bram Moolenaar95f09602016-11-10 20:01:45 +0100794 * defined. It is used for internal errors only, so that they can be
795 * detected when fuzzing vim.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100796 * Note: caller must not pass 'IObuff' as 1st argument.
Bram Moolenaar95f09602016-11-10 20:01:45 +0100797 */
798 void
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100799siemsg(const char *s, ...)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100800{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100801 if (!emsg_not_now())
802 {
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200803 if (IObuff == NULL)
804 {
805 // Very early in initialisation and already something wrong, just
806 // give the raw message so the user at least gets a hint.
807 emsg_core((char_u *)s);
808 }
809 else
810 {
811 va_list ap;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100812
Bram Moolenaare3a22cb2019-10-14 22:01:57 +0200813 va_start(ap, s);
814 vim_vsnprintf((char *)IObuff, IOSIZE, s, ap);
815 va_end(ap);
816 emsg_core(IObuff);
817 }
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100818 }
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100819# ifdef ABORT_ON_INTERNAL_ERROR
Bram Moolenaar95f09602016-11-10 20:01:45 +0100820 abort();
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100821# endif
Bram Moolenaar95f09602016-11-10 20:01:45 +0100822}
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100823#endif
Bram Moolenaar95f09602016-11-10 20:01:45 +0100824
825/*
826 * Give an "Internal error" message.
827 */
828 void
829internal_error(char *where)
830{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100831 siemsg(_(e_intern2), where);
Bram Moolenaar95f09602016-11-10 20:01:45 +0100832}
833
Bram Moolenaarea424162005-06-16 21:51:00 +0000834/* emsg3() and emsgn() are in misc2.c to avoid warnings for the prototypes. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835
Bram Moolenaardf177f62005-02-22 08:39:57 +0000836 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100837emsg_invreg(int name)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000838{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100839 semsg(_("E354: Invalid register name: '%s'"), transchar(name));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000840}
841
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842/*
843 * Like msg(), but truncate to a single line if p_shm contains 't', or when
844 * "force" is TRUE. This truncates in another way as for normal messages.
845 * Careful: The string may be changed by msg_may_trunc()!
846 * Returns a pointer to the printed message, if wait_return() not called.
847 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100848 char *
849msg_trunc_attr(char *s, int force, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850{
851 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +0100852 char *ts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853
854 /* Add message to history before truncating */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100855 add_msg_hist((char_u *)s, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856
Bram Moolenaar32526b32019-01-19 17:43:09 +0100857 ts = (char *)msg_may_trunc(force, (char_u *)s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858
859 msg_hist_off = TRUE;
Bram Moolenaar32526b32019-01-19 17:43:09 +0100860 n = msg_attr(ts, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 msg_hist_off = FALSE;
862
863 if (n)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100864 return ts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 return NULL;
866}
867
868/*
869 * Check if message "s" should be truncated at the start (for filenames).
870 * Return a pointer to where the truncated message starts.
871 * Note: May change the message by replacing a character with '<'.
872 */
873 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100874msg_may_trunc(int force, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875{
876 int n;
877 int room;
878
879 room = (int)(Rows - cmdline_row - 1) * Columns + sc_col - 1;
880 if ((force || (shortmess(SHM_TRUNC) && !exmode_active))
881 && (n = (int)STRLEN(s) - room) > 0)
882 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883 if (has_mbyte)
884 {
885 int size = vim_strsize(s);
886
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +0000887 /* There may be room anyway when there are multibyte chars. */
888 if (size <= room)
889 return s;
890
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 for (n = 0; size >= room; )
892 {
893 size -= (*mb_ptr2cells)(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000894 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 }
896 --n;
897 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 s += n;
899 *s = '<';
900 }
901 return s;
902}
903
904 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100905add_msg_hist(
906 char_u *s,
907 int len, /* -1 for undetermined length */
908 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909{
910 struct msg_hist *p;
911
912 if (msg_hist_off || msg_silent != 0)
913 return;
914
915 /* Don't let the message history get too big */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000916 while (msg_hist_len > MAX_MSG_HIST_LEN)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000917 (void)delete_first_msg();
918
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 /* allocate an entry and add the message at the end of the history */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200920 p = ALLOC_ONE(struct msg_hist);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 if (p != NULL)
922 {
923 if (len < 0)
924 len = (int)STRLEN(s);
925 /* remove leading and trailing newlines */
926 while (len > 0 && *s == '\n')
927 {
928 ++s;
929 --len;
930 }
931 while (len > 0 && s[len - 1] == '\n')
932 --len;
933 p->msg = vim_strnsave(s, len);
934 p->next = NULL;
935 p->attr = attr;
936 if (last_msg_hist != NULL)
937 last_msg_hist->next = p;
938 last_msg_hist = p;
939 if (first_msg_hist == NULL)
940 first_msg_hist = last_msg_hist;
941 ++msg_hist_len;
942 }
943}
944
945/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000946 * Delete the first (oldest) message from the history.
947 * Returns FAIL if there are no messages.
948 */
949 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100950delete_first_msg(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000951{
952 struct msg_hist *p;
953
954 if (msg_hist_len <= 0)
955 return FAIL;
956 p = first_msg_hist;
957 first_msg_hist = p->next;
Bram Moolenaara7241f52008-06-24 20:39:31 +0000958 if (first_msg_hist == NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200959 last_msg_hist = NULL; /* history is empty */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000960 vim_free(p->msg);
961 vim_free(p);
962 --msg_hist_len;
963 return OK;
964}
965
966/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 * ":messages" command.
968 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 void
Bram Moolenaar52196b22016-04-14 17:52:41 +0200970ex_messages(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971{
972 struct msg_hist *p;
973 char_u *s;
Bram Moolenaar451f8492016-04-14 17:16:22 +0200974 int c = 0;
975
976 if (STRCMP(eap->arg, "clear") == 0)
977 {
978 int keep = eap->addr_count == 0 ? 0 : eap->line2;
979
980 while (msg_hist_len > keep)
981 (void)delete_first_msg();
982 return;
983 }
984
985 if (*eap->arg != NUL)
986 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100987 emsg(_(e_invarg));
Bram Moolenaar451f8492016-04-14 17:16:22 +0200988 return;
989 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990
991 msg_hist_off = TRUE;
992
Bram Moolenaar451f8492016-04-14 17:16:22 +0200993 p = first_msg_hist;
Bram Moolenaar451f8492016-04-14 17:16:22 +0200994 if (eap->addr_count != 0)
995 {
996 /* Count total messages */
997 for (; p != NULL && !got_int; p = p->next)
998 c++;
999
1000 c -= eap->line2;
1001
1002 /* Skip without number of messages specified */
1003 for (p = first_msg_hist; p != NULL && !got_int && c > 0;
1004 p = p->next, c--);
1005 }
1006
Bram Moolenaarbea1ede2016-04-14 19:44:36 +02001007 if (p == first_msg_hist)
1008 {
1009 s = mch_getenv((char_u *)"LANG");
1010 if (s != NULL && *s != NUL)
Bram Moolenaar0c183192018-06-28 14:54:43 +02001011 // The next comment is extracted by xgettext and put in po file for
1012 // translators to read.
Bram Moolenaar32526b32019-01-19 17:43:09 +01001013 msg_attr(
Bram Moolenaar0c183192018-06-28 14:54:43 +02001014 // Translator: Please replace the name and email address
1015 // with the appropriate text for your translation.
Bram Moolenaarbea1ede2016-04-14 19:44:36 +02001016 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
Bram Moolenaar8820b482017-03-16 17:23:31 +01001017 HL_ATTR(HLF_T));
Bram Moolenaarbea1ede2016-04-14 19:44:36 +02001018 }
1019
Bram Moolenaar451f8492016-04-14 17:16:22 +02001020 /* Display what was not skipped. */
1021 for (; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 if (p->msg != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001023 msg_attr((char *)p->msg, p->attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024
1025 msg_hist_off = FALSE;
1026}
1027
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001028#if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029/*
1030 * Call this after prompting the user. This will avoid a hit-return message
1031 * and a delay.
1032 */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001033 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001034msg_end_prompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035{
1036 need_wait_return = FALSE;
1037 emsg_on_display = FALSE;
1038 cmdline_row = msg_row;
1039 msg_col = 0;
1040 msg_clr_eos();
Bram Moolenaar5d6f75e2011-12-30 14:14:29 +01001041 lines_left = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042}
1043#endif
1044
1045/*
Bram Moolenaar32526b32019-01-19 17:43:09 +01001046 * Wait for the user to hit a key (normally Enter).
1047 * If "redraw" is TRUE, clear and redraw the screen.
1048 * If "redraw" is FALSE, just redraw the screen.
1049 * If "redraw" is -1, don't redraw at all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 */
1051 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001052wait_return(int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053{
1054 int c;
1055 int oldState;
1056 int tmpState;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 int had_got_int;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001058 int save_reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001059 FILE *save_scriptout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060
1061 if (redraw == TRUE)
1062 must_redraw = CLEAR;
1063
1064 /* If using ":silent cmd", don't wait for a return. Also don't set
1065 * need_wait_return to do it later. */
1066 if (msg_silent != 0)
1067 return;
1068
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01001069 /*
1070 * When inside vgetc(), we can't wait for a typed character at all.
1071 * With the global command (and some others) we only need one return at
1072 * the end. Adjust cmdline_row to avoid the next message overwriting the
1073 * last one.
1074 */
Bram Moolenaar5555acc2006-04-07 21:33:12 +00001075 if (vgetc_busy > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 return;
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01001077 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 if (no_wait_return)
1079 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 if (!exmode_active)
1081 cmdline_row = msg_row;
1082 return;
1083 }
1084
1085 redir_off = TRUE; /* don't redirect this message */
1086 oldState = State;
1087 if (quit_more)
1088 {
1089 c = CAR; /* just pretend CR was hit */
1090 quit_more = FALSE;
1091 got_int = FALSE;
1092 }
1093 else if (exmode_active)
1094 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001095 msg_puts(" "); /* make sure the cursor is on the right line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 c = CAR; /* no need for a return in ex mode */
1097 got_int = FALSE;
1098 }
1099 else
1100 {
1101 /* Make sure the hit-return prompt is on screen when 'guioptions' was
1102 * just changed. */
1103 screenalloc(FALSE);
1104
1105 State = HITRETURN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107#ifdef USE_ON_FLY_SCROLL
1108 dont_scroll = TRUE; /* disallow scrolling here */
1109#endif
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01001110 cmdline_row = msg_row;
1111
Bram Moolenaarec38d692013-04-24 15:12:32 +02001112 /* Avoid the sequence that the user types ":" at the hit-return prompt
1113 * to start an Ex command, but the file-changed dialog gets in the
1114 * way. */
1115 if (need_check_timestamps)
1116 check_timestamps(FALSE);
1117
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 hit_return_msg();
1119
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 do
1121 {
1122 /* Remember "got_int", if it is set vgetc() probably returns a
1123 * CTRL-C, but we need to loop then. */
1124 had_got_int = got_int;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001125
1126 /* Don't do mappings here, we put the character back in the
1127 * typeahead buffer. */
1128 ++no_mapping;
1129 ++allow_keys;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001130
1131 /* Temporarily disable Recording. If Recording is active, the
1132 * character will be recorded later, since it will be added to the
1133 * typebuf after the loop */
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001134 save_reg_recording = reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001135 save_scriptout = scriptout;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001136 reg_recording = 0;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001137 scriptout = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 c = safe_vgetc();
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00001139 if (had_got_int && !global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 got_int = FALSE;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001141 --no_mapping;
1142 --allow_keys;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001143 reg_recording = save_reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001144 scriptout = save_scriptout;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001145
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146#ifdef FEAT_CLIPBOARD
1147 /* Strange way to allow copying (yanking) a modeless selection at
1148 * the hit-enter prompt. Use CTRL-Y, because the same is used in
1149 * Cmdline-mode and it's harmless when there is no selection. */
1150 if (c == Ctrl_Y && clip_star.state == SELECT_DONE)
1151 {
1152 clip_copy_modeless_selection(TRUE);
1153 c = K_IGNORE;
1154 }
1155#endif
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00001156
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001157 /*
1158 * Allow scrolling back in the messages.
1159 * Also accept scroll-down commands when messages fill the screen,
1160 * to avoid that typing one 'j' too many makes the messages
1161 * disappear.
1162 */
1163 if (p_more && !p_cp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001164 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001165 if (c == 'b' || c == 'k' || c == 'u' || c == 'g'
1166 || c == K_UP || c == K_PAGEUP)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001167 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001168 if (msg_scrolled > Rows)
1169 /* scroll back to show older messages */
1170 do_more_prompt(c);
1171 else
1172 {
1173 msg_didout = FALSE;
1174 c = K_IGNORE;
1175 msg_col =
1176#ifdef FEAT_RIGHTLEFT
1177 cmdmsg_rl ? Columns - 1 :
1178#endif
1179 0;
1180 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001181 if (quit_more)
1182 {
1183 c = CAR; /* just pretend CR was hit */
1184 quit_more = FALSE;
1185 got_int = FALSE;
1186 }
Bram Moolenaarb0912962013-08-09 20:38:26 +02001187 else if (c != K_IGNORE)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001188 {
1189 c = K_IGNORE;
1190 hit_return_msg();
1191 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001192 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001193 else if (msg_scrolled > Rows - 2
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001194 && (c == 'j' || c == 'd' || c == 'f'
1195 || c == K_DOWN || c == K_PAGEDOWN))
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001196 c = K_IGNORE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001197 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 } while ((had_got_int && c == Ctrl_C)
1199 || c == K_IGNORE
1200#ifdef FEAT_GUI
1201 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR
1202#endif
1203#ifdef FEAT_MOUSE
1204 || c == K_LEFTDRAG || c == K_LEFTRELEASE
1205 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE
1206 || c == K_RIGHTDRAG || c == K_RIGHTRELEASE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001207 || c == K_MOUSELEFT || c == K_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 || c == K_MOUSEDOWN || c == K_MOUSEUP
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001209 || c == K_MOUSEMOVE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 || (!mouse_has(MOUSE_RETURN)
1211 && mouse_row < msg_row
1212 && (c == K_LEFTMOUSE
1213 || c == K_MIDDLEMOUSE
1214 || c == K_RIGHTMOUSE
1215 || c == K_X1MOUSE
1216 || c == K_X2MOUSE))
1217#endif
1218 );
1219 ui_breakcheck();
1220#ifdef FEAT_MOUSE
1221 /*
1222 * Avoid that the mouse-up event causes visual mode to start.
1223 */
1224 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE
1225 || c == K_X1MOUSE || c == K_X2MOUSE)
1226 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0);
1227 else
1228#endif
1229 if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C)
1230 {
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001231 /* Put the character back in the typeahead buffer. Don't use the
1232 * stuff buffer, because lmaps wouldn't work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001233 ins_char_typebuf(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 do_redraw = TRUE; /* need a redraw even though there is
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001235 typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 }
1238 redir_off = FALSE;
1239
1240 /*
1241 * If the user hits ':', '?' or '/' we get a command line from the next
1242 * line.
1243 */
1244 if (c == ':' || c == '?' || c == '/')
1245 {
1246 if (!exmode_active)
1247 cmdline_row = msg_row;
1248 skip_redraw = TRUE; /* skip redraw once */
1249 do_redraw = FALSE;
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001250#ifdef FEAT_TERMINAL
1251 skip_term_loop = TRUE;
1252#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 }
1254
1255 /*
1256 * If the window size changed set_shellsize() will redraw the screen.
1257 * Otherwise the screen is only redrawn if 'redraw' is set and no ':'
1258 * typed.
1259 */
1260 tmpState = State;
1261 State = oldState; /* restore State before set_shellsize */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 msg_check();
1264
1265#if defined(UNIX) || defined(VMS)
1266 /*
1267 * When switching screens, we need to output an extra newline on exit.
1268 */
1269 if (swapping_screen() && !termcap_active)
1270 newline_on_exit = TRUE;
1271#endif
1272
1273 need_wait_return = FALSE;
1274 did_wait_return = TRUE;
1275 emsg_on_display = FALSE; /* can delete error message now */
1276 lines_left = -1; /* reset lines_left at next msg_start() */
1277 reset_last_sourcing();
1278 if (keep_msg != NULL && vim_strsize(keep_msg) >=
1279 (Rows - cmdline_row - 1) * Columns + sc_col)
Bram Moolenaard23a8232018-02-10 18:45:26 +01001280 VIM_CLEAR(keep_msg); /* don't redisplay message, it's too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281
1282 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */
1283 {
1284 starttermcap(); /* start termcap before redrawing */
1285 shell_resized();
1286 }
1287 else if (!skip_redraw
1288 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1)))
1289 {
1290 starttermcap(); /* start termcap before redrawing */
1291 redraw_later(VALID);
1292 }
1293}
1294
1295/*
1296 * Write the hit-return prompt.
1297 */
1298 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001299hit_return_msg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001301 int save_p_more = p_more;
1302
1303 p_more = FALSE; /* don't want see this message when scrolling back */
1304 if (msg_didout) /* start on a new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 msg_putchar('\n');
1306 if (got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001307 msg_puts(_("Interrupt: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308
Bram Moolenaar32526b32019-01-19 17:43:09 +01001309 msg_puts_attr(_("Press ENTER or type command to continue"), HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 if (!msg_use_printf())
1311 msg_clr_eos();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001312 p_more = save_p_more;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313}
1314
1315/*
1316 * Set "keep_msg" to "s". Free the old value and check for NULL pointer.
1317 */
1318 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001319set_keep_msg(char_u *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320{
1321 vim_free(keep_msg);
1322 if (s != NULL && msg_silent == 0)
1323 keep_msg = vim_strsave(s);
1324 else
1325 keep_msg = NULL;
Bram Moolenaaraab21c32005-01-25 21:46:35 +00001326 keep_msg_more = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001327 keep_msg_attr = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328}
1329
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001330#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1331/*
1332 * If there currently is a message being displayed, set "keep_msg" to it, so
1333 * that it will be displayed again after redraw.
1334 */
1335 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001336set_keep_msg_from_hist(void)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001337{
1338 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0
1339 && (State & NORMAL))
1340 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr);
1341}
1342#endif
1343
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344/*
1345 * Prepare for outputting characters in the command line.
1346 */
1347 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001348msg_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349{
1350 int did_return = FALSE;
1351
Bram Moolenaare4ce65d2010-08-04 20:12:32 +02001352 if (!msg_silent)
Bram Moolenaard23a8232018-02-10 18:45:26 +01001353 VIM_CLEAR(keep_msg);
Bram Moolenaara7241f52008-06-24 20:39:31 +00001354
1355#ifdef FEAT_EVAL
1356 if (need_clr_eos)
1357 {
1358 /* Halfway an ":echo" command and getting an (error) message: clear
1359 * any text from the command. */
1360 need_clr_eos = FALSE;
1361 msg_clr_eos();
1362 }
1363#endif
1364
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 if (!msg_scroll && full_screen) /* overwrite last message */
1366 {
1367 msg_row = cmdline_row;
1368 msg_col =
1369#ifdef FEAT_RIGHTLEFT
1370 cmdmsg_rl ? Columns - 1 :
1371#endif
1372 0;
1373 }
1374 else if (msg_didout) /* start message on next line */
1375 {
1376 msg_putchar('\n');
1377 did_return = TRUE;
1378 if (exmode_active != EXMODE_NORMAL)
1379 cmdline_row = msg_row;
1380 }
1381 if (!msg_didany || lines_left < 0)
1382 msg_starthere();
1383 if (msg_silent == 0)
1384 {
1385 msg_didout = FALSE; /* no output on current line yet */
1386 cursor_off();
1387 }
1388
1389 /* when redirecting, may need to start a new line. */
1390 if (!did_return)
1391 redir_write((char_u *)"\n", -1);
1392}
1393
1394/*
1395 * Note that the current msg position is where messages start.
1396 */
1397 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001398msg_starthere(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399{
1400 lines_left = cmdline_row;
1401 msg_didany = FALSE;
1402}
1403
1404 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001405msg_putchar(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406{
1407 msg_putchar_attr(c, 0);
1408}
1409
1410 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001411msg_putchar_attr(int c, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412{
Bram Moolenaar63c0ccd2019-01-19 21:06:58 +01001413 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414
1415 if (IS_SPECIAL(c))
1416 {
1417 buf[0] = K_SPECIAL;
1418 buf[1] = K_SECOND(c);
1419 buf[2] = K_THIRD(c);
1420 buf[3] = NUL;
1421 }
1422 else
Bram Moolenaar63c0ccd2019-01-19 21:06:58 +01001423 buf[(*mb_char2bytes)(c, buf)] = NUL;
Bram Moolenaar63c0ccd2019-01-19 21:06:58 +01001424 msg_puts_attr((char *)buf, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425}
1426
1427 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001428msg_outnum(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429{
Bram Moolenaar32526b32019-01-19 17:43:09 +01001430 char buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431
Bram Moolenaar32526b32019-01-19 17:43:09 +01001432 sprintf(buf, "%ld", n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 msg_puts(buf);
1434}
1435
1436 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001437msg_home_replace(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438{
1439 msg_home_replace_attr(fname, 0);
1440}
1441
1442#if defined(FEAT_FIND_ID) || defined(PROTO)
1443 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001444msg_home_replace_hl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445{
Bram Moolenaar8820b482017-03-16 17:23:31 +01001446 msg_home_replace_attr(fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447}
1448#endif
1449
1450 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001451msg_home_replace_attr(char_u *fname, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452{
1453 char_u *name;
1454
1455 name = home_replace_save(NULL, fname);
1456 if (name != NULL)
1457 msg_outtrans_attr(name, attr);
1458 vim_free(name);
1459}
1460
1461/*
1462 * Output 'len' characters in 'str' (including NULs) with translation
1463 * if 'len' is -1, output upto a NUL character.
1464 * Use attributes 'attr'.
1465 * Return the number of characters it takes on the screen.
1466 */
1467 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001468msg_outtrans(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469{
1470 return msg_outtrans_attr(str, 0);
1471}
1472
1473 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001474msg_outtrans_attr(char_u *str, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475{
1476 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr);
1477}
1478
1479 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001480msg_outtrans_len(char_u *str, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481{
1482 return msg_outtrans_len_attr(str, len, 0);
1483}
1484
1485/*
1486 * Output one character at "p". Return pointer to the next character.
1487 * Handles multi-byte characters.
1488 */
1489 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001490msg_outtrans_one(char_u *p, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 int l;
1493
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001494 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 {
1496 msg_outtrans_len_attr(p, l, attr);
1497 return p + l;
1498 }
Bram Moolenaar32526b32019-01-19 17:43:09 +01001499 msg_puts_attr((char *)transchar_byte(*p), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 return p + 1;
1501}
1502
1503 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001504msg_outtrans_len_attr(char_u *msgstr, int len, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505{
1506 int retval = 0;
1507 char_u *str = msgstr;
1508 char_u *plain_start = msgstr;
1509 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 int mb_l;
1511 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512
1513 /* if MSG_HIST flag set, add message to history */
1514 if (attr & MSG_HIST)
1515 {
1516 add_msg_hist(str, len, attr);
1517 attr &= ~MSG_HIST;
1518 }
1519
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 /* If the string starts with a composing character first draw a space on
1521 * which the composing char can be drawn. */
1522 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr)))
Bram Moolenaar32526b32019-01-19 17:43:09 +01001523 msg_puts_attr(" ", attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524
1525 /*
1526 * Go over the string. Special characters are translated and printed.
1527 * Normal characters are printed several at a time.
1528 */
1529 while (--len >= 0)
1530 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 if (enc_utf8)
1532 /* Don't include composing chars after the end. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001533 mb_l = utfc_ptr2len_len(str, len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001535 mb_l = (*mb_ptr2len)(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 else
1537 mb_l = 1;
1538 if (has_mbyte && mb_l > 1)
1539 {
1540 c = (*mb_ptr2char)(str);
1541 if (vim_isprintc(c))
1542 /* printable multi-byte char: count the cells. */
1543 retval += (*mb_ptr2cells)(str);
1544 else
1545 {
1546 /* unprintable multi-byte char: print the printable chars so
1547 * far and the translation of the unprintable char. */
1548 if (str > plain_start)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001549 msg_puts_attr_len((char *)plain_start,
1550 (int)(str - plain_start), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 plain_start = str + mb_l;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001552 msg_puts_attr((char *)transchar(c),
1553 attr == 0 ? HL_ATTR(HLF_8) : attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 retval += char2cells(c);
1555 }
1556 len -= mb_l - 1;
1557 str += mb_l;
1558 }
1559 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 {
1561 s = transchar_byte(*str);
1562 if (s[1] != NUL)
1563 {
1564 /* unprintable char: print the printable chars so far and the
1565 * translation of the unprintable char. */
1566 if (str > plain_start)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001567 msg_puts_attr_len((char *)plain_start,
1568 (int)(str - plain_start), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 plain_start = str + 1;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001570 msg_puts_attr((char *)s, attr == 0 ? HL_ATTR(HLF_8) : attr);
Bram Moolenaarc236c162008-07-13 17:41:49 +00001571 retval += (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 }
Bram Moolenaarb3c722a2008-07-06 17:16:02 +00001573 else
1574 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 ++str;
1576 }
1577 }
1578
1579 if (str > plain_start)
1580 /* print the printable chars at the end */
Bram Moolenaar32526b32019-01-19 17:43:09 +01001581 msg_puts_attr_len((char *)plain_start, (int)(str - plain_start), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582
1583 return retval;
1584}
1585
1586#if defined(FEAT_QUICKFIX) || defined(PROTO)
1587 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001588msg_make(char_u *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589{
1590 int i;
1591 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB";
1592
1593 arg = skipwhite(arg);
1594 for (i = 5; *arg && i >= 0; --i)
1595 if (*arg++ != str[i])
1596 break;
1597 if (i < 0)
1598 {
1599 msg_putchar('\n');
1600 for (i = 0; rs[i]; ++i)
1601 msg_putchar(rs[i] - 3);
1602 }
1603}
1604#endif
1605
1606/*
1607 * Output the string 'str' upto a NUL character.
1608 * Return the number of characters it takes on the screen.
1609 *
1610 * If K_SPECIAL is encountered, then it is taken in conjunction with the
1611 * following character and shown as <F1>, <S-Up> etc. Any other character
1612 * which is not printable shown in <> form.
1613 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>.
1614 * If a character is displayed in one of these special ways, is also
1615 * highlighted (its highlight name is '8' in the p_hl variable).
1616 * Otherwise characters are not highlighted.
1617 * This function is used to show mappings, where we want to see how to type
1618 * the character/string -- webb
1619 */
1620 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001621msg_outtrans_special(
1622 char_u *strstart,
Bram Moolenaar725310d2019-04-24 23:08:23 +02001623 int from, // TRUE for lhs of a mapping
1624 int maxlen) // screen columns, 0 for unlimeted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625{
1626 char_u *str = strstart;
1627 int retval = 0;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001628 char *text;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 int attr;
1630 int len;
1631
Bram Moolenaar8820b482017-03-16 17:23:31 +01001632 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 while (*str != NUL)
1634 {
1635 /* Leading and trailing spaces need to be displayed in <> form. */
1636 if ((str == strstart || str[1] == NUL) && *str == ' ')
1637 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001638 text = "<Space>";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 ++str;
1640 }
1641 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001642 text = (char *)str2special(&str, from);
1643 len = vim_strsize((char_u *)text);
Bram Moolenaar725310d2019-04-24 23:08:23 +02001644 if (maxlen > 0 && retval + len >= maxlen)
1645 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 /* Highlight special keys */
Bram Moolenaar32526b32019-01-19 17:43:09 +01001647 msg_puts_attr(text, len > 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001648 && (*mb_ptr2len)((char_u *)text) <= 1 ? attr : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 retval += len;
1650 }
1651 return retval;
1652}
1653
Bram Moolenaarbd743252010-10-20 21:23:33 +02001654#if defined(FEAT_EVAL) || defined(PROTO)
1655/*
1656 * Return the lhs or rhs of a mapping, with the key codes turned into printable
1657 * strings, in an allocated string.
1658 */
1659 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001660str2special_save(
1661 char_u *str,
1662 int is_lhs) /* TRUE for lhs, FALSE for rhs */
Bram Moolenaarbd743252010-10-20 21:23:33 +02001663{
1664 garray_T ga;
1665 char_u *p = str;
1666
1667 ga_init2(&ga, 1, 40);
1668 while (*p != NUL)
1669 ga_concat(&ga, str2special(&p, is_lhs));
1670 ga_append(&ga, NUL);
1671 return (char_u *)ga.ga_data;
1672}
1673#endif
1674
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675/*
1676 * Return the printable string for the key codes at "*sp".
1677 * Used for translating the lhs or rhs of a mapping to printable chars.
1678 * Advances "sp" to the next code.
1679 */
1680 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001681str2special(
1682 char_u **sp,
1683 int from) /* TRUE for lhs of mapping */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684{
1685 int c;
1686 static char_u buf[7];
1687 char_u *str = *sp;
1688 int modifiers = 0;
1689 int special = FALSE;
1690
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 if (has_mbyte)
1692 {
1693 char_u *p;
1694
1695 /* Try to un-escape a multi-byte character. Return the un-escaped
1696 * string if it is a multi-byte character. */
1697 p = mb_unescape(sp);
1698 if (p != NULL)
1699 return p;
1700 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701
1702 c = *str;
1703 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1704 {
1705 if (str[1] == KS_MODIFIER)
1706 {
1707 modifiers = str[2];
1708 str += 3;
1709 c = *str;
1710 }
1711 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1712 {
1713 c = TO_SPECIAL(str[1], str[2]);
1714 str += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 }
1716 if (IS_SPECIAL(c) || modifiers) /* special key */
1717 special = TRUE;
1718 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001720 if (has_mbyte && !IS_SPECIAL(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 {
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001722 int len = (*mb_ptr2len)(str);
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001723
1724 /* For multi-byte characters check for an illegal byte. */
1725 if (has_mbyte && MB_BYTE2LEN(*str) > len)
1726 {
1727 transchar_nonprint(buf, c);
1728 *sp = str + 1;
1729 return buf;
1730 }
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001731 /* Since 'special' is TRUE the multi-byte character 'c' will be
1732 * processed by get_special_key_name() */
1733 c = (*mb_ptr2char)(str);
1734 *sp = str + len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 }
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001736 else
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001737 *sp = str + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738
1739 /* Make unprintable characters in <> form, also <M-Space> and <Tab>.
1740 * Use <Space> only for lhs of a mapping. */
1741 if (special || char2cells(c) > 1 || (from && c == ' '))
1742 return get_special_key_name(c, modifiers);
1743 buf[0] = c;
1744 buf[1] = NUL;
1745 return buf;
1746}
1747
1748/*
1749 * Translate a key sequence into special key names.
1750 */
1751 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001752str2specialbuf(char_u *sp, char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753{
1754 char_u *s;
1755
1756 *buf = NUL;
1757 while (*sp)
1758 {
1759 s = str2special(&sp, FALSE);
1760 if ((int)(STRLEN(s) + STRLEN(buf)) < len)
1761 STRCAT(buf, s);
1762 }
1763}
1764
1765/*
1766 * print line for :print or :list command
1767 */
1768 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001769msg_prt_line(char_u *s, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770{
1771 int c;
1772 int col = 0;
1773 int n_extra = 0;
1774 int c_extra = 0;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001775 int c_final = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 char_u *p_extra = NULL; /* init to make SASC shut up */
1777 int n;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001778 int attr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 char_u *trail = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 int l;
1781 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782
Bram Moolenaardf177f62005-02-22 08:39:57 +00001783 if (curwin->w_p_list)
1784 list = TRUE;
1785
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 /* find start of trailing whitespace */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001787 if (list && lcs_trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 {
1789 trail = s + STRLEN(s);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001790 while (trail > s && VIM_ISWHITE(trail[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 --trail;
1792 }
1793
1794 /* output a space for an empty line, otherwise the line will be
1795 * overwritten */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001796 if (*s == NUL && !(list && lcs_eol != NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 msg_putchar(' ');
1798
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001799 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 {
Bram Moolenaar56da7972007-01-16 14:46:32 +00001801 if (n_extra > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 {
1803 --n_extra;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001804 if (n_extra == 0 && c_final)
1805 c = c_final;
1806 else if (c_extra)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 c = c_extra;
1808 else
1809 c = *p_extra++;
1810 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001811 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 {
1813 col += (*mb_ptr2cells)(s);
Bram Moolenaar73284b92015-05-04 17:28:22 +02001814 if (lcs_nbsp != NUL && list
1815 && (mb_ptr2char(s) == 160
1816 || mb_ptr2char(s) == 0x202f))
Bram Moolenaaracf17282011-02-01 17:12:25 +01001817 {
1818 mb_char2bytes(lcs_nbsp, buf);
1819 buf[(*mb_ptr2len)(buf)] = NUL;
1820 }
1821 else
1822 {
1823 mch_memmove(buf, s, (size_t)l);
1824 buf[l] = NUL;
1825 }
Bram Moolenaar32526b32019-01-19 17:43:09 +01001826 msg_puts((char *)buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 s += l;
1828 continue;
1829 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 else
1831 {
1832 attr = 0;
1833 c = *s++;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001834 if (c == TAB && (!list || lcs_tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 {
1836 /* tab amount depends on current column */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001837#ifdef FEAT_VARTABS
1838 n_extra = tabstop_padding(col, curbuf->b_p_ts,
1839 curbuf->b_p_vts_array) - 1;
1840#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001842#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00001843 if (!list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 {
1845 c = ' ';
1846 c_extra = ' ';
Bram Moolenaar83a52172019-01-16 22:41:54 +01001847 c_final = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 }
1849 else
1850 {
Bram Moolenaar83a52172019-01-16 22:41:54 +01001851 c = (n_extra == 0 && lcs_tab3) ? lcs_tab3 : lcs_tab1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 c_extra = lcs_tab2;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001853 c_final = lcs_tab3;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001854 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 }
1856 }
Bram Moolenaaracf17282011-02-01 17:12:25 +01001857 else if (c == 160 && list && lcs_nbsp != NUL)
1858 {
1859 c = lcs_nbsp;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001860 attr = HL_ATTR(HLF_8);
Bram Moolenaaracf17282011-02-01 17:12:25 +01001861 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00001862 else if (c == NUL && list && lcs_eol != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 {
1864 p_extra = (char_u *)"";
1865 c_extra = NUL;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001866 c_final = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 n_extra = 1;
1868 c = lcs_eol;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001869 attr = HL_ATTR(HLF_AT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 --s;
1871 }
1872 else if (c != NUL && (n = byte2cells(c)) > 1)
1873 {
1874 n_extra = n - 1;
1875 p_extra = transchar_byte(c);
1876 c_extra = NUL;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001877 c_final = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 c = *p_extra++;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001879 /* Use special coloring to be able to distinguish <hex> from
1880 * the same in plain text. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001881 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 }
1883 else if (c == ' ' && trail != NULL && s > trail)
1884 {
1885 c = lcs_trail;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001886 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 }
Bram Moolenaar1510f992015-04-22 22:18:22 +02001888 else if (c == ' ' && list && lcs_space != NUL)
1889 {
1890 c = lcs_space;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001891 attr = HL_ATTR(HLF_8);
Bram Moolenaar1510f992015-04-22 22:18:22 +02001892 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 }
1894
1895 if (c == NUL)
1896 break;
1897
1898 msg_putchar_attr(c, attr);
1899 col++;
1900 }
1901 msg_clr_eos();
1902}
1903
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904/*
1905 * Use screen_puts() to output one multi-byte character.
1906 * Return the pointer "s" advanced to the next character.
1907 */
1908 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001909screen_puts_mbyte(char_u *s, int l, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910{
1911 int cw;
1912
1913 msg_didout = TRUE; /* remember that line is not empty */
1914 cw = (*mb_ptr2cells)(s);
1915 if (cw > 1 && (
1916#ifdef FEAT_RIGHTLEFT
1917 cmdmsg_rl ? msg_col <= 1 :
1918#endif
1919 msg_col == Columns - 1))
1920 {
1921 /* Doesn't fit, print a highlighted '>' to fill it up. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001922 msg_screen_putchar('>', HL_ATTR(HLF_AT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 return s;
1924 }
1925
1926 screen_puts_len(s, l, msg_row, msg_col, attr);
1927#ifdef FEAT_RIGHTLEFT
1928 if (cmdmsg_rl)
1929 {
1930 msg_col -= cw;
1931 if (msg_col == 0)
1932 {
1933 msg_col = Columns;
1934 ++msg_row;
1935 }
1936 }
1937 else
1938#endif
1939 {
1940 msg_col += cw;
1941 if (msg_col >= Columns)
1942 {
1943 msg_col = 0;
1944 ++msg_row;
1945 }
1946 }
1947 return s + l;
1948}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949
1950/*
1951 * Output a string to the screen at position msg_row, msg_col.
1952 * Update msg_row and msg_col for the next message.
1953 */
1954 void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001955msg_puts(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956{
Bram Moolenaaraeac9002016-09-06 22:15:08 +02001957 msg_puts_attr(s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958}
1959
1960 void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001961msg_puts_title(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962{
Bram Moolenaar8820b482017-03-16 17:23:31 +01001963 msg_puts_attr(s, HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964}
1965
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966/*
1967 * Show a message in such a way that it always fits in the line. Cut out a
1968 * part in the middle and replace it with "..." when necessary.
1969 * Does not handle multi-byte characters!
1970 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001971 static void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001972msg_outtrans_long_len_attr(char_u *longstr, int len, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973{
1974 int slen = len;
1975 int room;
1976
1977 room = Columns - msg_col;
1978 if (len > room && room >= 20)
1979 {
1980 slen = (room - 3) / 2;
1981 msg_outtrans_len_attr(longstr, slen, attr);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001982 msg_puts_attr("...", HL_ATTR(HLF_8));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 }
1984 msg_outtrans_len_attr(longstr + len - slen, slen, attr);
1985}
1986
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001987 void
1988msg_outtrans_long_attr(char_u *longstr, int attr)
1989{
1990 msg_outtrans_long_len_attr(longstr, (int)STRLEN(longstr), attr);
1991}
1992
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993/*
1994 * Basic function for writing a message with highlight attributes.
1995 */
1996 void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001997msg_puts_attr(char *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998{
1999 msg_puts_attr_len(s, -1, attr);
2000}
2001
2002/*
2003 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes).
2004 * When "maxlen" is -1 there is no maximum length.
2005 * When "maxlen" is >= 0 the message is not put in the history.
2006 */
2007 static void
Bram Moolenaar32526b32019-01-19 17:43:09 +01002008msg_puts_attr_len(char *str, int maxlen, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 /*
2011 * If redirection is on, also write to the redirection file.
2012 */
Bram Moolenaar32526b32019-01-19 17:43:09 +01002013 redir_write((char_u *)str, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014
2015 /*
2016 * Don't print anything when using ":silent cmd".
2017 */
2018 if (msg_silent != 0)
2019 return;
2020
2021 /* if MSG_HIST flag set, add message to history */
2022 if ((attr & MSG_HIST) && maxlen < 0)
2023 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002024 add_msg_hist((char_u *)str, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 attr &= ~MSG_HIST;
2026 }
2027
Bram Moolenaare8070982019-10-12 17:07:06 +02002028 // When writing something to the screen after it has scrolled, requires a
2029 // wait-return prompt later. Needed when scrolling, resetting
2030 // need_wait_return after some prompt, and then outputting something
2031 // without scrolling
2032 // Not needed when only using CR to move the cursor.
2033 if (msg_scrolled != 0 && !msg_scrolled_ign && STRCMP(str, "\r") != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 need_wait_return = TRUE;
Bram Moolenaare8070982019-10-12 17:07:06 +02002035 msg_didany = TRUE; // remember that something was outputted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036
2037 /*
2038 * If there is no valid screen, use fprintf so we can see error messages.
2039 * If termcap is not active, we may be writing in an alternate console
2040 * window, cursor positioning may not work correctly (window size may be
2041 * different, e.g. for Win32 console) or we just don't know where the
2042 * cursor is.
2043 */
2044 if (msg_use_printf())
Bram Moolenaar32526b32019-01-19 17:43:09 +01002045 msg_puts_printf((char_u *)str, maxlen);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002046 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002047 msg_puts_display((char_u *)str, maxlen, attr, FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002048}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002050/*
2051 * The display part of msg_puts_attr_len().
2052 * May be called recursively to display scroll-back text.
2053 */
2054 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002055msg_puts_display(
2056 char_u *str,
2057 int maxlen,
2058 int attr,
2059 int recurse)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002060{
2061 char_u *s = str;
2062 char_u *t_s = str; /* string from "t_s" to "s" is still todo */
2063 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002064 int l;
2065 int cw;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002066 char_u *sb_str = str;
2067 int sb_col = msg_col;
2068 int wrap;
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002069 int did_last_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070
2071 did_wait_return = FALSE;
Bram Moolenaar57b7fe82007-08-05 17:20:43 +00002072 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 {
2074 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002075 * We are at the end of the screen line when:
2076 * - When outputting a newline.
2077 * - When outputting a character in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002079 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080#ifdef FEAT_RIGHTLEFT
2081 cmdmsg_rl
2082 ? (
2083 msg_col <= 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002084 || (*s == TAB && msg_col <= 7)
2085 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 :
2087#endif
2088 (msg_col + t_col >= Columns - 1
2089 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 || (has_mbyte && (*mb_ptr2cells)(s) > 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002091 && msg_col + t_col >= Columns - 2)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002093 /*
2094 * The screen is scrolled up when at the last row (some terminals
2095 * scroll automatically, some don't. To avoid problems we scroll
2096 * ourselves).
2097 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 if (t_col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 /* output postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002100 t_puts(&t_col, t_s, s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002102 /* When no more prompt and no more room, truncate here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 if (msg_no_more && lines_left == 0)
2104 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002106 /* Scroll the screen up one line. */
2107 msg_scroll_up();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108
2109 msg_row = Rows - 2;
2110 if (msg_col >= Columns) /* can happen after screen resize */
2111 msg_col = Columns - 1;
2112
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002113 /* Display char in last column before showing more-prompt. */
2114 if (*s >= ' '
2115#ifdef FEAT_RIGHTLEFT
2116 && !cmdmsg_rl
2117#endif
2118 )
2119 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002120 if (has_mbyte)
2121 {
2122 if (enc_utf8 && maxlen >= 0)
2123 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002124 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002125 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002126 l = (*mb_ptr2len)(s);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002127 s = screen_puts_mbyte(s, l, attr);
2128 }
2129 else
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002130 msg_screen_putchar(*s++, attr);
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002131 did_last_char = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002132 }
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002133 else
2134 did_last_char = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002135
2136 if (p_more)
2137 /* store text for scrolling back */
2138 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
2139
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002140 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002141 need_wait_return = TRUE; /* may need wait_return in main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 redraw_cmdline = TRUE;
2143 if (cmdline_row > 0 && !exmode_active)
2144 --cmdline_row;
2145
2146 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002147 * If screen is completely filled and 'more' is set then wait
2148 * for a character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 */
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002150 if (lines_left > 0)
2151 --lines_left;
Bram Moolenaar203335e2006-09-03 14:35:42 +00002152 if (p_more && lines_left == 0 && State != HITRETURN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 && !msg_no_more && !exmode_active)
2154 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155#ifdef FEAT_CON_DIALOG
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002156 if (do_more_prompt(NUL))
2157 s = confirm_msg_tail;
2158#else
2159 (void)do_more_prompt(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160#endif
2161 if (quit_more)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002162 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 }
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002164
2165 /* When we displayed a char in last column need to check if there
2166 * is still more. */
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002167 if (did_last_char)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002168 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 }
2170
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002171 wrap = *s == '\n'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 || msg_col + t_col >= Columns
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 || (has_mbyte && (*mb_ptr2cells)(s) > 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002174 && msg_col + t_col >= Columns - 1);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002175 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b'
2176 || *s == '\t' || *s == BELL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 /* output any postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002178 t_puts(&t_col, t_s, s, attr);
2179
2180 if (wrap && p_more && !recurse)
2181 /* store text for scrolling back */
2182 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183
2184 if (*s == '\n') /* go to next line */
2185 {
2186 msg_didout = FALSE; /* remember that line is empty */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002187#ifdef FEAT_RIGHTLEFT
2188 if (cmdmsg_rl)
2189 msg_col = Columns - 1;
2190 else
2191#endif
2192 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 if (++msg_row >= Rows) /* safety check */
2194 msg_row = Rows - 1;
2195 }
2196 else if (*s == '\r') /* go to column 0 */
2197 {
2198 msg_col = 0;
2199 }
2200 else if (*s == '\b') /* go to previous char */
2201 {
2202 if (msg_col)
2203 --msg_col;
2204 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002205 else if (*s == TAB) /* translate Tab into spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 {
2207 do
2208 msg_screen_putchar(' ', attr);
2209 while (msg_col & 7);
2210 }
Bram Moolenaar165bc692015-07-21 17:53:25 +02002211 else if (*s == BELL) /* beep (from ":sh") */
2212 vim_beep(BO_SH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 else
2214 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 if (has_mbyte)
2216 {
2217 cw = (*mb_ptr2cells)(s);
2218 if (enc_utf8 && maxlen >= 0)
2219 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002220 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002222 l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 }
2224 else
2225 {
2226 cw = 1;
2227 l = 1;
2228 }
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002229
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 /* When drawing from right to left or when a double-wide character
2231 * doesn't fit, draw a single character here. Otherwise collect
2232 * characters and draw them all at once later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 if (
2234# ifdef FEAT_RIGHTLEFT
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002235 cmdmsg_rl ||
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236# endif
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002237 (cw > 1 && msg_col + t_col >= Columns - 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 if (l > 1)
2240 s = screen_puts_mbyte(s, l, attr) - 1;
2241 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 msg_screen_putchar(*s, attr);
2243 }
2244 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 {
2246 /* postpone this character until later */
2247 if (t_col == 0)
2248 t_s = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 t_col += cw;
2250 s += l - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 }
2252 }
2253 ++s;
2254 }
2255
2256 /* output any postponed text */
2257 if (t_col > 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002258 t_puts(&t_col, t_s, s, attr);
2259 if (p_more && !recurse)
2260 store_sb_text(&sb_str, s, attr, &sb_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261
2262 msg_check();
2263}
2264
2265/*
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002266 * Return TRUE when ":filter pattern" was used and "msg" does not match
2267 * "pattern".
2268 */
2269 int
2270message_filtered(char_u *msg)
2271{
Bram Moolenaard29459b2016-08-26 22:29:11 +02002272 int match;
2273
2274 if (cmdmod.filter_regmatch.regprog == NULL)
2275 return FALSE;
2276 match = vim_regexec(&cmdmod.filter_regmatch, msg, (colnr_T)0);
2277 return cmdmod.filter_force ? match : !match;
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002278}
2279
2280/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002281 * Scroll the screen up one line for displaying the next message line.
2282 */
2283 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002284msg_scroll_up(void)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002285{
2286#ifdef FEAT_GUI
2287 /* Remove the cursor before scrolling, ScreenLines[] is going
2288 * to become invalid. */
2289 if (gui.in_use)
2290 gui_undraw_cursor();
2291#endif
2292 /* scrolling up always works */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002293 mch_disable_flush();
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002294 screen_del_lines(0, 0, 1, (int)Rows, TRUE, 0, NULL);
Bram Moolenaara338adc2018-01-31 20:51:47 +01002295 mch_enable_flush();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002296
2297 if (!can_clear((char_u *)" "))
2298 {
2299 /* Scrolling up doesn't result in the right background. Set the
2300 * background here. It's not efficient, but avoids that we have to do
2301 * it all over the code. */
2302 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2303
2304 /* Also clear the last char of the last but one line if it was not
2305 * cleared before to avoid a scroll-up. */
2306 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1)
2307 screen_fill((int)Rows - 2, (int)Rows - 1,
2308 (int)Columns - 1, (int)Columns, ' ', ' ', 0);
2309 }
2310}
2311
2312/*
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002313 * Increment "msg_scrolled".
2314 */
2315 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002316inc_msg_scrolled(void)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002317{
2318#ifdef FEAT_EVAL
2319 if (*get_vim_var_str(VV_SCROLLSTART) == NUL)
2320 {
2321 char_u *p = sourcing_name;
2322 char_u *tofree = NULL;
2323 int len;
2324
2325 /* v:scrollstart is empty, set it to the script/function name and line
2326 * number */
2327 if (p == NULL)
2328 p = (char_u *)_("Unknown");
2329 else
2330 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002331 len = (int)STRLEN(p) + 40;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002332 tofree = alloc(len);
2333 if (tofree != NULL)
2334 {
2335 vim_snprintf((char *)tofree, len, _("%s line %ld"),
2336 p, (long)sourcing_lnum);
2337 p = tofree;
2338 }
2339 }
2340 set_vim_var_string(VV_SCROLLSTART, p, -1);
2341 vim_free(tofree);
2342 }
2343#endif
2344 ++msg_scrolled;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002345 if (must_redraw < VALID)
2346 must_redraw = VALID;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002347}
2348
2349/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002350 * To be able to scroll back at the "more" and "hit-enter" prompts we need to
2351 * store the displayed text and remember where screen lines start.
2352 */
2353typedef struct msgchunk_S msgchunk_T;
2354struct msgchunk_S
2355{
2356 msgchunk_T *sb_next;
2357 msgchunk_T *sb_prev;
2358 char sb_eol; /* TRUE when line ends after this text */
2359 int sb_msg_col; /* column in which text starts */
2360 int sb_attr; /* text attributes */
2361 char_u sb_text[1]; /* text to be displayed, actually longer */
2362};
2363
2364static msgchunk_T *last_msgchunk = NULL; /* last displayed text */
2365
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01002366static msgchunk_T *msg_sb_start(msgchunk_T *mps);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002367
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002368typedef enum {
2369 SB_CLEAR_NONE = 0,
2370 SB_CLEAR_ALL,
2371 SB_CLEAR_CMDLINE_BUSY,
2372 SB_CLEAR_CMDLINE_DONE
2373} sb_clear_T;
2374
2375/* When to clear text on next msg. */
2376static sb_clear_T do_clear_sb_text = SB_CLEAR_NONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002377
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002378/*
2379 * Store part of a printed message for displaying when scrolling back.
2380 */
2381 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002382store_sb_text(
2383 char_u **sb_str, /* start of string */
2384 char_u *s, /* just after string */
2385 int attr,
2386 int *sb_col,
2387 int finish) /* line ends */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002388{
2389 msgchunk_T *mp;
2390
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002391 if (do_clear_sb_text == SB_CLEAR_ALL
2392 || do_clear_sb_text == SB_CLEAR_CMDLINE_DONE)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002393 {
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002394 clear_sb_text(do_clear_sb_text == SB_CLEAR_ALL);
2395 do_clear_sb_text = SB_CLEAR_NONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002396 }
2397
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002398 if (s > *sb_str)
2399 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002400 mp = alloc(sizeof(msgchunk_T) + (s - *sb_str));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002401 if (mp != NULL)
2402 {
2403 mp->sb_eol = finish;
2404 mp->sb_msg_col = *sb_col;
2405 mp->sb_attr = attr;
2406 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str);
2407
2408 if (last_msgchunk == NULL)
2409 {
2410 last_msgchunk = mp;
2411 mp->sb_prev = NULL;
2412 }
2413 else
2414 {
2415 mp->sb_prev = last_msgchunk;
2416 last_msgchunk->sb_next = mp;
2417 last_msgchunk = mp;
2418 }
2419 mp->sb_next = NULL;
2420 }
2421 }
2422 else if (finish && last_msgchunk != NULL)
2423 last_msgchunk->sb_eol = TRUE;
2424
2425 *sb_str = s;
2426 *sb_col = 0;
2427}
2428
2429/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002430 * Finished showing messages, clear the scroll-back text on the next message.
2431 */
2432 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002433may_clear_sb_text(void)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002434{
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002435 do_clear_sb_text = SB_CLEAR_ALL;
2436}
2437
2438/*
2439 * Starting to edit the command line, do not clear messages now.
2440 */
2441 void
2442sb_text_start_cmdline(void)
2443{
2444 do_clear_sb_text = SB_CLEAR_CMDLINE_BUSY;
2445 msg_sb_eol();
2446}
2447
2448/*
2449 * Ending to edit the command line. Clear old lines but the last one later.
2450 */
2451 void
2452sb_text_end_cmdline(void)
2453{
2454 do_clear_sb_text = SB_CLEAR_CMDLINE_DONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002455}
2456
2457/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002458 * Clear any text remembered for scrolling back.
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002459 * When "all" is FALSE keep the last line.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002460 * Called when redrawing the screen.
2461 */
2462 void
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002463clear_sb_text(int all)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002464{
2465 msgchunk_T *mp;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002466 msgchunk_T **lastp;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002467
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002468 if (all)
2469 lastp = &last_msgchunk;
2470 else
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002471 {
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002472 if (last_msgchunk == NULL)
2473 return;
2474 lastp = &last_msgchunk->sb_prev;
2475 }
2476
2477 while (*lastp != NULL)
2478 {
2479 mp = (*lastp)->sb_prev;
2480 vim_free(*lastp);
2481 *lastp = mp;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002482 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002483}
2484
2485/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002486 * "g<" command.
2487 */
2488 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002489show_sb_text(void)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002490{
2491 msgchunk_T *mp;
2492
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002493 /* Only show something if there is more than one line, otherwise it looks
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002494 * weird, typing a command without output results in one line. */
2495 mp = msg_sb_start(last_msgchunk);
2496 if (mp == NULL || mp->sb_prev == NULL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02002497 vim_beep(BO_MESS);
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002498 else
2499 {
2500 do_more_prompt('G');
2501 wait_return(FALSE);
2502 }
2503}
2504
2505/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002506 * Move to the start of screen line in already displayed text.
2507 */
2508 static msgchunk_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002509msg_sb_start(msgchunk_T *mps)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002510{
2511 msgchunk_T *mp = mps;
2512
2513 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol)
2514 mp = mp->sb_prev;
2515 return mp;
2516}
2517
2518/*
Bram Moolenaar6df5e5a2012-03-28 16:49:29 +02002519 * Mark the last message chunk as finishing the line.
2520 */
2521 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002522msg_sb_eol(void)
Bram Moolenaar6df5e5a2012-03-28 16:49:29 +02002523{
2524 if (last_msgchunk != NULL)
2525 last_msgchunk->sb_eol = TRUE;
2526}
2527
2528/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002529 * Display a screen line from previously displayed text at row "row".
2530 * Returns a pointer to the text for the next line (can be NULL).
2531 */
2532 static msgchunk_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002533disp_sb_line(int row, msgchunk_T *smp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002534{
2535 msgchunk_T *mp = smp;
2536 char_u *p;
2537
2538 for (;;)
2539 {
2540 msg_row = row;
2541 msg_col = mp->sb_msg_col;
2542 p = mp->sb_text;
2543 if (*p == '\n') /* don't display the line break */
2544 ++p;
2545 msg_puts_display(p, -1, mp->sb_attr, TRUE);
2546 if (mp->sb_eol || mp->sb_next == NULL)
2547 break;
2548 mp = mp->sb_next;
2549 }
2550 return mp->sb_next;
2551}
2552
2553/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 * Output any postponed text for msg_puts_attr_len().
2555 */
2556 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002557t_puts(
2558 int *t_col,
2559 char_u *t_s,
2560 char_u *s,
2561 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562{
2563 /* output postponed text */
2564 msg_didout = TRUE; /* remember that line is not empty */
2565 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002566 msg_col += *t_col;
2567 *t_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 /* If the string starts with a composing character don't increment the
2569 * column position for it. */
2570 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s)))
2571 --msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 if (msg_col >= Columns)
2573 {
2574 msg_col = 0;
2575 ++msg_row;
2576 }
2577}
2578
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579/*
2580 * Returns TRUE when messages should be printed with mch_errmsg().
2581 * This is used when there is no valid screen, so we can see error messages.
2582 * If termcap is not active, we may be writing in an alternate console
2583 * window, cursor positioning may not work correctly (window size may be
2584 * different, e.g. for Win32 console) or we just don't know where the
2585 * cursor is.
2586 */
2587 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002588msg_use_printf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589{
2590 return (!msg_check_screen()
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002591#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
2592# ifdef VIMDLL
2593 || (!gui.in_use && !termcap_active)
2594# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 || !termcap_active
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002596# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597#endif
2598 || (swapping_screen() && !termcap_active)
2599 );
2600}
2601
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002602/*
2603 * Print a message when there is no valid screen.
2604 */
2605 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002606msg_puts_printf(char_u *str, int maxlen)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002607{
2608 char_u *s = str;
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002609 char_u *buf = NULL;
2610 char_u *p = s;
2611
Bram Moolenaar4f974752019-02-17 17:44:42 +01002612#ifdef MSWIN
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002613 if (!(silent_mode && p_verbose == 0))
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002614 mch_settmode(TMODE_COOK); /* handle CR and NL correctly */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002615#endif
Bram Moolenaar2321ca22016-09-09 14:17:18 +02002616 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002617 {
2618 if (!(silent_mode && p_verbose == 0))
2619 {
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002620 // NL --> CR NL translation (for Unix, not for "--version")
2621 if (*s == NL)
2622 {
2623 int n = (int)(s - p);
2624
2625 buf = alloc(n + 3);
Bram Moolenaar6f10c702019-08-20 22:58:37 +02002626 if (buf != NULL)
2627 {
2628 memcpy(buf, p, n);
2629 if (!info_message)
2630 buf[n++] = CAR;
2631 buf[n++] = NL;
2632 buf[n++] = NUL;
2633 if (info_message) // informative message, not an error
2634 mch_msg((char *)buf);
2635 else
2636 mch_errmsg((char *)buf);
2637 vim_free(buf);
2638 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002639 p = s + 1;
2640 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002641 }
2642
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002643 // primitive way to compute the current column
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002644#ifdef FEAT_RIGHTLEFT
2645 if (cmdmsg_rl)
2646 {
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002647 if (*s == CAR || *s == NL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002648 msg_col = Columns - 1;
2649 else
2650 --msg_col;
2651 }
2652 else
2653#endif
2654 {
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002655 if (*s == CAR || *s == NL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002656 msg_col = 0;
2657 else
2658 ++msg_col;
2659 }
2660 ++s;
2661 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002662
2663 if (*p != NUL && !(silent_mode && p_verbose == 0))
2664 {
Bram Moolenaar97c2c052019-02-22 13:42:07 +01002665 int c = -1;
2666
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002667 if (maxlen > 0 && STRLEN(p) > (size_t)maxlen)
Bram Moolenaar97c2c052019-02-22 13:42:07 +01002668 {
2669 c = p[maxlen];
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002670 p[maxlen] = 0;
Bram Moolenaar97c2c052019-02-22 13:42:07 +01002671 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002672 if (info_message)
2673 mch_msg((char *)p);
2674 else
2675 mch_errmsg((char *)p);
Bram Moolenaar97c2c052019-02-22 13:42:07 +01002676 if (c != -1)
2677 p[maxlen] = c;
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002678 }
2679
2680 msg_didout = TRUE; // assume that line is not empty
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002681
Bram Moolenaar4f974752019-02-17 17:44:42 +01002682#ifdef MSWIN
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002683 if (!(silent_mode && p_verbose == 0))
2684 mch_settmode(TMODE_RAW);
2685#endif
2686}
2687
2688/*
2689 * Show the more-prompt and handle the user response.
2690 * This takes care of scrolling back and displaying previously displayed text.
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002691 * When at hit-enter prompt "typed_char" is the already typed character,
2692 * otherwise it's NUL.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002693 * Returns TRUE when jumping ahead to "confirm_msg_tail".
2694 */
2695 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002696do_more_prompt(int typed_char)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002697{
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002698 static int entered = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002699 int used_typed_char = typed_char;
2700 int oldState = State;
2701 int c;
2702#ifdef FEAT_CON_DIALOG
2703 int retval = FALSE;
2704#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002705 int toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002706 msgchunk_T *mp_last = NULL;
2707 msgchunk_T *mp;
2708 int i;
2709
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002710 /* We get called recursively when a timer callback outputs a message. In
Bram Moolenaara0055ad2016-06-02 18:37:05 +02002711 * that case don't show another prompt. Also when at the hit-Enter prompt
2712 * and nothing was typed. */
2713 if (entered || (State == HITRETURN && typed_char == 0))
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002714 return FALSE;
2715 entered = TRUE;
2716
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002717 if (typed_char == 'G')
2718 {
2719 /* "g<": Find first line on the last page. */
2720 mp_last = msg_sb_start(last_msgchunk);
2721 for (i = 0; i < Rows - 2 && mp_last != NULL
2722 && mp_last->sb_prev != NULL; ++i)
2723 mp_last = msg_sb_start(mp_last->sb_prev);
2724 }
2725
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002726 State = ASKMORE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002727 setmouse();
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002728 if (typed_char == NUL)
2729 msg_moremsg(FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002730 for (;;)
2731 {
2732 /*
2733 * Get a typed character directly from the user.
2734 */
2735 if (used_typed_char != NUL)
2736 {
2737 c = used_typed_char; /* was typed at hit-enter prompt */
2738 used_typed_char = NUL;
2739 }
2740 else
2741 c = get_keystroke();
2742
2743#if defined(FEAT_MENU) && defined(FEAT_GUI)
2744 if (c == K_MENU)
2745 {
2746 int idx = get_menu_index(current_menu, ASKMORE);
2747
2748 /* Used a menu. If it starts with CTRL-Y, it must
2749 * be a "Copy" for the clipboard. Otherwise
2750 * assume that we end */
2751 if (idx == MENU_INDEX_INVALID)
2752 continue;
2753 c = *current_menu->strings[idx];
2754 if (c != NUL && current_menu->strings[idx][1] != NUL)
2755 ins_typebuf(current_menu->strings[idx] + 1,
2756 current_menu->noremap[idx], 0, TRUE,
2757 current_menu->silent[idx]);
2758 }
2759#endif
2760
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002761 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002762 switch (c)
2763 {
2764 case BS: /* scroll one line back */
2765 case K_BS:
2766 case 'k':
2767 case K_UP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002768 toscroll = -1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002769 break;
2770
2771 case CAR: /* one extra line */
2772 case NL:
2773 case 'j':
2774 case K_DOWN:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002775 toscroll = 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002776 break;
2777
2778 case 'u': /* Up half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002779 toscroll = -(Rows / 2);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002780 break;
2781
2782 case 'd': /* Down half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002783 toscroll = Rows / 2;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002784 break;
2785
2786 case 'b': /* one page back */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002787 case K_PAGEUP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002788 toscroll = -(Rows - 1);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002789 break;
2790
2791 case ' ': /* one extra page */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002792 case 'f':
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002793 case K_PAGEDOWN:
2794 case K_LEFTMOUSE:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002795 toscroll = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002796 break;
2797
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002798 case 'g': /* all the way back to the start */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002799 toscroll = -999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002800 break;
2801
2802 case 'G': /* all the way to the end */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002803 toscroll = 999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002804 lines_left = 999999;
2805 break;
2806
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002807 case ':': /* start new command line */
2808#ifdef FEAT_CON_DIALOG
2809 if (!confirm_msg_used)
2810#endif
2811 {
2812 /* Since got_int is set all typeahead will be flushed, but we
2813 * want to keep this ':', remember that in a special way. */
2814 typeahead_noflush(':');
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02002815#ifdef FEAT_TERMINAL
2816 skip_term_loop = TRUE;
2817#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002818 cmdline_row = Rows - 1; /* put ':' on this line */
2819 skip_redraw = TRUE; /* skip redraw once */
2820 need_wait_return = FALSE; /* don't wait in main() */
2821 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002822 /* FALLTHROUGH */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002823 case 'q': /* quit */
2824 case Ctrl_C:
2825 case ESC:
2826#ifdef FEAT_CON_DIALOG
2827 if (confirm_msg_used)
2828 {
2829 /* Jump to the choices of the dialog. */
2830 retval = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002831 }
2832 else
2833#endif
2834 {
2835 got_int = TRUE;
2836 quit_more = TRUE;
2837 }
Bram Moolenaar51306d22009-02-24 03:38:04 +00002838 /* When there is some more output (wrapping line) display that
2839 * without another prompt. */
2840 lines_left = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002841 break;
2842
2843#ifdef FEAT_CLIPBOARD
2844 case Ctrl_Y:
2845 /* Strange way to allow copying (yanking) a modeless
2846 * selection at the more prompt. Use CTRL-Y,
2847 * because the same is used in Cmdline-mode and at the
2848 * hit-enter prompt. However, scrolling one line up
2849 * might be expected... */
2850 if (clip_star.state == SELECT_DONE)
2851 clip_copy_modeless_selection(TRUE);
2852 continue;
2853#endif
2854 default: /* no valid response */
2855 msg_moremsg(TRUE);
2856 continue;
2857 }
2858
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002859 if (toscroll != 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002860 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002861 if (toscroll < 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002862 {
2863 /* go to start of last line */
2864 if (mp_last == NULL)
2865 mp = msg_sb_start(last_msgchunk);
2866 else if (mp_last->sb_prev != NULL)
2867 mp = msg_sb_start(mp_last->sb_prev);
2868 else
2869 mp = NULL;
2870
2871 /* go to start of line at top of the screen */
2872 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL;
2873 ++i)
2874 mp = msg_sb_start(mp->sb_prev);
2875
2876 if (mp != NULL && mp->sb_prev != NULL)
2877 {
2878 /* Find line to be displayed at top. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002879 for (i = 0; i > toscroll; --i)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002880 {
2881 if (mp == NULL || mp->sb_prev == NULL)
2882 break;
2883 mp = msg_sb_start(mp->sb_prev);
2884 if (mp_last == NULL)
2885 mp_last = msg_sb_start(last_msgchunk);
2886 else
2887 mp_last = msg_sb_start(mp_last->sb_prev);
2888 }
2889
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002890 if (toscroll == -1 && screen_ins_lines(0, 0, 1,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002891 (int)Rows, 0, NULL) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002892 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002893 /* display line at top */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002894 (void)disp_sb_line(0, mp);
2895 }
2896 else
2897 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002898 /* redisplay all lines */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002899 screenclear();
Bram Moolenaar773560b2006-05-06 21:38:18 +00002900 for (i = 0; mp != NULL && i < Rows - 1; ++i)
2901 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002902 mp = disp_sb_line(i, mp);
Bram Moolenaar773560b2006-05-06 21:38:18 +00002903 ++msg_scrolled;
2904 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002905 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002906 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002907 }
2908 }
2909 else
2910 {
2911 /* First display any text that we scrolled back. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002912 while (toscroll > 0 && mp_last != NULL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002913 {
2914 /* scroll up, display line at bottom */
2915 msg_scroll_up();
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002916 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002917 screen_fill((int)Rows - 2, (int)Rows - 1, 0,
2918 (int)Columns, ' ', ' ', 0);
2919 mp_last = disp_sb_line((int)Rows - 2, mp_last);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002920 --toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002921 }
2922 }
2923
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002924 if (toscroll <= 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002925 {
2926 /* displayed the requested text, more prompt again */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002927 screen_fill((int)Rows - 1, (int)Rows, 0,
2928 (int)Columns, ' ', ' ', 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002929 msg_moremsg(FALSE);
2930 continue;
2931 }
2932
2933 /* display more text, return to caller */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002934 lines_left = toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002935 }
2936
2937 break;
2938 }
2939
2940 /* clear the --more-- message */
2941 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2942 State = oldState;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002943 setmouse();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002944 if (quit_more)
2945 {
2946 msg_row = Rows - 1;
2947 msg_col = 0;
2948 }
2949#ifdef FEAT_RIGHTLEFT
2950 else if (cmdmsg_rl)
2951 msg_col = Columns - 1;
2952#endif
2953
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002954 entered = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002955#ifdef FEAT_CON_DIALOG
2956 return retval;
2957#else
2958 return FALSE;
2959#endif
2960}
2961
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962#if defined(USE_MCH_ERRMSG) || defined(PROTO)
2963
2964#ifdef mch_errmsg
2965# undef mch_errmsg
2966#endif
2967#ifdef mch_msg
2968# undef mch_msg
2969#endif
2970
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002971#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
2972 static void
2973mch_errmsg_c(char *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974{
Bram Moolenaar0f77d6a2019-02-14 20:55:09 +01002975 int len = (int)STRLEN(str);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002976 DWORD nwrite = 0;
2977 DWORD mode = 0;
2978 HANDLE h = GetStdHandle(STD_ERROR_HANDLE);
2979
2980 if (GetConsoleMode(h, &mode) && enc_codepage >= 0
2981 && (int)GetConsoleCP() != enc_codepage)
2982 {
2983 WCHAR *w = enc_to_utf16((char_u *)str, &len);
2984
2985 WriteConsoleW(h, w, len, &nwrite, NULL);
2986 vim_free(w);
2987 }
2988 else
2989 {
2990 fprintf(stderr, "%s", str);
2991 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002992}
2993#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002995/*
2996 * Give an error message. To be used when the screen hasn't been initialized
2997 * yet. When stderr can't be used, collect error messages until the GUI has
2998 * started and they can be displayed in a message box.
2999 */
3000 void
3001mch_errmsg(char *str)
3002{
3003#if !defined(MSWIN) || defined(FEAT_GUI_MSWIN)
3004 int len;
3005#endif
3006
Bram Moolenaar0b75f7c2019-05-08 22:28:46 +02003007#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 /* On Unix use stderr if it's a tty.
3009 * When not going to start the GUI also use stderr.
3010 * On Mac, when started from Finder, stderr is the console. */
3011 if (
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003012# ifdef UNIX
3013# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003015# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 isatty(2)
3017# endif
3018# ifdef FEAT_GUI
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003019 ||
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003020# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003021# endif
3022# ifdef FEAT_GUI
3023 !(gui.in_use || gui.starting)
3024# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 )
3026 {
3027 fprintf(stderr, "%s", str);
3028 return;
3029 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003030#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003032#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3033# ifdef VIMDLL
3034 if (!(gui.in_use || gui.starting))
3035# endif
3036 {
3037 mch_errmsg_c(str);
3038 return;
3039 }
3040#endif
3041
3042#if !defined(MSWIN) || defined(FEAT_GUI_MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 /* avoid a delay for a message that isn't there */
3044 emsg_on_display = FALSE;
3045
3046 len = (int)STRLEN(str) + 1;
3047 if (error_ga.ga_growsize == 0)
3048 {
3049 error_ga.ga_growsize = 80;
3050 error_ga.ga_itemsize = 1;
3051 }
3052 if (ga_grow(&error_ga, len) == OK)
3053 {
3054 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len,
3055 (char_u *)str, len);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003056# ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 /* remove CR characters, they are displayed */
3058 {
3059 char_u *p;
3060
3061 p = (char_u *)error_ga.ga_data + error_ga.ga_len;
3062 for (;;)
3063 {
3064 p = vim_strchr(p, '\r');
3065 if (p == NULL)
3066 break;
3067 *p = ' ';
3068 }
3069 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003070# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 --len; /* don't count the NUL at the end */
3072 error_ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003074#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075}
3076
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003077#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3078 static void
3079mch_msg_c(char *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080{
Bram Moolenaar0f77d6a2019-02-14 20:55:09 +01003081 int len = (int)STRLEN(str);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003082 DWORD nwrite = 0;
3083 DWORD mode;
3084 HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE);
3085
3086
3087 if (GetConsoleMode(h, &mode) && enc_codepage >= 0
3088 && (int)GetConsoleCP() != enc_codepage)
3089 {
3090 WCHAR *w = enc_to_utf16((char_u *)str, &len);
3091
3092 WriteConsoleW(h, w, len, &nwrite, NULL);
3093 vim_free(w);
3094 }
3095 else
3096 {
3097 printf("%s", str);
3098 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003099}
3100#endif
3101
3102/*
3103 * Give a message. To be used when the screen hasn't been initialized yet.
3104 * When there is no tty, collect messages until the GUI has started and they
3105 * can be displayed in a message box.
3106 */
3107 void
3108mch_msg(char *str)
3109{
Bram Moolenaar0b75f7c2019-05-08 22:28:46 +02003110#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and
3112 * uses mch_errmsg() when started from the desktop.
3113 * When not going to start the GUI also use stdout.
3114 * On Mac, when started from Finder, stderr is the console. */
3115 if (
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003116# ifdef UNIX
3117# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003119# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 isatty(2)
Bram Moolenaareae1b912019-05-09 15:12:55 +02003121# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122# ifdef FEAT_GUI
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003123 ||
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003125# endif
3126# ifdef FEAT_GUI
3127 !(gui.in_use || gui.starting)
3128# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 )
3130 {
3131 printf("%s", str);
3132 return;
3133 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003134#endif
3135
3136#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3137# ifdef VIMDLL
3138 if (!(gui.in_use || gui.starting))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003140 {
3141 mch_msg_c(str);
3142 return;
3143 }
3144#endif
3145#if !defined(MSWIN) || defined(FEAT_GUI_MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 mch_errmsg(str);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003147#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148}
3149#endif /* USE_MCH_ERRMSG */
3150
3151/*
3152 * Put a character on the screen at the current message position and advance
3153 * to the next position. Only for printable ASCII!
3154 */
3155 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003156msg_screen_putchar(int c, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157{
3158 msg_didout = TRUE; /* remember that line is not empty */
3159 screen_putchar(c, msg_row, msg_col, attr);
3160#ifdef FEAT_RIGHTLEFT
3161 if (cmdmsg_rl)
3162 {
3163 if (--msg_col == 0)
3164 {
3165 msg_col = Columns;
3166 ++msg_row;
3167 }
3168 }
3169 else
3170#endif
3171 {
3172 if (++msg_col >= Columns)
3173 {
3174 msg_col = 0;
3175 ++msg_row;
3176 }
3177 }
3178}
3179
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003180 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003181msg_moremsg(int full)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003183 int attr;
3184 char_u *s = (char_u *)_("-- More --");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185
Bram Moolenaar8820b482017-03-16 17:23:31 +01003186 attr = HL_ATTR(HLF_M);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003187 screen_puts(s, (int)Rows - 1, 0, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 if (full)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003189 screen_puts((char_u *)
3190 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "),
3191 (int)Rows - 1, vim_strsize(s), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192}
3193
3194/*
3195 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
3196 * exmode_active.
3197 */
3198 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003199repeat_message(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200{
3201 if (State == ASKMORE)
3202 {
3203 msg_moremsg(TRUE); /* display --more-- message again */
3204 msg_row = Rows - 1;
3205 }
3206#ifdef FEAT_CON_DIALOG
3207 else if (State == CONFIRM)
3208 {
3209 display_confirm_msg(); /* display ":confirm" message again */
3210 msg_row = Rows - 1;
3211 }
3212#endif
3213 else if (State == EXTERNCMD)
3214 {
3215 windgoto(msg_row, msg_col); /* put cursor back */
3216 }
3217 else if (State == HITRETURN || State == SETWSIZE)
3218 {
Bram Moolenaar9f108752007-11-24 14:44:58 +00003219 if (msg_row == Rows - 1)
3220 {
3221 /* Avoid drawing the "hit-enter" prompt below the previous one,
3222 * overwrite it. Esp. useful when regaining focus and a
3223 * FocusGained autocmd exists but didn't draw anything. */
3224 msg_didout = FALSE;
3225 msg_col = 0;
3226 msg_clr_eos();
3227 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 hit_return_msg();
3229 msg_row = Rows - 1;
3230 }
3231}
3232
3233/*
3234 * msg_check_screen - check if the screen is initialized.
3235 * Also check msg_row and msg_col, if they are too big it may cause a crash.
3236 * While starting the GUI the terminal codes will be set for the GUI, but the
3237 * output goes to the terminal. Don't use the terminal codes then.
3238 */
3239 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003240msg_check_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241{
3242 if (!full_screen || !screen_valid(FALSE))
3243 return FALSE;
3244
3245 if (msg_row >= Rows)
3246 msg_row = Rows - 1;
3247 if (msg_col >= Columns)
3248 msg_col = Columns - 1;
3249 return TRUE;
3250}
3251
3252/*
3253 * Clear from current message position to end of screen.
3254 * Skip this when ":silent" was used, no need to clear for redirection.
3255 */
3256 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003257msg_clr_eos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258{
3259 if (msg_silent == 0)
3260 msg_clr_eos_force();
3261}
3262
3263/*
3264 * Clear from current message position to end of screen.
3265 * Note: msg_col is not updated, so we remember the end of the message
3266 * for msg_check().
3267 */
3268 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003269msg_clr_eos_force(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270{
3271 if (msg_use_printf())
3272 {
3273 if (full_screen) /* only when termcap codes are valid */
3274 {
3275 if (*T_CD)
3276 out_str(T_CD); /* clear to end of display */
3277 else if (*T_CE)
3278 out_str(T_CE); /* clear to end of line */
3279 }
3280 }
3281 else
3282 {
3283#ifdef FEAT_RIGHTLEFT
3284 if (cmdmsg_rl)
3285 {
3286 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0);
3287 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3288 }
3289 else
3290#endif
3291 {
3292 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns,
3293 ' ', ' ', 0);
3294 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3295 }
3296 }
3297}
3298
3299/*
3300 * Clear the command line.
3301 */
3302 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003303msg_clr_cmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304{
3305 msg_row = cmdline_row;
3306 msg_col = 0;
3307 msg_clr_eos_force();
3308}
3309
3310/*
3311 * end putting a message on the screen
3312 * call wait_return if the message does not fit in the available space
3313 * return TRUE if wait_return not called.
3314 */
3315 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003316msg_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317{
3318 /*
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02003319 * If the string is larger than the window,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 * or the ruler option is set and we run into it,
3321 * we have to redraw the window.
3322 * Do not do this if we are abandoning the file or editing the command line.
3323 */
3324 if (!exiting && need_wait_return && !(State & CMDLINE))
3325 {
3326 wait_return(FALSE);
3327 return FALSE;
3328 }
3329 out_flush();
3330 return TRUE;
3331}
3332
3333/*
3334 * If the written message runs into the shown command or ruler, we have to
3335 * wait for hit-return and redraw the window later.
3336 */
3337 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003338msg_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339{
3340 if (msg_row == Rows - 1 && msg_col >= sc_col)
3341 {
3342 need_wait_return = TRUE;
3343 redraw_cmdline = TRUE;
3344 }
3345}
3346
3347/*
3348 * May write a string to the redirection file.
3349 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3350 */
3351 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003352redir_write(char_u *str, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353{
3354 char_u *s = str;
3355 static int cur_col = 0;
3356
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003357 /* Don't do anything for displaying prompts and the like. */
3358 if (redir_off)
3359 return;
3360
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003361 /* If 'verbosefile' is set prepare for writing in that file. */
3362 if (*p_vfile != NUL && verbose_fd == NULL)
3363 verbose_open();
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003364
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003365 if (redirecting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 {
3367 /* If the string doesn't start with CR or NL, go to msg_col */
3368 if (*s != '\n' && *s != '\r')
3369 {
3370 while (cur_col < msg_col)
3371 {
3372#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003373 if (redir_execute)
3374 execute_redir_str((char_u *)" ", -1);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003375 else if (redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003377 else if (redir_vname)
3378 var_redir_str((char_u *)" ", -1);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003379 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003381 if (redir_fd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 fputs(" ", redir_fd);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003383 if (verbose_fd != NULL)
3384 fputs(" ", verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 ++cur_col;
3386 }
3387 }
3388
3389#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003390 if (redir_execute)
3391 execute_redir_str(s, maxlen);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003392 else if (redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393 write_reg_contents(redir_reg, s, maxlen, TRUE);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003394 else if (redir_vname)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003395 var_redir_str(s, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396#endif
3397
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003398 /* Write and adjust the current column. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3400 {
3401#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003402 if (!redir_reg && !redir_vname && !redir_execute)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003404 if (redir_fd != NULL)
3405 putc(*s, redir_fd);
3406 if (verbose_fd != NULL)
3407 putc(*s, verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 if (*s == '\r' || *s == '\n')
3409 cur_col = 0;
3410 else if (*s == '\t')
3411 cur_col += (8 - cur_col % 8);
3412 else
3413 ++cur_col;
3414 ++s;
3415 }
3416
3417 if (msg_silent != 0) /* should update msg_col */
3418 msg_col = cur_col;
3419 }
3420}
3421
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003422 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003423redirecting(void)
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003424{
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003425 return redir_fd != NULL || *p_vfile != NUL
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003426#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003427 || redir_reg || redir_vname || redir_execute
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003428#endif
3429 ;
3430}
3431
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432/*
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00003433 * Before giving verbose message.
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003434 * Must always be called paired with verbose_leave()!
3435 */
3436 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003437verbose_enter(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003438{
3439 if (*p_vfile != NUL)
3440 ++msg_silent;
3441}
3442
3443/*
3444 * After giving verbose message.
3445 * Must always be called paired with verbose_enter()!
3446 */
3447 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003448verbose_leave(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003449{
3450 if (*p_vfile != NUL)
3451 if (--msg_silent < 0)
3452 msg_silent = 0;
3453}
3454
3455/*
3456 * Like verbose_enter() and set msg_scroll when displaying the message.
3457 */
3458 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003459verbose_enter_scroll(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003460{
3461 if (*p_vfile != NUL)
3462 ++msg_silent;
3463 else
3464 /* always scroll up, don't overwrite */
3465 msg_scroll = TRUE;
3466}
3467
3468/*
3469 * Like verbose_leave() and set cmdline_row when displaying the message.
3470 */
3471 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003472verbose_leave_scroll(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003473{
3474 if (*p_vfile != NUL)
3475 {
3476 if (--msg_silent < 0)
3477 msg_silent = 0;
3478 }
3479 else
3480 cmdline_row = msg_row;
3481}
3482
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003483/*
3484 * Called when 'verbosefile' is set: stop writing to the file.
3485 */
3486 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003487verbose_stop(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003488{
3489 if (verbose_fd != NULL)
3490 {
3491 fclose(verbose_fd);
3492 verbose_fd = NULL;
3493 }
3494 verbose_did_open = FALSE;
3495}
3496
3497/*
3498 * Open the file 'verbosefile'.
3499 * Return FAIL or OK.
3500 */
3501 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003502verbose_open(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003503{
3504 if (verbose_fd == NULL && !verbose_did_open)
3505 {
3506 /* Only give the error message once. */
3507 verbose_did_open = TRUE;
3508
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003509 verbose_fd = mch_fopen((char *)p_vfile, "a");
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003510 if (verbose_fd == NULL)
3511 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003512 semsg(_(e_notopen), p_vfile);
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003513 return FAIL;
3514 }
3515 }
3516 return OK;
3517}
3518
3519/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 * Give a warning message (for searching).
3521 * Use 'w' highlighting and may repeat the message after redrawing
3522 */
3523 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003524give_warning(char_u *message, int hl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525{
3526 /* Don't do this for ":silent". */
3527 if (msg_silent != 0)
3528 return;
3529
3530 /* Don't want a hit-enter prompt here. */
3531 ++no_wait_return;
Bram Moolenaared203462004-06-16 11:19:22 +00003532
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533#ifdef FEAT_EVAL
3534 set_vim_var_string(VV_WARNINGMSG, message, -1);
3535#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003536 VIM_CLEAR(keep_msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 if (hl)
Bram Moolenaar8820b482017-03-16 17:23:31 +01003538 keep_msg_attr = HL_ATTR(HLF_W);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 else
3540 keep_msg_attr = 0;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003541 if (msg_attr((char *)message, keep_msg_attr) && msg_scrolled == 0)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003542 set_keep_msg(message, keep_msg_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 msg_didout = FALSE; /* overwrite this message */
3544 msg_nowait = TRUE; /* don't wait for this message */
3545 msg_col = 0;
Bram Moolenaared203462004-06-16 11:19:22 +00003546
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 --no_wait_return;
3548}
3549
Bram Moolenaar113e1072019-01-20 15:30:40 +01003550#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarf8be4612017-06-23 20:52:40 +02003551 void
3552give_warning2(char_u *message, char_u *a1, int hl)
3553{
Bram Moolenaare3a22cb2019-10-14 22:01:57 +02003554 if (IObuff == NULL)
3555 {
3556 // Very early in initialisation and already something wrong, just give
3557 // the raw message so the user at least gets a hint.
3558 give_warning((char_u *)message, hl);
3559 }
3560 else
3561 {
3562 vim_snprintf((char *)IObuff, IOSIZE, (char *)message, a1);
3563 give_warning(IObuff, hl);
3564 }
Bram Moolenaarf8be4612017-06-23 20:52:40 +02003565}
Bram Moolenaar113e1072019-01-20 15:30:40 +01003566#endif
Bram Moolenaarf8be4612017-06-23 20:52:40 +02003567
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568/*
3569 * Advance msg cursor to column "col".
3570 */
3571 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003572msg_advance(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573{
3574 if (msg_silent != 0) /* nothing to advance to */
3575 {
3576 msg_col = col; /* for redirection, may fill it up later */
3577 return;
3578 }
3579 if (col >= Columns) /* not enough room */
3580 col = Columns - 1;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003581#ifdef FEAT_RIGHTLEFT
3582 if (cmdmsg_rl)
3583 while (msg_col > Columns - col)
3584 msg_putchar(' ');
3585 else
3586#endif
3587 while (msg_col < col)
3588 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589}
3590
3591#if defined(FEAT_CON_DIALOG) || defined(PROTO)
3592/*
3593 * Used for "confirm()" function, and the :confirm command prefix.
3594 * Versions which haven't got flexible dialogs yet, and console
3595 * versions, get this generic handler which uses the command line.
3596 *
3597 * type = one of:
3598 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC
3599 * title = title string (can be NULL for default)
3600 * (neither used in console dialogs at the moment)
3601 *
3602 * Format of the "buttons" string:
3603 * "Button1Name\nButton2Name\nButton3Name"
3604 * The first button should normally be the default/accept
3605 * The second button should be the 'Cancel' button
3606 * Other buttons- use your imagination!
3607 * A '&' in a button name becomes a shortcut, so each '&' should be before a
3608 * different letter.
3609 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003611do_dialog(
3612 int type UNUSED,
3613 char_u *title UNUSED,
3614 char_u *message,
3615 char_u *buttons,
3616 int dfltbutton,
3617 char_u *textfield UNUSED, /* IObuff for inputdialog(), NULL
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003618 otherwise */
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003619 int ex_cmd) /* when TRUE pressing : accepts default and starts
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003620 Ex command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621{
3622 int oldState;
3623 int retval = 0;
3624 char_u *hotkeys;
3625 int c;
3626 int i;
3627
3628#ifndef NO_CONSOLE
3629 /* Don't output anything in silent mode ("ex -s") */
3630 if (silent_mode)
3631 return dfltbutton; /* return default option */
3632#endif
3633
3634#ifdef FEAT_GUI_DIALOG
3635 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */
3636 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
3637 {
3638 c = gui_mch_dialog(type, title, message, buttons, dfltbutton,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003639 textfield, ex_cmd);
Bram Moolenaar8de49e12009-02-11 17:47:54 +00003640 /* avoid a hit-enter prompt without clearing the cmdline */
3641 need_wait_return = FALSE;
3642 emsg_on_display = FALSE;
3643 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644
3645 /* Flush output to avoid that further messages and redrawing is done
3646 * in the wrong order. */
3647 out_flush();
3648 gui_mch_update();
3649
3650 return c;
3651 }
3652#endif
3653
3654 oldState = State;
3655 State = CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657
3658 /*
3659 * Since we wait for a keypress, don't make the
3660 * user press RETURN as well afterwards.
3661 */
3662 ++no_wait_return;
3663 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton);
3664
3665 if (hotkeys != NULL)
3666 {
3667 for (;;)
3668 {
3669 /* Get a typed character directly from the user. */
3670 c = get_keystroke();
3671 switch (c)
3672 {
3673 case CAR: /* User accepts default option */
3674 case NL:
3675 retval = dfltbutton;
3676 break;
3677 case Ctrl_C: /* User aborts/cancels */
3678 case ESC:
3679 retval = 0;
3680 break;
3681 default: /* Could be a hotkey? */
3682 if (c < 0) /* special keys are ignored here */
3683 continue;
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003684 if (c == ':' && ex_cmd)
3685 {
3686 retval = dfltbutton;
3687 ins_char_typebuf(':');
3688 break;
3689 }
3690
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691 /* Make the character lowercase, as chars in "hotkeys" are. */
3692 c = MB_TOLOWER(c);
3693 retval = 1;
3694 for (i = 0; hotkeys[i]; ++i)
3695 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 if (has_mbyte)
3697 {
3698 if ((*mb_ptr2char)(hotkeys + i) == c)
3699 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003700 i += (*mb_ptr2len)(hotkeys + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 }
3702 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 if (hotkeys[i] == c)
3704 break;
3705 ++retval;
3706 }
3707 if (hotkeys[i])
3708 break;
3709 /* No hotkey match, so keep waiting */
3710 continue;
3711 }
3712 break;
3713 }
3714
3715 vim_free(hotkeys);
3716 }
3717
3718 State = oldState;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 --no_wait_return;
3721 msg_end_prompt();
3722
3723 return retval;
3724}
3725
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726/*
3727 * Copy one character from "*from" to "*to", taking care of multi-byte
3728 * characters. Return the length of the character in bytes.
3729 */
3730 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003731copy_char(
3732 char_u *from,
3733 char_u *to,
3734 int lowercase) /* make character lower case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736 int len;
3737 int c;
3738
3739 if (has_mbyte)
3740 {
3741 if (lowercase)
3742 {
3743 c = MB_TOLOWER((*mb_ptr2char)(from));
3744 return (*mb_char2bytes)(c, to);
3745 }
3746 else
3747 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003748 len = (*mb_ptr2len)(from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749 mch_memmove(to, from, (size_t)len);
3750 return len;
3751 }
3752 }
3753 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 {
3755 if (lowercase)
3756 *to = (char_u)TOLOWER_LOC(*from);
3757 else
3758 *to = *from;
3759 return 1;
3760 }
3761}
3762
3763/*
3764 * Format the dialog string, and display it at the bottom of
3765 * the screen. Return a string of hotkey chars (if defined) for
3766 * each 'button'. If a button has no hotkey defined, the first character of
3767 * the button is used.
3768 * The hotkeys can be multi-byte characters, but without combining chars.
3769 *
3770 * Returns an allocated string with hotkeys, or NULL for error.
3771 */
3772 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003773msg_show_console_dialog(
3774 char_u *message,
3775 char_u *buttons,
3776 int dfltbutton)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777{
3778 int len = 0;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003779#define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 int lenhotkey = HOTK_LEN; /* count first button */
3781 char_u *hotk = NULL;
3782 char_u *msgp = NULL;
3783 char_u *hotkp = NULL;
3784 char_u *r;
3785 int copy;
3786#define HAS_HOTKEY_LEN 30
3787 char_u has_hotkey[HAS_HOTKEY_LEN];
3788 int first_hotkey = FALSE; /* first char of button is hotkey */
3789 int idx;
3790
3791 has_hotkey[0] = FALSE;
3792
3793 /*
3794 * First loop: compute the size of memory to allocate.
3795 * Second loop: copy to the allocated memory.
3796 */
3797 for (copy = 0; copy <= 1; ++copy)
3798 {
3799 r = buttons;
3800 idx = 0;
3801 while (*r)
3802 {
3803 if (*r == DLG_BUTTON_SEP)
3804 {
3805 if (copy)
3806 {
3807 *msgp++ = ',';
3808 *msgp++ = ' '; /* '\n' -> ', ' */
3809
3810 /* advance to next hotkey and set default hotkey */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 if (has_mbyte)
Bram Moolenaar6a516062007-07-05 08:11:42 +00003812 hotkp += STRLEN(hotkp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 ++hotkp;
Bram Moolenaar6a516062007-07-05 08:11:42 +00003815 hotkp[copy_char(r + 1, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 if (dfltbutton)
3817 --dfltbutton;
3818
3819 /* If no hotkey is specified first char is used. */
3820 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx])
3821 first_hotkey = TRUE;
3822 }
3823 else
3824 {
3825 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */
3826 lenhotkey += HOTK_LEN; /* each button needs a hotkey */
3827 if (idx < HAS_HOTKEY_LEN - 1)
3828 has_hotkey[++idx] = FALSE;
3829 }
3830 }
3831 else if (*r == DLG_HOTKEY_CHAR || first_hotkey)
3832 {
3833 if (*r == DLG_HOTKEY_CHAR)
3834 ++r;
3835 first_hotkey = FALSE;
3836 if (copy)
3837 {
3838 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */
3839 *msgp++ = *r;
3840 else
3841 {
3842 /* '&a' -> '[a]' */
3843 *msgp++ = (dfltbutton == 1) ? '[' : '(';
3844 msgp += copy_char(r, msgp, FALSE);
3845 *msgp++ = (dfltbutton == 1) ? ']' : ')';
3846
3847 /* redefine hotkey */
Bram Moolenaar6a516062007-07-05 08:11:42 +00003848 hotkp[copy_char(r, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 }
3850 }
3851 else
3852 {
3853 ++len; /* '&a' -> '[a]' */
3854 if (idx < HAS_HOTKEY_LEN - 1)
3855 has_hotkey[idx] = TRUE;
3856 }
3857 }
3858 else
3859 {
3860 /* everything else copy literally */
3861 if (copy)
3862 msgp += copy_char(r, msgp, FALSE);
3863 }
3864
3865 /* advance to the next character */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003866 MB_PTR_ADV(r);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 }
3868
3869 if (copy)
3870 {
3871 *msgp++ = ':';
3872 *msgp++ = ' ';
3873 *msgp = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 }
3875 else
3876 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003877 len += (int)(STRLEN(message)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003878 + 2 /* for the NL's */
3879 + STRLEN(buttons)
3880 + 3); /* for the ": " and NUL */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003881 lenhotkey++; /* for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882
3883 /* If no hotkey is specified first char is used. */
3884 if (!has_hotkey[0])
3885 {
3886 first_hotkey = TRUE;
3887 len += 2; /* "x" -> "[x]" */
3888 }
3889
3890 /*
3891 * Now allocate and load the strings
3892 */
3893 vim_free(confirm_msg);
3894 confirm_msg = alloc(len);
3895 if (confirm_msg == NULL)
3896 return NULL;
3897 *confirm_msg = NUL;
3898 hotk = alloc(lenhotkey);
3899 if (hotk == NULL)
3900 return NULL;
3901
3902 *confirm_msg = '\n';
3903 STRCPY(confirm_msg + 1, message);
3904
3905 msgp = confirm_msg + 1 + STRLEN(message);
3906 hotkp = hotk;
3907
Bram Moolenaar6a516062007-07-05 08:11:42 +00003908 /* Define first default hotkey. Keep the hotkey string NUL
3909 * terminated to avoid reading past the end. */
3910 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911
3912 /* Remember where the choices start, displaying starts here when
3913 * "hotkp" typed at the more prompt. */
3914 confirm_msg_tail = msgp;
3915 *msgp++ = '\n';
3916 }
3917 }
3918
3919 display_confirm_msg();
3920 return hotk;
3921}
3922
3923/*
3924 * Display the ":confirm" message. Also called when screen resized.
3925 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003926 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003927display_confirm_msg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928{
3929 /* avoid that 'q' at the more prompt truncates the message here */
3930 ++confirm_msg_used;
3931 if (confirm_msg != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003932 msg_puts_attr((char *)confirm_msg, HL_ATTR(HLF_M));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 --confirm_msg_used;
3934}
3935
3936#endif /* FEAT_CON_DIALOG */
3937
3938#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
3939
3940 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003941vim_dialog_yesno(
3942 int type,
3943 char_u *title,
3944 char_u *message,
3945 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946{
3947 if (do_dialog(type,
3948 title == NULL ? (char_u *)_("Question") : title,
3949 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003950 (char_u *)_("&Yes\n&No"), dflt, NULL, FALSE) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 return VIM_YES;
3952 return VIM_NO;
3953}
3954
3955 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003956vim_dialog_yesnocancel(
3957 int type,
3958 char_u *title,
3959 char_u *message,
3960 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961{
3962 switch (do_dialog(type,
3963 title == NULL ? (char_u *)_("Question") : title,
3964 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003965 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 {
3967 case 1: return VIM_YES;
3968 case 2: return VIM_NO;
3969 }
3970 return VIM_CANCEL;
3971}
3972
3973 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003974vim_dialog_yesnoallcancel(
3975 int type,
3976 char_u *title,
3977 char_u *message,
3978 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979{
3980 switch (do_dialog(type,
3981 title == NULL ? (char_u *)"Question" : title,
3982 message,
3983 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003984 dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 {
3986 case 1: return VIM_YES;
3987 case 2: return VIM_NO;
3988 case 3: return VIM_ALL;
3989 case 4: return VIM_DISCARDALL;
3990 }
3991 return VIM_CANCEL;
3992}
3993
3994#endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */
3995
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003996#if defined(FEAT_EVAL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003997static char *e_printf = N_("E766: Insufficient arguments for printf()");
3998
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003999/*
4000 * Get number argument from "idxp" entry in "tvs". First entry is 1.
4001 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004002 static varnumber_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004003tv_nr(typval_T *tvs, int *idxp)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004004{
4005 int idx = *idxp - 1;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004006 varnumber_T n = 0;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004007 int err = FALSE;
4008
4009 if (tvs[idx].v_type == VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004010 emsg(_(e_printf));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004011 else
4012 {
4013 ++*idxp;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01004014 n = tv_get_number_chk(&tvs[idx], &err);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004015 if (err)
4016 n = 0;
4017 }
4018 return n;
4019}
4020
4021/*
4022 * Get string argument from "idxp" entry in "tvs". First entry is 1.
Bram Moolenaard155d7a2018-12-21 16:04:21 +01004023 * If "tofree" is NULL tv_get_string_chk() is used. Some types (e.g. List)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004024 * are not converted to a string.
4025 * If "tofree" is not NULL echo_string() is used. All types are converted to
4026 * a string with the same format as ":echo". The caller must free "*tofree".
Bram Moolenaar1e015462005-09-25 22:16:38 +00004027 * Returns NULL for an error.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004028 */
4029 static char *
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004030tv_str(typval_T *tvs, int *idxp, char_u **tofree)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004031{
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004032 int idx = *idxp - 1;
4033 char *s = NULL;
4034 static char_u numbuf[NUMBUFLEN];
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004035
4036 if (tvs[idx].v_type == VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004037 emsg(_(e_printf));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004038 else
4039 {
4040 ++*idxp;
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004041 if (tofree != NULL)
4042 s = (char *)echo_string(&tvs[idx], tofree, numbuf, get_copyID());
4043 else
Bram Moolenaard155d7a2018-12-21 16:04:21 +01004044 s = (char *)tv_get_string_chk(&tvs[idx]);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004045 }
4046 return s;
4047}
Bram Moolenaara7241f52008-06-24 20:39:31 +00004048
4049# ifdef FEAT_FLOAT
4050/*
4051 * Get float argument from "idxp" entry in "tvs". First entry is 1.
4052 */
4053 static double
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004054tv_float(typval_T *tvs, int *idxp)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004055{
4056 int idx = *idxp - 1;
4057 double f = 0;
4058
4059 if (tvs[idx].v_type == VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004060 emsg(_(e_printf));
Bram Moolenaara7241f52008-06-24 20:39:31 +00004061 else
4062 {
4063 ++*idxp;
4064 if (tvs[idx].v_type == VAR_FLOAT)
4065 f = tvs[idx].vval.v_float;
Bram Moolenaarc4a87012008-06-28 14:10:11 +00004066 else if (tvs[idx].v_type == VAR_NUMBER)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004067 f = (double)tvs[idx].vval.v_number;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004068 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004069 emsg(_("E807: Expected Float argument for printf()"));
Bram Moolenaara7241f52008-06-24 20:39:31 +00004070 }
4071 return f;
4072}
4073# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004074#endif
4075
Bram Moolenaar7f7bd292016-08-28 21:21:31 +02004076#ifdef FEAT_FLOAT
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004077/*
Bram Moolenaare9997822016-08-28 16:03:38 +02004078 * Return the representation of infinity for printf() function:
4079 * "-inf", "inf", "+inf", " inf", "-INF", "INF", "+INF" or " INF".
4080 */
4081 static const char *
4082infinity_str(int positive,
4083 char fmt_spec,
4084 int force_sign,
4085 int space_for_positive)
4086{
4087 static const char *table[] =
4088 {
4089 "-inf", "inf", "+inf", " inf",
4090 "-INF", "INF", "+INF", " INF"
4091 };
4092 int idx = positive * (1 + force_sign + force_sign * space_for_positive);
4093
4094 if (ASCII_ISUPPER(fmt_spec))
4095 idx += 4;
4096 return table[idx];
4097}
Bram Moolenaar7f7bd292016-08-28 21:21:31 +02004098#endif
Bram Moolenaare9997822016-08-28 16:03:38 +02004099
4100/*
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004101 * This code was included to provide a portable vsnprintf() and snprintf().
Bram Moolenaara2031822006-03-07 22:29:51 +00004102 * Some systems may provide their own, but we always use this one for
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004103 * consistency.
4104 *
4105 * This code is based on snprintf.c - a portable implementation of snprintf
4106 * by Mark Martinec <mark.martinec@ijs.si>, Version 2.2, 2000-10-06.
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00004107 * Included with permission. It was heavily modified to fit in Vim.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004108 * The original code, including useful comments, can be found here:
4109 * http://www.ijs.si/software/snprintf/
4110 *
4111 * This snprintf() only supports the following conversion specifiers:
4112 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
4113 * with flags: '-', '+', ' ', '0' and '#'.
4114 * An asterisk is supported for field width as well as precision.
4115 *
Bram Moolenaar04186092016-08-29 21:55:35 +02004116 * Limited support for floating point was added: 'f', 'F', 'e', 'E', 'g', 'G'.
Bram Moolenaara7241f52008-06-24 20:39:31 +00004117 *
Bram Moolenaare9997822016-08-28 16:03:38 +02004118 * Length modifiers 'h' (short int) and 'l' (long int) and 'll' (long long int)
4119 * are supported.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004120 *
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004121 * The locale is not used, the string is used as a byte string. This is only
4122 * relevant for double-byte encodings where the second byte may be '%'.
4123 *
Bram Moolenaara2031822006-03-07 22:29:51 +00004124 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL
4125 * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004126 *
4127 * The return value is the number of characters which would be generated
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004128 * for the given input, excluding the trailing NUL. If this value
Bram Moolenaara2031822006-03-07 22:29:51 +00004129 * is greater or equal to "str_m", not all characters from the result
4130 * have been stored in str, output bytes beyond the ("str_m"-1) -th character
4131 * are discarded. If "str_m" is greater than zero it is guaranteed
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004132 * the resulting string will be NUL-terminated.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004133 */
4134
4135/*
4136 * When va_list is not supported we only define vim_snprintf().
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004137 *
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004138 * vim_vsnprintf_typval() can be invoked with either "va_list" or a list of
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004139 * "typval_T". When the latter is not used it must be NULL.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004140 */
4141
4142/* When generating prototypes all of this is skipped, cproto doesn't
4143 * understand this. */
4144#ifndef PROTO
Bram Moolenaara800b422010-06-27 01:15:55 +02004145
Bram Moolenaara800b422010-06-27 01:15:55 +02004146/* Like vim_vsnprintf() but append to the string. */
4147 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004148vim_snprintf_add(char *str, size_t str_m, const char *fmt, ...)
Bram Moolenaara800b422010-06-27 01:15:55 +02004149{
4150 va_list ap;
4151 int str_l;
4152 size_t len = STRLEN(str);
4153 size_t space;
4154
4155 if (str_m <= len)
4156 space = 0;
4157 else
4158 space = str_m - len;
4159 va_start(ap, fmt);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004160 str_l = vim_vsnprintf(str + len, space, fmt, ap);
Bram Moolenaara800b422010-06-27 01:15:55 +02004161 va_end(ap);
4162 return str_l;
4163}
Bram Moolenaara800b422010-06-27 01:15:55 +02004164
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004165 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004166vim_snprintf(char *str, size_t str_m, const char *fmt, ...)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004167{
4168 va_list ap;
4169 int str_l;
4170
4171 va_start(ap, fmt);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004172 str_l = vim_vsnprintf(str, str_m, fmt, ap);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004173 va_end(ap);
4174 return str_l;
4175}
4176
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004177 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004178vim_vsnprintf(
4179 char *str,
4180 size_t str_m,
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004181 const char *fmt,
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004182 va_list ap)
4183{
4184 return vim_vsnprintf_typval(str, str_m, fmt, ap, NULL);
4185}
4186
4187 int
4188vim_vsnprintf_typval(
4189 char *str,
4190 size_t str_m,
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004191 const char *fmt,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004192 va_list ap,
4193 typval_T *tvs)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004194{
4195 size_t str_l = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004196 const char *p = fmt;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004197 int arg_idx = 1;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004198
4199 if (p == NULL)
4200 p = "";
4201 while (*p != NUL)
4202 {
4203 if (*p != '%')
4204 {
4205 char *q = strchr(p + 1, '%');
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004206 size_t n = (q == NULL) ? STRLEN(p) : (size_t)(q - p);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004207
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004208 /* Copy up to the next '%' or NUL without any changes. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004209 if (str_l < str_m)
4210 {
4211 size_t avail = str_m - str_l;
4212
4213 mch_memmove(str + str_l, p, n > avail ? avail : n);
4214 }
4215 p += n;
4216 str_l += n;
4217 }
4218 else
4219 {
4220 size_t min_field_width = 0, precision = 0;
4221 int zero_padding = 0, precision_specified = 0, justify_left = 0;
4222 int alternate_form = 0, force_sign = 0;
4223
4224 /* If both the ' ' and '+' flags appear, the ' ' flag should be
4225 * ignored. */
4226 int space_for_positive = 1;
4227
4228 /* allowed values: \0, h, l, L */
4229 char length_modifier = '\0';
4230
4231 /* temporary buffer for simple numeric->string conversion */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004232# if defined(FEAT_FLOAT)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004233# define TMP_LEN 350 /* On my system 1e308 is the biggest number possible.
Bram Moolenaara7241f52008-06-24 20:39:31 +00004234 * That sounds reasonable to use as the maximum
4235 * printable. */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004236# elif defined(FEAT_NUM64)
4237# define TMP_LEN 66
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004238# else
Bram Moolenaar91984b92016-08-16 21:58:41 +02004239# define TMP_LEN 34
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004240# endif
Bram Moolenaara7241f52008-06-24 20:39:31 +00004241 char tmp[TMP_LEN];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004242
4243 /* string address in case of string argument */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004244 const char *str_arg = NULL;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004245
4246 /* natural field width of arg without padding and sign */
4247 size_t str_arg_l;
4248
4249 /* unsigned char argument value - only defined for c conversion.
4250 * N.B. standard explicitly states the char argument for the c
4251 * conversion is unsigned */
4252 unsigned char uchar_arg;
4253
4254 /* number of zeros to be inserted for numeric conversions as
4255 * required by the precision or minimal field width */
4256 size_t number_of_zeros_to_pad = 0;
4257
4258 /* index into tmp where zero padding is to be inserted */
4259 size_t zero_padding_insertion_ind = 0;
4260
4261 /* current conversion specifier character */
4262 char fmt_spec = '\0';
4263
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004264 /* buffer for 's' and 'S' specs */
4265 char_u *tofree = NULL;
4266
4267
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004268 p++; /* skip '%' */
4269
4270 /* parse flags */
4271 while (*p == '0' || *p == '-' || *p == '+' || *p == ' '
4272 || *p == '#' || *p == '\'')
4273 {
4274 switch (*p)
4275 {
4276 case '0': zero_padding = 1; break;
4277 case '-': justify_left = 1; break;
4278 case '+': force_sign = 1; space_for_positive = 0; break;
4279 case ' ': force_sign = 1;
4280 /* If both the ' ' and '+' flags appear, the ' '
4281 * flag should be ignored */
4282 break;
4283 case '#': alternate_form = 1; break;
4284 case '\'': break;
4285 }
4286 p++;
4287 }
4288 /* If the '0' and '-' flags both appear, the '0' flag should be
4289 * ignored. */
4290
4291 /* parse field width */
4292 if (*p == '*')
4293 {
4294 int j;
4295
4296 p++;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004297 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004298# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004299 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004300# endif
4301 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004302 if (j >= 0)
4303 min_field_width = j;
4304 else
4305 {
4306 min_field_width = -j;
4307 justify_left = 1;
4308 }
4309 }
4310 else if (VIM_ISDIGIT((int)(*p)))
4311 {
4312 /* size_t could be wider than unsigned int; make sure we treat
4313 * argument like common implementations do */
4314 unsigned int uj = *p++ - '0';
4315
4316 while (VIM_ISDIGIT((int)(*p)))
4317 uj = 10 * uj + (unsigned int)(*p++ - '0');
4318 min_field_width = uj;
4319 }
4320
4321 /* parse precision */
4322 if (*p == '.')
4323 {
4324 p++;
4325 precision_specified = 1;
4326 if (*p == '*')
4327 {
4328 int j;
4329
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004330 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004331# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004332 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004333# endif
4334 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004335 p++;
4336 if (j >= 0)
4337 precision = j;
4338 else
4339 {
4340 precision_specified = 0;
4341 precision = 0;
4342 }
4343 }
4344 else if (VIM_ISDIGIT((int)(*p)))
4345 {
4346 /* size_t could be wider than unsigned int; make sure we
4347 * treat argument like common implementations do */
4348 unsigned int uj = *p++ - '0';
4349
4350 while (VIM_ISDIGIT((int)(*p)))
4351 uj = 10 * uj + (unsigned int)(*p++ - '0');
4352 precision = uj;
4353 }
4354 }
4355
4356 /* parse 'h', 'l' and 'll' length modifiers */
4357 if (*p == 'h' || *p == 'l')
4358 {
4359 length_modifier = *p;
4360 p++;
4361 if (length_modifier == 'l' && *p == 'l')
4362 {
4363 /* double l = long long */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004364# ifdef FEAT_NUM64
4365 length_modifier = 'L';
4366# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004367 length_modifier = 'l'; /* treat it as a single 'l' */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004368# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004369 p++;
4370 }
4371 }
4372 fmt_spec = *p;
4373
4374 /* common synonyms: */
4375 switch (fmt_spec)
4376 {
4377 case 'i': fmt_spec = 'd'; break;
4378 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break;
4379 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break;
4380 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break;
4381 default: break;
4382 }
4383
Bram Moolenaar38ee6b02016-07-12 21:11:33 +02004384# if defined(FEAT_EVAL) && defined(FEAT_NUM64)
4385 switch (fmt_spec)
4386 {
4387 case 'd': case 'u': case 'o': case 'x': case 'X':
4388 if (tvs != NULL && length_modifier == '\0')
4389 length_modifier = 'L';
4390 }
4391# endif
4392
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004393 /* get parameter value, do initial processing */
4394 switch (fmt_spec)
4395 {
4396 /* '%' and 'c' behave similar to 's' regarding flags and field
4397 * widths */
4398 case '%':
4399 case 'c':
4400 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004401 case 'S':
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004402 str_arg_l = 1;
4403 switch (fmt_spec)
4404 {
4405 case '%':
4406 str_arg = p;
4407 break;
4408
4409 case 'c':
4410 {
4411 int j;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004412
4413 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004414# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004415 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004416# endif
4417 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004418 /* standard demands unsigned char */
4419 uchar_arg = (unsigned char)j;
4420 str_arg = (char *)&uchar_arg;
4421 break;
4422 }
4423
4424 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004425 case 'S':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004426 str_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004427# if defined(FEAT_EVAL)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004428 tvs != NULL ? tv_str(tvs, &arg_idx, &tofree) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004429# endif
4430 va_arg(ap, char *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004431 if (str_arg == NULL)
4432 {
4433 str_arg = "[NULL]";
4434 str_arg_l = 6;
4435 }
4436 /* make sure not to address string beyond the specified
4437 * precision !!! */
4438 else if (!precision_specified)
4439 str_arg_l = strlen(str_arg);
4440 /* truncate string if necessary as requested by precision */
4441 else if (precision == 0)
4442 str_arg_l = 0;
4443 else
4444 {
Bram Moolenaar223b4312006-05-13 11:09:22 +00004445 /* Don't put the #if inside memchr(), it can be a
4446 * macro. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004447 /* memchr on HP does not like n > 2^31 !!! */
4448 char *q = memchr(str_arg, '\0',
Bram Moolenaar223b4312006-05-13 11:09:22 +00004449 precision <= (size_t)0x7fffffffL ? precision
4450 : (size_t)0x7fffffffL);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004451 str_arg_l = (q == NULL) ? precision
4452 : (size_t)(q - str_arg);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004453 }
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004454 if (fmt_spec == 'S')
4455 {
4456 if (min_field_width != 0)
4457 min_field_width += STRLEN(str_arg)
4458 - mb_string2cells((char_u *)str_arg, -1);
4459 if (precision)
4460 {
Bram Moolenaarce0fac22019-09-27 13:32:06 +02004461 char_u *p1;
4462 size_t i = 0;
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004463
Bram Moolenaarce0fac22019-09-27 13:32:06 +02004464 for (p1 = (char_u *)str_arg; *p1;
4465 p1 += mb_ptr2len(p1))
4466 {
4467 i += (size_t)mb_ptr2cells(p1);
4468 if (i > precision)
4469 break;
4470 }
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004471 str_arg_l = precision = p1 - (char_u *)str_arg;
4472 }
4473 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004474 break;
4475
4476 default:
4477 break;
4478 }
4479 break;
4480
Bram Moolenaar91984b92016-08-16 21:58:41 +02004481 case 'd': case 'u':
4482 case 'b': case 'B':
4483 case 'o':
4484 case 'x': case 'X':
4485 case 'p':
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004486 {
Bram Moolenaar91984b92016-08-16 21:58:41 +02004487 /* NOTE: the u, b, o, x, X and p conversion specifiers
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004488 * imply the value is unsigned; d implies a signed
4489 * value */
4490
4491 /* 0 if numeric argument is zero (or if pointer is
4492 * NULL for 'p'), +1 if greater than zero (or nonzero
4493 * for unsigned arguments), -1 if negative (unsigned
4494 * argument is never negative) */
4495 int arg_sign = 0;
4496
4497 /* only defined for length modifier h, or for no
4498 * length modifiers */
4499 int int_arg = 0;
4500 unsigned int uint_arg = 0;
4501
4502 /* only defined for length modifier l */
4503 long int long_arg = 0;
4504 unsigned long int ulong_arg = 0;
4505
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004506# ifdef FEAT_NUM64
4507 /* only defined for length modifier ll */
4508 varnumber_T llong_arg = 0;
4509 uvarnumber_T ullong_arg = 0;
4510# endif
4511
Bram Moolenaare9997822016-08-28 16:03:38 +02004512 /* only defined for b conversion */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004513 uvarnumber_T bin_arg = 0;
4514
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004515 /* pointer argument value -only defined for p
4516 * conversion */
4517 void *ptr_arg = NULL;
4518
4519 if (fmt_spec == 'p')
4520 {
4521 length_modifier = '\0';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004522 ptr_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004523# if defined(FEAT_EVAL)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004524 tvs != NULL ? (void *)tv_str(tvs, &arg_idx,
4525 NULL) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004526# endif
4527 va_arg(ap, void *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004528 if (ptr_arg != NULL)
4529 arg_sign = 1;
4530 }
Bram Moolenaar91984b92016-08-16 21:58:41 +02004531 else if (fmt_spec == 'b' || fmt_spec == 'B')
4532 {
4533 bin_arg =
4534# if defined(FEAT_EVAL)
4535 tvs != NULL ?
4536 (uvarnumber_T)tv_nr(tvs, &arg_idx) :
4537# endif
4538 va_arg(ap, uvarnumber_T);
4539 if (bin_arg != 0)
4540 arg_sign = 1;
4541 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004542 else if (fmt_spec == 'd')
4543 {
4544 /* signed */
4545 switch (length_modifier)
4546 {
4547 case '\0':
4548 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004549 /* char and short arguments are passed as int. */
4550 int_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004551# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004552 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004553# endif
4554 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004555 if (int_arg > 0)
4556 arg_sign = 1;
4557 else if (int_arg < 0)
4558 arg_sign = -1;
4559 break;
4560 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004561 long_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004562# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004563 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004564# endif
4565 va_arg(ap, long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004566 if (long_arg > 0)
4567 arg_sign = 1;
4568 else if (long_arg < 0)
4569 arg_sign = -1;
4570 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004571# ifdef FEAT_NUM64
4572 case 'L':
4573 llong_arg =
4574# if defined(FEAT_EVAL)
4575 tvs != NULL ? tv_nr(tvs, &arg_idx) :
4576# endif
4577 va_arg(ap, varnumber_T);
4578 if (llong_arg > 0)
4579 arg_sign = 1;
4580 else if (llong_arg < 0)
4581 arg_sign = -1;
4582 break;
4583# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004584 }
4585 }
4586 else
4587 {
4588 /* unsigned */
4589 switch (length_modifier)
4590 {
4591 case '\0':
4592 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004593 uint_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004594# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004595 tvs != NULL ? (unsigned)
4596 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004597# endif
4598 va_arg(ap, unsigned int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004599 if (uint_arg != 0)
4600 arg_sign = 1;
4601 break;
4602 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004603 ulong_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004604# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004605 tvs != NULL ? (unsigned long)
4606 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004607# endif
4608 va_arg(ap, unsigned long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004609 if (ulong_arg != 0)
4610 arg_sign = 1;
4611 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004612# ifdef FEAT_NUM64
4613 case 'L':
4614 ullong_arg =
4615# if defined(FEAT_EVAL)
4616 tvs != NULL ? (uvarnumber_T)
4617 tv_nr(tvs, &arg_idx) :
4618# endif
4619 va_arg(ap, uvarnumber_T);
4620 if (ullong_arg != 0)
4621 arg_sign = 1;
4622 break;
4623# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004624 }
4625 }
4626
4627 str_arg = tmp;
4628 str_arg_l = 0;
4629
4630 /* NOTE:
4631 * For d, i, u, o, x, and X conversions, if precision is
4632 * specified, the '0' flag should be ignored. This is so
4633 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux,
4634 * FreeBSD, NetBSD; but not with Perl.
4635 */
4636 if (precision_specified)
4637 zero_padding = 0;
4638 if (fmt_spec == 'd')
4639 {
4640 if (force_sign && arg_sign >= 0)
4641 tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
4642 /* leave negative numbers for sprintf to handle, to
4643 * avoid handling tricky cases like (short int)-32768 */
4644 }
4645 else if (alternate_form)
4646 {
4647 if (arg_sign != 0
Bram Moolenaar91984b92016-08-16 21:58:41 +02004648 && (fmt_spec == 'b' || fmt_spec == 'B'
4649 || fmt_spec == 'x' || fmt_spec == 'X') )
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004650 {
4651 tmp[str_arg_l++] = '0';
4652 tmp[str_arg_l++] = fmt_spec;
4653 }
4654 /* alternate form should have no effect for p
4655 * conversion, but ... */
4656 }
4657
4658 zero_padding_insertion_ind = str_arg_l;
4659 if (!precision_specified)
4660 precision = 1; /* default precision is 1 */
4661 if (precision == 0 && arg_sign == 0)
4662 {
4663 /* When zero value is formatted with an explicit
4664 * precision 0, the resulting formatted string is
Bram Moolenaar91984b92016-08-16 21:58:41 +02004665 * empty (d, i, u, b, B, o, x, X, p). */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004666 }
4667 else
4668 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004669 char f[6];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004670 int f_l = 0;
4671
4672 /* construct a simple format string for sprintf */
4673 f[f_l++] = '%';
4674 if (!length_modifier)
4675 ;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004676 else if (length_modifier == 'L')
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004677 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004678# ifdef FEAT_NUM64
Bram Moolenaar4f974752019-02-17 17:44:42 +01004679# ifdef MSWIN
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004680 f[f_l++] = 'I';
4681 f[f_l++] = '6';
4682 f[f_l++] = '4';
4683# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004684 f[f_l++] = 'l';
4685 f[f_l++] = 'l';
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004686# endif
4687# else
4688 f[f_l++] = 'l';
4689# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004690 }
4691 else
4692 f[f_l++] = length_modifier;
4693 f[f_l++] = fmt_spec;
4694 f[f_l++] = '\0';
4695
4696 if (fmt_spec == 'p')
4697 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg);
Bram Moolenaar91984b92016-08-16 21:58:41 +02004698 else if (fmt_spec == 'b' || fmt_spec == 'B')
4699 {
4700 char b[8 * sizeof(uvarnumber_T)];
4701 size_t b_l = 0;
4702 uvarnumber_T bn = bin_arg;
4703
4704 do
4705 {
4706 b[sizeof(b) - ++b_l] = '0' + (bn & 0x1);
4707 bn >>= 1;
4708 }
4709 while (bn != 0);
4710
4711 memcpy(tmp + str_arg_l, b + sizeof(b) - b_l, b_l);
4712 str_arg_l += b_l;
4713 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004714 else if (fmt_spec == 'd')
4715 {
4716 /* signed */
4717 switch (length_modifier)
4718 {
4719 case '\0':
4720 case 'h': str_arg_l += sprintf(
4721 tmp + str_arg_l, f, int_arg);
4722 break;
4723 case 'l': str_arg_l += sprintf(
4724 tmp + str_arg_l, f, long_arg);
4725 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004726# ifdef FEAT_NUM64
4727 case 'L': str_arg_l += sprintf(
4728 tmp + str_arg_l, f, llong_arg);
4729 break;
4730# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004731 }
4732 }
4733 else
4734 {
4735 /* unsigned */
4736 switch (length_modifier)
4737 {
4738 case '\0':
4739 case 'h': str_arg_l += sprintf(
4740 tmp + str_arg_l, f, uint_arg);
4741 break;
4742 case 'l': str_arg_l += sprintf(
4743 tmp + str_arg_l, f, ulong_arg);
4744 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004745# ifdef FEAT_NUM64
4746 case 'L': str_arg_l += sprintf(
4747 tmp + str_arg_l, f, ullong_arg);
4748 break;
4749# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004750 }
4751 }
4752
4753 /* include the optional minus sign and possible
4754 * "0x" in the region before the zero padding
4755 * insertion point */
4756 if (zero_padding_insertion_ind < str_arg_l
4757 && tmp[zero_padding_insertion_ind] == '-')
4758 zero_padding_insertion_ind++;
4759 if (zero_padding_insertion_ind + 1 < str_arg_l
4760 && tmp[zero_padding_insertion_ind] == '0'
4761 && (tmp[zero_padding_insertion_ind + 1] == 'x'
4762 || tmp[zero_padding_insertion_ind + 1] == 'X'))
4763 zero_padding_insertion_ind += 2;
4764 }
4765
4766 {
4767 size_t num_of_digits = str_arg_l
4768 - zero_padding_insertion_ind;
4769
4770 if (alternate_form && fmt_spec == 'o'
4771 /* unless zero is already the first
4772 * character */
4773 && !(zero_padding_insertion_ind < str_arg_l
4774 && tmp[zero_padding_insertion_ind] == '0'))
4775 {
4776 /* assure leading zero for alternate-form
4777 * octal numbers */
4778 if (!precision_specified
4779 || precision < num_of_digits + 1)
4780 {
4781 /* precision is increased to force the
4782 * first character to be zero, except if a
4783 * zero value is formatted with an
4784 * explicit precision of zero */
4785 precision = num_of_digits + 1;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004786 }
4787 }
4788 /* zero padding to specified precision? */
4789 if (num_of_digits < precision)
4790 number_of_zeros_to_pad = precision - num_of_digits;
4791 }
4792 /* zero padding to specified minimal field width? */
4793 if (!justify_left && zero_padding)
4794 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004795 int n = (int)(min_field_width - (str_arg_l
4796 + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004797 if (n > 0)
4798 number_of_zeros_to_pad += n;
4799 }
4800 break;
4801 }
4802
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004803# ifdef FEAT_FLOAT
Bram Moolenaara7241f52008-06-24 20:39:31 +00004804 case 'f':
Bram Moolenaar04186092016-08-29 21:55:35 +02004805 case 'F':
Bram Moolenaara7241f52008-06-24 20:39:31 +00004806 case 'e':
4807 case 'E':
4808 case 'g':
4809 case 'G':
4810 {
4811 /* Floating point. */
4812 double f;
4813 double abs_f;
4814 char format[40];
4815 int l;
4816 int remove_trailing_zeroes = FALSE;
4817
4818 f =
Bram Moolenaara7241f52008-06-24 20:39:31 +00004819# if defined(FEAT_EVAL)
4820 tvs != NULL ? tv_float(tvs, &arg_idx) :
4821# endif
4822 va_arg(ap, double);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004823 abs_f = f < 0 ? -f : f;
4824
4825 if (fmt_spec == 'g' || fmt_spec == 'G')
4826 {
4827 /* Would be nice to use %g directly, but it prints
4828 * "1.0" as "1", we don't want that. */
4829 if ((abs_f >= 0.001 && abs_f < 10000000.0)
4830 || abs_f == 0.0)
Bram Moolenaar04186092016-08-29 21:55:35 +02004831 fmt_spec = ASCII_ISUPPER(fmt_spec) ? 'F' : 'f';
Bram Moolenaara7241f52008-06-24 20:39:31 +00004832 else
4833 fmt_spec = fmt_spec == 'g' ? 'e' : 'E';
4834 remove_trailing_zeroes = TRUE;
4835 }
4836
Bram Moolenaar04186092016-08-29 21:55:35 +02004837 if ((fmt_spec == 'f' || fmt_spec == 'F') &&
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004838# ifdef VAX
Bram Moolenaarc9372132009-01-13 15:38:37 +00004839 abs_f > 1.0e38
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004840# else
Bram Moolenaarc9372132009-01-13 15:38:37 +00004841 abs_f > 1.0e307
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004842# endif
Bram Moolenaarc9372132009-01-13 15:38:37 +00004843 )
Bram Moolenaara7241f52008-06-24 20:39:31 +00004844 {
4845 /* Avoid a buffer overflow */
Bram Moolenaare9997822016-08-28 16:03:38 +02004846 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec,
4847 force_sign, space_for_positive));
4848 str_arg_l = STRLEN(tmp);
4849 zero_padding = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004850 }
4851 else
4852 {
Bram Moolenaare9997822016-08-28 16:03:38 +02004853 if (isnan(f))
4854 {
4855 /* Not a number: nan or NAN */
4856 STRCPY(tmp, ASCII_ISUPPER(fmt_spec) ? "NAN"
4857 : "nan");
4858 str_arg_l = 3;
4859 zero_padding = 0;
4860 }
4861 else if (isinf(f))
4862 {
4863 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec,
4864 force_sign, space_for_positive));
4865 str_arg_l = STRLEN(tmp);
4866 zero_padding = 0;
4867 }
4868 else
Bram Moolenaar191f18b2018-02-04 16:38:47 +01004869 {
Bram Moolenaare9997822016-08-28 16:03:38 +02004870 /* Regular float number */
Bram Moolenaar04186092016-08-29 21:55:35 +02004871 format[0] = '%';
4872 l = 1;
4873 if (force_sign)
4874 format[l++] = space_for_positive ? ' ' : '+';
4875 if (precision_specified)
4876 {
4877 size_t max_prec = TMP_LEN - 10;
4878
4879 /* Make sure we don't get more digits than we
4880 * have room for. */
4881 if ((fmt_spec == 'f' || fmt_spec == 'F')
4882 && abs_f > 1.0)
4883 max_prec -= (size_t)log10(abs_f);
4884 if (precision > max_prec)
4885 precision = max_prec;
4886 l += sprintf(format + l, ".%d", (int)precision);
4887 }
Bram Moolenaar965ed142016-08-29 22:31:24 +02004888 format[l] = fmt_spec == 'F' ? 'f' : fmt_spec;
Bram Moolenaar04186092016-08-29 21:55:35 +02004889 format[l + 1] = NUL;
4890
Bram Moolenaare9997822016-08-28 16:03:38 +02004891 str_arg_l = sprintf(tmp, format, f);
Bram Moolenaar191f18b2018-02-04 16:38:47 +01004892 }
Bram Moolenaar99922372016-08-27 15:26:35 +02004893
Bram Moolenaara7241f52008-06-24 20:39:31 +00004894 if (remove_trailing_zeroes)
4895 {
4896 int i;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004897 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004898
4899 /* Using %g or %G: remove superfluous zeroes. */
Bram Moolenaar04186092016-08-29 21:55:35 +02004900 if (fmt_spec == 'f' || fmt_spec == 'F')
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004901 tp = tmp + str_arg_l - 1;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004902 else
4903 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004904 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00004905 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004906 if (tp != NULL)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004907 {
4908 /* Remove superfluous '+' and leading
4909 * zeroes from the exponent. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004910 if (tp[1] == '+')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004911 {
4912 /* Change "1.0e+07" to "1.0e07" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004913 STRMOVE(tp + 1, tp + 2);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004914 --str_arg_l;
4915 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004916 i = (tp[1] == '-') ? 2 : 1;
4917 while (tp[i] == '0')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004918 {
4919 /* Change "1.0e07" to "1.0e7" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004920 STRMOVE(tp + i, tp + i + 1);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004921 --str_arg_l;
4922 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004923 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004924 }
4925 }
4926
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004927 if (tp != NULL && !precision_specified)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004928 /* Remove trailing zeroes, but keep the one
4929 * just after a dot. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004930 while (tp > tmp + 2 && *tp == '0'
4931 && tp[-1] != '.')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004932 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004933 STRMOVE(tp, tp + 1);
4934 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004935 --str_arg_l;
4936 }
4937 }
4938 else
4939 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004940 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004941
4942 /* Be consistent: some printf("%e") use 1.0e+12
4943 * and some 1.0e+012. Remove one zero in the last
4944 * case. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004945 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00004946 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004947 if (tp != NULL && (tp[1] == '+' || tp[1] == '-')
4948 && tp[2] == '0'
4949 && vim_isdigit(tp[3])
4950 && vim_isdigit(tp[4]))
Bram Moolenaara7241f52008-06-24 20:39:31 +00004951 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004952 STRMOVE(tp + 2, tp + 3);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004953 --str_arg_l;
4954 }
4955 }
4956 }
Bram Moolenaar04186092016-08-29 21:55:35 +02004957 if (zero_padding && min_field_width > str_arg_l
4958 && (tmp[0] == '-' || force_sign))
4959 {
4960 /* padding 0's should be inserted after the sign */
4961 number_of_zeros_to_pad = min_field_width - str_arg_l;
4962 zero_padding_insertion_ind = 1;
4963 }
Bram Moolenaara7241f52008-06-24 20:39:31 +00004964 str_arg = tmp;
4965 break;
4966 }
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004967# endif
Bram Moolenaara7241f52008-06-24 20:39:31 +00004968
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004969 default:
4970 /* unrecognized conversion specifier, keep format string
4971 * as-is */
4972 zero_padding = 0; /* turn zero padding off for non-numeric
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00004973 conversion */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004974 justify_left = 1;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004975 min_field_width = 0; /* reset flags */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004976
4977 /* discard the unrecognized conversion, just keep *
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004978 * the unrecognized conversion character */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004979 str_arg = p;
4980 str_arg_l = 0;
4981 if (*p != NUL)
4982 str_arg_l++; /* include invalid conversion specifier
4983 unchanged if not at end-of-string */
4984 break;
4985 }
4986
4987 if (*p != NUL)
4988 p++; /* step over the just processed conversion specifier */
4989
4990 /* insert padding to the left as requested by min_field_width;
4991 * this does not include the zero padding in case of numerical
4992 * conversions*/
4993 if (!justify_left)
4994 {
4995 /* left padding with blank or zero */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004996 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004997
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004998 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004999 {
5000 if (str_l < str_m)
5001 {
5002 size_t avail = str_m - str_l;
5003
5004 vim_memset(str + str_l, zero_padding ? '0' : ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005005 (size_t)pn > avail ? avail
5006 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005007 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005008 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005009 }
5010 }
5011
5012 /* zero padding as requested by the precision or by the minimal
5013 * field width for numeric conversions required? */
Bram Moolenaarea424162005-06-16 21:51:00 +00005014 if (number_of_zeros_to_pad == 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005015 {
5016 /* will not copy first part of numeric right now, *
5017 * force it to be copied later in its entirety */
5018 zero_padding_insertion_ind = 0;
5019 }
5020 else
5021 {
5022 /* insert first part of numerics (sign or '0x') before zero
5023 * padding */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005024 int zn = (int)zero_padding_insertion_ind;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005025
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005026 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005027 {
5028 if (str_l < str_m)
5029 {
5030 size_t avail = str_m - str_l;
5031
5032 mch_memmove(str + str_l, str_arg,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005033 (size_t)zn > avail ? avail
5034 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005035 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005036 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005037 }
5038
5039 /* insert zero padding as requested by the precision or min
5040 * field width */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005041 zn = (int)number_of_zeros_to_pad;
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005042 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005043 {
5044 if (str_l < str_m)
5045 {
Bram Moolenaar2f3a90a2017-08-03 14:49:29 +02005046 size_t avail = str_m - str_l;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005047
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005048 vim_memset(str + str_l, '0',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005049 (size_t)zn > avail ? avail
5050 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005051 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005052 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005053 }
5054 }
5055
5056 /* insert formatted string
5057 * (or as-is conversion specifier for unknown conversions) */
5058 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005059 int sn = (int)(str_arg_l - zero_padding_insertion_ind);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005060
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005061 if (sn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005062 {
5063 if (str_l < str_m)
5064 {
5065 size_t avail = str_m - str_l;
5066
5067 mch_memmove(str + str_l,
5068 str_arg + zero_padding_insertion_ind,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005069 (size_t)sn > avail ? avail : (size_t)sn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005070 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005071 str_l += sn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005072 }
5073 }
5074
5075 /* insert right padding */
5076 if (justify_left)
5077 {
5078 /* right blank padding to the field width */
Bram Moolenaara7241f52008-06-24 20:39:31 +00005079 int pn = (int)(min_field_width
5080 - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005081
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005082 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005083 {
5084 if (str_l < str_m)
5085 {
5086 size_t avail = str_m - str_l;
5087
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005088 vim_memset(str + str_l, ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005089 (size_t)pn > avail ? avail
5090 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005091 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005092 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005093 }
5094 }
Bram Moolenaare5a8f352016-08-16 21:30:54 +02005095 vim_free(tofree);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005096 }
5097 }
5098
5099 if (str_m > 0)
5100 {
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00005101 /* make sure the string is nul-terminated even at the expense of
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005102 * overwriting the last character (shouldn't happen, but just in case)
5103 * */
5104 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0';
5105 }
5106
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005107 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005108 emsg(_("E767: Too many arguments to printf()"));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005109
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00005110 /* Return the number of characters formatted (excluding trailing nul
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005111 * character), that is, the number of characters that would have been
5112 * written to the buffer if it were large enough. */
5113 return (int)str_l;
5114}
5115
5116#endif /* PROTO */