blob: 19defaa1f80a6a27471d73faabab9a0595bf5336 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * message.c: functions for displaying messages on the command line
12 */
13
14#define MESSAGE_FILE /* don't include prototype for smsg() */
Bram Moolenaar44ca54a2016-08-27 15:41:32 +020015#define USING_FLOAT_STUFF
Bram Moolenaar071d4272004-06-13 20:20:40 +000016
17#include "vim.h"
18
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010019static void add_msg_hist(char_u *s, int len, int attr);
20static void hit_return_msg(void);
21static void msg_home_replace_attr(char_u *fname, int attr);
Bram Moolenaar32526b32019-01-19 17:43:09 +010022static void msg_puts_attr_len(char *str, int maxlen, int attr);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010023static void msg_puts_display(char_u *str, int maxlen, int attr, int recurse);
24static void msg_scroll_up(void);
25static void inc_msg_scrolled(void);
26static void store_sb_text(char_u **sb_str, char_u *s, int attr, int *sb_col, int finish);
27static void t_puts(int *t_col, char_u *t_s, char_u *s, int attr);
28static void msg_puts_printf(char_u *str, int maxlen);
29static int do_more_prompt(int typed_char);
30static void msg_screen_putchar(int c, int attr);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020031static void msg_moremsg(int full);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010032static int msg_check_screen(void);
33static void redir_write(char_u *s, int maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +000034#ifdef FEAT_CON_DIALOG
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010035static char_u *msg_show_console_dialog(char_u *message, char_u *buttons, int dfltbutton);
Bram Moolenaar071d4272004-06-13 20:20:40 +000036static int confirm_msg_used = FALSE; /* displaying confirm_msg */
37static char_u *confirm_msg = NULL; /* ":confirm" message */
38static char_u *confirm_msg_tail; /* tail of confirm_msg */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020039static void display_confirm_msg(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#endif
Bram Moolenaar958dc692016-12-01 15:34:12 +010041#ifdef FEAT_JOB_CHANNEL
42static int emsg_to_channel_log = FALSE;
43#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000044
45struct msg_hist
46{
47 struct msg_hist *next;
48 char_u *msg;
49 int attr;
50};
51
52static struct msg_hist *first_msg_hist = NULL;
53static struct msg_hist *last_msg_hist = NULL;
54static int msg_hist_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000055
Bram Moolenaarb5b5b892011-09-14 15:39:29 +020056static FILE *verbose_fd = NULL;
57static int verbose_did_open = FALSE;
58
Bram Moolenaar071d4272004-06-13 20:20:40 +000059/*
60 * When writing messages to the screen, there are many different situations.
61 * A number of variables is used to remember the current state:
62 * msg_didany TRUE when messages were written since the last time the
63 * user reacted to a prompt.
64 * Reset: After hitting a key for the hit-return prompt,
65 * hitting <CR> for the command line or input().
66 * Set: When any message is written to the screen.
67 * msg_didout TRUE when something was written to the current line.
68 * Reset: When advancing to the next line, when the current
69 * text can be overwritten.
70 * Set: When any message is written to the screen.
71 * msg_nowait No extra delay for the last drawn message.
72 * Used in normal_cmd() before the mode message is drawn.
73 * emsg_on_display There was an error message recently. Indicates that there
74 * should be a delay before redrawing.
75 * msg_scroll The next message should not overwrite the current one.
76 * msg_scrolled How many lines the screen has been scrolled (because of
77 * messages). Used in update_screen() to scroll the screen
78 * back. Incremented each time the screen scrolls a line.
79 * msg_scrolled_ign TRUE when msg_scrolled is non-zero and msg_puts_attr()
80 * writes something without scrolling should not make
81 * need_wait_return to be set. This is a hack to make ":ts"
82 * work without an extra prompt.
83 * lines_left Number of lines available for messages before the
Bram Moolenaar5d6f75e2011-12-30 14:14:29 +010084 * more-prompt is to be given. -1 when not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +000085 * need_wait_return TRUE when the hit-return prompt is needed.
86 * Reset: After giving the hit-return prompt, when the user
87 * has answered some other prompt.
88 * Set: When the ruler or typeahead display is overwritten,
89 * scrolling the screen for some message.
90 * keep_msg Message to be displayed after redrawing the screen, in
91 * main_loop().
92 * This is an allocated string or NULL when not used.
93 */
94
95/*
96 * msg(s) - displays the string 's' on the status line
97 * When terminal not initialized (yet) mch_errmsg(..) is used.
98 * return TRUE if wait_return not called
99 */
100 int
Bram Moolenaar32526b32019-01-19 17:43:09 +0100101msg(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102{
103 return msg_attr_keep(s, 0, FALSE);
104}
105
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000106/*
107 * Like msg() but keep it silent when 'verbosefile' is set.
108 */
109 int
Bram Moolenaar32526b32019-01-19 17:43:09 +0100110verb_msg(char *s)
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000111{
112 int n;
113
114 verbose_enter();
115 n = msg_attr_keep(s, 0, FALSE);
116 verbose_leave();
117
118 return n;
119}
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000120
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 int
Bram Moolenaar32526b32019-01-19 17:43:09 +0100122msg_attr(char *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123{
124 return msg_attr_keep(s, attr, FALSE);
125}
126
127 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100128msg_attr_keep(
Bram Moolenaar32526b32019-01-19 17:43:09 +0100129 char *s,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100130 int attr,
131 int keep) /* TRUE: set keep_msg if it doesn't scroll */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132{
133 static int entered = 0;
134 int retval;
135 char_u *buf = NULL;
136
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200137 /* Skip messages not matching ":filter pattern".
138 * Don't filter when there is an error. */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100139 if (!emsg_on_display && message_filtered((char_u *)s))
Bram Moolenaar7b668e82016-08-23 23:51:21 +0200140 return TRUE;
141
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142#ifdef FEAT_EVAL
143 if (attr == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100144 set_vim_var_string(VV_STATUSMSG, (char_u *)s, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145#endif
146
147 /*
148 * It is possible that displaying a messages causes a problem (e.g.,
149 * when redrawing the window), which causes another message, etc.. To
150 * break this loop, limit the recursiveness to 3 levels.
151 */
152 if (entered >= 3)
153 return TRUE;
154 ++entered;
155
156 /* Add message to history (unless it's a repeated kept message or a
157 * truncated message) */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100158 if ((char_u *)s != keep_msg
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 || (*s != '<'
160 && last_msg_hist != NULL
161 && last_msg_hist->msg != NULL
162 && STRCMP(s, last_msg_hist->msg)))
Bram Moolenaar32526b32019-01-19 17:43:09 +0100163 add_msg_hist((char_u *)s, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164
Bram Moolenaar958dc692016-12-01 15:34:12 +0100165#ifdef FEAT_JOB_CHANNEL
166 if (emsg_to_channel_log)
Bram Moolenaar958dc692016-12-01 15:34:12 +0100167 /* Write message in the channel log. */
Bram Moolenaar2f3a90a2017-08-03 14:49:29 +0200168 ch_log(NULL, "ERROR: %s", (char *)s);
Bram Moolenaar958dc692016-12-01 15:34:12 +0100169#endif
170
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171 /* Truncate the message if needed. */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000172 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +0100173 buf = msg_strtrunc((char_u *)s, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174 if (buf != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100175 s = (char *)buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176
Bram Moolenaar32526b32019-01-19 17:43:09 +0100177 msg_outtrans_attr((char_u *)s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178 msg_clr_eos();
179 retval = msg_end();
180
Bram Moolenaar32526b32019-01-19 17:43:09 +0100181 if (keep && retval && vim_strsize((char_u *)s)
182 < (int)(Rows - cmdline_row - 1) * Columns + sc_col)
183 set_keep_msg((char_u *)s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184
185 vim_free(buf);
186 --entered;
187 return retval;
188}
189
190/*
191 * Truncate a string such that it can be printed without causing a scroll.
192 * Returns an allocated string or NULL when no truncating is done.
193 */
194 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100195msg_strtrunc(
196 char_u *s,
197 int force) /* always truncate */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198{
199 char_u *buf = NULL;
200 int len;
201 int room;
202
203 /* May truncate message to avoid a hit-return prompt */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000204 if ((!msg_scroll && !need_wait_return && shortmess(SHM_TRUNCALL)
205 && !exmode_active && msg_silent == 0) || force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 {
207 len = vim_strsize(s);
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000208 if (msg_scrolled != 0)
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000209 /* Use all the columns. */
210 room = (int)(Rows - msg_row) * Columns - 1;
211 else
212 /* Use up to 'showcmd' column. */
213 room = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 if (len > room && room > 0)
215 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 if (enc_utf8)
217 /* may have up to 18 bytes per cell (6 per char, up to two
218 * composing chars) */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100219 len = (room + 2) * 18;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 else if (enc_dbcs == DBCS_JPNU)
221 /* may have up to 2 bytes per cell for euc-jp */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100222 len = (room + 2) * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223 else
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100224 len = room + 2;
225 buf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 if (buf != NULL)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100227 trunc_string(s, buf, room, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228 }
229 }
230 return buf;
231}
232
233/*
234 * Truncate a string "s" to "buf" with cell width "room".
235 * "s" and "buf" may be equal.
236 */
237 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100238trunc_string(
239 char_u *s,
240 char_u *buf,
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200241 int room_in,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100242 int buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243{
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200244 size_t room = room_in - 3; /* "..." takes 3 chars */
245 size_t half;
246 size_t len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 int e;
248 int i;
249 int n;
250
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200251 if (room_in < 3)
252 room = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 half = room / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254
255 /* First part: Start of the string. */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100256 for (e = 0; len < half && e < buflen; ++e)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 {
258 if (s[e] == NUL)
259 {
260 /* text fits without truncating! */
261 buf[e] = NUL;
262 return;
263 }
264 n = ptr2cells(s + e);
Bram Moolenaar502ae4b2016-07-16 19:50:13 +0200265 if (len + n > half)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 break;
267 len += n;
268 buf[e] = s[e];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000270 for (n = (*mb_ptr2len)(s + e); --n > 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 {
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100272 if (++e == buflen)
273 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274 buf[e] = s[e];
275 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 }
277
278 /* Last part: End of the string. */
279 i = e;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 if (enc_dbcs != 0)
281 {
282 /* For DBCS going backwards in a string is slow, but
283 * computing the cell width isn't too slow: go forward
284 * until the rest fits. */
285 n = vim_strsize(s + i);
286 while (len + n > room)
287 {
288 n -= ptr2cells(s + i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000289 i += (*mb_ptr2len)(s + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 }
291 }
292 else if (enc_utf8)
293 {
294 /* For UTF-8 we can go backwards easily. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000295 half = i = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296 for (;;)
297 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000298 do
Bram Moolenaarace95982017-03-29 17:30:27 +0200299 half = half - utf_head_off(s, s + half - 1) - 1;
Bram Moolenaarb9644432016-07-19 12:33:44 +0200300 while (half > 0 && utf_iscomposing(utf_ptr2char(s + half)));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 n = ptr2cells(s + half);
Bram Moolenaarb9644432016-07-19 12:33:44 +0200302 if (len + n > room || half == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 break;
304 len += n;
Bram Moolenaara5c0cc12016-07-30 16:40:39 +0200305 i = (int)half;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 }
307 }
308 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 {
310 for (i = (int)STRLEN(s); len + (n = ptr2cells(s + i - 1)) <= room; --i)
311 len += n;
312 }
313
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200314
315 if (i <= e + 3)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100316 {
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200317 /* text fits without truncating */
318 if (s != buf)
319 {
320 len = STRLEN(s);
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200321 if (len >= (size_t)buflen)
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200322 len = buflen - 1;
323 len = len - e + 1;
324 if (len < 1)
325 buf[e - 1] = NUL;
326 else
327 mch_memmove(buf + e, s + e, len);
328 }
329 }
330 else if (e + 3 < buflen)
331 {
332 /* set the middle and copy the last part */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100333 mch_memmove(buf + e, "...", (size_t)3);
Bram Moolenaard4f31dc2016-07-23 17:28:22 +0200334 len = STRLEN(s + i) + 1;
335 if (len >= (size_t)buflen - e - 3)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100336 len = buflen - e - 3 - 1;
337 mch_memmove(buf + e + 3, s + i, len);
338 buf[e + 3 + len - 1] = NUL;
339 }
340 else
341 {
Bram Moolenaarf6acffb2016-07-16 16:54:24 +0200342 /* can't fit in the "...", just truncate it */
343 buf[e - 1] = NUL;
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100344 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345}
346
347/*
348 * Automatic prototype generation does not understand this function.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100349 * Note: Caller of smsg() and smsg_attr() must check the resulting string is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 * shorter than IOSIZE!!!
351 */
352#ifndef PROTO
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100354int vim_snprintf(char *str, size_t str_m, const char *fmt, ...);
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000355
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100357smsg(const char *s, ...)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358{
359 va_list arglist;
360
361 va_start(arglist, s);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100362 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 va_end(arglist);
Bram Moolenaar32526b32019-01-19 17:43:09 +0100364 return msg((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365}
366
367 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100368smsg_attr(int attr, const char *s, ...)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369{
370 va_list arglist;
371
372 va_start(arglist, s);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100373 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 va_end(arglist);
Bram Moolenaar32526b32019-01-19 17:43:09 +0100375 return msg_attr((char *)IObuff, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376}
377
Bram Moolenaare0429682018-07-01 16:44:03 +0200378 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100379smsg_attr_keep(int attr, const char *s, ...)
Bram Moolenaare0429682018-07-01 16:44:03 +0200380{
381 va_list arglist;
382
383 va_start(arglist, s);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100384 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist);
Bram Moolenaare0429682018-07-01 16:44:03 +0200385 va_end(arglist);
Bram Moolenaar32526b32019-01-19 17:43:09 +0100386 return msg_attr_keep((char *)IObuff, attr, TRUE);
Bram Moolenaare0429682018-07-01 16:44:03 +0200387}
388
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389#endif
390
391/*
392 * Remember the last sourcing name/lnum used in an error message, so that it
393 * isn't printed each time when it didn't change.
394 */
395static int last_sourcing_lnum = 0;
396static char_u *last_sourcing_name = NULL;
397
398/*
399 * Reset the last used sourcing name/lnum. Makes sure it is displayed again
400 * for the next error message;
401 */
Bram Moolenaar4eec5ec2005-06-26 22:26:21 +0000402 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100403reset_last_sourcing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404{
Bram Moolenaard23a8232018-02-10 18:45:26 +0100405 VIM_CLEAR(last_sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 last_sourcing_lnum = 0;
407}
408
409/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000410 * Return TRUE if "sourcing_name" differs from "last_sourcing_name".
411 */
412 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100413other_sourcing_name(void)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000414{
415 if (sourcing_name != NULL)
416 {
417 if (last_sourcing_name != NULL)
418 return STRCMP(sourcing_name, last_sourcing_name) != 0;
419 return TRUE;
420 }
421 return FALSE;
422}
423
424/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425 * Get the message about the source, as used for an error message.
426 * Returns an allocated string with room for one more character.
427 * Returns NULL when no message is to be given.
428 */
429 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100430get_emsg_source(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431{
432 char_u *Buf, *p;
433
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000434 if (sourcing_name != NULL && other_sourcing_name())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 {
436 p = (char_u *)_("Error detected while processing %s:");
Bram Moolenaar964b3742019-05-24 18:54:09 +0200437 Buf = alloc(STRLEN(sourcing_name) + STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 if (Buf != NULL)
439 sprintf((char *)Buf, (char *)p, sourcing_name);
440 return Buf;
441 }
442 return NULL;
443}
444
445/*
446 * Get the message about the source lnum, as used for an error message.
447 * Returns an allocated string with room for one more character.
448 * Returns NULL when no message is to be given.
449 */
450 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100451get_emsg_lnum(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452{
453 char_u *Buf, *p;
454
455 /* lnum is 0 when executing a command from the command line
456 * argument, we don't want a line number then */
457 if (sourcing_name != NULL
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000458 && (other_sourcing_name() || sourcing_lnum != last_sourcing_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459 && sourcing_lnum != 0)
460 {
461 p = (char_u *)_("line %4ld:");
Bram Moolenaar964b3742019-05-24 18:54:09 +0200462 Buf = alloc(STRLEN(p) + 20);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463 if (Buf != NULL)
464 sprintf((char *)Buf, (char *)p, (long)sourcing_lnum);
465 return Buf;
466 }
467 return NULL;
468}
469
470/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000471 * Display name and line number for the source of an error.
472 * Remember the file name and line number, so that for the next error the info
473 * is only displayed if it changed.
474 */
475 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100476msg_source(int attr)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000477{
478 char_u *p;
479
480 ++no_wait_return;
481 p = get_emsg_source();
482 if (p != NULL)
483 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100484 msg_attr((char *)p, attr);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000485 vim_free(p);
486 }
487 p = get_emsg_lnum();
488 if (p != NULL)
489 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100490 msg_attr((char *)p, HL_ATTR(HLF_N));
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000491 vim_free(p);
492 last_sourcing_lnum = sourcing_lnum; /* only once for each line */
493 }
494
495 /* remember the last sourcing name printed, also when it's empty */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000496 if (sourcing_name == NULL || other_sourcing_name())
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000497 {
498 vim_free(last_sourcing_name);
499 if (sourcing_name == NULL)
500 last_sourcing_name = NULL;
501 else
502 last_sourcing_name = vim_strsave(sourcing_name);
503 }
504 --no_wait_return;
505}
506
507/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000508 * Return TRUE if not giving error messages right now:
509 * If "emsg_off" is set: no error messages at the moment.
510 * If "msg" is in 'debug': do error message but without side effects.
511 * If "emsg_skip" is set: never do error messages.
512 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +0200513 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100514emsg_not_now(void)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000515{
516 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL
517 && vim_strchr(p_debug, 't') == NULL)
518#ifdef FEAT_EVAL
519 || emsg_skip > 0
520#endif
521 )
522 return TRUE;
523 return FALSE;
524}
525
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +0100526#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100527static garray_T ignore_error_list = GA_EMPTY;
528
529 void
530ignore_error_for_testing(char_u *error)
531{
532 if (ignore_error_list.ga_itemsize == 0)
533 ga_init2(&ignore_error_list, sizeof(char_u *), 1);
534
Bram Moolenaar461a7fc2018-12-22 13:28:07 +0100535 if (STRCMP("RESET", error) == 0)
536 ga_clear_strings(&ignore_error_list);
537 else
538 ga_add_string(&ignore_error_list, error);
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100539}
540
541 static int
542ignore_error(char_u *msg)
543{
544 int i;
545
546 for (i = 0; i < ignore_error_list.ga_len; ++i)
547 if (strstr((char *)msg,
548 (char *)((char_u **)(ignore_error_list.ga_data))[i]) != NULL)
549 return TRUE;
550 return FALSE;
551}
552#endif
553
Bram Moolenaarb869c0d2016-07-20 00:10:51 +0200554#if !defined(HAVE_STRERROR) || defined(PROTO)
555/*
556 * Replacement for perror() that behaves more or less like emsg() was called.
557 * v:errmsg will be set and called_emsg will be set.
558 */
559 void
560do_perror(char *msg)
561{
562 perror(msg);
563 ++emsg_silent;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100564 emsg(msg);
Bram Moolenaarb869c0d2016-07-20 00:10:51 +0200565 --emsg_silent;
566}
567#endif
568
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000569/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100570 * emsg_core() - display an error message
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 *
572 * Rings the bell, if appropriate, and calls message() to do the real work
573 * When terminal not initialized (yet) mch_errmsg(..) is used.
574 *
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100575 * Return TRUE if wait_return not called.
576 * Note: caller must check 'emsg_not_now()' before calling this.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100578 static int
579emsg_core(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580{
581 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 char_u *p;
Bram Moolenaar958dc692016-12-01 15:34:12 +0100583 int r;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584#ifdef FEAT_EVAL
585 int ignore = FALSE;
586 int severe;
587#endif
588
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100589#ifdef FEAT_EVAL
590 /* When testing some errors are turned into a normal message. */
591 if (ignore_error(s))
Bram Moolenaarf8ab1b12017-03-01 18:30:34 +0100592 /* don't call msg() if it results in a dialog */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100593 return msg_use_printf() ? FALSE : msg((char *)s);
Bram Moolenaare0c31f62017-03-01 15:07:05 +0100594#endif
595
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 called_emsg = TRUE;
597
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598#ifdef FEAT_EVAL
Bram Moolenaare723c422017-09-06 23:40:10 +0200599 /* If "emsg_severe" is TRUE: When an error exception is to be thrown,
600 * prefer this message over previous messages for the same command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 severe = emsg_severe;
602 emsg_severe = FALSE;
603#endif
604
Bram Moolenaar57657d82006-04-21 22:12:41 +0000605 if (!emsg_off || vim_strchr(p_debug, 't') != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 {
607#ifdef FEAT_EVAL
608 /*
609 * Cause a throw of an error exception if appropriate. Don't display
610 * the error message in this case. (If no matching catch clause will
611 * be found, the message will be displayed later on.) "ignore" is set
612 * when the message should be ignored completely (used for the
613 * interrupt message).
614 */
615 if (cause_errthrow(s, severe, &ignore) == TRUE)
616 {
617 if (!ignore)
Bram Moolenaar76a63452018-11-28 20:38:37 +0100618 ++did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 return TRUE;
620 }
621
622 /* set "v:errmsg", also when using ":silent! cmd" */
623 set_vim_var_string(VV_ERRMSG, s, -1);
624#endif
625
626 /*
Bram Moolenaara7241f52008-06-24 20:39:31 +0000627 * When using ":silent! cmd" ignore error messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 * But do write it to the redirection file.
629 */
630 if (emsg_silent != 0)
631 {
Bram Moolenaar79815f12016-07-09 17:07:29 +0200632 if (emsg_noredir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 {
Bram Moolenaar79815f12016-07-09 17:07:29 +0200634 msg_start();
635 p = get_emsg_source();
636 if (p != NULL)
637 {
638 STRCAT(p, "\n");
639 redir_write(p, -1);
640 vim_free(p);
641 }
642 p = get_emsg_lnum();
643 if (p != NULL)
644 {
645 STRCAT(p, "\n");
646 redir_write(p, -1);
647 vim_free(p);
648 }
649 redir_write(s, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 }
Bram Moolenaar958dc692016-12-01 15:34:12 +0100651#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare809a4e2019-07-04 17:35:05 +0200652 ch_log(NULL, "ERROR silent: %s", (char *)s);
Bram Moolenaar958dc692016-12-01 15:34:12 +0100653#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 return TRUE;
655 }
656
Bram Moolenaar2b7bc562017-01-14 19:24:52 +0100657 ex_exitval = 1;
658
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200659 /* Reset msg_silent, an error causes messages to be switched back on.
660 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 msg_silent = 0;
662 cmd_silent = FALSE;
663
664 if (global_busy) /* break :global command */
665 ++global_busy;
666
667 if (p_eb)
668 beep_flush(); /* also includes flush_buffers() */
669 else
Bram Moolenaar6a2633b2018-10-07 23:16:36 +0200670 flush_buffers(FLUSH_MINIMAL); // flush internal buffers
Bram Moolenaar76a63452018-11-28 20:38:37 +0100671 ++did_emsg; // flag for DoOneCmd()
Bram Moolenaare723c422017-09-06 23:40:10 +0200672#ifdef FEAT_EVAL
673 did_uncaught_emsg = TRUE;
674#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 }
676
677 emsg_on_display = TRUE; /* remember there is an error message */
678 ++msg_scroll; /* don't overwrite a previous message */
Bram Moolenaar8820b482017-03-16 17:23:31 +0100679 attr = HL_ATTR(HLF_E); /* set highlight mode for error messages */
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000680 if (msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 need_wait_return = TRUE; /* needed in case emsg() is called after
682 * wait_return has reset need_wait_return
683 * and a redraw is expected because
684 * msg_scrolled is non-zero */
685
Bram Moolenaar958dc692016-12-01 15:34:12 +0100686#ifdef FEAT_JOB_CHANNEL
687 emsg_to_channel_log = TRUE;
688#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 /*
690 * Display name and line number for the source of the error.
691 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000692 msg_source(attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693
694 /*
695 * Display the error message itself.
696 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000697 msg_nowait = FALSE; /* wait for this msg */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100698 r = msg_attr((char *)s, attr);
Bram Moolenaar958dc692016-12-01 15:34:12 +0100699
700#ifdef FEAT_JOB_CHANNEL
701 emsg_to_channel_log = FALSE;
702#endif
703 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704}
705
706/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100707 * Print an error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 */
709 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100710emsg(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100712 /* Skip this if not giving error messages at the moment. */
713 if (!emsg_not_now())
714 return emsg_core((char_u *)s);
715 return TRUE; /* no error messages at the moment */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716}
717
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100718#ifndef PROTO // manual proto with __attribute__
Bram Moolenaar95f09602016-11-10 20:01:45 +0100719/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100720 * Print an error message with format string and variable arguments.
721 * Note: caller must not pass 'IObuff' as 1st argument.
Bram Moolenaar95f09602016-11-10 20:01:45 +0100722 */
723 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100724semsg(const char *s, ...)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100725{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100726 /* Skip this if not giving error messages at the moment. */
727 if (!emsg_not_now())
728 {
729 va_list ap;
Bram Moolenaar95f09602016-11-10 20:01:45 +0100730
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100731 va_start(ap, s);
732 vim_vsnprintf((char *)IObuff, IOSIZE, s, ap);
733 va_end(ap);
734 return emsg_core(IObuff);
735 }
736 return TRUE; /* no error messages at the moment */
Bram Moolenaar95f09602016-11-10 20:01:45 +0100737}
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100738#endif
Bram Moolenaar95f09602016-11-10 20:01:45 +0100739
740/*
741 * Same as emsg(...), but abort on error when ABORT_ON_INTERNAL_ERROR is
742 * defined. It is used for internal errors only, so that they can be
743 * detected when fuzzing vim.
744 */
745 void
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100746iemsg(char *s)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100747{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100748 if (!emsg_not_now())
749 emsg_core((char_u *)s);
Bram Moolenaar95f09602016-11-10 20:01:45 +0100750#ifdef ABORT_ON_INTERNAL_ERROR
751 abort();
752#endif
753}
754
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100755#ifndef PROTO // manual proto with __attribute__
Bram Moolenaar95f09602016-11-10 20:01:45 +0100756/*
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100757 * Same as semsg(...) but abort on error when ABORT_ON_INTERNAL_ERROR is
Bram Moolenaar95f09602016-11-10 20:01:45 +0100758 * defined. It is used for internal errors only, so that they can be
759 * detected when fuzzing vim.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100760 * Note: caller must not pass 'IObuff' as 1st argument.
Bram Moolenaar95f09602016-11-10 20:01:45 +0100761 */
762 void
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100763siemsg(const char *s, ...)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100764{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100765 if (!emsg_not_now())
766 {
767 va_list ap;
768
769 va_start(ap, s);
770 vim_vsnprintf((char *)IObuff, IOSIZE, s, ap);
771 va_end(ap);
772 emsg_core(IObuff);
773 }
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100774# ifdef ABORT_ON_INTERNAL_ERROR
Bram Moolenaar95f09602016-11-10 20:01:45 +0100775 abort();
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100776# endif
Bram Moolenaar95f09602016-11-10 20:01:45 +0100777}
Bram Moolenaar0d8562a2019-02-19 21:34:05 +0100778#endif
Bram Moolenaar95f09602016-11-10 20:01:45 +0100779
780/*
781 * Give an "Internal error" message.
782 */
783 void
784internal_error(char *where)
785{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100786 siemsg(_(e_intern2), where);
Bram Moolenaar95f09602016-11-10 20:01:45 +0100787}
788
Bram Moolenaarea424162005-06-16 21:51:00 +0000789/* emsg3() and emsgn() are in misc2.c to avoid warnings for the prototypes. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790
Bram Moolenaardf177f62005-02-22 08:39:57 +0000791 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100792emsg_invreg(int name)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000793{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100794 semsg(_("E354: Invalid register name: '%s'"), transchar(name));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000795}
796
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797/*
798 * Like msg(), but truncate to a single line if p_shm contains 't', or when
799 * "force" is TRUE. This truncates in another way as for normal messages.
800 * Careful: The string may be changed by msg_may_trunc()!
801 * Returns a pointer to the printed message, if wait_return() not called.
802 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100803 char *
804msg_trunc_attr(char *s, int force, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805{
806 int n;
Bram Moolenaar32526b32019-01-19 17:43:09 +0100807 char *ts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808
809 /* Add message to history before truncating */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100810 add_msg_hist((char_u *)s, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
Bram Moolenaar32526b32019-01-19 17:43:09 +0100812 ts = (char *)msg_may_trunc(force, (char_u *)s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813
814 msg_hist_off = TRUE;
Bram Moolenaar32526b32019-01-19 17:43:09 +0100815 n = msg_attr(ts, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 msg_hist_off = FALSE;
817
818 if (n)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100819 return ts;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 return NULL;
821}
822
823/*
824 * Check if message "s" should be truncated at the start (for filenames).
825 * Return a pointer to where the truncated message starts.
826 * Note: May change the message by replacing a character with '<'.
827 */
828 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100829msg_may_trunc(int force, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830{
831 int n;
832 int room;
833
834 room = (int)(Rows - cmdline_row - 1) * Columns + sc_col - 1;
835 if ((force || (shortmess(SHM_TRUNC) && !exmode_active))
836 && (n = (int)STRLEN(s) - room) > 0)
837 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 if (has_mbyte)
839 {
840 int size = vim_strsize(s);
841
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +0000842 /* There may be room anyway when there are multibyte chars. */
843 if (size <= room)
844 return s;
845
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 for (n = 0; size >= room; )
847 {
848 size -= (*mb_ptr2cells)(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000849 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 }
851 --n;
852 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 s += n;
854 *s = '<';
855 }
856 return s;
857}
858
859 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100860add_msg_hist(
861 char_u *s,
862 int len, /* -1 for undetermined length */
863 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864{
865 struct msg_hist *p;
866
867 if (msg_hist_off || msg_silent != 0)
868 return;
869
870 /* Don't let the message history get too big */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000871 while (msg_hist_len > MAX_MSG_HIST_LEN)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000872 (void)delete_first_msg();
873
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 /* allocate an entry and add the message at the end of the history */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200875 p = ALLOC_ONE(struct msg_hist);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 if (p != NULL)
877 {
878 if (len < 0)
879 len = (int)STRLEN(s);
880 /* remove leading and trailing newlines */
881 while (len > 0 && *s == '\n')
882 {
883 ++s;
884 --len;
885 }
886 while (len > 0 && s[len - 1] == '\n')
887 --len;
888 p->msg = vim_strnsave(s, len);
889 p->next = NULL;
890 p->attr = attr;
891 if (last_msg_hist != NULL)
892 last_msg_hist->next = p;
893 last_msg_hist = p;
894 if (first_msg_hist == NULL)
895 first_msg_hist = last_msg_hist;
896 ++msg_hist_len;
897 }
898}
899
900/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000901 * Delete the first (oldest) message from the history.
902 * Returns FAIL if there are no messages.
903 */
904 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100905delete_first_msg(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000906{
907 struct msg_hist *p;
908
909 if (msg_hist_len <= 0)
910 return FAIL;
911 p = first_msg_hist;
912 first_msg_hist = p->next;
Bram Moolenaara7241f52008-06-24 20:39:31 +0000913 if (first_msg_hist == NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200914 last_msg_hist = NULL; /* history is empty */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000915 vim_free(p->msg);
916 vim_free(p);
917 --msg_hist_len;
918 return OK;
919}
920
921/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 * ":messages" command.
923 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 void
Bram Moolenaar52196b22016-04-14 17:52:41 +0200925ex_messages(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926{
927 struct msg_hist *p;
928 char_u *s;
Bram Moolenaar451f8492016-04-14 17:16:22 +0200929 int c = 0;
930
931 if (STRCMP(eap->arg, "clear") == 0)
932 {
933 int keep = eap->addr_count == 0 ? 0 : eap->line2;
934
935 while (msg_hist_len > keep)
936 (void)delete_first_msg();
937 return;
938 }
939
940 if (*eap->arg != NUL)
941 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100942 emsg(_(e_invarg));
Bram Moolenaar451f8492016-04-14 17:16:22 +0200943 return;
944 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945
946 msg_hist_off = TRUE;
947
Bram Moolenaar451f8492016-04-14 17:16:22 +0200948 p = first_msg_hist;
Bram Moolenaar451f8492016-04-14 17:16:22 +0200949 if (eap->addr_count != 0)
950 {
951 /* Count total messages */
952 for (; p != NULL && !got_int; p = p->next)
953 c++;
954
955 c -= eap->line2;
956
957 /* Skip without number of messages specified */
958 for (p = first_msg_hist; p != NULL && !got_int && c > 0;
959 p = p->next, c--);
960 }
961
Bram Moolenaarbea1ede2016-04-14 19:44:36 +0200962 if (p == first_msg_hist)
963 {
964 s = mch_getenv((char_u *)"LANG");
965 if (s != NULL && *s != NUL)
Bram Moolenaar0c183192018-06-28 14:54:43 +0200966 // The next comment is extracted by xgettext and put in po file for
967 // translators to read.
Bram Moolenaar32526b32019-01-19 17:43:09 +0100968 msg_attr(
Bram Moolenaar0c183192018-06-28 14:54:43 +0200969 // Translator: Please replace the name and email address
970 // with the appropriate text for your translation.
Bram Moolenaarbea1ede2016-04-14 19:44:36 +0200971 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
Bram Moolenaar8820b482017-03-16 17:23:31 +0100972 HL_ATTR(HLF_T));
Bram Moolenaarbea1ede2016-04-14 19:44:36 +0200973 }
974
Bram Moolenaar451f8492016-04-14 17:16:22 +0200975 /* Display what was not skipped. */
976 for (; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 if (p->msg != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100978 msg_attr((char *)p->msg, p->attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979
980 msg_hist_off = FALSE;
981}
982
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000983#if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984/*
985 * Call this after prompting the user. This will avoid a hit-return message
986 * and a delay.
987 */
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000988 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100989msg_end_prompt(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990{
991 need_wait_return = FALSE;
992 emsg_on_display = FALSE;
993 cmdline_row = msg_row;
994 msg_col = 0;
995 msg_clr_eos();
Bram Moolenaar5d6f75e2011-12-30 14:14:29 +0100996 lines_left = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997}
998#endif
999
1000/*
Bram Moolenaar32526b32019-01-19 17:43:09 +01001001 * Wait for the user to hit a key (normally Enter).
1002 * If "redraw" is TRUE, clear and redraw the screen.
1003 * If "redraw" is FALSE, just redraw the screen.
1004 * If "redraw" is -1, don't redraw at all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 */
1006 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001007wait_return(int redraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008{
1009 int c;
1010 int oldState;
1011 int tmpState;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 int had_got_int;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001013 int save_reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001014 FILE *save_scriptout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015
1016 if (redraw == TRUE)
1017 must_redraw = CLEAR;
1018
1019 /* If using ":silent cmd", don't wait for a return. Also don't set
1020 * need_wait_return to do it later. */
1021 if (msg_silent != 0)
1022 return;
1023
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01001024 /*
1025 * When inside vgetc(), we can't wait for a typed character at all.
1026 * With the global command (and some others) we only need one return at
1027 * the end. Adjust cmdline_row to avoid the next message overwriting the
1028 * last one.
1029 */
Bram Moolenaar5555acc2006-04-07 21:33:12 +00001030 if (vgetc_busy > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 return;
Bram Moolenaarfd30cd42011-03-22 13:07:26 +01001032 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 if (no_wait_return)
1034 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 if (!exmode_active)
1036 cmdline_row = msg_row;
1037 return;
1038 }
1039
1040 redir_off = TRUE; /* don't redirect this message */
1041 oldState = State;
1042 if (quit_more)
1043 {
1044 c = CAR; /* just pretend CR was hit */
1045 quit_more = FALSE;
1046 got_int = FALSE;
1047 }
1048 else if (exmode_active)
1049 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001050 msg_puts(" "); /* make sure the cursor is on the right line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 c = CAR; /* no need for a return in ex mode */
1052 got_int = FALSE;
1053 }
1054 else
1055 {
1056 /* Make sure the hit-return prompt is on screen when 'guioptions' was
1057 * just changed. */
1058 screenalloc(FALSE);
1059
1060 State = HITRETURN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062#ifdef USE_ON_FLY_SCROLL
1063 dont_scroll = TRUE; /* disallow scrolling here */
1064#endif
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01001065 cmdline_row = msg_row;
1066
Bram Moolenaarec38d692013-04-24 15:12:32 +02001067 /* Avoid the sequence that the user types ":" at the hit-return prompt
1068 * to start an Ex command, but the file-changed dialog gets in the
1069 * way. */
1070 if (need_check_timestamps)
1071 check_timestamps(FALSE);
1072
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 hit_return_msg();
1074
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 do
1076 {
1077 /* Remember "got_int", if it is set vgetc() probably returns a
1078 * CTRL-C, but we need to loop then. */
1079 had_got_int = got_int;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001080
1081 /* Don't do mappings here, we put the character back in the
1082 * typeahead buffer. */
1083 ++no_mapping;
1084 ++allow_keys;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001085
1086 /* Temporarily disable Recording. If Recording is active, the
1087 * character will be recorded later, since it will be added to the
1088 * typebuf after the loop */
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001089 save_reg_recording = reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001090 save_scriptout = scriptout;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001091 reg_recording = 0;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001092 scriptout = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 c = safe_vgetc();
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00001094 if (had_got_int && !global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095 got_int = FALSE;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001096 --no_mapping;
1097 --allow_keys;
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001098 reg_recording = save_reg_recording;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +01001099 scriptout = save_scriptout;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001100
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101#ifdef FEAT_CLIPBOARD
1102 /* Strange way to allow copying (yanking) a modeless selection at
1103 * the hit-enter prompt. Use CTRL-Y, because the same is used in
1104 * Cmdline-mode and it's harmless when there is no selection. */
1105 if (c == Ctrl_Y && clip_star.state == SELECT_DONE)
1106 {
1107 clip_copy_modeless_selection(TRUE);
1108 c = K_IGNORE;
1109 }
1110#endif
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00001111
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001112 /*
1113 * Allow scrolling back in the messages.
1114 * Also accept scroll-down commands when messages fill the screen,
1115 * to avoid that typing one 'j' too many makes the messages
1116 * disappear.
1117 */
1118 if (p_more && !p_cp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001119 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001120 if (c == 'b' || c == 'k' || c == 'u' || c == 'g'
1121 || c == K_UP || c == K_PAGEUP)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001122 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001123 if (msg_scrolled > Rows)
1124 /* scroll back to show older messages */
1125 do_more_prompt(c);
1126 else
1127 {
1128 msg_didout = FALSE;
1129 c = K_IGNORE;
1130 msg_col =
1131#ifdef FEAT_RIGHTLEFT
1132 cmdmsg_rl ? Columns - 1 :
1133#endif
1134 0;
1135 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001136 if (quit_more)
1137 {
1138 c = CAR; /* just pretend CR was hit */
1139 quit_more = FALSE;
1140 got_int = FALSE;
1141 }
Bram Moolenaarb0912962013-08-09 20:38:26 +02001142 else if (c != K_IGNORE)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001143 {
1144 c = K_IGNORE;
1145 hit_return_msg();
1146 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001147 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001148 else if (msg_scrolled > Rows - 2
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001149 && (c == 'j' || c == 'd' || c == 'f'
1150 || c == K_DOWN || c == K_PAGEDOWN))
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001151 c = K_IGNORE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 } while ((had_got_int && c == Ctrl_C)
1154 || c == K_IGNORE
1155#ifdef FEAT_GUI
1156 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR
1157#endif
1158#ifdef FEAT_MOUSE
1159 || c == K_LEFTDRAG || c == K_LEFTRELEASE
1160 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE
1161 || c == K_RIGHTDRAG || c == K_RIGHTRELEASE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001162 || c == K_MOUSELEFT || c == K_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 || c == K_MOUSEDOWN || c == K_MOUSEUP
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001164 || c == K_MOUSEMOVE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 || (!mouse_has(MOUSE_RETURN)
1166 && mouse_row < msg_row
1167 && (c == K_LEFTMOUSE
1168 || c == K_MIDDLEMOUSE
1169 || c == K_RIGHTMOUSE
1170 || c == K_X1MOUSE
1171 || c == K_X2MOUSE))
1172#endif
1173 );
1174 ui_breakcheck();
1175#ifdef FEAT_MOUSE
1176 /*
1177 * Avoid that the mouse-up event causes visual mode to start.
1178 */
1179 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE
1180 || c == K_X1MOUSE || c == K_X2MOUSE)
1181 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0);
1182 else
1183#endif
1184 if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C)
1185 {
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001186 /* Put the character back in the typeahead buffer. Don't use the
1187 * stuff buffer, because lmaps wouldn't work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001188 ins_char_typebuf(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 do_redraw = TRUE; /* need a redraw even though there is
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001190 typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 }
1193 redir_off = FALSE;
1194
1195 /*
1196 * If the user hits ':', '?' or '/' we get a command line from the next
1197 * line.
1198 */
1199 if (c == ':' || c == '?' || c == '/')
1200 {
1201 if (!exmode_active)
1202 cmdline_row = msg_row;
1203 skip_redraw = TRUE; /* skip redraw once */
1204 do_redraw = FALSE;
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02001205#ifdef FEAT_TERMINAL
1206 skip_term_loop = TRUE;
1207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 }
1209
1210 /*
1211 * If the window size changed set_shellsize() will redraw the screen.
1212 * Otherwise the screen is only redrawn if 'redraw' is set and no ':'
1213 * typed.
1214 */
1215 tmpState = State;
1216 State = oldState; /* restore State before set_shellsize */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 msg_check();
1219
1220#if defined(UNIX) || defined(VMS)
1221 /*
1222 * When switching screens, we need to output an extra newline on exit.
1223 */
1224 if (swapping_screen() && !termcap_active)
1225 newline_on_exit = TRUE;
1226#endif
1227
1228 need_wait_return = FALSE;
1229 did_wait_return = TRUE;
1230 emsg_on_display = FALSE; /* can delete error message now */
1231 lines_left = -1; /* reset lines_left at next msg_start() */
1232 reset_last_sourcing();
1233 if (keep_msg != NULL && vim_strsize(keep_msg) >=
1234 (Rows - cmdline_row - 1) * Columns + sc_col)
Bram Moolenaard23a8232018-02-10 18:45:26 +01001235 VIM_CLEAR(keep_msg); /* don't redisplay message, it's too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236
1237 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */
1238 {
1239 starttermcap(); /* start termcap before redrawing */
1240 shell_resized();
1241 }
1242 else if (!skip_redraw
1243 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1)))
1244 {
1245 starttermcap(); /* start termcap before redrawing */
1246 redraw_later(VALID);
1247 }
1248}
1249
1250/*
1251 * Write the hit-return prompt.
1252 */
1253 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001254hit_return_msg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001256 int save_p_more = p_more;
1257
1258 p_more = FALSE; /* don't want see this message when scrolling back */
1259 if (msg_didout) /* start on a new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 msg_putchar('\n');
1261 if (got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001262 msg_puts(_("Interrupt: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263
Bram Moolenaar32526b32019-01-19 17:43:09 +01001264 msg_puts_attr(_("Press ENTER or type command to continue"), HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 if (!msg_use_printf())
1266 msg_clr_eos();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001267 p_more = save_p_more;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268}
1269
1270/*
1271 * Set "keep_msg" to "s". Free the old value and check for NULL pointer.
1272 */
1273 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001274set_keep_msg(char_u *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275{
1276 vim_free(keep_msg);
1277 if (s != NULL && msg_silent == 0)
1278 keep_msg = vim_strsave(s);
1279 else
1280 keep_msg = NULL;
Bram Moolenaaraab21c32005-01-25 21:46:35 +00001281 keep_msg_more = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001282 keep_msg_attr = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283}
1284
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001285#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1286/*
1287 * If there currently is a message being displayed, set "keep_msg" to it, so
1288 * that it will be displayed again after redraw.
1289 */
1290 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001291set_keep_msg_from_hist(void)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001292{
1293 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0
1294 && (State & NORMAL))
1295 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr);
1296}
1297#endif
1298
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299/*
1300 * Prepare for outputting characters in the command line.
1301 */
1302 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001303msg_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304{
1305 int did_return = FALSE;
1306
Bram Moolenaare4ce65d2010-08-04 20:12:32 +02001307 if (!msg_silent)
Bram Moolenaard23a8232018-02-10 18:45:26 +01001308 VIM_CLEAR(keep_msg);
Bram Moolenaara7241f52008-06-24 20:39:31 +00001309
1310#ifdef FEAT_EVAL
1311 if (need_clr_eos)
1312 {
1313 /* Halfway an ":echo" command and getting an (error) message: clear
1314 * any text from the command. */
1315 need_clr_eos = FALSE;
1316 msg_clr_eos();
1317 }
1318#endif
1319
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 if (!msg_scroll && full_screen) /* overwrite last message */
1321 {
1322 msg_row = cmdline_row;
1323 msg_col =
1324#ifdef FEAT_RIGHTLEFT
1325 cmdmsg_rl ? Columns - 1 :
1326#endif
1327 0;
1328 }
1329 else if (msg_didout) /* start message on next line */
1330 {
1331 msg_putchar('\n');
1332 did_return = TRUE;
1333 if (exmode_active != EXMODE_NORMAL)
1334 cmdline_row = msg_row;
1335 }
1336 if (!msg_didany || lines_left < 0)
1337 msg_starthere();
1338 if (msg_silent == 0)
1339 {
1340 msg_didout = FALSE; /* no output on current line yet */
1341 cursor_off();
1342 }
1343
1344 /* when redirecting, may need to start a new line. */
1345 if (!did_return)
1346 redir_write((char_u *)"\n", -1);
1347}
1348
1349/*
1350 * Note that the current msg position is where messages start.
1351 */
1352 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001353msg_starthere(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354{
1355 lines_left = cmdline_row;
1356 msg_didany = FALSE;
1357}
1358
1359 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001360msg_putchar(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361{
1362 msg_putchar_attr(c, 0);
1363}
1364
1365 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001366msg_putchar_attr(int c, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367{
Bram Moolenaar63c0ccd2019-01-19 21:06:58 +01001368 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369
1370 if (IS_SPECIAL(c))
1371 {
1372 buf[0] = K_SPECIAL;
1373 buf[1] = K_SECOND(c);
1374 buf[2] = K_THIRD(c);
1375 buf[3] = NUL;
1376 }
1377 else
Bram Moolenaar63c0ccd2019-01-19 21:06:58 +01001378 buf[(*mb_char2bytes)(c, buf)] = NUL;
Bram Moolenaar63c0ccd2019-01-19 21:06:58 +01001379 msg_puts_attr((char *)buf, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380}
1381
1382 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001383msg_outnum(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384{
Bram Moolenaar32526b32019-01-19 17:43:09 +01001385 char buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386
Bram Moolenaar32526b32019-01-19 17:43:09 +01001387 sprintf(buf, "%ld", n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 msg_puts(buf);
1389}
1390
1391 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001392msg_home_replace(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393{
1394 msg_home_replace_attr(fname, 0);
1395}
1396
1397#if defined(FEAT_FIND_ID) || defined(PROTO)
1398 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001399msg_home_replace_hl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400{
Bram Moolenaar8820b482017-03-16 17:23:31 +01001401 msg_home_replace_attr(fname, HL_ATTR(HLF_D));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402}
1403#endif
1404
1405 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001406msg_home_replace_attr(char_u *fname, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407{
1408 char_u *name;
1409
1410 name = home_replace_save(NULL, fname);
1411 if (name != NULL)
1412 msg_outtrans_attr(name, attr);
1413 vim_free(name);
1414}
1415
1416/*
1417 * Output 'len' characters in 'str' (including NULs) with translation
1418 * if 'len' is -1, output upto a NUL character.
1419 * Use attributes 'attr'.
1420 * Return the number of characters it takes on the screen.
1421 */
1422 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001423msg_outtrans(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424{
1425 return msg_outtrans_attr(str, 0);
1426}
1427
1428 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001429msg_outtrans_attr(char_u *str, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430{
1431 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr);
1432}
1433
1434 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001435msg_outtrans_len(char_u *str, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436{
1437 return msg_outtrans_len_attr(str, len, 0);
1438}
1439
1440/*
1441 * Output one character at "p". Return pointer to the next character.
1442 * Handles multi-byte characters.
1443 */
1444 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001445msg_outtrans_one(char_u *p, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 int l;
1448
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001449 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450 {
1451 msg_outtrans_len_attr(p, l, attr);
1452 return p + l;
1453 }
Bram Moolenaar32526b32019-01-19 17:43:09 +01001454 msg_puts_attr((char *)transchar_byte(*p), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 return p + 1;
1456}
1457
1458 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001459msg_outtrans_len_attr(char_u *msgstr, int len, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460{
1461 int retval = 0;
1462 char_u *str = msgstr;
1463 char_u *plain_start = msgstr;
1464 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 int mb_l;
1466 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467
1468 /* if MSG_HIST flag set, add message to history */
1469 if (attr & MSG_HIST)
1470 {
1471 add_msg_hist(str, len, attr);
1472 attr &= ~MSG_HIST;
1473 }
1474
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 /* If the string starts with a composing character first draw a space on
1476 * which the composing char can be drawn. */
1477 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr)))
Bram Moolenaar32526b32019-01-19 17:43:09 +01001478 msg_puts_attr(" ", attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479
1480 /*
1481 * Go over the string. Special characters are translated and printed.
1482 * Normal characters are printed several at a time.
1483 */
1484 while (--len >= 0)
1485 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 if (enc_utf8)
1487 /* Don't include composing chars after the end. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001488 mb_l = utfc_ptr2len_len(str, len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001490 mb_l = (*mb_ptr2len)(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 else
1492 mb_l = 1;
1493 if (has_mbyte && mb_l > 1)
1494 {
1495 c = (*mb_ptr2char)(str);
1496 if (vim_isprintc(c))
1497 /* printable multi-byte char: count the cells. */
1498 retval += (*mb_ptr2cells)(str);
1499 else
1500 {
1501 /* unprintable multi-byte char: print the printable chars so
1502 * far and the translation of the unprintable char. */
1503 if (str > plain_start)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001504 msg_puts_attr_len((char *)plain_start,
1505 (int)(str - plain_start), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 plain_start = str + mb_l;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001507 msg_puts_attr((char *)transchar(c),
1508 attr == 0 ? HL_ATTR(HLF_8) : attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 retval += char2cells(c);
1510 }
1511 len -= mb_l - 1;
1512 str += mb_l;
1513 }
1514 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 {
1516 s = transchar_byte(*str);
1517 if (s[1] != NUL)
1518 {
1519 /* unprintable char: print the printable chars so far and the
1520 * translation of the unprintable char. */
1521 if (str > plain_start)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001522 msg_puts_attr_len((char *)plain_start,
1523 (int)(str - plain_start), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 plain_start = str + 1;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001525 msg_puts_attr((char *)s, attr == 0 ? HL_ATTR(HLF_8) : attr);
Bram Moolenaarc236c162008-07-13 17:41:49 +00001526 retval += (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 }
Bram Moolenaarb3c722a2008-07-06 17:16:02 +00001528 else
1529 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 ++str;
1531 }
1532 }
1533
1534 if (str > plain_start)
1535 /* print the printable chars at the end */
Bram Moolenaar32526b32019-01-19 17:43:09 +01001536 msg_puts_attr_len((char *)plain_start, (int)(str - plain_start), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537
1538 return retval;
1539}
1540
1541#if defined(FEAT_QUICKFIX) || defined(PROTO)
1542 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001543msg_make(char_u *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544{
1545 int i;
1546 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB";
1547
1548 arg = skipwhite(arg);
1549 for (i = 5; *arg && i >= 0; --i)
1550 if (*arg++ != str[i])
1551 break;
1552 if (i < 0)
1553 {
1554 msg_putchar('\n');
1555 for (i = 0; rs[i]; ++i)
1556 msg_putchar(rs[i] - 3);
1557 }
1558}
1559#endif
1560
1561/*
1562 * Output the string 'str' upto a NUL character.
1563 * Return the number of characters it takes on the screen.
1564 *
1565 * If K_SPECIAL is encountered, then it is taken in conjunction with the
1566 * following character and shown as <F1>, <S-Up> etc. Any other character
1567 * which is not printable shown in <> form.
1568 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>.
1569 * If a character is displayed in one of these special ways, is also
1570 * highlighted (its highlight name is '8' in the p_hl variable).
1571 * Otherwise characters are not highlighted.
1572 * This function is used to show mappings, where we want to see how to type
1573 * the character/string -- webb
1574 */
1575 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001576msg_outtrans_special(
1577 char_u *strstart,
Bram Moolenaar725310d2019-04-24 23:08:23 +02001578 int from, // TRUE for lhs of a mapping
1579 int maxlen) // screen columns, 0 for unlimeted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580{
1581 char_u *str = strstart;
1582 int retval = 0;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001583 char *text;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 int attr;
1585 int len;
1586
Bram Moolenaar8820b482017-03-16 17:23:31 +01001587 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 while (*str != NUL)
1589 {
1590 /* Leading and trailing spaces need to be displayed in <> form. */
1591 if ((str == strstart || str[1] == NUL) && *str == ' ')
1592 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001593 text = "<Space>";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 ++str;
1595 }
1596 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001597 text = (char *)str2special(&str, from);
1598 len = vim_strsize((char_u *)text);
Bram Moolenaar725310d2019-04-24 23:08:23 +02001599 if (maxlen > 0 && retval + len >= maxlen)
1600 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 /* Highlight special keys */
Bram Moolenaar32526b32019-01-19 17:43:09 +01001602 msg_puts_attr(text, len > 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001603 && (*mb_ptr2len)((char_u *)text) <= 1 ? attr : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 retval += len;
1605 }
1606 return retval;
1607}
1608
Bram Moolenaarbd743252010-10-20 21:23:33 +02001609#if defined(FEAT_EVAL) || defined(PROTO)
1610/*
1611 * Return the lhs or rhs of a mapping, with the key codes turned into printable
1612 * strings, in an allocated string.
1613 */
1614 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001615str2special_save(
1616 char_u *str,
1617 int is_lhs) /* TRUE for lhs, FALSE for rhs */
Bram Moolenaarbd743252010-10-20 21:23:33 +02001618{
1619 garray_T ga;
1620 char_u *p = str;
1621
1622 ga_init2(&ga, 1, 40);
1623 while (*p != NUL)
1624 ga_concat(&ga, str2special(&p, is_lhs));
1625 ga_append(&ga, NUL);
1626 return (char_u *)ga.ga_data;
1627}
1628#endif
1629
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630/*
1631 * Return the printable string for the key codes at "*sp".
1632 * Used for translating the lhs or rhs of a mapping to printable chars.
1633 * Advances "sp" to the next code.
1634 */
1635 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001636str2special(
1637 char_u **sp,
1638 int from) /* TRUE for lhs of mapping */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639{
1640 int c;
1641 static char_u buf[7];
1642 char_u *str = *sp;
1643 int modifiers = 0;
1644 int special = FALSE;
1645
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 if (has_mbyte)
1647 {
1648 char_u *p;
1649
1650 /* Try to un-escape a multi-byte character. Return the un-escaped
1651 * string if it is a multi-byte character. */
1652 p = mb_unescape(sp);
1653 if (p != NULL)
1654 return p;
1655 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656
1657 c = *str;
1658 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1659 {
1660 if (str[1] == KS_MODIFIER)
1661 {
1662 modifiers = str[2];
1663 str += 3;
1664 c = *str;
1665 }
1666 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1667 {
1668 c = TO_SPECIAL(str[1], str[2]);
1669 str += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 }
1671 if (IS_SPECIAL(c) || modifiers) /* special key */
1672 special = TRUE;
1673 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001675 if (has_mbyte && !IS_SPECIAL(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 {
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001677 int len = (*mb_ptr2len)(str);
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001678
1679 /* For multi-byte characters check for an illegal byte. */
1680 if (has_mbyte && MB_BYTE2LEN(*str) > len)
1681 {
1682 transchar_nonprint(buf, c);
1683 *sp = str + 1;
1684 return buf;
1685 }
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001686 /* Since 'special' is TRUE the multi-byte character 'c' will be
1687 * processed by get_special_key_name() */
1688 c = (*mb_ptr2char)(str);
1689 *sp = str + len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 }
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001691 else
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001692 *sp = str + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693
1694 /* Make unprintable characters in <> form, also <M-Space> and <Tab>.
1695 * Use <Space> only for lhs of a mapping. */
1696 if (special || char2cells(c) > 1 || (from && c == ' '))
1697 return get_special_key_name(c, modifiers);
1698 buf[0] = c;
1699 buf[1] = NUL;
1700 return buf;
1701}
1702
1703/*
1704 * Translate a key sequence into special key names.
1705 */
1706 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001707str2specialbuf(char_u *sp, char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708{
1709 char_u *s;
1710
1711 *buf = NUL;
1712 while (*sp)
1713 {
1714 s = str2special(&sp, FALSE);
1715 if ((int)(STRLEN(s) + STRLEN(buf)) < len)
1716 STRCAT(buf, s);
1717 }
1718}
1719
1720/*
1721 * print line for :print or :list command
1722 */
1723 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001724msg_prt_line(char_u *s, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725{
1726 int c;
1727 int col = 0;
1728 int n_extra = 0;
1729 int c_extra = 0;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001730 int c_final = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 char_u *p_extra = NULL; /* init to make SASC shut up */
1732 int n;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001733 int attr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 char_u *trail = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 int l;
1736 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737
Bram Moolenaardf177f62005-02-22 08:39:57 +00001738 if (curwin->w_p_list)
1739 list = TRUE;
1740
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 /* find start of trailing whitespace */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001742 if (list && lcs_trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 {
1744 trail = s + STRLEN(s);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001745 while (trail > s && VIM_ISWHITE(trail[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 --trail;
1747 }
1748
1749 /* output a space for an empty line, otherwise the line will be
1750 * overwritten */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001751 if (*s == NUL && !(list && lcs_eol != NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 msg_putchar(' ');
1753
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001754 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 {
Bram Moolenaar56da7972007-01-16 14:46:32 +00001756 if (n_extra > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 {
1758 --n_extra;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001759 if (n_extra == 0 && c_final)
1760 c = c_final;
1761 else if (c_extra)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 c = c_extra;
1763 else
1764 c = *p_extra++;
1765 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001766 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 {
1768 col += (*mb_ptr2cells)(s);
Bram Moolenaar73284b92015-05-04 17:28:22 +02001769 if (lcs_nbsp != NUL && list
1770 && (mb_ptr2char(s) == 160
1771 || mb_ptr2char(s) == 0x202f))
Bram Moolenaaracf17282011-02-01 17:12:25 +01001772 {
1773 mb_char2bytes(lcs_nbsp, buf);
1774 buf[(*mb_ptr2len)(buf)] = NUL;
1775 }
1776 else
1777 {
1778 mch_memmove(buf, s, (size_t)l);
1779 buf[l] = NUL;
1780 }
Bram Moolenaar32526b32019-01-19 17:43:09 +01001781 msg_puts((char *)buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 s += l;
1783 continue;
1784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 else
1786 {
1787 attr = 0;
1788 c = *s++;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001789 if (c == TAB && (!list || lcs_tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 {
1791 /* tab amount depends on current column */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001792#ifdef FEAT_VARTABS
1793 n_extra = tabstop_padding(col, curbuf->b_p_ts,
1794 curbuf->b_p_vts_array) - 1;
1795#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02001797#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00001798 if (!list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 {
1800 c = ' ';
1801 c_extra = ' ';
Bram Moolenaar83a52172019-01-16 22:41:54 +01001802 c_final = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 }
1804 else
1805 {
Bram Moolenaar83a52172019-01-16 22:41:54 +01001806 c = (n_extra == 0 && lcs_tab3) ? lcs_tab3 : lcs_tab1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 c_extra = lcs_tab2;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001808 c_final = lcs_tab3;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001809 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 }
1811 }
Bram Moolenaaracf17282011-02-01 17:12:25 +01001812 else if (c == 160 && list && lcs_nbsp != NUL)
1813 {
1814 c = lcs_nbsp;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001815 attr = HL_ATTR(HLF_8);
Bram Moolenaaracf17282011-02-01 17:12:25 +01001816 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00001817 else if (c == NUL && list && lcs_eol != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 {
1819 p_extra = (char_u *)"";
1820 c_extra = NUL;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001821 c_final = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 n_extra = 1;
1823 c = lcs_eol;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001824 attr = HL_ATTR(HLF_AT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 --s;
1826 }
1827 else if (c != NUL && (n = byte2cells(c)) > 1)
1828 {
1829 n_extra = n - 1;
1830 p_extra = transchar_byte(c);
1831 c_extra = NUL;
Bram Moolenaar83a52172019-01-16 22:41:54 +01001832 c_final = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 c = *p_extra++;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001834 /* Use special coloring to be able to distinguish <hex> from
1835 * the same in plain text. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001836 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 }
1838 else if (c == ' ' && trail != NULL && s > trail)
1839 {
1840 c = lcs_trail;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001841 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 }
Bram Moolenaar1510f992015-04-22 22:18:22 +02001843 else if (c == ' ' && list && lcs_space != NUL)
1844 {
1845 c = lcs_space;
Bram Moolenaar8820b482017-03-16 17:23:31 +01001846 attr = HL_ATTR(HLF_8);
Bram Moolenaar1510f992015-04-22 22:18:22 +02001847 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 }
1849
1850 if (c == NUL)
1851 break;
1852
1853 msg_putchar_attr(c, attr);
1854 col++;
1855 }
1856 msg_clr_eos();
1857}
1858
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859/*
1860 * Use screen_puts() to output one multi-byte character.
1861 * Return the pointer "s" advanced to the next character.
1862 */
1863 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001864screen_puts_mbyte(char_u *s, int l, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865{
1866 int cw;
1867
1868 msg_didout = TRUE; /* remember that line is not empty */
1869 cw = (*mb_ptr2cells)(s);
1870 if (cw > 1 && (
1871#ifdef FEAT_RIGHTLEFT
1872 cmdmsg_rl ? msg_col <= 1 :
1873#endif
1874 msg_col == Columns - 1))
1875 {
1876 /* Doesn't fit, print a highlighted '>' to fill it up. */
Bram Moolenaar8820b482017-03-16 17:23:31 +01001877 msg_screen_putchar('>', HL_ATTR(HLF_AT));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 return s;
1879 }
1880
1881 screen_puts_len(s, l, msg_row, msg_col, attr);
1882#ifdef FEAT_RIGHTLEFT
1883 if (cmdmsg_rl)
1884 {
1885 msg_col -= cw;
1886 if (msg_col == 0)
1887 {
1888 msg_col = Columns;
1889 ++msg_row;
1890 }
1891 }
1892 else
1893#endif
1894 {
1895 msg_col += cw;
1896 if (msg_col >= Columns)
1897 {
1898 msg_col = 0;
1899 ++msg_row;
1900 }
1901 }
1902 return s + l;
1903}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904
1905/*
1906 * Output a string to the screen at position msg_row, msg_col.
1907 * Update msg_row and msg_col for the next message.
1908 */
1909 void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001910msg_puts(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911{
Bram Moolenaaraeac9002016-09-06 22:15:08 +02001912 msg_puts_attr(s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913}
1914
1915 void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001916msg_puts_title(char *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917{
Bram Moolenaar8820b482017-03-16 17:23:31 +01001918 msg_puts_attr(s, HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919}
1920
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921/*
1922 * Show a message in such a way that it always fits in the line. Cut out a
1923 * part in the middle and replace it with "..." when necessary.
1924 * Does not handle multi-byte characters!
1925 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001926 static void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001927msg_outtrans_long_len_attr(char_u *longstr, int len, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928{
1929 int slen = len;
1930 int room;
1931
1932 room = Columns - msg_col;
1933 if (len > room && room >= 20)
1934 {
1935 slen = (room - 3) / 2;
1936 msg_outtrans_len_attr(longstr, slen, attr);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001937 msg_puts_attr("...", HL_ATTR(HLF_8));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 }
1939 msg_outtrans_len_attr(longstr + len - slen, slen, attr);
1940}
1941
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001942 void
1943msg_outtrans_long_attr(char_u *longstr, int attr)
1944{
1945 msg_outtrans_long_len_attr(longstr, (int)STRLEN(longstr), attr);
1946}
1947
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948/*
1949 * Basic function for writing a message with highlight attributes.
1950 */
1951 void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001952msg_puts_attr(char *s, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953{
1954 msg_puts_attr_len(s, -1, attr);
1955}
1956
1957/*
1958 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes).
1959 * When "maxlen" is -1 there is no maximum length.
1960 * When "maxlen" is >= 0 the message is not put in the history.
1961 */
1962 static void
Bram Moolenaar32526b32019-01-19 17:43:09 +01001963msg_puts_attr_len(char *str, int maxlen, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 /*
1966 * If redirection is on, also write to the redirection file.
1967 */
Bram Moolenaar32526b32019-01-19 17:43:09 +01001968 redir_write((char_u *)str, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969
1970 /*
1971 * Don't print anything when using ":silent cmd".
1972 */
1973 if (msg_silent != 0)
1974 return;
1975
1976 /* if MSG_HIST flag set, add message to history */
1977 if ((attr & MSG_HIST) && maxlen < 0)
1978 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001979 add_msg_hist((char_u *)str, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 attr &= ~MSG_HIST;
1981 }
1982
Bram Moolenaare8070982019-10-12 17:07:06 +02001983 // When writing something to the screen after it has scrolled, requires a
1984 // wait-return prompt later. Needed when scrolling, resetting
1985 // need_wait_return after some prompt, and then outputting something
1986 // without scrolling
1987 // Not needed when only using CR to move the cursor.
1988 if (msg_scrolled != 0 && !msg_scrolled_ign && STRCMP(str, "\r") != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 need_wait_return = TRUE;
Bram Moolenaare8070982019-10-12 17:07:06 +02001990 msg_didany = TRUE; // remember that something was outputted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991
1992 /*
1993 * If there is no valid screen, use fprintf so we can see error messages.
1994 * If termcap is not active, we may be writing in an alternate console
1995 * window, cursor positioning may not work correctly (window size may be
1996 * different, e.g. for Win32 console) or we just don't know where the
1997 * cursor is.
1998 */
1999 if (msg_use_printf())
Bram Moolenaar32526b32019-01-19 17:43:09 +01002000 msg_puts_printf((char_u *)str, maxlen);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002001 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002002 msg_puts_display((char_u *)str, maxlen, attr, FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002003}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002005/*
2006 * The display part of msg_puts_attr_len().
2007 * May be called recursively to display scroll-back text.
2008 */
2009 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002010msg_puts_display(
2011 char_u *str,
2012 int maxlen,
2013 int attr,
2014 int recurse)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002015{
2016 char_u *s = str;
2017 char_u *t_s = str; /* string from "t_s" to "s" is still todo */
2018 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002019 int l;
2020 int cw;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002021 char_u *sb_str = str;
2022 int sb_col = msg_col;
2023 int wrap;
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002024 int did_last_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025
2026 did_wait_return = FALSE;
Bram Moolenaar57b7fe82007-08-05 17:20:43 +00002027 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 {
2029 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002030 * We are at the end of the screen line when:
2031 * - When outputting a newline.
2032 * - When outputting a character in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002034 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035#ifdef FEAT_RIGHTLEFT
2036 cmdmsg_rl
2037 ? (
2038 msg_col <= 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002039 || (*s == TAB && msg_col <= 7)
2040 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 :
2042#endif
2043 (msg_col + t_col >= Columns - 1
2044 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 || (has_mbyte && (*mb_ptr2cells)(s) > 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002046 && msg_col + t_col >= Columns - 2)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002048 /*
2049 * The screen is scrolled up when at the last row (some terminals
2050 * scroll automatically, some don't. To avoid problems we scroll
2051 * ourselves).
2052 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 if (t_col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 /* output postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002055 t_puts(&t_col, t_s, s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002057 /* When no more prompt and no more room, truncate here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 if (msg_no_more && lines_left == 0)
2059 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002061 /* Scroll the screen up one line. */
2062 msg_scroll_up();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063
2064 msg_row = Rows - 2;
2065 if (msg_col >= Columns) /* can happen after screen resize */
2066 msg_col = Columns - 1;
2067
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002068 /* Display char in last column before showing more-prompt. */
2069 if (*s >= ' '
2070#ifdef FEAT_RIGHTLEFT
2071 && !cmdmsg_rl
2072#endif
2073 )
2074 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002075 if (has_mbyte)
2076 {
2077 if (enc_utf8 && maxlen >= 0)
2078 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002079 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002080 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002081 l = (*mb_ptr2len)(s);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002082 s = screen_puts_mbyte(s, l, attr);
2083 }
2084 else
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002085 msg_screen_putchar(*s++, attr);
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002086 did_last_char = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002087 }
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002088 else
2089 did_last_char = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002090
2091 if (p_more)
2092 /* store text for scrolling back */
2093 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
2094
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002095 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002096 need_wait_return = TRUE; /* may need wait_return in main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 redraw_cmdline = TRUE;
2098 if (cmdline_row > 0 && !exmode_active)
2099 --cmdline_row;
2100
2101 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002102 * If screen is completely filled and 'more' is set then wait
2103 * for a character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 */
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002105 if (lines_left > 0)
2106 --lines_left;
Bram Moolenaar203335e2006-09-03 14:35:42 +00002107 if (p_more && lines_left == 0 && State != HITRETURN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 && !msg_no_more && !exmode_active)
2109 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110#ifdef FEAT_CON_DIALOG
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002111 if (do_more_prompt(NUL))
2112 s = confirm_msg_tail;
2113#else
2114 (void)do_more_prompt(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115#endif
2116 if (quit_more)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002117 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 }
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002119
2120 /* When we displayed a char in last column need to check if there
2121 * is still more. */
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002122 if (did_last_char)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002123 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 }
2125
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002126 wrap = *s == '\n'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 || msg_col + t_col >= Columns
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 || (has_mbyte && (*mb_ptr2cells)(s) > 1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002129 && msg_col + t_col >= Columns - 1);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002130 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b'
2131 || *s == '\t' || *s == BELL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 /* output any postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002133 t_puts(&t_col, t_s, s, attr);
2134
2135 if (wrap && p_more && !recurse)
2136 /* store text for scrolling back */
2137 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138
2139 if (*s == '\n') /* go to next line */
2140 {
2141 msg_didout = FALSE; /* remember that line is empty */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002142#ifdef FEAT_RIGHTLEFT
2143 if (cmdmsg_rl)
2144 msg_col = Columns - 1;
2145 else
2146#endif
2147 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 if (++msg_row >= Rows) /* safety check */
2149 msg_row = Rows - 1;
2150 }
2151 else if (*s == '\r') /* go to column 0 */
2152 {
2153 msg_col = 0;
2154 }
2155 else if (*s == '\b') /* go to previous char */
2156 {
2157 if (msg_col)
2158 --msg_col;
2159 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002160 else if (*s == TAB) /* translate Tab into spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 {
2162 do
2163 msg_screen_putchar(' ', attr);
2164 while (msg_col & 7);
2165 }
Bram Moolenaar165bc692015-07-21 17:53:25 +02002166 else if (*s == BELL) /* beep (from ":sh") */
2167 vim_beep(BO_SH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 else
2169 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 if (has_mbyte)
2171 {
2172 cw = (*mb_ptr2cells)(s);
2173 if (enc_utf8 && maxlen >= 0)
2174 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002175 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002177 l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 }
2179 else
2180 {
2181 cw = 1;
2182 l = 1;
2183 }
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002184
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 /* When drawing from right to left or when a double-wide character
2186 * doesn't fit, draw a single character here. Otherwise collect
2187 * characters and draw them all at once later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 if (
2189# ifdef FEAT_RIGHTLEFT
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002190 cmdmsg_rl ||
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191# endif
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002192 (cw > 1 && msg_col + t_col >= Columns - 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 if (l > 1)
2195 s = screen_puts_mbyte(s, l, attr) - 1;
2196 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 msg_screen_putchar(*s, attr);
2198 }
2199 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 {
2201 /* postpone this character until later */
2202 if (t_col == 0)
2203 t_s = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 t_col += cw;
2205 s += l - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 }
2207 }
2208 ++s;
2209 }
2210
2211 /* output any postponed text */
2212 if (t_col > 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002213 t_puts(&t_col, t_s, s, attr);
2214 if (p_more && !recurse)
2215 store_sb_text(&sb_str, s, attr, &sb_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216
2217 msg_check();
2218}
2219
2220/*
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002221 * Return TRUE when ":filter pattern" was used and "msg" does not match
2222 * "pattern".
2223 */
2224 int
2225message_filtered(char_u *msg)
2226{
Bram Moolenaard29459b2016-08-26 22:29:11 +02002227 int match;
2228
2229 if (cmdmod.filter_regmatch.regprog == NULL)
2230 return FALSE;
2231 match = vim_regexec(&cmdmod.filter_regmatch, msg, (colnr_T)0);
2232 return cmdmod.filter_force ? match : !match;
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002233}
2234
2235/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002236 * Scroll the screen up one line for displaying the next message line.
2237 */
2238 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002239msg_scroll_up(void)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002240{
2241#ifdef FEAT_GUI
2242 /* Remove the cursor before scrolling, ScreenLines[] is going
2243 * to become invalid. */
2244 if (gui.in_use)
2245 gui_undraw_cursor();
2246#endif
2247 /* scrolling up always works */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002248 mch_disable_flush();
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002249 screen_del_lines(0, 0, 1, (int)Rows, TRUE, 0, NULL);
Bram Moolenaara338adc2018-01-31 20:51:47 +01002250 mch_enable_flush();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002251
2252 if (!can_clear((char_u *)" "))
2253 {
2254 /* Scrolling up doesn't result in the right background. Set the
2255 * background here. It's not efficient, but avoids that we have to do
2256 * it all over the code. */
2257 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2258
2259 /* Also clear the last char of the last but one line if it was not
2260 * cleared before to avoid a scroll-up. */
2261 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1)
2262 screen_fill((int)Rows - 2, (int)Rows - 1,
2263 (int)Columns - 1, (int)Columns, ' ', ' ', 0);
2264 }
2265}
2266
2267/*
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002268 * Increment "msg_scrolled".
2269 */
2270 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002271inc_msg_scrolled(void)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002272{
2273#ifdef FEAT_EVAL
2274 if (*get_vim_var_str(VV_SCROLLSTART) == NUL)
2275 {
2276 char_u *p = sourcing_name;
2277 char_u *tofree = NULL;
2278 int len;
2279
2280 /* v:scrollstart is empty, set it to the script/function name and line
2281 * number */
2282 if (p == NULL)
2283 p = (char_u *)_("Unknown");
2284 else
2285 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002286 len = (int)STRLEN(p) + 40;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002287 tofree = alloc(len);
2288 if (tofree != NULL)
2289 {
2290 vim_snprintf((char *)tofree, len, _("%s line %ld"),
2291 p, (long)sourcing_lnum);
2292 p = tofree;
2293 }
2294 }
2295 set_vim_var_string(VV_SCROLLSTART, p, -1);
2296 vim_free(tofree);
2297 }
2298#endif
2299 ++msg_scrolled;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002300 if (must_redraw < VALID)
2301 must_redraw = VALID;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002302}
2303
2304/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002305 * To be able to scroll back at the "more" and "hit-enter" prompts we need to
2306 * store the displayed text and remember where screen lines start.
2307 */
2308typedef struct msgchunk_S msgchunk_T;
2309struct msgchunk_S
2310{
2311 msgchunk_T *sb_next;
2312 msgchunk_T *sb_prev;
2313 char sb_eol; /* TRUE when line ends after this text */
2314 int sb_msg_col; /* column in which text starts */
2315 int sb_attr; /* text attributes */
2316 char_u sb_text[1]; /* text to be displayed, actually longer */
2317};
2318
2319static msgchunk_T *last_msgchunk = NULL; /* last displayed text */
2320
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01002321static msgchunk_T *msg_sb_start(msgchunk_T *mps);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002322
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002323typedef enum {
2324 SB_CLEAR_NONE = 0,
2325 SB_CLEAR_ALL,
2326 SB_CLEAR_CMDLINE_BUSY,
2327 SB_CLEAR_CMDLINE_DONE
2328} sb_clear_T;
2329
2330/* When to clear text on next msg. */
2331static sb_clear_T do_clear_sb_text = SB_CLEAR_NONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002332
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002333/*
2334 * Store part of a printed message for displaying when scrolling back.
2335 */
2336 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002337store_sb_text(
2338 char_u **sb_str, /* start of string */
2339 char_u *s, /* just after string */
2340 int attr,
2341 int *sb_col,
2342 int finish) /* line ends */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002343{
2344 msgchunk_T *mp;
2345
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002346 if (do_clear_sb_text == SB_CLEAR_ALL
2347 || do_clear_sb_text == SB_CLEAR_CMDLINE_DONE)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002348 {
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002349 clear_sb_text(do_clear_sb_text == SB_CLEAR_ALL);
2350 do_clear_sb_text = SB_CLEAR_NONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002351 }
2352
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002353 if (s > *sb_str)
2354 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002355 mp = alloc(sizeof(msgchunk_T) + (s - *sb_str));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002356 if (mp != NULL)
2357 {
2358 mp->sb_eol = finish;
2359 mp->sb_msg_col = *sb_col;
2360 mp->sb_attr = attr;
2361 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str);
2362
2363 if (last_msgchunk == NULL)
2364 {
2365 last_msgchunk = mp;
2366 mp->sb_prev = NULL;
2367 }
2368 else
2369 {
2370 mp->sb_prev = last_msgchunk;
2371 last_msgchunk->sb_next = mp;
2372 last_msgchunk = mp;
2373 }
2374 mp->sb_next = NULL;
2375 }
2376 }
2377 else if (finish && last_msgchunk != NULL)
2378 last_msgchunk->sb_eol = TRUE;
2379
2380 *sb_str = s;
2381 *sb_col = 0;
2382}
2383
2384/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002385 * Finished showing messages, clear the scroll-back text on the next message.
2386 */
2387 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002388may_clear_sb_text(void)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002389{
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002390 do_clear_sb_text = SB_CLEAR_ALL;
2391}
2392
2393/*
2394 * Starting to edit the command line, do not clear messages now.
2395 */
2396 void
2397sb_text_start_cmdline(void)
2398{
2399 do_clear_sb_text = SB_CLEAR_CMDLINE_BUSY;
2400 msg_sb_eol();
2401}
2402
2403/*
2404 * Ending to edit the command line. Clear old lines but the last one later.
2405 */
2406 void
2407sb_text_end_cmdline(void)
2408{
2409 do_clear_sb_text = SB_CLEAR_CMDLINE_DONE;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002410}
2411
2412/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002413 * Clear any text remembered for scrolling back.
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002414 * When "all" is FALSE keep the last line.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002415 * Called when redrawing the screen.
2416 */
2417 void
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002418clear_sb_text(int all)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002419{
2420 msgchunk_T *mp;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002421 msgchunk_T **lastp;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002422
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002423 if (all)
2424 lastp = &last_msgchunk;
2425 else
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002426 {
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01002427 if (last_msgchunk == NULL)
2428 return;
2429 lastp = &last_msgchunk->sb_prev;
2430 }
2431
2432 while (*lastp != NULL)
2433 {
2434 mp = (*lastp)->sb_prev;
2435 vim_free(*lastp);
2436 *lastp = mp;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002437 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002438}
2439
2440/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002441 * "g<" command.
2442 */
2443 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002444show_sb_text(void)
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002445{
2446 msgchunk_T *mp;
2447
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002448 /* Only show something if there is more than one line, otherwise it looks
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002449 * weird, typing a command without output results in one line. */
2450 mp = msg_sb_start(last_msgchunk);
2451 if (mp == NULL || mp->sb_prev == NULL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02002452 vim_beep(BO_MESS);
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002453 else
2454 {
2455 do_more_prompt('G');
2456 wait_return(FALSE);
2457 }
2458}
2459
2460/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002461 * Move to the start of screen line in already displayed text.
2462 */
2463 static msgchunk_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002464msg_sb_start(msgchunk_T *mps)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002465{
2466 msgchunk_T *mp = mps;
2467
2468 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol)
2469 mp = mp->sb_prev;
2470 return mp;
2471}
2472
2473/*
Bram Moolenaar6df5e5a2012-03-28 16:49:29 +02002474 * Mark the last message chunk as finishing the line.
2475 */
2476 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002477msg_sb_eol(void)
Bram Moolenaar6df5e5a2012-03-28 16:49:29 +02002478{
2479 if (last_msgchunk != NULL)
2480 last_msgchunk->sb_eol = TRUE;
2481}
2482
2483/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002484 * Display a screen line from previously displayed text at row "row".
2485 * Returns a pointer to the text for the next line (can be NULL).
2486 */
2487 static msgchunk_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002488disp_sb_line(int row, msgchunk_T *smp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002489{
2490 msgchunk_T *mp = smp;
2491 char_u *p;
2492
2493 for (;;)
2494 {
2495 msg_row = row;
2496 msg_col = mp->sb_msg_col;
2497 p = mp->sb_text;
2498 if (*p == '\n') /* don't display the line break */
2499 ++p;
2500 msg_puts_display(p, -1, mp->sb_attr, TRUE);
2501 if (mp->sb_eol || mp->sb_next == NULL)
2502 break;
2503 mp = mp->sb_next;
2504 }
2505 return mp->sb_next;
2506}
2507
2508/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 * Output any postponed text for msg_puts_attr_len().
2510 */
2511 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002512t_puts(
2513 int *t_col,
2514 char_u *t_s,
2515 char_u *s,
2516 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517{
2518 /* output postponed text */
2519 msg_didout = TRUE; /* remember that line is not empty */
2520 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002521 msg_col += *t_col;
2522 *t_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 /* If the string starts with a composing character don't increment the
2524 * column position for it. */
2525 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s)))
2526 --msg_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 if (msg_col >= Columns)
2528 {
2529 msg_col = 0;
2530 ++msg_row;
2531 }
2532}
2533
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534/*
2535 * Returns TRUE when messages should be printed with mch_errmsg().
2536 * This is used when there is no valid screen, so we can see error messages.
2537 * If termcap is not active, we may be writing in an alternate console
2538 * window, cursor positioning may not work correctly (window size may be
2539 * different, e.g. for Win32 console) or we just don't know where the
2540 * cursor is.
2541 */
2542 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002543msg_use_printf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544{
2545 return (!msg_check_screen()
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002546#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
2547# ifdef VIMDLL
2548 || (!gui.in_use && !termcap_active)
2549# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 || !termcap_active
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002551# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552#endif
2553 || (swapping_screen() && !termcap_active)
2554 );
2555}
2556
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002557/*
2558 * Print a message when there is no valid screen.
2559 */
2560 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002561msg_puts_printf(char_u *str, int maxlen)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002562{
2563 char_u *s = str;
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002564 char_u *buf = NULL;
2565 char_u *p = s;
2566
Bram Moolenaar4f974752019-02-17 17:44:42 +01002567#ifdef MSWIN
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002568 if (!(silent_mode && p_verbose == 0))
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002569 mch_settmode(TMODE_COOK); /* handle CR and NL correctly */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002570#endif
Bram Moolenaar2321ca22016-09-09 14:17:18 +02002571 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002572 {
2573 if (!(silent_mode && p_verbose == 0))
2574 {
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002575 // NL --> CR NL translation (for Unix, not for "--version")
2576 if (*s == NL)
2577 {
2578 int n = (int)(s - p);
2579
2580 buf = alloc(n + 3);
Bram Moolenaar6f10c702019-08-20 22:58:37 +02002581 if (buf != NULL)
2582 {
2583 memcpy(buf, p, n);
2584 if (!info_message)
2585 buf[n++] = CAR;
2586 buf[n++] = NL;
2587 buf[n++] = NUL;
2588 if (info_message) // informative message, not an error
2589 mch_msg((char *)buf);
2590 else
2591 mch_errmsg((char *)buf);
2592 vim_free(buf);
2593 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002594 p = s + 1;
2595 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002596 }
2597
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002598 // primitive way to compute the current column
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002599#ifdef FEAT_RIGHTLEFT
2600 if (cmdmsg_rl)
2601 {
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002602 if (*s == CAR || *s == NL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002603 msg_col = Columns - 1;
2604 else
2605 --msg_col;
2606 }
2607 else
2608#endif
2609 {
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002610 if (*s == CAR || *s == NL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002611 msg_col = 0;
2612 else
2613 ++msg_col;
2614 }
2615 ++s;
2616 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002617
2618 if (*p != NUL && !(silent_mode && p_verbose == 0))
2619 {
Bram Moolenaar97c2c052019-02-22 13:42:07 +01002620 int c = -1;
2621
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002622 if (maxlen > 0 && STRLEN(p) > (size_t)maxlen)
Bram Moolenaar97c2c052019-02-22 13:42:07 +01002623 {
2624 c = p[maxlen];
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002625 p[maxlen] = 0;
Bram Moolenaar97c2c052019-02-22 13:42:07 +01002626 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002627 if (info_message)
2628 mch_msg((char *)p);
2629 else
2630 mch_errmsg((char *)p);
Bram Moolenaar97c2c052019-02-22 13:42:07 +01002631 if (c != -1)
2632 p[maxlen] = c;
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002633 }
2634
2635 msg_didout = TRUE; // assume that line is not empty
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002636
Bram Moolenaar4f974752019-02-17 17:44:42 +01002637#ifdef MSWIN
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002638 if (!(silent_mode && p_verbose == 0))
2639 mch_settmode(TMODE_RAW);
2640#endif
2641}
2642
2643/*
2644 * Show the more-prompt and handle the user response.
2645 * This takes care of scrolling back and displaying previously displayed text.
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002646 * When at hit-enter prompt "typed_char" is the already typed character,
2647 * otherwise it's NUL.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002648 * Returns TRUE when jumping ahead to "confirm_msg_tail".
2649 */
2650 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002651do_more_prompt(int typed_char)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002652{
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002653 static int entered = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002654 int used_typed_char = typed_char;
2655 int oldState = State;
2656 int c;
2657#ifdef FEAT_CON_DIALOG
2658 int retval = FALSE;
2659#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002660 int toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002661 msgchunk_T *mp_last = NULL;
2662 msgchunk_T *mp;
2663 int i;
2664
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002665 /* We get called recursively when a timer callback outputs a message. In
Bram Moolenaara0055ad2016-06-02 18:37:05 +02002666 * that case don't show another prompt. Also when at the hit-Enter prompt
2667 * and nothing was typed. */
2668 if (entered || (State == HITRETURN && typed_char == 0))
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002669 return FALSE;
2670 entered = TRUE;
2671
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002672 if (typed_char == 'G')
2673 {
2674 /* "g<": Find first line on the last page. */
2675 mp_last = msg_sb_start(last_msgchunk);
2676 for (i = 0; i < Rows - 2 && mp_last != NULL
2677 && mp_last->sb_prev != NULL; ++i)
2678 mp_last = msg_sb_start(mp_last->sb_prev);
2679 }
2680
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002681 State = ASKMORE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002682 setmouse();
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002683 if (typed_char == NUL)
2684 msg_moremsg(FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002685 for (;;)
2686 {
2687 /*
2688 * Get a typed character directly from the user.
2689 */
2690 if (used_typed_char != NUL)
2691 {
2692 c = used_typed_char; /* was typed at hit-enter prompt */
2693 used_typed_char = NUL;
2694 }
2695 else
2696 c = get_keystroke();
2697
2698#if defined(FEAT_MENU) && defined(FEAT_GUI)
2699 if (c == K_MENU)
2700 {
2701 int idx = get_menu_index(current_menu, ASKMORE);
2702
2703 /* Used a menu. If it starts with CTRL-Y, it must
2704 * be a "Copy" for the clipboard. Otherwise
2705 * assume that we end */
2706 if (idx == MENU_INDEX_INVALID)
2707 continue;
2708 c = *current_menu->strings[idx];
2709 if (c != NUL && current_menu->strings[idx][1] != NUL)
2710 ins_typebuf(current_menu->strings[idx] + 1,
2711 current_menu->noremap[idx], 0, TRUE,
2712 current_menu->silent[idx]);
2713 }
2714#endif
2715
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002716 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002717 switch (c)
2718 {
2719 case BS: /* scroll one line back */
2720 case K_BS:
2721 case 'k':
2722 case K_UP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002723 toscroll = -1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002724 break;
2725
2726 case CAR: /* one extra line */
2727 case NL:
2728 case 'j':
2729 case K_DOWN:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002730 toscroll = 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002731 break;
2732
2733 case 'u': /* Up half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002734 toscroll = -(Rows / 2);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002735 break;
2736
2737 case 'd': /* Down half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002738 toscroll = Rows / 2;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002739 break;
2740
2741 case 'b': /* one page back */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002742 case K_PAGEUP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002743 toscroll = -(Rows - 1);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002744 break;
2745
2746 case ' ': /* one extra page */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002747 case 'f':
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002748 case K_PAGEDOWN:
2749 case K_LEFTMOUSE:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002750 toscroll = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002751 break;
2752
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002753 case 'g': /* all the way back to the start */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002754 toscroll = -999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002755 break;
2756
2757 case 'G': /* all the way to the end */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002758 toscroll = 999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002759 lines_left = 999999;
2760 break;
2761
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002762 case ':': /* start new command line */
2763#ifdef FEAT_CON_DIALOG
2764 if (!confirm_msg_used)
2765#endif
2766 {
2767 /* Since got_int is set all typeahead will be flushed, but we
2768 * want to keep this ':', remember that in a special way. */
2769 typeahead_noflush(':');
Bram Moolenaar1d4754f2018-06-19 17:49:24 +02002770#ifdef FEAT_TERMINAL
2771 skip_term_loop = TRUE;
2772#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002773 cmdline_row = Rows - 1; /* put ':' on this line */
2774 skip_redraw = TRUE; /* skip redraw once */
2775 need_wait_return = FALSE; /* don't wait in main() */
2776 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002777 /* FALLTHROUGH */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002778 case 'q': /* quit */
2779 case Ctrl_C:
2780 case ESC:
2781#ifdef FEAT_CON_DIALOG
2782 if (confirm_msg_used)
2783 {
2784 /* Jump to the choices of the dialog. */
2785 retval = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002786 }
2787 else
2788#endif
2789 {
2790 got_int = TRUE;
2791 quit_more = TRUE;
2792 }
Bram Moolenaar51306d22009-02-24 03:38:04 +00002793 /* When there is some more output (wrapping line) display that
2794 * without another prompt. */
2795 lines_left = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002796 break;
2797
2798#ifdef FEAT_CLIPBOARD
2799 case Ctrl_Y:
2800 /* Strange way to allow copying (yanking) a modeless
2801 * selection at the more prompt. Use CTRL-Y,
2802 * because the same is used in Cmdline-mode and at the
2803 * hit-enter prompt. However, scrolling one line up
2804 * might be expected... */
2805 if (clip_star.state == SELECT_DONE)
2806 clip_copy_modeless_selection(TRUE);
2807 continue;
2808#endif
2809 default: /* no valid response */
2810 msg_moremsg(TRUE);
2811 continue;
2812 }
2813
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002814 if (toscroll != 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002815 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002816 if (toscroll < 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002817 {
2818 /* go to start of last line */
2819 if (mp_last == NULL)
2820 mp = msg_sb_start(last_msgchunk);
2821 else if (mp_last->sb_prev != NULL)
2822 mp = msg_sb_start(mp_last->sb_prev);
2823 else
2824 mp = NULL;
2825
2826 /* go to start of line at top of the screen */
2827 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL;
2828 ++i)
2829 mp = msg_sb_start(mp->sb_prev);
2830
2831 if (mp != NULL && mp->sb_prev != NULL)
2832 {
2833 /* Find line to be displayed at top. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002834 for (i = 0; i > toscroll; --i)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002835 {
2836 if (mp == NULL || mp->sb_prev == NULL)
2837 break;
2838 mp = msg_sb_start(mp->sb_prev);
2839 if (mp_last == NULL)
2840 mp_last = msg_sb_start(last_msgchunk);
2841 else
2842 mp_last = msg_sb_start(mp_last->sb_prev);
2843 }
2844
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002845 if (toscroll == -1 && screen_ins_lines(0, 0, 1,
Bram Moolenaarcfce7172017-08-17 20:31:48 +02002846 (int)Rows, 0, NULL) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002847 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002848 /* display line at top */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002849 (void)disp_sb_line(0, mp);
2850 }
2851 else
2852 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002853 /* redisplay all lines */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002854 screenclear();
Bram Moolenaar773560b2006-05-06 21:38:18 +00002855 for (i = 0; mp != NULL && i < Rows - 1; ++i)
2856 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002857 mp = disp_sb_line(i, mp);
Bram Moolenaar773560b2006-05-06 21:38:18 +00002858 ++msg_scrolled;
2859 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002860 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002861 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002862 }
2863 }
2864 else
2865 {
2866 /* First display any text that we scrolled back. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002867 while (toscroll > 0 && mp_last != NULL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002868 {
2869 /* scroll up, display line at bottom */
2870 msg_scroll_up();
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002871 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002872 screen_fill((int)Rows - 2, (int)Rows - 1, 0,
2873 (int)Columns, ' ', ' ', 0);
2874 mp_last = disp_sb_line((int)Rows - 2, mp_last);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002875 --toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002876 }
2877 }
2878
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002879 if (toscroll <= 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002880 {
2881 /* displayed the requested text, more prompt again */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002882 screen_fill((int)Rows - 1, (int)Rows, 0,
2883 (int)Columns, ' ', ' ', 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002884 msg_moremsg(FALSE);
2885 continue;
2886 }
2887
2888 /* display more text, return to caller */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002889 lines_left = toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002890 }
2891
2892 break;
2893 }
2894
2895 /* clear the --more-- message */
2896 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2897 State = oldState;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002898 setmouse();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002899 if (quit_more)
2900 {
2901 msg_row = Rows - 1;
2902 msg_col = 0;
2903 }
2904#ifdef FEAT_RIGHTLEFT
2905 else if (cmdmsg_rl)
2906 msg_col = Columns - 1;
2907#endif
2908
Bram Moolenaarbfb96c02016-03-19 17:05:20 +01002909 entered = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002910#ifdef FEAT_CON_DIALOG
2911 return retval;
2912#else
2913 return FALSE;
2914#endif
2915}
2916
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917#if defined(USE_MCH_ERRMSG) || defined(PROTO)
2918
2919#ifdef mch_errmsg
2920# undef mch_errmsg
2921#endif
2922#ifdef mch_msg
2923# undef mch_msg
2924#endif
2925
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002926#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
2927 static void
2928mch_errmsg_c(char *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929{
Bram Moolenaar0f77d6a2019-02-14 20:55:09 +01002930 int len = (int)STRLEN(str);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002931 DWORD nwrite = 0;
2932 DWORD mode = 0;
2933 HANDLE h = GetStdHandle(STD_ERROR_HANDLE);
2934
2935 if (GetConsoleMode(h, &mode) && enc_codepage >= 0
2936 && (int)GetConsoleCP() != enc_codepage)
2937 {
2938 WCHAR *w = enc_to_utf16((char_u *)str, &len);
2939
2940 WriteConsoleW(h, w, len, &nwrite, NULL);
2941 vim_free(w);
2942 }
2943 else
2944 {
2945 fprintf(stderr, "%s", str);
2946 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002947}
2948#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002950/*
2951 * Give an error message. To be used when the screen hasn't been initialized
2952 * yet. When stderr can't be used, collect error messages until the GUI has
2953 * started and they can be displayed in a message box.
2954 */
2955 void
2956mch_errmsg(char *str)
2957{
2958#if !defined(MSWIN) || defined(FEAT_GUI_MSWIN)
2959 int len;
2960#endif
2961
Bram Moolenaar0b75f7c2019-05-08 22:28:46 +02002962#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 /* On Unix use stderr if it's a tty.
2964 * When not going to start the GUI also use stderr.
2965 * On Mac, when started from Finder, stderr is the console. */
2966 if (
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002967# ifdef UNIX
2968# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002970# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 isatty(2)
2972# endif
2973# ifdef FEAT_GUI
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002974 ||
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01002975# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002976# endif
2977# ifdef FEAT_GUI
2978 !(gui.in_use || gui.starting)
2979# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 )
2981 {
2982 fprintf(stderr, "%s", str);
2983 return;
2984 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002985#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002987#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
2988# ifdef VIMDLL
2989 if (!(gui.in_use || gui.starting))
2990# endif
2991 {
2992 mch_errmsg_c(str);
2993 return;
2994 }
2995#endif
2996
2997#if !defined(MSWIN) || defined(FEAT_GUI_MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 /* avoid a delay for a message that isn't there */
2999 emsg_on_display = FALSE;
3000
3001 len = (int)STRLEN(str) + 1;
3002 if (error_ga.ga_growsize == 0)
3003 {
3004 error_ga.ga_growsize = 80;
3005 error_ga.ga_itemsize = 1;
3006 }
3007 if (ga_grow(&error_ga, len) == OK)
3008 {
3009 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len,
3010 (char_u *)str, len);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003011# ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 /* remove CR characters, they are displayed */
3013 {
3014 char_u *p;
3015
3016 p = (char_u *)error_ga.ga_data + error_ga.ga_len;
3017 for (;;)
3018 {
3019 p = vim_strchr(p, '\r');
3020 if (p == NULL)
3021 break;
3022 *p = ' ';
3023 }
3024 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003025# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 --len; /* don't count the NUL at the end */
3027 error_ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028 }
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003029#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030}
3031
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003032#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3033 static void
3034mch_msg_c(char *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035{
Bram Moolenaar0f77d6a2019-02-14 20:55:09 +01003036 int len = (int)STRLEN(str);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003037 DWORD nwrite = 0;
3038 DWORD mode;
3039 HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE);
3040
3041
3042 if (GetConsoleMode(h, &mode) && enc_codepage >= 0
3043 && (int)GetConsoleCP() != enc_codepage)
3044 {
3045 WCHAR *w = enc_to_utf16((char_u *)str, &len);
3046
3047 WriteConsoleW(h, w, len, &nwrite, NULL);
3048 vim_free(w);
3049 }
3050 else
3051 {
3052 printf("%s", str);
3053 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003054}
3055#endif
3056
3057/*
3058 * Give a message. To be used when the screen hasn't been initialized yet.
3059 * When there is no tty, collect messages until the GUI has started and they
3060 * can be displayed in a message box.
3061 */
3062 void
3063mch_msg(char *str)
3064{
Bram Moolenaar0b75f7c2019-05-08 22:28:46 +02003065#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and
3067 * uses mch_errmsg() when started from the desktop.
3068 * When not going to start the GUI also use stdout.
3069 * On Mac, when started from Finder, stderr is the console. */
3070 if (
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003071# ifdef UNIX
3072# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003074# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 isatty(2)
Bram Moolenaareae1b912019-05-09 15:12:55 +02003076# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077# ifdef FEAT_GUI
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003078 ||
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003080# endif
3081# ifdef FEAT_GUI
3082 !(gui.in_use || gui.starting)
3083# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 )
3085 {
3086 printf("%s", str);
3087 return;
3088 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003089#endif
3090
3091#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3092# ifdef VIMDLL
3093 if (!(gui.in_use || gui.starting))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003095 {
3096 mch_msg_c(str);
3097 return;
3098 }
3099#endif
3100#if !defined(MSWIN) || defined(FEAT_GUI_MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 mch_errmsg(str);
Bram Moolenaar9b5c1fc2019-02-14 14:08:04 +01003102#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103}
3104#endif /* USE_MCH_ERRMSG */
3105
3106/*
3107 * Put a character on the screen at the current message position and advance
3108 * to the next position. Only for printable ASCII!
3109 */
3110 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003111msg_screen_putchar(int c, int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112{
3113 msg_didout = TRUE; /* remember that line is not empty */
3114 screen_putchar(c, msg_row, msg_col, attr);
3115#ifdef FEAT_RIGHTLEFT
3116 if (cmdmsg_rl)
3117 {
3118 if (--msg_col == 0)
3119 {
3120 msg_col = Columns;
3121 ++msg_row;
3122 }
3123 }
3124 else
3125#endif
3126 {
3127 if (++msg_col >= Columns)
3128 {
3129 msg_col = 0;
3130 ++msg_row;
3131 }
3132 }
3133}
3134
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003135 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003136msg_moremsg(int full)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003138 int attr;
3139 char_u *s = (char_u *)_("-- More --");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140
Bram Moolenaar8820b482017-03-16 17:23:31 +01003141 attr = HL_ATTR(HLF_M);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003142 screen_puts(s, (int)Rows - 1, 0, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 if (full)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003144 screen_puts((char_u *)
3145 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "),
3146 (int)Rows - 1, vim_strsize(s), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147}
3148
3149/*
3150 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
3151 * exmode_active.
3152 */
3153 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003154repeat_message(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155{
3156 if (State == ASKMORE)
3157 {
3158 msg_moremsg(TRUE); /* display --more-- message again */
3159 msg_row = Rows - 1;
3160 }
3161#ifdef FEAT_CON_DIALOG
3162 else if (State == CONFIRM)
3163 {
3164 display_confirm_msg(); /* display ":confirm" message again */
3165 msg_row = Rows - 1;
3166 }
3167#endif
3168 else if (State == EXTERNCMD)
3169 {
3170 windgoto(msg_row, msg_col); /* put cursor back */
3171 }
3172 else if (State == HITRETURN || State == SETWSIZE)
3173 {
Bram Moolenaar9f108752007-11-24 14:44:58 +00003174 if (msg_row == Rows - 1)
3175 {
3176 /* Avoid drawing the "hit-enter" prompt below the previous one,
3177 * overwrite it. Esp. useful when regaining focus and a
3178 * FocusGained autocmd exists but didn't draw anything. */
3179 msg_didout = FALSE;
3180 msg_col = 0;
3181 msg_clr_eos();
3182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 hit_return_msg();
3184 msg_row = Rows - 1;
3185 }
3186}
3187
3188/*
3189 * msg_check_screen - check if the screen is initialized.
3190 * Also check msg_row and msg_col, if they are too big it may cause a crash.
3191 * While starting the GUI the terminal codes will be set for the GUI, but the
3192 * output goes to the terminal. Don't use the terminal codes then.
3193 */
3194 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003195msg_check_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196{
3197 if (!full_screen || !screen_valid(FALSE))
3198 return FALSE;
3199
3200 if (msg_row >= Rows)
3201 msg_row = Rows - 1;
3202 if (msg_col >= Columns)
3203 msg_col = Columns - 1;
3204 return TRUE;
3205}
3206
3207/*
3208 * Clear from current message position to end of screen.
3209 * Skip this when ":silent" was used, no need to clear for redirection.
3210 */
3211 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003212msg_clr_eos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213{
3214 if (msg_silent == 0)
3215 msg_clr_eos_force();
3216}
3217
3218/*
3219 * Clear from current message position to end of screen.
3220 * Note: msg_col is not updated, so we remember the end of the message
3221 * for msg_check().
3222 */
3223 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003224msg_clr_eos_force(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225{
3226 if (msg_use_printf())
3227 {
3228 if (full_screen) /* only when termcap codes are valid */
3229 {
3230 if (*T_CD)
3231 out_str(T_CD); /* clear to end of display */
3232 else if (*T_CE)
3233 out_str(T_CE); /* clear to end of line */
3234 }
3235 }
3236 else
3237 {
3238#ifdef FEAT_RIGHTLEFT
3239 if (cmdmsg_rl)
3240 {
3241 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0);
3242 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3243 }
3244 else
3245#endif
3246 {
3247 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns,
3248 ' ', ' ', 0);
3249 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3250 }
3251 }
3252}
3253
3254/*
3255 * Clear the command line.
3256 */
3257 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003258msg_clr_cmdline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259{
3260 msg_row = cmdline_row;
3261 msg_col = 0;
3262 msg_clr_eos_force();
3263}
3264
3265/*
3266 * end putting a message on the screen
3267 * call wait_return if the message does not fit in the available space
3268 * return TRUE if wait_return not called.
3269 */
3270 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003271msg_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272{
3273 /*
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02003274 * If the string is larger than the window,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 * or the ruler option is set and we run into it,
3276 * we have to redraw the window.
3277 * Do not do this if we are abandoning the file or editing the command line.
3278 */
3279 if (!exiting && need_wait_return && !(State & CMDLINE))
3280 {
3281 wait_return(FALSE);
3282 return FALSE;
3283 }
3284 out_flush();
3285 return TRUE;
3286}
3287
3288/*
3289 * If the written message runs into the shown command or ruler, we have to
3290 * wait for hit-return and redraw the window later.
3291 */
3292 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003293msg_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294{
3295 if (msg_row == Rows - 1 && msg_col >= sc_col)
3296 {
3297 need_wait_return = TRUE;
3298 redraw_cmdline = TRUE;
3299 }
3300}
3301
3302/*
3303 * May write a string to the redirection file.
3304 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3305 */
3306 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003307redir_write(char_u *str, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308{
3309 char_u *s = str;
3310 static int cur_col = 0;
3311
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003312 /* Don't do anything for displaying prompts and the like. */
3313 if (redir_off)
3314 return;
3315
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003316 /* If 'verbosefile' is set prepare for writing in that file. */
3317 if (*p_vfile != NUL && verbose_fd == NULL)
3318 verbose_open();
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003319
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003320 if (redirecting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 {
3322 /* If the string doesn't start with CR or NL, go to msg_col */
3323 if (*s != '\n' && *s != '\r')
3324 {
3325 while (cur_col < msg_col)
3326 {
3327#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003328 if (redir_execute)
3329 execute_redir_str((char_u *)" ", -1);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003330 else if (redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003332 else if (redir_vname)
3333 var_redir_str((char_u *)" ", -1);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003334 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003336 if (redir_fd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 fputs(" ", redir_fd);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003338 if (verbose_fd != NULL)
3339 fputs(" ", verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 ++cur_col;
3341 }
3342 }
3343
3344#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003345 if (redir_execute)
3346 execute_redir_str(s, maxlen);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003347 else if (redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 write_reg_contents(redir_reg, s, maxlen, TRUE);
Bram Moolenaarbc5d6dd2016-07-07 23:04:18 +02003349 else if (redir_vname)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003350 var_redir_str(s, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351#endif
3352
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003353 /* Write and adjust the current column. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3355 {
3356#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003357 if (!redir_reg && !redir_vname && !redir_execute)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003359 if (redir_fd != NULL)
3360 putc(*s, redir_fd);
3361 if (verbose_fd != NULL)
3362 putc(*s, verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 if (*s == '\r' || *s == '\n')
3364 cur_col = 0;
3365 else if (*s == '\t')
3366 cur_col += (8 - cur_col % 8);
3367 else
3368 ++cur_col;
3369 ++s;
3370 }
3371
3372 if (msg_silent != 0) /* should update msg_col */
3373 msg_col = cur_col;
3374 }
3375}
3376
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003377 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003378redirecting(void)
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003379{
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003380 return redir_fd != NULL || *p_vfile != NUL
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003381#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02003382 || redir_reg || redir_vname || redir_execute
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003383#endif
3384 ;
3385}
3386
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387/*
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00003388 * Before giving verbose message.
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003389 * Must always be called paired with verbose_leave()!
3390 */
3391 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003392verbose_enter(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003393{
3394 if (*p_vfile != NUL)
3395 ++msg_silent;
3396}
3397
3398/*
3399 * After giving verbose message.
3400 * Must always be called paired with verbose_enter()!
3401 */
3402 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003403verbose_leave(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003404{
3405 if (*p_vfile != NUL)
3406 if (--msg_silent < 0)
3407 msg_silent = 0;
3408}
3409
3410/*
3411 * Like verbose_enter() and set msg_scroll when displaying the message.
3412 */
3413 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003414verbose_enter_scroll(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003415{
3416 if (*p_vfile != NUL)
3417 ++msg_silent;
3418 else
3419 /* always scroll up, don't overwrite */
3420 msg_scroll = TRUE;
3421}
3422
3423/*
3424 * Like verbose_leave() and set cmdline_row when displaying the message.
3425 */
3426 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003427verbose_leave_scroll(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003428{
3429 if (*p_vfile != NUL)
3430 {
3431 if (--msg_silent < 0)
3432 msg_silent = 0;
3433 }
3434 else
3435 cmdline_row = msg_row;
3436}
3437
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003438/*
3439 * Called when 'verbosefile' is set: stop writing to the file.
3440 */
3441 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003442verbose_stop(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003443{
3444 if (verbose_fd != NULL)
3445 {
3446 fclose(verbose_fd);
3447 verbose_fd = NULL;
3448 }
3449 verbose_did_open = FALSE;
3450}
3451
3452/*
3453 * Open the file 'verbosefile'.
3454 * Return FAIL or OK.
3455 */
3456 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003457verbose_open(void)
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003458{
3459 if (verbose_fd == NULL && !verbose_did_open)
3460 {
3461 /* Only give the error message once. */
3462 verbose_did_open = TRUE;
3463
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003464 verbose_fd = mch_fopen((char *)p_vfile, "a");
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003465 if (verbose_fd == NULL)
3466 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003467 semsg(_(e_notopen), p_vfile);
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003468 return FAIL;
3469 }
3470 }
3471 return OK;
3472}
3473
3474/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 * Give a warning message (for searching).
3476 * Use 'w' highlighting and may repeat the message after redrawing
3477 */
3478 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003479give_warning(char_u *message, int hl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480{
3481 /* Don't do this for ":silent". */
3482 if (msg_silent != 0)
3483 return;
3484
3485 /* Don't want a hit-enter prompt here. */
3486 ++no_wait_return;
Bram Moolenaared203462004-06-16 11:19:22 +00003487
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488#ifdef FEAT_EVAL
3489 set_vim_var_string(VV_WARNINGMSG, message, -1);
3490#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003491 VIM_CLEAR(keep_msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 if (hl)
Bram Moolenaar8820b482017-03-16 17:23:31 +01003493 keep_msg_attr = HL_ATTR(HLF_W);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494 else
3495 keep_msg_attr = 0;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003496 if (msg_attr((char *)message, keep_msg_attr) && msg_scrolled == 0)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003497 set_keep_msg(message, keep_msg_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 msg_didout = FALSE; /* overwrite this message */
3499 msg_nowait = TRUE; /* don't wait for this message */
3500 msg_col = 0;
Bram Moolenaared203462004-06-16 11:19:22 +00003501
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 --no_wait_return;
3503}
3504
Bram Moolenaar113e1072019-01-20 15:30:40 +01003505#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarf8be4612017-06-23 20:52:40 +02003506 void
3507give_warning2(char_u *message, char_u *a1, int hl)
3508{
3509 vim_snprintf((char *)IObuff, IOSIZE, (char *)message, a1);
3510 give_warning(IObuff, hl);
3511}
Bram Moolenaar113e1072019-01-20 15:30:40 +01003512#endif
Bram Moolenaarf8be4612017-06-23 20:52:40 +02003513
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514/*
3515 * Advance msg cursor to column "col".
3516 */
3517 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003518msg_advance(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519{
3520 if (msg_silent != 0) /* nothing to advance to */
3521 {
3522 msg_col = col; /* for redirection, may fill it up later */
3523 return;
3524 }
3525 if (col >= Columns) /* not enough room */
3526 col = Columns - 1;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003527#ifdef FEAT_RIGHTLEFT
3528 if (cmdmsg_rl)
3529 while (msg_col > Columns - col)
3530 msg_putchar(' ');
3531 else
3532#endif
3533 while (msg_col < col)
3534 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535}
3536
3537#if defined(FEAT_CON_DIALOG) || defined(PROTO)
3538/*
3539 * Used for "confirm()" function, and the :confirm command prefix.
3540 * Versions which haven't got flexible dialogs yet, and console
3541 * versions, get this generic handler which uses the command line.
3542 *
3543 * type = one of:
3544 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC
3545 * title = title string (can be NULL for default)
3546 * (neither used in console dialogs at the moment)
3547 *
3548 * Format of the "buttons" string:
3549 * "Button1Name\nButton2Name\nButton3Name"
3550 * The first button should normally be the default/accept
3551 * The second button should be the 'Cancel' button
3552 * Other buttons- use your imagination!
3553 * A '&' in a button name becomes a shortcut, so each '&' should be before a
3554 * different letter.
3555 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003557do_dialog(
3558 int type UNUSED,
3559 char_u *title UNUSED,
3560 char_u *message,
3561 char_u *buttons,
3562 int dfltbutton,
3563 char_u *textfield UNUSED, /* IObuff for inputdialog(), NULL
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003564 otherwise */
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003565 int ex_cmd) /* when TRUE pressing : accepts default and starts
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003566 Ex command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567{
3568 int oldState;
3569 int retval = 0;
3570 char_u *hotkeys;
3571 int c;
3572 int i;
3573
3574#ifndef NO_CONSOLE
3575 /* Don't output anything in silent mode ("ex -s") */
3576 if (silent_mode)
3577 return dfltbutton; /* return default option */
3578#endif
3579
3580#ifdef FEAT_GUI_DIALOG
3581 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */
3582 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
3583 {
3584 c = gui_mch_dialog(type, title, message, buttons, dfltbutton,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003585 textfield, ex_cmd);
Bram Moolenaar8de49e12009-02-11 17:47:54 +00003586 /* avoid a hit-enter prompt without clearing the cmdline */
3587 need_wait_return = FALSE;
3588 emsg_on_display = FALSE;
3589 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590
3591 /* Flush output to avoid that further messages and redrawing is done
3592 * in the wrong order. */
3593 out_flush();
3594 gui_mch_update();
3595
3596 return c;
3597 }
3598#endif
3599
3600 oldState = State;
3601 State = CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603
3604 /*
3605 * Since we wait for a keypress, don't make the
3606 * user press RETURN as well afterwards.
3607 */
3608 ++no_wait_return;
3609 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton);
3610
3611 if (hotkeys != NULL)
3612 {
3613 for (;;)
3614 {
3615 /* Get a typed character directly from the user. */
3616 c = get_keystroke();
3617 switch (c)
3618 {
3619 case CAR: /* User accepts default option */
3620 case NL:
3621 retval = dfltbutton;
3622 break;
3623 case Ctrl_C: /* User aborts/cancels */
3624 case ESC:
3625 retval = 0;
3626 break;
3627 default: /* Could be a hotkey? */
3628 if (c < 0) /* special keys are ignored here */
3629 continue;
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003630 if (c == ':' && ex_cmd)
3631 {
3632 retval = dfltbutton;
3633 ins_char_typebuf(':');
3634 break;
3635 }
3636
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 /* Make the character lowercase, as chars in "hotkeys" are. */
3638 c = MB_TOLOWER(c);
3639 retval = 1;
3640 for (i = 0; hotkeys[i]; ++i)
3641 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 if (has_mbyte)
3643 {
3644 if ((*mb_ptr2char)(hotkeys + i) == c)
3645 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003646 i += (*mb_ptr2len)(hotkeys + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 }
3648 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 if (hotkeys[i] == c)
3650 break;
3651 ++retval;
3652 }
3653 if (hotkeys[i])
3654 break;
3655 /* No hotkey match, so keep waiting */
3656 continue;
3657 }
3658 break;
3659 }
3660
3661 vim_free(hotkeys);
3662 }
3663
3664 State = oldState;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 --no_wait_return;
3667 msg_end_prompt();
3668
3669 return retval;
3670}
3671
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672/*
3673 * Copy one character from "*from" to "*to", taking care of multi-byte
3674 * characters. Return the length of the character in bytes.
3675 */
3676 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003677copy_char(
3678 char_u *from,
3679 char_u *to,
3680 int lowercase) /* make character lower case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 int len;
3683 int c;
3684
3685 if (has_mbyte)
3686 {
3687 if (lowercase)
3688 {
3689 c = MB_TOLOWER((*mb_ptr2char)(from));
3690 return (*mb_char2bytes)(c, to);
3691 }
3692 else
3693 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003694 len = (*mb_ptr2len)(from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 mch_memmove(to, from, (size_t)len);
3696 return len;
3697 }
3698 }
3699 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 {
3701 if (lowercase)
3702 *to = (char_u)TOLOWER_LOC(*from);
3703 else
3704 *to = *from;
3705 return 1;
3706 }
3707}
3708
3709/*
3710 * Format the dialog string, and display it at the bottom of
3711 * the screen. Return a string of hotkey chars (if defined) for
3712 * each 'button'. If a button has no hotkey defined, the first character of
3713 * the button is used.
3714 * The hotkeys can be multi-byte characters, but without combining chars.
3715 *
3716 * Returns an allocated string with hotkeys, or NULL for error.
3717 */
3718 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003719msg_show_console_dialog(
3720 char_u *message,
3721 char_u *buttons,
3722 int dfltbutton)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723{
3724 int len = 0;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003725#define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 int lenhotkey = HOTK_LEN; /* count first button */
3727 char_u *hotk = NULL;
3728 char_u *msgp = NULL;
3729 char_u *hotkp = NULL;
3730 char_u *r;
3731 int copy;
3732#define HAS_HOTKEY_LEN 30
3733 char_u has_hotkey[HAS_HOTKEY_LEN];
3734 int first_hotkey = FALSE; /* first char of button is hotkey */
3735 int idx;
3736
3737 has_hotkey[0] = FALSE;
3738
3739 /*
3740 * First loop: compute the size of memory to allocate.
3741 * Second loop: copy to the allocated memory.
3742 */
3743 for (copy = 0; copy <= 1; ++copy)
3744 {
3745 r = buttons;
3746 idx = 0;
3747 while (*r)
3748 {
3749 if (*r == DLG_BUTTON_SEP)
3750 {
3751 if (copy)
3752 {
3753 *msgp++ = ',';
3754 *msgp++ = ' '; /* '\n' -> ', ' */
3755
3756 /* advance to next hotkey and set default hotkey */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 if (has_mbyte)
Bram Moolenaar6a516062007-07-05 08:11:42 +00003758 hotkp += STRLEN(hotkp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 ++hotkp;
Bram Moolenaar6a516062007-07-05 08:11:42 +00003761 hotkp[copy_char(r + 1, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 if (dfltbutton)
3763 --dfltbutton;
3764
3765 /* If no hotkey is specified first char is used. */
3766 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx])
3767 first_hotkey = TRUE;
3768 }
3769 else
3770 {
3771 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */
3772 lenhotkey += HOTK_LEN; /* each button needs a hotkey */
3773 if (idx < HAS_HOTKEY_LEN - 1)
3774 has_hotkey[++idx] = FALSE;
3775 }
3776 }
3777 else if (*r == DLG_HOTKEY_CHAR || first_hotkey)
3778 {
3779 if (*r == DLG_HOTKEY_CHAR)
3780 ++r;
3781 first_hotkey = FALSE;
3782 if (copy)
3783 {
3784 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */
3785 *msgp++ = *r;
3786 else
3787 {
3788 /* '&a' -> '[a]' */
3789 *msgp++ = (dfltbutton == 1) ? '[' : '(';
3790 msgp += copy_char(r, msgp, FALSE);
3791 *msgp++ = (dfltbutton == 1) ? ']' : ')';
3792
3793 /* redefine hotkey */
Bram Moolenaar6a516062007-07-05 08:11:42 +00003794 hotkp[copy_char(r, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 }
3796 }
3797 else
3798 {
3799 ++len; /* '&a' -> '[a]' */
3800 if (idx < HAS_HOTKEY_LEN - 1)
3801 has_hotkey[idx] = TRUE;
3802 }
3803 }
3804 else
3805 {
3806 /* everything else copy literally */
3807 if (copy)
3808 msgp += copy_char(r, msgp, FALSE);
3809 }
3810
3811 /* advance to the next character */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003812 MB_PTR_ADV(r);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 }
3814
3815 if (copy)
3816 {
3817 *msgp++ = ':';
3818 *msgp++ = ' ';
3819 *msgp = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 }
3821 else
3822 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003823 len += (int)(STRLEN(message)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003824 + 2 /* for the NL's */
3825 + STRLEN(buttons)
3826 + 3); /* for the ": " and NUL */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003827 lenhotkey++; /* for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828
3829 /* If no hotkey is specified first char is used. */
3830 if (!has_hotkey[0])
3831 {
3832 first_hotkey = TRUE;
3833 len += 2; /* "x" -> "[x]" */
3834 }
3835
3836 /*
3837 * Now allocate and load the strings
3838 */
3839 vim_free(confirm_msg);
3840 confirm_msg = alloc(len);
3841 if (confirm_msg == NULL)
3842 return NULL;
3843 *confirm_msg = NUL;
3844 hotk = alloc(lenhotkey);
3845 if (hotk == NULL)
3846 return NULL;
3847
3848 *confirm_msg = '\n';
3849 STRCPY(confirm_msg + 1, message);
3850
3851 msgp = confirm_msg + 1 + STRLEN(message);
3852 hotkp = hotk;
3853
Bram Moolenaar6a516062007-07-05 08:11:42 +00003854 /* Define first default hotkey. Keep the hotkey string NUL
3855 * terminated to avoid reading past the end. */
3856 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857
3858 /* Remember where the choices start, displaying starts here when
3859 * "hotkp" typed at the more prompt. */
3860 confirm_msg_tail = msgp;
3861 *msgp++ = '\n';
3862 }
3863 }
3864
3865 display_confirm_msg();
3866 return hotk;
3867}
3868
3869/*
3870 * Display the ":confirm" message. Also called when screen resized.
3871 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003872 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003873display_confirm_msg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874{
3875 /* avoid that 'q' at the more prompt truncates the message here */
3876 ++confirm_msg_used;
3877 if (confirm_msg != NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003878 msg_puts_attr((char *)confirm_msg, HL_ATTR(HLF_M));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 --confirm_msg_used;
3880}
3881
3882#endif /* FEAT_CON_DIALOG */
3883
3884#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
3885
3886 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003887vim_dialog_yesno(
3888 int type,
3889 char_u *title,
3890 char_u *message,
3891 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892{
3893 if (do_dialog(type,
3894 title == NULL ? (char_u *)_("Question") : title,
3895 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003896 (char_u *)_("&Yes\n&No"), dflt, NULL, FALSE) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 return VIM_YES;
3898 return VIM_NO;
3899}
3900
3901 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003902vim_dialog_yesnocancel(
3903 int type,
3904 char_u *title,
3905 char_u *message,
3906 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907{
3908 switch (do_dialog(type,
3909 title == NULL ? (char_u *)_("Question") : title,
3910 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003911 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 {
3913 case 1: return VIM_YES;
3914 case 2: return VIM_NO;
3915 }
3916 return VIM_CANCEL;
3917}
3918
3919 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003920vim_dialog_yesnoallcancel(
3921 int type,
3922 char_u *title,
3923 char_u *message,
3924 int dflt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925{
3926 switch (do_dialog(type,
3927 title == NULL ? (char_u *)"Question" : title,
3928 message,
3929 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003930 dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 {
3932 case 1: return VIM_YES;
3933 case 2: return VIM_NO;
3934 case 3: return VIM_ALL;
3935 case 4: return VIM_DISCARDALL;
3936 }
3937 return VIM_CANCEL;
3938}
3939
3940#endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */
3941
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003942#if defined(FEAT_EVAL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003943static char *e_printf = N_("E766: Insufficient arguments for printf()");
3944
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003945/*
3946 * Get number argument from "idxp" entry in "tvs". First entry is 1.
3947 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02003948 static varnumber_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003949tv_nr(typval_T *tvs, int *idxp)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003950{
3951 int idx = *idxp - 1;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02003952 varnumber_T n = 0;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003953 int err = FALSE;
3954
3955 if (tvs[idx].v_type == VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003956 emsg(_(e_printf));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003957 else
3958 {
3959 ++*idxp;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01003960 n = tv_get_number_chk(&tvs[idx], &err);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003961 if (err)
3962 n = 0;
3963 }
3964 return n;
3965}
3966
3967/*
3968 * Get string argument from "idxp" entry in "tvs". First entry is 1.
Bram Moolenaard155d7a2018-12-21 16:04:21 +01003969 * If "tofree" is NULL tv_get_string_chk() is used. Some types (e.g. List)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02003970 * are not converted to a string.
3971 * If "tofree" is not NULL echo_string() is used. All types are converted to
3972 * a string with the same format as ":echo". The caller must free "*tofree".
Bram Moolenaar1e015462005-09-25 22:16:38 +00003973 * Returns NULL for an error.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003974 */
3975 static char *
Bram Moolenaare5a8f352016-08-16 21:30:54 +02003976tv_str(typval_T *tvs, int *idxp, char_u **tofree)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003977{
Bram Moolenaare5a8f352016-08-16 21:30:54 +02003978 int idx = *idxp - 1;
3979 char *s = NULL;
3980 static char_u numbuf[NUMBUFLEN];
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003981
3982 if (tvs[idx].v_type == VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003983 emsg(_(e_printf));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003984 else
3985 {
3986 ++*idxp;
Bram Moolenaare5a8f352016-08-16 21:30:54 +02003987 if (tofree != NULL)
3988 s = (char *)echo_string(&tvs[idx], tofree, numbuf, get_copyID());
3989 else
Bram Moolenaard155d7a2018-12-21 16:04:21 +01003990 s = (char *)tv_get_string_chk(&tvs[idx]);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003991 }
3992 return s;
3993}
Bram Moolenaara7241f52008-06-24 20:39:31 +00003994
3995# ifdef FEAT_FLOAT
3996/*
3997 * Get float argument from "idxp" entry in "tvs". First entry is 1.
3998 */
3999 static double
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004000tv_float(typval_T *tvs, int *idxp)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004001{
4002 int idx = *idxp - 1;
4003 double f = 0;
4004
4005 if (tvs[idx].v_type == VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004006 emsg(_(e_printf));
Bram Moolenaara7241f52008-06-24 20:39:31 +00004007 else
4008 {
4009 ++*idxp;
4010 if (tvs[idx].v_type == VAR_FLOAT)
4011 f = tvs[idx].vval.v_float;
Bram Moolenaarc4a87012008-06-28 14:10:11 +00004012 else if (tvs[idx].v_type == VAR_NUMBER)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004013 f = (double)tvs[idx].vval.v_number;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004014 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004015 emsg(_("E807: Expected Float argument for printf()"));
Bram Moolenaara7241f52008-06-24 20:39:31 +00004016 }
4017 return f;
4018}
4019# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004020#endif
4021
Bram Moolenaar7f7bd292016-08-28 21:21:31 +02004022#ifdef FEAT_FLOAT
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004023/*
Bram Moolenaare9997822016-08-28 16:03:38 +02004024 * Return the representation of infinity for printf() function:
4025 * "-inf", "inf", "+inf", " inf", "-INF", "INF", "+INF" or " INF".
4026 */
4027 static const char *
4028infinity_str(int positive,
4029 char fmt_spec,
4030 int force_sign,
4031 int space_for_positive)
4032{
4033 static const char *table[] =
4034 {
4035 "-inf", "inf", "+inf", " inf",
4036 "-INF", "INF", "+INF", " INF"
4037 };
4038 int idx = positive * (1 + force_sign + force_sign * space_for_positive);
4039
4040 if (ASCII_ISUPPER(fmt_spec))
4041 idx += 4;
4042 return table[idx];
4043}
Bram Moolenaar7f7bd292016-08-28 21:21:31 +02004044#endif
Bram Moolenaare9997822016-08-28 16:03:38 +02004045
4046/*
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004047 * This code was included to provide a portable vsnprintf() and snprintf().
Bram Moolenaara2031822006-03-07 22:29:51 +00004048 * Some systems may provide their own, but we always use this one for
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004049 * consistency.
4050 *
4051 * This code is based on snprintf.c - a portable implementation of snprintf
4052 * by Mark Martinec <mark.martinec@ijs.si>, Version 2.2, 2000-10-06.
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00004053 * Included with permission. It was heavily modified to fit in Vim.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004054 * The original code, including useful comments, can be found here:
4055 * http://www.ijs.si/software/snprintf/
4056 *
4057 * This snprintf() only supports the following conversion specifiers:
4058 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
4059 * with flags: '-', '+', ' ', '0' and '#'.
4060 * An asterisk is supported for field width as well as precision.
4061 *
Bram Moolenaar04186092016-08-29 21:55:35 +02004062 * Limited support for floating point was added: 'f', 'F', 'e', 'E', 'g', 'G'.
Bram Moolenaara7241f52008-06-24 20:39:31 +00004063 *
Bram Moolenaare9997822016-08-28 16:03:38 +02004064 * Length modifiers 'h' (short int) and 'l' (long int) and 'll' (long long int)
4065 * are supported.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004066 *
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004067 * The locale is not used, the string is used as a byte string. This is only
4068 * relevant for double-byte encodings where the second byte may be '%'.
4069 *
Bram Moolenaara2031822006-03-07 22:29:51 +00004070 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL
4071 * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004072 *
4073 * The return value is the number of characters which would be generated
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004074 * for the given input, excluding the trailing NUL. If this value
Bram Moolenaara2031822006-03-07 22:29:51 +00004075 * is greater or equal to "str_m", not all characters from the result
4076 * have been stored in str, output bytes beyond the ("str_m"-1) -th character
4077 * are discarded. If "str_m" is greater than zero it is guaranteed
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004078 * the resulting string will be NUL-terminated.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004079 */
4080
4081/*
4082 * When va_list is not supported we only define vim_snprintf().
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004083 *
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004084 * vim_vsnprintf_typval() can be invoked with either "va_list" or a list of
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004085 * "typval_T". When the latter is not used it must be NULL.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004086 */
4087
4088/* When generating prototypes all of this is skipped, cproto doesn't
4089 * understand this. */
4090#ifndef PROTO
Bram Moolenaara800b422010-06-27 01:15:55 +02004091
Bram Moolenaara800b422010-06-27 01:15:55 +02004092/* Like vim_vsnprintf() but append to the string. */
4093 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004094vim_snprintf_add(char *str, size_t str_m, const char *fmt, ...)
Bram Moolenaara800b422010-06-27 01:15:55 +02004095{
4096 va_list ap;
4097 int str_l;
4098 size_t len = STRLEN(str);
4099 size_t space;
4100
4101 if (str_m <= len)
4102 space = 0;
4103 else
4104 space = str_m - len;
4105 va_start(ap, fmt);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004106 str_l = vim_vsnprintf(str + len, space, fmt, ap);
Bram Moolenaara800b422010-06-27 01:15:55 +02004107 va_end(ap);
4108 return str_l;
4109}
Bram Moolenaara800b422010-06-27 01:15:55 +02004110
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004111 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004112vim_snprintf(char *str, size_t str_m, const char *fmt, ...)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004113{
4114 va_list ap;
4115 int str_l;
4116
4117 va_start(ap, fmt);
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004118 str_l = vim_vsnprintf(str, str_m, fmt, ap);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004119 va_end(ap);
4120 return str_l;
4121}
4122
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004123 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004124vim_vsnprintf(
4125 char *str,
4126 size_t str_m,
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004127 const char *fmt,
Bram Moolenaar8327d1d2017-07-11 22:34:51 +02004128 va_list ap)
4129{
4130 return vim_vsnprintf_typval(str, str_m, fmt, ap, NULL);
4131}
4132
4133 int
4134vim_vsnprintf_typval(
4135 char *str,
4136 size_t str_m,
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004137 const char *fmt,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004138 va_list ap,
4139 typval_T *tvs)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004140{
4141 size_t str_l = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004142 const char *p = fmt;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004143 int arg_idx = 1;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004144
4145 if (p == NULL)
4146 p = "";
4147 while (*p != NUL)
4148 {
4149 if (*p != '%')
4150 {
4151 char *q = strchr(p + 1, '%');
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004152 size_t n = (q == NULL) ? STRLEN(p) : (size_t)(q - p);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004153
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004154 /* Copy up to the next '%' or NUL without any changes. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004155 if (str_l < str_m)
4156 {
4157 size_t avail = str_m - str_l;
4158
4159 mch_memmove(str + str_l, p, n > avail ? avail : n);
4160 }
4161 p += n;
4162 str_l += n;
4163 }
4164 else
4165 {
4166 size_t min_field_width = 0, precision = 0;
4167 int zero_padding = 0, precision_specified = 0, justify_left = 0;
4168 int alternate_form = 0, force_sign = 0;
4169
4170 /* If both the ' ' and '+' flags appear, the ' ' flag should be
4171 * ignored. */
4172 int space_for_positive = 1;
4173
4174 /* allowed values: \0, h, l, L */
4175 char length_modifier = '\0';
4176
4177 /* temporary buffer for simple numeric->string conversion */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004178# if defined(FEAT_FLOAT)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004179# define TMP_LEN 350 /* On my system 1e308 is the biggest number possible.
Bram Moolenaara7241f52008-06-24 20:39:31 +00004180 * That sounds reasonable to use as the maximum
4181 * printable. */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004182# elif defined(FEAT_NUM64)
4183# define TMP_LEN 66
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004184# else
Bram Moolenaar91984b92016-08-16 21:58:41 +02004185# define TMP_LEN 34
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004186# endif
Bram Moolenaara7241f52008-06-24 20:39:31 +00004187 char tmp[TMP_LEN];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004188
4189 /* string address in case of string argument */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004190 const char *str_arg = NULL;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004191
4192 /* natural field width of arg without padding and sign */
4193 size_t str_arg_l;
4194
4195 /* unsigned char argument value - only defined for c conversion.
4196 * N.B. standard explicitly states the char argument for the c
4197 * conversion is unsigned */
4198 unsigned char uchar_arg;
4199
4200 /* number of zeros to be inserted for numeric conversions as
4201 * required by the precision or minimal field width */
4202 size_t number_of_zeros_to_pad = 0;
4203
4204 /* index into tmp where zero padding is to be inserted */
4205 size_t zero_padding_insertion_ind = 0;
4206
4207 /* current conversion specifier character */
4208 char fmt_spec = '\0';
4209
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004210 /* buffer for 's' and 'S' specs */
4211 char_u *tofree = NULL;
4212
4213
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004214 p++; /* skip '%' */
4215
4216 /* parse flags */
4217 while (*p == '0' || *p == '-' || *p == '+' || *p == ' '
4218 || *p == '#' || *p == '\'')
4219 {
4220 switch (*p)
4221 {
4222 case '0': zero_padding = 1; break;
4223 case '-': justify_left = 1; break;
4224 case '+': force_sign = 1; space_for_positive = 0; break;
4225 case ' ': force_sign = 1;
4226 /* If both the ' ' and '+' flags appear, the ' '
4227 * flag should be ignored */
4228 break;
4229 case '#': alternate_form = 1; break;
4230 case '\'': break;
4231 }
4232 p++;
4233 }
4234 /* If the '0' and '-' flags both appear, the '0' flag should be
4235 * ignored. */
4236
4237 /* parse field width */
4238 if (*p == '*')
4239 {
4240 int j;
4241
4242 p++;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004243 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004244# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004245 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004246# endif
4247 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004248 if (j >= 0)
4249 min_field_width = j;
4250 else
4251 {
4252 min_field_width = -j;
4253 justify_left = 1;
4254 }
4255 }
4256 else if (VIM_ISDIGIT((int)(*p)))
4257 {
4258 /* size_t could be wider than unsigned int; make sure we treat
4259 * argument like common implementations do */
4260 unsigned int uj = *p++ - '0';
4261
4262 while (VIM_ISDIGIT((int)(*p)))
4263 uj = 10 * uj + (unsigned int)(*p++ - '0');
4264 min_field_width = uj;
4265 }
4266
4267 /* parse precision */
4268 if (*p == '.')
4269 {
4270 p++;
4271 precision_specified = 1;
4272 if (*p == '*')
4273 {
4274 int j;
4275
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004276 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004277# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004278 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004279# endif
4280 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004281 p++;
4282 if (j >= 0)
4283 precision = j;
4284 else
4285 {
4286 precision_specified = 0;
4287 precision = 0;
4288 }
4289 }
4290 else if (VIM_ISDIGIT((int)(*p)))
4291 {
4292 /* size_t could be wider than unsigned int; make sure we
4293 * treat argument like common implementations do */
4294 unsigned int uj = *p++ - '0';
4295
4296 while (VIM_ISDIGIT((int)(*p)))
4297 uj = 10 * uj + (unsigned int)(*p++ - '0');
4298 precision = uj;
4299 }
4300 }
4301
4302 /* parse 'h', 'l' and 'll' length modifiers */
4303 if (*p == 'h' || *p == 'l')
4304 {
4305 length_modifier = *p;
4306 p++;
4307 if (length_modifier == 'l' && *p == 'l')
4308 {
4309 /* double l = long long */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004310# ifdef FEAT_NUM64
4311 length_modifier = 'L';
4312# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004313 length_modifier = 'l'; /* treat it as a single 'l' */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004314# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004315 p++;
4316 }
4317 }
4318 fmt_spec = *p;
4319
4320 /* common synonyms: */
4321 switch (fmt_spec)
4322 {
4323 case 'i': fmt_spec = 'd'; break;
4324 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break;
4325 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break;
4326 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break;
4327 default: break;
4328 }
4329
Bram Moolenaar38ee6b02016-07-12 21:11:33 +02004330# if defined(FEAT_EVAL) && defined(FEAT_NUM64)
4331 switch (fmt_spec)
4332 {
4333 case 'd': case 'u': case 'o': case 'x': case 'X':
4334 if (tvs != NULL && length_modifier == '\0')
4335 length_modifier = 'L';
4336 }
4337# endif
4338
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004339 /* get parameter value, do initial processing */
4340 switch (fmt_spec)
4341 {
4342 /* '%' and 'c' behave similar to 's' regarding flags and field
4343 * widths */
4344 case '%':
4345 case 'c':
4346 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004347 case 'S':
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004348 str_arg_l = 1;
4349 switch (fmt_spec)
4350 {
4351 case '%':
4352 str_arg = p;
4353 break;
4354
4355 case 'c':
4356 {
4357 int j;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004358
4359 j =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004360# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004361 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004362# endif
4363 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004364 /* standard demands unsigned char */
4365 uchar_arg = (unsigned char)j;
4366 str_arg = (char *)&uchar_arg;
4367 break;
4368 }
4369
4370 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004371 case 'S':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004372 str_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004373# if defined(FEAT_EVAL)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004374 tvs != NULL ? tv_str(tvs, &arg_idx, &tofree) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004375# endif
4376 va_arg(ap, char *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004377 if (str_arg == NULL)
4378 {
4379 str_arg = "[NULL]";
4380 str_arg_l = 6;
4381 }
4382 /* make sure not to address string beyond the specified
4383 * precision !!! */
4384 else if (!precision_specified)
4385 str_arg_l = strlen(str_arg);
4386 /* truncate string if necessary as requested by precision */
4387 else if (precision == 0)
4388 str_arg_l = 0;
4389 else
4390 {
Bram Moolenaar223b4312006-05-13 11:09:22 +00004391 /* Don't put the #if inside memchr(), it can be a
4392 * macro. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004393 /* memchr on HP does not like n > 2^31 !!! */
4394 char *q = memchr(str_arg, '\0',
Bram Moolenaar223b4312006-05-13 11:09:22 +00004395 precision <= (size_t)0x7fffffffL ? precision
4396 : (size_t)0x7fffffffL);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004397 str_arg_l = (q == NULL) ? precision
4398 : (size_t)(q - str_arg);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004399 }
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004400 if (fmt_spec == 'S')
4401 {
4402 if (min_field_width != 0)
4403 min_field_width += STRLEN(str_arg)
4404 - mb_string2cells((char_u *)str_arg, -1);
4405 if (precision)
4406 {
Bram Moolenaarce0fac22019-09-27 13:32:06 +02004407 char_u *p1;
4408 size_t i = 0;
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004409
Bram Moolenaarce0fac22019-09-27 13:32:06 +02004410 for (p1 = (char_u *)str_arg; *p1;
4411 p1 += mb_ptr2len(p1))
4412 {
4413 i += (size_t)mb_ptr2cells(p1);
4414 if (i > precision)
4415 break;
4416 }
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004417 str_arg_l = precision = p1 - (char_u *)str_arg;
4418 }
4419 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004420 break;
4421
4422 default:
4423 break;
4424 }
4425 break;
4426
Bram Moolenaar91984b92016-08-16 21:58:41 +02004427 case 'd': case 'u':
4428 case 'b': case 'B':
4429 case 'o':
4430 case 'x': case 'X':
4431 case 'p':
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004432 {
Bram Moolenaar91984b92016-08-16 21:58:41 +02004433 /* NOTE: the u, b, o, x, X and p conversion specifiers
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004434 * imply the value is unsigned; d implies a signed
4435 * value */
4436
4437 /* 0 if numeric argument is zero (or if pointer is
4438 * NULL for 'p'), +1 if greater than zero (or nonzero
4439 * for unsigned arguments), -1 if negative (unsigned
4440 * argument is never negative) */
4441 int arg_sign = 0;
4442
4443 /* only defined for length modifier h, or for no
4444 * length modifiers */
4445 int int_arg = 0;
4446 unsigned int uint_arg = 0;
4447
4448 /* only defined for length modifier l */
4449 long int long_arg = 0;
4450 unsigned long int ulong_arg = 0;
4451
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004452# ifdef FEAT_NUM64
4453 /* only defined for length modifier ll */
4454 varnumber_T llong_arg = 0;
4455 uvarnumber_T ullong_arg = 0;
4456# endif
4457
Bram Moolenaare9997822016-08-28 16:03:38 +02004458 /* only defined for b conversion */
Bram Moolenaar91984b92016-08-16 21:58:41 +02004459 uvarnumber_T bin_arg = 0;
4460
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004461 /* pointer argument value -only defined for p
4462 * conversion */
4463 void *ptr_arg = NULL;
4464
4465 if (fmt_spec == 'p')
4466 {
4467 length_modifier = '\0';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004468 ptr_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004469# if defined(FEAT_EVAL)
Bram Moolenaare5a8f352016-08-16 21:30:54 +02004470 tvs != NULL ? (void *)tv_str(tvs, &arg_idx,
4471 NULL) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004472# endif
4473 va_arg(ap, void *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004474 if (ptr_arg != NULL)
4475 arg_sign = 1;
4476 }
Bram Moolenaar91984b92016-08-16 21:58:41 +02004477 else if (fmt_spec == 'b' || fmt_spec == 'B')
4478 {
4479 bin_arg =
4480# if defined(FEAT_EVAL)
4481 tvs != NULL ?
4482 (uvarnumber_T)tv_nr(tvs, &arg_idx) :
4483# endif
4484 va_arg(ap, uvarnumber_T);
4485 if (bin_arg != 0)
4486 arg_sign = 1;
4487 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004488 else if (fmt_spec == 'd')
4489 {
4490 /* signed */
4491 switch (length_modifier)
4492 {
4493 case '\0':
4494 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004495 /* char and short arguments are passed as int. */
4496 int_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004497# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004498 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004499# endif
4500 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004501 if (int_arg > 0)
4502 arg_sign = 1;
4503 else if (int_arg < 0)
4504 arg_sign = -1;
4505 break;
4506 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004507 long_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004508# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004509 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004510# endif
4511 va_arg(ap, long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004512 if (long_arg > 0)
4513 arg_sign = 1;
4514 else if (long_arg < 0)
4515 arg_sign = -1;
4516 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004517# ifdef FEAT_NUM64
4518 case 'L':
4519 llong_arg =
4520# if defined(FEAT_EVAL)
4521 tvs != NULL ? tv_nr(tvs, &arg_idx) :
4522# endif
4523 va_arg(ap, varnumber_T);
4524 if (llong_arg > 0)
4525 arg_sign = 1;
4526 else if (llong_arg < 0)
4527 arg_sign = -1;
4528 break;
4529# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004530 }
4531 }
4532 else
4533 {
4534 /* unsigned */
4535 switch (length_modifier)
4536 {
4537 case '\0':
4538 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004539 uint_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004540# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004541 tvs != NULL ? (unsigned)
4542 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004543# endif
4544 va_arg(ap, unsigned int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004545 if (uint_arg != 0)
4546 arg_sign = 1;
4547 break;
4548 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004549 ulong_arg =
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004550# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004551 tvs != NULL ? (unsigned long)
4552 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004553# endif
4554 va_arg(ap, unsigned long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004555 if (ulong_arg != 0)
4556 arg_sign = 1;
4557 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004558# ifdef FEAT_NUM64
4559 case 'L':
4560 ullong_arg =
4561# if defined(FEAT_EVAL)
4562 tvs != NULL ? (uvarnumber_T)
4563 tv_nr(tvs, &arg_idx) :
4564# endif
4565 va_arg(ap, uvarnumber_T);
4566 if (ullong_arg != 0)
4567 arg_sign = 1;
4568 break;
4569# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004570 }
4571 }
4572
4573 str_arg = tmp;
4574 str_arg_l = 0;
4575
4576 /* NOTE:
4577 * For d, i, u, o, x, and X conversions, if precision is
4578 * specified, the '0' flag should be ignored. This is so
4579 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux,
4580 * FreeBSD, NetBSD; but not with Perl.
4581 */
4582 if (precision_specified)
4583 zero_padding = 0;
4584 if (fmt_spec == 'd')
4585 {
4586 if (force_sign && arg_sign >= 0)
4587 tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
4588 /* leave negative numbers for sprintf to handle, to
4589 * avoid handling tricky cases like (short int)-32768 */
4590 }
4591 else if (alternate_form)
4592 {
4593 if (arg_sign != 0
Bram Moolenaar91984b92016-08-16 21:58:41 +02004594 && (fmt_spec == 'b' || fmt_spec == 'B'
4595 || fmt_spec == 'x' || fmt_spec == 'X') )
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004596 {
4597 tmp[str_arg_l++] = '0';
4598 tmp[str_arg_l++] = fmt_spec;
4599 }
4600 /* alternate form should have no effect for p
4601 * conversion, but ... */
4602 }
4603
4604 zero_padding_insertion_ind = str_arg_l;
4605 if (!precision_specified)
4606 precision = 1; /* default precision is 1 */
4607 if (precision == 0 && arg_sign == 0)
4608 {
4609 /* When zero value is formatted with an explicit
4610 * precision 0, the resulting formatted string is
Bram Moolenaar91984b92016-08-16 21:58:41 +02004611 * empty (d, i, u, b, B, o, x, X, p). */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004612 }
4613 else
4614 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004615 char f[6];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004616 int f_l = 0;
4617
4618 /* construct a simple format string for sprintf */
4619 f[f_l++] = '%';
4620 if (!length_modifier)
4621 ;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004622 else if (length_modifier == 'L')
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004623 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004624# ifdef FEAT_NUM64
Bram Moolenaar4f974752019-02-17 17:44:42 +01004625# ifdef MSWIN
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004626 f[f_l++] = 'I';
4627 f[f_l++] = '6';
4628 f[f_l++] = '4';
4629# else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004630 f[f_l++] = 'l';
4631 f[f_l++] = 'l';
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004632# endif
4633# else
4634 f[f_l++] = 'l';
4635# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004636 }
4637 else
4638 f[f_l++] = length_modifier;
4639 f[f_l++] = fmt_spec;
4640 f[f_l++] = '\0';
4641
4642 if (fmt_spec == 'p')
4643 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg);
Bram Moolenaar91984b92016-08-16 21:58:41 +02004644 else if (fmt_spec == 'b' || fmt_spec == 'B')
4645 {
4646 char b[8 * sizeof(uvarnumber_T)];
4647 size_t b_l = 0;
4648 uvarnumber_T bn = bin_arg;
4649
4650 do
4651 {
4652 b[sizeof(b) - ++b_l] = '0' + (bn & 0x1);
4653 bn >>= 1;
4654 }
4655 while (bn != 0);
4656
4657 memcpy(tmp + str_arg_l, b + sizeof(b) - b_l, b_l);
4658 str_arg_l += b_l;
4659 }
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004660 else if (fmt_spec == 'd')
4661 {
4662 /* signed */
4663 switch (length_modifier)
4664 {
4665 case '\0':
4666 case 'h': str_arg_l += sprintf(
4667 tmp + str_arg_l, f, int_arg);
4668 break;
4669 case 'l': str_arg_l += sprintf(
4670 tmp + str_arg_l, f, long_arg);
4671 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004672# ifdef FEAT_NUM64
4673 case 'L': str_arg_l += sprintf(
4674 tmp + str_arg_l, f, llong_arg);
4675 break;
4676# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004677 }
4678 }
4679 else
4680 {
4681 /* unsigned */
4682 switch (length_modifier)
4683 {
4684 case '\0':
4685 case 'h': str_arg_l += sprintf(
4686 tmp + str_arg_l, f, uint_arg);
4687 break;
4688 case 'l': str_arg_l += sprintf(
4689 tmp + str_arg_l, f, ulong_arg);
4690 break;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004691# ifdef FEAT_NUM64
4692 case 'L': str_arg_l += sprintf(
4693 tmp + str_arg_l, f, ullong_arg);
4694 break;
4695# endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004696 }
4697 }
4698
4699 /* include the optional minus sign and possible
4700 * "0x" in the region before the zero padding
4701 * insertion point */
4702 if (zero_padding_insertion_ind < str_arg_l
4703 && tmp[zero_padding_insertion_ind] == '-')
4704 zero_padding_insertion_ind++;
4705 if (zero_padding_insertion_ind + 1 < str_arg_l
4706 && tmp[zero_padding_insertion_ind] == '0'
4707 && (tmp[zero_padding_insertion_ind + 1] == 'x'
4708 || tmp[zero_padding_insertion_ind + 1] == 'X'))
4709 zero_padding_insertion_ind += 2;
4710 }
4711
4712 {
4713 size_t num_of_digits = str_arg_l
4714 - zero_padding_insertion_ind;
4715
4716 if (alternate_form && fmt_spec == 'o'
4717 /* unless zero is already the first
4718 * character */
4719 && !(zero_padding_insertion_ind < str_arg_l
4720 && tmp[zero_padding_insertion_ind] == '0'))
4721 {
4722 /* assure leading zero for alternate-form
4723 * octal numbers */
4724 if (!precision_specified
4725 || precision < num_of_digits + 1)
4726 {
4727 /* precision is increased to force the
4728 * first character to be zero, except if a
4729 * zero value is formatted with an
4730 * explicit precision of zero */
4731 precision = num_of_digits + 1;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004732 }
4733 }
4734 /* zero padding to specified precision? */
4735 if (num_of_digits < precision)
4736 number_of_zeros_to_pad = precision - num_of_digits;
4737 }
4738 /* zero padding to specified minimal field width? */
4739 if (!justify_left && zero_padding)
4740 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004741 int n = (int)(min_field_width - (str_arg_l
4742 + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004743 if (n > 0)
4744 number_of_zeros_to_pad += n;
4745 }
4746 break;
4747 }
4748
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004749# ifdef FEAT_FLOAT
Bram Moolenaara7241f52008-06-24 20:39:31 +00004750 case 'f':
Bram Moolenaar04186092016-08-29 21:55:35 +02004751 case 'F':
Bram Moolenaara7241f52008-06-24 20:39:31 +00004752 case 'e':
4753 case 'E':
4754 case 'g':
4755 case 'G':
4756 {
4757 /* Floating point. */
4758 double f;
4759 double abs_f;
4760 char format[40];
4761 int l;
4762 int remove_trailing_zeroes = FALSE;
4763
4764 f =
Bram Moolenaara7241f52008-06-24 20:39:31 +00004765# if defined(FEAT_EVAL)
4766 tvs != NULL ? tv_float(tvs, &arg_idx) :
4767# endif
4768 va_arg(ap, double);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004769 abs_f = f < 0 ? -f : f;
4770
4771 if (fmt_spec == 'g' || fmt_spec == 'G')
4772 {
4773 /* Would be nice to use %g directly, but it prints
4774 * "1.0" as "1", we don't want that. */
4775 if ((abs_f >= 0.001 && abs_f < 10000000.0)
4776 || abs_f == 0.0)
Bram Moolenaar04186092016-08-29 21:55:35 +02004777 fmt_spec = ASCII_ISUPPER(fmt_spec) ? 'F' : 'f';
Bram Moolenaara7241f52008-06-24 20:39:31 +00004778 else
4779 fmt_spec = fmt_spec == 'g' ? 'e' : 'E';
4780 remove_trailing_zeroes = TRUE;
4781 }
4782
Bram Moolenaar04186092016-08-29 21:55:35 +02004783 if ((fmt_spec == 'f' || fmt_spec == 'F') &&
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004784# ifdef VAX
Bram Moolenaarc9372132009-01-13 15:38:37 +00004785 abs_f > 1.0e38
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004786# else
Bram Moolenaarc9372132009-01-13 15:38:37 +00004787 abs_f > 1.0e307
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004788# endif
Bram Moolenaarc9372132009-01-13 15:38:37 +00004789 )
Bram Moolenaara7241f52008-06-24 20:39:31 +00004790 {
4791 /* Avoid a buffer overflow */
Bram Moolenaare9997822016-08-28 16:03:38 +02004792 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec,
4793 force_sign, space_for_positive));
4794 str_arg_l = STRLEN(tmp);
4795 zero_padding = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004796 }
4797 else
4798 {
Bram Moolenaare9997822016-08-28 16:03:38 +02004799 if (isnan(f))
4800 {
4801 /* Not a number: nan or NAN */
4802 STRCPY(tmp, ASCII_ISUPPER(fmt_spec) ? "NAN"
4803 : "nan");
4804 str_arg_l = 3;
4805 zero_padding = 0;
4806 }
4807 else if (isinf(f))
4808 {
4809 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec,
4810 force_sign, space_for_positive));
4811 str_arg_l = STRLEN(tmp);
4812 zero_padding = 0;
4813 }
4814 else
Bram Moolenaar191f18b2018-02-04 16:38:47 +01004815 {
Bram Moolenaare9997822016-08-28 16:03:38 +02004816 /* Regular float number */
Bram Moolenaar04186092016-08-29 21:55:35 +02004817 format[0] = '%';
4818 l = 1;
4819 if (force_sign)
4820 format[l++] = space_for_positive ? ' ' : '+';
4821 if (precision_specified)
4822 {
4823 size_t max_prec = TMP_LEN - 10;
4824
4825 /* Make sure we don't get more digits than we
4826 * have room for. */
4827 if ((fmt_spec == 'f' || fmt_spec == 'F')
4828 && abs_f > 1.0)
4829 max_prec -= (size_t)log10(abs_f);
4830 if (precision > max_prec)
4831 precision = max_prec;
4832 l += sprintf(format + l, ".%d", (int)precision);
4833 }
Bram Moolenaar965ed142016-08-29 22:31:24 +02004834 format[l] = fmt_spec == 'F' ? 'f' : fmt_spec;
Bram Moolenaar04186092016-08-29 21:55:35 +02004835 format[l + 1] = NUL;
4836
Bram Moolenaare9997822016-08-28 16:03:38 +02004837 str_arg_l = sprintf(tmp, format, f);
Bram Moolenaar191f18b2018-02-04 16:38:47 +01004838 }
Bram Moolenaar99922372016-08-27 15:26:35 +02004839
Bram Moolenaara7241f52008-06-24 20:39:31 +00004840 if (remove_trailing_zeroes)
4841 {
4842 int i;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004843 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004844
4845 /* Using %g or %G: remove superfluous zeroes. */
Bram Moolenaar04186092016-08-29 21:55:35 +02004846 if (fmt_spec == 'f' || fmt_spec == 'F')
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004847 tp = tmp + str_arg_l - 1;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004848 else
4849 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004850 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00004851 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004852 if (tp != NULL)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004853 {
4854 /* Remove superfluous '+' and leading
4855 * zeroes from the exponent. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004856 if (tp[1] == '+')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004857 {
4858 /* Change "1.0e+07" to "1.0e07" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004859 STRMOVE(tp + 1, tp + 2);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004860 --str_arg_l;
4861 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004862 i = (tp[1] == '-') ? 2 : 1;
4863 while (tp[i] == '0')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004864 {
4865 /* Change "1.0e07" to "1.0e7" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004866 STRMOVE(tp + i, tp + i + 1);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004867 --str_arg_l;
4868 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004869 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004870 }
4871 }
4872
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004873 if (tp != NULL && !precision_specified)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004874 /* Remove trailing zeroes, but keep the one
4875 * just after a dot. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004876 while (tp > tmp + 2 && *tp == '0'
4877 && tp[-1] != '.')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004878 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004879 STRMOVE(tp, tp + 1);
4880 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004881 --str_arg_l;
4882 }
4883 }
4884 else
4885 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004886 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004887
4888 /* Be consistent: some printf("%e") use 1.0e+12
4889 * and some 1.0e+012. Remove one zero in the last
4890 * case. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004891 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00004892 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004893 if (tp != NULL && (tp[1] == '+' || tp[1] == '-')
4894 && tp[2] == '0'
4895 && vim_isdigit(tp[3])
4896 && vim_isdigit(tp[4]))
Bram Moolenaara7241f52008-06-24 20:39:31 +00004897 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004898 STRMOVE(tp + 2, tp + 3);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004899 --str_arg_l;
4900 }
4901 }
4902 }
Bram Moolenaar04186092016-08-29 21:55:35 +02004903 if (zero_padding && min_field_width > str_arg_l
4904 && (tmp[0] == '-' || force_sign))
4905 {
4906 /* padding 0's should be inserted after the sign */
4907 number_of_zeros_to_pad = min_field_width - str_arg_l;
4908 zero_padding_insertion_ind = 1;
4909 }
Bram Moolenaara7241f52008-06-24 20:39:31 +00004910 str_arg = tmp;
4911 break;
4912 }
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004913# endif
Bram Moolenaara7241f52008-06-24 20:39:31 +00004914
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004915 default:
4916 /* unrecognized conversion specifier, keep format string
4917 * as-is */
4918 zero_padding = 0; /* turn zero padding off for non-numeric
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00004919 conversion */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004920 justify_left = 1;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004921 min_field_width = 0; /* reset flags */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004922
4923 /* discard the unrecognized conversion, just keep *
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004924 * the unrecognized conversion character */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004925 str_arg = p;
4926 str_arg_l = 0;
4927 if (*p != NUL)
4928 str_arg_l++; /* include invalid conversion specifier
4929 unchanged if not at end-of-string */
4930 break;
4931 }
4932
4933 if (*p != NUL)
4934 p++; /* step over the just processed conversion specifier */
4935
4936 /* insert padding to the left as requested by min_field_width;
4937 * this does not include the zero padding in case of numerical
4938 * conversions*/
4939 if (!justify_left)
4940 {
4941 /* left padding with blank or zero */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004942 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004943
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004944 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004945 {
4946 if (str_l < str_m)
4947 {
4948 size_t avail = str_m - str_l;
4949
4950 vim_memset(str + str_l, zero_padding ? '0' : ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004951 (size_t)pn > avail ? avail
4952 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004953 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004954 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004955 }
4956 }
4957
4958 /* zero padding as requested by the precision or by the minimal
4959 * field width for numeric conversions required? */
Bram Moolenaarea424162005-06-16 21:51:00 +00004960 if (number_of_zeros_to_pad == 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004961 {
4962 /* will not copy first part of numeric right now, *
4963 * force it to be copied later in its entirety */
4964 zero_padding_insertion_ind = 0;
4965 }
4966 else
4967 {
4968 /* insert first part of numerics (sign or '0x') before zero
4969 * padding */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004970 int zn = (int)zero_padding_insertion_ind;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004971
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004972 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004973 {
4974 if (str_l < str_m)
4975 {
4976 size_t avail = str_m - str_l;
4977
4978 mch_memmove(str + str_l, str_arg,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004979 (size_t)zn > avail ? avail
4980 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004981 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004982 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004983 }
4984
4985 /* insert zero padding as requested by the precision or min
4986 * field width */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004987 zn = (int)number_of_zeros_to_pad;
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004988 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004989 {
4990 if (str_l < str_m)
4991 {
Bram Moolenaar2f3a90a2017-08-03 14:49:29 +02004992 size_t avail = str_m - str_l;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004993
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004994 vim_memset(str + str_l, '0',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004995 (size_t)zn > avail ? avail
4996 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004997 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004998 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004999 }
5000 }
5001
5002 /* insert formatted string
5003 * (or as-is conversion specifier for unknown conversions) */
5004 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005005 int sn = (int)(str_arg_l - zero_padding_insertion_ind);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005006
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005007 if (sn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005008 {
5009 if (str_l < str_m)
5010 {
5011 size_t avail = str_m - str_l;
5012
5013 mch_memmove(str + str_l,
5014 str_arg + zero_padding_insertion_ind,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005015 (size_t)sn > avail ? avail : (size_t)sn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005016 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005017 str_l += sn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005018 }
5019 }
5020
5021 /* insert right padding */
5022 if (justify_left)
5023 {
5024 /* right blank padding to the field width */
Bram Moolenaara7241f52008-06-24 20:39:31 +00005025 int pn = (int)(min_field_width
5026 - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005027
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005028 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005029 {
5030 if (str_l < str_m)
5031 {
5032 size_t avail = str_m - str_l;
5033
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005034 vim_memset(str + str_l, ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005035 (size_t)pn > avail ? avail
5036 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005037 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00005038 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005039 }
5040 }
Bram Moolenaare5a8f352016-08-16 21:30:54 +02005041 vim_free(tofree);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005042 }
5043 }
5044
5045 if (str_m > 0)
5046 {
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00005047 /* make sure the string is nul-terminated even at the expense of
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005048 * overwriting the last character (shouldn't happen, but just in case)
5049 * */
5050 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0';
5051 }
5052
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005053 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005054 emsg(_("E767: Too many arguments to printf()"));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005055
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00005056 /* Return the number of characters formatted (excluding trailing nul
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005057 * character), that is, the number of characters that would have been
5058 * written to the buffer if it were large enough. */
5059 return (int)str_l;
5060}
5061
5062#endif /* PROTO */