blob: 621edb9701a93f9aecc13dfb19cc5ec966d300c7 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * message.c: functions for displaying messages on the command line
12 */
13
14#define MESSAGE_FILE /* don't include prototype for smsg() */
Bram Moolenaar44ca54a2016-08-27 15:41:32 +020015#define USING_FLOAT_STUFF
Bram Moolenaar071d4272004-06-13 20:20:40 +000016
17#include "vim.h"
18
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010019static void add_msg_hist(char_u *s, int len, int attr);
20static void hit_return_msg(void);
21static void msg_home_replace_attr(char_u *fname, int attr);
Bram Moolenaar32526b32019-01-19 17:43:09 +010022static void msg_puts_attr_len(char *str, int maxlen, int attr);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010023static void msg_puts_display(char_u *str, int maxlen, int attr, int recurse);
24static void msg_scroll_up(void);
25static void inc_msg_scrolled(void);
26static void store_sb_text(char_u **sb_str, char_u *s, int attr, int *sb_col, int finish);
27static void t_puts(int *t_col, char_u *t_s, char_u *s, int attr);
28static void msg_puts_printf(char_u *str, int maxlen);
29static int do_more_prompt(int typed_char);
30static void msg_screen_putchar(int c, int attr);
31static int msg_check_screen(void);
32static void redir_write(char_u *s, int maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_CON_DIALOG
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010034static char_u *msg_show_console_dialog(char_u *message, char_u *buttons, int dfltbutton);
Bram Moolenaar071d4272004-06-13 20:20:40 +000035static int confirm_msg_used = FALSE; /* displaying confirm_msg */
36static char_u *confirm_msg = NULL; /* ":confirm" message */
37static char_u *confirm_msg_tail; /* tail of confirm_msg */
38#endif
Bram Moolenaar958dc692016-12-01 15:34:12 +010039#ifdef FEAT_JOB_CHANNEL
40static int emsg_to_channel_log = FALSE;
41#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
43struct msg_hist
44{
45 struct msg_hist *next;
46 char_u *msg;
47 int attr;
48};
49
50static struct msg_hist *first_msg_hist = NULL;
51static struct msg_hist *last_msg_hist = NULL;
52static int msg_hist_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000053
Bram Moolenaarb5b5b892011-09-14 15:39:29 +020054static FILE *verbose_fd = NULL;
55static int verbose_did_open = FALSE;
56
Bram Moolenaar071d4272004-06-13 20:20:40 +000057/*
58 * When writing messages to the screen, there are many different situations.
59 * A number of variables is used to remember the current state:
60 * msg_didany TRUE when messages were written since the last time the
61 * user reacted to a prompt.
62 * Reset: After hitting a key for the hit-return prompt,
63 * hitting <CR> for the command line or input().
64 * Set: When any message is written to the screen.
65 * msg_didout TRUE when something was written to the current line.
66 * Reset: When advancing to the next line, when the current
67 * text can be overwritten.
68 * Set: When any message is written to the screen.
69 * msg_nowait No extra delay for the last drawn message.
70 * Used in normal_cmd() before the mode message is drawn.
71 * emsg_on_display There was an error message recently. Indicates that there
72 * should be a delay before redrawing.
73 * msg_scroll The next message should not overwrite the current one.
74 * msg_scrolled How many lines the screen has been scrolled (because of
75 * messages). Used in update_screen() to scroll the screen
76 * back. Incremented each time the screen scrolls a line.
77 * msg_scrolled_ign TRUE when msg_scrolled is non-zero and msg_puts_attr()
78 * writes something without scrolling should not make
79 * need_wait_return to be set. This is a hack to make ":ts"
80 * work without an extra prompt.
81 * lines_left Number of lines available for messages before the
Bram Moolenaar5d6f75e2011-12-30 14:14:29 +010082 * more-prompt is to be given. -1 when not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +000083 * need_wait_return TRUE when the hit-return prompt is needed.
84 * Reset: After giving the hit-return prompt, when the user
85 * has answered some other prompt.
86 * Set: When the ruler or typeahead display is overwritten,
87 * scrolling the screen for some message.
88 * keep_msg Message to be displayed after redrawing the screen, in
89 * main_loop().
90 * This is an allocated string or NULL when not used.
91 */
92
93/*
94 * msg(s) - displays the string 's' on the status line
95 * When terminal not initialized (yet) mch_errmsg(..) is used.
96 * return TRUE if wait_return not called
97 */
98 int
Bram Moolenaar32526b32019-01-19 17:43:09 +010099msg(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100{
101 return msg_attr_keep(s, 0, FALSE);
102}
103
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000104#if defined(FEAT_EVAL) || defined(FEAT_X11) || defined(USE_XSMP) \
Bram Moolenaarbbc936b2009-07-01 16:04:58 +0000105 || defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000106/*
107 * Like msg() but keep it silent when 'verbosefile' is set.
108 */
109 int
Bram Moolenaar32526b32019-01-19 17:43:09 +0100110verb_msg(char *s)
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000111{
112 int n;
113
114 verbose_enter();
115 n = msg_attr_keep(s, 0, FALSE);
116 verbose_leave();
117
118 return n;
119}
120#endif
121
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122 int
Bram Moolenaar32526b32019-01-19 17:43:09 +0100123msg_attr(char *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124{
125 return msg_attr_keep(s, attr, FALSE);
126}
127
128 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100129msg_attr_keep(
Bram Moolenaar32526b32019-01-19 17:43:09 +0100130 char *s,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100131 int attr,
132 int keep) /* TRUE: set keep_msg if it doesn't scroll */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133{
134 static int entered = 0;
135 int retval;
136 char_u *buf = NULL;
137
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200138 /* Skip messages not matching ":filter pattern".
139 * Don't filter when there is an error. */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100140 if (!emsg_on_display && message_filtered((char_u *)s))
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200141 return TRUE;
142
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143#ifdef FEAT_EVAL
144 if (attr == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100145 set_vim_var_string(VV_STATUSMSG, (char_u *)s, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146#endif
147
148 /*
149 * It is possible that displaying a messages causes a problem (e.g.,
150 * when redrawing the window), which causes another message, etc.. To
151 * break this loop, limit the recursiveness to 3 levels.
152 */
153 if (entered >= 3)
154 return TRUE;
155 ++entered;
156
157 /* Add message to history (unless it's a repeated kept message or a
158 * truncated message) */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100159 if ((char_u *)s != keep_msg
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 || (*s != '<'
161 && last_msg_hist != NULL
162 && last_msg_hist->msg != NULL
163 && STRCMP(s, last_msg_hist->msg)))
Bram Moolenaar32526b32019-01-19 17:43:09 +0100164 add_msg_hist((char_u *)s, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165
Bram Moolenaar958dc692016-12-01 15:34:12 +0100166#ifdef FEAT_JOB_CHANNEL
167 if (emsg_to_channel_log)
Bram Moolenaar958dc692016-12-01 15:34:12 +0100168 /* Write message in the channel log. */
Bram Moolenaar2f3a90a2017-08-03 14:49:29 +0200169 ch_log(NULL, "ERROR: %s", (char *)s);
Bram Moolenaar958dc692016-12-01 15:34:12 +0100170#endif
171
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172 /* When displaying keep_msg, don't let msg_start() free it, caller must do
173 * that. */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100174 if ((char_u *)s == keep_msg)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175 keep_msg = NULL;
176
177 /* Truncate the message if needed. */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000178 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +0100179 buf = msg_strtrunc((char_u *)s, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 if (buf != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100181 s = (char *)buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182
Bram Moolenaar32526b32019-01-19 17:43:09 +0100183 msg_outtrans_attr((char_u *)s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184 msg_clr_eos();
185 retval = msg_end();
186
Bram Moolenaar32526b32019-01-19 17:43:09 +0100187 if (keep && retval && vim_strsize((char_u *)s)
188 < (int)(Rows - cmdline_row - 1) * Columns + sc_col)
189 set_keep_msg((char_u *)s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190
191 vim_free(buf);
192 --entered;
193 return retval;
194}
195
196/*
197 * Truncate a string such that it can be printed without causing a scroll.
198 * Returns an allocated string or NULL when no truncating is done.
199 */
200 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100201msg_strtrunc(
202 char_u *s,
203 int force) /* always truncate */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204{
205 char_u *buf = NULL;
206 int len;
207 int room;
208
209 /* May truncate message to avoid a hit-return prompt */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000210 if ((!msg_scroll && !need_wait_return && shortmess(SHM_TRUNCALL)
211 && !exmode_active && msg_silent == 0) || force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 {
213 len = vim_strsize(s);
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000214 if (msg_scrolled != 0)
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000215 /* Use all the columns. */
216 room = (int)(Rows - msg_row) * Columns - 1;
217 else
218 /* Use up to 'showcmd' column. */
219 room = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 if (len > room && room > 0)
221 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222 if (enc_utf8)
223 /* may have up to 18 bytes per cell (6 per char, up to two
224 * composing chars) */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100225 len = (room + 2) * 18;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 else if (enc_dbcs == DBCS_JPNU)
227 /* may have up to 2 bytes per cell for euc-jp */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100228 len = (room + 2) * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 else
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100230 len = room + 2;
231 buf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 if (buf != NULL)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100233 trunc_string(s, buf, room, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234 }
235 }
236 return buf;
237}
238
239/*
240 * Truncate a string "s" to "buf" with cell width "room".
241 * "s" and "buf" may be equal.
242 */
243 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100244trunc_string(
245 char_u *s,
246 char_u *buf,
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200247 int room_in,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100248 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249{
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200250 size_t room = room_in - 3; /* "..." takes 3 chars */
251 size_t half;
252 size_t len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 int e;
254 int i;
255 int n;
256
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200257 if (room_in < 3)
258 room = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259 half = room / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260
261 /* First part: Start of the string. */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100262 for (e = 0; len < half && e < buflen; ++e)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263 {
264 if (s[e] == NUL)
265 {
266 /* text fits without truncating! */
267 buf[e] = NUL;
268 return;
269 }
270 n = ptr2cells(s + e);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200271 if (len + n > half)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 break;
273 len += n;
274 buf[e] = s[e];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000276 for (n = (*mb_ptr2len)(s + e); --n > 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 {
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100278 if (++e == buflen)
279 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 buf[e] = s[e];
281 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282 }
283
284 /* Last part: End of the string. */
285 i = e;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 if (enc_dbcs != 0)
287 {
288 /* For DBCS going backwards in a string is slow, but
289 * computing the cell width isn't too slow: go forward
290 * until the rest fits. */
291 n = vim_strsize(s + i);
292 while (len + n > room)
293 {
294 n -= ptr2cells(s + i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000295 i += (*mb_ptr2len)(s + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296 }
297 }
298 else if (enc_utf8)
299 {
300 /* For UTF-8 we can go backwards easily. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000301 half = i = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302 for (;;)
303 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000304 do
Bram Moolenaarace95982017-03-29 17:30:27 +0200305 half = half - utf_head_off(s, s + half - 1) - 1;
Bram Moolenaarb9644432016-07-19 12:33:44 +0200306 while (half > 0 && utf_iscomposing(utf_ptr2char(s + half)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 n = ptr2cells(s + half);
Bram Moolenaarb9644432016-07-19 12:33:44 +0200308 if (len + n > room || half == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 break;
310 len += n;
Bram Moolenaara5c0cc12016-07-30 16:40:39 +0200311 i = (int)half;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 }
313 }
314 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315 {
316 for (i = (int)STRLEN(s); len + (n = ptr2cells(s + i - 1)) <= room; --i)
317 len += n;
318 }
319
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200320
321 if (i <= e + 3)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100322 {
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200323 /* text fits without truncating */
324 if (s != buf)
325 {
326 len = STRLEN(s);
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200327 if (len >= (size_t)buflen)
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200328 len = buflen - 1;
329 len = len - e + 1;
330 if (len < 1)
331 buf[e - 1] = NUL;
332 else
333 mch_memmove(buf + e, s + e, len);
334 }
335 }
336 else if (e + 3 < buflen)
337 {
338 /* set the middle and copy the last part */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100339 mch_memmove(buf + e, "...", (size_t)3);
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200340 len = STRLEN(s + i) + 1;
341 if (len >= (size_t)buflen - e - 3)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100342 len = buflen - e - 3 - 1;
343 mch_memmove(buf + e + 3, s + i, len);
344 buf[e + 3 + len - 1] = NUL;
345 }
346 else
347 {
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200348 /* can't fit in the "...", just truncate it */
349 buf[e - 1] = NUL;
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100350 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351}
352
353/*
354 * Automatic prototype generation does not understand this function.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100355 * Note: Caller of smsg() and smsg_attr() must check the resulting string is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 * shorter than IOSIZE!!!
357 */
358#ifndef PROTO
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100360int vim_snprintf(char *str, size_t str_m, const char *fmt, ...);
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000361
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 int
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100363# ifdef __BORLANDC__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364_RTLENTRYF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100365# endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100366smsg(const char *s, ...)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367{
368 va_list arglist;
369
370 va_start(arglist, s);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100371 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 va_end(arglist);
Bram Moolenaar32526b32019-01-19 17:43:09 +0100373 return msg((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374}
375
376 int
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100377# ifdef __BORLANDC__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378_RTLENTRYF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100379# endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100380smsg_attr(int attr, const char *s, ...)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381{
382 va_list arglist;
383
384 va_start(arglist, s);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100385 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 va_end(arglist);
Bram Moolenaar32526b32019-01-19 17:43:09 +0100387 return msg_attr((char *)IObuff, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388}
389
Bram Moolenaare0429682018-07-01 16:44:03 +0200390 int
391# ifdef __BORLANDC__
392_RTLENTRYF
393# endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100394smsg_attr_keep(int attr, const char *s, ...)
Bram Moolenaare0429682018-07-01 16:44:03 +0200395{
396 va_list arglist;
397
398 va_start(arglist, s);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100399 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist);
Bram Moolenaare0429682018-07-01 16:44:03 +0200400 va_end(arglist);
Bram Moolenaar32526b32019-01-19 17:43:09 +0100401 return msg_attr_keep((char *)IObuff, attr, TRUE);
Bram Moolenaare0429682018-07-01 16:44:03 +0200402}
403
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404#endif
405
406/*
407 * Remember the last sourcing name/lnum used in an error message, so that it
408 * isn't printed each time when it didn't change.
409 */
410static int last_sourcing_lnum = 0;
411static char_u *last_sourcing_name = NULL;
412
413/*
414 * Reset the last used sourcing name/lnum. Makes sure it is displayed again
415 * for the next error message;
416 */
Bram Moolenaar4eec5ec2005-06-26 22:26:21 +0000417 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100418reset_last_sourcing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419{
Bram Moolenaard23a8232018-02-10 18:45:26 +0100420 VIM_CLEAR(last_sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 last_sourcing_lnum = 0;
422}
423
424/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000425 * Return TRUE if "sourcing_name" differs from "last_sourcing_name".
426 */
427 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100428other_sourcing_name(void)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000429{
430 if (sourcing_name != NULL)
431 {
432 if (last_sourcing_name != NULL)
433 return STRCMP(sourcing_name, last_sourcing_name) != 0;
434 return TRUE;
435 }
436 return FALSE;
437}
438
439/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 * Get the message about the source, as used for an error message.
441 * Returns an allocated string with room for one more character.
442 * Returns NULL when no message is to be given.
443 */
444 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100445get_emsg_source(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446{
447 char_u *Buf, *p;
448
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000449 if (sourcing_name != NULL && other_sourcing_name())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 {
451 p = (char_u *)_("Error detected while processing %s:");
452 Buf = alloc((unsigned)(STRLEN(sourcing_name) + STRLEN(p)));
453 if (Buf != NULL)
454 sprintf((char *)Buf, (char *)p, sourcing_name);
455 return Buf;
456 }
457 return NULL;
458}
459
460/*
461 * Get the message about the source lnum, as used for an error message.
462 * Returns an allocated string with room for one more character.
463 * Returns NULL when no message is to be given.
464 */
465 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100466get_emsg_lnum(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467{
468 char_u *Buf, *p;
469
470 /* lnum is 0 when executing a command from the command line
471 * argument, we don't want a line number then */
472 if (sourcing_name != NULL
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000473 && (other_sourcing_name() || sourcing_lnum != last_sourcing_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 && sourcing_lnum != 0)
475 {
476 p = (char_u *)_("line %4ld:");
477 Buf = alloc((unsigned)(STRLEN(p) + 20));
478 if (Buf != NULL)
479 sprintf((char *)Buf, (char *)p, (long)sourcing_lnum);
480 return Buf;
481 }
482 return NULL;
483}
484
485/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000486 * Display name and line number for the source of an error.
487 * Remember the file name and line number, so that for the next error the info
488 * is only displayed if it changed.
489 */
490 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100491msg_source(int attr)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000492{
493 char_u *p;
494
495 ++no_wait_return;
496 p = get_emsg_source();
497 if (p != NULL)
498 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100499 msg_attr((char *)p, attr);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000500 vim_free(p);
501 }
502 p = get_emsg_lnum();
503 if (p != NULL)
504 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100505 msg_attr((char *)p, HL_ATTR(HLF_N));
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000506 vim_free(p);
507 last_sourcing_lnum = sourcing_lnum; /* only once for each line */
508 }
509
510 /* remember the last sourcing name printed, also when it's empty */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000511 if (sourcing_name == NULL || other_sourcing_name())
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000512 {
513 vim_free(last_sourcing_name);
514 if (sourcing_name == NULL)
515 last_sourcing_name = NULL;
516 else
517 last_sourcing_name = vim_strsave(sourcing_name);
518 }
519 --no_wait_return;
520}
521
522/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000523 * Return TRUE if not giving error messages right now:
524 * If "emsg_off" is set: no error messages at the moment.
525 * If "msg" is in 'debug': do error message but without side effects.
526 * If "emsg_skip" is set: never do error messages.
527 */
528 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100529emsg_not_now(void)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000530{
531 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL
532 && vim_strchr(p_debug, 't') == NULL)
533#ifdef FEAT_EVAL
534 || emsg_skip > 0
535#endif
536 )
537 return TRUE;
538 return FALSE;
539}
540
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +0100541#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100542static garray_T ignore_error_list = GA_EMPTY;
543
544 void
545ignore_error_for_testing(char_u *error)
546{
547 if (ignore_error_list.ga_itemsize == 0)
548 ga_init2(&ignore_error_list, sizeof(char_u *), 1);
549
Bram Moolenaar461a7fc2018-12-22 13:28:07 +0100550 if (STRCMP("RESET", error) == 0)
551 ga_clear_strings(&ignore_error_list);
552 else
553 ga_add_string(&ignore_error_list, error);
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100554}
555
556 static int
557ignore_error(char_u *msg)
558{
559 int i;
560
561 for (i = 0; i < ignore_error_list.ga_len; ++i)
562 if (strstr((char *)msg,
563 (char *)((char_u **)(ignore_error_list.ga_data))[i]) != NULL)
564 return TRUE;
565 return FALSE;
566}
567#endif
568
Bram Moolenaarb869c0d2016-07-20 00:10:51 +0200569#if !defined(HAVE_STRERROR) || defined(PROTO)
570/*
571 * Replacement for perror() that behaves more or less like emsg() was called.
572 * v:errmsg will be set and called_emsg will be set.
573 */
574 void
575do_perror(char *msg)
576{
577 perror(msg);
578 ++emsg_silent;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100579 emsg(msg);
Bram Moolenaarb869c0d2016-07-20 00:10:51 +0200580 --emsg_silent;
581}
582#endif
583
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000584/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100585 * emsg_core() - display an error message
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 *
587 * Rings the bell, if appropriate, and calls message() to do the real work
588 * When terminal not initialized (yet) mch_errmsg(..) is used.
589 *
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100590 * Return TRUE if wait_return not called.
591 * Note: caller must check 'emsg_not_now()' before calling this.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100593 static int
594emsg_core(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595{
596 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 char_u *p;
Bram Moolenaar958dc692016-12-01 15:34:12 +0100598 int r;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599#ifdef FEAT_EVAL
600 int ignore = FALSE;
601 int severe;
602#endif
603
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100604#ifdef FEAT_EVAL
605 /* When testing some errors are turned into a normal message. */
606 if (ignore_error(s))
Bram Moolenaarf8ab1b12017-03-01 18:30:34 +0100607 /* don't call msg() if it results in a dialog */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100608 return msg_use_printf() ? FALSE : msg((char *)s);
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100609#endif
610
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 called_emsg = TRUE;
612
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613#ifdef FEAT_EVAL
Bram Moolenaare723c422017-09-06 23:40:10 +0200614 /* If "emsg_severe" is TRUE: When an error exception is to be thrown,
615 * prefer this message over previous messages for the same command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 severe = emsg_severe;
617 emsg_severe = FALSE;
618#endif
619
Bram Moolenaar57657d82006-04-21 22:12:41 +0000620 if (!emsg_off || vim_strchr(p_debug, 't') != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 {
622#ifdef FEAT_EVAL
623 /*
624 * Cause a throw of an error exception if appropriate. Don't display
625 * the error message in this case. (If no matching catch clause will
626 * be found, the message will be displayed later on.) "ignore" is set
627 * when the message should be ignored completely (used for the
628 * interrupt message).
629 */
630 if (cause_errthrow(s, severe, &ignore) == TRUE)
631 {
632 if (!ignore)
Bram Moolenaar76a63452018-11-28 20:38:37 +0100633 ++did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 return TRUE;
635 }
636
637 /* set "v:errmsg", also when using ":silent! cmd" */
638 set_vim_var_string(VV_ERRMSG, s, -1);
639#endif
640
641 /*
Bram Moolenaara7241f52008-06-24 20:39:31 +0000642 * When using ":silent! cmd" ignore error messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 * But do write it to the redirection file.
644 */
645 if (emsg_silent != 0)
646 {
Bram Moolenaar79815f12016-07-09 17:07:29 +0200647 if (emsg_noredir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648 {
Bram Moolenaar79815f12016-07-09 17:07:29 +0200649 msg_start();
650 p = get_emsg_source();
651 if (p != NULL)
652 {
653 STRCAT(p, "\n");
654 redir_write(p, -1);
655 vim_free(p);
656 }
657 p = get_emsg_lnum();
658 if (p != NULL)
659 {
660 STRCAT(p, "\n");
661 redir_write(p, -1);
662 vim_free(p);
663 }
664 redir_write(s, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 }
Bram Moolenaar958dc692016-12-01 15:34:12 +0100666#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar2f3a90a2017-08-03 14:49:29 +0200667 ch_log(NULL, "ERROR: %s", (char *)s);
Bram Moolenaar958dc692016-12-01 15:34:12 +0100668#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 return TRUE;
670 }
671
Bram Moolenaar2b7bc562017-01-14 19:24:52 +0100672 ex_exitval = 1;
673
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200674 /* Reset msg_silent, an error causes messages to be switched back on.
675 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 msg_silent = 0;
677 cmd_silent = FALSE;
678
679 if (global_busy) /* break :global command */
680 ++global_busy;
681
682 if (p_eb)
683 beep_flush(); /* also includes flush_buffers() */
684 else
Bram Moolenaar6a2633b2018-10-07 23:16:36 +0200685 flush_buffers(FLUSH_MINIMAL); // flush internal buffers
Bram Moolenaar76a63452018-11-28 20:38:37 +0100686 ++did_emsg; // flag for DoOneCmd()
Bram Moolenaare723c422017-09-06 23:40:10 +0200687#ifdef FEAT_EVAL
688 did_uncaught_emsg = TRUE;
689#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 }
691
692 emsg_on_display = TRUE; /* remember there is an error message */
693 ++msg_scroll; /* don't overwrite a previous message */
Bram Moolenaar8820b482017-03-16 17:23:31 +0100694 attr = HL_ATTR(HLF_E); /* set highlight mode for error messages */
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000695 if (msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 need_wait_return = TRUE; /* needed in case emsg() is called after
697 * wait_return has reset need_wait_return
698 * and a redraw is expected because
699 * msg_scrolled is non-zero */
700
Bram Moolenaar958dc692016-12-01 15:34:12 +0100701#ifdef FEAT_JOB_CHANNEL
702 emsg_to_channel_log = TRUE;
703#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 /*
705 * Display name and line number for the source of the error.
706 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000707 msg_source(attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708
709 /*
710 * Display the error message itself.
711 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000712 msg_nowait = FALSE; /* wait for this msg */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100713 r = msg_attr((char *)s, attr);
Bram Moolenaar958dc692016-12-01 15:34:12 +0100714
715#ifdef FEAT_JOB_CHANNEL
716 emsg_to_channel_log = FALSE;
717#endif
718 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719}
720
721/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100722 * Print an error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 */
724 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100725emsg(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100727 /* Skip this if not giving error messages at the moment. */
728 if (!emsg_not_now())
729 return emsg_core((char_u *)s);
730 return TRUE; /* no error messages at the moment */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731}
732
Bram Moolenaar95f09602016-11-10 20:01:45 +0100733/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100734 * Print an error message with format string and variable arguments.
735 * Note: caller must not pass 'IObuff' as 1st argument.
Bram Moolenaar95f09602016-11-10 20:01:45 +0100736 */
737 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100738semsg(const char *s, ...)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100739{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100740 /* Skip this if not giving error messages at the moment. */
741 if (!emsg_not_now())
742 {
743 va_list ap;
Bram Moolenaar95f09602016-11-10 20:01:45 +0100744
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100745 va_start(ap, s);
746 vim_vsnprintf((char *)IObuff, IOSIZE, s, ap);
747 va_end(ap);
748 return emsg_core(IObuff);
749 }
750 return TRUE; /* no error messages at the moment */
Bram Moolenaar95f09602016-11-10 20:01:45 +0100751}
752
753/*
754 * Same as emsg(...), but abort on error when ABORT_ON_INTERNAL_ERROR is
755 * defined. It is used for internal errors only, so that they can be
756 * detected when fuzzing vim.
757 */
758 void
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100759iemsg(char *s)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100760{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100761 if (!emsg_not_now())
762 emsg_core((char_u *)s);
Bram Moolenaar95f09602016-11-10 20:01:45 +0100763#ifdef ABORT_ON_INTERNAL_ERROR
764 abort();
765#endif
766}
767
768/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100769 * Same as semsg(...) but abort on error when ABORT_ON_INTERNAL_ERROR is
Bram Moolenaar95f09602016-11-10 20:01:45 +0100770 * defined. It is used for internal errors only, so that they can be
771 * detected when fuzzing vim.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100772 * Note: caller must not pass 'IObuff' as 1st argument.
Bram Moolenaar95f09602016-11-10 20:01:45 +0100773 */
774 void
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100775siemsg(const char *s, ...)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100776{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100777 if (!emsg_not_now())
778 {
779 va_list ap;
780
781 va_start(ap, s);
782 vim_vsnprintf((char *)IObuff, IOSIZE, s, ap);
783 va_end(ap);
784 emsg_core(IObuff);
785 }
Bram Moolenaar95f09602016-11-10 20:01:45 +0100786#ifdef ABORT_ON_INTERNAL_ERROR
787 abort();
788#endif
789}
790
791/*
792 * Give an "Internal error" message.
793 */
794 void
795internal_error(char *where)
796{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100797 siemsg(_(e_intern2), where);
Bram Moolenaar95f09602016-11-10 20:01:45 +0100798}
799
Bram Moolenaarea424162005-06-16 21:51:00 +0000800/* emsg3() and emsgn() are in misc2.c to avoid warnings for the prototypes. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801
Bram Moolenaardf177f62005-02-22 08:39:57 +0000802 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100803emsg_invreg(int name)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000804{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100805 semsg(_("E354: Invalid register name: '%s'"), transchar(name));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000806}
807
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808/*
809 * Like msg(), but truncate to a single line if p_shm contains 't', or when
810 * "force" is TRUE. This truncates in another way as for normal messages.
811 * Careful: The string may be changed by msg_may_trunc()!
812 * Returns a pointer to the printed message, if wait_return() not called.
813 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100814 char *
815msg_trunc_attr(char *s, int force, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816{
817 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +0100818 char *ts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819
820 /* Add message to history before truncating */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100821 add_msg_hist((char_u *)s, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822
Bram Moolenaar32526b32019-01-19 17:43:09 +0100823 ts = (char *)msg_may_trunc(force, (char_u *)s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824
825 msg_hist_off = TRUE;
Bram Moolenaar32526b32019-01-19 17:43:09 +0100826 n = msg_attr(ts, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 msg_hist_off = FALSE;
828
829 if (n)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100830 return ts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 return NULL;
832}
833
834/*
835 * Check if message "s" should be truncated at the start (for filenames).
836 * Return a pointer to where the truncated message starts.
837 * Note: May change the message by replacing a character with '<'.
838 */
839 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100840msg_may_trunc(int force, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841{
842 int n;
843 int room;
844
845 room = (int)(Rows - cmdline_row - 1) * Columns + sc_col - 1;
846 if ((force || (shortmess(SHM_TRUNC) && !exmode_active))
847 && (n = (int)STRLEN(s) - room) > 0)
848 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 if (has_mbyte)
850 {
851 int size = vim_strsize(s);
852
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +0000853 /* There may be room anyway when there are multibyte chars. */
854 if (size <= room)
855 return s;
856
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 for (n = 0; size >= room; )
858 {
859 size -= (*mb_ptr2cells)(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000860 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 }
862 --n;
863 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 s += n;
865 *s = '<';
866 }
867 return s;
868}
869
870 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100871add_msg_hist(
872 char_u *s,
873 int len, /* -1 for undetermined length */
874 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875{
876 struct msg_hist *p;
877
878 if (msg_hist_off || msg_silent != 0)
879 return;
880
881 /* Don't let the message history get too big */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000882 while (msg_hist_len > MAX_MSG_HIST_LEN)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000883 (void)delete_first_msg();
884
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 /* allocate an entry and add the message at the end of the history */
886 p = (struct msg_hist *)alloc((int)sizeof(struct msg_hist));
887 if (p != NULL)
888 {
889 if (len < 0)
890 len = (int)STRLEN(s);
891 /* remove leading and trailing newlines */
892 while (len > 0 && *s == '\n')
893 {
894 ++s;
895 --len;
896 }
897 while (len > 0 && s[len - 1] == '\n')
898 --len;
899 p->msg = vim_strnsave(s, len);
900 p->next = NULL;
901 p->attr = attr;
902 if (last_msg_hist != NULL)
903 last_msg_hist->next = p;
904 last_msg_hist = p;
905 if (first_msg_hist == NULL)
906 first_msg_hist = last_msg_hist;
907 ++msg_hist_len;
908 }
909}
910
911/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000912 * Delete the first (oldest) message from the history.
913 * Returns FAIL if there are no messages.
914 */
915 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100916delete_first_msg(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000917{
918 struct msg_hist *p;
919
920 if (msg_hist_len <= 0)
921 return FAIL;
922 p = first_msg_hist;
923 first_msg_hist = p->next;
Bram Moolenaara7241f52008-06-24 20:39:31 +0000924 if (first_msg_hist == NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200925 last_msg_hist = NULL; /* history is empty */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000926 vim_free(p->msg);
927 vim_free(p);
928 --msg_hist_len;
929 return OK;
930}
931
932/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 * ":messages" command.
934 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 void
Bram Moolenaar52196b22016-04-14 17:52:41 +0200936ex_messages(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937{
938 struct msg_hist *p;
939 char_u *s;
Bram Moolenaar451f8492016-04-14 17:16:22 +0200940 int c = 0;
941
942 if (STRCMP(eap->arg, "clear") == 0)
943 {
944 int keep = eap->addr_count == 0 ? 0 : eap->line2;
945
946 while (msg_hist_len > keep)
947 (void)delete_first_msg();
948 return;
949 }
950
951 if (*eap->arg != NUL)
952 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100953 emsg(_(e_invarg));
Bram Moolenaar451f8492016-04-14 17:16:22 +0200954 return;
955 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956
957 msg_hist_off = TRUE;
958
Bram Moolenaar451f8492016-04-14 17:16:22 +0200959 p = first_msg_hist;
Bram Moolenaar451f8492016-04-14 17:16:22 +0200960 if (eap->addr_count != 0)
961 {
962 /* Count total messages */
963 for (; p != NULL && !got_int; p = p->next)
964 c++;
965
966 c -= eap->line2;
967
968 /* Skip without number of messages specified */
969 for (p = first_msg_hist; p != NULL && !got_int && c > 0;
970 p = p->next, c--);
971 }
972
Bram Moolenaarbea1ede2016-04-14 19:44:36 +0200973 if (p == first_msg_hist)
974 {
975 s = mch_getenv((char_u *)"LANG");
976 if (s != NULL && *s != NUL)
Bram Moolenaar0c183192018-06-28 14:54:43 +0200977 // The next comment is extracted by xgettext and put in po file for
978 // translators to read.
Bram Moolenaar32526b32019-01-19 17:43:09 +0100979 msg_attr(
Bram Moolenaar0c183192018-06-28 14:54:43 +0200980 // Translator: Please replace the name and email address
981 // with the appropriate text for your translation.
Bram Moolenaarbea1ede2016-04-14 19:44:36 +0200982 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
Bram Moolenaar8820b482017-03-16 17:23:31 +0100983 HL_ATTR(HLF_T));
Bram Moolenaarbea1ede2016-04-14 19:44:36 +0200984 }
985
Bram Moolenaar451f8492016-04-14 17:16:22 +0200986 /* Display what was not skipped. */
987 for (; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 if (p->msg != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100989 msg_attr((char *)p->msg, p->attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990
991 msg_hist_off = FALSE;
992}
993
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000994#if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995/*
996 * Call this after prompting the user. This will avoid a hit-return message
997 * and a delay.
998 */
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000999 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001000msg_end_prompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001{
1002 need_wait_return = FALSE;
1003 emsg_on_display = FALSE;
1004 cmdline_row = msg_row;
1005 msg_col = 0;
1006 msg_clr_eos();
Bram Moolenaar5d6f75e2011-12-30 14:14:29 +01001007 lines_left = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008}
1009#endif
1010
1011/*
Bram Moolenaar32526b32019-01-19 17:43:09 +01001012 * Wait for the user to hit a key (normally Enter).
1013 * If "redraw" is TRUE, clear and redraw the screen.
1014 * If "redraw" is FALSE, just redraw the screen.
1015 * If "redraw" is -1, don't redraw at all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 */
1017 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001018wait_return(int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019{
1020 int c;
1021 int oldState;
1022 int tmpState;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 int had_got_int;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001024 int save_reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001025 FILE *save_scriptout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026
1027 if (redraw == TRUE)
1028 must_redraw = CLEAR;
1029
1030 /* If using ":silent cmd", don't wait for a return. Also don't set
1031 * need_wait_return to do it later. */
1032 if (msg_silent != 0)
1033 return;
1034
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01001035 /*
1036 * When inside vgetc(), we can't wait for a typed character at all.
1037 * With the global command (and some others) we only need one return at
1038 * the end. Adjust cmdline_row to avoid the next message overwriting the
1039 * last one.
1040 */
Bram Moolenaar5555acc2006-04-07 21:33:12 +00001041 if (vgetc_busy > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 return;
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01001043 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 if (no_wait_return)
1045 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 if (!exmode_active)
1047 cmdline_row = msg_row;
1048 return;
1049 }
1050
1051 redir_off = TRUE; /* don't redirect this message */
1052 oldState = State;
1053 if (quit_more)
1054 {
1055 c = CAR; /* just pretend CR was hit */
1056 quit_more = FALSE;
1057 got_int = FALSE;
1058 }
1059 else if (exmode_active)
1060 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001061 msg_puts(" "); /* make sure the cursor is on the right line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062 c = CAR; /* no need for a return in ex mode */
1063 got_int = FALSE;
1064 }
1065 else
1066 {
1067 /* Make sure the hit-return prompt is on screen when 'guioptions' was
1068 * just changed. */
1069 screenalloc(FALSE);
1070
1071 State = HITRETURN;
1072#ifdef FEAT_MOUSE
1073 setmouse();
1074#endif
1075#ifdef USE_ON_FLY_SCROLL
1076 dont_scroll = TRUE; /* disallow scrolling here */
1077#endif
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01001078 cmdline_row = msg_row;
1079
Bram Moolenaarec38d692013-04-24 15:12:32 +02001080 /* Avoid the sequence that the user types ":" at the hit-return prompt
1081 * to start an Ex command, but the file-changed dialog gets in the
1082 * way. */
1083 if (need_check_timestamps)
1084 check_timestamps(FALSE);
1085
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 hit_return_msg();
1087
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 do
1089 {
1090 /* Remember "got_int", if it is set vgetc() probably returns a
1091 * CTRL-C, but we need to loop then. */
1092 had_got_int = got_int;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001093
1094 /* Don't do mappings here, we put the character back in the
1095 * typeahead buffer. */
1096 ++no_mapping;
1097 ++allow_keys;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001098
1099 /* Temporarily disable Recording. If Recording is active, the
1100 * character will be recorded later, since it will be added to the
1101 * typebuf after the loop */
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001102 save_reg_recording = reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001103 save_scriptout = scriptout;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001104 reg_recording = 0;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001105 scriptout = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 c = safe_vgetc();
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00001107 if (had_got_int && !global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 got_int = FALSE;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001109 --no_mapping;
1110 --allow_keys;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001111 reg_recording = save_reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001112 scriptout = save_scriptout;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001113
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114#ifdef FEAT_CLIPBOARD
1115 /* Strange way to allow copying (yanking) a modeless selection at
1116 * the hit-enter prompt. Use CTRL-Y, because the same is used in
1117 * Cmdline-mode and it's harmless when there is no selection. */
1118 if (c == Ctrl_Y && clip_star.state == SELECT_DONE)
1119 {
1120 clip_copy_modeless_selection(TRUE);
1121 c = K_IGNORE;
1122 }
1123#endif
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00001124
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001125 /*
1126 * Allow scrolling back in the messages.
1127 * Also accept scroll-down commands when messages fill the screen,
1128 * to avoid that typing one 'j' too many makes the messages
1129 * disappear.
1130 */
1131 if (p_more && !p_cp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001132 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001133 if (c == 'b' || c == 'k' || c == 'u' || c == 'g'
1134 || c == K_UP || c == K_PAGEUP)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001135 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001136 if (msg_scrolled > Rows)
1137 /* scroll back to show older messages */
1138 do_more_prompt(c);
1139 else
1140 {
1141 msg_didout = FALSE;
1142 c = K_IGNORE;
1143 msg_col =
1144#ifdef FEAT_RIGHTLEFT
1145 cmdmsg_rl ? Columns - 1 :
1146#endif
1147 0;
1148 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001149 if (quit_more)
1150 {
1151 c = CAR; /* just pretend CR was hit */
1152 quit_more = FALSE;
1153 got_int = FALSE;
1154 }
Bram Moolenaarb0912962013-08-09 20:38:26 +02001155 else if (c != K_IGNORE)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001156 {
1157 c = K_IGNORE;
1158 hit_return_msg();
1159 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001160 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001161 else if (msg_scrolled > Rows - 2
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001162 && (c == 'j' || c == 'd' || c == 'f'
1163 || c == K_DOWN || c == K_PAGEDOWN))
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001164 c = K_IGNORE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001165 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 } while ((had_got_int && c == Ctrl_C)
1167 || c == K_IGNORE
1168#ifdef FEAT_GUI
1169 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR
1170#endif
1171#ifdef FEAT_MOUSE
1172 || c == K_LEFTDRAG || c == K_LEFTRELEASE
1173 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE
1174 || c == K_RIGHTDRAG || c == K_RIGHTRELEASE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001175 || c == K_MOUSELEFT || c == K_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 || c == K_MOUSEDOWN || c == K_MOUSEUP
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001177 || c == K_MOUSEMOVE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 || (!mouse_has(MOUSE_RETURN)
1179 && mouse_row < msg_row
1180 && (c == K_LEFTMOUSE
1181 || c == K_MIDDLEMOUSE
1182 || c == K_RIGHTMOUSE
1183 || c == K_X1MOUSE
1184 || c == K_X2MOUSE))
1185#endif
1186 );
1187 ui_breakcheck();
1188#ifdef FEAT_MOUSE
1189 /*
1190 * Avoid that the mouse-up event causes visual mode to start.
1191 */
1192 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE
1193 || c == K_X1MOUSE || c == K_X2MOUSE)
1194 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0);
1195 else
1196#endif
1197 if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C)
1198 {
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001199 /* Put the character back in the typeahead buffer. Don't use the
1200 * stuff buffer, because lmaps wouldn't work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001201 ins_char_typebuf(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 do_redraw = TRUE; /* need a redraw even though there is
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001203 typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 }
1206 redir_off = FALSE;
1207
1208 /*
1209 * If the user hits ':', '?' or '/' we get a command line from the next
1210 * line.
1211 */
1212 if (c == ':' || c == '?' || c == '/')
1213 {
1214 if (!exmode_active)
1215 cmdline_row = msg_row;
1216 skip_redraw = TRUE; /* skip redraw once */
1217 do_redraw = FALSE;
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001218#ifdef FEAT_TERMINAL
1219 skip_term_loop = TRUE;
1220#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 }
1222
1223 /*
1224 * If the window size changed set_shellsize() will redraw the screen.
1225 * Otherwise the screen is only redrawn if 'redraw' is set and no ':'
1226 * typed.
1227 */
1228 tmpState = State;
1229 State = oldState; /* restore State before set_shellsize */
1230#ifdef FEAT_MOUSE
1231 setmouse();
1232#endif
1233 msg_check();
1234
1235#if defined(UNIX) || defined(VMS)
1236 /*
1237 * When switching screens, we need to output an extra newline on exit.
1238 */
1239 if (swapping_screen() && !termcap_active)
1240 newline_on_exit = TRUE;
1241#endif
1242
1243 need_wait_return = FALSE;
1244 did_wait_return = TRUE;
1245 emsg_on_display = FALSE; /* can delete error message now */
1246 lines_left = -1; /* reset lines_left at next msg_start() */
1247 reset_last_sourcing();
1248 if (keep_msg != NULL && vim_strsize(keep_msg) >=
1249 (Rows - cmdline_row - 1) * Columns + sc_col)
Bram Moolenaard23a8232018-02-10 18:45:26 +01001250 VIM_CLEAR(keep_msg); /* don't redisplay message, it's too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251
1252 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */
1253 {
1254 starttermcap(); /* start termcap before redrawing */
1255 shell_resized();
1256 }
1257 else if (!skip_redraw
1258 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1)))
1259 {
1260 starttermcap(); /* start termcap before redrawing */
1261 redraw_later(VALID);
1262 }
1263}
1264
1265/*
1266 * Write the hit-return prompt.
1267 */
1268 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001269hit_return_msg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001271 int save_p_more = p_more;
1272
1273 p_more = FALSE; /* don't want see this message when scrolling back */
1274 if (msg_didout) /* start on a new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 msg_putchar('\n');
1276 if (got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001277 msg_puts(_("Interrupt: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278
Bram Moolenaar32526b32019-01-19 17:43:09 +01001279 msg_puts_attr(_("Press ENTER or type command to continue"), HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 if (!msg_use_printf())
1281 msg_clr_eos();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001282 p_more = save_p_more;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283}
1284
1285/*
1286 * Set "keep_msg" to "s". Free the old value and check for NULL pointer.
1287 */
1288 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001289set_keep_msg(char_u *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290{
1291 vim_free(keep_msg);
1292 if (s != NULL && msg_silent == 0)
1293 keep_msg = vim_strsave(s);
1294 else
1295 keep_msg = NULL;
Bram Moolenaaraab21c32005-01-25 21:46:35 +00001296 keep_msg_more = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001297 keep_msg_attr = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298}
1299
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001300#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1301/*
1302 * If there currently is a message being displayed, set "keep_msg" to it, so
1303 * that it will be displayed again after redraw.
1304 */
1305 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001306set_keep_msg_from_hist(void)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001307{
1308 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0
1309 && (State & NORMAL))
1310 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr);
1311}
1312#endif
1313
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314/*
1315 * Prepare for outputting characters in the command line.
1316 */
1317 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001318msg_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319{
1320 int did_return = FALSE;
1321
Bram Moolenaare4ce65d2010-08-04 20:12:32 +02001322 if (!msg_silent)
Bram Moolenaard23a8232018-02-10 18:45:26 +01001323 VIM_CLEAR(keep_msg);
Bram Moolenaara7241f52008-06-24 20:39:31 +00001324
1325#ifdef FEAT_EVAL
1326 if (need_clr_eos)
1327 {
1328 /* Halfway an ":echo" command and getting an (error) message: clear
1329 * any text from the command. */
1330 need_clr_eos = FALSE;
1331 msg_clr_eos();
1332 }
1333#endif
1334
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 if (!msg_scroll && full_screen) /* overwrite last message */
1336 {
1337 msg_row = cmdline_row;
1338 msg_col =
1339#ifdef FEAT_RIGHTLEFT
1340 cmdmsg_rl ? Columns - 1 :
1341#endif
1342 0;
1343 }
1344 else if (msg_didout) /* start message on next line */
1345 {
1346 msg_putchar('\n');
1347 did_return = TRUE;
1348 if (exmode_active != EXMODE_NORMAL)
1349 cmdline_row = msg_row;
1350 }
1351 if (!msg_didany || lines_left < 0)
1352 msg_starthere();
1353 if (msg_silent == 0)
1354 {
1355 msg_didout = FALSE; /* no output on current line yet */
1356 cursor_off();
1357 }
1358
1359 /* when redirecting, may need to start a new line. */
1360 if (!did_return)
1361 redir_write((char_u *)"\n", -1);
1362}
1363
1364/*
1365 * Note that the current msg position is where messages start.
1366 */
1367 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001368msg_starthere(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369{
1370 lines_left = cmdline_row;
1371 msg_didany = FALSE;
1372}
1373
1374 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001375msg_putchar(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376{
1377 msg_putchar_attr(c, 0);
1378}
1379
1380 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001381msg_putchar_attr(int c, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382{
Bram Moolenaar63c0ccd2019-01-19 21:06:58 +01001383 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384
1385 if (IS_SPECIAL(c))
1386 {
1387 buf[0] = K_SPECIAL;
1388 buf[1] = K_SECOND(c);
1389 buf[2] = K_THIRD(c);
1390 buf[3] = NUL;
1391 }
1392 else
Bram Moolenaar63c0ccd2019-01-19 21:06:58 +01001393 buf[(*mb_char2bytes)(c, buf)] = NUL;
Bram Moolenaar63c0ccd2019-01-19 21:06:58 +01001394 msg_puts_attr((char *)buf, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395}
1396
1397 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001398msg_outnum(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399{
Bram Moolenaar32526b32019-01-19 17:43:09 +01001400 char buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401
Bram Moolenaar32526b32019-01-19 17:43:09 +01001402 sprintf(buf, "%ld", n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 msg_puts(buf);
1404}
1405
1406 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001407msg_home_replace(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408{
1409 msg_home_replace_attr(fname, 0);
1410}
1411
1412#if defined(FEAT_FIND_ID) || defined(PROTO)
1413 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001414msg_home_replace_hl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415{
Bram Moolenaar8820b482017-03-16 17:23:31 +01001416 msg_home_replace_attr(fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417}
1418#endif
1419
1420 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001421msg_home_replace_attr(char_u *fname, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422{
1423 char_u *name;
1424
1425 name = home_replace_save(NULL, fname);
1426 if (name != NULL)
1427 msg_outtrans_attr(name, attr);
1428 vim_free(name);
1429}
1430
1431/*
1432 * Output 'len' characters in 'str' (including NULs) with translation
1433 * if 'len' is -1, output upto a NUL character.
1434 * Use attributes 'attr'.
1435 * Return the number of characters it takes on the screen.
1436 */
1437 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001438msg_outtrans(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439{
1440 return msg_outtrans_attr(str, 0);
1441}
1442
1443 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001444msg_outtrans_attr(char_u *str, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445{
1446 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr);
1447}
1448
1449 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001450msg_outtrans_len(char_u *str, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451{
1452 return msg_outtrans_len_attr(str, len, 0);
1453}
1454
1455/*
1456 * Output one character at "p". Return pointer to the next character.
1457 * Handles multi-byte characters.
1458 */
1459 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001460msg_outtrans_one(char_u *p, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 int l;
1463
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001464 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 {
1466 msg_outtrans_len_attr(p, l, attr);
1467 return p + l;
1468 }
Bram Moolenaar32526b32019-01-19 17:43:09 +01001469 msg_puts_attr((char *)transchar_byte(*p), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 return p + 1;
1471}
1472
1473 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001474msg_outtrans_len_attr(char_u *msgstr, int len, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475{
1476 int retval = 0;
1477 char_u *str = msgstr;
1478 char_u *plain_start = msgstr;
1479 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 int mb_l;
1481 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482
1483 /* if MSG_HIST flag set, add message to history */
1484 if (attr & MSG_HIST)
1485 {
1486 add_msg_hist(str, len, attr);
1487 attr &= ~MSG_HIST;
1488 }
1489
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 /* If the string starts with a composing character first draw a space on
1491 * which the composing char can be drawn. */
1492 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr)))
Bram Moolenaar32526b32019-01-19 17:43:09 +01001493 msg_puts_attr(" ", attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494
1495 /*
1496 * Go over the string. Special characters are translated and printed.
1497 * Normal characters are printed several at a time.
1498 */
1499 while (--len >= 0)
1500 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 if (enc_utf8)
1502 /* Don't include composing chars after the end. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001503 mb_l = utfc_ptr2len_len(str, len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001505 mb_l = (*mb_ptr2len)(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 else
1507 mb_l = 1;
1508 if (has_mbyte && mb_l > 1)
1509 {
1510 c = (*mb_ptr2char)(str);
1511 if (vim_isprintc(c))
1512 /* printable multi-byte char: count the cells. */
1513 retval += (*mb_ptr2cells)(str);
1514 else
1515 {
1516 /* unprintable multi-byte char: print the printable chars so
1517 * far and the translation of the unprintable char. */
1518 if (str > plain_start)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001519 msg_puts_attr_len((char *)plain_start,
1520 (int)(str - plain_start), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 plain_start = str + mb_l;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001522 msg_puts_attr((char *)transchar(c),
1523 attr == 0 ? HL_ATTR(HLF_8) : attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 retval += char2cells(c);
1525 }
1526 len -= mb_l - 1;
1527 str += mb_l;
1528 }
1529 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 {
1531 s = transchar_byte(*str);
1532 if (s[1] != NUL)
1533 {
1534 /* unprintable char: print the printable chars so far and the
1535 * translation of the unprintable char. */
1536 if (str > plain_start)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001537 msg_puts_attr_len((char *)plain_start,
1538 (int)(str - plain_start), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 plain_start = str + 1;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001540 msg_puts_attr((char *)s, attr == 0 ? HL_ATTR(HLF_8) : attr);
Bram Moolenaarc236c162008-07-13 17:41:49 +00001541 retval += (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 }
Bram Moolenaarb3c722a2008-07-06 17:16:02 +00001543 else
1544 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 ++str;
1546 }
1547 }
1548
1549 if (str > plain_start)
1550 /* print the printable chars at the end */
Bram Moolenaar32526b32019-01-19 17:43:09 +01001551 msg_puts_attr_len((char *)plain_start, (int)(str - plain_start), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552
1553 return retval;
1554}
1555
1556#if defined(FEAT_QUICKFIX) || defined(PROTO)
1557 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001558msg_make(char_u *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559{
1560 int i;
1561 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB";
1562
1563 arg = skipwhite(arg);
1564 for (i = 5; *arg && i >= 0; --i)
1565 if (*arg++ != str[i])
1566 break;
1567 if (i < 0)
1568 {
1569 msg_putchar('\n');
1570 for (i = 0; rs[i]; ++i)
1571 msg_putchar(rs[i] - 3);
1572 }
1573}
1574#endif
1575
1576/*
1577 * Output the string 'str' upto a NUL character.
1578 * Return the number of characters it takes on the screen.
1579 *
1580 * If K_SPECIAL is encountered, then it is taken in conjunction with the
1581 * following character and shown as <F1>, <S-Up> etc. Any other character
1582 * which is not printable shown in <> form.
1583 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>.
1584 * If a character is displayed in one of these special ways, is also
1585 * highlighted (its highlight name is '8' in the p_hl variable).
1586 * Otherwise characters are not highlighted.
1587 * This function is used to show mappings, where we want to see how to type
1588 * the character/string -- webb
1589 */
1590 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001591msg_outtrans_special(
1592 char_u *strstart,
1593 int from) /* TRUE for lhs of a mapping */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594{
1595 char_u *str = strstart;
1596 int retval = 0;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001597 char *text;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 int attr;
1599 int len;
1600
Bram Moolenaar8820b482017-03-16 17:23:31 +01001601 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 while (*str != NUL)
1603 {
1604 /* Leading and trailing spaces need to be displayed in <> form. */
1605 if ((str == strstart || str[1] == NUL) && *str == ' ')
1606 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001607 text = "<Space>";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 ++str;
1609 }
1610 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001611 text = (char *)str2special(&str, from);
1612 len = vim_strsize((char_u *)text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 /* Highlight special keys */
Bram Moolenaar32526b32019-01-19 17:43:09 +01001614 msg_puts_attr(text, len > 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001615 && (*mb_ptr2len)((char_u *)text) <= 1 ? attr : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 retval += len;
1617 }
1618 return retval;
1619}
1620
Bram Moolenaarbd743252010-10-20 21:23:33 +02001621#if defined(FEAT_EVAL) || defined(PROTO)
1622/*
1623 * Return the lhs or rhs of a mapping, with the key codes turned into printable
1624 * strings, in an allocated string.
1625 */
1626 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001627str2special_save(
1628 char_u *str,
1629 int is_lhs) /* TRUE for lhs, FALSE for rhs */
Bram Moolenaarbd743252010-10-20 21:23:33 +02001630{
1631 garray_T ga;
1632 char_u *p = str;
1633
1634 ga_init2(&ga, 1, 40);
1635 while (*p != NUL)
1636 ga_concat(&ga, str2special(&p, is_lhs));
1637 ga_append(&ga, NUL);
1638 return (char_u *)ga.ga_data;
1639}
1640#endif
1641
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642/*
1643 * Return the printable string for the key codes at "*sp".
1644 * Used for translating the lhs or rhs of a mapping to printable chars.
1645 * Advances "sp" to the next code.
1646 */
1647 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001648str2special(
1649 char_u **sp,
1650 int from) /* TRUE for lhs of mapping */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651{
1652 int c;
1653 static char_u buf[7];
1654 char_u *str = *sp;
1655 int modifiers = 0;
1656 int special = FALSE;
1657
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 if (has_mbyte)
1659 {
1660 char_u *p;
1661
1662 /* Try to un-escape a multi-byte character. Return the un-escaped
1663 * string if it is a multi-byte character. */
1664 p = mb_unescape(sp);
1665 if (p != NULL)
1666 return p;
1667 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668
1669 c = *str;
1670 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1671 {
1672 if (str[1] == KS_MODIFIER)
1673 {
1674 modifiers = str[2];
1675 str += 3;
1676 c = *str;
1677 }
1678 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1679 {
1680 c = TO_SPECIAL(str[1], str[2]);
1681 str += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 }
1683 if (IS_SPECIAL(c) || modifiers) /* special key */
1684 special = TRUE;
1685 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001687 if (has_mbyte && !IS_SPECIAL(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 {
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001689 int len = (*mb_ptr2len)(str);
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001690
1691 /* For multi-byte characters check for an illegal byte. */
1692 if (has_mbyte && MB_BYTE2LEN(*str) > len)
1693 {
1694 transchar_nonprint(buf, c);
1695 *sp = str + 1;
1696 return buf;
1697 }
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001698 /* Since 'special' is TRUE the multi-byte character 'c' will be
1699 * processed by get_special_key_name() */
1700 c = (*mb_ptr2char)(str);
1701 *sp = str + len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 }
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001703 else
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001704 *sp = str + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705
1706 /* Make unprintable characters in <> form, also <M-Space> and <Tab>.
1707 * Use <Space> only for lhs of a mapping. */
1708 if (special || char2cells(c) > 1 || (from && c == ' '))
1709 return get_special_key_name(c, modifiers);
1710 buf[0] = c;
1711 buf[1] = NUL;
1712 return buf;
1713}
1714
1715/*
1716 * Translate a key sequence into special key names.
1717 */
1718 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001719str2specialbuf(char_u *sp, char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720{
1721 char_u *s;
1722
1723 *buf = NUL;
1724 while (*sp)
1725 {
1726 s = str2special(&sp, FALSE);
1727 if ((int)(STRLEN(s) + STRLEN(buf)) < len)
1728 STRCAT(buf, s);
1729 }
1730}
1731
1732/*
1733 * print line for :print or :list command
1734 */
1735 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001736msg_prt_line(char_u *s, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737{
1738 int c;
1739 int col = 0;
1740 int n_extra = 0;
1741 int c_extra = 0;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001742 int c_final = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 char_u *p_extra = NULL; /* init to make SASC shut up */
1744 int n;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001745 int attr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 char_u *trail = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 int l;
1748 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749
Bram Moolenaardf177f62005-02-22 08:39:57 +00001750 if (curwin->w_p_list)
1751 list = TRUE;
1752
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 /* find start of trailing whitespace */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001754 if (list && lcs_trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 {
1756 trail = s + STRLEN(s);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001757 while (trail > s && VIM_ISWHITE(trail[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 --trail;
1759 }
1760
1761 /* output a space for an empty line, otherwise the line will be
1762 * overwritten */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001763 if (*s == NUL && !(list && lcs_eol != NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 msg_putchar(' ');
1765
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001766 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 {
Bram Moolenaar56da7972007-01-16 14:46:32 +00001768 if (n_extra > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 {
1770 --n_extra;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001771 if (n_extra == 0 && c_final)
1772 c = c_final;
1773 else if (c_extra)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 c = c_extra;
1775 else
1776 c = *p_extra++;
1777 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001778 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 {
1780 col += (*mb_ptr2cells)(s);
Bram Moolenaar73284b92015-05-04 17:28:22 +02001781 if (lcs_nbsp != NUL && list
1782 && (mb_ptr2char(s) == 160
1783 || mb_ptr2char(s) == 0x202f))
Bram Moolenaaracf17282011-02-01 17:12:25 +01001784 {
1785 mb_char2bytes(lcs_nbsp, buf);
1786 buf[(*mb_ptr2len)(buf)] = NUL;
1787 }
1788 else
1789 {
1790 mch_memmove(buf, s, (size_t)l);
1791 buf[l] = NUL;
1792 }
Bram Moolenaar32526b32019-01-19 17:43:09 +01001793 msg_puts((char *)buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 s += l;
1795 continue;
1796 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 else
1798 {
1799 attr = 0;
1800 c = *s++;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001801 if (c == TAB && (!list || lcs_tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 {
1803 /* tab amount depends on current column */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001804#ifdef FEAT_VARTABS
1805 n_extra = tabstop_padding(col, curbuf->b_p_ts,
1806 curbuf->b_p_vts_array) - 1;
1807#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001809#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00001810 if (!list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 {
1812 c = ' ';
1813 c_extra = ' ';
Bram Moolenaar83a52172019-01-16 22:41:54 +01001814 c_final = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 }
1816 else
1817 {
Bram Moolenaar83a52172019-01-16 22:41:54 +01001818 c = (n_extra == 0 && lcs_tab3) ? lcs_tab3 : lcs_tab1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 c_extra = lcs_tab2;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001820 c_final = lcs_tab3;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001821 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 }
1823 }
Bram Moolenaaracf17282011-02-01 17:12:25 +01001824 else if (c == 160 && list && lcs_nbsp != NUL)
1825 {
1826 c = lcs_nbsp;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001827 attr = HL_ATTR(HLF_8);
Bram Moolenaaracf17282011-02-01 17:12:25 +01001828 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00001829 else if (c == NUL && list && lcs_eol != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 {
1831 p_extra = (char_u *)"";
1832 c_extra = NUL;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001833 c_final = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 n_extra = 1;
1835 c = lcs_eol;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001836 attr = HL_ATTR(HLF_AT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 --s;
1838 }
1839 else if (c != NUL && (n = byte2cells(c)) > 1)
1840 {
1841 n_extra = n - 1;
1842 p_extra = transchar_byte(c);
1843 c_extra = NUL;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001844 c_final = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 c = *p_extra++;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001846 /* Use special coloring to be able to distinguish <hex> from
1847 * the same in plain text. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001848 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 }
1850 else if (c == ' ' && trail != NULL && s > trail)
1851 {
1852 c = lcs_trail;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001853 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 }
Bram Moolenaar1510f992015-04-22 22:18:22 +02001855 else if (c == ' ' && list && lcs_space != NUL)
1856 {
1857 c = lcs_space;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001858 attr = HL_ATTR(HLF_8);
Bram Moolenaar1510f992015-04-22 22:18:22 +02001859 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 }
1861
1862 if (c == NUL)
1863 break;
1864
1865 msg_putchar_attr(c, attr);
1866 col++;
1867 }
1868 msg_clr_eos();
1869}
1870
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871/*
1872 * Use screen_puts() to output one multi-byte character.
1873 * Return the pointer "s" advanced to the next character.
1874 */
1875 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001876screen_puts_mbyte(char_u *s, int l, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877{
1878 int cw;
1879
1880 msg_didout = TRUE; /* remember that line is not empty */
1881 cw = (*mb_ptr2cells)(s);
1882 if (cw > 1 && (
1883#ifdef FEAT_RIGHTLEFT
1884 cmdmsg_rl ? msg_col <= 1 :
1885#endif
1886 msg_col == Columns - 1))
1887 {
1888 /* Doesn't fit, print a highlighted '>' to fill it up. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001889 msg_screen_putchar('>', HL_ATTR(HLF_AT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 return s;
1891 }
1892
1893 screen_puts_len(s, l, msg_row, msg_col, attr);
1894#ifdef FEAT_RIGHTLEFT
1895 if (cmdmsg_rl)
1896 {
1897 msg_col -= cw;
1898 if (msg_col == 0)
1899 {
1900 msg_col = Columns;
1901 ++msg_row;
1902 }
1903 }
1904 else
1905#endif
1906 {
1907 msg_col += cw;
1908 if (msg_col >= Columns)
1909 {
1910 msg_col = 0;
1911 ++msg_row;
1912 }
1913 }
1914 return s + l;
1915}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916
1917/*
1918 * Output a string to the screen at position msg_row, msg_col.
1919 * Update msg_row and msg_col for the next message.
1920 */
1921 void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001922msg_puts(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923{
Bram Moolenaaraeac9002016-09-06 22:15:08 +02001924 msg_puts_attr(s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925}
1926
1927 void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001928msg_puts_title(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929{
Bram Moolenaar8820b482017-03-16 17:23:31 +01001930 msg_puts_attr(s, HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931}
1932
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933/*
1934 * Show a message in such a way that it always fits in the line. Cut out a
1935 * part in the middle and replace it with "..." when necessary.
1936 * Does not handle multi-byte characters!
1937 */
1938 void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001939msg_outtrans_long_attr(char_u *longstr, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940{
Bram Moolenaar32526b32019-01-19 17:43:09 +01001941 msg_outtrans_long_len_attr(longstr, (int)STRLEN(longstr), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942}
1943
1944 void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001945msg_outtrans_long_len_attr(char_u *longstr, int len, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946{
1947 int slen = len;
1948 int room;
1949
1950 room = Columns - msg_col;
1951 if (len > room && room >= 20)
1952 {
1953 slen = (room - 3) / 2;
1954 msg_outtrans_len_attr(longstr, slen, attr);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001955 msg_puts_attr("...", HL_ATTR(HLF_8));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 }
1957 msg_outtrans_len_attr(longstr + len - slen, slen, attr);
1958}
1959
1960/*
1961 * Basic function for writing a message with highlight attributes.
1962 */
1963 void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001964msg_puts_attr(char *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965{
1966 msg_puts_attr_len(s, -1, attr);
1967}
1968
1969/*
1970 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes).
1971 * When "maxlen" is -1 there is no maximum length.
1972 * When "maxlen" is >= 0 the message is not put in the history.
1973 */
1974 static void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001975msg_puts_attr_len(char *str, int maxlen, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 /*
1978 * If redirection is on, also write to the redirection file.
1979 */
Bram Moolenaar32526b32019-01-19 17:43:09 +01001980 redir_write((char_u *)str, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981
1982 /*
1983 * Don't print anything when using ":silent cmd".
1984 */
1985 if (msg_silent != 0)
1986 return;
1987
1988 /* if MSG_HIST flag set, add message to history */
1989 if ((attr & MSG_HIST) && maxlen < 0)
1990 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001991 add_msg_hist((char_u *)str, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 attr &= ~MSG_HIST;
1993 }
1994
1995 /*
1996 * When writing something to the screen after it has scrolled, requires a
1997 * wait-return prompt later. Needed when scrolling, resetting
1998 * need_wait_return after some prompt, and then outputting something
1999 * without scrolling
2000 */
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002001 if (msg_scrolled != 0 && !msg_scrolled_ign)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 need_wait_return = TRUE;
2003 msg_didany = TRUE; /* remember that something was outputted */
2004
2005 /*
2006 * If there is no valid screen, use fprintf so we can see error messages.
2007 * If termcap is not active, we may be writing in an alternate console
2008 * window, cursor positioning may not work correctly (window size may be
2009 * different, e.g. for Win32 console) or we just don't know where the
2010 * cursor is.
2011 */
2012 if (msg_use_printf())
Bram Moolenaar32526b32019-01-19 17:43:09 +01002013 msg_puts_printf((char_u *)str, maxlen);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002014 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002015 msg_puts_display((char_u *)str, maxlen, attr, FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002016}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002018/*
2019 * The display part of msg_puts_attr_len().
2020 * May be called recursively to display scroll-back text.
2021 */
2022 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002023msg_puts_display(
2024 char_u *str,
2025 int maxlen,
2026 int attr,
2027 int recurse)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002028{
2029 char_u *s = str;
2030 char_u *t_s = str; /* string from "t_s" to "s" is still todo */
2031 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002032 int l;
2033 int cw;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002034 char_u *sb_str = str;
2035 int sb_col = msg_col;
2036 int wrap;
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002037 int did_last_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038
2039 did_wait_return = FALSE;
Bram Moolenaar57b7fe82007-08-05 17:20:43 +00002040 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 {
2042 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002043 * We are at the end of the screen line when:
2044 * - When outputting a newline.
2045 * - When outputting a character in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002047 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048#ifdef FEAT_RIGHTLEFT
2049 cmdmsg_rl
2050 ? (
2051 msg_col <= 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002052 || (*s == TAB && msg_col <= 7)
2053 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 :
2055#endif
2056 (msg_col + t_col >= Columns - 1
2057 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 || (has_mbyte && (*mb_ptr2cells)(s) > 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002059 && msg_col + t_col >= Columns - 2)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002061 /*
2062 * The screen is scrolled up when at the last row (some terminals
2063 * scroll automatically, some don't. To avoid problems we scroll
2064 * ourselves).
2065 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 if (t_col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 /* output postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002068 t_puts(&t_col, t_s, s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002070 /* When no more prompt and no more room, truncate here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 if (msg_no_more && lines_left == 0)
2072 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002074 /* Scroll the screen up one line. */
2075 msg_scroll_up();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076
2077 msg_row = Rows - 2;
2078 if (msg_col >= Columns) /* can happen after screen resize */
2079 msg_col = Columns - 1;
2080
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002081 /* Display char in last column before showing more-prompt. */
2082 if (*s >= ' '
2083#ifdef FEAT_RIGHTLEFT
2084 && !cmdmsg_rl
2085#endif
2086 )
2087 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002088 if (has_mbyte)
2089 {
2090 if (enc_utf8 && maxlen >= 0)
2091 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002092 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002093 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002094 l = (*mb_ptr2len)(s);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002095 s = screen_puts_mbyte(s, l, attr);
2096 }
2097 else
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002098 msg_screen_putchar(*s++, attr);
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002099 did_last_char = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002100 }
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002101 else
2102 did_last_char = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002103
2104 if (p_more)
2105 /* store text for scrolling back */
2106 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
2107
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002108 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002109 need_wait_return = TRUE; /* may need wait_return in main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 redraw_cmdline = TRUE;
2111 if (cmdline_row > 0 && !exmode_active)
2112 --cmdline_row;
2113
2114 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002115 * If screen is completely filled and 'more' is set then wait
2116 * for a character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 */
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002118 if (lines_left > 0)
2119 --lines_left;
Bram Moolenaar203335e2006-09-03 14:35:42 +00002120 if (p_more && lines_left == 0 && State != HITRETURN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 && !msg_no_more && !exmode_active)
2122 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123#ifdef FEAT_CON_DIALOG
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002124 if (do_more_prompt(NUL))
2125 s = confirm_msg_tail;
2126#else
2127 (void)do_more_prompt(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128#endif
2129 if (quit_more)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002130 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 }
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002132
2133 /* When we displayed a char in last column need to check if there
2134 * is still more. */
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002135 if (did_last_char)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002136 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 }
2138
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002139 wrap = *s == '\n'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 || msg_col + t_col >= Columns
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 || (has_mbyte && (*mb_ptr2cells)(s) > 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002142 && msg_col + t_col >= Columns - 1);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002143 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b'
2144 || *s == '\t' || *s == BELL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 /* output any postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002146 t_puts(&t_col, t_s, s, attr);
2147
2148 if (wrap && p_more && !recurse)
2149 /* store text for scrolling back */
2150 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151
2152 if (*s == '\n') /* go to next line */
2153 {
2154 msg_didout = FALSE; /* remember that line is empty */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002155#ifdef FEAT_RIGHTLEFT
2156 if (cmdmsg_rl)
2157 msg_col = Columns - 1;
2158 else
2159#endif
2160 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 if (++msg_row >= Rows) /* safety check */
2162 msg_row = Rows - 1;
2163 }
2164 else if (*s == '\r') /* go to column 0 */
2165 {
2166 msg_col = 0;
2167 }
2168 else if (*s == '\b') /* go to previous char */
2169 {
2170 if (msg_col)
2171 --msg_col;
2172 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002173 else if (*s == TAB) /* translate Tab into spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 {
2175 do
2176 msg_screen_putchar(' ', attr);
2177 while (msg_col & 7);
2178 }
Bram Moolenaar165bc692015-07-21 17:53:25 +02002179 else if (*s == BELL) /* beep (from ":sh") */
2180 vim_beep(BO_SH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 else
2182 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 if (has_mbyte)
2184 {
2185 cw = (*mb_ptr2cells)(s);
2186 if (enc_utf8 && maxlen >= 0)
2187 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002188 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002190 l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 }
2192 else
2193 {
2194 cw = 1;
2195 l = 1;
2196 }
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002197
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 /* When drawing from right to left or when a double-wide character
2199 * doesn't fit, draw a single character here. Otherwise collect
2200 * characters and draw them all at once later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 if (
2202# ifdef FEAT_RIGHTLEFT
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002203 cmdmsg_rl ||
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204# endif
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002205 (cw > 1 && msg_col + t_col >= Columns - 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 if (l > 1)
2208 s = screen_puts_mbyte(s, l, attr) - 1;
2209 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 msg_screen_putchar(*s, attr);
2211 }
2212 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 {
2214 /* postpone this character until later */
2215 if (t_col == 0)
2216 t_s = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 t_col += cw;
2218 s += l - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 }
2220 }
2221 ++s;
2222 }
2223
2224 /* output any postponed text */
2225 if (t_col > 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002226 t_puts(&t_col, t_s, s, attr);
2227 if (p_more && !recurse)
2228 store_sb_text(&sb_str, s, attr, &sb_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229
2230 msg_check();
2231}
2232
2233/*
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002234 * Return TRUE when ":filter pattern" was used and "msg" does not match
2235 * "pattern".
2236 */
2237 int
2238message_filtered(char_u *msg)
2239{
Bram Moolenaard29459b2016-08-26 22:29:11 +02002240 int match;
2241
2242 if (cmdmod.filter_regmatch.regprog == NULL)
2243 return FALSE;
2244 match = vim_regexec(&cmdmod.filter_regmatch, msg, (colnr_T)0);
2245 return cmdmod.filter_force ? match : !match;
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002246}
2247
2248/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002249 * Scroll the screen up one line for displaying the next message line.
2250 */
2251 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002252msg_scroll_up(void)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002253{
2254#ifdef FEAT_GUI
2255 /* Remove the cursor before scrolling, ScreenLines[] is going
2256 * to become invalid. */
2257 if (gui.in_use)
2258 gui_undraw_cursor();
2259#endif
2260 /* scrolling up always works */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002261 mch_disable_flush();
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002262 screen_del_lines(0, 0, 1, (int)Rows, TRUE, 0, NULL);
Bram Moolenaara338adc2018-01-31 20:51:47 +01002263 mch_enable_flush();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002264
2265 if (!can_clear((char_u *)" "))
2266 {
2267 /* Scrolling up doesn't result in the right background. Set the
2268 * background here. It's not efficient, but avoids that we have to do
2269 * it all over the code. */
2270 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2271
2272 /* Also clear the last char of the last but one line if it was not
2273 * cleared before to avoid a scroll-up. */
2274 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1)
2275 screen_fill((int)Rows - 2, (int)Rows - 1,
2276 (int)Columns - 1, (int)Columns, ' ', ' ', 0);
2277 }
2278}
2279
2280/*
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002281 * Increment "msg_scrolled".
2282 */
2283 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002284inc_msg_scrolled(void)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002285{
2286#ifdef FEAT_EVAL
2287 if (*get_vim_var_str(VV_SCROLLSTART) == NUL)
2288 {
2289 char_u *p = sourcing_name;
2290 char_u *tofree = NULL;
2291 int len;
2292
2293 /* v:scrollstart is empty, set it to the script/function name and line
2294 * number */
2295 if (p == NULL)
2296 p = (char_u *)_("Unknown");
2297 else
2298 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002299 len = (int)STRLEN(p) + 40;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002300 tofree = alloc(len);
2301 if (tofree != NULL)
2302 {
2303 vim_snprintf((char *)tofree, len, _("%s line %ld"),
2304 p, (long)sourcing_lnum);
2305 p = tofree;
2306 }
2307 }
2308 set_vim_var_string(VV_SCROLLSTART, p, -1);
2309 vim_free(tofree);
2310 }
2311#endif
2312 ++msg_scrolled;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002313 if (must_redraw < VALID)
2314 must_redraw = VALID;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002315}
2316
2317/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002318 * To be able to scroll back at the "more" and "hit-enter" prompts we need to
2319 * store the displayed text and remember where screen lines start.
2320 */
2321typedef struct msgchunk_S msgchunk_T;
2322struct msgchunk_S
2323{
2324 msgchunk_T *sb_next;
2325 msgchunk_T *sb_prev;
2326 char sb_eol; /* TRUE when line ends after this text */
2327 int sb_msg_col; /* column in which text starts */
2328 int sb_attr; /* text attributes */
2329 char_u sb_text[1]; /* text to be displayed, actually longer */
2330};
2331
2332static msgchunk_T *last_msgchunk = NULL; /* last displayed text */
2333
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01002334static msgchunk_T *msg_sb_start(msgchunk_T *mps);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002335
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002336typedef enum {
2337 SB_CLEAR_NONE = 0,
2338 SB_CLEAR_ALL,
2339 SB_CLEAR_CMDLINE_BUSY,
2340 SB_CLEAR_CMDLINE_DONE
2341} sb_clear_T;
2342
2343/* When to clear text on next msg. */
2344static sb_clear_T do_clear_sb_text = SB_CLEAR_NONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002345
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002346/*
2347 * Store part of a printed message for displaying when scrolling back.
2348 */
2349 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002350store_sb_text(
2351 char_u **sb_str, /* start of string */
2352 char_u *s, /* just after string */
2353 int attr,
2354 int *sb_col,
2355 int finish) /* line ends */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002356{
2357 msgchunk_T *mp;
2358
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002359 if (do_clear_sb_text == SB_CLEAR_ALL
2360 || do_clear_sb_text == SB_CLEAR_CMDLINE_DONE)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002361 {
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002362 clear_sb_text(do_clear_sb_text == SB_CLEAR_ALL);
2363 do_clear_sb_text = SB_CLEAR_NONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002364 }
2365
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002366 if (s > *sb_str)
2367 {
2368 mp = (msgchunk_T *)alloc((int)(sizeof(msgchunk_T) + (s - *sb_str)));
2369 if (mp != NULL)
2370 {
2371 mp->sb_eol = finish;
2372 mp->sb_msg_col = *sb_col;
2373 mp->sb_attr = attr;
2374 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str);
2375
2376 if (last_msgchunk == NULL)
2377 {
2378 last_msgchunk = mp;
2379 mp->sb_prev = NULL;
2380 }
2381 else
2382 {
2383 mp->sb_prev = last_msgchunk;
2384 last_msgchunk->sb_next = mp;
2385 last_msgchunk = mp;
2386 }
2387 mp->sb_next = NULL;
2388 }
2389 }
2390 else if (finish && last_msgchunk != NULL)
2391 last_msgchunk->sb_eol = TRUE;
2392
2393 *sb_str = s;
2394 *sb_col = 0;
2395}
2396
2397/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002398 * Finished showing messages, clear the scroll-back text on the next message.
2399 */
2400 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002401may_clear_sb_text(void)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002402{
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002403 do_clear_sb_text = SB_CLEAR_ALL;
2404}
2405
2406/*
2407 * Starting to edit the command line, do not clear messages now.
2408 */
2409 void
2410sb_text_start_cmdline(void)
2411{
2412 do_clear_sb_text = SB_CLEAR_CMDLINE_BUSY;
2413 msg_sb_eol();
2414}
2415
2416/*
2417 * Ending to edit the command line. Clear old lines but the last one later.
2418 */
2419 void
2420sb_text_end_cmdline(void)
2421{
2422 do_clear_sb_text = SB_CLEAR_CMDLINE_DONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002423}
2424
2425/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002426 * Clear any text remembered for scrolling back.
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002427 * When "all" is FALSE keep the last line.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002428 * Called when redrawing the screen.
2429 */
2430 void
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002431clear_sb_text(int all)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002432{
2433 msgchunk_T *mp;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002434 msgchunk_T **lastp;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002435
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002436 if (all)
2437 lastp = &last_msgchunk;
2438 else
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002439 {
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002440 if (last_msgchunk == NULL)
2441 return;
2442 lastp = &last_msgchunk->sb_prev;
2443 }
2444
2445 while (*lastp != NULL)
2446 {
2447 mp = (*lastp)->sb_prev;
2448 vim_free(*lastp);
2449 *lastp = mp;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002450 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002451}
2452
2453/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002454 * "g<" command.
2455 */
2456 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002457show_sb_text(void)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002458{
2459 msgchunk_T *mp;
2460
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002461 /* Only show something if there is more than one line, otherwise it looks
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002462 * weird, typing a command without output results in one line. */
2463 mp = msg_sb_start(last_msgchunk);
2464 if (mp == NULL || mp->sb_prev == NULL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02002465 vim_beep(BO_MESS);
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002466 else
2467 {
2468 do_more_prompt('G');
2469 wait_return(FALSE);
2470 }
2471}
2472
2473/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002474 * Move to the start of screen line in already displayed text.
2475 */
2476 static msgchunk_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002477msg_sb_start(msgchunk_T *mps)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002478{
2479 msgchunk_T *mp = mps;
2480
2481 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol)
2482 mp = mp->sb_prev;
2483 return mp;
2484}
2485
2486/*
Bram Moolenaar6df5e5a2012-03-28 16:49:29 +02002487 * Mark the last message chunk as finishing the line.
2488 */
2489 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002490msg_sb_eol(void)
Bram Moolenaar6df5e5a2012-03-28 16:49:29 +02002491{
2492 if (last_msgchunk != NULL)
2493 last_msgchunk->sb_eol = TRUE;
2494}
2495
2496/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002497 * Display a screen line from previously displayed text at row "row".
2498 * Returns a pointer to the text for the next line (can be NULL).
2499 */
2500 static msgchunk_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002501disp_sb_line(int row, msgchunk_T *smp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002502{
2503 msgchunk_T *mp = smp;
2504 char_u *p;
2505
2506 for (;;)
2507 {
2508 msg_row = row;
2509 msg_col = mp->sb_msg_col;
2510 p = mp->sb_text;
2511 if (*p == '\n') /* don't display the line break */
2512 ++p;
2513 msg_puts_display(p, -1, mp->sb_attr, TRUE);
2514 if (mp->sb_eol || mp->sb_next == NULL)
2515 break;
2516 mp = mp->sb_next;
2517 }
2518 return mp->sb_next;
2519}
2520
2521/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 * Output any postponed text for msg_puts_attr_len().
2523 */
2524 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002525t_puts(
2526 int *t_col,
2527 char_u *t_s,
2528 char_u *s,
2529 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530{
2531 /* output postponed text */
2532 msg_didout = TRUE; /* remember that line is not empty */
2533 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002534 msg_col += *t_col;
2535 *t_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 /* If the string starts with a composing character don't increment the
2537 * column position for it. */
2538 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s)))
2539 --msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 if (msg_col >= Columns)
2541 {
2542 msg_col = 0;
2543 ++msg_row;
2544 }
2545}
2546
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547/*
2548 * Returns TRUE when messages should be printed with mch_errmsg().
2549 * This is used when there is no valid screen, so we can see error messages.
2550 * If termcap is not active, we may be writing in an alternate console
2551 * window, cursor positioning may not work correctly (window size may be
2552 * different, e.g. for Win32 console) or we just don't know where the
2553 * cursor is.
2554 */
2555 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002556msg_use_printf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557{
2558 return (!msg_check_screen()
Bram Moolenaar4f974752019-02-17 17:44:42 +01002559#if defined(MSWIN) && !defined(FEAT_GUI_MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 || !termcap_active
2561#endif
2562 || (swapping_screen() && !termcap_active)
2563 );
2564}
2565
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002566/*
2567 * Print a message when there is no valid screen.
2568 */
2569 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002570msg_puts_printf(char_u *str, int maxlen)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002571{
2572 char_u *s = str;
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002573 char_u *buf = NULL;
2574 char_u *p = s;
2575
Bram Moolenaar4f974752019-02-17 17:44:42 +01002576#ifdef MSWIN
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002577 if (!(silent_mode && p_verbose == 0))
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002578 mch_settmode(TMODE_COOK); /* handle CR and NL correctly */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002579#endif
Bram Moolenaar2321ca22016-09-09 14:17:18 +02002580 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002581 {
2582 if (!(silent_mode && p_verbose == 0))
2583 {
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002584 // NL --> CR NL translation (for Unix, not for "--version")
2585 if (*s == NL)
2586 {
2587 int n = (int)(s - p);
2588
2589 buf = alloc(n + 3);
2590 memcpy(buf, p, n);
2591 if (!info_message)
2592 buf[n++] = CAR;
Bram Moolenaar00590742019-02-15 21:06:09 +01002593 buf[n++] = NL;
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002594 buf[n++] = NUL;
2595 if (info_message) // informative message, not an error
2596 mch_msg((char *)buf);
2597 else
2598 mch_errmsg((char *)buf);
2599 vim_free(buf);
2600 p = s + 1;
2601 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002602 }
2603
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002604 // primitive way to compute the current column
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002605#ifdef FEAT_RIGHTLEFT
2606 if (cmdmsg_rl)
2607 {
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002608 if (*s == CAR || *s == NL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002609 msg_col = Columns - 1;
2610 else
2611 --msg_col;
2612 }
2613 else
2614#endif
2615 {
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002616 if (*s == CAR || *s == NL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002617 msg_col = 0;
2618 else
2619 ++msg_col;
2620 }
2621 ++s;
2622 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002623
2624 if (*p != NUL && !(silent_mode && p_verbose == 0))
2625 {
2626 if (maxlen > 0 && STRLEN(p) > (size_t)maxlen)
2627 p[maxlen] = 0;
2628 if (info_message)
2629 mch_msg((char *)p);
2630 else
2631 mch_errmsg((char *)p);
2632 }
2633
2634 msg_didout = TRUE; // assume that line is not empty
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002635
Bram Moolenaar4f974752019-02-17 17:44:42 +01002636#ifdef MSWIN
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002637 if (!(silent_mode && p_verbose == 0))
2638 mch_settmode(TMODE_RAW);
2639#endif
2640}
2641
2642/*
2643 * Show the more-prompt and handle the user response.
2644 * This takes care of scrolling back and displaying previously displayed text.
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002645 * When at hit-enter prompt "typed_char" is the already typed character,
2646 * otherwise it's NUL.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002647 * Returns TRUE when jumping ahead to "confirm_msg_tail".
2648 */
2649 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002650do_more_prompt(int typed_char)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002651{
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002652 static int entered = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002653 int used_typed_char = typed_char;
2654 int oldState = State;
2655 int c;
2656#ifdef FEAT_CON_DIALOG
2657 int retval = FALSE;
2658#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002659 int toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002660 msgchunk_T *mp_last = NULL;
2661 msgchunk_T *mp;
2662 int i;
2663
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002664 /* We get called recursively when a timer callback outputs a message. In
Bram Moolenaara0055ad2016-06-02 18:37:05 +02002665 * that case don't show another prompt. Also when at the hit-Enter prompt
2666 * and nothing was typed. */
2667 if (entered || (State == HITRETURN && typed_char == 0))
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002668 return FALSE;
2669 entered = TRUE;
2670
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002671 if (typed_char == 'G')
2672 {
2673 /* "g<": Find first line on the last page. */
2674 mp_last = msg_sb_start(last_msgchunk);
2675 for (i = 0; i < Rows - 2 && mp_last != NULL
2676 && mp_last->sb_prev != NULL; ++i)
2677 mp_last = msg_sb_start(mp_last->sb_prev);
2678 }
2679
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002680 State = ASKMORE;
2681#ifdef FEAT_MOUSE
2682 setmouse();
2683#endif
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002684 if (typed_char == NUL)
2685 msg_moremsg(FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002686 for (;;)
2687 {
2688 /*
2689 * Get a typed character directly from the user.
2690 */
2691 if (used_typed_char != NUL)
2692 {
2693 c = used_typed_char; /* was typed at hit-enter prompt */
2694 used_typed_char = NUL;
2695 }
2696 else
2697 c = get_keystroke();
2698
2699#if defined(FEAT_MENU) && defined(FEAT_GUI)
2700 if (c == K_MENU)
2701 {
2702 int idx = get_menu_index(current_menu, ASKMORE);
2703
2704 /* Used a menu. If it starts with CTRL-Y, it must
2705 * be a "Copy" for the clipboard. Otherwise
2706 * assume that we end */
2707 if (idx == MENU_INDEX_INVALID)
2708 continue;
2709 c = *current_menu->strings[idx];
2710 if (c != NUL && current_menu->strings[idx][1] != NUL)
2711 ins_typebuf(current_menu->strings[idx] + 1,
2712 current_menu->noremap[idx], 0, TRUE,
2713 current_menu->silent[idx]);
2714 }
2715#endif
2716
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002717 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002718 switch (c)
2719 {
2720 case BS: /* scroll one line back */
2721 case K_BS:
2722 case 'k':
2723 case K_UP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002724 toscroll = -1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002725 break;
2726
2727 case CAR: /* one extra line */
2728 case NL:
2729 case 'j':
2730 case K_DOWN:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002731 toscroll = 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002732 break;
2733
2734 case 'u': /* Up half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002735 toscroll = -(Rows / 2);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002736 break;
2737
2738 case 'd': /* Down half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002739 toscroll = Rows / 2;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002740 break;
2741
2742 case 'b': /* one page back */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002743 case K_PAGEUP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002744 toscroll = -(Rows - 1);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002745 break;
2746
2747 case ' ': /* one extra page */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002748 case 'f':
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002749 case K_PAGEDOWN:
2750 case K_LEFTMOUSE:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002751 toscroll = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002752 break;
2753
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002754 case 'g': /* all the way back to the start */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002755 toscroll = -999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002756 break;
2757
2758 case 'G': /* all the way to the end */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002759 toscroll = 999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002760 lines_left = 999999;
2761 break;
2762
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002763 case ':': /* start new command line */
2764#ifdef FEAT_CON_DIALOG
2765 if (!confirm_msg_used)
2766#endif
2767 {
2768 /* Since got_int is set all typeahead will be flushed, but we
2769 * want to keep this ':', remember that in a special way. */
2770 typeahead_noflush(':');
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02002771#ifdef FEAT_TERMINAL
2772 skip_term_loop = TRUE;
2773#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002774 cmdline_row = Rows - 1; /* put ':' on this line */
2775 skip_redraw = TRUE; /* skip redraw once */
2776 need_wait_return = FALSE; /* don't wait in main() */
2777 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002778 /* FALLTHROUGH */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002779 case 'q': /* quit */
2780 case Ctrl_C:
2781 case ESC:
2782#ifdef FEAT_CON_DIALOG
2783 if (confirm_msg_used)
2784 {
2785 /* Jump to the choices of the dialog. */
2786 retval = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002787 }
2788 else
2789#endif
2790 {
2791 got_int = TRUE;
2792 quit_more = TRUE;
2793 }
Bram Moolenaar51306d22009-02-24 03:38:04 +00002794 /* When there is some more output (wrapping line) display that
2795 * without another prompt. */
2796 lines_left = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002797 break;
2798
2799#ifdef FEAT_CLIPBOARD
2800 case Ctrl_Y:
2801 /* Strange way to allow copying (yanking) a modeless
2802 * selection at the more prompt. Use CTRL-Y,
2803 * because the same is used in Cmdline-mode and at the
2804 * hit-enter prompt. However, scrolling one line up
2805 * might be expected... */
2806 if (clip_star.state == SELECT_DONE)
2807 clip_copy_modeless_selection(TRUE);
2808 continue;
2809#endif
2810 default: /* no valid response */
2811 msg_moremsg(TRUE);
2812 continue;
2813 }
2814
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002815 if (toscroll != 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002816 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002817 if (toscroll < 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002818 {
2819 /* go to start of last line */
2820 if (mp_last == NULL)
2821 mp = msg_sb_start(last_msgchunk);
2822 else if (mp_last->sb_prev != NULL)
2823 mp = msg_sb_start(mp_last->sb_prev);
2824 else
2825 mp = NULL;
2826
2827 /* go to start of line at top of the screen */
2828 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL;
2829 ++i)
2830 mp = msg_sb_start(mp->sb_prev);
2831
2832 if (mp != NULL && mp->sb_prev != NULL)
2833 {
2834 /* Find line to be displayed at top. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002835 for (i = 0; i > toscroll; --i)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002836 {
2837 if (mp == NULL || mp->sb_prev == NULL)
2838 break;
2839 mp = msg_sb_start(mp->sb_prev);
2840 if (mp_last == NULL)
2841 mp_last = msg_sb_start(last_msgchunk);
2842 else
2843 mp_last = msg_sb_start(mp_last->sb_prev);
2844 }
2845
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002846 if (toscroll == -1 && screen_ins_lines(0, 0, 1,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002847 (int)Rows, 0, NULL) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002848 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002849 /* display line at top */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002850 (void)disp_sb_line(0, mp);
2851 }
2852 else
2853 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002854 /* redisplay all lines */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002855 screenclear();
Bram Moolenaar773560b2006-05-06 21:38:18 +00002856 for (i = 0; mp != NULL && i < Rows - 1; ++i)
2857 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002858 mp = disp_sb_line(i, mp);
Bram Moolenaar773560b2006-05-06 21:38:18 +00002859 ++msg_scrolled;
2860 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002861 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002862 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002863 }
2864 }
2865 else
2866 {
2867 /* First display any text that we scrolled back. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002868 while (toscroll > 0 && mp_last != NULL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002869 {
2870 /* scroll up, display line at bottom */
2871 msg_scroll_up();
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002872 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002873 screen_fill((int)Rows - 2, (int)Rows - 1, 0,
2874 (int)Columns, ' ', ' ', 0);
2875 mp_last = disp_sb_line((int)Rows - 2, mp_last);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002876 --toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002877 }
2878 }
2879
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002880 if (toscroll <= 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002881 {
2882 /* displayed the requested text, more prompt again */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002883 screen_fill((int)Rows - 1, (int)Rows, 0,
2884 (int)Columns, ' ', ' ', 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002885 msg_moremsg(FALSE);
2886 continue;
2887 }
2888
2889 /* display more text, return to caller */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002890 lines_left = toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002891 }
2892
2893 break;
2894 }
2895
2896 /* clear the --more-- message */
2897 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2898 State = oldState;
2899#ifdef FEAT_MOUSE
2900 setmouse();
2901#endif
2902 if (quit_more)
2903 {
2904 msg_row = Rows - 1;
2905 msg_col = 0;
2906 }
2907#ifdef FEAT_RIGHTLEFT
2908 else if (cmdmsg_rl)
2909 msg_col = Columns - 1;
2910#endif
2911
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002912 entered = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002913#ifdef FEAT_CON_DIALOG
2914 return retval;
2915#else
2916 return FALSE;
2917#endif
2918}
2919
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920#if defined(USE_MCH_ERRMSG) || defined(PROTO)
2921
2922#ifdef mch_errmsg
2923# undef mch_errmsg
2924#endif
2925#ifdef mch_msg
2926# undef mch_msg
2927#endif
2928
2929/*
2930 * Give an error message. To be used when the screen hasn't been initialized
2931 * yet. When stderr can't be used, collect error messages until the GUI has
2932 * started and they can be displayed in a message box.
2933 */
2934 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002935mch_errmsg(char *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936{
Bram Moolenaar4f974752019-02-17 17:44:42 +01002937#if defined(MSWIN) && !defined(FEAT_GUI_MSWIN)
Bram Moolenaar0f77d6a2019-02-14 20:55:09 +01002938 int len = (int)STRLEN(str);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002939 DWORD nwrite = 0;
2940 DWORD mode = 0;
2941 HANDLE h = GetStdHandle(STD_ERROR_HANDLE);
2942
2943 if (GetConsoleMode(h, &mode) && enc_codepage >= 0
2944 && (int)GetConsoleCP() != enc_codepage)
2945 {
2946 WCHAR *w = enc_to_utf16((char_u *)str, &len);
2947
2948 WriteConsoleW(h, w, len, &nwrite, NULL);
2949 vim_free(w);
2950 }
2951 else
2952 {
2953 fprintf(stderr, "%s", str);
2954 }
2955#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 int len;
2957
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002958# if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959 /* On Unix use stderr if it's a tty.
2960 * When not going to start the GUI also use stderr.
2961 * On Mac, when started from Finder, stderr is the console. */
2962 if (
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002963# ifdef UNIX
2964# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002966# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 isatty(2)
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002968# endif
2969# ifdef FEAT_GUI
2970 ||
2971# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972# endif
2973# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 !(gui.in_use || gui.starting)
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002975# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 )
2977 {
2978 fprintf(stderr, "%s", str);
2979 return;
2980 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002981# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982
2983 /* avoid a delay for a message that isn't there */
2984 emsg_on_display = FALSE;
2985
2986 len = (int)STRLEN(str) + 1;
2987 if (error_ga.ga_growsize == 0)
2988 {
2989 error_ga.ga_growsize = 80;
2990 error_ga.ga_itemsize = 1;
2991 }
2992 if (ga_grow(&error_ga, len) == OK)
2993 {
2994 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len,
2995 (char_u *)str, len);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002996# ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 /* remove CR characters, they are displayed */
2998 {
2999 char_u *p;
3000
3001 p = (char_u *)error_ga.ga_data + error_ga.ga_len;
3002 for (;;)
3003 {
3004 p = vim_strchr(p, '\r');
3005 if (p == NULL)
3006 break;
3007 *p = ' ';
3008 }
3009 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003010# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 --len; /* don't count the NUL at the end */
3012 error_ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003014#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015}
3016
3017/*
3018 * Give a message. To be used when the screen hasn't been initialized yet.
3019 * When there is no tty, collect messages until the GUI has started and they
3020 * can be displayed in a message box.
3021 */
3022 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003023mch_msg(char *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024{
Bram Moolenaar4f974752019-02-17 17:44:42 +01003025#if defined(MSWIN) && !defined(FEAT_GUI_MSWIN)
Bram Moolenaar0f77d6a2019-02-14 20:55:09 +01003026 int len = (int)STRLEN(str);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003027 DWORD nwrite = 0;
3028 DWORD mode;
3029 HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE);
3030
3031
3032 if (GetConsoleMode(h, &mode) && enc_codepage >= 0
3033 && (int)GetConsoleCP() != enc_codepage)
3034 {
3035 WCHAR *w = enc_to_utf16((char_u *)str, &len);
3036
3037 WriteConsoleW(h, w, len, &nwrite, NULL);
3038 vim_free(w);
3039 }
3040 else
3041 {
3042 printf("%s", str);
3043 }
3044#else
3045# if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and
3047 * uses mch_errmsg() when started from the desktop.
3048 * When not going to start the GUI also use stdout.
3049 * On Mac, when started from Finder, stderr is the console. */
3050 if (
3051# ifdef UNIX
Bram Moolenaard0573012017-10-28 21:11:06 +02003052# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
3054# else
3055 isatty(2)
3056# endif
3057# ifdef FEAT_GUI
3058 ||
3059# endif
3060# endif
3061# ifdef FEAT_GUI
3062 !(gui.in_use || gui.starting)
3063# endif
3064 )
3065 {
3066 printf("%s", str);
3067 return;
3068 }
3069# endif
3070 mch_errmsg(str);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003071#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072}
3073#endif /* USE_MCH_ERRMSG */
3074
3075/*
3076 * Put a character on the screen at the current message position and advance
3077 * to the next position. Only for printable ASCII!
3078 */
3079 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003080msg_screen_putchar(int c, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081{
3082 msg_didout = TRUE; /* remember that line is not empty */
3083 screen_putchar(c, msg_row, msg_col, attr);
3084#ifdef FEAT_RIGHTLEFT
3085 if (cmdmsg_rl)
3086 {
3087 if (--msg_col == 0)
3088 {
3089 msg_col = Columns;
3090 ++msg_row;
3091 }
3092 }
3093 else
3094#endif
3095 {
3096 if (++msg_col >= Columns)
3097 {
3098 msg_col = 0;
3099 ++msg_row;
3100 }
3101 }
3102}
3103
3104 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003105msg_moremsg(int full)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003107 int attr;
3108 char_u *s = (char_u *)_("-- More --");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109
Bram Moolenaar8820b482017-03-16 17:23:31 +01003110 attr = HL_ATTR(HLF_M);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003111 screen_puts(s, (int)Rows - 1, 0, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 if (full)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003113 screen_puts((char_u *)
3114 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "),
3115 (int)Rows - 1, vim_strsize(s), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116}
3117
3118/*
3119 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
3120 * exmode_active.
3121 */
3122 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003123repeat_message(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124{
3125 if (State == ASKMORE)
3126 {
3127 msg_moremsg(TRUE); /* display --more-- message again */
3128 msg_row = Rows - 1;
3129 }
3130#ifdef FEAT_CON_DIALOG
3131 else if (State == CONFIRM)
3132 {
3133 display_confirm_msg(); /* display ":confirm" message again */
3134 msg_row = Rows - 1;
3135 }
3136#endif
3137 else if (State == EXTERNCMD)
3138 {
3139 windgoto(msg_row, msg_col); /* put cursor back */
3140 }
3141 else if (State == HITRETURN || State == SETWSIZE)
3142 {
Bram Moolenaar9f108752007-11-24 14:44:58 +00003143 if (msg_row == Rows - 1)
3144 {
3145 /* Avoid drawing the "hit-enter" prompt below the previous one,
3146 * overwrite it. Esp. useful when regaining focus and a
3147 * FocusGained autocmd exists but didn't draw anything. */
3148 msg_didout = FALSE;
3149 msg_col = 0;
3150 msg_clr_eos();
3151 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 hit_return_msg();
3153 msg_row = Rows - 1;
3154 }
3155}
3156
3157/*
3158 * msg_check_screen - check if the screen is initialized.
3159 * Also check msg_row and msg_col, if they are too big it may cause a crash.
3160 * While starting the GUI the terminal codes will be set for the GUI, but the
3161 * output goes to the terminal. Don't use the terminal codes then.
3162 */
3163 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003164msg_check_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165{
3166 if (!full_screen || !screen_valid(FALSE))
3167 return FALSE;
3168
3169 if (msg_row >= Rows)
3170 msg_row = Rows - 1;
3171 if (msg_col >= Columns)
3172 msg_col = Columns - 1;
3173 return TRUE;
3174}
3175
3176/*
3177 * Clear from current message position to end of screen.
3178 * Skip this when ":silent" was used, no need to clear for redirection.
3179 */
3180 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003181msg_clr_eos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182{
3183 if (msg_silent == 0)
3184 msg_clr_eos_force();
3185}
3186
3187/*
3188 * Clear from current message position to end of screen.
3189 * Note: msg_col is not updated, so we remember the end of the message
3190 * for msg_check().
3191 */
3192 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003193msg_clr_eos_force(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194{
3195 if (msg_use_printf())
3196 {
3197 if (full_screen) /* only when termcap codes are valid */
3198 {
3199 if (*T_CD)
3200 out_str(T_CD); /* clear to end of display */
3201 else if (*T_CE)
3202 out_str(T_CE); /* clear to end of line */
3203 }
3204 }
3205 else
3206 {
3207#ifdef FEAT_RIGHTLEFT
3208 if (cmdmsg_rl)
3209 {
3210 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0);
3211 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3212 }
3213 else
3214#endif
3215 {
3216 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns,
3217 ' ', ' ', 0);
3218 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3219 }
3220 }
3221}
3222
3223/*
3224 * Clear the command line.
3225 */
3226 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003227msg_clr_cmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228{
3229 msg_row = cmdline_row;
3230 msg_col = 0;
3231 msg_clr_eos_force();
3232}
3233
3234/*
3235 * end putting a message on the screen
3236 * call wait_return if the message does not fit in the available space
3237 * return TRUE if wait_return not called.
3238 */
3239 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003240msg_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241{
3242 /*
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02003243 * If the string is larger than the window,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244 * or the ruler option is set and we run into it,
3245 * we have to redraw the window.
3246 * Do not do this if we are abandoning the file or editing the command line.
3247 */
3248 if (!exiting && need_wait_return && !(State & CMDLINE))
3249 {
3250 wait_return(FALSE);
3251 return FALSE;
3252 }
3253 out_flush();
3254 return TRUE;
3255}
3256
3257/*
3258 * If the written message runs into the shown command or ruler, we have to
3259 * wait for hit-return and redraw the window later.
3260 */
3261 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003262msg_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263{
3264 if (msg_row == Rows - 1 && msg_col >= sc_col)
3265 {
3266 need_wait_return = TRUE;
3267 redraw_cmdline = TRUE;
3268 }
3269}
3270
3271/*
3272 * May write a string to the redirection file.
3273 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3274 */
3275 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003276redir_write(char_u *str, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277{
3278 char_u *s = str;
3279 static int cur_col = 0;
3280
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003281 /* Don't do anything for displaying prompts and the like. */
3282 if (redir_off)
3283 return;
3284
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003285 /* If 'verbosefile' is set prepare for writing in that file. */
3286 if (*p_vfile != NUL && verbose_fd == NULL)
3287 verbose_open();
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003288
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003289 if (redirecting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 {
3291 /* If the string doesn't start with CR or NL, go to msg_col */
3292 if (*s != '\n' && *s != '\r')
3293 {
3294 while (cur_col < msg_col)
3295 {
3296#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003297 if (redir_execute)
3298 execute_redir_str((char_u *)" ", -1);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003299 else if (redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003301 else if (redir_vname)
3302 var_redir_str((char_u *)" ", -1);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003303 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003305 if (redir_fd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306 fputs(" ", redir_fd);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003307 if (verbose_fd != NULL)
3308 fputs(" ", verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 ++cur_col;
3310 }
3311 }
3312
3313#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003314 if (redir_execute)
3315 execute_redir_str(s, maxlen);
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, s, maxlen, TRUE);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003318 else if (redir_vname)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003319 var_redir_str(s, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320#endif
3321
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003322 /* Write and adjust the current column. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3324 {
3325#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003326 if (!redir_reg && !redir_vname && !redir_execute)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003328 if (redir_fd != NULL)
3329 putc(*s, redir_fd);
3330 if (verbose_fd != NULL)
3331 putc(*s, verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332 if (*s == '\r' || *s == '\n')
3333 cur_col = 0;
3334 else if (*s == '\t')
3335 cur_col += (8 - cur_col % 8);
3336 else
3337 ++cur_col;
3338 ++s;
3339 }
3340
3341 if (msg_silent != 0) /* should update msg_col */
3342 msg_col = cur_col;
3343 }
3344}
3345
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003346 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003347redirecting(void)
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003348{
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003349 return redir_fd != NULL || *p_vfile != NUL
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003350#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003351 || redir_reg || redir_vname || redir_execute
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003352#endif
3353 ;
3354}
3355
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356/*
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00003357 * Before giving verbose message.
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003358 * Must always be called paired with verbose_leave()!
3359 */
3360 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003361verbose_enter(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003362{
3363 if (*p_vfile != NUL)
3364 ++msg_silent;
3365}
3366
3367/*
3368 * After giving verbose message.
3369 * Must always be called paired with verbose_enter()!
3370 */
3371 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003372verbose_leave(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003373{
3374 if (*p_vfile != NUL)
3375 if (--msg_silent < 0)
3376 msg_silent = 0;
3377}
3378
3379/*
3380 * Like verbose_enter() and set msg_scroll when displaying the message.
3381 */
3382 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003383verbose_enter_scroll(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003384{
3385 if (*p_vfile != NUL)
3386 ++msg_silent;
3387 else
3388 /* always scroll up, don't overwrite */
3389 msg_scroll = TRUE;
3390}
3391
3392/*
3393 * Like verbose_leave() and set cmdline_row when displaying the message.
3394 */
3395 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003396verbose_leave_scroll(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003397{
3398 if (*p_vfile != NUL)
3399 {
3400 if (--msg_silent < 0)
3401 msg_silent = 0;
3402 }
3403 else
3404 cmdline_row = msg_row;
3405}
3406
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003407/*
3408 * Called when 'verbosefile' is set: stop writing to the file.
3409 */
3410 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003411verbose_stop(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003412{
3413 if (verbose_fd != NULL)
3414 {
3415 fclose(verbose_fd);
3416 verbose_fd = NULL;
3417 }
3418 verbose_did_open = FALSE;
3419}
3420
3421/*
3422 * Open the file 'verbosefile'.
3423 * Return FAIL or OK.
3424 */
3425 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003426verbose_open(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003427{
3428 if (verbose_fd == NULL && !verbose_did_open)
3429 {
3430 /* Only give the error message once. */
3431 verbose_did_open = TRUE;
3432
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003433 verbose_fd = mch_fopen((char *)p_vfile, "a");
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003434 if (verbose_fd == NULL)
3435 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003436 semsg(_(e_notopen), p_vfile);
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003437 return FAIL;
3438 }
3439 }
3440 return OK;
3441}
3442
3443/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 * Give a warning message (for searching).
3445 * Use 'w' highlighting and may repeat the message after redrawing
3446 */
3447 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003448give_warning(char_u *message, int hl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449{
3450 /* Don't do this for ":silent". */
3451 if (msg_silent != 0)
3452 return;
3453
3454 /* Don't want a hit-enter prompt here. */
3455 ++no_wait_return;
Bram Moolenaared203462004-06-16 11:19:22 +00003456
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457#ifdef FEAT_EVAL
3458 set_vim_var_string(VV_WARNINGMSG, message, -1);
3459#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003460 VIM_CLEAR(keep_msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 if (hl)
Bram Moolenaar8820b482017-03-16 17:23:31 +01003462 keep_msg_attr = HL_ATTR(HLF_W);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 else
3464 keep_msg_attr = 0;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003465 if (msg_attr((char *)message, keep_msg_attr) && msg_scrolled == 0)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003466 set_keep_msg(message, keep_msg_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 msg_didout = FALSE; /* overwrite this message */
3468 msg_nowait = TRUE; /* don't wait for this message */
3469 msg_col = 0;
Bram Moolenaared203462004-06-16 11:19:22 +00003470
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 --no_wait_return;
3472}
3473
Bram Moolenaar113e1072019-01-20 15:30:40 +01003474#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarf8be4612017-06-23 20:52:40 +02003475 void
3476give_warning2(char_u *message, char_u *a1, int hl)
3477{
3478 vim_snprintf((char *)IObuff, IOSIZE, (char *)message, a1);
3479 give_warning(IObuff, hl);
3480}
Bram Moolenaar113e1072019-01-20 15:30:40 +01003481#endif
Bram Moolenaarf8be4612017-06-23 20:52:40 +02003482
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483/*
3484 * Advance msg cursor to column "col".
3485 */
3486 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003487msg_advance(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488{
3489 if (msg_silent != 0) /* nothing to advance to */
3490 {
3491 msg_col = col; /* for redirection, may fill it up later */
3492 return;
3493 }
3494 if (col >= Columns) /* not enough room */
3495 col = Columns - 1;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003496#ifdef FEAT_RIGHTLEFT
3497 if (cmdmsg_rl)
3498 while (msg_col > Columns - col)
3499 msg_putchar(' ');
3500 else
3501#endif
3502 while (msg_col < col)
3503 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504}
3505
3506#if defined(FEAT_CON_DIALOG) || defined(PROTO)
3507/*
3508 * Used for "confirm()" function, and the :confirm command prefix.
3509 * Versions which haven't got flexible dialogs yet, and console
3510 * versions, get this generic handler which uses the command line.
3511 *
3512 * type = one of:
3513 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC
3514 * title = title string (can be NULL for default)
3515 * (neither used in console dialogs at the moment)
3516 *
3517 * Format of the "buttons" string:
3518 * "Button1Name\nButton2Name\nButton3Name"
3519 * The first button should normally be the default/accept
3520 * The second button should be the 'Cancel' button
3521 * Other buttons- use your imagination!
3522 * A '&' in a button name becomes a shortcut, so each '&' should be before a
3523 * different letter.
3524 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003526do_dialog(
3527 int type UNUSED,
3528 char_u *title UNUSED,
3529 char_u *message,
3530 char_u *buttons,
3531 int dfltbutton,
3532 char_u *textfield UNUSED, /* IObuff for inputdialog(), NULL
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003533 otherwise */
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003534 int ex_cmd) /* when TRUE pressing : accepts default and starts
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003535 Ex command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536{
3537 int oldState;
3538 int retval = 0;
3539 char_u *hotkeys;
3540 int c;
3541 int i;
3542
3543#ifndef NO_CONSOLE
3544 /* Don't output anything in silent mode ("ex -s") */
3545 if (silent_mode)
3546 return dfltbutton; /* return default option */
3547#endif
3548
3549#ifdef FEAT_GUI_DIALOG
3550 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */
3551 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
3552 {
3553 c = gui_mch_dialog(type, title, message, buttons, dfltbutton,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003554 textfield, ex_cmd);
Bram Moolenaar8de49e12009-02-11 17:47:54 +00003555 /* avoid a hit-enter prompt without clearing the cmdline */
3556 need_wait_return = FALSE;
3557 emsg_on_display = FALSE;
3558 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559
3560 /* Flush output to avoid that further messages and redrawing is done
3561 * in the wrong order. */
3562 out_flush();
3563 gui_mch_update();
3564
3565 return c;
3566 }
3567#endif
3568
3569 oldState = State;
3570 State = CONFIRM;
3571#ifdef FEAT_MOUSE
3572 setmouse();
3573#endif
3574
3575 /*
3576 * Since we wait for a keypress, don't make the
3577 * user press RETURN as well afterwards.
3578 */
3579 ++no_wait_return;
3580 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton);
3581
3582 if (hotkeys != NULL)
3583 {
3584 for (;;)
3585 {
3586 /* Get a typed character directly from the user. */
3587 c = get_keystroke();
3588 switch (c)
3589 {
3590 case CAR: /* User accepts default option */
3591 case NL:
3592 retval = dfltbutton;
3593 break;
3594 case Ctrl_C: /* User aborts/cancels */
3595 case ESC:
3596 retval = 0;
3597 break;
3598 default: /* Could be a hotkey? */
3599 if (c < 0) /* special keys are ignored here */
3600 continue;
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003601 if (c == ':' && ex_cmd)
3602 {
3603 retval = dfltbutton;
3604 ins_char_typebuf(':');
3605 break;
3606 }
3607
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 /* Make the character lowercase, as chars in "hotkeys" are. */
3609 c = MB_TOLOWER(c);
3610 retval = 1;
3611 for (i = 0; hotkeys[i]; ++i)
3612 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 if (has_mbyte)
3614 {
3615 if ((*mb_ptr2char)(hotkeys + i) == c)
3616 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003617 i += (*mb_ptr2len)(hotkeys + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 }
3619 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 if (hotkeys[i] == c)
3621 break;
3622 ++retval;
3623 }
3624 if (hotkeys[i])
3625 break;
3626 /* No hotkey match, so keep waiting */
3627 continue;
3628 }
3629 break;
3630 }
3631
3632 vim_free(hotkeys);
3633 }
3634
3635 State = oldState;
3636#ifdef FEAT_MOUSE
3637 setmouse();
3638#endif
3639 --no_wait_return;
3640 msg_end_prompt();
3641
3642 return retval;
3643}
3644
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645/*
3646 * Copy one character from "*from" to "*to", taking care of multi-byte
3647 * characters. Return the length of the character in bytes.
3648 */
3649 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003650copy_char(
3651 char_u *from,
3652 char_u *to,
3653 int lowercase) /* make character lower case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 int len;
3656 int c;
3657
3658 if (has_mbyte)
3659 {
3660 if (lowercase)
3661 {
3662 c = MB_TOLOWER((*mb_ptr2char)(from));
3663 return (*mb_char2bytes)(c, to);
3664 }
3665 else
3666 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003667 len = (*mb_ptr2len)(from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 mch_memmove(to, from, (size_t)len);
3669 return len;
3670 }
3671 }
3672 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 {
3674 if (lowercase)
3675 *to = (char_u)TOLOWER_LOC(*from);
3676 else
3677 *to = *from;
3678 return 1;
3679 }
3680}
3681
3682/*
3683 * Format the dialog string, and display it at the bottom of
3684 * the screen. Return a string of hotkey chars (if defined) for
3685 * each 'button'. If a button has no hotkey defined, the first character of
3686 * the button is used.
3687 * The hotkeys can be multi-byte characters, but without combining chars.
3688 *
3689 * Returns an allocated string with hotkeys, or NULL for error.
3690 */
3691 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003692msg_show_console_dialog(
3693 char_u *message,
3694 char_u *buttons,
3695 int dfltbutton)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696{
3697 int len = 0;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003698#define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 int lenhotkey = HOTK_LEN; /* count first button */
3700 char_u *hotk = NULL;
3701 char_u *msgp = NULL;
3702 char_u *hotkp = NULL;
3703 char_u *r;
3704 int copy;
3705#define HAS_HOTKEY_LEN 30
3706 char_u has_hotkey[HAS_HOTKEY_LEN];
3707 int first_hotkey = FALSE; /* first char of button is hotkey */
3708 int idx;
3709
3710 has_hotkey[0] = FALSE;
3711
3712 /*
3713 * First loop: compute the size of memory to allocate.
3714 * Second loop: copy to the allocated memory.
3715 */
3716 for (copy = 0; copy <= 1; ++copy)
3717 {
3718 r = buttons;
3719 idx = 0;
3720 while (*r)
3721 {
3722 if (*r == DLG_BUTTON_SEP)
3723 {
3724 if (copy)
3725 {
3726 *msgp++ = ',';
3727 *msgp++ = ' '; /* '\n' -> ', ' */
3728
3729 /* advance to next hotkey and set default hotkey */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 if (has_mbyte)
Bram Moolenaar6a516062007-07-05 08:11:42 +00003731 hotkp += STRLEN(hotkp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 ++hotkp;
Bram Moolenaar6a516062007-07-05 08:11:42 +00003734 hotkp[copy_char(r + 1, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 if (dfltbutton)
3736 --dfltbutton;
3737
3738 /* If no hotkey is specified first char is used. */
3739 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx])
3740 first_hotkey = TRUE;
3741 }
3742 else
3743 {
3744 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */
3745 lenhotkey += HOTK_LEN; /* each button needs a hotkey */
3746 if (idx < HAS_HOTKEY_LEN - 1)
3747 has_hotkey[++idx] = FALSE;
3748 }
3749 }
3750 else if (*r == DLG_HOTKEY_CHAR || first_hotkey)
3751 {
3752 if (*r == DLG_HOTKEY_CHAR)
3753 ++r;
3754 first_hotkey = FALSE;
3755 if (copy)
3756 {
3757 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */
3758 *msgp++ = *r;
3759 else
3760 {
3761 /* '&a' -> '[a]' */
3762 *msgp++ = (dfltbutton == 1) ? '[' : '(';
3763 msgp += copy_char(r, msgp, FALSE);
3764 *msgp++ = (dfltbutton == 1) ? ']' : ')';
3765
3766 /* redefine hotkey */
Bram Moolenaar6a516062007-07-05 08:11:42 +00003767 hotkp[copy_char(r, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 }
3769 }
3770 else
3771 {
3772 ++len; /* '&a' -> '[a]' */
3773 if (idx < HAS_HOTKEY_LEN - 1)
3774 has_hotkey[idx] = TRUE;
3775 }
3776 }
3777 else
3778 {
3779 /* everything else copy literally */
3780 if (copy)
3781 msgp += copy_char(r, msgp, FALSE);
3782 }
3783
3784 /* advance to the next character */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003785 MB_PTR_ADV(r);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 }
3787
3788 if (copy)
3789 {
3790 *msgp++ = ':';
3791 *msgp++ = ' ';
3792 *msgp = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 }
3794 else
3795 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003796 len += (int)(STRLEN(message)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003797 + 2 /* for the NL's */
3798 + STRLEN(buttons)
3799 + 3); /* for the ": " and NUL */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003800 lenhotkey++; /* for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801
3802 /* If no hotkey is specified first char is used. */
3803 if (!has_hotkey[0])
3804 {
3805 first_hotkey = TRUE;
3806 len += 2; /* "x" -> "[x]" */
3807 }
3808
3809 /*
3810 * Now allocate and load the strings
3811 */
3812 vim_free(confirm_msg);
3813 confirm_msg = alloc(len);
3814 if (confirm_msg == NULL)
3815 return NULL;
3816 *confirm_msg = NUL;
3817 hotk = alloc(lenhotkey);
3818 if (hotk == NULL)
3819 return NULL;
3820
3821 *confirm_msg = '\n';
3822 STRCPY(confirm_msg + 1, message);
3823
3824 msgp = confirm_msg + 1 + STRLEN(message);
3825 hotkp = hotk;
3826
Bram Moolenaar6a516062007-07-05 08:11:42 +00003827 /* Define first default hotkey. Keep the hotkey string NUL
3828 * terminated to avoid reading past the end. */
3829 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830
3831 /* Remember where the choices start, displaying starts here when
3832 * "hotkp" typed at the more prompt. */
3833 confirm_msg_tail = msgp;
3834 *msgp++ = '\n';
3835 }
3836 }
3837
3838 display_confirm_msg();
3839 return hotk;
3840}
3841
3842/*
3843 * Display the ":confirm" message. Also called when screen resized.
3844 */
3845 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003846display_confirm_msg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847{
3848 /* avoid that 'q' at the more prompt truncates the message here */
3849 ++confirm_msg_used;
3850 if (confirm_msg != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003851 msg_puts_attr((char *)confirm_msg, HL_ATTR(HLF_M));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 --confirm_msg_used;
3853}
3854
3855#endif /* FEAT_CON_DIALOG */
3856
3857#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
3858
3859 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003860vim_dialog_yesno(
3861 int type,
3862 char_u *title,
3863 char_u *message,
3864 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865{
3866 if (do_dialog(type,
3867 title == NULL ? (char_u *)_("Question") : title,
3868 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003869 (char_u *)_("&Yes\n&No"), dflt, NULL, FALSE) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 return VIM_YES;
3871 return VIM_NO;
3872}
3873
3874 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003875vim_dialog_yesnocancel(
3876 int type,
3877 char_u *title,
3878 char_u *message,
3879 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880{
3881 switch (do_dialog(type,
3882 title == NULL ? (char_u *)_("Question") : title,
3883 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003884 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 {
3886 case 1: return VIM_YES;
3887 case 2: return VIM_NO;
3888 }
3889 return VIM_CANCEL;
3890}
3891
3892 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003893vim_dialog_yesnoallcancel(
3894 int type,
3895 char_u *title,
3896 char_u *message,
3897 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898{
3899 switch (do_dialog(type,
3900 title == NULL ? (char_u *)"Question" : title,
3901 message,
3902 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003903 dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 {
3905 case 1: return VIM_YES;
3906 case 2: return VIM_NO;
3907 case 3: return VIM_ALL;
3908 case 4: return VIM_DISCARDALL;
3909 }
3910 return VIM_CANCEL;
3911}
3912
3913#endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */
3914
3915#if defined(FEAT_BROWSE) || defined(PROTO)
3916/*
3917 * Generic browse function. Calls gui_mch_browse() when possible.
3918 * Later this may pop-up a non-GUI file selector (external command?).
3919 */
3920 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003921do_browse(
3922 int flags, /* BROWSE_SAVE and BROWSE_DIR */
3923 char_u *title, /* title for the window */
3924 char_u *dflt, /* default file name (may include directory) */
3925 char_u *ext, /* extension added */
3926 char_u *initdir, /* initial directory, NULL for current dir or
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 when using path from "dflt" */
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003928 char_u *filter, /* file name filter */
3929 buf_T *buf) /* buffer to read/write for */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930{
3931 char_u *fname;
3932 static char_u *last_dir = NULL; /* last used directory */
3933 char_u *tofree = NULL;
3934 int save_browse = cmdmod.browse;
3935
3936 /* Must turn off browse to avoid that autocommands will get the
3937 * flag too! */
3938 cmdmod.browse = FALSE;
3939
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003940 if (title == NULL || *title == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003942 if (flags & BROWSE_DIR)
3943 title = (char_u *)_("Select Directory dialog");
3944 else if (flags & BROWSE_SAVE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 title = (char_u *)_("Save File dialog");
3946 else
3947 title = (char_u *)_("Open File dialog");
3948 }
3949
3950 /* When no directory specified, use default file name, default dir, buffer
3951 * dir, last dir or current dir */
3952 if ((initdir == NULL || *initdir == NUL) && dflt != NULL && *dflt != NUL)
3953 {
3954 if (mch_isdir(dflt)) /* default file name is a directory */
3955 {
3956 initdir = dflt;
3957 dflt = NULL;
3958 }
3959 else if (gettail(dflt) != dflt) /* default file name includes a path */
3960 {
3961 tofree = vim_strsave(dflt);
3962 if (tofree != NULL)
3963 {
3964 initdir = tofree;
3965 *gettail(initdir) = NUL;
3966 dflt = gettail(dflt);
3967 }
3968 }
3969 }
3970
3971 if (initdir == NULL || *initdir == NUL)
3972 {
3973 /* When 'browsedir' is a directory, use it */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003974 if (STRCMP(p_bsdir, "last") != 0
3975 && STRCMP(p_bsdir, "buffer") != 0
3976 && STRCMP(p_bsdir, "current") != 0
3977 && mch_isdir(p_bsdir))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 initdir = p_bsdir;
3979 /* When saving or 'browsedir' is "buffer", use buffer fname */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003980 else if (((flags & BROWSE_SAVE) || *p_bsdir == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 && buf != NULL && buf->b_ffname != NULL)
3982 {
3983 if (dflt == NULL || *dflt == NUL)
3984 dflt = gettail(curbuf->b_ffname);
3985 tofree = vim_strsave(curbuf->b_ffname);
3986 if (tofree != NULL)
3987 {
3988 initdir = tofree;
3989 *gettail(initdir) = NUL;
3990 }
3991 }
3992 /* When 'browsedir' is "last", use dir from last browse */
3993 else if (*p_bsdir == 'l')
3994 initdir = last_dir;
3995 /* When 'browsedir is "current", use current directory. This is the
3996 * default already, leave initdir empty. */
3997 }
3998
3999# ifdef FEAT_GUI
4000 if (gui.in_use) /* when this changes, also adjust f_has()! */
4001 {
4002 if (filter == NULL
4003# ifdef FEAT_EVAL
4004 && (filter = get_var_value((char_u *)"b:browsefilter")) == NULL
4005 && (filter = get_var_value((char_u *)"g:browsefilter")) == NULL
4006# endif
4007 )
4008 filter = BROWSE_FILTER_DEFAULT;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004009 if (flags & BROWSE_DIR)
4010 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01004011# if defined(FEAT_GUI_GTK) || defined(MSWIN)
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004012 /* For systems that have a directory dialog. */
4013 fname = gui_mch_browsedir(title, initdir);
4014# else
4015 /* Generic solution for selecting a directory: select a file and
4016 * remove the file name. */
4017 fname = gui_mch_browse(0, title, dflt, ext, initdir, (char_u *)"");
4018# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02004019# if !defined(FEAT_GUI_GTK)
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004020 /* Win32 adds a dummy file name, others return an arbitrary file
4021 * name. GTK+ 2 returns only the directory, */
4022 if (fname != NULL && *fname != NUL && !mch_isdir(fname))
4023 {
4024 /* Remove the file name. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004025 char_u *tail = gettail_sep(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004026
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004027 if (tail == fname)
4028 *tail++ = '.'; /* use current dir */
4029 *tail = NUL;
4030 }
4031# endif
4032 }
4033 else
4034 fname = gui_mch_browse(flags & BROWSE_SAVE,
Bram Moolenaarc36651b2018-04-29 12:22:56 +02004035 title, dflt, ext, initdir, (char_u *)_(filter));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036
4037 /* We hang around in the dialog for a while, the user might do some
4038 * things to our files. The Win32 dialog allows deleting or renaming
4039 * a file, check timestamps. */
4040 need_check_timestamps = TRUE;
4041 did_check_timestamps = FALSE;
4042 }
4043 else
4044# endif
4045 {
4046 /* TODO: non-GUI file selector here */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004047 emsg(_("E338: Sorry, no file browser in console mode"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 fname = NULL;
4049 }
4050
4051 /* keep the directory for next time */
4052 if (fname != NULL)
4053 {
4054 vim_free(last_dir);
4055 last_dir = vim_strsave(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00004056 if (last_dir != NULL && !(flags & BROWSE_DIR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 {
4058 *gettail(last_dir) = NUL;
4059 if (*last_dir == NUL)
4060 {
4061 /* filename only returned, must be in current dir */
4062 vim_free(last_dir);
4063 last_dir = alloc(MAXPATHL);
4064 if (last_dir != NULL)
4065 mch_dirname(last_dir, MAXPATHL);
4066 }
4067 }
4068 }
4069
4070 vim_free(tofree);
4071 cmdmod.browse = save_browse;
4072
4073 return fname;
4074}
4075#endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004076
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004077#if defined(FEAT_EVAL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004078static char *e_printf = N_("E766: Insufficient arguments for printf()");
4079
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004080/*
4081 * Get number argument from "idxp" entry in "tvs". First entry is 1.
4082 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004083 static varnumber_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004084tv_nr(typval_T *tvs, int *idxp)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004085{
4086 int idx = *idxp - 1;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004087 varnumber_T n = 0;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004088 int err = FALSE;
4089
4090 if (tvs[idx].v_type == VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004091 emsg(_(e_printf));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004092 else
4093 {
4094 ++*idxp;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01004095 n = tv_get_number_chk(&tvs[idx], &err);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004096 if (err)
4097 n = 0;
4098 }
4099 return n;
4100}
4101
4102/*
4103 * Get string argument from "idxp" entry in "tvs". First entry is 1.
Bram Moolenaard155d7a2018-12-21 16:04:21 +01004104 * If "tofree" is NULL tv_get_string_chk() is used. Some types (e.g. List)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004105 * are not converted to a string.
4106 * If "tofree" is not NULL echo_string() is used. All types are converted to
4107 * a string with the same format as ":echo". The caller must free "*tofree".
Bram Moolenaar1e015462005-09-25 22:16:38 +00004108 * Returns NULL for an error.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004109 */
4110 static char *
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004111tv_str(typval_T *tvs, int *idxp, char_u **tofree)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004112{
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004113 int idx = *idxp - 1;
4114 char *s = NULL;
4115 static char_u numbuf[NUMBUFLEN];
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004116
4117 if (tvs[idx].v_type == VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004118 emsg(_(e_printf));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004119 else
4120 {
4121 ++*idxp;
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004122 if (tofree != NULL)
4123 s = (char *)echo_string(&tvs[idx], tofree, numbuf, get_copyID());
4124 else
Bram Moolenaard155d7a2018-12-21 16:04:21 +01004125 s = (char *)tv_get_string_chk(&tvs[idx]);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004126 }
4127 return s;
4128}
Bram Moolenaara7241f52008-06-24 20:39:31 +00004129
4130# ifdef FEAT_FLOAT
4131/*
4132 * Get float argument from "idxp" entry in "tvs". First entry is 1.
4133 */
4134 static double
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004135tv_float(typval_T *tvs, int *idxp)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004136{
4137 int idx = *idxp - 1;
4138 double f = 0;
4139
4140 if (tvs[idx].v_type == VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004141 emsg(_(e_printf));
Bram Moolenaara7241f52008-06-24 20:39:31 +00004142 else
4143 {
4144 ++*idxp;
4145 if (tvs[idx].v_type == VAR_FLOAT)
4146 f = tvs[idx].vval.v_float;
Bram Moolenaarc4a87012008-06-28 14:10:11 +00004147 else if (tvs[idx].v_type == VAR_NUMBER)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004148 f = (double)tvs[idx].vval.v_number;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004149 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004150 emsg(_("E807: Expected Float argument for printf()"));
Bram Moolenaara7241f52008-06-24 20:39:31 +00004151 }
4152 return f;
4153}
4154# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004155#endif
4156
Bram Moolenaar7f7bd292016-08-28 21:21:31 +02004157#ifdef FEAT_FLOAT
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004158/*
Bram Moolenaare9997822016-08-28 16:03:38 +02004159 * Return the representation of infinity for printf() function:
4160 * "-inf", "inf", "+inf", " inf", "-INF", "INF", "+INF" or " INF".
4161 */
4162 static const char *
4163infinity_str(int positive,
4164 char fmt_spec,
4165 int force_sign,
4166 int space_for_positive)
4167{
4168 static const char *table[] =
4169 {
4170 "-inf", "inf", "+inf", " inf",
4171 "-INF", "INF", "+INF", " INF"
4172 };
4173 int idx = positive * (1 + force_sign + force_sign * space_for_positive);
4174
4175 if (ASCII_ISUPPER(fmt_spec))
4176 idx += 4;
4177 return table[idx];
4178}
Bram Moolenaar7f7bd292016-08-28 21:21:31 +02004179#endif
Bram Moolenaare9997822016-08-28 16:03:38 +02004180
4181/*
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004182 * This code was included to provide a portable vsnprintf() and snprintf().
Bram Moolenaara2031822006-03-07 22:29:51 +00004183 * Some systems may provide their own, but we always use this one for
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004184 * consistency.
4185 *
4186 * This code is based on snprintf.c - a portable implementation of snprintf
4187 * by Mark Martinec <mark.martinec@ijs.si>, Version 2.2, 2000-10-06.
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00004188 * Included with permission. It was heavily modified to fit in Vim.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004189 * The original code, including useful comments, can be found here:
4190 * http://www.ijs.si/software/snprintf/
4191 *
4192 * This snprintf() only supports the following conversion specifiers:
4193 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
4194 * with flags: '-', '+', ' ', '0' and '#'.
4195 * An asterisk is supported for field width as well as precision.
4196 *
Bram Moolenaar04186092016-08-29 21:55:35 +02004197 * Limited support for floating point was added: 'f', 'F', 'e', 'E', 'g', 'G'.
Bram Moolenaara7241f52008-06-24 20:39:31 +00004198 *
Bram Moolenaare9997822016-08-28 16:03:38 +02004199 * Length modifiers 'h' (short int) and 'l' (long int) and 'll' (long long int)
4200 * are supported.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004201 *
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004202 * The locale is not used, the string is used as a byte string. This is only
4203 * relevant for double-byte encodings where the second byte may be '%'.
4204 *
Bram Moolenaara2031822006-03-07 22:29:51 +00004205 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL
4206 * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004207 *
4208 * The return value is the number of characters which would be generated
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004209 * for the given input, excluding the trailing NUL. If this value
Bram Moolenaara2031822006-03-07 22:29:51 +00004210 * is greater or equal to "str_m", not all characters from the result
4211 * have been stored in str, output bytes beyond the ("str_m"-1) -th character
4212 * are discarded. If "str_m" is greater than zero it is guaranteed
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004213 * the resulting string will be NUL-terminated.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004214 */
4215
4216/*
4217 * When va_list is not supported we only define vim_snprintf().
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004218 *
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004219 * vim_vsnprintf_typval() can be invoked with either "va_list" or a list of
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004220 * "typval_T". When the latter is not used it must be NULL.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004221 */
4222
4223/* When generating prototypes all of this is skipped, cproto doesn't
4224 * understand this. */
4225#ifndef PROTO
Bram Moolenaara800b422010-06-27 01:15:55 +02004226
Bram Moolenaara800b422010-06-27 01:15:55 +02004227/* Like vim_vsnprintf() but append to the string. */
4228 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004229vim_snprintf_add(char *str, size_t str_m, const char *fmt, ...)
Bram Moolenaara800b422010-06-27 01:15:55 +02004230{
4231 va_list ap;
4232 int str_l;
4233 size_t len = STRLEN(str);
4234 size_t space;
4235
4236 if (str_m <= len)
4237 space = 0;
4238 else
4239 space = str_m - len;
4240 va_start(ap, fmt);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004241 str_l = vim_vsnprintf(str + len, space, fmt, ap);
Bram Moolenaara800b422010-06-27 01:15:55 +02004242 va_end(ap);
4243 return str_l;
4244}
Bram Moolenaara800b422010-06-27 01:15:55 +02004245
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004246 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004247vim_snprintf(char *str, size_t str_m, const char *fmt, ...)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004248{
4249 va_list ap;
4250 int str_l;
4251
4252 va_start(ap, fmt);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004253 str_l = vim_vsnprintf(str, str_m, fmt, ap);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004254 va_end(ap);
4255 return str_l;
4256}
4257
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004258 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004259vim_vsnprintf(
4260 char *str,
4261 size_t str_m,
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004262 const char *fmt,
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004263 va_list ap)
4264{
4265 return vim_vsnprintf_typval(str, str_m, fmt, ap, NULL);
4266}
4267
4268 int
4269vim_vsnprintf_typval(
4270 char *str,
4271 size_t str_m,
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004272 const char *fmt,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004273 va_list ap,
4274 typval_T *tvs)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004275{
4276 size_t str_l = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004277 const char *p = fmt;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004278 int arg_idx = 1;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004279
4280 if (p == NULL)
4281 p = "";
4282 while (*p != NUL)
4283 {
4284 if (*p != '%')
4285 {
4286 char *q = strchr(p + 1, '%');
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004287 size_t n = (q == NULL) ? STRLEN(p) : (size_t)(q - p);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004288
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004289 /* Copy up to the next '%' or NUL without any changes. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004290 if (str_l < str_m)
4291 {
4292 size_t avail = str_m - str_l;
4293
4294 mch_memmove(str + str_l, p, n > avail ? avail : n);
4295 }
4296 p += n;
4297 str_l += n;
4298 }
4299 else
4300 {
4301 size_t min_field_width = 0, precision = 0;
4302 int zero_padding = 0, precision_specified = 0, justify_left = 0;
4303 int alternate_form = 0, force_sign = 0;
4304
4305 /* If both the ' ' and '+' flags appear, the ' ' flag should be
4306 * ignored. */
4307 int space_for_positive = 1;
4308
4309 /* allowed values: \0, h, l, L */
4310 char length_modifier = '\0';
4311
4312 /* temporary buffer for simple numeric->string conversion */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004313# if defined(FEAT_FLOAT)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004314# define TMP_LEN 350 /* On my system 1e308 is the biggest number possible.
Bram Moolenaara7241f52008-06-24 20:39:31 +00004315 * That sounds reasonable to use as the maximum
4316 * printable. */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004317# elif defined(FEAT_NUM64)
4318# define TMP_LEN 66
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004319# else
Bram Moolenaar91984b92016-08-16 21:58:41 +02004320# define TMP_LEN 34
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004321# endif
Bram Moolenaara7241f52008-06-24 20:39:31 +00004322 char tmp[TMP_LEN];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004323
4324 /* string address in case of string argument */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004325 const char *str_arg = NULL;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004326
4327 /* natural field width of arg without padding and sign */
4328 size_t str_arg_l;
4329
4330 /* unsigned char argument value - only defined for c conversion.
4331 * N.B. standard explicitly states the char argument for the c
4332 * conversion is unsigned */
4333 unsigned char uchar_arg;
4334
4335 /* number of zeros to be inserted for numeric conversions as
4336 * required by the precision or minimal field width */
4337 size_t number_of_zeros_to_pad = 0;
4338
4339 /* index into tmp where zero padding is to be inserted */
4340 size_t zero_padding_insertion_ind = 0;
4341
4342 /* current conversion specifier character */
4343 char fmt_spec = '\0';
4344
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004345 /* buffer for 's' and 'S' specs */
4346 char_u *tofree = NULL;
4347
4348
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004349 p++; /* skip '%' */
4350
4351 /* parse flags */
4352 while (*p == '0' || *p == '-' || *p == '+' || *p == ' '
4353 || *p == '#' || *p == '\'')
4354 {
4355 switch (*p)
4356 {
4357 case '0': zero_padding = 1; break;
4358 case '-': justify_left = 1; break;
4359 case '+': force_sign = 1; space_for_positive = 0; break;
4360 case ' ': force_sign = 1;
4361 /* If both the ' ' and '+' flags appear, the ' '
4362 * flag should be ignored */
4363 break;
4364 case '#': alternate_form = 1; break;
4365 case '\'': break;
4366 }
4367 p++;
4368 }
4369 /* If the '0' and '-' flags both appear, the '0' flag should be
4370 * ignored. */
4371
4372 /* parse field width */
4373 if (*p == '*')
4374 {
4375 int j;
4376
4377 p++;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004378 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004379# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004380 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004381# endif
4382 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004383 if (j >= 0)
4384 min_field_width = j;
4385 else
4386 {
4387 min_field_width = -j;
4388 justify_left = 1;
4389 }
4390 }
4391 else if (VIM_ISDIGIT((int)(*p)))
4392 {
4393 /* size_t could be wider than unsigned int; make sure we treat
4394 * argument like common implementations do */
4395 unsigned int uj = *p++ - '0';
4396
4397 while (VIM_ISDIGIT((int)(*p)))
4398 uj = 10 * uj + (unsigned int)(*p++ - '0');
4399 min_field_width = uj;
4400 }
4401
4402 /* parse precision */
4403 if (*p == '.')
4404 {
4405 p++;
4406 precision_specified = 1;
4407 if (*p == '*')
4408 {
4409 int j;
4410
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004411 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004412# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004413 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004414# endif
4415 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004416 p++;
4417 if (j >= 0)
4418 precision = j;
4419 else
4420 {
4421 precision_specified = 0;
4422 precision = 0;
4423 }
4424 }
4425 else if (VIM_ISDIGIT((int)(*p)))
4426 {
4427 /* size_t could be wider than unsigned int; make sure we
4428 * treat 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 precision = uj;
4434 }
4435 }
4436
4437 /* parse 'h', 'l' and 'll' length modifiers */
4438 if (*p == 'h' || *p == 'l')
4439 {
4440 length_modifier = *p;
4441 p++;
4442 if (length_modifier == 'l' && *p == 'l')
4443 {
4444 /* double l = long long */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004445# ifdef FEAT_NUM64
4446 length_modifier = 'L';
4447# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004448 length_modifier = 'l'; /* treat it as a single 'l' */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004449# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004450 p++;
4451 }
4452 }
4453 fmt_spec = *p;
4454
4455 /* common synonyms: */
4456 switch (fmt_spec)
4457 {
4458 case 'i': fmt_spec = 'd'; break;
4459 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break;
4460 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break;
4461 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break;
4462 default: break;
4463 }
4464
Bram Moolenaar38ee6b02016-07-12 21:11:33 +02004465# if defined(FEAT_EVAL) && defined(FEAT_NUM64)
4466 switch (fmt_spec)
4467 {
4468 case 'd': case 'u': case 'o': case 'x': case 'X':
4469 if (tvs != NULL && length_modifier == '\0')
4470 length_modifier = 'L';
4471 }
4472# endif
4473
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004474 /* get parameter value, do initial processing */
4475 switch (fmt_spec)
4476 {
4477 /* '%' and 'c' behave similar to 's' regarding flags and field
4478 * widths */
4479 case '%':
4480 case 'c':
4481 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004482 case 'S':
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004483 length_modifier = '\0';
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004484 str_arg_l = 1;
4485 switch (fmt_spec)
4486 {
4487 case '%':
4488 str_arg = p;
4489 break;
4490
4491 case 'c':
4492 {
4493 int j;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004494
4495 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004496# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004497 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004498# endif
4499 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004500 /* standard demands unsigned char */
4501 uchar_arg = (unsigned char)j;
4502 str_arg = (char *)&uchar_arg;
4503 break;
4504 }
4505
4506 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004507 case 'S':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004508 str_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004509# if defined(FEAT_EVAL)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004510 tvs != NULL ? tv_str(tvs, &arg_idx, &tofree) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004511# endif
4512 va_arg(ap, char *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004513 if (str_arg == NULL)
4514 {
4515 str_arg = "[NULL]";
4516 str_arg_l = 6;
4517 }
4518 /* make sure not to address string beyond the specified
4519 * precision !!! */
4520 else if (!precision_specified)
4521 str_arg_l = strlen(str_arg);
4522 /* truncate string if necessary as requested by precision */
4523 else if (precision == 0)
4524 str_arg_l = 0;
4525 else
4526 {
Bram Moolenaar223b4312006-05-13 11:09:22 +00004527 /* Don't put the #if inside memchr(), it can be a
4528 * macro. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004529 /* memchr on HP does not like n > 2^31 !!! */
4530 char *q = memchr(str_arg, '\0',
Bram Moolenaar223b4312006-05-13 11:09:22 +00004531 precision <= (size_t)0x7fffffffL ? precision
4532 : (size_t)0x7fffffffL);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004533 str_arg_l = (q == NULL) ? precision
4534 : (size_t)(q - str_arg);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004535 }
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004536 if (fmt_spec == 'S')
4537 {
4538 if (min_field_width != 0)
4539 min_field_width += STRLEN(str_arg)
4540 - mb_string2cells((char_u *)str_arg, -1);
4541 if (precision)
4542 {
4543 char_u *p1 = (char_u *)str_arg;
4544 size_t i;
4545
4546 for (i = 0; i < precision && *p1; i++)
4547 p1 += mb_ptr2len(p1);
4548
4549 str_arg_l = precision = p1 - (char_u *)str_arg;
4550 }
4551 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004552 break;
4553
4554 default:
4555 break;
4556 }
4557 break;
4558
Bram Moolenaar91984b92016-08-16 21:58:41 +02004559 case 'd': case 'u':
4560 case 'b': case 'B':
4561 case 'o':
4562 case 'x': case 'X':
4563 case 'p':
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004564 {
Bram Moolenaar91984b92016-08-16 21:58:41 +02004565 /* NOTE: the u, b, o, x, X and p conversion specifiers
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004566 * imply the value is unsigned; d implies a signed
4567 * value */
4568
4569 /* 0 if numeric argument is zero (or if pointer is
4570 * NULL for 'p'), +1 if greater than zero (or nonzero
4571 * for unsigned arguments), -1 if negative (unsigned
4572 * argument is never negative) */
4573 int arg_sign = 0;
4574
4575 /* only defined for length modifier h, or for no
4576 * length modifiers */
4577 int int_arg = 0;
4578 unsigned int uint_arg = 0;
4579
4580 /* only defined for length modifier l */
4581 long int long_arg = 0;
4582 unsigned long int ulong_arg = 0;
4583
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004584# ifdef FEAT_NUM64
4585 /* only defined for length modifier ll */
4586 varnumber_T llong_arg = 0;
4587 uvarnumber_T ullong_arg = 0;
4588# endif
4589
Bram Moolenaare9997822016-08-28 16:03:38 +02004590 /* only defined for b conversion */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004591 uvarnumber_T bin_arg = 0;
4592
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004593 /* pointer argument value -only defined for p
4594 * conversion */
4595 void *ptr_arg = NULL;
4596
4597 if (fmt_spec == 'p')
4598 {
4599 length_modifier = '\0';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004600 ptr_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004601# if defined(FEAT_EVAL)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004602 tvs != NULL ? (void *)tv_str(tvs, &arg_idx,
4603 NULL) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004604# endif
4605 va_arg(ap, void *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004606 if (ptr_arg != NULL)
4607 arg_sign = 1;
4608 }
Bram Moolenaar91984b92016-08-16 21:58:41 +02004609 else if (fmt_spec == 'b' || fmt_spec == 'B')
4610 {
4611 bin_arg =
4612# if defined(FEAT_EVAL)
4613 tvs != NULL ?
4614 (uvarnumber_T)tv_nr(tvs, &arg_idx) :
4615# endif
4616 va_arg(ap, uvarnumber_T);
4617 if (bin_arg != 0)
4618 arg_sign = 1;
4619 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004620 else if (fmt_spec == 'd')
4621 {
4622 /* signed */
4623 switch (length_modifier)
4624 {
4625 case '\0':
4626 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004627 /* char and short arguments are passed as int. */
4628 int_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004629# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004630 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004631# endif
4632 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004633 if (int_arg > 0)
4634 arg_sign = 1;
4635 else if (int_arg < 0)
4636 arg_sign = -1;
4637 break;
4638 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004639 long_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004640# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004641 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004642# endif
4643 va_arg(ap, long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004644 if (long_arg > 0)
4645 arg_sign = 1;
4646 else if (long_arg < 0)
4647 arg_sign = -1;
4648 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004649# ifdef FEAT_NUM64
4650 case 'L':
4651 llong_arg =
4652# if defined(FEAT_EVAL)
4653 tvs != NULL ? tv_nr(tvs, &arg_idx) :
4654# endif
4655 va_arg(ap, varnumber_T);
4656 if (llong_arg > 0)
4657 arg_sign = 1;
4658 else if (llong_arg < 0)
4659 arg_sign = -1;
4660 break;
4661# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004662 }
4663 }
4664 else
4665 {
4666 /* unsigned */
4667 switch (length_modifier)
4668 {
4669 case '\0':
4670 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004671 uint_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004672# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004673 tvs != NULL ? (unsigned)
4674 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004675# endif
4676 va_arg(ap, unsigned int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004677 if (uint_arg != 0)
4678 arg_sign = 1;
4679 break;
4680 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004681 ulong_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004682# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004683 tvs != NULL ? (unsigned long)
4684 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004685# endif
4686 va_arg(ap, unsigned long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004687 if (ulong_arg != 0)
4688 arg_sign = 1;
4689 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004690# ifdef FEAT_NUM64
4691 case 'L':
4692 ullong_arg =
4693# if defined(FEAT_EVAL)
4694 tvs != NULL ? (uvarnumber_T)
4695 tv_nr(tvs, &arg_idx) :
4696# endif
4697 va_arg(ap, uvarnumber_T);
4698 if (ullong_arg != 0)
4699 arg_sign = 1;
4700 break;
4701# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004702 }
4703 }
4704
4705 str_arg = tmp;
4706 str_arg_l = 0;
4707
4708 /* NOTE:
4709 * For d, i, u, o, x, and X conversions, if precision is
4710 * specified, the '0' flag should be ignored. This is so
4711 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux,
4712 * FreeBSD, NetBSD; but not with Perl.
4713 */
4714 if (precision_specified)
4715 zero_padding = 0;
4716 if (fmt_spec == 'd')
4717 {
4718 if (force_sign && arg_sign >= 0)
4719 tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
4720 /* leave negative numbers for sprintf to handle, to
4721 * avoid handling tricky cases like (short int)-32768 */
4722 }
4723 else if (alternate_form)
4724 {
4725 if (arg_sign != 0
Bram Moolenaar91984b92016-08-16 21:58:41 +02004726 && (fmt_spec == 'b' || fmt_spec == 'B'
4727 || fmt_spec == 'x' || fmt_spec == 'X') )
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004728 {
4729 tmp[str_arg_l++] = '0';
4730 tmp[str_arg_l++] = fmt_spec;
4731 }
4732 /* alternate form should have no effect for p
4733 * conversion, but ... */
4734 }
4735
4736 zero_padding_insertion_ind = str_arg_l;
4737 if (!precision_specified)
4738 precision = 1; /* default precision is 1 */
4739 if (precision == 0 && arg_sign == 0)
4740 {
4741 /* When zero value is formatted with an explicit
4742 * precision 0, the resulting formatted string is
Bram Moolenaar91984b92016-08-16 21:58:41 +02004743 * empty (d, i, u, b, B, o, x, X, p). */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004744 }
4745 else
4746 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004747 char f[6];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004748 int f_l = 0;
4749
4750 /* construct a simple format string for sprintf */
4751 f[f_l++] = '%';
4752 if (!length_modifier)
4753 ;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004754 else if (length_modifier == 'L')
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004755 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004756# ifdef FEAT_NUM64
Bram Moolenaar4f974752019-02-17 17:44:42 +01004757# ifdef MSWIN
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004758 f[f_l++] = 'I';
4759 f[f_l++] = '6';
4760 f[f_l++] = '4';
4761# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004762 f[f_l++] = 'l';
4763 f[f_l++] = 'l';
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004764# endif
4765# else
4766 f[f_l++] = 'l';
4767# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004768 }
4769 else
4770 f[f_l++] = length_modifier;
4771 f[f_l++] = fmt_spec;
4772 f[f_l++] = '\0';
4773
4774 if (fmt_spec == 'p')
4775 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg);
Bram Moolenaar91984b92016-08-16 21:58:41 +02004776 else if (fmt_spec == 'b' || fmt_spec == 'B')
4777 {
4778 char b[8 * sizeof(uvarnumber_T)];
4779 size_t b_l = 0;
4780 uvarnumber_T bn = bin_arg;
4781
4782 do
4783 {
4784 b[sizeof(b) - ++b_l] = '0' + (bn & 0x1);
4785 bn >>= 1;
4786 }
4787 while (bn != 0);
4788
4789 memcpy(tmp + str_arg_l, b + sizeof(b) - b_l, b_l);
4790 str_arg_l += b_l;
4791 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004792 else if (fmt_spec == 'd')
4793 {
4794 /* signed */
4795 switch (length_modifier)
4796 {
4797 case '\0':
4798 case 'h': str_arg_l += sprintf(
4799 tmp + str_arg_l, f, int_arg);
4800 break;
4801 case 'l': str_arg_l += sprintf(
4802 tmp + str_arg_l, f, long_arg);
4803 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004804# ifdef FEAT_NUM64
4805 case 'L': str_arg_l += sprintf(
4806 tmp + str_arg_l, f, llong_arg);
4807 break;
4808# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004809 }
4810 }
4811 else
4812 {
4813 /* unsigned */
4814 switch (length_modifier)
4815 {
4816 case '\0':
4817 case 'h': str_arg_l += sprintf(
4818 tmp + str_arg_l, f, uint_arg);
4819 break;
4820 case 'l': str_arg_l += sprintf(
4821 tmp + str_arg_l, f, ulong_arg);
4822 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004823# ifdef FEAT_NUM64
4824 case 'L': str_arg_l += sprintf(
4825 tmp + str_arg_l, f, ullong_arg);
4826 break;
4827# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004828 }
4829 }
4830
4831 /* include the optional minus sign and possible
4832 * "0x" in the region before the zero padding
4833 * insertion point */
4834 if (zero_padding_insertion_ind < str_arg_l
4835 && tmp[zero_padding_insertion_ind] == '-')
4836 zero_padding_insertion_ind++;
4837 if (zero_padding_insertion_ind + 1 < str_arg_l
4838 && tmp[zero_padding_insertion_ind] == '0'
4839 && (tmp[zero_padding_insertion_ind + 1] == 'x'
4840 || tmp[zero_padding_insertion_ind + 1] == 'X'))
4841 zero_padding_insertion_ind += 2;
4842 }
4843
4844 {
4845 size_t num_of_digits = str_arg_l
4846 - zero_padding_insertion_ind;
4847
4848 if (alternate_form && fmt_spec == 'o'
4849 /* unless zero is already the first
4850 * character */
4851 && !(zero_padding_insertion_ind < str_arg_l
4852 && tmp[zero_padding_insertion_ind] == '0'))
4853 {
4854 /* assure leading zero for alternate-form
4855 * octal numbers */
4856 if (!precision_specified
4857 || precision < num_of_digits + 1)
4858 {
4859 /* precision is increased to force the
4860 * first character to be zero, except if a
4861 * zero value is formatted with an
4862 * explicit precision of zero */
4863 precision = num_of_digits + 1;
4864 precision_specified = 1;
4865 }
4866 }
4867 /* zero padding to specified precision? */
4868 if (num_of_digits < precision)
4869 number_of_zeros_to_pad = precision - num_of_digits;
4870 }
4871 /* zero padding to specified minimal field width? */
4872 if (!justify_left && zero_padding)
4873 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004874 int n = (int)(min_field_width - (str_arg_l
4875 + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004876 if (n > 0)
4877 number_of_zeros_to_pad += n;
4878 }
4879 break;
4880 }
4881
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004882# ifdef FEAT_FLOAT
Bram Moolenaara7241f52008-06-24 20:39:31 +00004883 case 'f':
Bram Moolenaar04186092016-08-29 21:55:35 +02004884 case 'F':
Bram Moolenaara7241f52008-06-24 20:39:31 +00004885 case 'e':
4886 case 'E':
4887 case 'g':
4888 case 'G':
4889 {
4890 /* Floating point. */
4891 double f;
4892 double abs_f;
4893 char format[40];
4894 int l;
4895 int remove_trailing_zeroes = FALSE;
4896
4897 f =
Bram Moolenaara7241f52008-06-24 20:39:31 +00004898# if defined(FEAT_EVAL)
4899 tvs != NULL ? tv_float(tvs, &arg_idx) :
4900# endif
4901 va_arg(ap, double);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004902 abs_f = f < 0 ? -f : f;
4903
4904 if (fmt_spec == 'g' || fmt_spec == 'G')
4905 {
4906 /* Would be nice to use %g directly, but it prints
4907 * "1.0" as "1", we don't want that. */
4908 if ((abs_f >= 0.001 && abs_f < 10000000.0)
4909 || abs_f == 0.0)
Bram Moolenaar04186092016-08-29 21:55:35 +02004910 fmt_spec = ASCII_ISUPPER(fmt_spec) ? 'F' : 'f';
Bram Moolenaara7241f52008-06-24 20:39:31 +00004911 else
4912 fmt_spec = fmt_spec == 'g' ? 'e' : 'E';
4913 remove_trailing_zeroes = TRUE;
4914 }
4915
Bram Moolenaar04186092016-08-29 21:55:35 +02004916 if ((fmt_spec == 'f' || fmt_spec == 'F') &&
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004917# ifdef VAX
Bram Moolenaarc9372132009-01-13 15:38:37 +00004918 abs_f > 1.0e38
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004919# else
Bram Moolenaarc9372132009-01-13 15:38:37 +00004920 abs_f > 1.0e307
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004921# endif
Bram Moolenaarc9372132009-01-13 15:38:37 +00004922 )
Bram Moolenaara7241f52008-06-24 20:39:31 +00004923 {
4924 /* Avoid a buffer overflow */
Bram Moolenaare9997822016-08-28 16:03:38 +02004925 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec,
4926 force_sign, space_for_positive));
4927 str_arg_l = STRLEN(tmp);
4928 zero_padding = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004929 }
4930 else
4931 {
Bram Moolenaare9997822016-08-28 16:03:38 +02004932 if (isnan(f))
4933 {
4934 /* Not a number: nan or NAN */
4935 STRCPY(tmp, ASCII_ISUPPER(fmt_spec) ? "NAN"
4936 : "nan");
4937 str_arg_l = 3;
4938 zero_padding = 0;
4939 }
4940 else if (isinf(f))
4941 {
4942 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec,
4943 force_sign, space_for_positive));
4944 str_arg_l = STRLEN(tmp);
4945 zero_padding = 0;
4946 }
4947 else
Bram Moolenaar191f18b2018-02-04 16:38:47 +01004948 {
Bram Moolenaare9997822016-08-28 16:03:38 +02004949 /* Regular float number */
Bram Moolenaar04186092016-08-29 21:55:35 +02004950 format[0] = '%';
4951 l = 1;
4952 if (force_sign)
4953 format[l++] = space_for_positive ? ' ' : '+';
4954 if (precision_specified)
4955 {
4956 size_t max_prec = TMP_LEN - 10;
4957
4958 /* Make sure we don't get more digits than we
4959 * have room for. */
4960 if ((fmt_spec == 'f' || fmt_spec == 'F')
4961 && abs_f > 1.0)
4962 max_prec -= (size_t)log10(abs_f);
4963 if (precision > max_prec)
4964 precision = max_prec;
4965 l += sprintf(format + l, ".%d", (int)precision);
4966 }
Bram Moolenaar965ed142016-08-29 22:31:24 +02004967 format[l] = fmt_spec == 'F' ? 'f' : fmt_spec;
Bram Moolenaar04186092016-08-29 21:55:35 +02004968 format[l + 1] = NUL;
4969
Bram Moolenaare9997822016-08-28 16:03:38 +02004970 str_arg_l = sprintf(tmp, format, f);
Bram Moolenaar191f18b2018-02-04 16:38:47 +01004971 }
Bram Moolenaar99922372016-08-27 15:26:35 +02004972
Bram Moolenaara7241f52008-06-24 20:39:31 +00004973 if (remove_trailing_zeroes)
4974 {
4975 int i;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004976 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004977
4978 /* Using %g or %G: remove superfluous zeroes. */
Bram Moolenaar04186092016-08-29 21:55:35 +02004979 if (fmt_spec == 'f' || fmt_spec == 'F')
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004980 tp = tmp + str_arg_l - 1;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004981 else
4982 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004983 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00004984 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004985 if (tp != NULL)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004986 {
4987 /* Remove superfluous '+' and leading
4988 * zeroes from the exponent. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004989 if (tp[1] == '+')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004990 {
4991 /* Change "1.0e+07" to "1.0e07" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004992 STRMOVE(tp + 1, tp + 2);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004993 --str_arg_l;
4994 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004995 i = (tp[1] == '-') ? 2 : 1;
4996 while (tp[i] == '0')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004997 {
4998 /* Change "1.0e07" to "1.0e7" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004999 STRMOVE(tp + i, tp + i + 1);
Bram Moolenaara7241f52008-06-24 20:39:31 +00005000 --str_arg_l;
5001 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005002 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005003 }
5004 }
5005
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005006 if (tp != NULL && !precision_specified)
Bram Moolenaara7241f52008-06-24 20:39:31 +00005007 /* Remove trailing zeroes, but keep the one
5008 * just after a dot. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005009 while (tp > tmp + 2 && *tp == '0'
5010 && tp[-1] != '.')
Bram Moolenaara7241f52008-06-24 20:39:31 +00005011 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005012 STRMOVE(tp, tp + 1);
5013 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005014 --str_arg_l;
5015 }
5016 }
5017 else
5018 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005019 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00005020
5021 /* Be consistent: some printf("%e") use 1.0e+12
5022 * and some 1.0e+012. Remove one zero in the last
5023 * case. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005024 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00005025 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005026 if (tp != NULL && (tp[1] == '+' || tp[1] == '-')
5027 && tp[2] == '0'
5028 && vim_isdigit(tp[3])
5029 && vim_isdigit(tp[4]))
Bram Moolenaara7241f52008-06-24 20:39:31 +00005030 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00005031 STRMOVE(tp + 2, tp + 3);
Bram Moolenaara7241f52008-06-24 20:39:31 +00005032 --str_arg_l;
5033 }
5034 }
5035 }
Bram Moolenaar04186092016-08-29 21:55:35 +02005036 if (zero_padding && min_field_width > str_arg_l
5037 && (tmp[0] == '-' || force_sign))
5038 {
5039 /* padding 0's should be inserted after the sign */
5040 number_of_zeros_to_pad = min_field_width - str_arg_l;
5041 zero_padding_insertion_ind = 1;
5042 }
Bram Moolenaara7241f52008-06-24 20:39:31 +00005043 str_arg = tmp;
5044 break;
5045 }
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01005046# endif
Bram Moolenaara7241f52008-06-24 20:39:31 +00005047
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005048 default:
5049 /* unrecognized conversion specifier, keep format string
5050 * as-is */
5051 zero_padding = 0; /* turn zero padding off for non-numeric
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00005052 conversion */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005053 justify_left = 1;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005054 min_field_width = 0; /* reset flags */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005055
5056 /* discard the unrecognized conversion, just keep *
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00005057 * the unrecognized conversion character */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005058 str_arg = p;
5059 str_arg_l = 0;
5060 if (*p != NUL)
5061 str_arg_l++; /* include invalid conversion specifier
5062 unchanged if not at end-of-string */
5063 break;
5064 }
5065
5066 if (*p != NUL)
5067 p++; /* step over the just processed conversion specifier */
5068
5069 /* insert padding to the left as requested by min_field_width;
5070 * this does not include the zero padding in case of numerical
5071 * conversions*/
5072 if (!justify_left)
5073 {
5074 /* left padding with blank or zero */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005075 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005076
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005077 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005078 {
5079 if (str_l < str_m)
5080 {
5081 size_t avail = str_m - str_l;
5082
5083 vim_memset(str + str_l, zero_padding ? '0' : ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005084 (size_t)pn > avail ? avail
5085 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005086 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005087 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005088 }
5089 }
5090
5091 /* zero padding as requested by the precision or by the minimal
5092 * field width for numeric conversions required? */
Bram Moolenaarea424162005-06-16 21:51:00 +00005093 if (number_of_zeros_to_pad == 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005094 {
5095 /* will not copy first part of numeric right now, *
5096 * force it to be copied later in its entirety */
5097 zero_padding_insertion_ind = 0;
5098 }
5099 else
5100 {
5101 /* insert first part of numerics (sign or '0x') before zero
5102 * padding */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005103 int zn = (int)zero_padding_insertion_ind;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005104
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005105 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005106 {
5107 if (str_l < str_m)
5108 {
5109 size_t avail = str_m - str_l;
5110
5111 mch_memmove(str + str_l, str_arg,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005112 (size_t)zn > avail ? avail
5113 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005114 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005115 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005116 }
5117
5118 /* insert zero padding as requested by the precision or min
5119 * field width */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005120 zn = (int)number_of_zeros_to_pad;
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005121 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005122 {
5123 if (str_l < str_m)
5124 {
Bram Moolenaar2f3a90a2017-08-03 14:49:29 +02005125 size_t avail = str_m - str_l;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005126
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005127 vim_memset(str + str_l, '0',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005128 (size_t)zn > avail ? avail
5129 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005130 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005131 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005132 }
5133 }
5134
5135 /* insert formatted string
5136 * (or as-is conversion specifier for unknown conversions) */
5137 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005138 int sn = (int)(str_arg_l - zero_padding_insertion_ind);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005139
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005140 if (sn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005141 {
5142 if (str_l < str_m)
5143 {
5144 size_t avail = str_m - str_l;
5145
5146 mch_memmove(str + str_l,
5147 str_arg + zero_padding_insertion_ind,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005148 (size_t)sn > avail ? avail : (size_t)sn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005149 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005150 str_l += sn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005151 }
5152 }
5153
5154 /* insert right padding */
5155 if (justify_left)
5156 {
5157 /* right blank padding to the field width */
Bram Moolenaara7241f52008-06-24 20:39:31 +00005158 int pn = (int)(min_field_width
5159 - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005160
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005161 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005162 {
5163 if (str_l < str_m)
5164 {
5165 size_t avail = str_m - str_l;
5166
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005167 vim_memset(str + str_l, ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005168 (size_t)pn > avail ? avail
5169 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005170 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005171 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005172 }
5173 }
Bram Moolenaare5a8f352016-08-16 21:30:54 +02005174 vim_free(tofree);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005175 }
5176 }
5177
5178 if (str_m > 0)
5179 {
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00005180 /* make sure the string is nul-terminated even at the expense of
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005181 * overwriting the last character (shouldn't happen, but just in case)
5182 * */
5183 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0';
5184 }
5185
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005186 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005187 emsg(_("E767: Too many arguments to printf()"));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005188
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00005189 /* Return the number of characters formatted (excluding trailing nul
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005190 * character), that is, the number of characters that would have been
5191 * written to the buffer if it were large enough. */
5192 return (int)str_l;
5193}
5194
5195#endif /* PROTO */