blob: 71965852f20c6af52205096ff950c019f351b29d [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)
985 msg_attr((char_u *)
986 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
Bram Moolenaar8820b482017-03-16 17:23:31 +0100987 HL_ATTR(HLF_T));
Bram Moolenaarbea1ede2016-04-14 19:44:36 +0200988 }
989
Bram Moolenaar451f8492016-04-14 17:16:22 +0200990 /* Display what was not skipped. */
991 for (; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 if (p->msg != NULL)
993 msg_attr(p->msg, p->attr);
994
995 msg_hist_off = FALSE;
996}
997
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000998#if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999/*
1000 * Call this after prompting the user. This will avoid a hit-return message
1001 * and a delay.
1002 */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001003 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001004msg_end_prompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005{
1006 need_wait_return = FALSE;
1007 emsg_on_display = FALSE;
1008 cmdline_row = msg_row;
1009 msg_col = 0;
1010 msg_clr_eos();
Bram Moolenaar5d6f75e2011-12-30 14:14:29 +01001011 lines_left = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012}
1013#endif
1014
1015/*
1016 * wait for the user to hit a key (normally a return)
1017 * if 'redraw' is TRUE, clear and redraw the screen
1018 * if 'redraw' is FALSE, just redraw the screen
1019 * if 'redraw' is -1, don't redraw at all
1020 */
1021 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001022wait_return(int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023{
1024 int c;
1025 int oldState;
1026 int tmpState;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 int had_got_int;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001028 int save_Recording;
1029 FILE *save_scriptout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030
1031 if (redraw == TRUE)
1032 must_redraw = CLEAR;
1033
1034 /* If using ":silent cmd", don't wait for a return. Also don't set
1035 * need_wait_return to do it later. */
1036 if (msg_silent != 0)
1037 return;
1038
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01001039 /*
1040 * When inside vgetc(), we can't wait for a typed character at all.
1041 * With the global command (and some others) we only need one return at
1042 * the end. Adjust cmdline_row to avoid the next message overwriting the
1043 * last one.
1044 */
Bram Moolenaar5555acc2006-04-07 21:33:12 +00001045 if (vgetc_busy > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 return;
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01001047 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 if (no_wait_return)
1049 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 if (!exmode_active)
1051 cmdline_row = msg_row;
1052 return;
1053 }
1054
1055 redir_off = TRUE; /* don't redirect this message */
1056 oldState = State;
1057 if (quit_more)
1058 {
1059 c = CAR; /* just pretend CR was hit */
1060 quit_more = FALSE;
1061 got_int = FALSE;
1062 }
1063 else if (exmode_active)
1064 {
1065 MSG_PUTS(" "); /* make sure the cursor is on the right line */
1066 c = CAR; /* no need for a return in ex mode */
1067 got_int = FALSE;
1068 }
1069 else
1070 {
1071 /* Make sure the hit-return prompt is on screen when 'guioptions' was
1072 * just changed. */
1073 screenalloc(FALSE);
1074
1075 State = HITRETURN;
1076#ifdef FEAT_MOUSE
1077 setmouse();
1078#endif
1079#ifdef USE_ON_FLY_SCROLL
1080 dont_scroll = TRUE; /* disallow scrolling here */
1081#endif
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01001082 cmdline_row = msg_row;
1083
Bram Moolenaarec38d692013-04-24 15:12:32 +02001084 /* Avoid the sequence that the user types ":" at the hit-return prompt
1085 * to start an Ex command, but the file-changed dialog gets in the
1086 * way. */
1087 if (need_check_timestamps)
1088 check_timestamps(FALSE);
1089
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 hit_return_msg();
1091
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 do
1093 {
1094 /* Remember "got_int", if it is set vgetc() probably returns a
1095 * CTRL-C, but we need to loop then. */
1096 had_got_int = got_int;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001097
1098 /* Don't do mappings here, we put the character back in the
1099 * typeahead buffer. */
1100 ++no_mapping;
1101 ++allow_keys;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001102
1103 /* Temporarily disable Recording. If Recording is active, the
1104 * character will be recorded later, since it will be added to the
1105 * typebuf after the loop */
1106 save_Recording = Recording;
1107 save_scriptout = scriptout;
1108 Recording = FALSE;
1109 scriptout = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 c = safe_vgetc();
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00001111 if (had_got_int && !global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 got_int = FALSE;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001113 --no_mapping;
1114 --allow_keys;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001115 Recording = save_Recording;
1116 scriptout = save_scriptout;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001117
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118#ifdef FEAT_CLIPBOARD
1119 /* Strange way to allow copying (yanking) a modeless selection at
1120 * the hit-enter prompt. Use CTRL-Y, because the same is used in
1121 * Cmdline-mode and it's harmless when there is no selection. */
1122 if (c == Ctrl_Y && clip_star.state == SELECT_DONE)
1123 {
1124 clip_copy_modeless_selection(TRUE);
1125 c = K_IGNORE;
1126 }
1127#endif
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00001128
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001129 /*
1130 * Allow scrolling back in the messages.
1131 * Also accept scroll-down commands when messages fill the screen,
1132 * to avoid that typing one 'j' too many makes the messages
1133 * disappear.
1134 */
1135 if (p_more && !p_cp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001136 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001137 if (c == 'b' || c == 'k' || c == 'u' || c == 'g'
1138 || c == K_UP || c == K_PAGEUP)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001139 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001140 if (msg_scrolled > Rows)
1141 /* scroll back to show older messages */
1142 do_more_prompt(c);
1143 else
1144 {
1145 msg_didout = FALSE;
1146 c = K_IGNORE;
1147 msg_col =
1148#ifdef FEAT_RIGHTLEFT
1149 cmdmsg_rl ? Columns - 1 :
1150#endif
1151 0;
1152 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001153 if (quit_more)
1154 {
1155 c = CAR; /* just pretend CR was hit */
1156 quit_more = FALSE;
1157 got_int = FALSE;
1158 }
Bram Moolenaarb0912962013-08-09 20:38:26 +02001159 else if (c != K_IGNORE)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001160 {
1161 c = K_IGNORE;
1162 hit_return_msg();
1163 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001164 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001165 else if (msg_scrolled > Rows - 2
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001166 && (c == 'j' || c == 'd' || c == 'f'
1167 || c == K_DOWN || c == K_PAGEDOWN))
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001168 c = K_IGNORE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001169 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 } while ((had_got_int && c == Ctrl_C)
1171 || c == K_IGNORE
1172#ifdef FEAT_GUI
1173 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR
1174#endif
1175#ifdef FEAT_MOUSE
1176 || c == K_LEFTDRAG || c == K_LEFTRELEASE
1177 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE
1178 || c == K_RIGHTDRAG || c == K_RIGHTRELEASE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001179 || c == K_MOUSELEFT || c == K_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 || c == K_MOUSEDOWN || c == K_MOUSEUP
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001181 || c == K_MOUSEMOVE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 || (!mouse_has(MOUSE_RETURN)
1183 && mouse_row < msg_row
1184 && (c == K_LEFTMOUSE
1185 || c == K_MIDDLEMOUSE
1186 || c == K_RIGHTMOUSE
1187 || c == K_X1MOUSE
1188 || c == K_X2MOUSE))
1189#endif
1190 );
1191 ui_breakcheck();
1192#ifdef FEAT_MOUSE
1193 /*
1194 * Avoid that the mouse-up event causes visual mode to start.
1195 */
1196 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE
1197 || c == K_X1MOUSE || c == K_X2MOUSE)
1198 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0);
1199 else
1200#endif
1201 if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C)
1202 {
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001203 /* Put the character back in the typeahead buffer. Don't use the
1204 * stuff buffer, because lmaps wouldn't work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001205 ins_char_typebuf(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 do_redraw = TRUE; /* need a redraw even though there is
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001207 typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 }
1210 redir_off = FALSE;
1211
1212 /*
1213 * If the user hits ':', '?' or '/' we get a command line from the next
1214 * line.
1215 */
1216 if (c == ':' || c == '?' || c == '/')
1217 {
1218 if (!exmode_active)
1219 cmdline_row = msg_row;
1220 skip_redraw = TRUE; /* skip redraw once */
1221 do_redraw = FALSE;
1222 }
1223
1224 /*
1225 * If the window size changed set_shellsize() will redraw the screen.
1226 * Otherwise the screen is only redrawn if 'redraw' is set and no ':'
1227 * typed.
1228 */
1229 tmpState = State;
1230 State = oldState; /* restore State before set_shellsize */
1231#ifdef FEAT_MOUSE
1232 setmouse();
1233#endif
1234 msg_check();
1235
1236#if defined(UNIX) || defined(VMS)
1237 /*
1238 * When switching screens, we need to output an extra newline on exit.
1239 */
1240 if (swapping_screen() && !termcap_active)
1241 newline_on_exit = TRUE;
1242#endif
1243
1244 need_wait_return = FALSE;
1245 did_wait_return = TRUE;
1246 emsg_on_display = FALSE; /* can delete error message now */
1247 lines_left = -1; /* reset lines_left at next msg_start() */
1248 reset_last_sourcing();
1249 if (keep_msg != NULL && vim_strsize(keep_msg) >=
1250 (Rows - cmdline_row - 1) * Columns + sc_col)
Bram Moolenaard23a8232018-02-10 18:45:26 +01001251 VIM_CLEAR(keep_msg); /* don't redisplay message, it's too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252
1253 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */
1254 {
1255 starttermcap(); /* start termcap before redrawing */
1256 shell_resized();
1257 }
1258 else if (!skip_redraw
1259 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1)))
1260 {
1261 starttermcap(); /* start termcap before redrawing */
1262 redraw_later(VALID);
1263 }
1264}
1265
1266/*
1267 * Write the hit-return prompt.
1268 */
1269 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001270hit_return_msg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001272 int save_p_more = p_more;
1273
1274 p_more = FALSE; /* don't want see this message when scrolling back */
1275 if (msg_didout) /* start on a new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 msg_putchar('\n');
1277 if (got_int)
1278 MSG_PUTS(_("Interrupt: "));
1279
Bram Moolenaar8820b482017-03-16 17:23:31 +01001280 MSG_PUTS_ATTR(_("Press ENTER or type command to continue"), HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 if (!msg_use_printf())
1282 msg_clr_eos();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001283 p_more = save_p_more;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284}
1285
1286/*
1287 * Set "keep_msg" to "s". Free the old value and check for NULL pointer.
1288 */
1289 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001290set_keep_msg(char_u *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291{
1292 vim_free(keep_msg);
1293 if (s != NULL && msg_silent == 0)
1294 keep_msg = vim_strsave(s);
1295 else
1296 keep_msg = NULL;
Bram Moolenaaraab21c32005-01-25 21:46:35 +00001297 keep_msg_more = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001298 keep_msg_attr = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299}
1300
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001301#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1302/*
1303 * If there currently is a message being displayed, set "keep_msg" to it, so
1304 * that it will be displayed again after redraw.
1305 */
1306 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001307set_keep_msg_from_hist(void)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001308{
1309 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0
1310 && (State & NORMAL))
1311 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr);
1312}
1313#endif
1314
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315/*
1316 * Prepare for outputting characters in the command line.
1317 */
1318 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001319msg_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320{
1321 int did_return = FALSE;
1322
Bram Moolenaare4ce65d2010-08-04 20:12:32 +02001323 if (!msg_silent)
Bram Moolenaard23a8232018-02-10 18:45:26 +01001324 VIM_CLEAR(keep_msg);
Bram Moolenaara7241f52008-06-24 20:39:31 +00001325
1326#ifdef FEAT_EVAL
1327 if (need_clr_eos)
1328 {
1329 /* Halfway an ":echo" command and getting an (error) message: clear
1330 * any text from the command. */
1331 need_clr_eos = FALSE;
1332 msg_clr_eos();
1333 }
1334#endif
1335
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 if (!msg_scroll && full_screen) /* overwrite last message */
1337 {
1338 msg_row = cmdline_row;
1339 msg_col =
1340#ifdef FEAT_RIGHTLEFT
1341 cmdmsg_rl ? Columns - 1 :
1342#endif
1343 0;
1344 }
1345 else if (msg_didout) /* start message on next line */
1346 {
1347 msg_putchar('\n');
1348 did_return = TRUE;
1349 if (exmode_active != EXMODE_NORMAL)
1350 cmdline_row = msg_row;
1351 }
1352 if (!msg_didany || lines_left < 0)
1353 msg_starthere();
1354 if (msg_silent == 0)
1355 {
1356 msg_didout = FALSE; /* no output on current line yet */
1357 cursor_off();
1358 }
1359
1360 /* when redirecting, may need to start a new line. */
1361 if (!did_return)
1362 redir_write((char_u *)"\n", -1);
1363}
1364
1365/*
1366 * Note that the current msg position is where messages start.
1367 */
1368 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001369msg_starthere(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370{
1371 lines_left = cmdline_row;
1372 msg_didany = FALSE;
1373}
1374
1375 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001376msg_putchar(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377{
1378 msg_putchar_attr(c, 0);
1379}
1380
1381 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001382msg_putchar_attr(int c, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383{
1384#ifdef FEAT_MBYTE
1385 char_u buf[MB_MAXBYTES + 1];
1386#else
1387 char_u buf[4];
1388#endif
1389
1390 if (IS_SPECIAL(c))
1391 {
1392 buf[0] = K_SPECIAL;
1393 buf[1] = K_SECOND(c);
1394 buf[2] = K_THIRD(c);
1395 buf[3] = NUL;
1396 }
1397 else
1398 {
1399#ifdef FEAT_MBYTE
1400 buf[(*mb_char2bytes)(c, buf)] = NUL;
1401#else
1402 buf[0] = c;
1403 buf[1] = NUL;
1404#endif
1405 }
1406 msg_puts_attr(buf, attr);
1407}
1408
1409 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001410msg_outnum(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411{
1412 char_u buf[20];
1413
1414 sprintf((char *)buf, "%ld", n);
1415 msg_puts(buf);
1416}
1417
1418 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001419msg_home_replace(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420{
1421 msg_home_replace_attr(fname, 0);
1422}
1423
1424#if defined(FEAT_FIND_ID) || defined(PROTO)
1425 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001426msg_home_replace_hl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427{
Bram Moolenaar8820b482017-03-16 17:23:31 +01001428 msg_home_replace_attr(fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429}
1430#endif
1431
1432 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001433msg_home_replace_attr(char_u *fname, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434{
1435 char_u *name;
1436
1437 name = home_replace_save(NULL, fname);
1438 if (name != NULL)
1439 msg_outtrans_attr(name, attr);
1440 vim_free(name);
1441}
1442
1443/*
1444 * Output 'len' characters in 'str' (including NULs) with translation
1445 * if 'len' is -1, output upto a NUL character.
1446 * Use attributes 'attr'.
1447 * Return the number of characters it takes on the screen.
1448 */
1449 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001450msg_outtrans(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451{
1452 return msg_outtrans_attr(str, 0);
1453}
1454
1455 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001456msg_outtrans_attr(char_u *str, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457{
1458 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr);
1459}
1460
1461 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001462msg_outtrans_len(char_u *str, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463{
1464 return msg_outtrans_len_attr(str, len, 0);
1465}
1466
1467/*
1468 * Output one character at "p". Return pointer to the next character.
1469 * Handles multi-byte characters.
1470 */
1471 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001472msg_outtrans_one(char_u *p, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473{
1474#ifdef FEAT_MBYTE
1475 int l;
1476
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001477 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478 {
1479 msg_outtrans_len_attr(p, l, attr);
1480 return p + l;
1481 }
1482#endif
1483 msg_puts_attr(transchar_byte(*p), attr);
1484 return p + 1;
1485}
1486
1487 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001488msg_outtrans_len_attr(char_u *msgstr, int len, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489{
1490 int retval = 0;
1491 char_u *str = msgstr;
1492 char_u *plain_start = msgstr;
1493 char_u *s;
1494#ifdef FEAT_MBYTE
1495 int mb_l;
1496 int c;
1497#endif
1498
1499 /* if MSG_HIST flag set, add message to history */
1500 if (attr & MSG_HIST)
1501 {
1502 add_msg_hist(str, len, attr);
1503 attr &= ~MSG_HIST;
1504 }
1505
1506#ifdef FEAT_MBYTE
1507 /* If the string starts with a composing character first draw a space on
1508 * which the composing char can be drawn. */
1509 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr)))
1510 msg_puts_attr((char_u *)" ", attr);
1511#endif
1512
1513 /*
1514 * Go over the string. Special characters are translated and printed.
1515 * Normal characters are printed several at a time.
1516 */
1517 while (--len >= 0)
1518 {
1519#ifdef FEAT_MBYTE
1520 if (enc_utf8)
1521 /* Don't include composing chars after the end. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001522 mb_l = utfc_ptr2len_len(str, len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001524 mb_l = (*mb_ptr2len)(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 else
1526 mb_l = 1;
1527 if (has_mbyte && mb_l > 1)
1528 {
1529 c = (*mb_ptr2char)(str);
1530 if (vim_isprintc(c))
1531 /* printable multi-byte char: count the cells. */
1532 retval += (*mb_ptr2cells)(str);
1533 else
1534 {
1535 /* unprintable multi-byte char: print the printable chars so
1536 * far and the translation of the unprintable char. */
1537 if (str > plain_start)
1538 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1539 attr);
1540 plain_start = str + mb_l;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001541 msg_puts_attr(transchar(c), attr == 0 ? HL_ATTR(HLF_8) : attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 retval += char2cells(c);
1543 }
1544 len -= mb_l - 1;
1545 str += mb_l;
1546 }
1547 else
1548#endif
1549 {
1550 s = transchar_byte(*str);
1551 if (s[1] != NUL)
1552 {
1553 /* unprintable char: print the printable chars so far and the
1554 * translation of the unprintable char. */
1555 if (str > plain_start)
1556 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1557 attr);
1558 plain_start = str + 1;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001559 msg_puts_attr(s, attr == 0 ? HL_ATTR(HLF_8) : attr);
Bram Moolenaarc236c162008-07-13 17:41:49 +00001560 retval += (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 }
Bram Moolenaarb3c722a2008-07-06 17:16:02 +00001562 else
1563 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 ++str;
1565 }
1566 }
1567
1568 if (str > plain_start)
1569 /* print the printable chars at the end */
1570 msg_puts_attr_len(plain_start, (int)(str - plain_start), attr);
1571
1572 return retval;
1573}
1574
1575#if defined(FEAT_QUICKFIX) || defined(PROTO)
1576 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001577msg_make(char_u *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578{
1579 int i;
1580 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB";
1581
1582 arg = skipwhite(arg);
1583 for (i = 5; *arg && i >= 0; --i)
1584 if (*arg++ != str[i])
1585 break;
1586 if (i < 0)
1587 {
1588 msg_putchar('\n');
1589 for (i = 0; rs[i]; ++i)
1590 msg_putchar(rs[i] - 3);
1591 }
1592}
1593#endif
1594
1595/*
1596 * Output the string 'str' upto a NUL character.
1597 * Return the number of characters it takes on the screen.
1598 *
1599 * If K_SPECIAL is encountered, then it is taken in conjunction with the
1600 * following character and shown as <F1>, <S-Up> etc. Any other character
1601 * which is not printable shown in <> form.
1602 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>.
1603 * If a character is displayed in one of these special ways, is also
1604 * highlighted (its highlight name is '8' in the p_hl variable).
1605 * Otherwise characters are not highlighted.
1606 * This function is used to show mappings, where we want to see how to type
1607 * the character/string -- webb
1608 */
1609 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001610msg_outtrans_special(
1611 char_u *strstart,
1612 int from) /* TRUE for lhs of a mapping */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613{
1614 char_u *str = strstart;
1615 int retval = 0;
1616 char_u *string;
1617 int attr;
1618 int len;
1619
Bram Moolenaar8820b482017-03-16 17:23:31 +01001620 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 while (*str != NUL)
1622 {
1623 /* Leading and trailing spaces need to be displayed in <> form. */
1624 if ((str == strstart || str[1] == NUL) && *str == ' ')
1625 {
1626 string = (char_u *)"<Space>";
1627 ++str;
1628 }
1629 else
1630 string = str2special(&str, from);
1631 len = vim_strsize(string);
1632 /* Highlight special keys */
1633 msg_puts_attr(string, len > 1
1634#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001635 && (*mb_ptr2len)(string) <= 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636#endif
1637 ? attr : 0);
1638 retval += len;
1639 }
1640 return retval;
1641}
1642
Bram Moolenaarbd743252010-10-20 21:23:33 +02001643#if defined(FEAT_EVAL) || defined(PROTO)
1644/*
1645 * Return the lhs or rhs of a mapping, with the key codes turned into printable
1646 * strings, in an allocated string.
1647 */
1648 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001649str2special_save(
1650 char_u *str,
1651 int is_lhs) /* TRUE for lhs, FALSE for rhs */
Bram Moolenaarbd743252010-10-20 21:23:33 +02001652{
1653 garray_T ga;
1654 char_u *p = str;
1655
1656 ga_init2(&ga, 1, 40);
1657 while (*p != NUL)
1658 ga_concat(&ga, str2special(&p, is_lhs));
1659 ga_append(&ga, NUL);
1660 return (char_u *)ga.ga_data;
1661}
1662#endif
1663
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664/*
1665 * Return the printable string for the key codes at "*sp".
1666 * Used for translating the lhs or rhs of a mapping to printable chars.
1667 * Advances "sp" to the next code.
1668 */
1669 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001670str2special(
1671 char_u **sp,
1672 int from) /* TRUE for lhs of mapping */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673{
1674 int c;
1675 static char_u buf[7];
1676 char_u *str = *sp;
1677 int modifiers = 0;
1678 int special = FALSE;
1679
1680#ifdef FEAT_MBYTE
1681 if (has_mbyte)
1682 {
1683 char_u *p;
1684
1685 /* Try to un-escape a multi-byte character. Return the un-escaped
1686 * string if it is a multi-byte character. */
1687 p = mb_unescape(sp);
1688 if (p != NULL)
1689 return p;
1690 }
1691#endif
1692
1693 c = *str;
1694 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1695 {
1696 if (str[1] == KS_MODIFIER)
1697 {
1698 modifiers = str[2];
1699 str += 3;
1700 c = *str;
1701 }
1702 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1703 {
1704 c = TO_SPECIAL(str[1], str[2]);
1705 str += 2;
Bram Moolenaar37985192013-06-07 19:53:10 +02001706 if (c == KS_ZERO) /* display <Nul> as ^@ or <Nul> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 c = NUL;
1708 }
1709 if (IS_SPECIAL(c) || modifiers) /* special key */
1710 special = TRUE;
1711 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712
1713#ifdef FEAT_MBYTE
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001714 if (has_mbyte && !IS_SPECIAL(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 {
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001716 int len = (*mb_ptr2len)(str);
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001717
1718 /* For multi-byte characters check for an illegal byte. */
1719 if (has_mbyte && MB_BYTE2LEN(*str) > len)
1720 {
1721 transchar_nonprint(buf, c);
1722 *sp = str + 1;
1723 return buf;
1724 }
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001725 /* Since 'special' is TRUE the multi-byte character 'c' will be
1726 * processed by get_special_key_name() */
1727 c = (*mb_ptr2char)(str);
1728 *sp = str + len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 }
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001730 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731#endif
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001732 *sp = str + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733
1734 /* Make unprintable characters in <> form, also <M-Space> and <Tab>.
1735 * Use <Space> only for lhs of a mapping. */
1736 if (special || char2cells(c) > 1 || (from && c == ' '))
1737 return get_special_key_name(c, modifiers);
1738 buf[0] = c;
1739 buf[1] = NUL;
1740 return buf;
1741}
1742
1743/*
1744 * Translate a key sequence into special key names.
1745 */
1746 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001747str2specialbuf(char_u *sp, char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748{
1749 char_u *s;
1750
1751 *buf = NUL;
1752 while (*sp)
1753 {
1754 s = str2special(&sp, FALSE);
1755 if ((int)(STRLEN(s) + STRLEN(buf)) < len)
1756 STRCAT(buf, s);
1757 }
1758}
1759
1760/*
1761 * print line for :print or :list command
1762 */
1763 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001764msg_prt_line(char_u *s, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765{
1766 int c;
1767 int col = 0;
1768 int n_extra = 0;
1769 int c_extra = 0;
1770 char_u *p_extra = NULL; /* init to make SASC shut up */
1771 int n;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001772 int attr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 char_u *trail = NULL;
1774#ifdef FEAT_MBYTE
1775 int l;
1776 char_u buf[MB_MAXBYTES + 1];
1777#endif
1778
Bram Moolenaardf177f62005-02-22 08:39:57 +00001779 if (curwin->w_p_list)
1780 list = TRUE;
1781
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 /* find start of trailing whitespace */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001783 if (list && lcs_trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 {
1785 trail = s + STRLEN(s);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001786 while (trail > s && VIM_ISWHITE(trail[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 --trail;
1788 }
1789
1790 /* output a space for an empty line, otherwise the line will be
1791 * overwritten */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001792 if (*s == NUL && !(list && lcs_eol != NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 msg_putchar(' ');
1794
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001795 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 {
Bram Moolenaar56da7972007-01-16 14:46:32 +00001797 if (n_extra > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 {
1799 --n_extra;
1800 if (c_extra)
1801 c = c_extra;
1802 else
1803 c = *p_extra++;
1804 }
1805#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001806 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 {
1808 col += (*mb_ptr2cells)(s);
Bram Moolenaar73284b92015-05-04 17:28:22 +02001809 if (lcs_nbsp != NUL && list
1810 && (mb_ptr2char(s) == 160
1811 || mb_ptr2char(s) == 0x202f))
Bram Moolenaaracf17282011-02-01 17:12:25 +01001812 {
1813 mb_char2bytes(lcs_nbsp, buf);
1814 buf[(*mb_ptr2len)(buf)] = NUL;
1815 }
1816 else
1817 {
1818 mch_memmove(buf, s, (size_t)l);
1819 buf[l] = NUL;
1820 }
Bram Moolenaar56da7972007-01-16 14:46:32 +00001821 msg_puts(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 s += l;
1823 continue;
1824 }
1825#endif
1826 else
1827 {
1828 attr = 0;
1829 c = *s++;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001830 if (c == TAB && (!list || lcs_tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 {
1832 /* tab amount depends on current column */
1833 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001834 if (!list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 {
1836 c = ' ';
1837 c_extra = ' ';
1838 }
1839 else
1840 {
1841 c = lcs_tab1;
1842 c_extra = lcs_tab2;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001843 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 }
1845 }
Bram Moolenaaracf17282011-02-01 17:12:25 +01001846 else if (c == 160 && list && lcs_nbsp != NUL)
1847 {
1848 c = lcs_nbsp;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001849 attr = HL_ATTR(HLF_8);
Bram Moolenaaracf17282011-02-01 17:12:25 +01001850 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00001851 else if (c == NUL && list && lcs_eol != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 {
1853 p_extra = (char_u *)"";
1854 c_extra = NUL;
1855 n_extra = 1;
1856 c = lcs_eol;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001857 attr = HL_ATTR(HLF_AT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 --s;
1859 }
1860 else if (c != NUL && (n = byte2cells(c)) > 1)
1861 {
1862 n_extra = n - 1;
1863 p_extra = transchar_byte(c);
1864 c_extra = NUL;
1865 c = *p_extra++;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001866 /* Use special coloring to be able to distinguish <hex> from
1867 * the same in plain text. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001868 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 }
1870 else if (c == ' ' && trail != NULL && s > trail)
1871 {
1872 c = lcs_trail;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001873 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 }
Bram Moolenaar1510f992015-04-22 22:18:22 +02001875 else if (c == ' ' && list && lcs_space != NUL)
1876 {
1877 c = lcs_space;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001878 attr = HL_ATTR(HLF_8);
Bram Moolenaar1510f992015-04-22 22:18:22 +02001879 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 }
1881
1882 if (c == NUL)
1883 break;
1884
1885 msg_putchar_attr(c, attr);
1886 col++;
1887 }
1888 msg_clr_eos();
1889}
1890
1891#ifdef FEAT_MBYTE
1892/*
1893 * Use screen_puts() to output one multi-byte character.
1894 * Return the pointer "s" advanced to the next character.
1895 */
1896 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001897screen_puts_mbyte(char_u *s, int l, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898{
1899 int cw;
1900
1901 msg_didout = TRUE; /* remember that line is not empty */
1902 cw = (*mb_ptr2cells)(s);
1903 if (cw > 1 && (
1904#ifdef FEAT_RIGHTLEFT
1905 cmdmsg_rl ? msg_col <= 1 :
1906#endif
1907 msg_col == Columns - 1))
1908 {
1909 /* Doesn't fit, print a highlighted '>' to fill it up. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001910 msg_screen_putchar('>', HL_ATTR(HLF_AT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 return s;
1912 }
1913
1914 screen_puts_len(s, l, msg_row, msg_col, attr);
1915#ifdef FEAT_RIGHTLEFT
1916 if (cmdmsg_rl)
1917 {
1918 msg_col -= cw;
1919 if (msg_col == 0)
1920 {
1921 msg_col = Columns;
1922 ++msg_row;
1923 }
1924 }
1925 else
1926#endif
1927 {
1928 msg_col += cw;
1929 if (msg_col >= Columns)
1930 {
1931 msg_col = 0;
1932 ++msg_row;
1933 }
1934 }
1935 return s + l;
1936}
1937#endif
1938
1939/*
1940 * Output a string to the screen at position msg_row, msg_col.
1941 * Update msg_row and msg_col for the next message.
1942 */
1943 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001944msg_puts(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945{
Bram Moolenaaraeac9002016-09-06 22:15:08 +02001946 msg_puts_attr(s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947}
1948
1949 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001950msg_puts_title(
1951 char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952{
Bram Moolenaar8820b482017-03-16 17:23:31 +01001953 msg_puts_attr(s, HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954}
1955
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956/*
1957 * Show a message in such a way that it always fits in the line. Cut out a
1958 * part in the middle and replace it with "..." when necessary.
1959 * Does not handle multi-byte characters!
1960 */
1961 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001962msg_puts_long_attr(char_u *longstr, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963{
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001964 msg_puts_long_len_attr(longstr, (int)STRLEN(longstr), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965}
1966
1967 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001968msg_puts_long_len_attr(char_u *longstr, int len, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969{
1970 int slen = len;
1971 int room;
1972
1973 room = Columns - msg_col;
1974 if (len > room && room >= 20)
1975 {
1976 slen = (room - 3) / 2;
1977 msg_outtrans_len_attr(longstr, slen, attr);
Bram Moolenaar8820b482017-03-16 17:23:31 +01001978 msg_puts_attr((char_u *)"...", HL_ATTR(HLF_8));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 }
1980 msg_outtrans_len_attr(longstr + len - slen, slen, attr);
1981}
1982
1983/*
1984 * Basic function for writing a message with highlight attributes.
1985 */
1986 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001987msg_puts_attr(char_u *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988{
1989 msg_puts_attr_len(s, -1, attr);
1990}
1991
1992/*
1993 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes).
1994 * When "maxlen" is -1 there is no maximum length.
1995 * When "maxlen" is >= 0 the message is not put in the history.
1996 */
1997 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001998msg_puts_attr_len(char_u *str, int maxlen, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 /*
2001 * If redirection is on, also write to the redirection file.
2002 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002003 redir_write(str, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004
2005 /*
2006 * Don't print anything when using ":silent cmd".
2007 */
2008 if (msg_silent != 0)
2009 return;
2010
2011 /* if MSG_HIST flag set, add message to history */
2012 if ((attr & MSG_HIST) && maxlen < 0)
2013 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002014 add_msg_hist(str, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 attr &= ~MSG_HIST;
2016 }
2017
2018 /*
2019 * When writing something to the screen after it has scrolled, requires a
2020 * wait-return prompt later. Needed when scrolling, resetting
2021 * need_wait_return after some prompt, and then outputting something
2022 * without scrolling
2023 */
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002024 if (msg_scrolled != 0 && !msg_scrolled_ign)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 need_wait_return = TRUE;
2026 msg_didany = TRUE; /* remember that something was outputted */
2027
2028 /*
2029 * If there is no valid screen, use fprintf so we can see error messages.
2030 * If termcap is not active, we may be writing in an alternate console
2031 * window, cursor positioning may not work correctly (window size may be
2032 * different, e.g. for Win32 console) or we just don't know where the
2033 * cursor is.
2034 */
2035 if (msg_use_printf())
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002036 msg_puts_printf(str, maxlen);
2037 else
2038 msg_puts_display(str, maxlen, attr, FALSE);
2039}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002041/*
2042 * The display part of msg_puts_attr_len().
2043 * May be called recursively to display scroll-back text.
2044 */
2045 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002046msg_puts_display(
2047 char_u *str,
2048 int maxlen,
2049 int attr,
2050 int recurse)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002051{
2052 char_u *s = str;
2053 char_u *t_s = str; /* string from "t_s" to "s" is still todo */
2054 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */
2055#ifdef FEAT_MBYTE
2056 int l;
2057 int cw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002059 char_u *sb_str = str;
2060 int sb_col = msg_col;
2061 int wrap;
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002062 int did_last_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063
2064 did_wait_return = FALSE;
Bram Moolenaar57b7fe82007-08-05 17:20:43 +00002065 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 {
2067 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002068 * We are at the end of the screen line when:
2069 * - When outputting a newline.
2070 * - When outputting a character in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002072 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073#ifdef FEAT_RIGHTLEFT
2074 cmdmsg_rl
2075 ? (
2076 msg_col <= 1
2077 || (*s == TAB && msg_col <= 7)
2078# ifdef FEAT_MBYTE
2079 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2)
2080# endif
2081 )
2082 :
2083#endif
2084 (msg_col + t_col >= Columns - 1
2085 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7))
2086# ifdef FEAT_MBYTE
2087 || (has_mbyte && (*mb_ptr2cells)(s) > 1
2088 && msg_col + t_col >= Columns - 2)
2089# endif
2090 ))))
2091 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002092 /*
2093 * The screen is scrolled up when at the last row (some terminals
2094 * scroll automatically, some don't. To avoid problems we scroll
2095 * ourselves).
2096 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 if (t_col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 /* output postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002099 t_puts(&t_col, t_s, s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002101 /* When no more prompt and no more room, truncate here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 if (msg_no_more && lines_left == 0)
2103 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002105 /* Scroll the screen up one line. */
2106 msg_scroll_up();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107
2108 msg_row = Rows - 2;
2109 if (msg_col >= Columns) /* can happen after screen resize */
2110 msg_col = Columns - 1;
2111
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002112 /* Display char in last column before showing more-prompt. */
2113 if (*s >= ' '
2114#ifdef FEAT_RIGHTLEFT
2115 && !cmdmsg_rl
2116#endif
2117 )
2118 {
2119#ifdef FEAT_MBYTE
2120 if (has_mbyte)
2121 {
2122 if (enc_utf8 && maxlen >= 0)
2123 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002124 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002125 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002126 l = (*mb_ptr2len)(s);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002127 s = screen_puts_mbyte(s, l, attr);
2128 }
2129 else
2130#endif
2131 msg_screen_putchar(*s++, attr);
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002132 did_last_char = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002133 }
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002134 else
2135 did_last_char = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002136
2137 if (p_more)
2138 /* store text for scrolling back */
2139 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
2140
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002141 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002142 need_wait_return = TRUE; /* may need wait_return in main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143 redraw_cmdline = TRUE;
2144 if (cmdline_row > 0 && !exmode_active)
2145 --cmdline_row;
2146
2147 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002148 * If screen is completely filled and 'more' is set then wait
2149 * for a character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 */
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002151 if (lines_left > 0)
2152 --lines_left;
Bram Moolenaar203335e2006-09-03 14:35:42 +00002153 if (p_more && lines_left == 0 && State != HITRETURN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 && !msg_no_more && !exmode_active)
2155 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156#ifdef FEAT_CON_DIALOG
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002157 if (do_more_prompt(NUL))
2158 s = confirm_msg_tail;
2159#else
2160 (void)do_more_prompt(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161#endif
2162 if (quit_more)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002163 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 }
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002165
2166 /* When we displayed a char in last column need to check if there
2167 * is still more. */
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002168 if (did_last_char)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002169 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 }
2171
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002172 wrap = *s == '\n'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 || msg_col + t_col >= Columns
2174#ifdef FEAT_MBYTE
2175 || (has_mbyte && (*mb_ptr2cells)(s) > 1
2176 && msg_col + t_col >= Columns - 1)
2177#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002178 ;
2179 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b'
2180 || *s == '\t' || *s == BELL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 /* output any postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002182 t_puts(&t_col, t_s, s, attr);
2183
2184 if (wrap && p_more && !recurse)
2185 /* store text for scrolling back */
2186 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187
2188 if (*s == '\n') /* go to next line */
2189 {
2190 msg_didout = FALSE; /* remember that line is empty */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002191#ifdef FEAT_RIGHTLEFT
2192 if (cmdmsg_rl)
2193 msg_col = Columns - 1;
2194 else
2195#endif
2196 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 if (++msg_row >= Rows) /* safety check */
2198 msg_row = Rows - 1;
2199 }
2200 else if (*s == '\r') /* go to column 0 */
2201 {
2202 msg_col = 0;
2203 }
2204 else if (*s == '\b') /* go to previous char */
2205 {
2206 if (msg_col)
2207 --msg_col;
2208 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002209 else if (*s == TAB) /* translate Tab into spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 {
2211 do
2212 msg_screen_putchar(' ', attr);
2213 while (msg_col & 7);
2214 }
Bram Moolenaar165bc692015-07-21 17:53:25 +02002215 else if (*s == BELL) /* beep (from ":sh") */
2216 vim_beep(BO_SH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 else
2218 {
2219#ifdef FEAT_MBYTE
2220 if (has_mbyte)
2221 {
2222 cw = (*mb_ptr2cells)(s);
2223 if (enc_utf8 && maxlen >= 0)
2224 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002225 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002227 l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 }
2229 else
2230 {
2231 cw = 1;
2232 l = 1;
2233 }
2234#endif
2235 /* When drawing from right to left or when a double-wide character
2236 * doesn't fit, draw a single character here. Otherwise collect
2237 * characters and draw them all at once later. */
2238#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
2239 if (
2240# ifdef FEAT_RIGHTLEFT
2241 cmdmsg_rl
2242# ifdef FEAT_MBYTE
2243 ||
2244# endif
2245# endif
2246# ifdef FEAT_MBYTE
2247 (cw > 1 && msg_col + t_col >= Columns - 1)
2248# endif
2249 )
2250 {
2251# ifdef FEAT_MBYTE
2252 if (l > 1)
2253 s = screen_puts_mbyte(s, l, attr) - 1;
2254 else
2255# endif
2256 msg_screen_putchar(*s, attr);
2257 }
2258 else
2259#endif
2260 {
2261 /* postpone this character until later */
2262 if (t_col == 0)
2263 t_s = s;
2264#ifdef FEAT_MBYTE
2265 t_col += cw;
2266 s += l - 1;
2267#else
2268 ++t_col;
2269#endif
2270 }
2271 }
2272 ++s;
2273 }
2274
2275 /* output any postponed text */
2276 if (t_col > 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002277 t_puts(&t_col, t_s, s, attr);
2278 if (p_more && !recurse)
2279 store_sb_text(&sb_str, s, attr, &sb_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280
2281 msg_check();
2282}
2283
2284/*
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002285 * Return TRUE when ":filter pattern" was used and "msg" does not match
2286 * "pattern".
2287 */
2288 int
2289message_filtered(char_u *msg)
2290{
Bram Moolenaard29459b2016-08-26 22:29:11 +02002291 int match;
2292
2293 if (cmdmod.filter_regmatch.regprog == NULL)
2294 return FALSE;
2295 match = vim_regexec(&cmdmod.filter_regmatch, msg, (colnr_T)0);
2296 return cmdmod.filter_force ? match : !match;
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002297}
2298
2299/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002300 * Scroll the screen up one line for displaying the next message line.
2301 */
2302 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002303msg_scroll_up(void)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002304{
2305#ifdef FEAT_GUI
2306 /* Remove the cursor before scrolling, ScreenLines[] is going
2307 * to become invalid. */
2308 if (gui.in_use)
2309 gui_undraw_cursor();
2310#endif
2311 /* scrolling up always works */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002312 mch_disable_flush();
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002313 screen_del_lines(0, 0, 1, (int)Rows, TRUE, 0, NULL);
Bram Moolenaara338adc2018-01-31 20:51:47 +01002314 mch_enable_flush();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002315
2316 if (!can_clear((char_u *)" "))
2317 {
2318 /* Scrolling up doesn't result in the right background. Set the
2319 * background here. It's not efficient, but avoids that we have to do
2320 * it all over the code. */
2321 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2322
2323 /* Also clear the last char of the last but one line if it was not
2324 * cleared before to avoid a scroll-up. */
2325 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1)
2326 screen_fill((int)Rows - 2, (int)Rows - 1,
2327 (int)Columns - 1, (int)Columns, ' ', ' ', 0);
2328 }
2329}
2330
2331/*
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002332 * Increment "msg_scrolled".
2333 */
2334 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002335inc_msg_scrolled(void)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002336{
2337#ifdef FEAT_EVAL
2338 if (*get_vim_var_str(VV_SCROLLSTART) == NUL)
2339 {
2340 char_u *p = sourcing_name;
2341 char_u *tofree = NULL;
2342 int len;
2343
2344 /* v:scrollstart is empty, set it to the script/function name and line
2345 * number */
2346 if (p == NULL)
2347 p = (char_u *)_("Unknown");
2348 else
2349 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002350 len = (int)STRLEN(p) + 40;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002351 tofree = alloc(len);
2352 if (tofree != NULL)
2353 {
2354 vim_snprintf((char *)tofree, len, _("%s line %ld"),
2355 p, (long)sourcing_lnum);
2356 p = tofree;
2357 }
2358 }
2359 set_vim_var_string(VV_SCROLLSTART, p, -1);
2360 vim_free(tofree);
2361 }
2362#endif
2363 ++msg_scrolled;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002364 if (must_redraw < VALID)
2365 must_redraw = VALID;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002366}
2367
2368/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002369 * To be able to scroll back at the "more" and "hit-enter" prompts we need to
2370 * store the displayed text and remember where screen lines start.
2371 */
2372typedef struct msgchunk_S msgchunk_T;
2373struct msgchunk_S
2374{
2375 msgchunk_T *sb_next;
2376 msgchunk_T *sb_prev;
2377 char sb_eol; /* TRUE when line ends after this text */
2378 int sb_msg_col; /* column in which text starts */
2379 int sb_attr; /* text attributes */
2380 char_u sb_text[1]; /* text to be displayed, actually longer */
2381};
2382
2383static msgchunk_T *last_msgchunk = NULL; /* last displayed text */
2384
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01002385static msgchunk_T *msg_sb_start(msgchunk_T *mps);
2386static msgchunk_T *disp_sb_line(int row, msgchunk_T *smp);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002387
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002388typedef enum {
2389 SB_CLEAR_NONE = 0,
2390 SB_CLEAR_ALL,
2391 SB_CLEAR_CMDLINE_BUSY,
2392 SB_CLEAR_CMDLINE_DONE
2393} sb_clear_T;
2394
2395/* When to clear text on next msg. */
2396static sb_clear_T do_clear_sb_text = SB_CLEAR_NONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002397
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002398/*
2399 * Store part of a printed message for displaying when scrolling back.
2400 */
2401 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002402store_sb_text(
2403 char_u **sb_str, /* start of string */
2404 char_u *s, /* just after string */
2405 int attr,
2406 int *sb_col,
2407 int finish) /* line ends */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002408{
2409 msgchunk_T *mp;
2410
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002411 if (do_clear_sb_text == SB_CLEAR_ALL
2412 || do_clear_sb_text == SB_CLEAR_CMDLINE_DONE)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002413 {
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002414 clear_sb_text(do_clear_sb_text == SB_CLEAR_ALL);
2415 do_clear_sb_text = SB_CLEAR_NONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002416 }
2417
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002418 if (s > *sb_str)
2419 {
2420 mp = (msgchunk_T *)alloc((int)(sizeof(msgchunk_T) + (s - *sb_str)));
2421 if (mp != NULL)
2422 {
2423 mp->sb_eol = finish;
2424 mp->sb_msg_col = *sb_col;
2425 mp->sb_attr = attr;
2426 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str);
2427
2428 if (last_msgchunk == NULL)
2429 {
2430 last_msgchunk = mp;
2431 mp->sb_prev = NULL;
2432 }
2433 else
2434 {
2435 mp->sb_prev = last_msgchunk;
2436 last_msgchunk->sb_next = mp;
2437 last_msgchunk = mp;
2438 }
2439 mp->sb_next = NULL;
2440 }
2441 }
2442 else if (finish && last_msgchunk != NULL)
2443 last_msgchunk->sb_eol = TRUE;
2444
2445 *sb_str = s;
2446 *sb_col = 0;
2447}
2448
2449/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002450 * Finished showing messages, clear the scroll-back text on the next message.
2451 */
2452 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002453may_clear_sb_text(void)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002454{
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002455 do_clear_sb_text = SB_CLEAR_ALL;
2456}
2457
2458/*
2459 * Starting to edit the command line, do not clear messages now.
2460 */
2461 void
2462sb_text_start_cmdline(void)
2463{
2464 do_clear_sb_text = SB_CLEAR_CMDLINE_BUSY;
2465 msg_sb_eol();
2466}
2467
2468/*
2469 * Ending to edit the command line. Clear old lines but the last one later.
2470 */
2471 void
2472sb_text_end_cmdline(void)
2473{
2474 do_clear_sb_text = SB_CLEAR_CMDLINE_DONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002475}
2476
2477/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002478 * Clear any text remembered for scrolling back.
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002479 * When "all" is FALSE keep the last line.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002480 * Called when redrawing the screen.
2481 */
2482 void
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002483clear_sb_text(int all)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002484{
2485 msgchunk_T *mp;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002486 msgchunk_T **lastp;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002487
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002488 if (all)
2489 lastp = &last_msgchunk;
2490 else
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002491 {
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002492 if (last_msgchunk == NULL)
2493 return;
2494 lastp = &last_msgchunk->sb_prev;
2495 }
2496
2497 while (*lastp != NULL)
2498 {
2499 mp = (*lastp)->sb_prev;
2500 vim_free(*lastp);
2501 *lastp = mp;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002502 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002503}
2504
2505/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002506 * "g<" command.
2507 */
2508 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002509show_sb_text(void)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002510{
2511 msgchunk_T *mp;
2512
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002513 /* Only show something if there is more than one line, otherwise it looks
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002514 * weird, typing a command without output results in one line. */
2515 mp = msg_sb_start(last_msgchunk);
2516 if (mp == NULL || mp->sb_prev == NULL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02002517 vim_beep(BO_MESS);
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002518 else
2519 {
2520 do_more_prompt('G');
2521 wait_return(FALSE);
2522 }
2523}
2524
2525/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002526 * Move to the start of screen line in already displayed text.
2527 */
2528 static msgchunk_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002529msg_sb_start(msgchunk_T *mps)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002530{
2531 msgchunk_T *mp = mps;
2532
2533 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol)
2534 mp = mp->sb_prev;
2535 return mp;
2536}
2537
2538/*
Bram Moolenaar6df5e5a2012-03-28 16:49:29 +02002539 * Mark the last message chunk as finishing the line.
2540 */
2541 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002542msg_sb_eol(void)
Bram Moolenaar6df5e5a2012-03-28 16:49:29 +02002543{
2544 if (last_msgchunk != NULL)
2545 last_msgchunk->sb_eol = TRUE;
2546}
2547
2548/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002549 * Display a screen line from previously displayed text at row "row".
2550 * Returns a pointer to the text for the next line (can be NULL).
2551 */
2552 static msgchunk_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002553disp_sb_line(int row, msgchunk_T *smp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002554{
2555 msgchunk_T *mp = smp;
2556 char_u *p;
2557
2558 for (;;)
2559 {
2560 msg_row = row;
2561 msg_col = mp->sb_msg_col;
2562 p = mp->sb_text;
2563 if (*p == '\n') /* don't display the line break */
2564 ++p;
2565 msg_puts_display(p, -1, mp->sb_attr, TRUE);
2566 if (mp->sb_eol || mp->sb_next == NULL)
2567 break;
2568 mp = mp->sb_next;
2569 }
2570 return mp->sb_next;
2571}
2572
2573/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 * Output any postponed text for msg_puts_attr_len().
2575 */
2576 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002577t_puts(
2578 int *t_col,
2579 char_u *t_s,
2580 char_u *s,
2581 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582{
2583 /* output postponed text */
2584 msg_didout = TRUE; /* remember that line is not empty */
2585 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002586 msg_col += *t_col;
2587 *t_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588#ifdef FEAT_MBYTE
2589 /* If the string starts with a composing character don't increment the
2590 * column position for it. */
2591 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s)))
2592 --msg_col;
2593#endif
2594 if (msg_col >= Columns)
2595 {
2596 msg_col = 0;
2597 ++msg_row;
2598 }
2599}
2600
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601/*
2602 * Returns TRUE when messages should be printed with mch_errmsg().
2603 * This is used when there is no valid screen, so we can see error messages.
2604 * If termcap is not active, we may be writing in an alternate console
2605 * window, cursor positioning may not work correctly (window size may be
2606 * different, e.g. for Win32 console) or we just don't know where the
2607 * cursor is.
2608 */
2609 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002610msg_use_printf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611{
2612 return (!msg_check_screen()
2613#if defined(WIN3264) && !defined(FEAT_GUI_MSWIN)
2614 || !termcap_active
2615#endif
2616 || (swapping_screen() && !termcap_active)
2617 );
2618}
2619
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002620/*
2621 * Print a message when there is no valid screen.
2622 */
2623 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002624msg_puts_printf(char_u *str, int maxlen)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002625{
2626 char_u *s = str;
2627 char_u buf[4];
2628 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002629#ifdef WIN3264
Bram Moolenaar01efafa2017-08-03 17:37:48 +02002630# if defined(FEAT_MBYTE) && !defined(FEAT_GUI_MSWIN)
2631 char_u *ccp = NULL;
2632
2633# endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002634 if (!(silent_mode && p_verbose == 0))
2635 mch_settmode(TMODE_COOK); /* handle '\r' and '\n' correctly */
Bram Moolenaar01efafa2017-08-03 17:37:48 +02002636
2637# if defined(FEAT_MBYTE) && !defined(FEAT_GUI_MSWIN)
2638 if (enc_codepage >= 0 && (int)GetConsoleCP() != enc_codepage)
2639 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02002640 int inlen = (int)STRLEN(str);
Bram Moolenaar1b66c002017-08-03 18:55:00 +02002641 int outlen;
2642 WCHAR *widestr = (WCHAR *)enc_to_utf16(str, &inlen);
Bram Moolenaar01efafa2017-08-03 17:37:48 +02002643
2644 if (widestr != NULL)
2645 {
Bram Moolenaar1b66c002017-08-03 18:55:00 +02002646 WideCharToMultiByte_alloc(GetConsoleCP(), 0, widestr, inlen,
2647 (LPSTR *)&ccp, &outlen, 0, 0);
Bram Moolenaar01efafa2017-08-03 17:37:48 +02002648 vim_free(widestr);
2649 s = str = ccp;
2650 }
2651 }
2652# endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002653#endif
Bram Moolenaar2321ca22016-09-09 14:17:18 +02002654 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002655 {
2656 if (!(silent_mode && p_verbose == 0))
2657 {
2658 /* NL --> CR NL translation (for Unix, not for "--version") */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002659 p = &buf[0];
2660 if (*s == '\n' && !info_message)
2661 *p++ = '\r';
Bram Moolenaard0573012017-10-28 21:11:06 +02002662#if defined(USE_CR)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002663 else
2664#endif
2665 *p++ = *s;
2666 *p = '\0';
2667 if (info_message) /* informative message, not an error */
2668 mch_msg((char *)buf);
2669 else
2670 mch_errmsg((char *)buf);
2671 }
2672
2673 /* primitive way to compute the current column */
2674#ifdef FEAT_RIGHTLEFT
2675 if (cmdmsg_rl)
2676 {
2677 if (*s == '\r' || *s == '\n')
2678 msg_col = Columns - 1;
2679 else
2680 --msg_col;
2681 }
2682 else
2683#endif
2684 {
2685 if (*s == '\r' || *s == '\n')
2686 msg_col = 0;
2687 else
2688 ++msg_col;
2689 }
2690 ++s;
2691 }
2692 msg_didout = TRUE; /* assume that line is not empty */
2693
2694#ifdef WIN3264
Bram Moolenaar01efafa2017-08-03 17:37:48 +02002695# if defined(FEAT_MBYTE) && !defined(FEAT_GUI_MSWIN)
2696 vim_free(ccp);
2697# endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002698 if (!(silent_mode && p_verbose == 0))
2699 mch_settmode(TMODE_RAW);
2700#endif
2701}
2702
2703/*
2704 * Show the more-prompt and handle the user response.
2705 * This takes care of scrolling back and displaying previously displayed text.
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002706 * When at hit-enter prompt "typed_char" is the already typed character,
2707 * otherwise it's NUL.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002708 * Returns TRUE when jumping ahead to "confirm_msg_tail".
2709 */
2710 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002711do_more_prompt(int typed_char)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002712{
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002713 static int entered = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002714 int used_typed_char = typed_char;
2715 int oldState = State;
2716 int c;
2717#ifdef FEAT_CON_DIALOG
2718 int retval = FALSE;
2719#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002720 int toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002721 msgchunk_T *mp_last = NULL;
2722 msgchunk_T *mp;
2723 int i;
2724
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002725 /* We get called recursively when a timer callback outputs a message. In
Bram Moolenaara0055ad2016-06-02 18:37:05 +02002726 * that case don't show another prompt. Also when at the hit-Enter prompt
2727 * and nothing was typed. */
2728 if (entered || (State == HITRETURN && typed_char == 0))
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002729 return FALSE;
2730 entered = TRUE;
2731
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002732 if (typed_char == 'G')
2733 {
2734 /* "g<": Find first line on the last page. */
2735 mp_last = msg_sb_start(last_msgchunk);
2736 for (i = 0; i < Rows - 2 && mp_last != NULL
2737 && mp_last->sb_prev != NULL; ++i)
2738 mp_last = msg_sb_start(mp_last->sb_prev);
2739 }
2740
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002741 State = ASKMORE;
2742#ifdef FEAT_MOUSE
2743 setmouse();
2744#endif
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002745 if (typed_char == NUL)
2746 msg_moremsg(FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002747 for (;;)
2748 {
2749 /*
2750 * Get a typed character directly from the user.
2751 */
2752 if (used_typed_char != NUL)
2753 {
2754 c = used_typed_char; /* was typed at hit-enter prompt */
2755 used_typed_char = NUL;
2756 }
2757 else
2758 c = get_keystroke();
2759
2760#if defined(FEAT_MENU) && defined(FEAT_GUI)
2761 if (c == K_MENU)
2762 {
2763 int idx = get_menu_index(current_menu, ASKMORE);
2764
2765 /* Used a menu. If it starts with CTRL-Y, it must
2766 * be a "Copy" for the clipboard. Otherwise
2767 * assume that we end */
2768 if (idx == MENU_INDEX_INVALID)
2769 continue;
2770 c = *current_menu->strings[idx];
2771 if (c != NUL && current_menu->strings[idx][1] != NUL)
2772 ins_typebuf(current_menu->strings[idx] + 1,
2773 current_menu->noremap[idx], 0, TRUE,
2774 current_menu->silent[idx]);
2775 }
2776#endif
2777
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002778 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002779 switch (c)
2780 {
2781 case BS: /* scroll one line back */
2782 case K_BS:
2783 case 'k':
2784 case K_UP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002785 toscroll = -1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002786 break;
2787
2788 case CAR: /* one extra line */
2789 case NL:
2790 case 'j':
2791 case K_DOWN:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002792 toscroll = 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002793 break;
2794
2795 case 'u': /* Up half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002796 toscroll = -(Rows / 2);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002797 break;
2798
2799 case 'd': /* Down half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002800 toscroll = Rows / 2;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002801 break;
2802
2803 case 'b': /* one page back */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002804 case K_PAGEUP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002805 toscroll = -(Rows - 1);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002806 break;
2807
2808 case ' ': /* one extra page */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002809 case 'f':
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002810 case K_PAGEDOWN:
2811 case K_LEFTMOUSE:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002812 toscroll = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002813 break;
2814
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002815 case 'g': /* all the way back to the start */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002816 toscroll = -999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002817 break;
2818
2819 case 'G': /* all the way to the end */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002820 toscroll = 999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002821 lines_left = 999999;
2822 break;
2823
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002824 case ':': /* start new command line */
2825#ifdef FEAT_CON_DIALOG
2826 if (!confirm_msg_used)
2827#endif
2828 {
2829 /* Since got_int is set all typeahead will be flushed, but we
2830 * want to keep this ':', remember that in a special way. */
2831 typeahead_noflush(':');
2832 cmdline_row = Rows - 1; /* put ':' on this line */
2833 skip_redraw = TRUE; /* skip redraw once */
2834 need_wait_return = FALSE; /* don't wait in main() */
2835 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002836 /* FALLTHROUGH */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002837 case 'q': /* quit */
2838 case Ctrl_C:
2839 case ESC:
2840#ifdef FEAT_CON_DIALOG
2841 if (confirm_msg_used)
2842 {
2843 /* Jump to the choices of the dialog. */
2844 retval = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002845 }
2846 else
2847#endif
2848 {
2849 got_int = TRUE;
2850 quit_more = TRUE;
2851 }
Bram Moolenaar51306d22009-02-24 03:38:04 +00002852 /* When there is some more output (wrapping line) display that
2853 * without another prompt. */
2854 lines_left = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002855 break;
2856
2857#ifdef FEAT_CLIPBOARD
2858 case Ctrl_Y:
2859 /* Strange way to allow copying (yanking) a modeless
2860 * selection at the more prompt. Use CTRL-Y,
2861 * because the same is used in Cmdline-mode and at the
2862 * hit-enter prompt. However, scrolling one line up
2863 * might be expected... */
2864 if (clip_star.state == SELECT_DONE)
2865 clip_copy_modeless_selection(TRUE);
2866 continue;
2867#endif
2868 default: /* no valid response */
2869 msg_moremsg(TRUE);
2870 continue;
2871 }
2872
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002873 if (toscroll != 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002874 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002875 if (toscroll < 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002876 {
2877 /* go to start of last line */
2878 if (mp_last == NULL)
2879 mp = msg_sb_start(last_msgchunk);
2880 else if (mp_last->sb_prev != NULL)
2881 mp = msg_sb_start(mp_last->sb_prev);
2882 else
2883 mp = NULL;
2884
2885 /* go to start of line at top of the screen */
2886 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL;
2887 ++i)
2888 mp = msg_sb_start(mp->sb_prev);
2889
2890 if (mp != NULL && mp->sb_prev != NULL)
2891 {
2892 /* Find line to be displayed at top. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002893 for (i = 0; i > toscroll; --i)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002894 {
2895 if (mp == NULL || mp->sb_prev == NULL)
2896 break;
2897 mp = msg_sb_start(mp->sb_prev);
2898 if (mp_last == NULL)
2899 mp_last = msg_sb_start(last_msgchunk);
2900 else
2901 mp_last = msg_sb_start(mp_last->sb_prev);
2902 }
2903
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002904 if (toscroll == -1 && screen_ins_lines(0, 0, 1,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002905 (int)Rows, 0, NULL) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002906 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002907 /* display line at top */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002908 (void)disp_sb_line(0, mp);
2909 }
2910 else
2911 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002912 /* redisplay all lines */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002913 screenclear();
Bram Moolenaar773560b2006-05-06 21:38:18 +00002914 for (i = 0; mp != NULL && i < Rows - 1; ++i)
2915 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002916 mp = disp_sb_line(i, mp);
Bram Moolenaar773560b2006-05-06 21:38:18 +00002917 ++msg_scrolled;
2918 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002919 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002920 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002921 }
2922 }
2923 else
2924 {
2925 /* First display any text that we scrolled back. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002926 while (toscroll > 0 && mp_last != NULL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002927 {
2928 /* scroll up, display line at bottom */
2929 msg_scroll_up();
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002930 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002931 screen_fill((int)Rows - 2, (int)Rows - 1, 0,
2932 (int)Columns, ' ', ' ', 0);
2933 mp_last = disp_sb_line((int)Rows - 2, mp_last);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002934 --toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002935 }
2936 }
2937
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002938 if (toscroll <= 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002939 {
2940 /* displayed the requested text, more prompt again */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002941 screen_fill((int)Rows - 1, (int)Rows, 0,
2942 (int)Columns, ' ', ' ', 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002943 msg_moremsg(FALSE);
2944 continue;
2945 }
2946
2947 /* display more text, return to caller */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002948 lines_left = toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002949 }
2950
2951 break;
2952 }
2953
2954 /* clear the --more-- message */
2955 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2956 State = oldState;
2957#ifdef FEAT_MOUSE
2958 setmouse();
2959#endif
2960 if (quit_more)
2961 {
2962 msg_row = Rows - 1;
2963 msg_col = 0;
2964 }
2965#ifdef FEAT_RIGHTLEFT
2966 else if (cmdmsg_rl)
2967 msg_col = Columns - 1;
2968#endif
2969
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002970 entered = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002971#ifdef FEAT_CON_DIALOG
2972 return retval;
2973#else
2974 return FALSE;
2975#endif
2976}
2977
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978#if defined(USE_MCH_ERRMSG) || defined(PROTO)
2979
2980#ifdef mch_errmsg
2981# undef mch_errmsg
2982#endif
2983#ifdef mch_msg
2984# undef mch_msg
2985#endif
2986
2987/*
2988 * Give an error message. To be used when the screen hasn't been initialized
2989 * yet. When stderr can't be used, collect error messages until the GUI has
2990 * started and they can be displayed in a message box.
2991 */
2992 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002993mch_errmsg(char *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994{
2995 int len;
2996
2997#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
2998 /* On Unix use stderr if it's a tty.
2999 * When not going to start the GUI also use stderr.
3000 * On Mac, when started from Finder, stderr is the console. */
3001 if (
3002# ifdef UNIX
Bram Moolenaard0573012017-10-28 21:11:06 +02003003# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
3005# else
3006 isatty(2)
3007# endif
3008# ifdef FEAT_GUI
3009 ||
3010# endif
3011# endif
3012# ifdef FEAT_GUI
3013 !(gui.in_use || gui.starting)
3014# endif
3015 )
3016 {
3017 fprintf(stderr, "%s", str);
3018 return;
3019 }
3020#endif
3021
3022 /* avoid a delay for a message that isn't there */
3023 emsg_on_display = FALSE;
3024
3025 len = (int)STRLEN(str) + 1;
3026 if (error_ga.ga_growsize == 0)
3027 {
3028 error_ga.ga_growsize = 80;
3029 error_ga.ga_itemsize = 1;
3030 }
3031 if (ga_grow(&error_ga, len) == OK)
3032 {
3033 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len,
3034 (char_u *)str, len);
3035#ifdef UNIX
3036 /* remove CR characters, they are displayed */
3037 {
3038 char_u *p;
3039
3040 p = (char_u *)error_ga.ga_data + error_ga.ga_len;
3041 for (;;)
3042 {
3043 p = vim_strchr(p, '\r');
3044 if (p == NULL)
3045 break;
3046 *p = ' ';
3047 }
3048 }
3049#endif
3050 --len; /* don't count the NUL at the end */
3051 error_ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 }
3053}
3054
3055/*
3056 * Give a message. To be used when the screen hasn't been initialized yet.
3057 * When there is no tty, collect messages until the GUI has started and they
3058 * can be displayed in a message box.
3059 */
3060 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003061mch_msg(char *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062{
3063#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
3064 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and
3065 * uses mch_errmsg() when started from the desktop.
3066 * When not going to start the GUI also use stdout.
3067 * On Mac, when started from Finder, stderr is the console. */
3068 if (
3069# ifdef UNIX
Bram Moolenaard0573012017-10-28 21:11:06 +02003070# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
3072# else
3073 isatty(2)
3074# endif
3075# ifdef FEAT_GUI
3076 ||
3077# endif
3078# endif
3079# ifdef FEAT_GUI
3080 !(gui.in_use || gui.starting)
3081# endif
3082 )
3083 {
3084 printf("%s", str);
3085 return;
3086 }
3087# endif
3088 mch_errmsg(str);
3089}
3090#endif /* USE_MCH_ERRMSG */
3091
3092/*
3093 * Put a character on the screen at the current message position and advance
3094 * to the next position. Only for printable ASCII!
3095 */
3096 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003097msg_screen_putchar(int c, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098{
3099 msg_didout = TRUE; /* remember that line is not empty */
3100 screen_putchar(c, msg_row, msg_col, attr);
3101#ifdef FEAT_RIGHTLEFT
3102 if (cmdmsg_rl)
3103 {
3104 if (--msg_col == 0)
3105 {
3106 msg_col = Columns;
3107 ++msg_row;
3108 }
3109 }
3110 else
3111#endif
3112 {
3113 if (++msg_col >= Columns)
3114 {
3115 msg_col = 0;
3116 ++msg_row;
3117 }
3118 }
3119}
3120
3121 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003122msg_moremsg(int full)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003124 int attr;
3125 char_u *s = (char_u *)_("-- More --");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126
Bram Moolenaar8820b482017-03-16 17:23:31 +01003127 attr = HL_ATTR(HLF_M);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003128 screen_puts(s, (int)Rows - 1, 0, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 if (full)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003130 screen_puts((char_u *)
3131 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "),
3132 (int)Rows - 1, vim_strsize(s), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133}
3134
3135/*
3136 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
3137 * exmode_active.
3138 */
3139 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003140repeat_message(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141{
3142 if (State == ASKMORE)
3143 {
3144 msg_moremsg(TRUE); /* display --more-- message again */
3145 msg_row = Rows - 1;
3146 }
3147#ifdef FEAT_CON_DIALOG
3148 else if (State == CONFIRM)
3149 {
3150 display_confirm_msg(); /* display ":confirm" message again */
3151 msg_row = Rows - 1;
3152 }
3153#endif
3154 else if (State == EXTERNCMD)
3155 {
3156 windgoto(msg_row, msg_col); /* put cursor back */
3157 }
3158 else if (State == HITRETURN || State == SETWSIZE)
3159 {
Bram Moolenaar9f108752007-11-24 14:44:58 +00003160 if (msg_row == Rows - 1)
3161 {
3162 /* Avoid drawing the "hit-enter" prompt below the previous one,
3163 * overwrite it. Esp. useful when regaining focus and a
3164 * FocusGained autocmd exists but didn't draw anything. */
3165 msg_didout = FALSE;
3166 msg_col = 0;
3167 msg_clr_eos();
3168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 hit_return_msg();
3170 msg_row = Rows - 1;
3171 }
3172}
3173
3174/*
3175 * msg_check_screen - check if the screen is initialized.
3176 * Also check msg_row and msg_col, if they are too big it may cause a crash.
3177 * While starting the GUI the terminal codes will be set for the GUI, but the
3178 * output goes to the terminal. Don't use the terminal codes then.
3179 */
3180 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003181msg_check_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182{
3183 if (!full_screen || !screen_valid(FALSE))
3184 return FALSE;
3185
3186 if (msg_row >= Rows)
3187 msg_row = Rows - 1;
3188 if (msg_col >= Columns)
3189 msg_col = Columns - 1;
3190 return TRUE;
3191}
3192
3193/*
3194 * Clear from current message position to end of screen.
3195 * Skip this when ":silent" was used, no need to clear for redirection.
3196 */
3197 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003198msg_clr_eos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199{
3200 if (msg_silent == 0)
3201 msg_clr_eos_force();
3202}
3203
3204/*
3205 * Clear from current message position to end of screen.
3206 * Note: msg_col is not updated, so we remember the end of the message
3207 * for msg_check().
3208 */
3209 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003210msg_clr_eos_force(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211{
3212 if (msg_use_printf())
3213 {
3214 if (full_screen) /* only when termcap codes are valid */
3215 {
3216 if (*T_CD)
3217 out_str(T_CD); /* clear to end of display */
3218 else if (*T_CE)
3219 out_str(T_CE); /* clear to end of line */
3220 }
3221 }
3222 else
3223 {
3224#ifdef FEAT_RIGHTLEFT
3225 if (cmdmsg_rl)
3226 {
3227 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0);
3228 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3229 }
3230 else
3231#endif
3232 {
3233 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns,
3234 ' ', ' ', 0);
3235 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3236 }
3237 }
3238}
3239
3240/*
3241 * Clear the command line.
3242 */
3243 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003244msg_clr_cmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245{
3246 msg_row = cmdline_row;
3247 msg_col = 0;
3248 msg_clr_eos_force();
3249}
3250
3251/*
3252 * end putting a message on the screen
3253 * call wait_return if the message does not fit in the available space
3254 * return TRUE if wait_return not called.
3255 */
3256 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003257msg_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258{
3259 /*
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02003260 * If the string is larger than the window,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 * or the ruler option is set and we run into it,
3262 * we have to redraw the window.
3263 * Do not do this if we are abandoning the file or editing the command line.
3264 */
3265 if (!exiting && need_wait_return && !(State & CMDLINE))
3266 {
3267 wait_return(FALSE);
3268 return FALSE;
3269 }
3270 out_flush();
3271 return TRUE;
3272}
3273
3274/*
3275 * If the written message runs into the shown command or ruler, we have to
3276 * wait for hit-return and redraw the window later.
3277 */
3278 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003279msg_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280{
3281 if (msg_row == Rows - 1 && msg_col >= sc_col)
3282 {
3283 need_wait_return = TRUE;
3284 redraw_cmdline = TRUE;
3285 }
3286}
3287
3288/*
3289 * May write a string to the redirection file.
3290 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3291 */
3292 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003293redir_write(char_u *str, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294{
3295 char_u *s = str;
3296 static int cur_col = 0;
3297
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003298 /* Don't do anything for displaying prompts and the like. */
3299 if (redir_off)
3300 return;
3301
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003302 /* If 'verbosefile' is set prepare for writing in that file. */
3303 if (*p_vfile != NUL && verbose_fd == NULL)
3304 verbose_open();
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003305
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003306 if (redirecting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 {
3308 /* If the string doesn't start with CR or NL, go to msg_col */
3309 if (*s != '\n' && *s != '\r')
3310 {
3311 while (cur_col < msg_col)
3312 {
3313#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003314 if (redir_execute)
3315 execute_redir_str((char_u *)" ", -1);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003316 else if (redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003318 else if (redir_vname)
3319 var_redir_str((char_u *)" ", -1);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003320 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003322 if (redir_fd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 fputs(" ", redir_fd);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003324 if (verbose_fd != NULL)
3325 fputs(" ", verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 ++cur_col;
3327 }
3328 }
3329
3330#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003331 if (redir_execute)
3332 execute_redir_str(s, maxlen);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003333 else if (redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334 write_reg_contents(redir_reg, s, maxlen, TRUE);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003335 else if (redir_vname)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003336 var_redir_str(s, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337#endif
3338
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003339 /* Write and adjust the current column. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3341 {
3342#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003343 if (!redir_reg && !redir_vname && !redir_execute)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003345 if (redir_fd != NULL)
3346 putc(*s, redir_fd);
3347 if (verbose_fd != NULL)
3348 putc(*s, verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 if (*s == '\r' || *s == '\n')
3350 cur_col = 0;
3351 else if (*s == '\t')
3352 cur_col += (8 - cur_col % 8);
3353 else
3354 ++cur_col;
3355 ++s;
3356 }
3357
3358 if (msg_silent != 0) /* should update msg_col */
3359 msg_col = cur_col;
3360 }
3361}
3362
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003363 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003364redirecting(void)
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003365{
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003366 return redir_fd != NULL || *p_vfile != NUL
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003367#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003368 || redir_reg || redir_vname || redir_execute
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003369#endif
3370 ;
3371}
3372
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373/*
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00003374 * Before giving verbose message.
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003375 * Must always be called paired with verbose_leave()!
3376 */
3377 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003378verbose_enter(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003379{
3380 if (*p_vfile != NUL)
3381 ++msg_silent;
3382}
3383
3384/*
3385 * After giving verbose message.
3386 * Must always be called paired with verbose_enter()!
3387 */
3388 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003389verbose_leave(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003390{
3391 if (*p_vfile != NUL)
3392 if (--msg_silent < 0)
3393 msg_silent = 0;
3394}
3395
3396/*
3397 * Like verbose_enter() and set msg_scroll when displaying the message.
3398 */
3399 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003400verbose_enter_scroll(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003401{
3402 if (*p_vfile != NUL)
3403 ++msg_silent;
3404 else
3405 /* always scroll up, don't overwrite */
3406 msg_scroll = TRUE;
3407}
3408
3409/*
3410 * Like verbose_leave() and set cmdline_row when displaying the message.
3411 */
3412 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003413verbose_leave_scroll(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003414{
3415 if (*p_vfile != NUL)
3416 {
3417 if (--msg_silent < 0)
3418 msg_silent = 0;
3419 }
3420 else
3421 cmdline_row = msg_row;
3422}
3423
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003424/*
3425 * Called when 'verbosefile' is set: stop writing to the file.
3426 */
3427 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003428verbose_stop(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003429{
3430 if (verbose_fd != NULL)
3431 {
3432 fclose(verbose_fd);
3433 verbose_fd = NULL;
3434 }
3435 verbose_did_open = FALSE;
3436}
3437
3438/*
3439 * Open the file 'verbosefile'.
3440 * Return FAIL or OK.
3441 */
3442 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003443verbose_open(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003444{
3445 if (verbose_fd == NULL && !verbose_did_open)
3446 {
3447 /* Only give the error message once. */
3448 verbose_did_open = TRUE;
3449
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003450 verbose_fd = mch_fopen((char *)p_vfile, "a");
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003451 if (verbose_fd == NULL)
3452 {
3453 EMSG2(_(e_notopen), p_vfile);
3454 return FAIL;
3455 }
3456 }
3457 return OK;
3458}
3459
3460/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 * Give a warning message (for searching).
3462 * Use 'w' highlighting and may repeat the message after redrawing
3463 */
3464 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003465give_warning(char_u *message, int hl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466{
3467 /* Don't do this for ":silent". */
3468 if (msg_silent != 0)
3469 return;
3470
3471 /* Don't want a hit-enter prompt here. */
3472 ++no_wait_return;
Bram Moolenaared203462004-06-16 11:19:22 +00003473
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474#ifdef FEAT_EVAL
3475 set_vim_var_string(VV_WARNINGMSG, message, -1);
3476#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003477 VIM_CLEAR(keep_msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 if (hl)
Bram Moolenaar8820b482017-03-16 17:23:31 +01003479 keep_msg_attr = HL_ATTR(HLF_W);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 else
3481 keep_msg_attr = 0;
3482 if (msg_attr(message, keep_msg_attr) && msg_scrolled == 0)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003483 set_keep_msg(message, keep_msg_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 msg_didout = FALSE; /* overwrite this message */
3485 msg_nowait = TRUE; /* don't wait for this message */
3486 msg_col = 0;
Bram Moolenaared203462004-06-16 11:19:22 +00003487
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 --no_wait_return;
3489}
3490
Bram Moolenaarf8be4612017-06-23 20:52:40 +02003491 void
3492give_warning2(char_u *message, char_u *a1, int hl)
3493{
3494 vim_snprintf((char *)IObuff, IOSIZE, (char *)message, a1);
3495 give_warning(IObuff, hl);
3496}
3497
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498/*
3499 * Advance msg cursor to column "col".
3500 */
3501 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003502msg_advance(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503{
3504 if (msg_silent != 0) /* nothing to advance to */
3505 {
3506 msg_col = col; /* for redirection, may fill it up later */
3507 return;
3508 }
3509 if (col >= Columns) /* not enough room */
3510 col = Columns - 1;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003511#ifdef FEAT_RIGHTLEFT
3512 if (cmdmsg_rl)
3513 while (msg_col > Columns - col)
3514 msg_putchar(' ');
3515 else
3516#endif
3517 while (msg_col < col)
3518 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519}
3520
3521#if defined(FEAT_CON_DIALOG) || defined(PROTO)
3522/*
3523 * Used for "confirm()" function, and the :confirm command prefix.
3524 * Versions which haven't got flexible dialogs yet, and console
3525 * versions, get this generic handler which uses the command line.
3526 *
3527 * type = one of:
3528 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC
3529 * title = title string (can be NULL for default)
3530 * (neither used in console dialogs at the moment)
3531 *
3532 * Format of the "buttons" string:
3533 * "Button1Name\nButton2Name\nButton3Name"
3534 * The first button should normally be the default/accept
3535 * The second button should be the 'Cancel' button
3536 * Other buttons- use your imagination!
3537 * A '&' in a button name becomes a shortcut, so each '&' should be before a
3538 * different letter.
3539 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003541do_dialog(
3542 int type UNUSED,
3543 char_u *title UNUSED,
3544 char_u *message,
3545 char_u *buttons,
3546 int dfltbutton,
3547 char_u *textfield UNUSED, /* IObuff for inputdialog(), NULL
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003548 otherwise */
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003549 int ex_cmd) /* when TRUE pressing : accepts default and starts
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003550 Ex command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551{
3552 int oldState;
3553 int retval = 0;
3554 char_u *hotkeys;
3555 int c;
3556 int i;
3557
3558#ifndef NO_CONSOLE
3559 /* Don't output anything in silent mode ("ex -s") */
3560 if (silent_mode)
3561 return dfltbutton; /* return default option */
3562#endif
3563
3564#ifdef FEAT_GUI_DIALOG
3565 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */
3566 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
3567 {
3568 c = gui_mch_dialog(type, title, message, buttons, dfltbutton,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003569 textfield, ex_cmd);
Bram Moolenaar8de49e12009-02-11 17:47:54 +00003570 /* avoid a hit-enter prompt without clearing the cmdline */
3571 need_wait_return = FALSE;
3572 emsg_on_display = FALSE;
3573 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574
3575 /* Flush output to avoid that further messages and redrawing is done
3576 * in the wrong order. */
3577 out_flush();
3578 gui_mch_update();
3579
3580 return c;
3581 }
3582#endif
3583
3584 oldState = State;
3585 State = CONFIRM;
3586#ifdef FEAT_MOUSE
3587 setmouse();
3588#endif
3589
3590 /*
3591 * Since we wait for a keypress, don't make the
3592 * user press RETURN as well afterwards.
3593 */
3594 ++no_wait_return;
3595 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton);
3596
3597 if (hotkeys != NULL)
3598 {
3599 for (;;)
3600 {
3601 /* Get a typed character directly from the user. */
3602 c = get_keystroke();
3603 switch (c)
3604 {
3605 case CAR: /* User accepts default option */
3606 case NL:
3607 retval = dfltbutton;
3608 break;
3609 case Ctrl_C: /* User aborts/cancels */
3610 case ESC:
3611 retval = 0;
3612 break;
3613 default: /* Could be a hotkey? */
3614 if (c < 0) /* special keys are ignored here */
3615 continue;
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003616 if (c == ':' && ex_cmd)
3617 {
3618 retval = dfltbutton;
3619 ins_char_typebuf(':');
3620 break;
3621 }
3622
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 /* Make the character lowercase, as chars in "hotkeys" are. */
3624 c = MB_TOLOWER(c);
3625 retval = 1;
3626 for (i = 0; hotkeys[i]; ++i)
3627 {
3628#ifdef FEAT_MBYTE
3629 if (has_mbyte)
3630 {
3631 if ((*mb_ptr2char)(hotkeys + i) == c)
3632 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003633 i += (*mb_ptr2len)(hotkeys + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 }
3635 else
3636#endif
3637 if (hotkeys[i] == c)
3638 break;
3639 ++retval;
3640 }
3641 if (hotkeys[i])
3642 break;
3643 /* No hotkey match, so keep waiting */
3644 continue;
3645 }
3646 break;
3647 }
3648
3649 vim_free(hotkeys);
3650 }
3651
3652 State = oldState;
3653#ifdef FEAT_MOUSE
3654 setmouse();
3655#endif
3656 --no_wait_return;
3657 msg_end_prompt();
3658
3659 return retval;
3660}
3661
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003662static int copy_char(char_u *from, char_u *to, int lowercase);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663
3664/*
3665 * Copy one character from "*from" to "*to", taking care of multi-byte
3666 * characters. Return the length of the character in bytes.
3667 */
3668 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003669copy_char(
3670 char_u *from,
3671 char_u *to,
3672 int lowercase) /* make character lower case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673{
3674#ifdef FEAT_MBYTE
3675 int len;
3676 int c;
3677
3678 if (has_mbyte)
3679 {
3680 if (lowercase)
3681 {
3682 c = MB_TOLOWER((*mb_ptr2char)(from));
3683 return (*mb_char2bytes)(c, to);
3684 }
3685 else
3686 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003687 len = (*mb_ptr2len)(from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 mch_memmove(to, from, (size_t)len);
3689 return len;
3690 }
3691 }
3692 else
3693#endif
3694 {
3695 if (lowercase)
3696 *to = (char_u)TOLOWER_LOC(*from);
3697 else
3698 *to = *from;
3699 return 1;
3700 }
3701}
3702
3703/*
3704 * Format the dialog string, and display it at the bottom of
3705 * the screen. Return a string of hotkey chars (if defined) for
3706 * each 'button'. If a button has no hotkey defined, the first character of
3707 * the button is used.
3708 * The hotkeys can be multi-byte characters, but without combining chars.
3709 *
3710 * Returns an allocated string with hotkeys, or NULL for error.
3711 */
3712 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003713msg_show_console_dialog(
3714 char_u *message,
3715 char_u *buttons,
3716 int dfltbutton)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717{
3718 int len = 0;
3719#ifdef FEAT_MBYTE
3720# define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1)
3721#else
3722# define HOTK_LEN 1
3723#endif
3724 int lenhotkey = HOTK_LEN; /* count first button */
3725 char_u *hotk = NULL;
3726 char_u *msgp = NULL;
3727 char_u *hotkp = NULL;
3728 char_u *r;
3729 int copy;
3730#define HAS_HOTKEY_LEN 30
3731 char_u has_hotkey[HAS_HOTKEY_LEN];
3732 int first_hotkey = FALSE; /* first char of button is hotkey */
3733 int idx;
3734
3735 has_hotkey[0] = FALSE;
3736
3737 /*
3738 * First loop: compute the size of memory to allocate.
3739 * Second loop: copy to the allocated memory.
3740 */
3741 for (copy = 0; copy <= 1; ++copy)
3742 {
3743 r = buttons;
3744 idx = 0;
3745 while (*r)
3746 {
3747 if (*r == DLG_BUTTON_SEP)
3748 {
3749 if (copy)
3750 {
3751 *msgp++ = ',';
3752 *msgp++ = ' '; /* '\n' -> ', ' */
3753
3754 /* advance to next hotkey and set default hotkey */
3755#ifdef FEAT_MBYTE
3756 if (has_mbyte)
Bram Moolenaar6a516062007-07-05 08:11:42 +00003757 hotkp += STRLEN(hotkp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 else
3759#endif
3760 ++hotkp;
Bram Moolenaar6a516062007-07-05 08:11:42 +00003761 hotkp[copy_char(r + 1, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 if (dfltbutton)
3763 --dfltbutton;
3764
3765 /* If no hotkey is specified first char is used. */
3766 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx])
3767 first_hotkey = TRUE;
3768 }
3769 else
3770 {
3771 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */
3772 lenhotkey += HOTK_LEN; /* each button needs a hotkey */
3773 if (idx < HAS_HOTKEY_LEN - 1)
3774 has_hotkey[++idx] = FALSE;
3775 }
3776 }
3777 else if (*r == DLG_HOTKEY_CHAR || first_hotkey)
3778 {
3779 if (*r == DLG_HOTKEY_CHAR)
3780 ++r;
3781 first_hotkey = FALSE;
3782 if (copy)
3783 {
3784 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */
3785 *msgp++ = *r;
3786 else
3787 {
3788 /* '&a' -> '[a]' */
3789 *msgp++ = (dfltbutton == 1) ? '[' : '(';
3790 msgp += copy_char(r, msgp, FALSE);
3791 *msgp++ = (dfltbutton == 1) ? ']' : ')';
3792
3793 /* redefine hotkey */
Bram Moolenaar6a516062007-07-05 08:11:42 +00003794 hotkp[copy_char(r, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 }
3796 }
3797 else
3798 {
3799 ++len; /* '&a' -> '[a]' */
3800 if (idx < HAS_HOTKEY_LEN - 1)
3801 has_hotkey[idx] = TRUE;
3802 }
3803 }
3804 else
3805 {
3806 /* everything else copy literally */
3807 if (copy)
3808 msgp += copy_char(r, msgp, FALSE);
3809 }
3810
3811 /* advance to the next character */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003812 MB_PTR_ADV(r);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 }
3814
3815 if (copy)
3816 {
3817 *msgp++ = ':';
3818 *msgp++ = ' ';
3819 *msgp = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 }
3821 else
3822 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003823 len += (int)(STRLEN(message)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003824 + 2 /* for the NL's */
3825 + STRLEN(buttons)
3826 + 3); /* for the ": " and NUL */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003827 lenhotkey++; /* for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828
3829 /* If no hotkey is specified first char is used. */
3830 if (!has_hotkey[0])
3831 {
3832 first_hotkey = TRUE;
3833 len += 2; /* "x" -> "[x]" */
3834 }
3835
3836 /*
3837 * Now allocate and load the strings
3838 */
3839 vim_free(confirm_msg);
3840 confirm_msg = alloc(len);
3841 if (confirm_msg == NULL)
3842 return NULL;
3843 *confirm_msg = NUL;
3844 hotk = alloc(lenhotkey);
3845 if (hotk == NULL)
3846 return NULL;
3847
3848 *confirm_msg = '\n';
3849 STRCPY(confirm_msg + 1, message);
3850
3851 msgp = confirm_msg + 1 + STRLEN(message);
3852 hotkp = hotk;
3853
Bram Moolenaar6a516062007-07-05 08:11:42 +00003854 /* Define first default hotkey. Keep the hotkey string NUL
3855 * terminated to avoid reading past the end. */
3856 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857
3858 /* Remember where the choices start, displaying starts here when
3859 * "hotkp" typed at the more prompt. */
3860 confirm_msg_tail = msgp;
3861 *msgp++ = '\n';
3862 }
3863 }
3864
3865 display_confirm_msg();
3866 return hotk;
3867}
3868
3869/*
3870 * Display the ":confirm" message. Also called when screen resized.
3871 */
3872 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003873display_confirm_msg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874{
3875 /* avoid that 'q' at the more prompt truncates the message here */
3876 ++confirm_msg_used;
3877 if (confirm_msg != NULL)
Bram Moolenaar8820b482017-03-16 17:23:31 +01003878 msg_puts_attr(confirm_msg, HL_ATTR(HLF_M));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 --confirm_msg_used;
3880}
3881
3882#endif /* FEAT_CON_DIALOG */
3883
3884#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
3885
3886 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003887vim_dialog_yesno(
3888 int type,
3889 char_u *title,
3890 char_u *message,
3891 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892{
3893 if (do_dialog(type,
3894 title == NULL ? (char_u *)_("Question") : title,
3895 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003896 (char_u *)_("&Yes\n&No"), dflt, NULL, FALSE) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 return VIM_YES;
3898 return VIM_NO;
3899}
3900
3901 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003902vim_dialog_yesnocancel(
3903 int type,
3904 char_u *title,
3905 char_u *message,
3906 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907{
3908 switch (do_dialog(type,
3909 title == NULL ? (char_u *)_("Question") : title,
3910 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003911 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 {
3913 case 1: return VIM_YES;
3914 case 2: return VIM_NO;
3915 }
3916 return VIM_CANCEL;
3917}
3918
3919 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003920vim_dialog_yesnoallcancel(
3921 int type,
3922 char_u *title,
3923 char_u *message,
3924 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925{
3926 switch (do_dialog(type,
3927 title == NULL ? (char_u *)"Question" : title,
3928 message,
3929 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003930 dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 {
3932 case 1: return VIM_YES;
3933 case 2: return VIM_NO;
3934 case 3: return VIM_ALL;
3935 case 4: return VIM_DISCARDALL;
3936 }
3937 return VIM_CANCEL;
3938}
3939
3940#endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */
3941
3942#if defined(FEAT_BROWSE) || defined(PROTO)
3943/*
3944 * Generic browse function. Calls gui_mch_browse() when possible.
3945 * Later this may pop-up a non-GUI file selector (external command?).
3946 */
3947 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003948do_browse(
3949 int flags, /* BROWSE_SAVE and BROWSE_DIR */
3950 char_u *title, /* title for the window */
3951 char_u *dflt, /* default file name (may include directory) */
3952 char_u *ext, /* extension added */
3953 char_u *initdir, /* initial directory, NULL for current dir or
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 when using path from "dflt" */
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003955 char_u *filter, /* file name filter */
3956 buf_T *buf) /* buffer to read/write for */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957{
3958 char_u *fname;
3959 static char_u *last_dir = NULL; /* last used directory */
3960 char_u *tofree = NULL;
3961 int save_browse = cmdmod.browse;
3962
3963 /* Must turn off browse to avoid that autocommands will get the
3964 * flag too! */
3965 cmdmod.browse = FALSE;
3966
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003967 if (title == NULL || *title == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003969 if (flags & BROWSE_DIR)
3970 title = (char_u *)_("Select Directory dialog");
3971 else if (flags & BROWSE_SAVE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 title = (char_u *)_("Save File dialog");
3973 else
3974 title = (char_u *)_("Open File dialog");
3975 }
3976
3977 /* When no directory specified, use default file name, default dir, buffer
3978 * dir, last dir or current dir */
3979 if ((initdir == NULL || *initdir == NUL) && dflt != NULL && *dflt != NUL)
3980 {
3981 if (mch_isdir(dflt)) /* default file name is a directory */
3982 {
3983 initdir = dflt;
3984 dflt = NULL;
3985 }
3986 else if (gettail(dflt) != dflt) /* default file name includes a path */
3987 {
3988 tofree = vim_strsave(dflt);
3989 if (tofree != NULL)
3990 {
3991 initdir = tofree;
3992 *gettail(initdir) = NUL;
3993 dflt = gettail(dflt);
3994 }
3995 }
3996 }
3997
3998 if (initdir == NULL || *initdir == NUL)
3999 {
4000 /* When 'browsedir' is a directory, use it */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004001 if (STRCMP(p_bsdir, "last") != 0
4002 && STRCMP(p_bsdir, "buffer") != 0
4003 && STRCMP(p_bsdir, "current") != 0
4004 && mch_isdir(p_bsdir))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 initdir = p_bsdir;
4006 /* When saving or 'browsedir' is "buffer", use buffer fname */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004007 else if (((flags & BROWSE_SAVE) || *p_bsdir == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 && buf != NULL && buf->b_ffname != NULL)
4009 {
4010 if (dflt == NULL || *dflt == NUL)
4011 dflt = gettail(curbuf->b_ffname);
4012 tofree = vim_strsave(curbuf->b_ffname);
4013 if (tofree != NULL)
4014 {
4015 initdir = tofree;
4016 *gettail(initdir) = NUL;
4017 }
4018 }
4019 /* When 'browsedir' is "last", use dir from last browse */
4020 else if (*p_bsdir == 'l')
4021 initdir = last_dir;
4022 /* When 'browsedir is "current", use current directory. This is the
4023 * default already, leave initdir empty. */
4024 }
4025
4026# ifdef FEAT_GUI
4027 if (gui.in_use) /* when this changes, also adjust f_has()! */
4028 {
4029 if (filter == NULL
4030# ifdef FEAT_EVAL
4031 && (filter = get_var_value((char_u *)"b:browsefilter")) == NULL
4032 && (filter = get_var_value((char_u *)"g:browsefilter")) == NULL
4033# endif
4034 )
4035 filter = BROWSE_FILTER_DEFAULT;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004036 if (flags & BROWSE_DIR)
4037 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02004038# if defined(FEAT_GUI_GTK) || defined(WIN3264)
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004039 /* For systems that have a directory dialog. */
4040 fname = gui_mch_browsedir(title, initdir);
4041# else
4042 /* Generic solution for selecting a directory: select a file and
4043 * remove the file name. */
4044 fname = gui_mch_browse(0, title, dflt, ext, initdir, (char_u *)"");
4045# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02004046# if !defined(FEAT_GUI_GTK)
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004047 /* Win32 adds a dummy file name, others return an arbitrary file
4048 * name. GTK+ 2 returns only the directory, */
4049 if (fname != NULL && *fname != NUL && !mch_isdir(fname))
4050 {
4051 /* Remove the file name. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004052 char_u *tail = gettail_sep(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004053
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004054 if (tail == fname)
4055 *tail++ = '.'; /* use current dir */
4056 *tail = NUL;
4057 }
4058# endif
4059 }
4060 else
4061 fname = gui_mch_browse(flags & BROWSE_SAVE,
4062 title, dflt, ext, initdir, filter);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063
4064 /* We hang around in the dialog for a while, the user might do some
4065 * things to our files. The Win32 dialog allows deleting or renaming
4066 * a file, check timestamps. */
4067 need_check_timestamps = TRUE;
4068 did_check_timestamps = FALSE;
4069 }
4070 else
4071# endif
4072 {
4073 /* TODO: non-GUI file selector here */
4074 EMSG(_("E338: Sorry, no file browser in console mode"));
4075 fname = NULL;
4076 }
4077
4078 /* keep the directory for next time */
4079 if (fname != NULL)
4080 {
4081 vim_free(last_dir);
4082 last_dir = vim_strsave(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004083 if (last_dir != NULL && !(flags & BROWSE_DIR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 {
4085 *gettail(last_dir) = NUL;
4086 if (*last_dir == NUL)
4087 {
4088 /* filename only returned, must be in current dir */
4089 vim_free(last_dir);
4090 last_dir = alloc(MAXPATHL);
4091 if (last_dir != NULL)
4092 mch_dirname(last_dir, MAXPATHL);
4093 }
4094 }
4095 }
4096
4097 vim_free(tofree);
4098 cmdmod.browse = save_browse;
4099
4100 return fname;
4101}
4102#endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004103
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004104#if defined(FEAT_EVAL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004105static char *e_printf = N_("E766: Insufficient arguments for printf()");
4106
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004107static varnumber_T tv_nr(typval_T *tvs, int *idxp);
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004108static char *tv_str(typval_T *tvs, int *idxp, char_u **tofree);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004109# ifdef FEAT_FLOAT
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004110static double tv_float(typval_T *tvs, int *idxp);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004111# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004112
4113/*
4114 * Get number argument from "idxp" entry in "tvs". First entry is 1.
4115 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004116 static varnumber_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004117tv_nr(typval_T *tvs, int *idxp)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004118{
4119 int idx = *idxp - 1;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004120 varnumber_T n = 0;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004121 int err = FALSE;
4122
4123 if (tvs[idx].v_type == VAR_UNKNOWN)
4124 EMSG(_(e_printf));
4125 else
4126 {
4127 ++*idxp;
4128 n = get_tv_number_chk(&tvs[idx], &err);
4129 if (err)
4130 n = 0;
4131 }
4132 return n;
4133}
4134
4135/*
4136 * Get string argument from "idxp" entry in "tvs". First entry is 1.
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004137 * If "tofree" is NULL get_tv_string_chk() is used. Some types (e.g. List)
4138 * are not converted to a string.
4139 * If "tofree" is not NULL echo_string() is used. All types are converted to
4140 * a string with the same format as ":echo". The caller must free "*tofree".
Bram Moolenaar1e015462005-09-25 22:16:38 +00004141 * Returns NULL for an error.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004142 */
4143 static char *
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004144tv_str(typval_T *tvs, int *idxp, char_u **tofree)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004145{
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004146 int idx = *idxp - 1;
4147 char *s = NULL;
4148 static char_u numbuf[NUMBUFLEN];
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004149
4150 if (tvs[idx].v_type == VAR_UNKNOWN)
4151 EMSG(_(e_printf));
4152 else
4153 {
4154 ++*idxp;
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004155 if (tofree != NULL)
4156 s = (char *)echo_string(&tvs[idx], tofree, numbuf, get_copyID());
4157 else
4158 s = (char *)get_tv_string_chk(&tvs[idx]);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004159 }
4160 return s;
4161}
Bram Moolenaara7241f52008-06-24 20:39:31 +00004162
4163# ifdef FEAT_FLOAT
4164/*
4165 * Get float argument from "idxp" entry in "tvs". First entry is 1.
4166 */
4167 static double
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004168tv_float(typval_T *tvs, int *idxp)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004169{
4170 int idx = *idxp - 1;
4171 double f = 0;
4172
4173 if (tvs[idx].v_type == VAR_UNKNOWN)
4174 EMSG(_(e_printf));
4175 else
4176 {
4177 ++*idxp;
4178 if (tvs[idx].v_type == VAR_FLOAT)
4179 f = tvs[idx].vval.v_float;
Bram Moolenaarc4a87012008-06-28 14:10:11 +00004180 else if (tvs[idx].v_type == VAR_NUMBER)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004181 f = (double)tvs[idx].vval.v_number;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004182 else
4183 EMSG(_("E807: Expected Float argument for printf()"));
4184 }
4185 return f;
4186}
4187# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004188#endif
4189
Bram Moolenaar7f7bd292016-08-28 21:21:31 +02004190#ifdef FEAT_FLOAT
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004191/*
Bram Moolenaare9997822016-08-28 16:03:38 +02004192 * Return the representation of infinity for printf() function:
4193 * "-inf", "inf", "+inf", " inf", "-INF", "INF", "+INF" or " INF".
4194 */
4195 static const char *
4196infinity_str(int positive,
4197 char fmt_spec,
4198 int force_sign,
4199 int space_for_positive)
4200{
4201 static const char *table[] =
4202 {
4203 "-inf", "inf", "+inf", " inf",
4204 "-INF", "INF", "+INF", " INF"
4205 };
4206 int idx = positive * (1 + force_sign + force_sign * space_for_positive);
4207
4208 if (ASCII_ISUPPER(fmt_spec))
4209 idx += 4;
4210 return table[idx];
4211}
Bram Moolenaar7f7bd292016-08-28 21:21:31 +02004212#endif
Bram Moolenaare9997822016-08-28 16:03:38 +02004213
4214/*
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004215 * This code was included to provide a portable vsnprintf() and snprintf().
Bram Moolenaara2031822006-03-07 22:29:51 +00004216 * Some systems may provide their own, but we always use this one for
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004217 * consistency.
4218 *
4219 * This code is based on snprintf.c - a portable implementation of snprintf
4220 * by Mark Martinec <mark.martinec@ijs.si>, Version 2.2, 2000-10-06.
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00004221 * Included with permission. It was heavily modified to fit in Vim.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004222 * The original code, including useful comments, can be found here:
4223 * http://www.ijs.si/software/snprintf/
4224 *
4225 * This snprintf() only supports the following conversion specifiers:
4226 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
4227 * with flags: '-', '+', ' ', '0' and '#'.
4228 * An asterisk is supported for field width as well as precision.
4229 *
Bram Moolenaar04186092016-08-29 21:55:35 +02004230 * Limited support for floating point was added: 'f', 'F', 'e', 'E', 'g', 'G'.
Bram Moolenaara7241f52008-06-24 20:39:31 +00004231 *
Bram Moolenaare9997822016-08-28 16:03:38 +02004232 * Length modifiers 'h' (short int) and 'l' (long int) and 'll' (long long int)
4233 * are supported.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004234 *
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004235 * The locale is not used, the string is used as a byte string. This is only
4236 * relevant for double-byte encodings where the second byte may be '%'.
4237 *
Bram Moolenaara2031822006-03-07 22:29:51 +00004238 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL
4239 * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004240 *
4241 * The return value is the number of characters which would be generated
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004242 * for the given input, excluding the trailing NUL. If this value
Bram Moolenaara2031822006-03-07 22:29:51 +00004243 * is greater or equal to "str_m", not all characters from the result
4244 * have been stored in str, output bytes beyond the ("str_m"-1) -th character
4245 * are discarded. If "str_m" is greater than zero it is guaranteed
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004246 * the resulting string will be NUL-terminated.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004247 */
4248
4249/*
4250 * When va_list is not supported we only define vim_snprintf().
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004251 *
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004252 * vim_vsnprintf_typval() can be invoked with either "va_list" or a list of
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004253 * "typval_T". When the latter is not used it must be NULL.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004254 */
4255
4256/* When generating prototypes all of this is skipped, cproto doesn't
4257 * understand this. */
4258#ifndef PROTO
Bram Moolenaara800b422010-06-27 01:15:55 +02004259
Bram Moolenaara800b422010-06-27 01:15:55 +02004260/* Like vim_vsnprintf() but append to the string. */
4261 int
4262vim_snprintf_add(char *str, size_t str_m, char *fmt, ...)
4263{
4264 va_list ap;
4265 int str_l;
4266 size_t len = STRLEN(str);
4267 size_t space;
4268
4269 if (str_m <= len)
4270 space = 0;
4271 else
4272 space = str_m - len;
4273 va_start(ap, fmt);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004274 str_l = vim_vsnprintf(str + len, space, fmt, ap);
Bram Moolenaara800b422010-06-27 01:15:55 +02004275 va_end(ap);
4276 return str_l;
4277}
Bram Moolenaara800b422010-06-27 01:15:55 +02004278
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004279 int
4280vim_snprintf(char *str, size_t str_m, char *fmt, ...)
4281{
4282 va_list ap;
4283 int str_l;
4284
4285 va_start(ap, fmt);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004286 str_l = vim_vsnprintf(str, str_m, fmt, ap);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004287 va_end(ap);
4288 return str_l;
4289}
4290
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004291 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004292vim_vsnprintf(
4293 char *str,
4294 size_t str_m,
4295 char *fmt,
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004296 va_list ap)
4297{
4298 return vim_vsnprintf_typval(str, str_m, fmt, ap, NULL);
4299}
4300
4301 int
4302vim_vsnprintf_typval(
4303 char *str,
4304 size_t str_m,
4305 char *fmt,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004306 va_list ap,
4307 typval_T *tvs)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004308{
4309 size_t str_l = 0;
4310 char *p = fmt;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004311 int arg_idx = 1;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004312
4313 if (p == NULL)
4314 p = "";
4315 while (*p != NUL)
4316 {
4317 if (*p != '%')
4318 {
4319 char *q = strchr(p + 1, '%');
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004320 size_t n = (q == NULL) ? STRLEN(p) : (size_t)(q - p);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004321
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004322 /* Copy up to the next '%' or NUL without any changes. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004323 if (str_l < str_m)
4324 {
4325 size_t avail = str_m - str_l;
4326
4327 mch_memmove(str + str_l, p, n > avail ? avail : n);
4328 }
4329 p += n;
4330 str_l += n;
4331 }
4332 else
4333 {
4334 size_t min_field_width = 0, precision = 0;
4335 int zero_padding = 0, precision_specified = 0, justify_left = 0;
4336 int alternate_form = 0, force_sign = 0;
4337
4338 /* If both the ' ' and '+' flags appear, the ' ' flag should be
4339 * ignored. */
4340 int space_for_positive = 1;
4341
4342 /* allowed values: \0, h, l, L */
4343 char length_modifier = '\0';
4344
4345 /* temporary buffer for simple numeric->string conversion */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004346# if defined(FEAT_FLOAT)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004347# define TMP_LEN 350 /* On my system 1e308 is the biggest number possible.
Bram Moolenaara7241f52008-06-24 20:39:31 +00004348 * That sounds reasonable to use as the maximum
4349 * printable. */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004350# elif defined(FEAT_NUM64)
4351# define TMP_LEN 66
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004352# else
Bram Moolenaar91984b92016-08-16 21:58:41 +02004353# define TMP_LEN 34
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004354# endif
Bram Moolenaara7241f52008-06-24 20:39:31 +00004355 char tmp[TMP_LEN];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004356
4357 /* string address in case of string argument */
4358 char *str_arg;
4359
4360 /* natural field width of arg without padding and sign */
4361 size_t str_arg_l;
4362
4363 /* unsigned char argument value - only defined for c conversion.
4364 * N.B. standard explicitly states the char argument for the c
4365 * conversion is unsigned */
4366 unsigned char uchar_arg;
4367
4368 /* number of zeros to be inserted for numeric conversions as
4369 * required by the precision or minimal field width */
4370 size_t number_of_zeros_to_pad = 0;
4371
4372 /* index into tmp where zero padding is to be inserted */
4373 size_t zero_padding_insertion_ind = 0;
4374
4375 /* current conversion specifier character */
4376 char fmt_spec = '\0';
4377
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004378 /* buffer for 's' and 'S' specs */
4379 char_u *tofree = NULL;
4380
4381
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004382 str_arg = NULL;
4383 p++; /* skip '%' */
4384
4385 /* parse flags */
4386 while (*p == '0' || *p == '-' || *p == '+' || *p == ' '
4387 || *p == '#' || *p == '\'')
4388 {
4389 switch (*p)
4390 {
4391 case '0': zero_padding = 1; break;
4392 case '-': justify_left = 1; break;
4393 case '+': force_sign = 1; space_for_positive = 0; break;
4394 case ' ': force_sign = 1;
4395 /* If both the ' ' and '+' flags appear, the ' '
4396 * flag should be ignored */
4397 break;
4398 case '#': alternate_form = 1; break;
4399 case '\'': break;
4400 }
4401 p++;
4402 }
4403 /* If the '0' and '-' flags both appear, the '0' flag should be
4404 * ignored. */
4405
4406 /* parse field width */
4407 if (*p == '*')
4408 {
4409 int j;
4410
4411 p++;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004412 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004413# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004414 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004415# endif
4416 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004417 if (j >= 0)
4418 min_field_width = j;
4419 else
4420 {
4421 min_field_width = -j;
4422 justify_left = 1;
4423 }
4424 }
4425 else if (VIM_ISDIGIT((int)(*p)))
4426 {
4427 /* size_t could be wider than unsigned int; make sure we treat
4428 * argument like common implementations do */
4429 unsigned int uj = *p++ - '0';
4430
4431 while (VIM_ISDIGIT((int)(*p)))
4432 uj = 10 * uj + (unsigned int)(*p++ - '0');
4433 min_field_width = uj;
4434 }
4435
4436 /* parse precision */
4437 if (*p == '.')
4438 {
4439 p++;
4440 precision_specified = 1;
4441 if (*p == '*')
4442 {
4443 int j;
4444
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004445 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004446# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004447 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004448# endif
4449 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004450 p++;
4451 if (j >= 0)
4452 precision = j;
4453 else
4454 {
4455 precision_specified = 0;
4456 precision = 0;
4457 }
4458 }
4459 else if (VIM_ISDIGIT((int)(*p)))
4460 {
4461 /* size_t could be wider than unsigned int; make sure we
4462 * treat argument like common implementations do */
4463 unsigned int uj = *p++ - '0';
4464
4465 while (VIM_ISDIGIT((int)(*p)))
4466 uj = 10 * uj + (unsigned int)(*p++ - '0');
4467 precision = uj;
4468 }
4469 }
4470
4471 /* parse 'h', 'l' and 'll' length modifiers */
4472 if (*p == 'h' || *p == 'l')
4473 {
4474 length_modifier = *p;
4475 p++;
4476 if (length_modifier == 'l' && *p == 'l')
4477 {
4478 /* double l = long long */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004479# ifdef FEAT_NUM64
4480 length_modifier = 'L';
4481# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004482 length_modifier = 'l'; /* treat it as a single 'l' */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004483# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004484 p++;
4485 }
4486 }
4487 fmt_spec = *p;
4488
4489 /* common synonyms: */
4490 switch (fmt_spec)
4491 {
4492 case 'i': fmt_spec = 'd'; break;
4493 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break;
4494 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break;
4495 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break;
4496 default: break;
4497 }
4498
Bram Moolenaar38ee6b02016-07-12 21:11:33 +02004499# if defined(FEAT_EVAL) && defined(FEAT_NUM64)
4500 switch (fmt_spec)
4501 {
4502 case 'd': case 'u': case 'o': case 'x': case 'X':
4503 if (tvs != NULL && length_modifier == '\0')
4504 length_modifier = 'L';
4505 }
4506# endif
4507
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004508 /* get parameter value, do initial processing */
4509 switch (fmt_spec)
4510 {
4511 /* '%' and 'c' behave similar to 's' regarding flags and field
4512 * widths */
4513 case '%':
4514 case 'c':
4515 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004516 case 'S':
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004517 length_modifier = '\0';
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004518 str_arg_l = 1;
4519 switch (fmt_spec)
4520 {
4521 case '%':
4522 str_arg = p;
4523 break;
4524
4525 case 'c':
4526 {
4527 int j;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004528
4529 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004530# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004531 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004532# endif
4533 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004534 /* standard demands unsigned char */
4535 uchar_arg = (unsigned char)j;
4536 str_arg = (char *)&uchar_arg;
4537 break;
4538 }
4539
4540 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004541 case 'S':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004542 str_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004543# if defined(FEAT_EVAL)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004544 tvs != NULL ? tv_str(tvs, &arg_idx, &tofree) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004545# endif
4546 va_arg(ap, char *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004547 if (str_arg == NULL)
4548 {
4549 str_arg = "[NULL]";
4550 str_arg_l = 6;
4551 }
4552 /* make sure not to address string beyond the specified
4553 * precision !!! */
4554 else if (!precision_specified)
4555 str_arg_l = strlen(str_arg);
4556 /* truncate string if necessary as requested by precision */
4557 else if (precision == 0)
4558 str_arg_l = 0;
4559 else
4560 {
Bram Moolenaar223b4312006-05-13 11:09:22 +00004561 /* Don't put the #if inside memchr(), it can be a
4562 * macro. */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004563# if VIM_SIZEOF_INT <= 2
Bram Moolenaar223b4312006-05-13 11:09:22 +00004564 char *q = memchr(str_arg, '\0', precision);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004565# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004566 /* memchr on HP does not like n > 2^31 !!! */
4567 char *q = memchr(str_arg, '\0',
Bram Moolenaar223b4312006-05-13 11:09:22 +00004568 precision <= (size_t)0x7fffffffL ? precision
4569 : (size_t)0x7fffffffL);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004570# endif
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004571 str_arg_l = (q == NULL) ? precision
4572 : (size_t)(q - str_arg);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004573 }
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004574# ifdef FEAT_MBYTE
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004575 if (fmt_spec == 'S')
4576 {
4577 if (min_field_width != 0)
4578 min_field_width += STRLEN(str_arg)
4579 - mb_string2cells((char_u *)str_arg, -1);
4580 if (precision)
4581 {
4582 char_u *p1 = (char_u *)str_arg;
4583 size_t i;
4584
4585 for (i = 0; i < precision && *p1; i++)
4586 p1 += mb_ptr2len(p1);
4587
4588 str_arg_l = precision = p1 - (char_u *)str_arg;
4589 }
4590 }
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004591# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004592 break;
4593
4594 default:
4595 break;
4596 }
4597 break;
4598
Bram Moolenaar91984b92016-08-16 21:58:41 +02004599 case 'd': case 'u':
4600 case 'b': case 'B':
4601 case 'o':
4602 case 'x': case 'X':
4603 case 'p':
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004604 {
Bram Moolenaar91984b92016-08-16 21:58:41 +02004605 /* NOTE: the u, b, o, x, X and p conversion specifiers
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004606 * imply the value is unsigned; d implies a signed
4607 * value */
4608
4609 /* 0 if numeric argument is zero (or if pointer is
4610 * NULL for 'p'), +1 if greater than zero (or nonzero
4611 * for unsigned arguments), -1 if negative (unsigned
4612 * argument is never negative) */
4613 int arg_sign = 0;
4614
4615 /* only defined for length modifier h, or for no
4616 * length modifiers */
4617 int int_arg = 0;
4618 unsigned int uint_arg = 0;
4619
4620 /* only defined for length modifier l */
4621 long int long_arg = 0;
4622 unsigned long int ulong_arg = 0;
4623
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004624# ifdef FEAT_NUM64
4625 /* only defined for length modifier ll */
4626 varnumber_T llong_arg = 0;
4627 uvarnumber_T ullong_arg = 0;
4628# endif
4629
Bram Moolenaare9997822016-08-28 16:03:38 +02004630 /* only defined for b conversion */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004631 uvarnumber_T bin_arg = 0;
4632
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004633 /* pointer argument value -only defined for p
4634 * conversion */
4635 void *ptr_arg = NULL;
4636
4637 if (fmt_spec == 'p')
4638 {
4639 length_modifier = '\0';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004640 ptr_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004641# if defined(FEAT_EVAL)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004642 tvs != NULL ? (void *)tv_str(tvs, &arg_idx,
4643 NULL) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004644# endif
4645 va_arg(ap, void *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004646 if (ptr_arg != NULL)
4647 arg_sign = 1;
4648 }
Bram Moolenaar91984b92016-08-16 21:58:41 +02004649 else if (fmt_spec == 'b' || fmt_spec == 'B')
4650 {
4651 bin_arg =
4652# if defined(FEAT_EVAL)
4653 tvs != NULL ?
4654 (uvarnumber_T)tv_nr(tvs, &arg_idx) :
4655# endif
4656 va_arg(ap, uvarnumber_T);
4657 if (bin_arg != 0)
4658 arg_sign = 1;
4659 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004660 else if (fmt_spec == 'd')
4661 {
4662 /* signed */
4663 switch (length_modifier)
4664 {
4665 case '\0':
4666 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004667 /* char and short arguments are passed as int. */
4668 int_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004669# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004670 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004671# endif
4672 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004673 if (int_arg > 0)
4674 arg_sign = 1;
4675 else if (int_arg < 0)
4676 arg_sign = -1;
4677 break;
4678 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004679 long_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004680# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004681 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004682# endif
4683 va_arg(ap, long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004684 if (long_arg > 0)
4685 arg_sign = 1;
4686 else if (long_arg < 0)
4687 arg_sign = -1;
4688 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004689# ifdef FEAT_NUM64
4690 case 'L':
4691 llong_arg =
4692# if defined(FEAT_EVAL)
4693 tvs != NULL ? tv_nr(tvs, &arg_idx) :
4694# endif
4695 va_arg(ap, varnumber_T);
4696 if (llong_arg > 0)
4697 arg_sign = 1;
4698 else if (llong_arg < 0)
4699 arg_sign = -1;
4700 break;
4701# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004702 }
4703 }
4704 else
4705 {
4706 /* unsigned */
4707 switch (length_modifier)
4708 {
4709 case '\0':
4710 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004711 uint_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004712# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004713 tvs != NULL ? (unsigned)
4714 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004715# endif
4716 va_arg(ap, unsigned int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004717 if (uint_arg != 0)
4718 arg_sign = 1;
4719 break;
4720 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004721 ulong_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004722# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004723 tvs != NULL ? (unsigned long)
4724 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004725# endif
4726 va_arg(ap, unsigned long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004727 if (ulong_arg != 0)
4728 arg_sign = 1;
4729 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004730# ifdef FEAT_NUM64
4731 case 'L':
4732 ullong_arg =
4733# if defined(FEAT_EVAL)
4734 tvs != NULL ? (uvarnumber_T)
4735 tv_nr(tvs, &arg_idx) :
4736# endif
4737 va_arg(ap, uvarnumber_T);
4738 if (ullong_arg != 0)
4739 arg_sign = 1;
4740 break;
4741# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004742 }
4743 }
4744
4745 str_arg = tmp;
4746 str_arg_l = 0;
4747
4748 /* NOTE:
4749 * For d, i, u, o, x, and X conversions, if precision is
4750 * specified, the '0' flag should be ignored. This is so
4751 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux,
4752 * FreeBSD, NetBSD; but not with Perl.
4753 */
4754 if (precision_specified)
4755 zero_padding = 0;
4756 if (fmt_spec == 'd')
4757 {
4758 if (force_sign && arg_sign >= 0)
4759 tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
4760 /* leave negative numbers for sprintf to handle, to
4761 * avoid handling tricky cases like (short int)-32768 */
4762 }
4763 else if (alternate_form)
4764 {
4765 if (arg_sign != 0
Bram Moolenaar91984b92016-08-16 21:58:41 +02004766 && (fmt_spec == 'b' || fmt_spec == 'B'
4767 || fmt_spec == 'x' || fmt_spec == 'X') )
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004768 {
4769 tmp[str_arg_l++] = '0';
4770 tmp[str_arg_l++] = fmt_spec;
4771 }
4772 /* alternate form should have no effect for p
4773 * conversion, but ... */
4774 }
4775
4776 zero_padding_insertion_ind = str_arg_l;
4777 if (!precision_specified)
4778 precision = 1; /* default precision is 1 */
4779 if (precision == 0 && arg_sign == 0)
4780 {
4781 /* When zero value is formatted with an explicit
4782 * precision 0, the resulting formatted string is
Bram Moolenaar91984b92016-08-16 21:58:41 +02004783 * empty (d, i, u, b, B, o, x, X, p). */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004784 }
4785 else
4786 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004787 char f[6];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004788 int f_l = 0;
4789
4790 /* construct a simple format string for sprintf */
4791 f[f_l++] = '%';
4792 if (!length_modifier)
4793 ;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004794 else if (length_modifier == 'L')
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004795 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004796# ifdef FEAT_NUM64
4797# ifdef WIN3264
4798 f[f_l++] = 'I';
4799 f[f_l++] = '6';
4800 f[f_l++] = '4';
4801# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004802 f[f_l++] = 'l';
4803 f[f_l++] = 'l';
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004804# endif
4805# else
4806 f[f_l++] = 'l';
4807# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004808 }
4809 else
4810 f[f_l++] = length_modifier;
4811 f[f_l++] = fmt_spec;
4812 f[f_l++] = '\0';
4813
4814 if (fmt_spec == 'p')
4815 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg);
Bram Moolenaar91984b92016-08-16 21:58:41 +02004816 else if (fmt_spec == 'b' || fmt_spec == 'B')
4817 {
4818 char b[8 * sizeof(uvarnumber_T)];
4819 size_t b_l = 0;
4820 uvarnumber_T bn = bin_arg;
4821
4822 do
4823 {
4824 b[sizeof(b) - ++b_l] = '0' + (bn & 0x1);
4825 bn >>= 1;
4826 }
4827 while (bn != 0);
4828
4829 memcpy(tmp + str_arg_l, b + sizeof(b) - b_l, b_l);
4830 str_arg_l += b_l;
4831 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004832 else if (fmt_spec == 'd')
4833 {
4834 /* signed */
4835 switch (length_modifier)
4836 {
4837 case '\0':
4838 case 'h': str_arg_l += sprintf(
4839 tmp + str_arg_l, f, int_arg);
4840 break;
4841 case 'l': str_arg_l += sprintf(
4842 tmp + str_arg_l, f, long_arg);
4843 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004844# ifdef FEAT_NUM64
4845 case 'L': str_arg_l += sprintf(
4846 tmp + str_arg_l, f, llong_arg);
4847 break;
4848# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004849 }
4850 }
4851 else
4852 {
4853 /* unsigned */
4854 switch (length_modifier)
4855 {
4856 case '\0':
4857 case 'h': str_arg_l += sprintf(
4858 tmp + str_arg_l, f, uint_arg);
4859 break;
4860 case 'l': str_arg_l += sprintf(
4861 tmp + str_arg_l, f, ulong_arg);
4862 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004863# ifdef FEAT_NUM64
4864 case 'L': str_arg_l += sprintf(
4865 tmp + str_arg_l, f, ullong_arg);
4866 break;
4867# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004868 }
4869 }
4870
4871 /* include the optional minus sign and possible
4872 * "0x" in the region before the zero padding
4873 * insertion point */
4874 if (zero_padding_insertion_ind < str_arg_l
4875 && tmp[zero_padding_insertion_ind] == '-')
4876 zero_padding_insertion_ind++;
4877 if (zero_padding_insertion_ind + 1 < str_arg_l
4878 && tmp[zero_padding_insertion_ind] == '0'
4879 && (tmp[zero_padding_insertion_ind + 1] == 'x'
4880 || tmp[zero_padding_insertion_ind + 1] == 'X'))
4881 zero_padding_insertion_ind += 2;
4882 }
4883
4884 {
4885 size_t num_of_digits = str_arg_l
4886 - zero_padding_insertion_ind;
4887
4888 if (alternate_form && fmt_spec == 'o'
4889 /* unless zero is already the first
4890 * character */
4891 && !(zero_padding_insertion_ind < str_arg_l
4892 && tmp[zero_padding_insertion_ind] == '0'))
4893 {
4894 /* assure leading zero for alternate-form
4895 * octal numbers */
4896 if (!precision_specified
4897 || precision < num_of_digits + 1)
4898 {
4899 /* precision is increased to force the
4900 * first character to be zero, except if a
4901 * zero value is formatted with an
4902 * explicit precision of zero */
4903 precision = num_of_digits + 1;
4904 precision_specified = 1;
4905 }
4906 }
4907 /* zero padding to specified precision? */
4908 if (num_of_digits < precision)
4909 number_of_zeros_to_pad = precision - num_of_digits;
4910 }
4911 /* zero padding to specified minimal field width? */
4912 if (!justify_left && zero_padding)
4913 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004914 int n = (int)(min_field_width - (str_arg_l
4915 + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004916 if (n > 0)
4917 number_of_zeros_to_pad += n;
4918 }
4919 break;
4920 }
4921
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004922# ifdef FEAT_FLOAT
Bram Moolenaara7241f52008-06-24 20:39:31 +00004923 case 'f':
Bram Moolenaar04186092016-08-29 21:55:35 +02004924 case 'F':
Bram Moolenaara7241f52008-06-24 20:39:31 +00004925 case 'e':
4926 case 'E':
4927 case 'g':
4928 case 'G':
4929 {
4930 /* Floating point. */
4931 double f;
4932 double abs_f;
4933 char format[40];
4934 int l;
4935 int remove_trailing_zeroes = FALSE;
4936
4937 f =
Bram Moolenaara7241f52008-06-24 20:39:31 +00004938# if defined(FEAT_EVAL)
4939 tvs != NULL ? tv_float(tvs, &arg_idx) :
4940# endif
4941 va_arg(ap, double);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004942 abs_f = f < 0 ? -f : f;
4943
4944 if (fmt_spec == 'g' || fmt_spec == 'G')
4945 {
4946 /* Would be nice to use %g directly, but it prints
4947 * "1.0" as "1", we don't want that. */
4948 if ((abs_f >= 0.001 && abs_f < 10000000.0)
4949 || abs_f == 0.0)
Bram Moolenaar04186092016-08-29 21:55:35 +02004950 fmt_spec = ASCII_ISUPPER(fmt_spec) ? 'F' : 'f';
Bram Moolenaara7241f52008-06-24 20:39:31 +00004951 else
4952 fmt_spec = fmt_spec == 'g' ? 'e' : 'E';
4953 remove_trailing_zeroes = TRUE;
4954 }
4955
Bram Moolenaar04186092016-08-29 21:55:35 +02004956 if ((fmt_spec == 'f' || fmt_spec == 'F') &&
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004957# ifdef VAX
Bram Moolenaarc9372132009-01-13 15:38:37 +00004958 abs_f > 1.0e38
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004959# else
Bram Moolenaarc9372132009-01-13 15:38:37 +00004960 abs_f > 1.0e307
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004961# endif
Bram Moolenaarc9372132009-01-13 15:38:37 +00004962 )
Bram Moolenaara7241f52008-06-24 20:39:31 +00004963 {
4964 /* Avoid a buffer overflow */
Bram Moolenaare9997822016-08-28 16:03:38 +02004965 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec,
4966 force_sign, space_for_positive));
4967 str_arg_l = STRLEN(tmp);
4968 zero_padding = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004969 }
4970 else
4971 {
Bram Moolenaare9997822016-08-28 16:03:38 +02004972 if (isnan(f))
4973 {
4974 /* Not a number: nan or NAN */
4975 STRCPY(tmp, ASCII_ISUPPER(fmt_spec) ? "NAN"
4976 : "nan");
4977 str_arg_l = 3;
4978 zero_padding = 0;
4979 }
4980 else if (isinf(f))
4981 {
4982 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec,
4983 force_sign, space_for_positive));
4984 str_arg_l = STRLEN(tmp);
4985 zero_padding = 0;
4986 }
4987 else
Bram Moolenaar191f18b2018-02-04 16:38:47 +01004988 {
Bram Moolenaare9997822016-08-28 16:03:38 +02004989 /* Regular float number */
Bram Moolenaar04186092016-08-29 21:55:35 +02004990 format[0] = '%';
4991 l = 1;
4992 if (force_sign)
4993 format[l++] = space_for_positive ? ' ' : '+';
4994 if (precision_specified)
4995 {
4996 size_t max_prec = TMP_LEN - 10;
4997
4998 /* Make sure we don't get more digits than we
4999 * have room for. */
5000 if ((fmt_spec == 'f' || fmt_spec == 'F')
5001 && abs_f > 1.0)
5002 max_prec -= (size_t)log10(abs_f);
5003 if (precision > max_prec)
5004 precision = max_prec;
5005 l += sprintf(format + l, ".%d", (int)precision);
5006 }
Bram Moolenaar965ed142016-08-29 22:31:24 +02005007 format[l] = fmt_spec == 'F' ? 'f' : fmt_spec;
Bram Moolenaar04186092016-08-29 21:55:35 +02005008 format[l + 1] = NUL;
5009
Bram Moolenaare9997822016-08-28 16:03:38 +02005010 str_arg_l = sprintf(tmp, format, f);
Bram Moolenaar191f18b2018-02-04 16:38:47 +01005011 }
Bram Moolenaar99922372016-08-27 15:26:35 +02005012
Bram Moolenaara7241f52008-06-24 20:39:31 +00005013 if (remove_trailing_zeroes)
5014 {
5015 int i;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005016 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005017
5018 /* Using %g or %G: remove superfluous zeroes. */
Bram Moolenaar04186092016-08-29 21:55:35 +02005019 if (fmt_spec == 'f' || fmt_spec == 'F')
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005020 tp = tmp + str_arg_l - 1;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005021 else
5022 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005023 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00005024 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005025 if (tp != NULL)
Bram Moolenaara7241f52008-06-24 20:39:31 +00005026 {
5027 /* Remove superfluous '+' and leading
5028 * zeroes from the exponent. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005029 if (tp[1] == '+')
Bram Moolenaara7241f52008-06-24 20:39:31 +00005030 {
5031 /* Change "1.0e+07" to "1.0e07" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005032 STRMOVE(tp + 1, tp + 2);
Bram Moolenaara7241f52008-06-24 20:39:31 +00005033 --str_arg_l;
5034 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005035 i = (tp[1] == '-') ? 2 : 1;
5036 while (tp[i] == '0')
Bram Moolenaara7241f52008-06-24 20:39:31 +00005037 {
5038 /* Change "1.0e07" to "1.0e7" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005039 STRMOVE(tp + i, tp + i + 1);
Bram Moolenaara7241f52008-06-24 20:39:31 +00005040 --str_arg_l;
5041 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005042 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005043 }
5044 }
5045
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005046 if (tp != NULL && !precision_specified)
Bram Moolenaara7241f52008-06-24 20:39:31 +00005047 /* Remove trailing zeroes, but keep the one
5048 * just after a dot. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005049 while (tp > tmp + 2 && *tp == '0'
5050 && tp[-1] != '.')
Bram Moolenaara7241f52008-06-24 20:39:31 +00005051 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005052 STRMOVE(tp, tp + 1);
5053 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005054 --str_arg_l;
5055 }
5056 }
5057 else
5058 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005059 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005060
5061 /* Be consistent: some printf("%e") use 1.0e+12
5062 * and some 1.0e+012. Remove one zero in the last
5063 * case. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005064 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00005065 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005066 if (tp != NULL && (tp[1] == '+' || tp[1] == '-')
5067 && tp[2] == '0'
5068 && vim_isdigit(tp[3])
5069 && vim_isdigit(tp[4]))
Bram Moolenaara7241f52008-06-24 20:39:31 +00005070 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005071 STRMOVE(tp + 2, tp + 3);
Bram Moolenaara7241f52008-06-24 20:39:31 +00005072 --str_arg_l;
5073 }
5074 }
5075 }
Bram Moolenaar04186092016-08-29 21:55:35 +02005076 if (zero_padding && min_field_width > str_arg_l
5077 && (tmp[0] == '-' || force_sign))
5078 {
5079 /* padding 0's should be inserted after the sign */
5080 number_of_zeros_to_pad = min_field_width - str_arg_l;
5081 zero_padding_insertion_ind = 1;
5082 }
Bram Moolenaara7241f52008-06-24 20:39:31 +00005083 str_arg = tmp;
5084 break;
5085 }
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01005086# endif
Bram Moolenaara7241f52008-06-24 20:39:31 +00005087
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005088 default:
5089 /* unrecognized conversion specifier, keep format string
5090 * as-is */
5091 zero_padding = 0; /* turn zero padding off for non-numeric
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00005092 conversion */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005093 justify_left = 1;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005094 min_field_width = 0; /* reset flags */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005095
5096 /* discard the unrecognized conversion, just keep *
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005097 * the unrecognized conversion character */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005098 str_arg = p;
5099 str_arg_l = 0;
5100 if (*p != NUL)
5101 str_arg_l++; /* include invalid conversion specifier
5102 unchanged if not at end-of-string */
5103 break;
5104 }
5105
5106 if (*p != NUL)
5107 p++; /* step over the just processed conversion specifier */
5108
5109 /* insert padding to the left as requested by min_field_width;
5110 * this does not include the zero padding in case of numerical
5111 * conversions*/
5112 if (!justify_left)
5113 {
5114 /* left padding with blank or zero */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005115 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005116
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005117 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005118 {
5119 if (str_l < str_m)
5120 {
5121 size_t avail = str_m - str_l;
5122
5123 vim_memset(str + str_l, zero_padding ? '0' : ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005124 (size_t)pn > avail ? avail
5125 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005126 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005127 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005128 }
5129 }
5130
5131 /* zero padding as requested by the precision or by the minimal
5132 * field width for numeric conversions required? */
Bram Moolenaarea424162005-06-16 21:51:00 +00005133 if (number_of_zeros_to_pad == 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005134 {
5135 /* will not copy first part of numeric right now, *
5136 * force it to be copied later in its entirety */
5137 zero_padding_insertion_ind = 0;
5138 }
5139 else
5140 {
5141 /* insert first part of numerics (sign or '0x') before zero
5142 * padding */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005143 int zn = (int)zero_padding_insertion_ind;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005144
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005145 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005146 {
5147 if (str_l < str_m)
5148 {
5149 size_t avail = str_m - str_l;
5150
5151 mch_memmove(str + str_l, str_arg,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005152 (size_t)zn > avail ? avail
5153 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005154 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005155 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005156 }
5157
5158 /* insert zero padding as requested by the precision or min
5159 * field width */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005160 zn = (int)number_of_zeros_to_pad;
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005161 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005162 {
5163 if (str_l < str_m)
5164 {
Bram Moolenaar2f3a90a2017-08-03 14:49:29 +02005165 size_t avail = str_m - str_l;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005166
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005167 vim_memset(str + str_l, '0',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005168 (size_t)zn > avail ? avail
5169 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005170 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005171 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005172 }
5173 }
5174
5175 /* insert formatted string
5176 * (or as-is conversion specifier for unknown conversions) */
5177 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005178 int sn = (int)(str_arg_l - zero_padding_insertion_ind);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005179
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005180 if (sn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005181 {
5182 if (str_l < str_m)
5183 {
5184 size_t avail = str_m - str_l;
5185
5186 mch_memmove(str + str_l,
5187 str_arg + zero_padding_insertion_ind,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005188 (size_t)sn > avail ? avail : (size_t)sn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005189 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005190 str_l += sn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005191 }
5192 }
5193
5194 /* insert right padding */
5195 if (justify_left)
5196 {
5197 /* right blank padding to the field width */
Bram Moolenaara7241f52008-06-24 20:39:31 +00005198 int pn = (int)(min_field_width
5199 - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005200
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005201 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005202 {
5203 if (str_l < str_m)
5204 {
5205 size_t avail = str_m - str_l;
5206
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005207 vim_memset(str + str_l, ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005208 (size_t)pn > avail ? avail
5209 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005210 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005211 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005212 }
5213 }
Bram Moolenaare5a8f352016-08-16 21:30:54 +02005214 vim_free(tofree);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005215 }
5216 }
5217
5218 if (str_m > 0)
5219 {
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00005220 /* make sure the string is nul-terminated even at the expense of
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005221 * overwriting the last character (shouldn't happen, but just in case)
5222 * */
5223 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0';
5224 }
5225
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005226 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005227 EMSG(_("E767: Too many arguments to printf()"));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005228
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00005229 /* Return the number of characters formatted (excluding trailing nul
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005230 * character), that is, the number of characters that would have been
5231 * written to the buffer if it were large enough. */
5232 return (int)str_l;
5233}
5234
5235#endif /* PROTO */