blob: e46c514010a7397d214b0d2eb8b78989c844d57d [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 int other_sourcing_name(void);
20static char_u *get_emsg_source(void);
21static char_u *get_emsg_lnum(void);
22static void add_msg_hist(char_u *s, int len, int attr);
23static void hit_return_msg(void);
24static void msg_home_replace_attr(char_u *fname, int attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000025#ifdef FEAT_MBYTE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010026static char_u *screen_puts_mbyte(char_u *s, int l, int attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000027#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010028static void msg_puts_attr_len(char_u *str, int maxlen, int attr);
29static void msg_puts_display(char_u *str, int maxlen, int attr, int recurse);
30static void msg_scroll_up(void);
31static void inc_msg_scrolled(void);
32static void store_sb_text(char_u **sb_str, char_u *s, int attr, int *sb_col, int finish);
33static void t_puts(int *t_col, char_u *t_s, char_u *s, int attr);
34static void msg_puts_printf(char_u *str, int maxlen);
35static int do_more_prompt(int typed_char);
36static void msg_screen_putchar(int c, int attr);
37static int msg_check_screen(void);
38static void redir_write(char_u *s, int maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +000039#ifdef FEAT_CON_DIALOG
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010040static char_u *msg_show_console_dialog(char_u *message, char_u *buttons, int dfltbutton);
Bram Moolenaar071d4272004-06-13 20:20:40 +000041static int confirm_msg_used = FALSE; /* displaying confirm_msg */
42static char_u *confirm_msg = NULL; /* ":confirm" message */
43static char_u *confirm_msg_tail; /* tail of confirm_msg */
44#endif
Bram Moolenaar958dc692016-12-01 15:34:12 +010045#ifdef FEAT_JOB_CHANNEL
46static int emsg_to_channel_log = FALSE;
47#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000048
49struct msg_hist
50{
51 struct msg_hist *next;
52 char_u *msg;
53 int attr;
54};
55
56static struct msg_hist *first_msg_hist = NULL;
57static struct msg_hist *last_msg_hist = NULL;
58static int msg_hist_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000059
Bram Moolenaarb5b5b892011-09-14 15:39:29 +020060static FILE *verbose_fd = NULL;
61static int verbose_did_open = FALSE;
62
Bram Moolenaar071d4272004-06-13 20:20:40 +000063/*
64 * When writing messages to the screen, there are many different situations.
65 * A number of variables is used to remember the current state:
66 * msg_didany TRUE when messages were written since the last time the
67 * user reacted to a prompt.
68 * Reset: After hitting a key for the hit-return prompt,
69 * hitting <CR> for the command line or input().
70 * Set: When any message is written to the screen.
71 * msg_didout TRUE when something was written to the current line.
72 * Reset: When advancing to the next line, when the current
73 * text can be overwritten.
74 * Set: When any message is written to the screen.
75 * msg_nowait No extra delay for the last drawn message.
76 * Used in normal_cmd() before the mode message is drawn.
77 * emsg_on_display There was an error message recently. Indicates that there
78 * should be a delay before redrawing.
79 * msg_scroll The next message should not overwrite the current one.
80 * msg_scrolled How many lines the screen has been scrolled (because of
81 * messages). Used in update_screen() to scroll the screen
82 * back. Incremented each time the screen scrolls a line.
83 * msg_scrolled_ign TRUE when msg_scrolled is non-zero and msg_puts_attr()
84 * writes something without scrolling should not make
85 * need_wait_return to be set. This is a hack to make ":ts"
86 * work without an extra prompt.
87 * lines_left Number of lines available for messages before the
Bram Moolenaar5d6f75e2011-12-30 14:14:29 +010088 * more-prompt is to be given. -1 when not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +000089 * need_wait_return TRUE when the hit-return prompt is needed.
90 * Reset: After giving the hit-return prompt, when the user
91 * has answered some other prompt.
92 * Set: When the ruler or typeahead display is overwritten,
93 * scrolling the screen for some message.
94 * keep_msg Message to be displayed after redrawing the screen, in
95 * main_loop().
96 * This is an allocated string or NULL when not used.
97 */
98
99/*
100 * msg(s) - displays the string 's' on the status line
101 * When terminal not initialized (yet) mch_errmsg(..) is used.
102 * return TRUE if wait_return not called
103 */
104 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100105msg(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106{
107 return msg_attr_keep(s, 0, FALSE);
108}
109
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000110#if defined(FEAT_EVAL) || defined(FEAT_X11) || defined(USE_XSMP) \
Bram Moolenaarbbc936b2009-07-01 16:04:58 +0000111 || defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000112/*
113 * Like msg() but keep it silent when 'verbosefile' is set.
114 */
115 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100116verb_msg(char_u *s)
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000117{
118 int n;
119
120 verbose_enter();
121 n = msg_attr_keep(s, 0, FALSE);
122 verbose_leave();
123
124 return n;
125}
126#endif
127
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100129msg_attr(char_u *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130{
131 return msg_attr_keep(s, attr, FALSE);
132}
133
134 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100135msg_attr_keep(
136 char_u *s,
137 int attr,
138 int keep) /* TRUE: set keep_msg if it doesn't scroll */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139{
140 static int entered = 0;
141 int retval;
142 char_u *buf = NULL;
143
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200144 /* Skip messages not matching ":filter pattern".
145 * Don't filter when there is an error. */
146 if (!emsg_on_display && message_filtered(s))
147 return TRUE;
148
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149#ifdef FEAT_EVAL
150 if (attr == 0)
151 set_vim_var_string(VV_STATUSMSG, s, -1);
152#endif
153
154 /*
155 * It is possible that displaying a messages causes a problem (e.g.,
156 * when redrawing the window), which causes another message, etc.. To
157 * break this loop, limit the recursiveness to 3 levels.
158 */
159 if (entered >= 3)
160 return TRUE;
161 ++entered;
162
163 /* Add message to history (unless it's a repeated kept message or a
164 * truncated message) */
165 if (s != keep_msg
166 || (*s != '<'
167 && last_msg_hist != NULL
168 && last_msg_hist->msg != NULL
169 && STRCMP(s, last_msg_hist->msg)))
170 add_msg_hist(s, -1, attr);
171
Bram Moolenaar958dc692016-12-01 15:34:12 +0100172#ifdef FEAT_JOB_CHANNEL
173 if (emsg_to_channel_log)
Bram Moolenaar958dc692016-12-01 15:34:12 +0100174 /* Write message in the channel log. */
Bram Moolenaar2f3a90a2017-08-03 14:49:29 +0200175 ch_log(NULL, "ERROR: %s", (char *)s);
Bram Moolenaar958dc692016-12-01 15:34:12 +0100176#endif
177
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178 /* When displaying keep_msg, don't let msg_start() free it, caller must do
179 * that. */
180 if (s == keep_msg)
181 keep_msg = NULL;
182
183 /* Truncate the message if needed. */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000184 msg_start();
185 buf = msg_strtrunc(s, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 if (buf != NULL)
187 s = buf;
188
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189 msg_outtrans_attr(s, attr);
190 msg_clr_eos();
191 retval = msg_end();
192
193 if (keep && retval && vim_strsize(s) < (int)(Rows - cmdline_row - 1)
194 * Columns + sc_col)
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000195 set_keep_msg(s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196
197 vim_free(buf);
198 --entered;
199 return retval;
200}
201
202/*
203 * Truncate a string such that it can be printed without causing a scroll.
204 * Returns an allocated string or NULL when no truncating is done.
205 */
206 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100207msg_strtrunc(
208 char_u *s,
209 int force) /* always truncate */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210{
211 char_u *buf = NULL;
212 int len;
213 int room;
214
215 /* May truncate message to avoid a hit-return prompt */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000216 if ((!msg_scroll && !need_wait_return && shortmess(SHM_TRUNCALL)
217 && !exmode_active && msg_silent == 0) || force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 {
219 len = vim_strsize(s);
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000220 if (msg_scrolled != 0)
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000221 /* Use all the columns. */
222 room = (int)(Rows - msg_row) * Columns - 1;
223 else
224 /* Use up to 'showcmd' column. */
225 room = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 if (len > room && room > 0)
227 {
228#ifdef FEAT_MBYTE
229 if (enc_utf8)
230 /* may have up to 18 bytes per cell (6 per char, up to two
231 * composing chars) */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100232 len = (room + 2) * 18;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 else if (enc_dbcs == DBCS_JPNU)
234 /* may have up to 2 bytes per cell for euc-jp */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100235 len = (room + 2) * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 else
237#endif
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100238 len = room + 2;
239 buf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 if (buf != NULL)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100241 trunc_string(s, buf, room, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242 }
243 }
244 return buf;
245}
246
247/*
248 * Truncate a string "s" to "buf" with cell width "room".
249 * "s" and "buf" may be equal.
250 */
251 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100252trunc_string(
253 char_u *s,
254 char_u *buf,
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200255 int room_in,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100256 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257{
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200258 size_t room = room_in - 3; /* "..." takes 3 chars */
259 size_t half;
260 size_t len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 int e;
262 int i;
263 int n;
264
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200265 if (room_in < 3)
266 room = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267 half = room / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268
269 /* First part: Start of the string. */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100270 for (e = 0; len < half && e < buflen; ++e)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 {
272 if (s[e] == NUL)
273 {
274 /* text fits without truncating! */
275 buf[e] = NUL;
276 return;
277 }
278 n = ptr2cells(s + e);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200279 if (len + n > half)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 break;
281 len += n;
282 buf[e] = s[e];
283#ifdef FEAT_MBYTE
284 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000285 for (n = (*mb_ptr2len)(s + e); --n > 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 {
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100287 if (++e == buflen)
288 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 buf[e] = s[e];
290 }
291#endif
292 }
293
294 /* Last part: End of the string. */
295 i = e;
296#ifdef FEAT_MBYTE
297 if (enc_dbcs != 0)
298 {
299 /* For DBCS going backwards in a string is slow, but
300 * computing the cell width isn't too slow: go forward
301 * until the rest fits. */
302 n = vim_strsize(s + i);
303 while (len + n > room)
304 {
305 n -= ptr2cells(s + i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000306 i += (*mb_ptr2len)(s + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 }
308 }
309 else if (enc_utf8)
310 {
311 /* For UTF-8 we can go backwards easily. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000312 half = i = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 for (;;)
314 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000315 do
Bram Moolenaarace95982017-03-29 17:30:27 +0200316 half = half - utf_head_off(s, s + half - 1) - 1;
Bram Moolenaarb9644432016-07-19 12:33:44 +0200317 while (half > 0 && utf_iscomposing(utf_ptr2char(s + half)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318 n = ptr2cells(s + half);
Bram Moolenaarb9644432016-07-19 12:33:44 +0200319 if (len + n > room || half == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 break;
321 len += n;
Bram Moolenaara5c0cc12016-07-30 16:40:39 +0200322 i = (int)half;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 }
324 }
325 else
326#endif
327 {
328 for (i = (int)STRLEN(s); len + (n = ptr2cells(s + i - 1)) <= room; --i)
329 len += n;
330 }
331
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200332
333 if (i <= e + 3)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100334 {
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200335 /* text fits without truncating */
336 if (s != buf)
337 {
338 len = STRLEN(s);
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200339 if (len >= (size_t)buflen)
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200340 len = buflen - 1;
341 len = len - e + 1;
342 if (len < 1)
343 buf[e - 1] = NUL;
344 else
345 mch_memmove(buf + e, s + e, len);
346 }
347 }
348 else if (e + 3 < buflen)
349 {
350 /* set the middle and copy the last part */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100351 mch_memmove(buf + e, "...", (size_t)3);
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200352 len = STRLEN(s + i) + 1;
353 if (len >= (size_t)buflen - e - 3)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100354 len = buflen - e - 3 - 1;
355 mch_memmove(buf + e + 3, s + i, len);
356 buf[e + 3 + len - 1] = NUL;
357 }
358 else
359 {
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200360 /* can't fit in the "...", just truncate it */
361 buf[e - 1] = NUL;
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100362 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363}
364
365/*
366 * Automatic prototype generation does not understand this function.
367 * Note: Caller of smgs() and smsg_attr() must check the resulting string is
368 * shorter than IOSIZE!!!
369 */
370#ifndef PROTO
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000372int vim_snprintf(char *str, size_t str_m, char *fmt, ...);
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000373
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 int
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100375# ifdef __BORLANDC__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376_RTLENTRYF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100377# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378smsg(char_u *s, ...)
379{
380 va_list arglist;
381
382 va_start(arglist, s);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +0200383 vim_vsnprintf((char *)IObuff, IOSIZE, (char *)s, arglist);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 va_end(arglist);
385 return msg(IObuff);
386}
387
388 int
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100389# ifdef __BORLANDC__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390_RTLENTRYF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100391# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392smsg_attr(int attr, char_u *s, ...)
393{
394 va_list arglist;
395
396 va_start(arglist, s);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +0200397 vim_vsnprintf((char *)IObuff, IOSIZE, (char *)s, arglist);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 va_end(arglist);
399 return msg_attr(IObuff, attr);
400}
401
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402#endif
403
404/*
405 * Remember the last sourcing name/lnum used in an error message, so that it
406 * isn't printed each time when it didn't change.
407 */
408static int last_sourcing_lnum = 0;
409static char_u *last_sourcing_name = NULL;
410
411/*
412 * Reset the last used sourcing name/lnum. Makes sure it is displayed again
413 * for the next error message;
414 */
Bram Moolenaar4eec5ec2005-06-26 22:26:21 +0000415 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100416reset_last_sourcing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417{
Bram Moolenaard23a8232018-02-10 18:45:26 +0100418 VIM_CLEAR(last_sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419 last_sourcing_lnum = 0;
420}
421
422/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000423 * Return TRUE if "sourcing_name" differs from "last_sourcing_name".
424 */
425 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100426other_sourcing_name(void)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000427{
428 if (sourcing_name != NULL)
429 {
430 if (last_sourcing_name != NULL)
431 return STRCMP(sourcing_name, last_sourcing_name) != 0;
432 return TRUE;
433 }
434 return FALSE;
435}
436
437/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 * Get the message about the source, as used for an error message.
439 * Returns an allocated string with room for one more character.
440 * Returns NULL when no message is to be given.
441 */
442 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100443get_emsg_source(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444{
445 char_u *Buf, *p;
446
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000447 if (sourcing_name != NULL && other_sourcing_name())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448 {
449 p = (char_u *)_("Error detected while processing %s:");
450 Buf = alloc((unsigned)(STRLEN(sourcing_name) + STRLEN(p)));
451 if (Buf != NULL)
452 sprintf((char *)Buf, (char *)p, sourcing_name);
453 return Buf;
454 }
455 return NULL;
456}
457
458/*
459 * Get the message about the source lnum, as used for an error message.
460 * Returns an allocated string with room for one more character.
461 * Returns NULL when no message is to be given.
462 */
463 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100464get_emsg_lnum(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465{
466 char_u *Buf, *p;
467
468 /* lnum is 0 when executing a command from the command line
469 * argument, we don't want a line number then */
470 if (sourcing_name != NULL
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000471 && (other_sourcing_name() || sourcing_lnum != last_sourcing_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 && sourcing_lnum != 0)
473 {
474 p = (char_u *)_("line %4ld:");
475 Buf = alloc((unsigned)(STRLEN(p) + 20));
476 if (Buf != NULL)
477 sprintf((char *)Buf, (char *)p, (long)sourcing_lnum);
478 return Buf;
479 }
480 return NULL;
481}
482
483/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000484 * Display name and line number for the source of an error.
485 * Remember the file name and line number, so that for the next error the info
486 * is only displayed if it changed.
487 */
488 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100489msg_source(int attr)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000490{
491 char_u *p;
492
493 ++no_wait_return;
494 p = get_emsg_source();
495 if (p != NULL)
496 {
497 msg_attr(p, attr);
498 vim_free(p);
499 }
500 p = get_emsg_lnum();
501 if (p != NULL)
502 {
Bram Moolenaar8820b482017-03-16 17:23:31 +0100503 msg_attr(p, HL_ATTR(HLF_N));
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000504 vim_free(p);
505 last_sourcing_lnum = sourcing_lnum; /* only once for each line */
506 }
507
508 /* remember the last sourcing name printed, also when it's empty */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000509 if (sourcing_name == NULL || other_sourcing_name())
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000510 {
511 vim_free(last_sourcing_name);
512 if (sourcing_name == NULL)
513 last_sourcing_name = NULL;
514 else
515 last_sourcing_name = vim_strsave(sourcing_name);
516 }
517 --no_wait_return;
518}
519
520/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000521 * Return TRUE if not giving error messages right now:
522 * If "emsg_off" is set: no error messages at the moment.
523 * If "msg" is in 'debug': do error message but without side effects.
524 * If "emsg_skip" is set: never do error messages.
525 */
526 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100527emsg_not_now(void)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000528{
529 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL
530 && vim_strchr(p_debug, 't') == NULL)
531#ifdef FEAT_EVAL
532 || emsg_skip > 0
533#endif
534 )
535 return TRUE;
536 return FALSE;
537}
538
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +0100539#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100540static garray_T ignore_error_list = GA_EMPTY;
541
542 void
543ignore_error_for_testing(char_u *error)
544{
545 if (ignore_error_list.ga_itemsize == 0)
546 ga_init2(&ignore_error_list, sizeof(char_u *), 1);
547
548 ga_add_string(&ignore_error_list, error);
549}
550
551 static int
552ignore_error(char_u *msg)
553{
554 int i;
555
556 for (i = 0; i < ignore_error_list.ga_len; ++i)
557 if (strstr((char *)msg,
558 (char *)((char_u **)(ignore_error_list.ga_data))[i]) != NULL)
559 return TRUE;
560 return FALSE;
561}
562#endif
563
Bram Moolenaarb869c0d2016-07-20 00:10:51 +0200564#if !defined(HAVE_STRERROR) || defined(PROTO)
565/*
566 * Replacement for perror() that behaves more or less like emsg() was called.
567 * v:errmsg will be set and called_emsg will be set.
568 */
569 void
570do_perror(char *msg)
571{
572 perror(msg);
573 ++emsg_silent;
574 emsg((char_u *)msg);
575 --emsg_silent;
576}
577#endif
578
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000579/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 * emsg() - display an error message
581 *
582 * Rings the bell, if appropriate, and calls message() to do the real work
583 * When terminal not initialized (yet) mch_errmsg(..) is used.
584 *
585 * return TRUE if wait_return not called
586 */
587 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100588emsg(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589{
590 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 char_u *p;
Bram Moolenaar958dc692016-12-01 15:34:12 +0100592 int r;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593#ifdef FEAT_EVAL
594 int ignore = FALSE;
595 int severe;
596#endif
597
Bram Moolenaarfd0e7562011-01-04 19:25:50 +0100598 /* Skip this if not giving error messages at the moment. */
599 if (emsg_not_now())
600 return TRUE;
601
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100602#ifdef FEAT_EVAL
603 /* When testing some errors are turned into a normal message. */
604 if (ignore_error(s))
Bram Moolenaarf8ab1b12017-03-01 18:30:34 +0100605 /* don't call msg() if it results in a dialog */
606 return msg_use_printf() ? FALSE : msg(s);
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100607#endif
608
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 called_emsg = TRUE;
610
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611#ifdef FEAT_EVAL
Bram Moolenaare723c422017-09-06 23:40:10 +0200612 /* If "emsg_severe" is TRUE: When an error exception is to be thrown,
613 * prefer this message over previous messages for the same command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 severe = emsg_severe;
615 emsg_severe = FALSE;
616#endif
617
Bram Moolenaar57657d82006-04-21 22:12:41 +0000618 if (!emsg_off || vim_strchr(p_debug, 't') != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 {
620#ifdef FEAT_EVAL
621 /*
622 * Cause a throw of an error exception if appropriate. Don't display
623 * the error message in this case. (If no matching catch clause will
624 * be found, the message will be displayed later on.) "ignore" is set
625 * when the message should be ignored completely (used for the
626 * interrupt message).
627 */
628 if (cause_errthrow(s, severe, &ignore) == TRUE)
629 {
630 if (!ignore)
631 did_emsg = TRUE;
632 return TRUE;
633 }
634
635 /* set "v:errmsg", also when using ":silent! cmd" */
636 set_vim_var_string(VV_ERRMSG, s, -1);
637#endif
638
639 /*
Bram Moolenaara7241f52008-06-24 20:39:31 +0000640 * When using ":silent! cmd" ignore error messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 * But do write it to the redirection file.
642 */
643 if (emsg_silent != 0)
644 {
Bram Moolenaar79815f12016-07-09 17:07:29 +0200645 if (emsg_noredir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 {
Bram Moolenaar79815f12016-07-09 17:07:29 +0200647 msg_start();
648 p = get_emsg_source();
649 if (p != NULL)
650 {
651 STRCAT(p, "\n");
652 redir_write(p, -1);
653 vim_free(p);
654 }
655 p = get_emsg_lnum();
656 if (p != NULL)
657 {
658 STRCAT(p, "\n");
659 redir_write(p, -1);
660 vim_free(p);
661 }
662 redir_write(s, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 }
Bram Moolenaar958dc692016-12-01 15:34:12 +0100664#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar2f3a90a2017-08-03 14:49:29 +0200665 ch_log(NULL, "ERROR: %s", (char *)s);
Bram Moolenaar958dc692016-12-01 15:34:12 +0100666#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 return TRUE;
668 }
669
Bram Moolenaar2b7bc562017-01-14 19:24:52 +0100670 ex_exitval = 1;
671
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200672 /* Reset msg_silent, an error causes messages to be switched back on.
673 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 msg_silent = 0;
675 cmd_silent = FALSE;
676
677 if (global_busy) /* break :global command */
678 ++global_busy;
679
680 if (p_eb)
681 beep_flush(); /* also includes flush_buffers() */
682 else
683 flush_buffers(FALSE); /* flush internal buffers */
684 did_emsg = TRUE; /* flag for DoOneCmd() */
Bram Moolenaare723c422017-09-06 23:40:10 +0200685#ifdef FEAT_EVAL
686 did_uncaught_emsg = TRUE;
687#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 }
689
690 emsg_on_display = TRUE; /* remember there is an error message */
691 ++msg_scroll; /* don't overwrite a previous message */
Bram Moolenaar8820b482017-03-16 17:23:31 +0100692 attr = HL_ATTR(HLF_E); /* set highlight mode for error messages */
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000693 if (msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 need_wait_return = TRUE; /* needed in case emsg() is called after
695 * wait_return has reset need_wait_return
696 * and a redraw is expected because
697 * msg_scrolled is non-zero */
698
Bram Moolenaar958dc692016-12-01 15:34:12 +0100699#ifdef FEAT_JOB_CHANNEL
700 emsg_to_channel_log = TRUE;
701#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 /*
703 * Display name and line number for the source of the error.
704 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000705 msg_source(attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706
707 /*
708 * Display the error message itself.
709 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000710 msg_nowait = FALSE; /* wait for this msg */
Bram Moolenaar958dc692016-12-01 15:34:12 +0100711 r = msg_attr(s, attr);
712
713#ifdef FEAT_JOB_CHANNEL
714 emsg_to_channel_log = FALSE;
715#endif
716 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717}
718
Bram Moolenaar95f09602016-11-10 20:01:45 +0100719
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720/*
721 * Print an error message with one "%s" and one string argument.
722 */
723 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100724emsg2(char_u *s, char_u *a1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725{
726 return emsg3(s, a1, NULL);
727}
728
Bram Moolenaar95f09602016-11-10 20:01:45 +0100729/*
730 * Print an error message with one or two "%s" and one or two string arguments.
731 * This is not in message.c to avoid a warning for prototypes.
732 */
733 int
734emsg3(char_u *s, char_u *a1, char_u *a2)
735{
736 if (emsg_not_now())
737 return TRUE; /* no error messages at the moment */
738 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
739 return emsg(IObuff);
740}
741
742/*
743 * Print an error message with one "%ld" and one long int argument.
744 * This is not in message.c to avoid a warning for prototypes.
745 */
746 int
747emsgn(char_u *s, long n)
748{
749 if (emsg_not_now())
750 return TRUE; /* no error messages at the moment */
751 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
752 return emsg(IObuff);
753}
754
755/*
756 * Same as emsg(...), but abort on error when ABORT_ON_INTERNAL_ERROR is
757 * defined. It is used for internal errors only, so that they can be
758 * detected when fuzzing vim.
759 */
760 void
761iemsg(char_u *s)
762{
Bram Moolenaar191f18b2018-02-04 16:38:47 +0100763 emsg(s);
Bram Moolenaar95f09602016-11-10 20:01:45 +0100764#ifdef ABORT_ON_INTERNAL_ERROR
765 abort();
766#endif
767}
768
769
770/*
771 * Same as emsg2(...) but abort on error when ABORT_ON_INTERNAL_ERROR is
772 * defined. It is used for internal errors only, so that they can be
773 * detected when fuzzing vim.
774 */
775 void
776iemsg2(char_u *s, char_u *a1)
777{
778 emsg2(s, a1);
779#ifdef ABORT_ON_INTERNAL_ERROR
780 abort();
781#endif
782}
783
784/*
785 * Same as emsgn(...) but abort on error when ABORT_ON_INTERNAL_ERROR is
786 * defined. It is used for internal errors only, so that they can be
787 * detected when fuzzing vim.
788 */
789 void
790iemsgn(char_u *s, long n)
791{
792 emsgn(s, n);
793#ifdef ABORT_ON_INTERNAL_ERROR
794 abort();
795#endif
796}
797
798/*
799 * Give an "Internal error" message.
800 */
801 void
802internal_error(char *where)
803{
804 IEMSG2(_(e_intern2), where);
805}
806
Bram Moolenaarea424162005-06-16 21:51:00 +0000807/* emsg3() and emsgn() are in misc2.c to avoid warnings for the prototypes. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808
Bram Moolenaardf177f62005-02-22 08:39:57 +0000809 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100810emsg_invreg(int name)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000811{
812 EMSG2(_("E354: Invalid register name: '%s'"), transchar(name));
813}
814
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815/*
816 * Like msg(), but truncate to a single line if p_shm contains 't', or when
817 * "force" is TRUE. This truncates in another way as for normal messages.
818 * Careful: The string may be changed by msg_may_trunc()!
819 * Returns a pointer to the printed message, if wait_return() not called.
820 */
821 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100822msg_trunc_attr(char_u *s, int force, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823{
824 int n;
825
826 /* Add message to history before truncating */
827 add_msg_hist(s, -1, attr);
828
829 s = msg_may_trunc(force, s);
830
831 msg_hist_off = TRUE;
832 n = msg_attr(s, attr);
833 msg_hist_off = FALSE;
834
835 if (n)
836 return s;
837 return NULL;
838}
839
840/*
841 * Check if message "s" should be truncated at the start (for filenames).
842 * Return a pointer to where the truncated message starts.
843 * Note: May change the message by replacing a character with '<'.
844 */
845 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100846msg_may_trunc(int force, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847{
848 int n;
849 int room;
850
851 room = (int)(Rows - cmdline_row - 1) * Columns + sc_col - 1;
852 if ((force || (shortmess(SHM_TRUNC) && !exmode_active))
853 && (n = (int)STRLEN(s) - room) > 0)
854 {
855#ifdef FEAT_MBYTE
856 if (has_mbyte)
857 {
858 int size = vim_strsize(s);
859
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +0000860 /* There may be room anyway when there are multibyte chars. */
861 if (size <= room)
862 return s;
863
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 for (n = 0; size >= room; )
865 {
866 size -= (*mb_ptr2cells)(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000867 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 }
869 --n;
870 }
871#endif
872 s += n;
873 *s = '<';
874 }
875 return s;
876}
877
878 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100879add_msg_hist(
880 char_u *s,
881 int len, /* -1 for undetermined length */
882 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883{
884 struct msg_hist *p;
885
886 if (msg_hist_off || msg_silent != 0)
887 return;
888
889 /* Don't let the message history get too big */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000890 while (msg_hist_len > MAX_MSG_HIST_LEN)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000891 (void)delete_first_msg();
892
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 /* allocate an entry and add the message at the end of the history */
894 p = (struct msg_hist *)alloc((int)sizeof(struct msg_hist));
895 if (p != NULL)
896 {
897 if (len < 0)
898 len = (int)STRLEN(s);
899 /* remove leading and trailing newlines */
900 while (len > 0 && *s == '\n')
901 {
902 ++s;
903 --len;
904 }
905 while (len > 0 && s[len - 1] == '\n')
906 --len;
907 p->msg = vim_strnsave(s, len);
908 p->next = NULL;
909 p->attr = attr;
910 if (last_msg_hist != NULL)
911 last_msg_hist->next = p;
912 last_msg_hist = p;
913 if (first_msg_hist == NULL)
914 first_msg_hist = last_msg_hist;
915 ++msg_hist_len;
916 }
917}
918
919/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000920 * Delete the first (oldest) message from the history.
921 * Returns FAIL if there are no messages.
922 */
923 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100924delete_first_msg(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000925{
926 struct msg_hist *p;
927
928 if (msg_hist_len <= 0)
929 return FAIL;
930 p = first_msg_hist;
931 first_msg_hist = p->next;
Bram Moolenaara7241f52008-06-24 20:39:31 +0000932 if (first_msg_hist == NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200933 last_msg_hist = NULL; /* history is empty */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000934 vim_free(p->msg);
935 vim_free(p);
936 --msg_hist_len;
937 return OK;
938}
939
940/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 * ":messages" command.
942 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 void
Bram Moolenaar52196b22016-04-14 17:52:41 +0200944ex_messages(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945{
946 struct msg_hist *p;
947 char_u *s;
Bram Moolenaar451f8492016-04-14 17:16:22 +0200948 int c = 0;
949
950 if (STRCMP(eap->arg, "clear") == 0)
951 {
952 int keep = eap->addr_count == 0 ? 0 : eap->line2;
953
954 while (msg_hist_len > keep)
955 (void)delete_first_msg();
956 return;
957 }
958
959 if (*eap->arg != NUL)
960 {
961 EMSG(_(e_invarg));
962 return;
963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964
965 msg_hist_off = TRUE;
966
Bram Moolenaar451f8492016-04-14 17:16:22 +0200967 p = first_msg_hist;
Bram Moolenaar451f8492016-04-14 17:16:22 +0200968 if (eap->addr_count != 0)
969 {
970 /* Count total messages */
971 for (; p != NULL && !got_int; p = p->next)
972 c++;
973
974 c -= eap->line2;
975
976 /* Skip without number of messages specified */
977 for (p = first_msg_hist; p != NULL && !got_int && c > 0;
978 p = p->next, c--);
979 }
980
Bram Moolenaarbea1ede2016-04-14 19:44:36 +0200981 if (p == first_msg_hist)
982 {
983 s = mch_getenv((char_u *)"LANG");
984 if (s != NULL && *s != NUL)
Bram Moolenaar0c183192018-06-28 14:54:43 +0200985 // The next comment is extracted by xgettext and put in po file for
986 // translators to read.
Bram Moolenaarbea1ede2016-04-14 19:44:36 +0200987 msg_attr((char_u *)
Bram Moolenaar0c183192018-06-28 14:54:43 +0200988 // Translator: Please replace the name and email address
989 // with the appropriate text for your translation.
Bram Moolenaarbea1ede2016-04-14 19:44:36 +0200990 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
Bram Moolenaar8820b482017-03-16 17:23:31 +0100991 HL_ATTR(HLF_T));
Bram Moolenaarbea1ede2016-04-14 19:44:36 +0200992 }
993
Bram Moolenaar451f8492016-04-14 17:16:22 +0200994 /* Display what was not skipped. */
995 for (; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 if (p->msg != NULL)
997 msg_attr(p->msg, p->attr);
998
999 msg_hist_off = FALSE;
1000}
1001
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001002#if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003/*
1004 * Call this after prompting the user. This will avoid a hit-return message
1005 * and a delay.
1006 */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001007 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001008msg_end_prompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009{
1010 need_wait_return = FALSE;
1011 emsg_on_display = FALSE;
1012 cmdline_row = msg_row;
1013 msg_col = 0;
1014 msg_clr_eos();
Bram Moolenaar5d6f75e2011-12-30 14:14:29 +01001015 lines_left = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016}
1017#endif
1018
1019/*
1020 * wait for the user to hit a key (normally a return)
1021 * if 'redraw' is TRUE, clear and redraw the screen
1022 * if 'redraw' is FALSE, just redraw the screen
1023 * if 'redraw' is -1, don't redraw at all
1024 */
1025 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001026wait_return(int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027{
1028 int c;
1029 int oldState;
1030 int tmpState;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 int had_got_int;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001032 int save_reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001033 FILE *save_scriptout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034
1035 if (redraw == TRUE)
1036 must_redraw = CLEAR;
1037
1038 /* If using ":silent cmd", don't wait for a return. Also don't set
1039 * need_wait_return to do it later. */
1040 if (msg_silent != 0)
1041 return;
1042
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01001043 /*
1044 * When inside vgetc(), we can't wait for a typed character at all.
1045 * With the global command (and some others) we only need one return at
1046 * the end. Adjust cmdline_row to avoid the next message overwriting the
1047 * last one.
1048 */
Bram Moolenaar5555acc2006-04-07 21:33:12 +00001049 if (vgetc_busy > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 return;
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01001051 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 if (no_wait_return)
1053 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 if (!exmode_active)
1055 cmdline_row = msg_row;
1056 return;
1057 }
1058
1059 redir_off = TRUE; /* don't redirect this message */
1060 oldState = State;
1061 if (quit_more)
1062 {
1063 c = CAR; /* just pretend CR was hit */
1064 quit_more = FALSE;
1065 got_int = FALSE;
1066 }
1067 else if (exmode_active)
1068 {
1069 MSG_PUTS(" "); /* make sure the cursor is on the right line */
1070 c = CAR; /* no need for a return in ex mode */
1071 got_int = FALSE;
1072 }
1073 else
1074 {
1075 /* Make sure the hit-return prompt is on screen when 'guioptions' was
1076 * just changed. */
1077 screenalloc(FALSE);
1078
1079 State = HITRETURN;
1080#ifdef FEAT_MOUSE
1081 setmouse();
1082#endif
1083#ifdef USE_ON_FLY_SCROLL
1084 dont_scroll = TRUE; /* disallow scrolling here */
1085#endif
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01001086 cmdline_row = msg_row;
1087
Bram Moolenaarec38d692013-04-24 15:12:32 +02001088 /* Avoid the sequence that the user types ":" at the hit-return prompt
1089 * to start an Ex command, but the file-changed dialog gets in the
1090 * way. */
1091 if (need_check_timestamps)
1092 check_timestamps(FALSE);
1093
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 hit_return_msg();
1095
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 do
1097 {
1098 /* Remember "got_int", if it is set vgetc() probably returns a
1099 * CTRL-C, but we need to loop then. */
1100 had_got_int = got_int;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001101
1102 /* Don't do mappings here, we put the character back in the
1103 * typeahead buffer. */
1104 ++no_mapping;
1105 ++allow_keys;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001106
1107 /* Temporarily disable Recording. If Recording is active, the
1108 * character will be recorded later, since it will be added to the
1109 * typebuf after the loop */
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001110 save_reg_recording = reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001111 save_scriptout = scriptout;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001112 reg_recording = 0;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001113 scriptout = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 c = safe_vgetc();
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00001115 if (had_got_int && !global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 got_int = FALSE;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001117 --no_mapping;
1118 --allow_keys;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001119 reg_recording = save_reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001120 scriptout = save_scriptout;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001121
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122#ifdef FEAT_CLIPBOARD
1123 /* Strange way to allow copying (yanking) a modeless selection at
1124 * the hit-enter prompt. Use CTRL-Y, because the same is used in
1125 * Cmdline-mode and it's harmless when there is no selection. */
1126 if (c == Ctrl_Y && clip_star.state == SELECT_DONE)
1127 {
1128 clip_copy_modeless_selection(TRUE);
1129 c = K_IGNORE;
1130 }
1131#endif
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00001132
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001133 /*
1134 * Allow scrolling back in the messages.
1135 * Also accept scroll-down commands when messages fill the screen,
1136 * to avoid that typing one 'j' too many makes the messages
1137 * disappear.
1138 */
1139 if (p_more && !p_cp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001140 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001141 if (c == 'b' || c == 'k' || c == 'u' || c == 'g'
1142 || c == K_UP || c == K_PAGEUP)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001143 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001144 if (msg_scrolled > Rows)
1145 /* scroll back to show older messages */
1146 do_more_prompt(c);
1147 else
1148 {
1149 msg_didout = FALSE;
1150 c = K_IGNORE;
1151 msg_col =
1152#ifdef FEAT_RIGHTLEFT
1153 cmdmsg_rl ? Columns - 1 :
1154#endif
1155 0;
1156 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001157 if (quit_more)
1158 {
1159 c = CAR; /* just pretend CR was hit */
1160 quit_more = FALSE;
1161 got_int = FALSE;
1162 }
Bram Moolenaarb0912962013-08-09 20:38:26 +02001163 else if (c != K_IGNORE)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001164 {
1165 c = K_IGNORE;
1166 hit_return_msg();
1167 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001168 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001169 else if (msg_scrolled > Rows - 2
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001170 && (c == 'j' || c == 'd' || c == 'f'
1171 || c == K_DOWN || c == K_PAGEDOWN))
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001172 c = K_IGNORE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001173 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 } while ((had_got_int && c == Ctrl_C)
1175 || c == K_IGNORE
1176#ifdef FEAT_GUI
1177 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR
1178#endif
1179#ifdef FEAT_MOUSE
1180 || c == K_LEFTDRAG || c == K_LEFTRELEASE
1181 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE
1182 || c == K_RIGHTDRAG || c == K_RIGHTRELEASE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001183 || c == K_MOUSELEFT || c == K_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 || c == K_MOUSEDOWN || c == K_MOUSEUP
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001185 || c == K_MOUSEMOVE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 || (!mouse_has(MOUSE_RETURN)
1187 && mouse_row < msg_row
1188 && (c == K_LEFTMOUSE
1189 || c == K_MIDDLEMOUSE
1190 || c == K_RIGHTMOUSE
1191 || c == K_X1MOUSE
1192 || c == K_X2MOUSE))
1193#endif
1194 );
1195 ui_breakcheck();
1196#ifdef FEAT_MOUSE
1197 /*
1198 * Avoid that the mouse-up event causes visual mode to start.
1199 */
1200 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE
1201 || c == K_X1MOUSE || c == K_X2MOUSE)
1202 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0);
1203 else
1204#endif
1205 if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C)
1206 {
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001207 /* Put the character back in the typeahead buffer. Don't use the
1208 * stuff buffer, because lmaps wouldn't work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001209 ins_char_typebuf(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 do_redraw = TRUE; /* need a redraw even though there is
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001211 typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 }
1214 redir_off = FALSE;
1215
1216 /*
1217 * If the user hits ':', '?' or '/' we get a command line from the next
1218 * line.
1219 */
1220 if (c == ':' || c == '?' || c == '/')
1221 {
1222 if (!exmode_active)
1223 cmdline_row = msg_row;
1224 skip_redraw = TRUE; /* skip redraw once */
1225 do_redraw = FALSE;
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001226#ifdef FEAT_TERMINAL
1227 skip_term_loop = TRUE;
1228#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 }
1230
1231 /*
1232 * If the window size changed set_shellsize() will redraw the screen.
1233 * Otherwise the screen is only redrawn if 'redraw' is set and no ':'
1234 * typed.
1235 */
1236 tmpState = State;
1237 State = oldState; /* restore State before set_shellsize */
1238#ifdef FEAT_MOUSE
1239 setmouse();
1240#endif
1241 msg_check();
1242
1243#if defined(UNIX) || defined(VMS)
1244 /*
1245 * When switching screens, we need to output an extra newline on exit.
1246 */
1247 if (swapping_screen() && !termcap_active)
1248 newline_on_exit = TRUE;
1249#endif
1250
1251 need_wait_return = FALSE;
1252 did_wait_return = TRUE;
1253 emsg_on_display = FALSE; /* can delete error message now */
1254 lines_left = -1; /* reset lines_left at next msg_start() */
1255 reset_last_sourcing();
1256 if (keep_msg != NULL && vim_strsize(keep_msg) >=
1257 (Rows - cmdline_row - 1) * Columns + sc_col)
Bram Moolenaard23a8232018-02-10 18:45:26 +01001258 VIM_CLEAR(keep_msg); /* don't redisplay message, it's too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259
1260 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */
1261 {
1262 starttermcap(); /* start termcap before redrawing */
1263 shell_resized();
1264 }
1265 else if (!skip_redraw
1266 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1)))
1267 {
1268 starttermcap(); /* start termcap before redrawing */
1269 redraw_later(VALID);
1270 }
1271}
1272
1273/*
1274 * Write the hit-return prompt.
1275 */
1276 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001277hit_return_msg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001279 int save_p_more = p_more;
1280
1281 p_more = FALSE; /* don't want see this message when scrolling back */
1282 if (msg_didout) /* start on a new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 msg_putchar('\n');
1284 if (got_int)
1285 MSG_PUTS(_("Interrupt: "));
1286
Bram Moolenaar8820b482017-03-16 17:23:31 +01001287 MSG_PUTS_ATTR(_("Press ENTER or type command to continue"), HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 if (!msg_use_printf())
1289 msg_clr_eos();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001290 p_more = save_p_more;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291}
1292
1293/*
1294 * Set "keep_msg" to "s". Free the old value and check for NULL pointer.
1295 */
1296 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001297set_keep_msg(char_u *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298{
1299 vim_free(keep_msg);
1300 if (s != NULL && msg_silent == 0)
1301 keep_msg = vim_strsave(s);
1302 else
1303 keep_msg = NULL;
Bram Moolenaaraab21c32005-01-25 21:46:35 +00001304 keep_msg_more = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001305 keep_msg_attr = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306}
1307
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001308#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1309/*
1310 * If there currently is a message being displayed, set "keep_msg" to it, so
1311 * that it will be displayed again after redraw.
1312 */
1313 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001314set_keep_msg_from_hist(void)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001315{
1316 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0
1317 && (State & NORMAL))
1318 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr);
1319}
1320#endif
1321
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322/*
1323 * Prepare for outputting characters in the command line.
1324 */
1325 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001326msg_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327{
1328 int did_return = FALSE;
1329
Bram Moolenaare4ce65d2010-08-04 20:12:32 +02001330 if (!msg_silent)
Bram Moolenaard23a8232018-02-10 18:45:26 +01001331 VIM_CLEAR(keep_msg);
Bram Moolenaara7241f52008-06-24 20:39:31 +00001332
1333#ifdef FEAT_EVAL
1334 if (need_clr_eos)
1335 {
1336 /* Halfway an ":echo" command and getting an (error) message: clear
1337 * any text from the command. */
1338 need_clr_eos = FALSE;
1339 msg_clr_eos();
1340 }
1341#endif
1342
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 if (!msg_scroll && full_screen) /* overwrite last message */
1344 {
1345 msg_row = cmdline_row;
1346 msg_col =
1347#ifdef FEAT_RIGHTLEFT
1348 cmdmsg_rl ? Columns - 1 :
1349#endif
1350 0;
1351 }
1352 else if (msg_didout) /* start message on next line */
1353 {
1354 msg_putchar('\n');
1355 did_return = TRUE;
1356 if (exmode_active != EXMODE_NORMAL)
1357 cmdline_row = msg_row;
1358 }
1359 if (!msg_didany || lines_left < 0)
1360 msg_starthere();
1361 if (msg_silent == 0)
1362 {
1363 msg_didout = FALSE; /* no output on current line yet */
1364 cursor_off();
1365 }
1366
1367 /* when redirecting, may need to start a new line. */
1368 if (!did_return)
1369 redir_write((char_u *)"\n", -1);
1370}
1371
1372/*
1373 * Note that the current msg position is where messages start.
1374 */
1375 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001376msg_starthere(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377{
1378 lines_left = cmdline_row;
1379 msg_didany = FALSE;
1380}
1381
1382 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001383msg_putchar(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384{
1385 msg_putchar_attr(c, 0);
1386}
1387
1388 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001389msg_putchar_attr(int c, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390{
1391#ifdef FEAT_MBYTE
1392 char_u buf[MB_MAXBYTES + 1];
1393#else
1394 char_u buf[4];
1395#endif
1396
1397 if (IS_SPECIAL(c))
1398 {
1399 buf[0] = K_SPECIAL;
1400 buf[1] = K_SECOND(c);
1401 buf[2] = K_THIRD(c);
1402 buf[3] = NUL;
1403 }
1404 else
1405 {
1406#ifdef FEAT_MBYTE
1407 buf[(*mb_char2bytes)(c, buf)] = NUL;
1408#else
1409 buf[0] = c;
1410 buf[1] = NUL;
1411#endif
1412 }
1413 msg_puts_attr(buf, attr);
1414}
1415
1416 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001417msg_outnum(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418{
1419 char_u buf[20];
1420
1421 sprintf((char *)buf, "%ld", n);
1422 msg_puts(buf);
1423}
1424
1425 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001426msg_home_replace(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427{
1428 msg_home_replace_attr(fname, 0);
1429}
1430
1431#if defined(FEAT_FIND_ID) || defined(PROTO)
1432 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001433msg_home_replace_hl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434{
Bram Moolenaar8820b482017-03-16 17:23:31 +01001435 msg_home_replace_attr(fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436}
1437#endif
1438
1439 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001440msg_home_replace_attr(char_u *fname, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441{
1442 char_u *name;
1443
1444 name = home_replace_save(NULL, fname);
1445 if (name != NULL)
1446 msg_outtrans_attr(name, attr);
1447 vim_free(name);
1448}
1449
1450/*
1451 * Output 'len' characters in 'str' (including NULs) with translation
1452 * if 'len' is -1, output upto a NUL character.
1453 * Use attributes 'attr'.
1454 * Return the number of characters it takes on the screen.
1455 */
1456 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001457msg_outtrans(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458{
1459 return msg_outtrans_attr(str, 0);
1460}
1461
1462 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001463msg_outtrans_attr(char_u *str, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464{
1465 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr);
1466}
1467
1468 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001469msg_outtrans_len(char_u *str, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470{
1471 return msg_outtrans_len_attr(str, len, 0);
1472}
1473
1474/*
1475 * Output one character at "p". Return pointer to the next character.
1476 * Handles multi-byte characters.
1477 */
1478 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001479msg_outtrans_one(char_u *p, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480{
1481#ifdef FEAT_MBYTE
1482 int l;
1483
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001484 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 {
1486 msg_outtrans_len_attr(p, l, attr);
1487 return p + l;
1488 }
1489#endif
1490 msg_puts_attr(transchar_byte(*p), attr);
1491 return p + 1;
1492}
1493
1494 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001495msg_outtrans_len_attr(char_u *msgstr, int len, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496{
1497 int retval = 0;
1498 char_u *str = msgstr;
1499 char_u *plain_start = msgstr;
1500 char_u *s;
1501#ifdef FEAT_MBYTE
1502 int mb_l;
1503 int c;
1504#endif
1505
1506 /* if MSG_HIST flag set, add message to history */
1507 if (attr & MSG_HIST)
1508 {
1509 add_msg_hist(str, len, attr);
1510 attr &= ~MSG_HIST;
1511 }
1512
1513#ifdef FEAT_MBYTE
1514 /* If the string starts with a composing character first draw a space on
1515 * which the composing char can be drawn. */
1516 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr)))
1517 msg_puts_attr((char_u *)" ", attr);
1518#endif
1519
1520 /*
1521 * Go over the string. Special characters are translated and printed.
1522 * Normal characters are printed several at a time.
1523 */
1524 while (--len >= 0)
1525 {
1526#ifdef FEAT_MBYTE
1527 if (enc_utf8)
1528 /* Don't include composing chars after the end. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001529 mb_l = utfc_ptr2len_len(str, len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001531 mb_l = (*mb_ptr2len)(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 else
1533 mb_l = 1;
1534 if (has_mbyte && mb_l > 1)
1535 {
1536 c = (*mb_ptr2char)(str);
1537 if (vim_isprintc(c))
1538 /* printable multi-byte char: count the cells. */
1539 retval += (*mb_ptr2cells)(str);
1540 else
1541 {
1542 /* unprintable multi-byte char: print the printable chars so
1543 * far and the translation of the unprintable char. */
1544 if (str > plain_start)
1545 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1546 attr);
1547 plain_start = str + mb_l;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001548 msg_puts_attr(transchar(c), attr == 0 ? HL_ATTR(HLF_8) : attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 retval += char2cells(c);
1550 }
1551 len -= mb_l - 1;
1552 str += mb_l;
1553 }
1554 else
1555#endif
1556 {
1557 s = transchar_byte(*str);
1558 if (s[1] != NUL)
1559 {
1560 /* unprintable char: print the printable chars so far and the
1561 * translation of the unprintable char. */
1562 if (str > plain_start)
1563 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1564 attr);
1565 plain_start = str + 1;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001566 msg_puts_attr(s, attr == 0 ? HL_ATTR(HLF_8) : attr);
Bram Moolenaarc236c162008-07-13 17:41:49 +00001567 retval += (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 }
Bram Moolenaarb3c722a2008-07-06 17:16:02 +00001569 else
1570 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 ++str;
1572 }
1573 }
1574
1575 if (str > plain_start)
1576 /* print the printable chars at the end */
1577 msg_puts_attr_len(plain_start, (int)(str - plain_start), attr);
1578
1579 return retval;
1580}
1581
1582#if defined(FEAT_QUICKFIX) || defined(PROTO)
1583 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001584msg_make(char_u *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585{
1586 int i;
1587 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB";
1588
1589 arg = skipwhite(arg);
1590 for (i = 5; *arg && i >= 0; --i)
1591 if (*arg++ != str[i])
1592 break;
1593 if (i < 0)
1594 {
1595 msg_putchar('\n');
1596 for (i = 0; rs[i]; ++i)
1597 msg_putchar(rs[i] - 3);
1598 }
1599}
1600#endif
1601
1602/*
1603 * Output the string 'str' upto a NUL character.
1604 * Return the number of characters it takes on the screen.
1605 *
1606 * If K_SPECIAL is encountered, then it is taken in conjunction with the
1607 * following character and shown as <F1>, <S-Up> etc. Any other character
1608 * which is not printable shown in <> form.
1609 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>.
1610 * If a character is displayed in one of these special ways, is also
1611 * highlighted (its highlight name is '8' in the p_hl variable).
1612 * Otherwise characters are not highlighted.
1613 * This function is used to show mappings, where we want to see how to type
1614 * the character/string -- webb
1615 */
1616 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001617msg_outtrans_special(
1618 char_u *strstart,
1619 int from) /* TRUE for lhs of a mapping */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620{
1621 char_u *str = strstart;
1622 int retval = 0;
1623 char_u *string;
1624 int attr;
1625 int len;
1626
Bram Moolenaar8820b482017-03-16 17:23:31 +01001627 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 while (*str != NUL)
1629 {
1630 /* Leading and trailing spaces need to be displayed in <> form. */
1631 if ((str == strstart || str[1] == NUL) && *str == ' ')
1632 {
1633 string = (char_u *)"<Space>";
1634 ++str;
1635 }
1636 else
1637 string = str2special(&str, from);
1638 len = vim_strsize(string);
1639 /* Highlight special keys */
1640 msg_puts_attr(string, len > 1
1641#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001642 && (*mb_ptr2len)(string) <= 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643#endif
1644 ? attr : 0);
1645 retval += len;
1646 }
1647 return retval;
1648}
1649
Bram Moolenaarbd743252010-10-20 21:23:33 +02001650#if defined(FEAT_EVAL) || defined(PROTO)
1651/*
1652 * Return the lhs or rhs of a mapping, with the key codes turned into printable
1653 * strings, in an allocated string.
1654 */
1655 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001656str2special_save(
1657 char_u *str,
1658 int is_lhs) /* TRUE for lhs, FALSE for rhs */
Bram Moolenaarbd743252010-10-20 21:23:33 +02001659{
1660 garray_T ga;
1661 char_u *p = str;
1662
1663 ga_init2(&ga, 1, 40);
1664 while (*p != NUL)
1665 ga_concat(&ga, str2special(&p, is_lhs));
1666 ga_append(&ga, NUL);
1667 return (char_u *)ga.ga_data;
1668}
1669#endif
1670
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671/*
1672 * Return the printable string for the key codes at "*sp".
1673 * Used for translating the lhs or rhs of a mapping to printable chars.
1674 * Advances "sp" to the next code.
1675 */
1676 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001677str2special(
1678 char_u **sp,
1679 int from) /* TRUE for lhs of mapping */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680{
1681 int c;
1682 static char_u buf[7];
1683 char_u *str = *sp;
1684 int modifiers = 0;
1685 int special = FALSE;
1686
1687#ifdef FEAT_MBYTE
1688 if (has_mbyte)
1689 {
1690 char_u *p;
1691
1692 /* Try to un-escape a multi-byte character. Return the un-escaped
1693 * string if it is a multi-byte character. */
1694 p = mb_unescape(sp);
1695 if (p != NULL)
1696 return p;
1697 }
1698#endif
1699
1700 c = *str;
1701 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1702 {
1703 if (str[1] == KS_MODIFIER)
1704 {
1705 modifiers = str[2];
1706 str += 3;
1707 c = *str;
1708 }
1709 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1710 {
1711 c = TO_SPECIAL(str[1], str[2]);
1712 str += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 }
1714 if (IS_SPECIAL(c) || modifiers) /* special key */
1715 special = TRUE;
1716 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717
1718#ifdef FEAT_MBYTE
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001719 if (has_mbyte && !IS_SPECIAL(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 {
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001721 int len = (*mb_ptr2len)(str);
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001722
1723 /* For multi-byte characters check for an illegal byte. */
1724 if (has_mbyte && MB_BYTE2LEN(*str) > len)
1725 {
1726 transchar_nonprint(buf, c);
1727 *sp = str + 1;
1728 return buf;
1729 }
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001730 /* Since 'special' is TRUE the multi-byte character 'c' will be
1731 * processed by get_special_key_name() */
1732 c = (*mb_ptr2char)(str);
1733 *sp = str + len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 }
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001735 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736#endif
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;
1775 char_u *p_extra = NULL; /* init to make SASC shut up */
1776 int n;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001777 int attr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 char_u *trail = NULL;
1779#ifdef FEAT_MBYTE
1780 int l;
1781 char_u buf[MB_MAXBYTES + 1];
1782#endif
1783
Bram Moolenaardf177f62005-02-22 08:39:57 +00001784 if (curwin->w_p_list)
1785 list = TRUE;
1786
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 /* find start of trailing whitespace */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001788 if (list && lcs_trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 {
1790 trail = s + STRLEN(s);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001791 while (trail > s && VIM_ISWHITE(trail[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 --trail;
1793 }
1794
1795 /* output a space for an empty line, otherwise the line will be
1796 * overwritten */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001797 if (*s == NUL && !(list && lcs_eol != NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 msg_putchar(' ');
1799
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001800 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 {
Bram Moolenaar56da7972007-01-16 14:46:32 +00001802 if (n_extra > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 {
1804 --n_extra;
1805 if (c_extra)
1806 c = c_extra;
1807 else
1808 c = *p_extra++;
1809 }
1810#ifdef FEAT_MBYTE
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 Moolenaar56da7972007-01-16 14:46:32 +00001826 msg_puts(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 s += l;
1828 continue;
1829 }
1830#endif
1831 else
1832 {
1833 attr = 0;
1834 c = *s++;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001835 if (c == TAB && (!list || lcs_tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 {
1837 /* tab amount depends on current column */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001838#ifdef FEAT_VARTABS
1839 n_extra = tabstop_padding(col, curbuf->b_p_ts,
1840 curbuf->b_p_vts_array) - 1;
1841#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001843#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00001844 if (!list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 {
1846 c = ' ';
1847 c_extra = ' ';
1848 }
1849 else
1850 {
1851 c = lcs_tab1;
1852 c_extra = lcs_tab2;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001853 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 }
1855 }
Bram Moolenaaracf17282011-02-01 17:12:25 +01001856 else if (c == 160 && list && lcs_nbsp != NUL)
1857 {
1858 c = lcs_nbsp;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001859 attr = HL_ATTR(HLF_8);
Bram Moolenaaracf17282011-02-01 17:12:25 +01001860 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00001861 else if (c == NUL && list && lcs_eol != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 {
1863 p_extra = (char_u *)"";
1864 c_extra = NUL;
1865 n_extra = 1;
1866 c = lcs_eol;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001867 attr = HL_ATTR(HLF_AT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 --s;
1869 }
1870 else if (c != NUL && (n = byte2cells(c)) > 1)
1871 {
1872 n_extra = n - 1;
1873 p_extra = transchar_byte(c);
1874 c_extra = NUL;
1875 c = *p_extra++;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001876 /* Use special coloring to be able to distinguish <hex> from
1877 * the same in plain text. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001878 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 }
1880 else if (c == ' ' && trail != NULL && s > trail)
1881 {
1882 c = lcs_trail;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001883 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 }
Bram Moolenaar1510f992015-04-22 22:18:22 +02001885 else if (c == ' ' && list && lcs_space != NUL)
1886 {
1887 c = lcs_space;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001888 attr = HL_ATTR(HLF_8);
Bram Moolenaar1510f992015-04-22 22:18:22 +02001889 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 }
1891
1892 if (c == NUL)
1893 break;
1894
1895 msg_putchar_attr(c, attr);
1896 col++;
1897 }
1898 msg_clr_eos();
1899}
1900
1901#ifdef FEAT_MBYTE
1902/*
1903 * Use screen_puts() to output one multi-byte character.
1904 * Return the pointer "s" advanced to the next character.
1905 */
1906 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001907screen_puts_mbyte(char_u *s, int l, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908{
1909 int cw;
1910
1911 msg_didout = TRUE; /* remember that line is not empty */
1912 cw = (*mb_ptr2cells)(s);
1913 if (cw > 1 && (
1914#ifdef FEAT_RIGHTLEFT
1915 cmdmsg_rl ? msg_col <= 1 :
1916#endif
1917 msg_col == Columns - 1))
1918 {
1919 /* Doesn't fit, print a highlighted '>' to fill it up. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001920 msg_screen_putchar('>', HL_ATTR(HLF_AT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 return s;
1922 }
1923
1924 screen_puts_len(s, l, msg_row, msg_col, attr);
1925#ifdef FEAT_RIGHTLEFT
1926 if (cmdmsg_rl)
1927 {
1928 msg_col -= cw;
1929 if (msg_col == 0)
1930 {
1931 msg_col = Columns;
1932 ++msg_row;
1933 }
1934 }
1935 else
1936#endif
1937 {
1938 msg_col += cw;
1939 if (msg_col >= Columns)
1940 {
1941 msg_col = 0;
1942 ++msg_row;
1943 }
1944 }
1945 return s + l;
1946}
1947#endif
1948
1949/*
1950 * Output a string to the screen at position msg_row, msg_col.
1951 * Update msg_row and msg_col for the next message.
1952 */
1953 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001954msg_puts(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955{
Bram Moolenaaraeac9002016-09-06 22:15:08 +02001956 msg_puts_attr(s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957}
1958
1959 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001960msg_puts_title(
1961 char_u *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 */
1971 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001972msg_puts_long_attr(char_u *longstr, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973{
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001974 msg_puts_long_len_attr(longstr, (int)STRLEN(longstr), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975}
1976
1977 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001978msg_puts_long_len_attr(char_u *longstr, int len, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979{
1980 int slen = len;
1981 int room;
1982
1983 room = Columns - msg_col;
1984 if (len > room && room >= 20)
1985 {
1986 slen = (room - 3) / 2;
1987 msg_outtrans_len_attr(longstr, slen, attr);
Bram Moolenaar8820b482017-03-16 17:23:31 +01001988 msg_puts_attr((char_u *)"...", HL_ATTR(HLF_8));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 }
1990 msg_outtrans_len_attr(longstr + len - slen, slen, attr);
1991}
1992
1993/*
1994 * Basic function for writing a message with highlight attributes.
1995 */
1996 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001997msg_puts_attr(char_u *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 Moolenaar52ea13d2016-01-30 18:51:09 +01002008msg_puts_attr_len(char_u *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 Moolenaar87e25fd2005-07-27 21:13:01 +00002013 redir_write(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 Moolenaar87e25fd2005-07-27 21:13:01 +00002024 add_msg_hist(str, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 attr &= ~MSG_HIST;
2026 }
2027
2028 /*
2029 * When writing something to the screen after it has scrolled, requires a
2030 * wait-return prompt later. Needed when scrolling, resetting
2031 * need_wait_return after some prompt, and then outputting something
2032 * without scrolling
2033 */
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002034 if (msg_scrolled != 0 && !msg_scrolled_ign)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 need_wait_return = TRUE;
2036 msg_didany = TRUE; /* remember that something was outputted */
2037
2038 /*
2039 * If there is no valid screen, use fprintf so we can see error messages.
2040 * If termcap is not active, we may be writing in an alternate console
2041 * window, cursor positioning may not work correctly (window size may be
2042 * different, e.g. for Win32 console) or we just don't know where the
2043 * cursor is.
2044 */
2045 if (msg_use_printf())
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002046 msg_puts_printf(str, maxlen);
2047 else
2048 msg_puts_display(str, maxlen, attr, FALSE);
2049}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002051/*
2052 * The display part of msg_puts_attr_len().
2053 * May be called recursively to display scroll-back text.
2054 */
2055 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002056msg_puts_display(
2057 char_u *str,
2058 int maxlen,
2059 int attr,
2060 int recurse)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002061{
2062 char_u *s = str;
2063 char_u *t_s = str; /* string from "t_s" to "s" is still todo */
2064 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */
2065#ifdef FEAT_MBYTE
2066 int l;
2067 int cw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002069 char_u *sb_str = str;
2070 int sb_col = msg_col;
2071 int wrap;
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002072 int did_last_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073
2074 did_wait_return = FALSE;
Bram Moolenaar57b7fe82007-08-05 17:20:43 +00002075 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 {
2077 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002078 * We are at the end of the screen line when:
2079 * - When outputting a newline.
2080 * - When outputting a character in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002082 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083#ifdef FEAT_RIGHTLEFT
2084 cmdmsg_rl
2085 ? (
2086 msg_col <= 1
2087 || (*s == TAB && msg_col <= 7)
2088# ifdef FEAT_MBYTE
2089 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2)
2090# endif
2091 )
2092 :
2093#endif
2094 (msg_col + t_col >= Columns - 1
2095 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7))
2096# ifdef FEAT_MBYTE
2097 || (has_mbyte && (*mb_ptr2cells)(s) > 1
2098 && msg_col + t_col >= Columns - 2)
2099# endif
2100 ))))
2101 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002102 /*
2103 * The screen is scrolled up when at the last row (some terminals
2104 * scroll automatically, some don't. To avoid problems we scroll
2105 * ourselves).
2106 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 if (t_col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 /* output postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002109 t_puts(&t_col, t_s, s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002111 /* When no more prompt and no more room, truncate here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 if (msg_no_more && lines_left == 0)
2113 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002115 /* Scroll the screen up one line. */
2116 msg_scroll_up();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117
2118 msg_row = Rows - 2;
2119 if (msg_col >= Columns) /* can happen after screen resize */
2120 msg_col = Columns - 1;
2121
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002122 /* Display char in last column before showing more-prompt. */
2123 if (*s >= ' '
2124#ifdef FEAT_RIGHTLEFT
2125 && !cmdmsg_rl
2126#endif
2127 )
2128 {
2129#ifdef FEAT_MBYTE
2130 if (has_mbyte)
2131 {
2132 if (enc_utf8 && maxlen >= 0)
2133 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002134 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002135 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002136 l = (*mb_ptr2len)(s);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002137 s = screen_puts_mbyte(s, l, attr);
2138 }
2139 else
2140#endif
2141 msg_screen_putchar(*s++, attr);
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002142 did_last_char = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002143 }
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002144 else
2145 did_last_char = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002146
2147 if (p_more)
2148 /* store text for scrolling back */
2149 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
2150
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002151 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002152 need_wait_return = TRUE; /* may need wait_return in main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 redraw_cmdline = TRUE;
2154 if (cmdline_row > 0 && !exmode_active)
2155 --cmdline_row;
2156
2157 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002158 * If screen is completely filled and 'more' is set then wait
2159 * for a character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 */
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002161 if (lines_left > 0)
2162 --lines_left;
Bram Moolenaar203335e2006-09-03 14:35:42 +00002163 if (p_more && lines_left == 0 && State != HITRETURN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 && !msg_no_more && !exmode_active)
2165 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166#ifdef FEAT_CON_DIALOG
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002167 if (do_more_prompt(NUL))
2168 s = confirm_msg_tail;
2169#else
2170 (void)do_more_prompt(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171#endif
2172 if (quit_more)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002173 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 }
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002175
2176 /* When we displayed a char in last column need to check if there
2177 * is still more. */
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002178 if (did_last_char)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002179 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 }
2181
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002182 wrap = *s == '\n'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 || msg_col + t_col >= Columns
2184#ifdef FEAT_MBYTE
2185 || (has_mbyte && (*mb_ptr2cells)(s) > 1
2186 && msg_col + t_col >= Columns - 1)
2187#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002188 ;
2189 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b'
2190 || *s == '\t' || *s == BELL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 /* output any postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002192 t_puts(&t_col, t_s, s, attr);
2193
2194 if (wrap && p_more && !recurse)
2195 /* store text for scrolling back */
2196 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197
2198 if (*s == '\n') /* go to next line */
2199 {
2200 msg_didout = FALSE; /* remember that line is empty */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002201#ifdef FEAT_RIGHTLEFT
2202 if (cmdmsg_rl)
2203 msg_col = Columns - 1;
2204 else
2205#endif
2206 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 if (++msg_row >= Rows) /* safety check */
2208 msg_row = Rows - 1;
2209 }
2210 else if (*s == '\r') /* go to column 0 */
2211 {
2212 msg_col = 0;
2213 }
2214 else if (*s == '\b') /* go to previous char */
2215 {
2216 if (msg_col)
2217 --msg_col;
2218 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002219 else if (*s == TAB) /* translate Tab into spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 {
2221 do
2222 msg_screen_putchar(' ', attr);
2223 while (msg_col & 7);
2224 }
Bram Moolenaar165bc692015-07-21 17:53:25 +02002225 else if (*s == BELL) /* beep (from ":sh") */
2226 vim_beep(BO_SH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 else
2228 {
2229#ifdef FEAT_MBYTE
2230 if (has_mbyte)
2231 {
2232 cw = (*mb_ptr2cells)(s);
2233 if (enc_utf8 && maxlen >= 0)
2234 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002235 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002237 l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 }
2239 else
2240 {
2241 cw = 1;
2242 l = 1;
2243 }
2244#endif
2245 /* When drawing from right to left or when a double-wide character
2246 * doesn't fit, draw a single character here. Otherwise collect
2247 * characters and draw them all at once later. */
2248#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
2249 if (
2250# ifdef FEAT_RIGHTLEFT
2251 cmdmsg_rl
2252# ifdef FEAT_MBYTE
2253 ||
2254# endif
2255# endif
2256# ifdef FEAT_MBYTE
2257 (cw > 1 && msg_col + t_col >= Columns - 1)
2258# endif
2259 )
2260 {
2261# ifdef FEAT_MBYTE
2262 if (l > 1)
2263 s = screen_puts_mbyte(s, l, attr) - 1;
2264 else
2265# endif
2266 msg_screen_putchar(*s, attr);
2267 }
2268 else
2269#endif
2270 {
2271 /* postpone this character until later */
2272 if (t_col == 0)
2273 t_s = s;
2274#ifdef FEAT_MBYTE
2275 t_col += cw;
2276 s += l - 1;
2277#else
2278 ++t_col;
2279#endif
2280 }
2281 }
2282 ++s;
2283 }
2284
2285 /* output any postponed text */
2286 if (t_col > 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002287 t_puts(&t_col, t_s, s, attr);
2288 if (p_more && !recurse)
2289 store_sb_text(&sb_str, s, attr, &sb_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290
2291 msg_check();
2292}
2293
2294/*
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002295 * Return TRUE when ":filter pattern" was used and "msg" does not match
2296 * "pattern".
2297 */
2298 int
2299message_filtered(char_u *msg)
2300{
Bram Moolenaard29459b2016-08-26 22:29:11 +02002301 int match;
2302
2303 if (cmdmod.filter_regmatch.regprog == NULL)
2304 return FALSE;
2305 match = vim_regexec(&cmdmod.filter_regmatch, msg, (colnr_T)0);
2306 return cmdmod.filter_force ? match : !match;
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002307}
2308
2309/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002310 * Scroll the screen up one line for displaying the next message line.
2311 */
2312 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002313msg_scroll_up(void)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002314{
2315#ifdef FEAT_GUI
2316 /* Remove the cursor before scrolling, ScreenLines[] is going
2317 * to become invalid. */
2318 if (gui.in_use)
2319 gui_undraw_cursor();
2320#endif
2321 /* scrolling up always works */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002322 mch_disable_flush();
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002323 screen_del_lines(0, 0, 1, (int)Rows, TRUE, 0, NULL);
Bram Moolenaara338adc2018-01-31 20:51:47 +01002324 mch_enable_flush();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002325
2326 if (!can_clear((char_u *)" "))
2327 {
2328 /* Scrolling up doesn't result in the right background. Set the
2329 * background here. It's not efficient, but avoids that we have to do
2330 * it all over the code. */
2331 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2332
2333 /* Also clear the last char of the last but one line if it was not
2334 * cleared before to avoid a scroll-up. */
2335 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1)
2336 screen_fill((int)Rows - 2, (int)Rows - 1,
2337 (int)Columns - 1, (int)Columns, ' ', ' ', 0);
2338 }
2339}
2340
2341/*
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002342 * Increment "msg_scrolled".
2343 */
2344 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002345inc_msg_scrolled(void)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002346{
2347#ifdef FEAT_EVAL
2348 if (*get_vim_var_str(VV_SCROLLSTART) == NUL)
2349 {
2350 char_u *p = sourcing_name;
2351 char_u *tofree = NULL;
2352 int len;
2353
2354 /* v:scrollstart is empty, set it to the script/function name and line
2355 * number */
2356 if (p == NULL)
2357 p = (char_u *)_("Unknown");
2358 else
2359 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002360 len = (int)STRLEN(p) + 40;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002361 tofree = alloc(len);
2362 if (tofree != NULL)
2363 {
2364 vim_snprintf((char *)tofree, len, _("%s line %ld"),
2365 p, (long)sourcing_lnum);
2366 p = tofree;
2367 }
2368 }
2369 set_vim_var_string(VV_SCROLLSTART, p, -1);
2370 vim_free(tofree);
2371 }
2372#endif
2373 ++msg_scrolled;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002374 if (must_redraw < VALID)
2375 must_redraw = VALID;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002376}
2377
2378/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002379 * To be able to scroll back at the "more" and "hit-enter" prompts we need to
2380 * store the displayed text and remember where screen lines start.
2381 */
2382typedef struct msgchunk_S msgchunk_T;
2383struct msgchunk_S
2384{
2385 msgchunk_T *sb_next;
2386 msgchunk_T *sb_prev;
2387 char sb_eol; /* TRUE when line ends after this text */
2388 int sb_msg_col; /* column in which text starts */
2389 int sb_attr; /* text attributes */
2390 char_u sb_text[1]; /* text to be displayed, actually longer */
2391};
2392
2393static msgchunk_T *last_msgchunk = NULL; /* last displayed text */
2394
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01002395static msgchunk_T *msg_sb_start(msgchunk_T *mps);
2396static msgchunk_T *disp_sb_line(int row, msgchunk_T *smp);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002397
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002398typedef enum {
2399 SB_CLEAR_NONE = 0,
2400 SB_CLEAR_ALL,
2401 SB_CLEAR_CMDLINE_BUSY,
2402 SB_CLEAR_CMDLINE_DONE
2403} sb_clear_T;
2404
2405/* When to clear text on next msg. */
2406static sb_clear_T do_clear_sb_text = SB_CLEAR_NONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002407
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002408/*
2409 * Store part of a printed message for displaying when scrolling back.
2410 */
2411 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002412store_sb_text(
2413 char_u **sb_str, /* start of string */
2414 char_u *s, /* just after string */
2415 int attr,
2416 int *sb_col,
2417 int finish) /* line ends */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002418{
2419 msgchunk_T *mp;
2420
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002421 if (do_clear_sb_text == SB_CLEAR_ALL
2422 || do_clear_sb_text == SB_CLEAR_CMDLINE_DONE)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002423 {
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002424 clear_sb_text(do_clear_sb_text == SB_CLEAR_ALL);
2425 do_clear_sb_text = SB_CLEAR_NONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002426 }
2427
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002428 if (s > *sb_str)
2429 {
2430 mp = (msgchunk_T *)alloc((int)(sizeof(msgchunk_T) + (s - *sb_str)));
2431 if (mp != NULL)
2432 {
2433 mp->sb_eol = finish;
2434 mp->sb_msg_col = *sb_col;
2435 mp->sb_attr = attr;
2436 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str);
2437
2438 if (last_msgchunk == NULL)
2439 {
2440 last_msgchunk = mp;
2441 mp->sb_prev = NULL;
2442 }
2443 else
2444 {
2445 mp->sb_prev = last_msgchunk;
2446 last_msgchunk->sb_next = mp;
2447 last_msgchunk = mp;
2448 }
2449 mp->sb_next = NULL;
2450 }
2451 }
2452 else if (finish && last_msgchunk != NULL)
2453 last_msgchunk->sb_eol = TRUE;
2454
2455 *sb_str = s;
2456 *sb_col = 0;
2457}
2458
2459/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002460 * Finished showing messages, clear the scroll-back text on the next message.
2461 */
2462 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002463may_clear_sb_text(void)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002464{
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002465 do_clear_sb_text = SB_CLEAR_ALL;
2466}
2467
2468/*
2469 * Starting to edit the command line, do not clear messages now.
2470 */
2471 void
2472sb_text_start_cmdline(void)
2473{
2474 do_clear_sb_text = SB_CLEAR_CMDLINE_BUSY;
2475 msg_sb_eol();
2476}
2477
2478/*
2479 * Ending to edit the command line. Clear old lines but the last one later.
2480 */
2481 void
2482sb_text_end_cmdline(void)
2483{
2484 do_clear_sb_text = SB_CLEAR_CMDLINE_DONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002485}
2486
2487/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002488 * Clear any text remembered for scrolling back.
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002489 * When "all" is FALSE keep the last line.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002490 * Called when redrawing the screen.
2491 */
2492 void
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002493clear_sb_text(int all)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002494{
2495 msgchunk_T *mp;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002496 msgchunk_T **lastp;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002497
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002498 if (all)
2499 lastp = &last_msgchunk;
2500 else
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002501 {
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002502 if (last_msgchunk == NULL)
2503 return;
2504 lastp = &last_msgchunk->sb_prev;
2505 }
2506
2507 while (*lastp != NULL)
2508 {
2509 mp = (*lastp)->sb_prev;
2510 vim_free(*lastp);
2511 *lastp = mp;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002512 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002513}
2514
2515/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002516 * "g<" command.
2517 */
2518 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002519show_sb_text(void)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002520{
2521 msgchunk_T *mp;
2522
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002523 /* Only show something if there is more than one line, otherwise it looks
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002524 * weird, typing a command without output results in one line. */
2525 mp = msg_sb_start(last_msgchunk);
2526 if (mp == NULL || mp->sb_prev == NULL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02002527 vim_beep(BO_MESS);
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002528 else
2529 {
2530 do_more_prompt('G');
2531 wait_return(FALSE);
2532 }
2533}
2534
2535/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002536 * Move to the start of screen line in already displayed text.
2537 */
2538 static msgchunk_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002539msg_sb_start(msgchunk_T *mps)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002540{
2541 msgchunk_T *mp = mps;
2542
2543 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol)
2544 mp = mp->sb_prev;
2545 return mp;
2546}
2547
2548/*
Bram Moolenaar6df5e5a2012-03-28 16:49:29 +02002549 * Mark the last message chunk as finishing the line.
2550 */
2551 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002552msg_sb_eol(void)
Bram Moolenaar6df5e5a2012-03-28 16:49:29 +02002553{
2554 if (last_msgchunk != NULL)
2555 last_msgchunk->sb_eol = TRUE;
2556}
2557
2558/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002559 * Display a screen line from previously displayed text at row "row".
2560 * Returns a pointer to the text for the next line (can be NULL).
2561 */
2562 static msgchunk_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002563disp_sb_line(int row, msgchunk_T *smp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002564{
2565 msgchunk_T *mp = smp;
2566 char_u *p;
2567
2568 for (;;)
2569 {
2570 msg_row = row;
2571 msg_col = mp->sb_msg_col;
2572 p = mp->sb_text;
2573 if (*p == '\n') /* don't display the line break */
2574 ++p;
2575 msg_puts_display(p, -1, mp->sb_attr, TRUE);
2576 if (mp->sb_eol || mp->sb_next == NULL)
2577 break;
2578 mp = mp->sb_next;
2579 }
2580 return mp->sb_next;
2581}
2582
2583/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 * Output any postponed text for msg_puts_attr_len().
2585 */
2586 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002587t_puts(
2588 int *t_col,
2589 char_u *t_s,
2590 char_u *s,
2591 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592{
2593 /* output postponed text */
2594 msg_didout = TRUE; /* remember that line is not empty */
2595 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002596 msg_col += *t_col;
2597 *t_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598#ifdef FEAT_MBYTE
2599 /* If the string starts with a composing character don't increment the
2600 * column position for it. */
2601 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s)))
2602 --msg_col;
2603#endif
2604 if (msg_col >= Columns)
2605 {
2606 msg_col = 0;
2607 ++msg_row;
2608 }
2609}
2610
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611/*
2612 * Returns TRUE when messages should be printed with mch_errmsg().
2613 * This is used when there is no valid screen, so we can see error messages.
2614 * If termcap is not active, we may be writing in an alternate console
2615 * window, cursor positioning may not work correctly (window size may be
2616 * different, e.g. for Win32 console) or we just don't know where the
2617 * cursor is.
2618 */
2619 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002620msg_use_printf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621{
2622 return (!msg_check_screen()
2623#if defined(WIN3264) && !defined(FEAT_GUI_MSWIN)
2624 || !termcap_active
2625#endif
2626 || (swapping_screen() && !termcap_active)
2627 );
2628}
2629
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002630/*
2631 * Print a message when there is no valid screen.
2632 */
2633 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002634msg_puts_printf(char_u *str, int maxlen)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002635{
2636 char_u *s = str;
2637 char_u buf[4];
2638 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002639#ifdef WIN3264
Bram Moolenaar01efafa2017-08-03 17:37:48 +02002640# if defined(FEAT_MBYTE) && !defined(FEAT_GUI_MSWIN)
2641 char_u *ccp = NULL;
2642
2643# endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002644 if (!(silent_mode && p_verbose == 0))
2645 mch_settmode(TMODE_COOK); /* handle '\r' and '\n' correctly */
Bram Moolenaar01efafa2017-08-03 17:37:48 +02002646
2647# if defined(FEAT_MBYTE) && !defined(FEAT_GUI_MSWIN)
2648 if (enc_codepage >= 0 && (int)GetConsoleCP() != enc_codepage)
2649 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02002650 int inlen = (int)STRLEN(str);
Bram Moolenaar1b66c002017-08-03 18:55:00 +02002651 int outlen;
2652 WCHAR *widestr = (WCHAR *)enc_to_utf16(str, &inlen);
Bram Moolenaar01efafa2017-08-03 17:37:48 +02002653
2654 if (widestr != NULL)
2655 {
Bram Moolenaar1b66c002017-08-03 18:55:00 +02002656 WideCharToMultiByte_alloc(GetConsoleCP(), 0, widestr, inlen,
2657 (LPSTR *)&ccp, &outlen, 0, 0);
Bram Moolenaar01efafa2017-08-03 17:37:48 +02002658 vim_free(widestr);
2659 s = str = ccp;
2660 }
2661 }
2662# endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002663#endif
Bram Moolenaar2321ca22016-09-09 14:17:18 +02002664 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002665 {
2666 if (!(silent_mode && p_verbose == 0))
2667 {
2668 /* NL --> CR NL translation (for Unix, not for "--version") */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002669 p = &buf[0];
2670 if (*s == '\n' && !info_message)
2671 *p++ = '\r';
Bram Moolenaard0573012017-10-28 21:11:06 +02002672#if defined(USE_CR)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002673 else
2674#endif
2675 *p++ = *s;
2676 *p = '\0';
2677 if (info_message) /* informative message, not an error */
2678 mch_msg((char *)buf);
2679 else
2680 mch_errmsg((char *)buf);
2681 }
2682
2683 /* primitive way to compute the current column */
2684#ifdef FEAT_RIGHTLEFT
2685 if (cmdmsg_rl)
2686 {
2687 if (*s == '\r' || *s == '\n')
2688 msg_col = Columns - 1;
2689 else
2690 --msg_col;
2691 }
2692 else
2693#endif
2694 {
2695 if (*s == '\r' || *s == '\n')
2696 msg_col = 0;
2697 else
2698 ++msg_col;
2699 }
2700 ++s;
2701 }
2702 msg_didout = TRUE; /* assume that line is not empty */
2703
2704#ifdef WIN3264
Bram Moolenaar01efafa2017-08-03 17:37:48 +02002705# if defined(FEAT_MBYTE) && !defined(FEAT_GUI_MSWIN)
2706 vim_free(ccp);
2707# endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002708 if (!(silent_mode && p_verbose == 0))
2709 mch_settmode(TMODE_RAW);
2710#endif
2711}
2712
2713/*
2714 * Show the more-prompt and handle the user response.
2715 * This takes care of scrolling back and displaying previously displayed text.
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002716 * When at hit-enter prompt "typed_char" is the already typed character,
2717 * otherwise it's NUL.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002718 * Returns TRUE when jumping ahead to "confirm_msg_tail".
2719 */
2720 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002721do_more_prompt(int typed_char)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002722{
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002723 static int entered = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002724 int used_typed_char = typed_char;
2725 int oldState = State;
2726 int c;
2727#ifdef FEAT_CON_DIALOG
2728 int retval = FALSE;
2729#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002730 int toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002731 msgchunk_T *mp_last = NULL;
2732 msgchunk_T *mp;
2733 int i;
2734
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002735 /* We get called recursively when a timer callback outputs a message. In
Bram Moolenaara0055ad2016-06-02 18:37:05 +02002736 * that case don't show another prompt. Also when at the hit-Enter prompt
2737 * and nothing was typed. */
2738 if (entered || (State == HITRETURN && typed_char == 0))
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002739 return FALSE;
2740 entered = TRUE;
2741
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002742 if (typed_char == 'G')
2743 {
2744 /* "g<": Find first line on the last page. */
2745 mp_last = msg_sb_start(last_msgchunk);
2746 for (i = 0; i < Rows - 2 && mp_last != NULL
2747 && mp_last->sb_prev != NULL; ++i)
2748 mp_last = msg_sb_start(mp_last->sb_prev);
2749 }
2750
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002751 State = ASKMORE;
2752#ifdef FEAT_MOUSE
2753 setmouse();
2754#endif
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002755 if (typed_char == NUL)
2756 msg_moremsg(FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002757 for (;;)
2758 {
2759 /*
2760 * Get a typed character directly from the user.
2761 */
2762 if (used_typed_char != NUL)
2763 {
2764 c = used_typed_char; /* was typed at hit-enter prompt */
2765 used_typed_char = NUL;
2766 }
2767 else
2768 c = get_keystroke();
2769
2770#if defined(FEAT_MENU) && defined(FEAT_GUI)
2771 if (c == K_MENU)
2772 {
2773 int idx = get_menu_index(current_menu, ASKMORE);
2774
2775 /* Used a menu. If it starts with CTRL-Y, it must
2776 * be a "Copy" for the clipboard. Otherwise
2777 * assume that we end */
2778 if (idx == MENU_INDEX_INVALID)
2779 continue;
2780 c = *current_menu->strings[idx];
2781 if (c != NUL && current_menu->strings[idx][1] != NUL)
2782 ins_typebuf(current_menu->strings[idx] + 1,
2783 current_menu->noremap[idx], 0, TRUE,
2784 current_menu->silent[idx]);
2785 }
2786#endif
2787
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002788 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002789 switch (c)
2790 {
2791 case BS: /* scroll one line back */
2792 case K_BS:
2793 case 'k':
2794 case K_UP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002795 toscroll = -1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002796 break;
2797
2798 case CAR: /* one extra line */
2799 case NL:
2800 case 'j':
2801 case K_DOWN:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002802 toscroll = 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002803 break;
2804
2805 case 'u': /* Up half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002806 toscroll = -(Rows / 2);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002807 break;
2808
2809 case 'd': /* Down half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002810 toscroll = Rows / 2;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002811 break;
2812
2813 case 'b': /* one page back */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002814 case K_PAGEUP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002815 toscroll = -(Rows - 1);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002816 break;
2817
2818 case ' ': /* one extra page */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002819 case 'f':
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002820 case K_PAGEDOWN:
2821 case K_LEFTMOUSE:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002822 toscroll = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002823 break;
2824
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002825 case 'g': /* all the way back to the start */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002826 toscroll = -999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002827 break;
2828
2829 case 'G': /* all the way to the end */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002830 toscroll = 999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002831 lines_left = 999999;
2832 break;
2833
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002834 case ':': /* start new command line */
2835#ifdef FEAT_CON_DIALOG
2836 if (!confirm_msg_used)
2837#endif
2838 {
2839 /* Since got_int is set all typeahead will be flushed, but we
2840 * want to keep this ':', remember that in a special way. */
2841 typeahead_noflush(':');
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02002842#ifdef FEAT_TERMINAL
2843 skip_term_loop = TRUE;
2844#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002845 cmdline_row = Rows - 1; /* put ':' on this line */
2846 skip_redraw = TRUE; /* skip redraw once */
2847 need_wait_return = FALSE; /* don't wait in main() */
2848 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002849 /* FALLTHROUGH */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002850 case 'q': /* quit */
2851 case Ctrl_C:
2852 case ESC:
2853#ifdef FEAT_CON_DIALOG
2854 if (confirm_msg_used)
2855 {
2856 /* Jump to the choices of the dialog. */
2857 retval = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002858 }
2859 else
2860#endif
2861 {
2862 got_int = TRUE;
2863 quit_more = TRUE;
2864 }
Bram Moolenaar51306d22009-02-24 03:38:04 +00002865 /* When there is some more output (wrapping line) display that
2866 * without another prompt. */
2867 lines_left = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002868 break;
2869
2870#ifdef FEAT_CLIPBOARD
2871 case Ctrl_Y:
2872 /* Strange way to allow copying (yanking) a modeless
2873 * selection at the more prompt. Use CTRL-Y,
2874 * because the same is used in Cmdline-mode and at the
2875 * hit-enter prompt. However, scrolling one line up
2876 * might be expected... */
2877 if (clip_star.state == SELECT_DONE)
2878 clip_copy_modeless_selection(TRUE);
2879 continue;
2880#endif
2881 default: /* no valid response */
2882 msg_moremsg(TRUE);
2883 continue;
2884 }
2885
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002886 if (toscroll != 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002887 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002888 if (toscroll < 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002889 {
2890 /* go to start of last line */
2891 if (mp_last == NULL)
2892 mp = msg_sb_start(last_msgchunk);
2893 else if (mp_last->sb_prev != NULL)
2894 mp = msg_sb_start(mp_last->sb_prev);
2895 else
2896 mp = NULL;
2897
2898 /* go to start of line at top of the screen */
2899 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL;
2900 ++i)
2901 mp = msg_sb_start(mp->sb_prev);
2902
2903 if (mp != NULL && mp->sb_prev != NULL)
2904 {
2905 /* Find line to be displayed at top. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002906 for (i = 0; i > toscroll; --i)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002907 {
2908 if (mp == NULL || mp->sb_prev == NULL)
2909 break;
2910 mp = msg_sb_start(mp->sb_prev);
2911 if (mp_last == NULL)
2912 mp_last = msg_sb_start(last_msgchunk);
2913 else
2914 mp_last = msg_sb_start(mp_last->sb_prev);
2915 }
2916
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002917 if (toscroll == -1 && screen_ins_lines(0, 0, 1,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002918 (int)Rows, 0, NULL) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002919 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002920 /* display line at top */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002921 (void)disp_sb_line(0, mp);
2922 }
2923 else
2924 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002925 /* redisplay all lines */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002926 screenclear();
Bram Moolenaar773560b2006-05-06 21:38:18 +00002927 for (i = 0; mp != NULL && i < Rows - 1; ++i)
2928 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002929 mp = disp_sb_line(i, mp);
Bram Moolenaar773560b2006-05-06 21:38:18 +00002930 ++msg_scrolled;
2931 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002932 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002933 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002934 }
2935 }
2936 else
2937 {
2938 /* First display any text that we scrolled back. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002939 while (toscroll > 0 && mp_last != NULL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002940 {
2941 /* scroll up, display line at bottom */
2942 msg_scroll_up();
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002943 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002944 screen_fill((int)Rows - 2, (int)Rows - 1, 0,
2945 (int)Columns, ' ', ' ', 0);
2946 mp_last = disp_sb_line((int)Rows - 2, mp_last);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002947 --toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002948 }
2949 }
2950
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002951 if (toscroll <= 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002952 {
2953 /* displayed the requested text, more prompt again */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002954 screen_fill((int)Rows - 1, (int)Rows, 0,
2955 (int)Columns, ' ', ' ', 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002956 msg_moremsg(FALSE);
2957 continue;
2958 }
2959
2960 /* display more text, return to caller */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002961 lines_left = toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002962 }
2963
2964 break;
2965 }
2966
2967 /* clear the --more-- message */
2968 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2969 State = oldState;
2970#ifdef FEAT_MOUSE
2971 setmouse();
2972#endif
2973 if (quit_more)
2974 {
2975 msg_row = Rows - 1;
2976 msg_col = 0;
2977 }
2978#ifdef FEAT_RIGHTLEFT
2979 else if (cmdmsg_rl)
2980 msg_col = Columns - 1;
2981#endif
2982
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002983 entered = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002984#ifdef FEAT_CON_DIALOG
2985 return retval;
2986#else
2987 return FALSE;
2988#endif
2989}
2990
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991#if defined(USE_MCH_ERRMSG) || defined(PROTO)
2992
2993#ifdef mch_errmsg
2994# undef mch_errmsg
2995#endif
2996#ifdef mch_msg
2997# undef mch_msg
2998#endif
2999
3000/*
3001 * Give an error message. To be used when the screen hasn't been initialized
3002 * yet. When stderr can't be used, collect error messages until the GUI has
3003 * started and they can be displayed in a message box.
3004 */
3005 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003006mch_errmsg(char *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007{
3008 int len;
3009
3010#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
3011 /* On Unix use stderr if it's a tty.
3012 * When not going to start the GUI also use stderr.
3013 * On Mac, when started from Finder, stderr is the console. */
3014 if (
3015# ifdef UNIX
Bram Moolenaard0573012017-10-28 21:11:06 +02003016# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
3018# else
3019 isatty(2)
3020# endif
3021# ifdef FEAT_GUI
3022 ||
3023# endif
3024# endif
3025# ifdef FEAT_GUI
3026 !(gui.in_use || gui.starting)
3027# endif
3028 )
3029 {
3030 fprintf(stderr, "%s", str);
3031 return;
3032 }
3033#endif
3034
3035 /* avoid a delay for a message that isn't there */
3036 emsg_on_display = FALSE;
3037
3038 len = (int)STRLEN(str) + 1;
3039 if (error_ga.ga_growsize == 0)
3040 {
3041 error_ga.ga_growsize = 80;
3042 error_ga.ga_itemsize = 1;
3043 }
3044 if (ga_grow(&error_ga, len) == OK)
3045 {
3046 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len,
3047 (char_u *)str, len);
3048#ifdef UNIX
3049 /* remove CR characters, they are displayed */
3050 {
3051 char_u *p;
3052
3053 p = (char_u *)error_ga.ga_data + error_ga.ga_len;
3054 for (;;)
3055 {
3056 p = vim_strchr(p, '\r');
3057 if (p == NULL)
3058 break;
3059 *p = ' ';
3060 }
3061 }
3062#endif
3063 --len; /* don't count the NUL at the end */
3064 error_ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 }
3066}
3067
3068/*
3069 * Give a message. To be used when the screen hasn't been initialized yet.
3070 * When there is no tty, collect messages until the GUI has started and they
3071 * can be displayed in a message box.
3072 */
3073 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003074mch_msg(char *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075{
3076#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
3077 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and
3078 * uses mch_errmsg() when started from the desktop.
3079 * When not going to start the GUI also use stdout.
3080 * On Mac, when started from Finder, stderr is the console. */
3081 if (
3082# ifdef UNIX
Bram Moolenaard0573012017-10-28 21:11:06 +02003083# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
3085# else
3086 isatty(2)
3087# endif
3088# ifdef FEAT_GUI
3089 ||
3090# endif
3091# endif
3092# ifdef FEAT_GUI
3093 !(gui.in_use || gui.starting)
3094# endif
3095 )
3096 {
3097 printf("%s", str);
3098 return;
3099 }
3100# endif
3101 mch_errmsg(str);
3102}
3103#endif /* USE_MCH_ERRMSG */
3104
3105/*
3106 * Put a character on the screen at the current message position and advance
3107 * to the next position. Only for printable ASCII!
3108 */
3109 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003110msg_screen_putchar(int c, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111{
3112 msg_didout = TRUE; /* remember that line is not empty */
3113 screen_putchar(c, msg_row, msg_col, attr);
3114#ifdef FEAT_RIGHTLEFT
3115 if (cmdmsg_rl)
3116 {
3117 if (--msg_col == 0)
3118 {
3119 msg_col = Columns;
3120 ++msg_row;
3121 }
3122 }
3123 else
3124#endif
3125 {
3126 if (++msg_col >= Columns)
3127 {
3128 msg_col = 0;
3129 ++msg_row;
3130 }
3131 }
3132}
3133
3134 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003135msg_moremsg(int full)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003137 int attr;
3138 char_u *s = (char_u *)_("-- More --");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139
Bram Moolenaar8820b482017-03-16 17:23:31 +01003140 attr = HL_ATTR(HLF_M);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003141 screen_puts(s, (int)Rows - 1, 0, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142 if (full)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003143 screen_puts((char_u *)
3144 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "),
3145 (int)Rows - 1, vim_strsize(s), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146}
3147
3148/*
3149 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
3150 * exmode_active.
3151 */
3152 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003153repeat_message(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154{
3155 if (State == ASKMORE)
3156 {
3157 msg_moremsg(TRUE); /* display --more-- message again */
3158 msg_row = Rows - 1;
3159 }
3160#ifdef FEAT_CON_DIALOG
3161 else if (State == CONFIRM)
3162 {
3163 display_confirm_msg(); /* display ":confirm" message again */
3164 msg_row = Rows - 1;
3165 }
3166#endif
3167 else if (State == EXTERNCMD)
3168 {
3169 windgoto(msg_row, msg_col); /* put cursor back */
3170 }
3171 else if (State == HITRETURN || State == SETWSIZE)
3172 {
Bram Moolenaar9f108752007-11-24 14:44:58 +00003173 if (msg_row == Rows - 1)
3174 {
3175 /* Avoid drawing the "hit-enter" prompt below the previous one,
3176 * overwrite it. Esp. useful when regaining focus and a
3177 * FocusGained autocmd exists but didn't draw anything. */
3178 msg_didout = FALSE;
3179 msg_col = 0;
3180 msg_clr_eos();
3181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 hit_return_msg();
3183 msg_row = Rows - 1;
3184 }
3185}
3186
3187/*
3188 * msg_check_screen - check if the screen is initialized.
3189 * Also check msg_row and msg_col, if they are too big it may cause a crash.
3190 * While starting the GUI the terminal codes will be set for the GUI, but the
3191 * output goes to the terminal. Don't use the terminal codes then.
3192 */
3193 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003194msg_check_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195{
3196 if (!full_screen || !screen_valid(FALSE))
3197 return FALSE;
3198
3199 if (msg_row >= Rows)
3200 msg_row = Rows - 1;
3201 if (msg_col >= Columns)
3202 msg_col = Columns - 1;
3203 return TRUE;
3204}
3205
3206/*
3207 * Clear from current message position to end of screen.
3208 * Skip this when ":silent" was used, no need to clear for redirection.
3209 */
3210 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003211msg_clr_eos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212{
3213 if (msg_silent == 0)
3214 msg_clr_eos_force();
3215}
3216
3217/*
3218 * Clear from current message position to end of screen.
3219 * Note: msg_col is not updated, so we remember the end of the message
3220 * for msg_check().
3221 */
3222 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003223msg_clr_eos_force(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224{
3225 if (msg_use_printf())
3226 {
3227 if (full_screen) /* only when termcap codes are valid */
3228 {
3229 if (*T_CD)
3230 out_str(T_CD); /* clear to end of display */
3231 else if (*T_CE)
3232 out_str(T_CE); /* clear to end of line */
3233 }
3234 }
3235 else
3236 {
3237#ifdef FEAT_RIGHTLEFT
3238 if (cmdmsg_rl)
3239 {
3240 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0);
3241 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3242 }
3243 else
3244#endif
3245 {
3246 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns,
3247 ' ', ' ', 0);
3248 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3249 }
3250 }
3251}
3252
3253/*
3254 * Clear the command line.
3255 */
3256 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003257msg_clr_cmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258{
3259 msg_row = cmdline_row;
3260 msg_col = 0;
3261 msg_clr_eos_force();
3262}
3263
3264/*
3265 * end putting a message on the screen
3266 * call wait_return if the message does not fit in the available space
3267 * return TRUE if wait_return not called.
3268 */
3269 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003270msg_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271{
3272 /*
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02003273 * If the string is larger than the window,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 * or the ruler option is set and we run into it,
3275 * we have to redraw the window.
3276 * Do not do this if we are abandoning the file or editing the command line.
3277 */
3278 if (!exiting && need_wait_return && !(State & CMDLINE))
3279 {
3280 wait_return(FALSE);
3281 return FALSE;
3282 }
3283 out_flush();
3284 return TRUE;
3285}
3286
3287/*
3288 * If the written message runs into the shown command or ruler, we have to
3289 * wait for hit-return and redraw the window later.
3290 */
3291 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003292msg_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293{
3294 if (msg_row == Rows - 1 && msg_col >= sc_col)
3295 {
3296 need_wait_return = TRUE;
3297 redraw_cmdline = TRUE;
3298 }
3299}
3300
3301/*
3302 * May write a string to the redirection file.
3303 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3304 */
3305 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003306redir_write(char_u *str, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307{
3308 char_u *s = str;
3309 static int cur_col = 0;
3310
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003311 /* Don't do anything for displaying prompts and the like. */
3312 if (redir_off)
3313 return;
3314
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003315 /* If 'verbosefile' is set prepare for writing in that file. */
3316 if (*p_vfile != NUL && verbose_fd == NULL)
3317 verbose_open();
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003318
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003319 if (redirecting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 {
3321 /* If the string doesn't start with CR or NL, go to msg_col */
3322 if (*s != '\n' && *s != '\r')
3323 {
3324 while (cur_col < msg_col)
3325 {
3326#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003327 if (redir_execute)
3328 execute_redir_str((char_u *)" ", -1);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003329 else if (redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003331 else if (redir_vname)
3332 var_redir_str((char_u *)" ", -1);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003333 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003335 if (redir_fd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 fputs(" ", redir_fd);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003337 if (verbose_fd != NULL)
3338 fputs(" ", verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 ++cur_col;
3340 }
3341 }
3342
3343#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003344 if (redir_execute)
3345 execute_redir_str(s, maxlen);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003346 else if (redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 write_reg_contents(redir_reg, s, maxlen, TRUE);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003348 else if (redir_vname)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003349 var_redir_str(s, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350#endif
3351
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003352 /* Write and adjust the current column. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3354 {
3355#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003356 if (!redir_reg && !redir_vname && !redir_execute)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003358 if (redir_fd != NULL)
3359 putc(*s, redir_fd);
3360 if (verbose_fd != NULL)
3361 putc(*s, verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 if (*s == '\r' || *s == '\n')
3363 cur_col = 0;
3364 else if (*s == '\t')
3365 cur_col += (8 - cur_col % 8);
3366 else
3367 ++cur_col;
3368 ++s;
3369 }
3370
3371 if (msg_silent != 0) /* should update msg_col */
3372 msg_col = cur_col;
3373 }
3374}
3375
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003376 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003377redirecting(void)
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003378{
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003379 return redir_fd != NULL || *p_vfile != NUL
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003380#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003381 || redir_reg || redir_vname || redir_execute
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003382#endif
3383 ;
3384}
3385
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386/*
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00003387 * Before giving verbose message.
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003388 * Must always be called paired with verbose_leave()!
3389 */
3390 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003391verbose_enter(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003392{
3393 if (*p_vfile != NUL)
3394 ++msg_silent;
3395}
3396
3397/*
3398 * After giving verbose message.
3399 * Must always be called paired with verbose_enter()!
3400 */
3401 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003402verbose_leave(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003403{
3404 if (*p_vfile != NUL)
3405 if (--msg_silent < 0)
3406 msg_silent = 0;
3407}
3408
3409/*
3410 * Like verbose_enter() and set msg_scroll when displaying the message.
3411 */
3412 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003413verbose_enter_scroll(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003414{
3415 if (*p_vfile != NUL)
3416 ++msg_silent;
3417 else
3418 /* always scroll up, don't overwrite */
3419 msg_scroll = TRUE;
3420}
3421
3422/*
3423 * Like verbose_leave() and set cmdline_row when displaying the message.
3424 */
3425 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003426verbose_leave_scroll(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003427{
3428 if (*p_vfile != NUL)
3429 {
3430 if (--msg_silent < 0)
3431 msg_silent = 0;
3432 }
3433 else
3434 cmdline_row = msg_row;
3435}
3436
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003437/*
3438 * Called when 'verbosefile' is set: stop writing to the file.
3439 */
3440 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003441verbose_stop(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003442{
3443 if (verbose_fd != NULL)
3444 {
3445 fclose(verbose_fd);
3446 verbose_fd = NULL;
3447 }
3448 verbose_did_open = FALSE;
3449}
3450
3451/*
3452 * Open the file 'verbosefile'.
3453 * Return FAIL or OK.
3454 */
3455 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003456verbose_open(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003457{
3458 if (verbose_fd == NULL && !verbose_did_open)
3459 {
3460 /* Only give the error message once. */
3461 verbose_did_open = TRUE;
3462
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003463 verbose_fd = mch_fopen((char *)p_vfile, "a");
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003464 if (verbose_fd == NULL)
3465 {
3466 EMSG2(_(e_notopen), p_vfile);
3467 return FAIL;
3468 }
3469 }
3470 return OK;
3471}
3472
3473/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 * Give a warning message (for searching).
3475 * Use 'w' highlighting and may repeat the message after redrawing
3476 */
3477 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003478give_warning(char_u *message, int hl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479{
3480 /* Don't do this for ":silent". */
3481 if (msg_silent != 0)
3482 return;
3483
3484 /* Don't want a hit-enter prompt here. */
3485 ++no_wait_return;
Bram Moolenaared203462004-06-16 11:19:22 +00003486
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487#ifdef FEAT_EVAL
3488 set_vim_var_string(VV_WARNINGMSG, message, -1);
3489#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003490 VIM_CLEAR(keep_msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 if (hl)
Bram Moolenaar8820b482017-03-16 17:23:31 +01003492 keep_msg_attr = HL_ATTR(HLF_W);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 else
3494 keep_msg_attr = 0;
3495 if (msg_attr(message, keep_msg_attr) && msg_scrolled == 0)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003496 set_keep_msg(message, keep_msg_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 msg_didout = FALSE; /* overwrite this message */
3498 msg_nowait = TRUE; /* don't wait for this message */
3499 msg_col = 0;
Bram Moolenaared203462004-06-16 11:19:22 +00003500
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 --no_wait_return;
3502}
3503
Bram Moolenaarf8be4612017-06-23 20:52:40 +02003504 void
3505give_warning2(char_u *message, char_u *a1, int hl)
3506{
3507 vim_snprintf((char *)IObuff, IOSIZE, (char *)message, a1);
3508 give_warning(IObuff, hl);
3509}
3510
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511/*
3512 * Advance msg cursor to column "col".
3513 */
3514 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003515msg_advance(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516{
3517 if (msg_silent != 0) /* nothing to advance to */
3518 {
3519 msg_col = col; /* for redirection, may fill it up later */
3520 return;
3521 }
3522 if (col >= Columns) /* not enough room */
3523 col = Columns - 1;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003524#ifdef FEAT_RIGHTLEFT
3525 if (cmdmsg_rl)
3526 while (msg_col > Columns - col)
3527 msg_putchar(' ');
3528 else
3529#endif
3530 while (msg_col < col)
3531 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532}
3533
3534#if defined(FEAT_CON_DIALOG) || defined(PROTO)
3535/*
3536 * Used for "confirm()" function, and the :confirm command prefix.
3537 * Versions which haven't got flexible dialogs yet, and console
3538 * versions, get this generic handler which uses the command line.
3539 *
3540 * type = one of:
3541 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC
3542 * title = title string (can be NULL for default)
3543 * (neither used in console dialogs at the moment)
3544 *
3545 * Format of the "buttons" string:
3546 * "Button1Name\nButton2Name\nButton3Name"
3547 * The first button should normally be the default/accept
3548 * The second button should be the 'Cancel' button
3549 * Other buttons- use your imagination!
3550 * A '&' in a button name becomes a shortcut, so each '&' should be before a
3551 * different letter.
3552 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003554do_dialog(
3555 int type UNUSED,
3556 char_u *title UNUSED,
3557 char_u *message,
3558 char_u *buttons,
3559 int dfltbutton,
3560 char_u *textfield UNUSED, /* IObuff for inputdialog(), NULL
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003561 otherwise */
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003562 int ex_cmd) /* when TRUE pressing : accepts default and starts
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003563 Ex command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564{
3565 int oldState;
3566 int retval = 0;
3567 char_u *hotkeys;
3568 int c;
3569 int i;
3570
3571#ifndef NO_CONSOLE
3572 /* Don't output anything in silent mode ("ex -s") */
3573 if (silent_mode)
3574 return dfltbutton; /* return default option */
3575#endif
3576
3577#ifdef FEAT_GUI_DIALOG
3578 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */
3579 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
3580 {
3581 c = gui_mch_dialog(type, title, message, buttons, dfltbutton,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003582 textfield, ex_cmd);
Bram Moolenaar8de49e12009-02-11 17:47:54 +00003583 /* avoid a hit-enter prompt without clearing the cmdline */
3584 need_wait_return = FALSE;
3585 emsg_on_display = FALSE;
3586 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587
3588 /* Flush output to avoid that further messages and redrawing is done
3589 * in the wrong order. */
3590 out_flush();
3591 gui_mch_update();
3592
3593 return c;
3594 }
3595#endif
3596
3597 oldState = State;
3598 State = CONFIRM;
3599#ifdef FEAT_MOUSE
3600 setmouse();
3601#endif
3602
3603 /*
3604 * Since we wait for a keypress, don't make the
3605 * user press RETURN as well afterwards.
3606 */
3607 ++no_wait_return;
3608 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton);
3609
3610 if (hotkeys != NULL)
3611 {
3612 for (;;)
3613 {
3614 /* Get a typed character directly from the user. */
3615 c = get_keystroke();
3616 switch (c)
3617 {
3618 case CAR: /* User accepts default option */
3619 case NL:
3620 retval = dfltbutton;
3621 break;
3622 case Ctrl_C: /* User aborts/cancels */
3623 case ESC:
3624 retval = 0;
3625 break;
3626 default: /* Could be a hotkey? */
3627 if (c < 0) /* special keys are ignored here */
3628 continue;
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003629 if (c == ':' && ex_cmd)
3630 {
3631 retval = dfltbutton;
3632 ins_char_typebuf(':');
3633 break;
3634 }
3635
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 /* Make the character lowercase, as chars in "hotkeys" are. */
3637 c = MB_TOLOWER(c);
3638 retval = 1;
3639 for (i = 0; hotkeys[i]; ++i)
3640 {
3641#ifdef FEAT_MBYTE
3642 if (has_mbyte)
3643 {
3644 if ((*mb_ptr2char)(hotkeys + i) == c)
3645 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003646 i += (*mb_ptr2len)(hotkeys + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 }
3648 else
3649#endif
3650 if (hotkeys[i] == c)
3651 break;
3652 ++retval;
3653 }
3654 if (hotkeys[i])
3655 break;
3656 /* No hotkey match, so keep waiting */
3657 continue;
3658 }
3659 break;
3660 }
3661
3662 vim_free(hotkeys);
3663 }
3664
3665 State = oldState;
3666#ifdef FEAT_MOUSE
3667 setmouse();
3668#endif
3669 --no_wait_return;
3670 msg_end_prompt();
3671
3672 return retval;
3673}
3674
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003675static int copy_char(char_u *from, char_u *to, int lowercase);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676
3677/*
3678 * Copy one character from "*from" to "*to", taking care of multi-byte
3679 * characters. Return the length of the character in bytes.
3680 */
3681 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003682copy_char(
3683 char_u *from,
3684 char_u *to,
3685 int lowercase) /* make character lower case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686{
3687#ifdef FEAT_MBYTE
3688 int len;
3689 int c;
3690
3691 if (has_mbyte)
3692 {
3693 if (lowercase)
3694 {
3695 c = MB_TOLOWER((*mb_ptr2char)(from));
3696 return (*mb_char2bytes)(c, to);
3697 }
3698 else
3699 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003700 len = (*mb_ptr2len)(from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 mch_memmove(to, from, (size_t)len);
3702 return len;
3703 }
3704 }
3705 else
3706#endif
3707 {
3708 if (lowercase)
3709 *to = (char_u)TOLOWER_LOC(*from);
3710 else
3711 *to = *from;
3712 return 1;
3713 }
3714}
3715
3716/*
3717 * Format the dialog string, and display it at the bottom of
3718 * the screen. Return a string of hotkey chars (if defined) for
3719 * each 'button'. If a button has no hotkey defined, the first character of
3720 * the button is used.
3721 * The hotkeys can be multi-byte characters, but without combining chars.
3722 *
3723 * Returns an allocated string with hotkeys, or NULL for error.
3724 */
3725 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003726msg_show_console_dialog(
3727 char_u *message,
3728 char_u *buttons,
3729 int dfltbutton)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730{
3731 int len = 0;
3732#ifdef FEAT_MBYTE
3733# define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1)
3734#else
3735# define HOTK_LEN 1
3736#endif
3737 int lenhotkey = HOTK_LEN; /* count first button */
3738 char_u *hotk = NULL;
3739 char_u *msgp = NULL;
3740 char_u *hotkp = NULL;
3741 char_u *r;
3742 int copy;
3743#define HAS_HOTKEY_LEN 30
3744 char_u has_hotkey[HAS_HOTKEY_LEN];
3745 int first_hotkey = FALSE; /* first char of button is hotkey */
3746 int idx;
3747
3748 has_hotkey[0] = FALSE;
3749
3750 /*
3751 * First loop: compute the size of memory to allocate.
3752 * Second loop: copy to the allocated memory.
3753 */
3754 for (copy = 0; copy <= 1; ++copy)
3755 {
3756 r = buttons;
3757 idx = 0;
3758 while (*r)
3759 {
3760 if (*r == DLG_BUTTON_SEP)
3761 {
3762 if (copy)
3763 {
3764 *msgp++ = ',';
3765 *msgp++ = ' '; /* '\n' -> ', ' */
3766
3767 /* advance to next hotkey and set default hotkey */
3768#ifdef FEAT_MBYTE
3769 if (has_mbyte)
Bram Moolenaar6a516062007-07-05 08:11:42 +00003770 hotkp += STRLEN(hotkp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 else
3772#endif
3773 ++hotkp;
Bram Moolenaar6a516062007-07-05 08:11:42 +00003774 hotkp[copy_char(r + 1, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 if (dfltbutton)
3776 --dfltbutton;
3777
3778 /* If no hotkey is specified first char is used. */
3779 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx])
3780 first_hotkey = TRUE;
3781 }
3782 else
3783 {
3784 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */
3785 lenhotkey += HOTK_LEN; /* each button needs a hotkey */
3786 if (idx < HAS_HOTKEY_LEN - 1)
3787 has_hotkey[++idx] = FALSE;
3788 }
3789 }
3790 else if (*r == DLG_HOTKEY_CHAR || first_hotkey)
3791 {
3792 if (*r == DLG_HOTKEY_CHAR)
3793 ++r;
3794 first_hotkey = FALSE;
3795 if (copy)
3796 {
3797 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */
3798 *msgp++ = *r;
3799 else
3800 {
3801 /* '&a' -> '[a]' */
3802 *msgp++ = (dfltbutton == 1) ? '[' : '(';
3803 msgp += copy_char(r, msgp, FALSE);
3804 *msgp++ = (dfltbutton == 1) ? ']' : ')';
3805
3806 /* redefine hotkey */
Bram Moolenaar6a516062007-07-05 08:11:42 +00003807 hotkp[copy_char(r, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 }
3809 }
3810 else
3811 {
3812 ++len; /* '&a' -> '[a]' */
3813 if (idx < HAS_HOTKEY_LEN - 1)
3814 has_hotkey[idx] = TRUE;
3815 }
3816 }
3817 else
3818 {
3819 /* everything else copy literally */
3820 if (copy)
3821 msgp += copy_char(r, msgp, FALSE);
3822 }
3823
3824 /* advance to the next character */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003825 MB_PTR_ADV(r);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 }
3827
3828 if (copy)
3829 {
3830 *msgp++ = ':';
3831 *msgp++ = ' ';
3832 *msgp = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 }
3834 else
3835 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003836 len += (int)(STRLEN(message)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003837 + 2 /* for the NL's */
3838 + STRLEN(buttons)
3839 + 3); /* for the ": " and NUL */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003840 lenhotkey++; /* for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841
3842 /* If no hotkey is specified first char is used. */
3843 if (!has_hotkey[0])
3844 {
3845 first_hotkey = TRUE;
3846 len += 2; /* "x" -> "[x]" */
3847 }
3848
3849 /*
3850 * Now allocate and load the strings
3851 */
3852 vim_free(confirm_msg);
3853 confirm_msg = alloc(len);
3854 if (confirm_msg == NULL)
3855 return NULL;
3856 *confirm_msg = NUL;
3857 hotk = alloc(lenhotkey);
3858 if (hotk == NULL)
3859 return NULL;
3860
3861 *confirm_msg = '\n';
3862 STRCPY(confirm_msg + 1, message);
3863
3864 msgp = confirm_msg + 1 + STRLEN(message);
3865 hotkp = hotk;
3866
Bram Moolenaar6a516062007-07-05 08:11:42 +00003867 /* Define first default hotkey. Keep the hotkey string NUL
3868 * terminated to avoid reading past the end. */
3869 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870
3871 /* Remember where the choices start, displaying starts here when
3872 * "hotkp" typed at the more prompt. */
3873 confirm_msg_tail = msgp;
3874 *msgp++ = '\n';
3875 }
3876 }
3877
3878 display_confirm_msg();
3879 return hotk;
3880}
3881
3882/*
3883 * Display the ":confirm" message. Also called when screen resized.
3884 */
3885 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003886display_confirm_msg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887{
3888 /* avoid that 'q' at the more prompt truncates the message here */
3889 ++confirm_msg_used;
3890 if (confirm_msg != NULL)
Bram Moolenaar8820b482017-03-16 17:23:31 +01003891 msg_puts_attr(confirm_msg, HL_ATTR(HLF_M));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 --confirm_msg_used;
3893}
3894
3895#endif /* FEAT_CON_DIALOG */
3896
3897#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
3898
3899 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003900vim_dialog_yesno(
3901 int type,
3902 char_u *title,
3903 char_u *message,
3904 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905{
3906 if (do_dialog(type,
3907 title == NULL ? (char_u *)_("Question") : title,
3908 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003909 (char_u *)_("&Yes\n&No"), dflt, NULL, FALSE) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 return VIM_YES;
3911 return VIM_NO;
3912}
3913
3914 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003915vim_dialog_yesnocancel(
3916 int type,
3917 char_u *title,
3918 char_u *message,
3919 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920{
3921 switch (do_dialog(type,
3922 title == NULL ? (char_u *)_("Question") : title,
3923 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003924 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 {
3926 case 1: return VIM_YES;
3927 case 2: return VIM_NO;
3928 }
3929 return VIM_CANCEL;
3930}
3931
3932 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003933vim_dialog_yesnoallcancel(
3934 int type,
3935 char_u *title,
3936 char_u *message,
3937 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938{
3939 switch (do_dialog(type,
3940 title == NULL ? (char_u *)"Question" : title,
3941 message,
3942 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003943 dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 {
3945 case 1: return VIM_YES;
3946 case 2: return VIM_NO;
3947 case 3: return VIM_ALL;
3948 case 4: return VIM_DISCARDALL;
3949 }
3950 return VIM_CANCEL;
3951}
3952
3953#endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */
3954
3955#if defined(FEAT_BROWSE) || defined(PROTO)
3956/*
3957 * Generic browse function. Calls gui_mch_browse() when possible.
3958 * Later this may pop-up a non-GUI file selector (external command?).
3959 */
3960 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003961do_browse(
3962 int flags, /* BROWSE_SAVE and BROWSE_DIR */
3963 char_u *title, /* title for the window */
3964 char_u *dflt, /* default file name (may include directory) */
3965 char_u *ext, /* extension added */
3966 char_u *initdir, /* initial directory, NULL for current dir or
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 when using path from "dflt" */
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003968 char_u *filter, /* file name filter */
3969 buf_T *buf) /* buffer to read/write for */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970{
3971 char_u *fname;
3972 static char_u *last_dir = NULL; /* last used directory */
3973 char_u *tofree = NULL;
3974 int save_browse = cmdmod.browse;
3975
3976 /* Must turn off browse to avoid that autocommands will get the
3977 * flag too! */
3978 cmdmod.browse = FALSE;
3979
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003980 if (title == NULL || *title == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003982 if (flags & BROWSE_DIR)
3983 title = (char_u *)_("Select Directory dialog");
3984 else if (flags & BROWSE_SAVE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 title = (char_u *)_("Save File dialog");
3986 else
3987 title = (char_u *)_("Open File dialog");
3988 }
3989
3990 /* When no directory specified, use default file name, default dir, buffer
3991 * dir, last dir or current dir */
3992 if ((initdir == NULL || *initdir == NUL) && dflt != NULL && *dflt != NUL)
3993 {
3994 if (mch_isdir(dflt)) /* default file name is a directory */
3995 {
3996 initdir = dflt;
3997 dflt = NULL;
3998 }
3999 else if (gettail(dflt) != dflt) /* default file name includes a path */
4000 {
4001 tofree = vim_strsave(dflt);
4002 if (tofree != NULL)
4003 {
4004 initdir = tofree;
4005 *gettail(initdir) = NUL;
4006 dflt = gettail(dflt);
4007 }
4008 }
4009 }
4010
4011 if (initdir == NULL || *initdir == NUL)
4012 {
4013 /* When 'browsedir' is a directory, use it */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004014 if (STRCMP(p_bsdir, "last") != 0
4015 && STRCMP(p_bsdir, "buffer") != 0
4016 && STRCMP(p_bsdir, "current") != 0
4017 && mch_isdir(p_bsdir))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 initdir = p_bsdir;
4019 /* When saving or 'browsedir' is "buffer", use buffer fname */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004020 else if (((flags & BROWSE_SAVE) || *p_bsdir == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 && buf != NULL && buf->b_ffname != NULL)
4022 {
4023 if (dflt == NULL || *dflt == NUL)
4024 dflt = gettail(curbuf->b_ffname);
4025 tofree = vim_strsave(curbuf->b_ffname);
4026 if (tofree != NULL)
4027 {
4028 initdir = tofree;
4029 *gettail(initdir) = NUL;
4030 }
4031 }
4032 /* When 'browsedir' is "last", use dir from last browse */
4033 else if (*p_bsdir == 'l')
4034 initdir = last_dir;
4035 /* When 'browsedir is "current", use current directory. This is the
4036 * default already, leave initdir empty. */
4037 }
4038
4039# ifdef FEAT_GUI
4040 if (gui.in_use) /* when this changes, also adjust f_has()! */
4041 {
4042 if (filter == NULL
4043# ifdef FEAT_EVAL
4044 && (filter = get_var_value((char_u *)"b:browsefilter")) == NULL
4045 && (filter = get_var_value((char_u *)"g:browsefilter")) == NULL
4046# endif
4047 )
4048 filter = BROWSE_FILTER_DEFAULT;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004049 if (flags & BROWSE_DIR)
4050 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02004051# if defined(FEAT_GUI_GTK) || defined(WIN3264)
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004052 /* For systems that have a directory dialog. */
4053 fname = gui_mch_browsedir(title, initdir);
4054# else
4055 /* Generic solution for selecting a directory: select a file and
4056 * remove the file name. */
4057 fname = gui_mch_browse(0, title, dflt, ext, initdir, (char_u *)"");
4058# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02004059# if !defined(FEAT_GUI_GTK)
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004060 /* Win32 adds a dummy file name, others return an arbitrary file
4061 * name. GTK+ 2 returns only the directory, */
4062 if (fname != NULL && *fname != NUL && !mch_isdir(fname))
4063 {
4064 /* Remove the file name. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004065 char_u *tail = gettail_sep(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004066
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004067 if (tail == fname)
4068 *tail++ = '.'; /* use current dir */
4069 *tail = NUL;
4070 }
4071# endif
4072 }
4073 else
4074 fname = gui_mch_browse(flags & BROWSE_SAVE,
Bram Moolenaarc36651b2018-04-29 12:22:56 +02004075 title, dflt, ext, initdir, (char_u *)_(filter));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076
4077 /* We hang around in the dialog for a while, the user might do some
4078 * things to our files. The Win32 dialog allows deleting or renaming
4079 * a file, check timestamps. */
4080 need_check_timestamps = TRUE;
4081 did_check_timestamps = FALSE;
4082 }
4083 else
4084# endif
4085 {
4086 /* TODO: non-GUI file selector here */
4087 EMSG(_("E338: Sorry, no file browser in console mode"));
4088 fname = NULL;
4089 }
4090
4091 /* keep the directory for next time */
4092 if (fname != NULL)
4093 {
4094 vim_free(last_dir);
4095 last_dir = vim_strsave(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004096 if (last_dir != NULL && !(flags & BROWSE_DIR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 {
4098 *gettail(last_dir) = NUL;
4099 if (*last_dir == NUL)
4100 {
4101 /* filename only returned, must be in current dir */
4102 vim_free(last_dir);
4103 last_dir = alloc(MAXPATHL);
4104 if (last_dir != NULL)
4105 mch_dirname(last_dir, MAXPATHL);
4106 }
4107 }
4108 }
4109
4110 vim_free(tofree);
4111 cmdmod.browse = save_browse;
4112
4113 return fname;
4114}
4115#endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004116
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004117#if defined(FEAT_EVAL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004118static char *e_printf = N_("E766: Insufficient arguments for printf()");
4119
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004120static varnumber_T tv_nr(typval_T *tvs, int *idxp);
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004121static char *tv_str(typval_T *tvs, int *idxp, char_u **tofree);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004122# ifdef FEAT_FLOAT
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004123static double tv_float(typval_T *tvs, int *idxp);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004124# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004125
4126/*
4127 * Get number argument from "idxp" entry in "tvs". First entry is 1.
4128 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004129 static varnumber_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004130tv_nr(typval_T *tvs, int *idxp)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004131{
4132 int idx = *idxp - 1;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004133 varnumber_T n = 0;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004134 int err = FALSE;
4135
4136 if (tvs[idx].v_type == VAR_UNKNOWN)
4137 EMSG(_(e_printf));
4138 else
4139 {
4140 ++*idxp;
4141 n = get_tv_number_chk(&tvs[idx], &err);
4142 if (err)
4143 n = 0;
4144 }
4145 return n;
4146}
4147
4148/*
4149 * Get string argument from "idxp" entry in "tvs". First entry is 1.
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004150 * If "tofree" is NULL get_tv_string_chk() is used. Some types (e.g. List)
4151 * are not converted to a string.
4152 * If "tofree" is not NULL echo_string() is used. All types are converted to
4153 * a string with the same format as ":echo". The caller must free "*tofree".
Bram Moolenaar1e015462005-09-25 22:16:38 +00004154 * Returns NULL for an error.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004155 */
4156 static char *
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004157tv_str(typval_T *tvs, int *idxp, char_u **tofree)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004158{
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004159 int idx = *idxp - 1;
4160 char *s = NULL;
4161 static char_u numbuf[NUMBUFLEN];
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004162
4163 if (tvs[idx].v_type == VAR_UNKNOWN)
4164 EMSG(_(e_printf));
4165 else
4166 {
4167 ++*idxp;
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004168 if (tofree != NULL)
4169 s = (char *)echo_string(&tvs[idx], tofree, numbuf, get_copyID());
4170 else
4171 s = (char *)get_tv_string_chk(&tvs[idx]);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004172 }
4173 return s;
4174}
Bram Moolenaara7241f52008-06-24 20:39:31 +00004175
4176# ifdef FEAT_FLOAT
4177/*
4178 * Get float argument from "idxp" entry in "tvs". First entry is 1.
4179 */
4180 static double
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004181tv_float(typval_T *tvs, int *idxp)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004182{
4183 int idx = *idxp - 1;
4184 double f = 0;
4185
4186 if (tvs[idx].v_type == VAR_UNKNOWN)
4187 EMSG(_(e_printf));
4188 else
4189 {
4190 ++*idxp;
4191 if (tvs[idx].v_type == VAR_FLOAT)
4192 f = tvs[idx].vval.v_float;
Bram Moolenaarc4a87012008-06-28 14:10:11 +00004193 else if (tvs[idx].v_type == VAR_NUMBER)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004194 f = (double)tvs[idx].vval.v_number;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004195 else
4196 EMSG(_("E807: Expected Float argument for printf()"));
4197 }
4198 return f;
4199}
4200# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004201#endif
4202
Bram Moolenaar7f7bd292016-08-28 21:21:31 +02004203#ifdef FEAT_FLOAT
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004204/*
Bram Moolenaare9997822016-08-28 16:03:38 +02004205 * Return the representation of infinity for printf() function:
4206 * "-inf", "inf", "+inf", " inf", "-INF", "INF", "+INF" or " INF".
4207 */
4208 static const char *
4209infinity_str(int positive,
4210 char fmt_spec,
4211 int force_sign,
4212 int space_for_positive)
4213{
4214 static const char *table[] =
4215 {
4216 "-inf", "inf", "+inf", " inf",
4217 "-INF", "INF", "+INF", " INF"
4218 };
4219 int idx = positive * (1 + force_sign + force_sign * space_for_positive);
4220
4221 if (ASCII_ISUPPER(fmt_spec))
4222 idx += 4;
4223 return table[idx];
4224}
Bram Moolenaar7f7bd292016-08-28 21:21:31 +02004225#endif
Bram Moolenaare9997822016-08-28 16:03:38 +02004226
4227/*
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004228 * This code was included to provide a portable vsnprintf() and snprintf().
Bram Moolenaara2031822006-03-07 22:29:51 +00004229 * Some systems may provide their own, but we always use this one for
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004230 * consistency.
4231 *
4232 * This code is based on snprintf.c - a portable implementation of snprintf
4233 * by Mark Martinec <mark.martinec@ijs.si>, Version 2.2, 2000-10-06.
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00004234 * Included with permission. It was heavily modified to fit in Vim.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004235 * The original code, including useful comments, can be found here:
4236 * http://www.ijs.si/software/snprintf/
4237 *
4238 * This snprintf() only supports the following conversion specifiers:
4239 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
4240 * with flags: '-', '+', ' ', '0' and '#'.
4241 * An asterisk is supported for field width as well as precision.
4242 *
Bram Moolenaar04186092016-08-29 21:55:35 +02004243 * Limited support for floating point was added: 'f', 'F', 'e', 'E', 'g', 'G'.
Bram Moolenaara7241f52008-06-24 20:39:31 +00004244 *
Bram Moolenaare9997822016-08-28 16:03:38 +02004245 * Length modifiers 'h' (short int) and 'l' (long int) and 'll' (long long int)
4246 * are supported.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004247 *
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004248 * The locale is not used, the string is used as a byte string. This is only
4249 * relevant for double-byte encodings where the second byte may be '%'.
4250 *
Bram Moolenaara2031822006-03-07 22:29:51 +00004251 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL
4252 * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004253 *
4254 * The return value is the number of characters which would be generated
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004255 * for the given input, excluding the trailing NUL. If this value
Bram Moolenaara2031822006-03-07 22:29:51 +00004256 * is greater or equal to "str_m", not all characters from the result
4257 * have been stored in str, output bytes beyond the ("str_m"-1) -th character
4258 * are discarded. If "str_m" is greater than zero it is guaranteed
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004259 * the resulting string will be NUL-terminated.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004260 */
4261
4262/*
4263 * When va_list is not supported we only define vim_snprintf().
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004264 *
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004265 * vim_vsnprintf_typval() can be invoked with either "va_list" or a list of
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004266 * "typval_T". When the latter is not used it must be NULL.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004267 */
4268
4269/* When generating prototypes all of this is skipped, cproto doesn't
4270 * understand this. */
4271#ifndef PROTO
Bram Moolenaara800b422010-06-27 01:15:55 +02004272
Bram Moolenaara800b422010-06-27 01:15:55 +02004273/* Like vim_vsnprintf() but append to the string. */
4274 int
4275vim_snprintf_add(char *str, size_t str_m, char *fmt, ...)
4276{
4277 va_list ap;
4278 int str_l;
4279 size_t len = STRLEN(str);
4280 size_t space;
4281
4282 if (str_m <= len)
4283 space = 0;
4284 else
4285 space = str_m - len;
4286 va_start(ap, fmt);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004287 str_l = vim_vsnprintf(str + len, space, fmt, ap);
Bram Moolenaara800b422010-06-27 01:15:55 +02004288 va_end(ap);
4289 return str_l;
4290}
Bram Moolenaara800b422010-06-27 01:15:55 +02004291
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004292 int
4293vim_snprintf(char *str, size_t str_m, char *fmt, ...)
4294{
4295 va_list ap;
4296 int str_l;
4297
4298 va_start(ap, fmt);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004299 str_l = vim_vsnprintf(str, str_m, fmt, ap);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004300 va_end(ap);
4301 return str_l;
4302}
4303
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004304 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004305vim_vsnprintf(
4306 char *str,
4307 size_t str_m,
4308 char *fmt,
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004309 va_list ap)
4310{
4311 return vim_vsnprintf_typval(str, str_m, fmt, ap, NULL);
4312}
4313
4314 int
4315vim_vsnprintf_typval(
4316 char *str,
4317 size_t str_m,
4318 char *fmt,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004319 va_list ap,
4320 typval_T *tvs)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004321{
4322 size_t str_l = 0;
4323 char *p = fmt;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004324 int arg_idx = 1;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004325
4326 if (p == NULL)
4327 p = "";
4328 while (*p != NUL)
4329 {
4330 if (*p != '%')
4331 {
4332 char *q = strchr(p + 1, '%');
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004333 size_t n = (q == NULL) ? STRLEN(p) : (size_t)(q - p);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004334
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004335 /* Copy up to the next '%' or NUL without any changes. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004336 if (str_l < str_m)
4337 {
4338 size_t avail = str_m - str_l;
4339
4340 mch_memmove(str + str_l, p, n > avail ? avail : n);
4341 }
4342 p += n;
4343 str_l += n;
4344 }
4345 else
4346 {
4347 size_t min_field_width = 0, precision = 0;
4348 int zero_padding = 0, precision_specified = 0, justify_left = 0;
4349 int alternate_form = 0, force_sign = 0;
4350
4351 /* If both the ' ' and '+' flags appear, the ' ' flag should be
4352 * ignored. */
4353 int space_for_positive = 1;
4354
4355 /* allowed values: \0, h, l, L */
4356 char length_modifier = '\0';
4357
4358 /* temporary buffer for simple numeric->string conversion */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004359# if defined(FEAT_FLOAT)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004360# define TMP_LEN 350 /* On my system 1e308 is the biggest number possible.
Bram Moolenaara7241f52008-06-24 20:39:31 +00004361 * That sounds reasonable to use as the maximum
4362 * printable. */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004363# elif defined(FEAT_NUM64)
4364# define TMP_LEN 66
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004365# else
Bram Moolenaar91984b92016-08-16 21:58:41 +02004366# define TMP_LEN 34
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004367# endif
Bram Moolenaara7241f52008-06-24 20:39:31 +00004368 char tmp[TMP_LEN];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004369
4370 /* string address in case of string argument */
4371 char *str_arg;
4372
4373 /* natural field width of arg without padding and sign */
4374 size_t str_arg_l;
4375
4376 /* unsigned char argument value - only defined for c conversion.
4377 * N.B. standard explicitly states the char argument for the c
4378 * conversion is unsigned */
4379 unsigned char uchar_arg;
4380
4381 /* number of zeros to be inserted for numeric conversions as
4382 * required by the precision or minimal field width */
4383 size_t number_of_zeros_to_pad = 0;
4384
4385 /* index into tmp where zero padding is to be inserted */
4386 size_t zero_padding_insertion_ind = 0;
4387
4388 /* current conversion specifier character */
4389 char fmt_spec = '\0';
4390
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004391 /* buffer for 's' and 'S' specs */
4392 char_u *tofree = NULL;
4393
4394
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004395 str_arg = NULL;
4396 p++; /* skip '%' */
4397
4398 /* parse flags */
4399 while (*p == '0' || *p == '-' || *p == '+' || *p == ' '
4400 || *p == '#' || *p == '\'')
4401 {
4402 switch (*p)
4403 {
4404 case '0': zero_padding = 1; break;
4405 case '-': justify_left = 1; break;
4406 case '+': force_sign = 1; space_for_positive = 0; break;
4407 case ' ': force_sign = 1;
4408 /* If both the ' ' and '+' flags appear, the ' '
4409 * flag should be ignored */
4410 break;
4411 case '#': alternate_form = 1; break;
4412 case '\'': break;
4413 }
4414 p++;
4415 }
4416 /* If the '0' and '-' flags both appear, the '0' flag should be
4417 * ignored. */
4418
4419 /* parse field width */
4420 if (*p == '*')
4421 {
4422 int j;
4423
4424 p++;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004425 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004426# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004427 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004428# endif
4429 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004430 if (j >= 0)
4431 min_field_width = j;
4432 else
4433 {
4434 min_field_width = -j;
4435 justify_left = 1;
4436 }
4437 }
4438 else if (VIM_ISDIGIT((int)(*p)))
4439 {
4440 /* size_t could be wider than unsigned int; make sure we treat
4441 * argument like common implementations do */
4442 unsigned int uj = *p++ - '0';
4443
4444 while (VIM_ISDIGIT((int)(*p)))
4445 uj = 10 * uj + (unsigned int)(*p++ - '0');
4446 min_field_width = uj;
4447 }
4448
4449 /* parse precision */
4450 if (*p == '.')
4451 {
4452 p++;
4453 precision_specified = 1;
4454 if (*p == '*')
4455 {
4456 int j;
4457
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004458 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004459# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004460 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004461# endif
4462 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004463 p++;
4464 if (j >= 0)
4465 precision = j;
4466 else
4467 {
4468 precision_specified = 0;
4469 precision = 0;
4470 }
4471 }
4472 else if (VIM_ISDIGIT((int)(*p)))
4473 {
4474 /* size_t could be wider than unsigned int; make sure we
4475 * treat argument like common implementations do */
4476 unsigned int uj = *p++ - '0';
4477
4478 while (VIM_ISDIGIT((int)(*p)))
4479 uj = 10 * uj + (unsigned int)(*p++ - '0');
4480 precision = uj;
4481 }
4482 }
4483
4484 /* parse 'h', 'l' and 'll' length modifiers */
4485 if (*p == 'h' || *p == 'l')
4486 {
4487 length_modifier = *p;
4488 p++;
4489 if (length_modifier == 'l' && *p == 'l')
4490 {
4491 /* double l = long long */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004492# ifdef FEAT_NUM64
4493 length_modifier = 'L';
4494# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004495 length_modifier = 'l'; /* treat it as a single 'l' */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004496# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004497 p++;
4498 }
4499 }
4500 fmt_spec = *p;
4501
4502 /* common synonyms: */
4503 switch (fmt_spec)
4504 {
4505 case 'i': fmt_spec = 'd'; break;
4506 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break;
4507 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break;
4508 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break;
4509 default: break;
4510 }
4511
Bram Moolenaar38ee6b02016-07-12 21:11:33 +02004512# if defined(FEAT_EVAL) && defined(FEAT_NUM64)
4513 switch (fmt_spec)
4514 {
4515 case 'd': case 'u': case 'o': case 'x': case 'X':
4516 if (tvs != NULL && length_modifier == '\0')
4517 length_modifier = 'L';
4518 }
4519# endif
4520
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004521 /* get parameter value, do initial processing */
4522 switch (fmt_spec)
4523 {
4524 /* '%' and 'c' behave similar to 's' regarding flags and field
4525 * widths */
4526 case '%':
4527 case 'c':
4528 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004529 case 'S':
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004530 length_modifier = '\0';
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004531 str_arg_l = 1;
4532 switch (fmt_spec)
4533 {
4534 case '%':
4535 str_arg = p;
4536 break;
4537
4538 case 'c':
4539 {
4540 int j;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004541
4542 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004543# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004544 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004545# endif
4546 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004547 /* standard demands unsigned char */
4548 uchar_arg = (unsigned char)j;
4549 str_arg = (char *)&uchar_arg;
4550 break;
4551 }
4552
4553 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004554 case 'S':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004555 str_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004556# if defined(FEAT_EVAL)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004557 tvs != NULL ? tv_str(tvs, &arg_idx, &tofree) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004558# endif
4559 va_arg(ap, char *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004560 if (str_arg == NULL)
4561 {
4562 str_arg = "[NULL]";
4563 str_arg_l = 6;
4564 }
4565 /* make sure not to address string beyond the specified
4566 * precision !!! */
4567 else if (!precision_specified)
4568 str_arg_l = strlen(str_arg);
4569 /* truncate string if necessary as requested by precision */
4570 else if (precision == 0)
4571 str_arg_l = 0;
4572 else
4573 {
Bram Moolenaar223b4312006-05-13 11:09:22 +00004574 /* Don't put the #if inside memchr(), it can be a
4575 * macro. */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004576# if VIM_SIZEOF_INT <= 2
Bram Moolenaar223b4312006-05-13 11:09:22 +00004577 char *q = memchr(str_arg, '\0', precision);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004578# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004579 /* memchr on HP does not like n > 2^31 !!! */
4580 char *q = memchr(str_arg, '\0',
Bram Moolenaar223b4312006-05-13 11:09:22 +00004581 precision <= (size_t)0x7fffffffL ? precision
4582 : (size_t)0x7fffffffL);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004583# endif
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004584 str_arg_l = (q == NULL) ? precision
4585 : (size_t)(q - str_arg);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004586 }
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004587# ifdef FEAT_MBYTE
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004588 if (fmt_spec == 'S')
4589 {
4590 if (min_field_width != 0)
4591 min_field_width += STRLEN(str_arg)
4592 - mb_string2cells((char_u *)str_arg, -1);
4593 if (precision)
4594 {
4595 char_u *p1 = (char_u *)str_arg;
4596 size_t i;
4597
4598 for (i = 0; i < precision && *p1; i++)
4599 p1 += mb_ptr2len(p1);
4600
4601 str_arg_l = precision = p1 - (char_u *)str_arg;
4602 }
4603 }
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004604# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004605 break;
4606
4607 default:
4608 break;
4609 }
4610 break;
4611
Bram Moolenaar91984b92016-08-16 21:58:41 +02004612 case 'd': case 'u':
4613 case 'b': case 'B':
4614 case 'o':
4615 case 'x': case 'X':
4616 case 'p':
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004617 {
Bram Moolenaar91984b92016-08-16 21:58:41 +02004618 /* NOTE: the u, b, o, x, X and p conversion specifiers
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004619 * imply the value is unsigned; d implies a signed
4620 * value */
4621
4622 /* 0 if numeric argument is zero (or if pointer is
4623 * NULL for 'p'), +1 if greater than zero (or nonzero
4624 * for unsigned arguments), -1 if negative (unsigned
4625 * argument is never negative) */
4626 int arg_sign = 0;
4627
4628 /* only defined for length modifier h, or for no
4629 * length modifiers */
4630 int int_arg = 0;
4631 unsigned int uint_arg = 0;
4632
4633 /* only defined for length modifier l */
4634 long int long_arg = 0;
4635 unsigned long int ulong_arg = 0;
4636
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004637# ifdef FEAT_NUM64
4638 /* only defined for length modifier ll */
4639 varnumber_T llong_arg = 0;
4640 uvarnumber_T ullong_arg = 0;
4641# endif
4642
Bram Moolenaare9997822016-08-28 16:03:38 +02004643 /* only defined for b conversion */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004644 uvarnumber_T bin_arg = 0;
4645
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004646 /* pointer argument value -only defined for p
4647 * conversion */
4648 void *ptr_arg = NULL;
4649
4650 if (fmt_spec == 'p')
4651 {
4652 length_modifier = '\0';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004653 ptr_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004654# if defined(FEAT_EVAL)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004655 tvs != NULL ? (void *)tv_str(tvs, &arg_idx,
4656 NULL) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004657# endif
4658 va_arg(ap, void *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004659 if (ptr_arg != NULL)
4660 arg_sign = 1;
4661 }
Bram Moolenaar91984b92016-08-16 21:58:41 +02004662 else if (fmt_spec == 'b' || fmt_spec == 'B')
4663 {
4664 bin_arg =
4665# if defined(FEAT_EVAL)
4666 tvs != NULL ?
4667 (uvarnumber_T)tv_nr(tvs, &arg_idx) :
4668# endif
4669 va_arg(ap, uvarnumber_T);
4670 if (bin_arg != 0)
4671 arg_sign = 1;
4672 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004673 else if (fmt_spec == 'd')
4674 {
4675 /* signed */
4676 switch (length_modifier)
4677 {
4678 case '\0':
4679 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004680 /* char and short arguments are passed as int. */
4681 int_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004682# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004683 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004684# endif
4685 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004686 if (int_arg > 0)
4687 arg_sign = 1;
4688 else if (int_arg < 0)
4689 arg_sign = -1;
4690 break;
4691 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004692 long_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004693# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004694 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004695# endif
4696 va_arg(ap, long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004697 if (long_arg > 0)
4698 arg_sign = 1;
4699 else if (long_arg < 0)
4700 arg_sign = -1;
4701 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004702# ifdef FEAT_NUM64
4703 case 'L':
4704 llong_arg =
4705# if defined(FEAT_EVAL)
4706 tvs != NULL ? tv_nr(tvs, &arg_idx) :
4707# endif
4708 va_arg(ap, varnumber_T);
4709 if (llong_arg > 0)
4710 arg_sign = 1;
4711 else if (llong_arg < 0)
4712 arg_sign = -1;
4713 break;
4714# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004715 }
4716 }
4717 else
4718 {
4719 /* unsigned */
4720 switch (length_modifier)
4721 {
4722 case '\0':
4723 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004724 uint_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004725# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004726 tvs != NULL ? (unsigned)
4727 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004728# endif
4729 va_arg(ap, unsigned int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004730 if (uint_arg != 0)
4731 arg_sign = 1;
4732 break;
4733 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004734 ulong_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004735# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004736 tvs != NULL ? (unsigned long)
4737 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004738# endif
4739 va_arg(ap, unsigned long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004740 if (ulong_arg != 0)
4741 arg_sign = 1;
4742 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004743# ifdef FEAT_NUM64
4744 case 'L':
4745 ullong_arg =
4746# if defined(FEAT_EVAL)
4747 tvs != NULL ? (uvarnumber_T)
4748 tv_nr(tvs, &arg_idx) :
4749# endif
4750 va_arg(ap, uvarnumber_T);
4751 if (ullong_arg != 0)
4752 arg_sign = 1;
4753 break;
4754# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004755 }
4756 }
4757
4758 str_arg = tmp;
4759 str_arg_l = 0;
4760
4761 /* NOTE:
4762 * For d, i, u, o, x, and X conversions, if precision is
4763 * specified, the '0' flag should be ignored. This is so
4764 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux,
4765 * FreeBSD, NetBSD; but not with Perl.
4766 */
4767 if (precision_specified)
4768 zero_padding = 0;
4769 if (fmt_spec == 'd')
4770 {
4771 if (force_sign && arg_sign >= 0)
4772 tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
4773 /* leave negative numbers for sprintf to handle, to
4774 * avoid handling tricky cases like (short int)-32768 */
4775 }
4776 else if (alternate_form)
4777 {
4778 if (arg_sign != 0
Bram Moolenaar91984b92016-08-16 21:58:41 +02004779 && (fmt_spec == 'b' || fmt_spec == 'B'
4780 || fmt_spec == 'x' || fmt_spec == 'X') )
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004781 {
4782 tmp[str_arg_l++] = '0';
4783 tmp[str_arg_l++] = fmt_spec;
4784 }
4785 /* alternate form should have no effect for p
4786 * conversion, but ... */
4787 }
4788
4789 zero_padding_insertion_ind = str_arg_l;
4790 if (!precision_specified)
4791 precision = 1; /* default precision is 1 */
4792 if (precision == 0 && arg_sign == 0)
4793 {
4794 /* When zero value is formatted with an explicit
4795 * precision 0, the resulting formatted string is
Bram Moolenaar91984b92016-08-16 21:58:41 +02004796 * empty (d, i, u, b, B, o, x, X, p). */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004797 }
4798 else
4799 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004800 char f[6];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004801 int f_l = 0;
4802
4803 /* construct a simple format string for sprintf */
4804 f[f_l++] = '%';
4805 if (!length_modifier)
4806 ;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004807 else if (length_modifier == 'L')
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004808 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004809# ifdef FEAT_NUM64
4810# ifdef WIN3264
4811 f[f_l++] = 'I';
4812 f[f_l++] = '6';
4813 f[f_l++] = '4';
4814# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004815 f[f_l++] = 'l';
4816 f[f_l++] = 'l';
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004817# endif
4818# else
4819 f[f_l++] = 'l';
4820# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004821 }
4822 else
4823 f[f_l++] = length_modifier;
4824 f[f_l++] = fmt_spec;
4825 f[f_l++] = '\0';
4826
4827 if (fmt_spec == 'p')
4828 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg);
Bram Moolenaar91984b92016-08-16 21:58:41 +02004829 else if (fmt_spec == 'b' || fmt_spec == 'B')
4830 {
4831 char b[8 * sizeof(uvarnumber_T)];
4832 size_t b_l = 0;
4833 uvarnumber_T bn = bin_arg;
4834
4835 do
4836 {
4837 b[sizeof(b) - ++b_l] = '0' + (bn & 0x1);
4838 bn >>= 1;
4839 }
4840 while (bn != 0);
4841
4842 memcpy(tmp + str_arg_l, b + sizeof(b) - b_l, b_l);
4843 str_arg_l += b_l;
4844 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004845 else if (fmt_spec == 'd')
4846 {
4847 /* signed */
4848 switch (length_modifier)
4849 {
4850 case '\0':
4851 case 'h': str_arg_l += sprintf(
4852 tmp + str_arg_l, f, int_arg);
4853 break;
4854 case 'l': str_arg_l += sprintf(
4855 tmp + str_arg_l, f, long_arg);
4856 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004857# ifdef FEAT_NUM64
4858 case 'L': str_arg_l += sprintf(
4859 tmp + str_arg_l, f, llong_arg);
4860 break;
4861# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004862 }
4863 }
4864 else
4865 {
4866 /* unsigned */
4867 switch (length_modifier)
4868 {
4869 case '\0':
4870 case 'h': str_arg_l += sprintf(
4871 tmp + str_arg_l, f, uint_arg);
4872 break;
4873 case 'l': str_arg_l += sprintf(
4874 tmp + str_arg_l, f, ulong_arg);
4875 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004876# ifdef FEAT_NUM64
4877 case 'L': str_arg_l += sprintf(
4878 tmp + str_arg_l, f, ullong_arg);
4879 break;
4880# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004881 }
4882 }
4883
4884 /* include the optional minus sign and possible
4885 * "0x" in the region before the zero padding
4886 * insertion point */
4887 if (zero_padding_insertion_ind < str_arg_l
4888 && tmp[zero_padding_insertion_ind] == '-')
4889 zero_padding_insertion_ind++;
4890 if (zero_padding_insertion_ind + 1 < str_arg_l
4891 && tmp[zero_padding_insertion_ind] == '0'
4892 && (tmp[zero_padding_insertion_ind + 1] == 'x'
4893 || tmp[zero_padding_insertion_ind + 1] == 'X'))
4894 zero_padding_insertion_ind += 2;
4895 }
4896
4897 {
4898 size_t num_of_digits = str_arg_l
4899 - zero_padding_insertion_ind;
4900
4901 if (alternate_form && fmt_spec == 'o'
4902 /* unless zero is already the first
4903 * character */
4904 && !(zero_padding_insertion_ind < str_arg_l
4905 && tmp[zero_padding_insertion_ind] == '0'))
4906 {
4907 /* assure leading zero for alternate-form
4908 * octal numbers */
4909 if (!precision_specified
4910 || precision < num_of_digits + 1)
4911 {
4912 /* precision is increased to force the
4913 * first character to be zero, except if a
4914 * zero value is formatted with an
4915 * explicit precision of zero */
4916 precision = num_of_digits + 1;
4917 precision_specified = 1;
4918 }
4919 }
4920 /* zero padding to specified precision? */
4921 if (num_of_digits < precision)
4922 number_of_zeros_to_pad = precision - num_of_digits;
4923 }
4924 /* zero padding to specified minimal field width? */
4925 if (!justify_left && zero_padding)
4926 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004927 int n = (int)(min_field_width - (str_arg_l
4928 + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004929 if (n > 0)
4930 number_of_zeros_to_pad += n;
4931 }
4932 break;
4933 }
4934
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004935# ifdef FEAT_FLOAT
Bram Moolenaara7241f52008-06-24 20:39:31 +00004936 case 'f':
Bram Moolenaar04186092016-08-29 21:55:35 +02004937 case 'F':
Bram Moolenaara7241f52008-06-24 20:39:31 +00004938 case 'e':
4939 case 'E':
4940 case 'g':
4941 case 'G':
4942 {
4943 /* Floating point. */
4944 double f;
4945 double abs_f;
4946 char format[40];
4947 int l;
4948 int remove_trailing_zeroes = FALSE;
4949
4950 f =
Bram Moolenaara7241f52008-06-24 20:39:31 +00004951# if defined(FEAT_EVAL)
4952 tvs != NULL ? tv_float(tvs, &arg_idx) :
4953# endif
4954 va_arg(ap, double);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004955 abs_f = f < 0 ? -f : f;
4956
4957 if (fmt_spec == 'g' || fmt_spec == 'G')
4958 {
4959 /* Would be nice to use %g directly, but it prints
4960 * "1.0" as "1", we don't want that. */
4961 if ((abs_f >= 0.001 && abs_f < 10000000.0)
4962 || abs_f == 0.0)
Bram Moolenaar04186092016-08-29 21:55:35 +02004963 fmt_spec = ASCII_ISUPPER(fmt_spec) ? 'F' : 'f';
Bram Moolenaara7241f52008-06-24 20:39:31 +00004964 else
4965 fmt_spec = fmt_spec == 'g' ? 'e' : 'E';
4966 remove_trailing_zeroes = TRUE;
4967 }
4968
Bram Moolenaar04186092016-08-29 21:55:35 +02004969 if ((fmt_spec == 'f' || fmt_spec == 'F') &&
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004970# ifdef VAX
Bram Moolenaarc9372132009-01-13 15:38:37 +00004971 abs_f > 1.0e38
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004972# else
Bram Moolenaarc9372132009-01-13 15:38:37 +00004973 abs_f > 1.0e307
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004974# endif
Bram Moolenaarc9372132009-01-13 15:38:37 +00004975 )
Bram Moolenaara7241f52008-06-24 20:39:31 +00004976 {
4977 /* Avoid a buffer overflow */
Bram Moolenaare9997822016-08-28 16:03:38 +02004978 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec,
4979 force_sign, space_for_positive));
4980 str_arg_l = STRLEN(tmp);
4981 zero_padding = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004982 }
4983 else
4984 {
Bram Moolenaare9997822016-08-28 16:03:38 +02004985 if (isnan(f))
4986 {
4987 /* Not a number: nan or NAN */
4988 STRCPY(tmp, ASCII_ISUPPER(fmt_spec) ? "NAN"
4989 : "nan");
4990 str_arg_l = 3;
4991 zero_padding = 0;
4992 }
4993 else if (isinf(f))
4994 {
4995 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec,
4996 force_sign, space_for_positive));
4997 str_arg_l = STRLEN(tmp);
4998 zero_padding = 0;
4999 }
5000 else
Bram Moolenaar191f18b2018-02-04 16:38:47 +01005001 {
Bram Moolenaare9997822016-08-28 16:03:38 +02005002 /* Regular float number */
Bram Moolenaar04186092016-08-29 21:55:35 +02005003 format[0] = '%';
5004 l = 1;
5005 if (force_sign)
5006 format[l++] = space_for_positive ? ' ' : '+';
5007 if (precision_specified)
5008 {
5009 size_t max_prec = TMP_LEN - 10;
5010
5011 /* Make sure we don't get more digits than we
5012 * have room for. */
5013 if ((fmt_spec == 'f' || fmt_spec == 'F')
5014 && abs_f > 1.0)
5015 max_prec -= (size_t)log10(abs_f);
5016 if (precision > max_prec)
5017 precision = max_prec;
5018 l += sprintf(format + l, ".%d", (int)precision);
5019 }
Bram Moolenaar965ed142016-08-29 22:31:24 +02005020 format[l] = fmt_spec == 'F' ? 'f' : fmt_spec;
Bram Moolenaar04186092016-08-29 21:55:35 +02005021 format[l + 1] = NUL;
5022
Bram Moolenaare9997822016-08-28 16:03:38 +02005023 str_arg_l = sprintf(tmp, format, f);
Bram Moolenaar191f18b2018-02-04 16:38:47 +01005024 }
Bram Moolenaar99922372016-08-27 15:26:35 +02005025
Bram Moolenaara7241f52008-06-24 20:39:31 +00005026 if (remove_trailing_zeroes)
5027 {
5028 int i;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005029 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005030
5031 /* Using %g or %G: remove superfluous zeroes. */
Bram Moolenaar04186092016-08-29 21:55:35 +02005032 if (fmt_spec == 'f' || fmt_spec == 'F')
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005033 tp = tmp + str_arg_l - 1;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005034 else
5035 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005036 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00005037 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005038 if (tp != NULL)
Bram Moolenaara7241f52008-06-24 20:39:31 +00005039 {
5040 /* Remove superfluous '+' and leading
5041 * zeroes from the exponent. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005042 if (tp[1] == '+')
Bram Moolenaara7241f52008-06-24 20:39:31 +00005043 {
5044 /* Change "1.0e+07" to "1.0e07" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005045 STRMOVE(tp + 1, tp + 2);
Bram Moolenaara7241f52008-06-24 20:39:31 +00005046 --str_arg_l;
5047 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005048 i = (tp[1] == '-') ? 2 : 1;
5049 while (tp[i] == '0')
Bram Moolenaara7241f52008-06-24 20:39:31 +00005050 {
5051 /* Change "1.0e07" to "1.0e7" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005052 STRMOVE(tp + i, tp + i + 1);
Bram Moolenaara7241f52008-06-24 20:39:31 +00005053 --str_arg_l;
5054 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005055 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005056 }
5057 }
5058
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005059 if (tp != NULL && !precision_specified)
Bram Moolenaara7241f52008-06-24 20:39:31 +00005060 /* Remove trailing zeroes, but keep the one
5061 * just after a dot. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005062 while (tp > tmp + 2 && *tp == '0'
5063 && tp[-1] != '.')
Bram Moolenaara7241f52008-06-24 20:39:31 +00005064 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005065 STRMOVE(tp, tp + 1);
5066 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005067 --str_arg_l;
5068 }
5069 }
5070 else
5071 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005072 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005073
5074 /* Be consistent: some printf("%e") use 1.0e+12
5075 * and some 1.0e+012. Remove one zero in the last
5076 * case. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005077 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00005078 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005079 if (tp != NULL && (tp[1] == '+' || tp[1] == '-')
5080 && tp[2] == '0'
5081 && vim_isdigit(tp[3])
5082 && vim_isdigit(tp[4]))
Bram Moolenaara7241f52008-06-24 20:39:31 +00005083 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005084 STRMOVE(tp + 2, tp + 3);
Bram Moolenaara7241f52008-06-24 20:39:31 +00005085 --str_arg_l;
5086 }
5087 }
5088 }
Bram Moolenaar04186092016-08-29 21:55:35 +02005089 if (zero_padding && min_field_width > str_arg_l
5090 && (tmp[0] == '-' || force_sign))
5091 {
5092 /* padding 0's should be inserted after the sign */
5093 number_of_zeros_to_pad = min_field_width - str_arg_l;
5094 zero_padding_insertion_ind = 1;
5095 }
Bram Moolenaara7241f52008-06-24 20:39:31 +00005096 str_arg = tmp;
5097 break;
5098 }
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01005099# endif
Bram Moolenaara7241f52008-06-24 20:39:31 +00005100
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005101 default:
5102 /* unrecognized conversion specifier, keep format string
5103 * as-is */
5104 zero_padding = 0; /* turn zero padding off for non-numeric
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00005105 conversion */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005106 justify_left = 1;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005107 min_field_width = 0; /* reset flags */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005108
5109 /* discard the unrecognized conversion, just keep *
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005110 * the unrecognized conversion character */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005111 str_arg = p;
5112 str_arg_l = 0;
5113 if (*p != NUL)
5114 str_arg_l++; /* include invalid conversion specifier
5115 unchanged if not at end-of-string */
5116 break;
5117 }
5118
5119 if (*p != NUL)
5120 p++; /* step over the just processed conversion specifier */
5121
5122 /* insert padding to the left as requested by min_field_width;
5123 * this does not include the zero padding in case of numerical
5124 * conversions*/
5125 if (!justify_left)
5126 {
5127 /* left padding with blank or zero */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005128 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005129
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005130 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005131 {
5132 if (str_l < str_m)
5133 {
5134 size_t avail = str_m - str_l;
5135
5136 vim_memset(str + str_l, zero_padding ? '0' : ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005137 (size_t)pn > avail ? avail
5138 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005139 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005140 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005141 }
5142 }
5143
5144 /* zero padding as requested by the precision or by the minimal
5145 * field width for numeric conversions required? */
Bram Moolenaarea424162005-06-16 21:51:00 +00005146 if (number_of_zeros_to_pad == 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005147 {
5148 /* will not copy first part of numeric right now, *
5149 * force it to be copied later in its entirety */
5150 zero_padding_insertion_ind = 0;
5151 }
5152 else
5153 {
5154 /* insert first part of numerics (sign or '0x') before zero
5155 * padding */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005156 int zn = (int)zero_padding_insertion_ind;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005157
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005158 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005159 {
5160 if (str_l < str_m)
5161 {
5162 size_t avail = str_m - str_l;
5163
5164 mch_memmove(str + str_l, str_arg,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005165 (size_t)zn > avail ? avail
5166 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005167 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005168 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005169 }
5170
5171 /* insert zero padding as requested by the precision or min
5172 * field width */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005173 zn = (int)number_of_zeros_to_pad;
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005174 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005175 {
5176 if (str_l < str_m)
5177 {
Bram Moolenaar2f3a90a2017-08-03 14:49:29 +02005178 size_t avail = str_m - str_l;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005179
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005180 vim_memset(str + str_l, '0',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005181 (size_t)zn > avail ? avail
5182 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005183 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005184 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005185 }
5186 }
5187
5188 /* insert formatted string
5189 * (or as-is conversion specifier for unknown conversions) */
5190 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005191 int sn = (int)(str_arg_l - zero_padding_insertion_ind);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005192
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005193 if (sn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005194 {
5195 if (str_l < str_m)
5196 {
5197 size_t avail = str_m - str_l;
5198
5199 mch_memmove(str + str_l,
5200 str_arg + zero_padding_insertion_ind,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005201 (size_t)sn > avail ? avail : (size_t)sn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005202 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005203 str_l += sn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005204 }
5205 }
5206
5207 /* insert right padding */
5208 if (justify_left)
5209 {
5210 /* right blank padding to the field width */
Bram Moolenaara7241f52008-06-24 20:39:31 +00005211 int pn = (int)(min_field_width
5212 - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005213
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005214 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005215 {
5216 if (str_l < str_m)
5217 {
5218 size_t avail = str_m - str_l;
5219
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005220 vim_memset(str + str_l, ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005221 (size_t)pn > avail ? avail
5222 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005223 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005224 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005225 }
5226 }
Bram Moolenaare5a8f352016-08-16 21:30:54 +02005227 vim_free(tofree);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005228 }
5229 }
5230
5231 if (str_m > 0)
5232 {
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00005233 /* make sure the string is nul-terminated even at the expense of
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005234 * overwriting the last character (shouldn't happen, but just in case)
5235 * */
5236 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0';
5237 }
5238
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005239 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005240 EMSG(_("E767: Too many arguments to printf()"));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005241
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00005242 /* Return the number of characters formatted (excluding trailing nul
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005243 * character), that is, the number of characters that would have been
5244 * written to the buffer if it were large enough. */
5245 return (int)str_l;
5246}
5247
5248#endif /* PROTO */