blob: b046ac95e121d2f371bc748bfdfe3e253d2f11af [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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() */
15
16#include "vim.h"
17
Bram Moolenaara7241f52008-06-24 20:39:31 +000018#if defined(FEAT_FLOAT) && defined(HAVE_MATH_H)
19# include <math.h>
20#endif
21
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000022static int other_sourcing_name __ARGS((void));
23static char_u *get_emsg_source __ARGS((void));
24static char_u *get_emsg_lnum __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000025static void add_msg_hist __ARGS((char_u *s, int len, int attr));
26static void hit_return_msg __ARGS((void));
27static void msg_home_replace_attr __ARGS((char_u *fname, int attr));
28#ifdef FEAT_MBYTE
29static char_u *screen_puts_mbyte __ARGS((char_u *s, int l, int attr));
30#endif
31static void msg_puts_attr_len __ARGS((char_u *str, int maxlen, int attr));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000032static void msg_puts_display __ARGS((char_u *str, int maxlen, int attr, int recurse));
33static void msg_scroll_up __ARGS((void));
Bram Moolenaarbb15b652005-10-03 21:52:09 +000034static void inc_msg_scrolled __ARGS((void));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000035static void store_sb_text __ARGS((char_u **sb_str, char_u *s, int attr, int *sb_col, int finish));
36static void t_puts __ARGS((int *t_col, char_u *t_s, char_u *s, int attr));
37static void msg_puts_printf __ARGS((char_u *str, int maxlen));
38static int do_more_prompt __ARGS((int typed_char));
Bram Moolenaar071d4272004-06-13 20:20:40 +000039static void msg_screen_putchar __ARGS((int c, int attr));
40static int msg_check_screen __ARGS((void));
41static void redir_write __ARGS((char_u *s, int maxlen));
42#ifdef FEAT_CON_DIALOG
43static char_u *msg_show_console_dialog __ARGS((char_u *message, char_u *buttons, int dfltbutton));
44static int confirm_msg_used = FALSE; /* displaying confirm_msg */
45static char_u *confirm_msg = NULL; /* ":confirm" message */
46static char_u *confirm_msg_tail; /* tail of confirm_msg */
47#endif
48
49struct msg_hist
50{
51 struct msg_hist *next;
52 char_u *msg;
53 int attr;
54};
55
56static struct msg_hist *first_msg_hist = NULL;
57static struct msg_hist *last_msg_hist = NULL;
58static int msg_hist_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000059
Bram Moolenaarb5b5b892011-09-14 15:39:29 +020060static FILE *verbose_fd = NULL;
61static int verbose_did_open = FALSE;
62
Bram Moolenaar071d4272004-06-13 20:20:40 +000063/*
64 * When writing messages to the screen, there are many different situations.
65 * A number of variables is used to remember the current state:
66 * msg_didany TRUE when messages were written since the last time the
67 * user reacted to a prompt.
68 * Reset: After hitting a key for the hit-return prompt,
69 * hitting <CR> for the command line or input().
70 * Set: When any message is written to the screen.
71 * msg_didout TRUE when something was written to the current line.
72 * Reset: When advancing to the next line, when the current
73 * text can be overwritten.
74 * Set: When any message is written to the screen.
75 * msg_nowait No extra delay for the last drawn message.
76 * Used in normal_cmd() before the mode message is drawn.
77 * emsg_on_display There was an error message recently. Indicates that there
78 * should be a delay before redrawing.
79 * msg_scroll The next message should not overwrite the current one.
80 * msg_scrolled How many lines the screen has been scrolled (because of
81 * messages). Used in update_screen() to scroll the screen
82 * back. Incremented each time the screen scrolls a line.
83 * msg_scrolled_ign TRUE when msg_scrolled is non-zero and msg_puts_attr()
84 * writes something without scrolling should not make
85 * need_wait_return to be set. This is a hack to make ":ts"
86 * work without an extra prompt.
87 * lines_left Number of lines available for messages before the
Bram Moolenaar5d6f75e2011-12-30 14:14:29 +010088 * more-prompt is to be given. -1 when not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +000089 * need_wait_return TRUE when the hit-return prompt is needed.
90 * Reset: After giving the hit-return prompt, when the user
91 * has answered some other prompt.
92 * Set: When the ruler or typeahead display is overwritten,
93 * scrolling the screen for some message.
94 * keep_msg Message to be displayed after redrawing the screen, in
95 * main_loop().
96 * This is an allocated string or NULL when not used.
97 */
98
99/*
100 * msg(s) - displays the string 's' on the status line
101 * When terminal not initialized (yet) mch_errmsg(..) is used.
102 * return TRUE if wait_return not called
103 */
104 int
105msg(s)
106 char_u *s;
107{
108 return msg_attr_keep(s, 0, FALSE);
109}
110
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000111#if defined(FEAT_EVAL) || defined(FEAT_X11) || defined(USE_XSMP) \
Bram Moolenaarbbc936b2009-07-01 16:04:58 +0000112 || defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000113/*
114 * Like msg() but keep it silent when 'verbosefile' is set.
115 */
116 int
117verb_msg(s)
118 char_u *s;
119{
120 int n;
121
122 verbose_enter();
123 n = msg_attr_keep(s, 0, FALSE);
124 verbose_leave();
125
126 return n;
127}
128#endif
129
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130 int
131msg_attr(s, attr)
132 char_u *s;
133 int attr;
134{
135 return msg_attr_keep(s, attr, FALSE);
136}
137
138 int
139msg_attr_keep(s, attr, keep)
140 char_u *s;
141 int attr;
142 int keep; /* TRUE: set keep_msg if it doesn't scroll */
143{
144 static int entered = 0;
145 int retval;
146 char_u *buf = NULL;
147
148#ifdef FEAT_EVAL
149 if (attr == 0)
150 set_vim_var_string(VV_STATUSMSG, s, -1);
151#endif
152
153 /*
154 * It is possible that displaying a messages causes a problem (e.g.,
155 * when redrawing the window), which causes another message, etc.. To
156 * break this loop, limit the recursiveness to 3 levels.
157 */
158 if (entered >= 3)
159 return TRUE;
160 ++entered;
161
162 /* Add message to history (unless it's a repeated kept message or a
163 * truncated message) */
164 if (s != keep_msg
165 || (*s != '<'
166 && last_msg_hist != NULL
167 && last_msg_hist->msg != NULL
168 && STRCMP(s, last_msg_hist->msg)))
169 add_msg_hist(s, -1, attr);
170
171 /* When displaying keep_msg, don't let msg_start() free it, caller must do
172 * that. */
173 if (s == keep_msg)
174 keep_msg = NULL;
175
176 /* Truncate the message if needed. */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000177 msg_start();
178 buf = msg_strtrunc(s, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179 if (buf != NULL)
180 s = buf;
181
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 msg_outtrans_attr(s, attr);
183 msg_clr_eos();
184 retval = msg_end();
185
186 if (keep && retval && vim_strsize(s) < (int)(Rows - cmdline_row - 1)
187 * Columns + sc_col)
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000188 set_keep_msg(s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189
190 vim_free(buf);
191 --entered;
192 return retval;
193}
194
195/*
196 * Truncate a string such that it can be printed without causing a scroll.
197 * Returns an allocated string or NULL when no truncating is done.
198 */
199 char_u *
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000200msg_strtrunc(s, force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 char_u *s;
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000202 int force; /* always truncate */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203{
204 char_u *buf = NULL;
205 int len;
206 int room;
207
208 /* May truncate message to avoid a hit-return prompt */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000209 if ((!msg_scroll && !need_wait_return && shortmess(SHM_TRUNCALL)
210 && !exmode_active && msg_silent == 0) || force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211 {
212 len = vim_strsize(s);
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000213 if (msg_scrolled != 0)
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000214 /* Use all the columns. */
215 room = (int)(Rows - msg_row) * Columns - 1;
216 else
217 /* Use up to 'showcmd' column. */
218 room = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 if (len > room && room > 0)
220 {
221#ifdef FEAT_MBYTE
222 if (enc_utf8)
223 /* may have up to 18 bytes per cell (6 per char, up to two
224 * composing chars) */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100225 len = (room + 2) * 18;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 else if (enc_dbcs == DBCS_JPNU)
227 /* may have up to 2 bytes per cell for euc-jp */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100228 len = (room + 2) * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 else
230#endif
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100231 len = room + 2;
232 buf = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 if (buf != NULL)
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100234 trunc_string(s, buf, room, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 }
236 }
237 return buf;
238}
239
240/*
241 * Truncate a string "s" to "buf" with cell width "room".
242 * "s" and "buf" may be equal.
243 */
244 void
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100245trunc_string(s, buf, room, buflen)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246 char_u *s;
247 char_u *buf;
248 int room;
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100249 int buflen;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250{
251 int half;
252 int len;
253 int e;
254 int i;
255 int n;
256
257 room -= 3;
258 half = room / 2;
259 len = 0;
260
261 /* First part: Start of the string. */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100262 for (e = 0; len < half && e < buflen; ++e)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263 {
264 if (s[e] == NUL)
265 {
266 /* text fits without truncating! */
267 buf[e] = NUL;
268 return;
269 }
270 n = ptr2cells(s + e);
271 if (len + n >= half)
272 break;
273 len += n;
274 buf[e] = s[e];
275#ifdef FEAT_MBYTE
276 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000277 for (n = (*mb_ptr2len)(s + e); --n > 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278 {
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100279 if (++e == buflen)
280 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281 buf[e] = s[e];
282 }
283#endif
284 }
285
286 /* Last part: End of the string. */
287 i = e;
288#ifdef FEAT_MBYTE
289 if (enc_dbcs != 0)
290 {
291 /* For DBCS going backwards in a string is slow, but
292 * computing the cell width isn't too slow: go forward
293 * until the rest fits. */
294 n = vim_strsize(s + i);
295 while (len + n > room)
296 {
297 n -= ptr2cells(s + i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000298 i += (*mb_ptr2len)(s + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299 }
300 }
301 else if (enc_utf8)
302 {
303 /* For UTF-8 we can go backwards easily. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000304 half = i = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 for (;;)
306 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000307 do
308 half = half - (*mb_head_off)(s, s + half - 1) - 1;
309 while (utf_iscomposing(utf_ptr2char(s + half)) && half > 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 n = ptr2cells(s + half);
311 if (len + n > room)
312 break;
313 len += n;
314 i = half;
315 }
316 }
317 else
318#endif
319 {
320 for (i = (int)STRLEN(s); len + (n = ptr2cells(s + i - 1)) <= room; --i)
321 len += n;
322 }
323
324 /* Set the middle and copy the last part. */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100325 if (e + 3 < buflen)
326 {
327 mch_memmove(buf + e, "...", (size_t)3);
Bram Moolenaar38f5f952012-01-26 13:01:59 +0100328 len = (int)STRLEN(s + i) + 1;
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100329 if (len >= buflen - e - 3)
330 len = buflen - e - 3 - 1;
331 mch_memmove(buf + e + 3, s + i, len);
332 buf[e + 3 + len - 1] = NUL;
333 }
334 else
335 {
Bram Moolenaar33c1b192012-01-23 20:48:40 +0100336 buf[e - 1] = NUL; /* make sure it is truncated */
Bram Moolenaarf31b7642012-01-20 20:44:43 +0100337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338}
339
340/*
341 * Automatic prototype generation does not understand this function.
342 * Note: Caller of smgs() and smsg_attr() must check the resulting string is
343 * shorter than IOSIZE!!!
344 */
345#ifndef PROTO
346# ifndef HAVE_STDARG_H
347
348int
349#ifdef __BORLANDC__
350_RTLENTRYF
351#endif
352smsg __ARGS((char_u *, long, long, long,
353 long, long, long, long, long, long, long));
354int
355#ifdef __BORLANDC__
356_RTLENTRYF
357#endif
358smsg_attr __ARGS((int, char_u *, long, long, long,
359 long, long, long, long, long, long, long));
360
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000361int vim_snprintf __ARGS((char *, size_t, char *, long, long, long,
362 long, long, long, long, long, long, long));
363
364/*
365 * smsg(str, arg, ...) is like using sprintf(buf, str, arg, ...) and then
366 * calling msg(buf).
367 * The buffer used is IObuff, the message is truncated at IOSIZE.
368 */
369
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370/* VARARGS */
371 int
372#ifdef __BORLANDC__
373_RTLENTRYF
374#endif
375smsg(s, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
376 char_u *s;
377 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
378{
379 return smsg_attr(0, s, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
380}
381
382/* VARARGS */
383 int
384#ifdef __BORLANDC__
385_RTLENTRYF
386#endif
387smsg_attr(attr, s, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
388 int attr;
389 char_u *s;
390 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
391{
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000392 vim_snprintf((char *)IObuff, IOSIZE, (char *)s,
393 a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 return msg_attr(IObuff, attr);
395}
396
397# else /* HAVE_STDARG_H */
398
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000399int vim_snprintf(char *str, size_t str_m, char *fmt, ...);
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000400
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 int
402#ifdef __BORLANDC__
403_RTLENTRYF
404#endif
405smsg(char_u *s, ...)
406{
407 va_list arglist;
408
409 va_start(arglist, s);
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000410 vim_vsnprintf((char *)IObuff, IOSIZE, (char *)s, arglist, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 va_end(arglist);
412 return msg(IObuff);
413}
414
415 int
416#ifdef __BORLANDC__
417_RTLENTRYF
418#endif
419smsg_attr(int attr, char_u *s, ...)
420{
421 va_list arglist;
422
423 va_start(arglist, s);
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000424 vim_vsnprintf((char *)IObuff, IOSIZE, (char *)s, arglist, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425 va_end(arglist);
426 return msg_attr(IObuff, attr);
427}
428
429# endif /* HAVE_STDARG_H */
430#endif
431
432/*
433 * Remember the last sourcing name/lnum used in an error message, so that it
434 * isn't printed each time when it didn't change.
435 */
436static int last_sourcing_lnum = 0;
437static char_u *last_sourcing_name = NULL;
438
439/*
440 * Reset the last used sourcing name/lnum. Makes sure it is displayed again
441 * for the next error message;
442 */
Bram Moolenaar4eec5ec2005-06-26 22:26:21 +0000443 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444reset_last_sourcing()
445{
446 vim_free(last_sourcing_name);
447 last_sourcing_name = NULL;
448 last_sourcing_lnum = 0;
449}
450
451/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000452 * Return TRUE if "sourcing_name" differs from "last_sourcing_name".
453 */
454 static int
455other_sourcing_name()
456{
457 if (sourcing_name != NULL)
458 {
459 if (last_sourcing_name != NULL)
460 return STRCMP(sourcing_name, last_sourcing_name) != 0;
461 return TRUE;
462 }
463 return FALSE;
464}
465
466/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 * Get the message about the source, as used for an error message.
468 * Returns an allocated string with room for one more character.
469 * Returns NULL when no message is to be given.
470 */
471 static char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000472get_emsg_source()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473{
474 char_u *Buf, *p;
475
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000476 if (sourcing_name != NULL && other_sourcing_name())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 {
478 p = (char_u *)_("Error detected while processing %s:");
479 Buf = alloc((unsigned)(STRLEN(sourcing_name) + STRLEN(p)));
480 if (Buf != NULL)
481 sprintf((char *)Buf, (char *)p, sourcing_name);
482 return Buf;
483 }
484 return NULL;
485}
486
487/*
488 * Get the message about the source lnum, as used for an error message.
489 * Returns an allocated string with room for one more character.
490 * Returns NULL when no message is to be given.
491 */
492 static char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000493get_emsg_lnum()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494{
495 char_u *Buf, *p;
496
497 /* lnum is 0 when executing a command from the command line
498 * argument, we don't want a line number then */
499 if (sourcing_name != NULL
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000500 && (other_sourcing_name() || sourcing_lnum != last_sourcing_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 && sourcing_lnum != 0)
502 {
503 p = (char_u *)_("line %4ld:");
504 Buf = alloc((unsigned)(STRLEN(p) + 20));
505 if (Buf != NULL)
506 sprintf((char *)Buf, (char *)p, (long)sourcing_lnum);
507 return Buf;
508 }
509 return NULL;
510}
511
512/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000513 * Display name and line number for the source of an error.
514 * Remember the file name and line number, so that for the next error the info
515 * is only displayed if it changed.
516 */
517 void
518msg_source(attr)
519 int attr;
520{
521 char_u *p;
522
523 ++no_wait_return;
524 p = get_emsg_source();
525 if (p != NULL)
526 {
527 msg_attr(p, attr);
528 vim_free(p);
529 }
530 p = get_emsg_lnum();
531 if (p != NULL)
532 {
533 msg_attr(p, hl_attr(HLF_N));
534 vim_free(p);
535 last_sourcing_lnum = sourcing_lnum; /* only once for each line */
536 }
537
538 /* remember the last sourcing name printed, also when it's empty */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000539 if (sourcing_name == NULL || other_sourcing_name())
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000540 {
541 vim_free(last_sourcing_name);
542 if (sourcing_name == NULL)
543 last_sourcing_name = NULL;
544 else
545 last_sourcing_name = vim_strsave(sourcing_name);
546 }
547 --no_wait_return;
548}
549
550/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000551 * Return TRUE if not giving error messages right now:
552 * If "emsg_off" is set: no error messages at the moment.
553 * If "msg" is in 'debug': do error message but without side effects.
554 * If "emsg_skip" is set: never do error messages.
555 */
556 int
557emsg_not_now()
558{
559 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL
560 && vim_strchr(p_debug, 't') == NULL)
561#ifdef FEAT_EVAL
562 || emsg_skip > 0
563#endif
564 )
565 return TRUE;
566 return FALSE;
567}
568
569/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 * emsg() - display an error message
571 *
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 *
575 * return TRUE if wait_return not called
576 */
577 int
578emsg(s)
579 char_u *s;
580{
581 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 char_u *p;
583#ifdef FEAT_EVAL
584 int ignore = FALSE;
585 int severe;
586#endif
587
Bram Moolenaarfd0e7562011-01-04 19:25:50 +0100588 /* Skip this if not giving error messages at the moment. */
589 if (emsg_not_now())
590 return TRUE;
591
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 called_emsg = TRUE;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000593 ex_exitval = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594
595 /*
Bram Moolenaar1d817d02005-01-16 21:56:27 +0000596 * If "emsg_severe" is TRUE: When an error exception is to be thrown,
597 * prefer this message over previous messages for the same command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598 */
599#ifdef FEAT_EVAL
600 severe = emsg_severe;
601 emsg_severe = FALSE;
602#endif
603
Bram Moolenaar57657d82006-04-21 22:12:41 +0000604 if (!emsg_off || vim_strchr(p_debug, 't') != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 {
606#ifdef FEAT_EVAL
607 /*
608 * Cause a throw of an error exception if appropriate. Don't display
609 * the error message in this case. (If no matching catch clause will
610 * be found, the message will be displayed later on.) "ignore" is set
611 * when the message should be ignored completely (used for the
612 * interrupt message).
613 */
614 if (cause_errthrow(s, severe, &ignore) == TRUE)
615 {
616 if (!ignore)
617 did_emsg = TRUE;
618 return TRUE;
619 }
620
621 /* set "v:errmsg", also when using ":silent! cmd" */
622 set_vim_var_string(VV_ERRMSG, s, -1);
623#endif
624
625 /*
Bram Moolenaara7241f52008-06-24 20:39:31 +0000626 * When using ":silent! cmd" ignore error messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627 * But do write it to the redirection file.
628 */
629 if (emsg_silent != 0)
630 {
631 msg_start();
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000632 p = get_emsg_source();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 if (p != NULL)
634 {
635 STRCAT(p, "\n");
636 redir_write(p, -1);
637 vim_free(p);
638 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000639 p = get_emsg_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 if (p != NULL)
641 {
642 STRCAT(p, "\n");
643 redir_write(p, -1);
644 vim_free(p);
645 }
646 redir_write(s, -1);
647 return TRUE;
648 }
649
650 /* Reset msg_silent, an error causes messages to be switched back on. */
651 msg_silent = 0;
652 cmd_silent = FALSE;
653
654 if (global_busy) /* break :global command */
655 ++global_busy;
656
657 if (p_eb)
658 beep_flush(); /* also includes flush_buffers() */
659 else
660 flush_buffers(FALSE); /* flush internal buffers */
661 did_emsg = TRUE; /* flag for DoOneCmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 }
663
664 emsg_on_display = TRUE; /* remember there is an error message */
665 ++msg_scroll; /* don't overwrite a previous message */
666 attr = hl_attr(HLF_E); /* set highlight mode for error messages */
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000667 if (msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 need_wait_return = TRUE; /* needed in case emsg() is called after
669 * wait_return has reset need_wait_return
670 * and a redraw is expected because
671 * msg_scrolled is non-zero */
672
673 /*
674 * Display name and line number for the source of the error.
675 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000676 msg_source(attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677
678 /*
679 * Display the error message itself.
680 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000681 msg_nowait = FALSE; /* wait for this msg */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 return msg_attr(s, attr);
683}
684
685/*
686 * Print an error message with one "%s" and one string argument.
687 */
688 int
689emsg2(s, a1)
690 char_u *s, *a1;
691{
692 return emsg3(s, a1, NULL);
693}
694
Bram Moolenaarea424162005-06-16 21:51:00 +0000695/* emsg3() and emsgn() are in misc2.c to avoid warnings for the prototypes. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696
Bram Moolenaardf177f62005-02-22 08:39:57 +0000697 void
698emsg_invreg(name)
699 int name;
700{
701 EMSG2(_("E354: Invalid register name: '%s'"), transchar(name));
702}
703
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704/*
705 * Like msg(), but truncate to a single line if p_shm contains 't', or when
706 * "force" is TRUE. This truncates in another way as for normal messages.
707 * Careful: The string may be changed by msg_may_trunc()!
708 * Returns a pointer to the printed message, if wait_return() not called.
709 */
710 char_u *
711msg_trunc_attr(s, force, attr)
712 char_u *s;
713 int force;
714 int attr;
715{
716 int n;
717
718 /* Add message to history before truncating */
719 add_msg_hist(s, -1, attr);
720
721 s = msg_may_trunc(force, s);
722
723 msg_hist_off = TRUE;
724 n = msg_attr(s, attr);
725 msg_hist_off = FALSE;
726
727 if (n)
728 return s;
729 return NULL;
730}
731
732/*
733 * Check if message "s" should be truncated at the start (for filenames).
734 * Return a pointer to where the truncated message starts.
735 * Note: May change the message by replacing a character with '<'.
736 */
737 char_u *
738msg_may_trunc(force, s)
739 int force;
740 char_u *s;
741{
742 int n;
743 int room;
744
745 room = (int)(Rows - cmdline_row - 1) * Columns + sc_col - 1;
746 if ((force || (shortmess(SHM_TRUNC) && !exmode_active))
747 && (n = (int)STRLEN(s) - room) > 0)
748 {
749#ifdef FEAT_MBYTE
750 if (has_mbyte)
751 {
752 int size = vim_strsize(s);
753
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +0000754 /* There may be room anyway when there are multibyte chars. */
755 if (size <= room)
756 return s;
757
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 for (n = 0; size >= room; )
759 {
760 size -= (*mb_ptr2cells)(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000761 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 }
763 --n;
764 }
765#endif
766 s += n;
767 *s = '<';
768 }
769 return s;
770}
771
772 static void
773add_msg_hist(s, len, attr)
774 char_u *s;
775 int len; /* -1 for undetermined length */
776 int attr;
777{
778 struct msg_hist *p;
779
780 if (msg_hist_off || msg_silent != 0)
781 return;
782
783 /* Don't let the message history get too big */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000784 while (msg_hist_len > MAX_MSG_HIST_LEN)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000785 (void)delete_first_msg();
786
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 /* allocate an entry and add the message at the end of the history */
788 p = (struct msg_hist *)alloc((int)sizeof(struct msg_hist));
789 if (p != NULL)
790 {
791 if (len < 0)
792 len = (int)STRLEN(s);
793 /* remove leading and trailing newlines */
794 while (len > 0 && *s == '\n')
795 {
796 ++s;
797 --len;
798 }
799 while (len > 0 && s[len - 1] == '\n')
800 --len;
801 p->msg = vim_strnsave(s, len);
802 p->next = NULL;
803 p->attr = attr;
804 if (last_msg_hist != NULL)
805 last_msg_hist->next = p;
806 last_msg_hist = p;
807 if (first_msg_hist == NULL)
808 first_msg_hist = last_msg_hist;
809 ++msg_hist_len;
810 }
811}
812
813/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000814 * Delete the first (oldest) message from the history.
815 * Returns FAIL if there are no messages.
816 */
817 int
818delete_first_msg()
819{
820 struct msg_hist *p;
821
822 if (msg_hist_len <= 0)
823 return FAIL;
824 p = first_msg_hist;
825 first_msg_hist = p->next;
Bram Moolenaara7241f52008-06-24 20:39:31 +0000826 if (first_msg_hist == NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200827 last_msg_hist = NULL; /* history is empty */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000828 vim_free(p->msg);
829 vim_free(p);
830 --msg_hist_len;
831 return OK;
832}
833
834/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 * ":messages" command.
836 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 void
838ex_messages(eap)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +0000839 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840{
841 struct msg_hist *p;
842 char_u *s;
843
844 msg_hist_off = TRUE;
845
846 s = mch_getenv((char_u *)"LANG");
847 if (s != NULL && *s != NUL)
848 msg_attr((char_u *)
849 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
850 hl_attr(HLF_T));
851
Bram Moolenaar5c2e0f22007-09-13 20:05:18 +0000852 for (p = first_msg_hist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 if (p->msg != NULL)
854 msg_attr(p->msg, p->attr);
855
856 msg_hist_off = FALSE;
857}
858
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000859#if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860/*
861 * Call this after prompting the user. This will avoid a hit-return message
862 * and a delay.
863 */
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000864 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865msg_end_prompt()
866{
867 need_wait_return = FALSE;
868 emsg_on_display = FALSE;
869 cmdline_row = msg_row;
870 msg_col = 0;
871 msg_clr_eos();
Bram Moolenaar5d6f75e2011-12-30 14:14:29 +0100872 lines_left = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873}
874#endif
875
876/*
877 * wait for the user to hit a key (normally a return)
878 * if 'redraw' is TRUE, clear and redraw the screen
879 * if 'redraw' is FALSE, just redraw the screen
880 * if 'redraw' is -1, don't redraw at all
881 */
882 void
883wait_return(redraw)
884 int redraw;
885{
886 int c;
887 int oldState;
888 int tmpState;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 int had_got_int;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +0100890 int save_Recording;
891 FILE *save_scriptout;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892
893 if (redraw == TRUE)
894 must_redraw = CLEAR;
895
896 /* If using ":silent cmd", don't wait for a return. Also don't set
897 * need_wait_return to do it later. */
898 if (msg_silent != 0)
899 return;
900
Bram Moolenaarfd30cd42011-03-22 13:07:26 +0100901 /*
902 * When inside vgetc(), we can't wait for a typed character at all.
903 * With the global command (and some others) we only need one return at
904 * the end. Adjust cmdline_row to avoid the next message overwriting the
905 * last one.
906 */
Bram Moolenaar5555acc2006-04-07 21:33:12 +0000907 if (vgetc_busy > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 return;
Bram Moolenaarfd30cd42011-03-22 13:07:26 +0100909 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 if (no_wait_return)
911 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 if (!exmode_active)
913 cmdline_row = msg_row;
914 return;
915 }
916
917 redir_off = TRUE; /* don't redirect this message */
918 oldState = State;
919 if (quit_more)
920 {
921 c = CAR; /* just pretend CR was hit */
922 quit_more = FALSE;
923 got_int = FALSE;
924 }
925 else if (exmode_active)
926 {
927 MSG_PUTS(" "); /* make sure the cursor is on the right line */
928 c = CAR; /* no need for a return in ex mode */
929 got_int = FALSE;
930 }
931 else
932 {
933 /* Make sure the hit-return prompt is on screen when 'guioptions' was
934 * just changed. */
935 screenalloc(FALSE);
936
937 State = HITRETURN;
938#ifdef FEAT_MOUSE
939 setmouse();
940#endif
941#ifdef USE_ON_FLY_SCROLL
942 dont_scroll = TRUE; /* disallow scrolling here */
943#endif
Bram Moolenaarec38d692013-04-24 15:12:32 +0200944 /* Avoid the sequence that the user types ":" at the hit-return prompt
945 * to start an Ex command, but the file-changed dialog gets in the
946 * way. */
947 if (need_check_timestamps)
948 check_timestamps(FALSE);
949
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 hit_return_msg();
951
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 do
953 {
954 /* Remember "got_int", if it is set vgetc() probably returns a
955 * CTRL-C, but we need to loop then. */
956 had_got_int = got_int;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000957
958 /* Don't do mappings here, we put the character back in the
959 * typeahead buffer. */
960 ++no_mapping;
961 ++allow_keys;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +0100962
963 /* Temporarily disable Recording. If Recording is active, the
964 * character will be recorded later, since it will be added to the
965 * typebuf after the loop */
966 save_Recording = Recording;
967 save_scriptout = scriptout;
968 Recording = FALSE;
969 scriptout = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 c = safe_vgetc();
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000971 if (had_got_int && !global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 got_int = FALSE;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000973 --no_mapping;
974 --allow_keys;
Bram Moolenaar332a2ca2013-11-04 02:01:01 +0100975 Recording = save_Recording;
976 scriptout = save_scriptout;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000977
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978#ifdef FEAT_CLIPBOARD
979 /* Strange way to allow copying (yanking) a modeless selection at
980 * the hit-enter prompt. Use CTRL-Y, because the same is used in
981 * Cmdline-mode and it's harmless when there is no selection. */
982 if (c == Ctrl_Y && clip_star.state == SELECT_DONE)
983 {
984 clip_copy_modeless_selection(TRUE);
985 c = K_IGNORE;
986 }
987#endif
Bram Moolenaarc27c8d52007-09-06 10:54:51 +0000988
Bram Moolenaare1438bb2006-03-01 22:01:55 +0000989 /*
990 * Allow scrolling back in the messages.
991 * Also accept scroll-down commands when messages fill the screen,
992 * to avoid that typing one 'j' too many makes the messages
993 * disappear.
994 */
995 if (p_more && !p_cp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000996 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +0100997 if (c == 'b' || c == 'k' || c == 'u' || c == 'g'
998 || c == K_UP || c == K_PAGEUP)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000999 {
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001000 if (msg_scrolled > Rows)
1001 /* scroll back to show older messages */
1002 do_more_prompt(c);
1003 else
1004 {
1005 msg_didout = FALSE;
1006 c = K_IGNORE;
1007 msg_col =
1008#ifdef FEAT_RIGHTLEFT
1009 cmdmsg_rl ? Columns - 1 :
1010#endif
1011 0;
1012 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001013 if (quit_more)
1014 {
1015 c = CAR; /* just pretend CR was hit */
1016 quit_more = FALSE;
1017 got_int = FALSE;
1018 }
Bram Moolenaarb0912962013-08-09 20:38:26 +02001019 else if (c != K_IGNORE)
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001020 {
1021 c = K_IGNORE;
1022 hit_return_msg();
1023 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001024 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +00001025 else if (msg_scrolled > Rows - 2
Bram Moolenaarb59494c2013-03-19 13:56:08 +01001026 && (c == 'j' || c == 'd' || c == 'f'
1027 || c == K_DOWN || c == K_PAGEDOWN))
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001028 c = K_IGNORE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 } while ((had_got_int && c == Ctrl_C)
1031 || c == K_IGNORE
1032#ifdef FEAT_GUI
1033 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR
1034#endif
1035#ifdef FEAT_MOUSE
1036 || c == K_LEFTDRAG || c == K_LEFTRELEASE
1037 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE
1038 || c == K_RIGHTDRAG || c == K_RIGHTRELEASE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001039 || c == K_MOUSELEFT || c == K_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 || c == K_MOUSEDOWN || c == K_MOUSEUP
1041 || (!mouse_has(MOUSE_RETURN)
1042 && mouse_row < msg_row
1043 && (c == K_LEFTMOUSE
1044 || c == K_MIDDLEMOUSE
1045 || c == K_RIGHTMOUSE
1046 || c == K_X1MOUSE
1047 || c == K_X2MOUSE))
1048#endif
1049 );
1050 ui_breakcheck();
1051#ifdef FEAT_MOUSE
1052 /*
1053 * Avoid that the mouse-up event causes visual mode to start.
1054 */
1055 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE
1056 || c == K_X1MOUSE || c == K_X2MOUSE)
1057 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0);
1058 else
1059#endif
1060 if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C)
1061 {
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001062 /* Put the character back in the typeahead buffer. Don't use the
1063 * stuff buffer, because lmaps wouldn't work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001064 ins_char_typebuf(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 do_redraw = TRUE; /* need a redraw even though there is
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001066 typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 }
1069 redir_off = FALSE;
1070
1071 /*
1072 * If the user hits ':', '?' or '/' we get a command line from the next
1073 * line.
1074 */
1075 if (c == ':' || c == '?' || c == '/')
1076 {
1077 if (!exmode_active)
1078 cmdline_row = msg_row;
1079 skip_redraw = TRUE; /* skip redraw once */
1080 do_redraw = FALSE;
1081 }
1082
1083 /*
1084 * If the window size changed set_shellsize() will redraw the screen.
1085 * Otherwise the screen is only redrawn if 'redraw' is set and no ':'
1086 * typed.
1087 */
1088 tmpState = State;
1089 State = oldState; /* restore State before set_shellsize */
1090#ifdef FEAT_MOUSE
1091 setmouse();
1092#endif
1093 msg_check();
1094
1095#if defined(UNIX) || defined(VMS)
1096 /*
1097 * When switching screens, we need to output an extra newline on exit.
1098 */
1099 if (swapping_screen() && !termcap_active)
1100 newline_on_exit = TRUE;
1101#endif
1102
1103 need_wait_return = FALSE;
1104 did_wait_return = TRUE;
1105 emsg_on_display = FALSE; /* can delete error message now */
1106 lines_left = -1; /* reset lines_left at next msg_start() */
1107 reset_last_sourcing();
1108 if (keep_msg != NULL && vim_strsize(keep_msg) >=
1109 (Rows - cmdline_row - 1) * Columns + sc_col)
1110 {
1111 vim_free(keep_msg);
1112 keep_msg = NULL; /* don't redisplay message, it's too long */
1113 }
1114
1115 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */
1116 {
1117 starttermcap(); /* start termcap before redrawing */
1118 shell_resized();
1119 }
1120 else if (!skip_redraw
1121 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1)))
1122 {
1123 starttermcap(); /* start termcap before redrawing */
1124 redraw_later(VALID);
1125 }
1126}
1127
1128/*
1129 * Write the hit-return prompt.
1130 */
1131 static void
1132hit_return_msg()
1133{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001134 int save_p_more = p_more;
1135
1136 p_more = FALSE; /* don't want see this message when scrolling back */
1137 if (msg_didout) /* start on a new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 msg_putchar('\n');
1139 if (got_int)
1140 MSG_PUTS(_("Interrupt: "));
1141
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001142 MSG_PUTS_ATTR(_("Press ENTER or type command to continue"), hl_attr(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 if (!msg_use_printf())
1144 msg_clr_eos();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001145 p_more = save_p_more;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146}
1147
1148/*
1149 * Set "keep_msg" to "s". Free the old value and check for NULL pointer.
1150 */
1151 void
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001152set_keep_msg(s, attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 char_u *s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001154 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155{
1156 vim_free(keep_msg);
1157 if (s != NULL && msg_silent == 0)
1158 keep_msg = vim_strsave(s);
1159 else
1160 keep_msg = NULL;
Bram Moolenaaraab21c32005-01-25 21:46:35 +00001161 keep_msg_more = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001162 keep_msg_attr = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163}
1164
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001165#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1166/*
1167 * If there currently is a message being displayed, set "keep_msg" to it, so
1168 * that it will be displayed again after redraw.
1169 */
1170 void
1171set_keep_msg_from_hist()
1172{
1173 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0
1174 && (State & NORMAL))
1175 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr);
1176}
1177#endif
1178
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179/*
1180 * Prepare for outputting characters in the command line.
1181 */
1182 void
1183msg_start()
1184{
1185 int did_return = FALSE;
1186
Bram Moolenaare4ce65d2010-08-04 20:12:32 +02001187 if (!msg_silent)
1188 {
1189 vim_free(keep_msg);
1190 keep_msg = NULL; /* don't display old message now */
1191 }
Bram Moolenaara7241f52008-06-24 20:39:31 +00001192
1193#ifdef FEAT_EVAL
1194 if (need_clr_eos)
1195 {
1196 /* Halfway an ":echo" command and getting an (error) message: clear
1197 * any text from the command. */
1198 need_clr_eos = FALSE;
1199 msg_clr_eos();
1200 }
1201#endif
1202
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 if (!msg_scroll && full_screen) /* overwrite last message */
1204 {
1205 msg_row = cmdline_row;
1206 msg_col =
1207#ifdef FEAT_RIGHTLEFT
1208 cmdmsg_rl ? Columns - 1 :
1209#endif
1210 0;
1211 }
1212 else if (msg_didout) /* start message on next line */
1213 {
1214 msg_putchar('\n');
1215 did_return = TRUE;
1216 if (exmode_active != EXMODE_NORMAL)
1217 cmdline_row = msg_row;
1218 }
1219 if (!msg_didany || lines_left < 0)
1220 msg_starthere();
1221 if (msg_silent == 0)
1222 {
1223 msg_didout = FALSE; /* no output on current line yet */
1224 cursor_off();
1225 }
1226
1227 /* when redirecting, may need to start a new line. */
1228 if (!did_return)
1229 redir_write((char_u *)"\n", -1);
1230}
1231
1232/*
1233 * Note that the current msg position is where messages start.
1234 */
1235 void
1236msg_starthere()
1237{
1238 lines_left = cmdline_row;
1239 msg_didany = FALSE;
1240}
1241
1242 void
1243msg_putchar(c)
1244 int c;
1245{
1246 msg_putchar_attr(c, 0);
1247}
1248
1249 void
1250msg_putchar_attr(c, attr)
1251 int c;
1252 int attr;
1253{
1254#ifdef FEAT_MBYTE
1255 char_u buf[MB_MAXBYTES + 1];
1256#else
1257 char_u buf[4];
1258#endif
1259
1260 if (IS_SPECIAL(c))
1261 {
1262 buf[0] = K_SPECIAL;
1263 buf[1] = K_SECOND(c);
1264 buf[2] = K_THIRD(c);
1265 buf[3] = NUL;
1266 }
1267 else
1268 {
1269#ifdef FEAT_MBYTE
1270 buf[(*mb_char2bytes)(c, buf)] = NUL;
1271#else
1272 buf[0] = c;
1273 buf[1] = NUL;
1274#endif
1275 }
1276 msg_puts_attr(buf, attr);
1277}
1278
1279 void
1280msg_outnum(n)
1281 long n;
1282{
1283 char_u buf[20];
1284
1285 sprintf((char *)buf, "%ld", n);
1286 msg_puts(buf);
1287}
1288
1289 void
1290msg_home_replace(fname)
1291 char_u *fname;
1292{
1293 msg_home_replace_attr(fname, 0);
1294}
1295
1296#if defined(FEAT_FIND_ID) || defined(PROTO)
1297 void
1298msg_home_replace_hl(fname)
1299 char_u *fname;
1300{
1301 msg_home_replace_attr(fname, hl_attr(HLF_D));
1302}
1303#endif
1304
1305 static void
1306msg_home_replace_attr(fname, attr)
1307 char_u *fname;
1308 int attr;
1309{
1310 char_u *name;
1311
1312 name = home_replace_save(NULL, fname);
1313 if (name != NULL)
1314 msg_outtrans_attr(name, attr);
1315 vim_free(name);
1316}
1317
1318/*
1319 * Output 'len' characters in 'str' (including NULs) with translation
1320 * if 'len' is -1, output upto a NUL character.
1321 * Use attributes 'attr'.
1322 * Return the number of characters it takes on the screen.
1323 */
1324 int
1325msg_outtrans(str)
1326 char_u *str;
1327{
1328 return msg_outtrans_attr(str, 0);
1329}
1330
1331 int
1332msg_outtrans_attr(str, attr)
1333 char_u *str;
1334 int attr;
1335{
1336 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr);
1337}
1338
1339 int
1340msg_outtrans_len(str, len)
1341 char_u *str;
1342 int len;
1343{
1344 return msg_outtrans_len_attr(str, len, 0);
1345}
1346
1347/*
1348 * Output one character at "p". Return pointer to the next character.
1349 * Handles multi-byte characters.
1350 */
1351 char_u *
1352msg_outtrans_one(p, attr)
1353 char_u *p;
1354 int attr;
1355{
1356#ifdef FEAT_MBYTE
1357 int l;
1358
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001359 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 {
1361 msg_outtrans_len_attr(p, l, attr);
1362 return p + l;
1363 }
1364#endif
1365 msg_puts_attr(transchar_byte(*p), attr);
1366 return p + 1;
1367}
1368
1369 int
1370msg_outtrans_len_attr(msgstr, len, attr)
1371 char_u *msgstr;
1372 int len;
1373 int attr;
1374{
1375 int retval = 0;
1376 char_u *str = msgstr;
1377 char_u *plain_start = msgstr;
1378 char_u *s;
1379#ifdef FEAT_MBYTE
1380 int mb_l;
1381 int c;
1382#endif
1383
1384 /* if MSG_HIST flag set, add message to history */
1385 if (attr & MSG_HIST)
1386 {
1387 add_msg_hist(str, len, attr);
1388 attr &= ~MSG_HIST;
1389 }
1390
1391#ifdef FEAT_MBYTE
1392 /* If the string starts with a composing character first draw a space on
1393 * which the composing char can be drawn. */
1394 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr)))
1395 msg_puts_attr((char_u *)" ", attr);
1396#endif
1397
1398 /*
1399 * Go over the string. Special characters are translated and printed.
1400 * Normal characters are printed several at a time.
1401 */
1402 while (--len >= 0)
1403 {
1404#ifdef FEAT_MBYTE
1405 if (enc_utf8)
1406 /* Don't include composing chars after the end. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001407 mb_l = utfc_ptr2len_len(str, len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001409 mb_l = (*mb_ptr2len)(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 else
1411 mb_l = 1;
1412 if (has_mbyte && mb_l > 1)
1413 {
1414 c = (*mb_ptr2char)(str);
1415 if (vim_isprintc(c))
1416 /* printable multi-byte char: count the cells. */
1417 retval += (*mb_ptr2cells)(str);
1418 else
1419 {
1420 /* unprintable multi-byte char: print the printable chars so
1421 * far and the translation of the unprintable char. */
1422 if (str > plain_start)
1423 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1424 attr);
1425 plain_start = str + mb_l;
1426 msg_puts_attr(transchar(c), attr == 0 ? hl_attr(HLF_8) : attr);
1427 retval += char2cells(c);
1428 }
1429 len -= mb_l - 1;
1430 str += mb_l;
1431 }
1432 else
1433#endif
1434 {
1435 s = transchar_byte(*str);
1436 if (s[1] != NUL)
1437 {
1438 /* unprintable char: print the printable chars so far and the
1439 * translation of the unprintable char. */
1440 if (str > plain_start)
1441 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1442 attr);
1443 plain_start = str + 1;
1444 msg_puts_attr(s, attr == 0 ? hl_attr(HLF_8) : attr);
Bram Moolenaarc236c162008-07-13 17:41:49 +00001445 retval += (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 }
Bram Moolenaarb3c722a2008-07-06 17:16:02 +00001447 else
1448 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 ++str;
1450 }
1451 }
1452
1453 if (str > plain_start)
1454 /* print the printable chars at the end */
1455 msg_puts_attr_len(plain_start, (int)(str - plain_start), attr);
1456
1457 return retval;
1458}
1459
1460#if defined(FEAT_QUICKFIX) || defined(PROTO)
1461 void
1462msg_make(arg)
1463 char_u *arg;
1464{
1465 int i;
1466 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB";
1467
1468 arg = skipwhite(arg);
1469 for (i = 5; *arg && i >= 0; --i)
1470 if (*arg++ != str[i])
1471 break;
1472 if (i < 0)
1473 {
1474 msg_putchar('\n');
1475 for (i = 0; rs[i]; ++i)
1476 msg_putchar(rs[i] - 3);
1477 }
1478}
1479#endif
1480
1481/*
1482 * Output the string 'str' upto a NUL character.
1483 * Return the number of characters it takes on the screen.
1484 *
1485 * If K_SPECIAL is encountered, then it is taken in conjunction with the
1486 * following character and shown as <F1>, <S-Up> etc. Any other character
1487 * which is not printable shown in <> form.
1488 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>.
1489 * If a character is displayed in one of these special ways, is also
1490 * highlighted (its highlight name is '8' in the p_hl variable).
1491 * Otherwise characters are not highlighted.
1492 * This function is used to show mappings, where we want to see how to type
1493 * the character/string -- webb
1494 */
1495 int
1496msg_outtrans_special(strstart, from)
1497 char_u *strstart;
1498 int from; /* TRUE for lhs of a mapping */
1499{
1500 char_u *str = strstart;
1501 int retval = 0;
1502 char_u *string;
1503 int attr;
1504 int len;
1505
1506 attr = hl_attr(HLF_8);
1507 while (*str != NUL)
1508 {
1509 /* Leading and trailing spaces need to be displayed in <> form. */
1510 if ((str == strstart || str[1] == NUL) && *str == ' ')
1511 {
1512 string = (char_u *)"<Space>";
1513 ++str;
1514 }
1515 else
1516 string = str2special(&str, from);
1517 len = vim_strsize(string);
1518 /* Highlight special keys */
1519 msg_puts_attr(string, len > 1
1520#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001521 && (*mb_ptr2len)(string) <= 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522#endif
1523 ? attr : 0);
1524 retval += len;
1525 }
1526 return retval;
1527}
1528
Bram Moolenaarbd743252010-10-20 21:23:33 +02001529#if defined(FEAT_EVAL) || defined(PROTO)
1530/*
1531 * Return the lhs or rhs of a mapping, with the key codes turned into printable
1532 * strings, in an allocated string.
1533 */
1534 char_u *
1535str2special_save(str, is_lhs)
1536 char_u *str;
1537 int is_lhs; /* TRUE for lhs, FALSE for rhs */
1538{
1539 garray_T ga;
1540 char_u *p = str;
1541
1542 ga_init2(&ga, 1, 40);
1543 while (*p != NUL)
1544 ga_concat(&ga, str2special(&p, is_lhs));
1545 ga_append(&ga, NUL);
1546 return (char_u *)ga.ga_data;
1547}
1548#endif
1549
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550/*
1551 * Return the printable string for the key codes at "*sp".
1552 * Used for translating the lhs or rhs of a mapping to printable chars.
1553 * Advances "sp" to the next code.
1554 */
1555 char_u *
1556str2special(sp, from)
1557 char_u **sp;
1558 int from; /* TRUE for lhs of mapping */
1559{
1560 int c;
1561 static char_u buf[7];
1562 char_u *str = *sp;
1563 int modifiers = 0;
1564 int special = FALSE;
1565
1566#ifdef FEAT_MBYTE
1567 if (has_mbyte)
1568 {
1569 char_u *p;
1570
1571 /* Try to un-escape a multi-byte character. Return the un-escaped
1572 * string if it is a multi-byte character. */
1573 p = mb_unescape(sp);
1574 if (p != NULL)
1575 return p;
1576 }
1577#endif
1578
1579 c = *str;
1580 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1581 {
1582 if (str[1] == KS_MODIFIER)
1583 {
1584 modifiers = str[2];
1585 str += 3;
1586 c = *str;
1587 }
1588 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1589 {
1590 c = TO_SPECIAL(str[1], str[2]);
1591 str += 2;
Bram Moolenaar37985192013-06-07 19:53:10 +02001592 if (c == KS_ZERO) /* display <Nul> as ^@ or <Nul> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 c = NUL;
1594 }
1595 if (IS_SPECIAL(c) || modifiers) /* special key */
1596 special = TRUE;
1597 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598
1599#ifdef FEAT_MBYTE
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001600 if (has_mbyte && !IS_SPECIAL(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 {
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001602 int len = (*mb_ptr2len)(str);
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001603
1604 /* For multi-byte characters check for an illegal byte. */
1605 if (has_mbyte && MB_BYTE2LEN(*str) > len)
1606 {
1607 transchar_nonprint(buf, c);
1608 *sp = str + 1;
1609 return buf;
1610 }
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02001611 /* Since 'special' is TRUE the multi-byte character 'c' will be
1612 * processed by get_special_key_name() */
1613 c = (*mb_ptr2char)(str);
1614 *sp = str + len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 }
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001616 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617#endif
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02001618 *sp = str + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619
1620 /* Make unprintable characters in <> form, also <M-Space> and <Tab>.
1621 * Use <Space> only for lhs of a mapping. */
1622 if (special || char2cells(c) > 1 || (from && c == ' '))
1623 return get_special_key_name(c, modifiers);
1624 buf[0] = c;
1625 buf[1] = NUL;
1626 return buf;
1627}
1628
1629/*
1630 * Translate a key sequence into special key names.
1631 */
1632 void
1633str2specialbuf(sp, buf, len)
1634 char_u *sp;
1635 char_u *buf;
1636 int len;
1637{
1638 char_u *s;
1639
1640 *buf = NUL;
1641 while (*sp)
1642 {
1643 s = str2special(&sp, FALSE);
1644 if ((int)(STRLEN(s) + STRLEN(buf)) < len)
1645 STRCAT(buf, s);
1646 }
1647}
1648
1649/*
1650 * print line for :print or :list command
1651 */
1652 void
Bram Moolenaardf177f62005-02-22 08:39:57 +00001653msg_prt_line(s, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 char_u *s;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001655 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656{
1657 int c;
1658 int col = 0;
1659 int n_extra = 0;
1660 int c_extra = 0;
1661 char_u *p_extra = NULL; /* init to make SASC shut up */
1662 int n;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001663 int attr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 char_u *trail = NULL;
1665#ifdef FEAT_MBYTE
1666 int l;
1667 char_u buf[MB_MAXBYTES + 1];
1668#endif
1669
Bram Moolenaardf177f62005-02-22 08:39:57 +00001670 if (curwin->w_p_list)
1671 list = TRUE;
1672
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 /* find start of trailing whitespace */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001674 if (list && lcs_trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 {
1676 trail = s + STRLEN(s);
1677 while (trail > s && vim_iswhite(trail[-1]))
1678 --trail;
1679 }
1680
1681 /* output a space for an empty line, otherwise the line will be
1682 * overwritten */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001683 if (*s == NUL && !(list && lcs_eol != NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 msg_putchar(' ');
1685
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001686 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 {
Bram Moolenaar56da7972007-01-16 14:46:32 +00001688 if (n_extra > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 {
1690 --n_extra;
1691 if (c_extra)
1692 c = c_extra;
1693 else
1694 c = *p_extra++;
1695 }
1696#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001697 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 {
1699 col += (*mb_ptr2cells)(s);
Bram Moolenaaracf17282011-02-01 17:12:25 +01001700 if (lcs_nbsp != NUL && list && mb_ptr2char(s) == 160)
1701 {
1702 mb_char2bytes(lcs_nbsp, buf);
1703 buf[(*mb_ptr2len)(buf)] = NUL;
1704 }
1705 else
1706 {
1707 mch_memmove(buf, s, (size_t)l);
1708 buf[l] = NUL;
1709 }
Bram Moolenaar56da7972007-01-16 14:46:32 +00001710 msg_puts(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 s += l;
1712 continue;
1713 }
1714#endif
1715 else
1716 {
1717 attr = 0;
1718 c = *s++;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001719 if (c == TAB && (!list || lcs_tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 {
1721 /* tab amount depends on current column */
1722 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001723 if (!list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 {
1725 c = ' ';
1726 c_extra = ' ';
1727 }
1728 else
1729 {
1730 c = lcs_tab1;
1731 c_extra = lcs_tab2;
1732 attr = hl_attr(HLF_8);
1733 }
1734 }
Bram Moolenaaracf17282011-02-01 17:12:25 +01001735 else if (c == 160 && list && lcs_nbsp != NUL)
1736 {
1737 c = lcs_nbsp;
1738 attr = hl_attr(HLF_8);
1739 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00001740 else if (c == NUL && list && lcs_eol != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 {
1742 p_extra = (char_u *)"";
1743 c_extra = NUL;
1744 n_extra = 1;
1745 c = lcs_eol;
1746 attr = hl_attr(HLF_AT);
1747 --s;
1748 }
1749 else if (c != NUL && (n = byte2cells(c)) > 1)
1750 {
1751 n_extra = n - 1;
1752 p_extra = transchar_byte(c);
1753 c_extra = NUL;
1754 c = *p_extra++;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001755 /* Use special coloring to be able to distinguish <hex> from
1756 * the same in plain text. */
1757 attr = hl_attr(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 }
1759 else if (c == ' ' && trail != NULL && s > trail)
1760 {
1761 c = lcs_trail;
1762 attr = hl_attr(HLF_8);
1763 }
Bram Moolenaar1510f992015-04-22 22:18:22 +02001764 else if (c == ' ' && list && lcs_space != NUL)
1765 {
1766 c = lcs_space;
1767 attr = hl_attr(HLF_8);
1768 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 }
1770
1771 if (c == NUL)
1772 break;
1773
1774 msg_putchar_attr(c, attr);
1775 col++;
1776 }
1777 msg_clr_eos();
1778}
1779
1780#ifdef FEAT_MBYTE
1781/*
1782 * Use screen_puts() to output one multi-byte character.
1783 * Return the pointer "s" advanced to the next character.
1784 */
1785 static char_u *
1786screen_puts_mbyte(s, l, attr)
1787 char_u *s;
1788 int l;
1789 int attr;
1790{
1791 int cw;
1792
1793 msg_didout = TRUE; /* remember that line is not empty */
1794 cw = (*mb_ptr2cells)(s);
1795 if (cw > 1 && (
1796#ifdef FEAT_RIGHTLEFT
1797 cmdmsg_rl ? msg_col <= 1 :
1798#endif
1799 msg_col == Columns - 1))
1800 {
1801 /* Doesn't fit, print a highlighted '>' to fill it up. */
1802 msg_screen_putchar('>', hl_attr(HLF_AT));
1803 return s;
1804 }
1805
1806 screen_puts_len(s, l, msg_row, msg_col, attr);
1807#ifdef FEAT_RIGHTLEFT
1808 if (cmdmsg_rl)
1809 {
1810 msg_col -= cw;
1811 if (msg_col == 0)
1812 {
1813 msg_col = Columns;
1814 ++msg_row;
1815 }
1816 }
1817 else
1818#endif
1819 {
1820 msg_col += cw;
1821 if (msg_col >= Columns)
1822 {
1823 msg_col = 0;
1824 ++msg_row;
1825 }
1826 }
1827 return s + l;
1828}
1829#endif
1830
1831/*
1832 * Output a string to the screen at position msg_row, msg_col.
1833 * Update msg_row and msg_col for the next message.
1834 */
1835 void
1836msg_puts(s)
1837 char_u *s;
1838{
1839 msg_puts_attr(s, 0);
1840}
1841
1842 void
1843msg_puts_title(s)
1844 char_u *s;
1845{
1846 msg_puts_attr(s, hl_attr(HLF_T));
1847}
1848
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849/*
1850 * Show a message in such a way that it always fits in the line. Cut out a
1851 * part in the middle and replace it with "..." when necessary.
1852 * Does not handle multi-byte characters!
1853 */
1854 void
1855msg_puts_long_attr(longstr, attr)
1856 char_u *longstr;
1857 int attr;
1858{
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001859 msg_puts_long_len_attr(longstr, (int)STRLEN(longstr), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860}
1861
1862 void
1863msg_puts_long_len_attr(longstr, len, attr)
1864 char_u *longstr;
1865 int len;
1866 int attr;
1867{
1868 int slen = len;
1869 int room;
1870
1871 room = Columns - msg_col;
1872 if (len > room && room >= 20)
1873 {
1874 slen = (room - 3) / 2;
1875 msg_outtrans_len_attr(longstr, slen, attr);
1876 msg_puts_attr((char_u *)"...", hl_attr(HLF_8));
1877 }
1878 msg_outtrans_len_attr(longstr + len - slen, slen, attr);
1879}
1880
1881/*
1882 * Basic function for writing a message with highlight attributes.
1883 */
1884 void
1885msg_puts_attr(s, attr)
1886 char_u *s;
1887 int attr;
1888{
1889 msg_puts_attr_len(s, -1, attr);
1890}
1891
1892/*
1893 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes).
1894 * When "maxlen" is -1 there is no maximum length.
1895 * When "maxlen" is >= 0 the message is not put in the history.
1896 */
1897 static void
1898msg_puts_attr_len(str, maxlen, attr)
1899 char_u *str;
1900 int maxlen;
1901 int attr;
1902{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 /*
1904 * If redirection is on, also write to the redirection file.
1905 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001906 redir_write(str, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907
1908 /*
1909 * Don't print anything when using ":silent cmd".
1910 */
1911 if (msg_silent != 0)
1912 return;
1913
1914 /* if MSG_HIST flag set, add message to history */
1915 if ((attr & MSG_HIST) && maxlen < 0)
1916 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001917 add_msg_hist(str, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 attr &= ~MSG_HIST;
1919 }
1920
1921 /*
1922 * When writing something to the screen after it has scrolled, requires a
1923 * wait-return prompt later. Needed when scrolling, resetting
1924 * need_wait_return after some prompt, and then outputting something
1925 * without scrolling
1926 */
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001927 if (msg_scrolled != 0 && !msg_scrolled_ign)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 need_wait_return = TRUE;
1929 msg_didany = TRUE; /* remember that something was outputted */
1930
1931 /*
1932 * If there is no valid screen, use fprintf so we can see error messages.
1933 * If termcap is not active, we may be writing in an alternate console
1934 * window, cursor positioning may not work correctly (window size may be
1935 * different, e.g. for Win32 console) or we just don't know where the
1936 * cursor is.
1937 */
1938 if (msg_use_printf())
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001939 msg_puts_printf(str, maxlen);
1940 else
1941 msg_puts_display(str, maxlen, attr, FALSE);
1942}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001944/*
1945 * The display part of msg_puts_attr_len().
1946 * May be called recursively to display scroll-back text.
1947 */
1948 static void
1949msg_puts_display(str, maxlen, attr, recurse)
1950 char_u *str;
1951 int maxlen;
1952 int attr;
1953 int recurse;
1954{
1955 char_u *s = str;
1956 char_u *t_s = str; /* string from "t_s" to "s" is still todo */
1957 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */
1958#ifdef FEAT_MBYTE
1959 int l;
1960 int cw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001962 char_u *sb_str = str;
1963 int sb_col = msg_col;
1964 int wrap;
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00001965 int did_last_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966
1967 did_wait_return = FALSE;
Bram Moolenaar57b7fe82007-08-05 17:20:43 +00001968 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 {
1970 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001971 * We are at the end of the screen line when:
1972 * - When outputting a newline.
1973 * - When outputting a character in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001975 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976#ifdef FEAT_RIGHTLEFT
1977 cmdmsg_rl
1978 ? (
1979 msg_col <= 1
1980 || (*s == TAB && msg_col <= 7)
1981# ifdef FEAT_MBYTE
1982 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2)
1983# endif
1984 )
1985 :
1986#endif
1987 (msg_col + t_col >= Columns - 1
1988 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7))
1989# ifdef FEAT_MBYTE
1990 || (has_mbyte && (*mb_ptr2cells)(s) > 1
1991 && msg_col + t_col >= Columns - 2)
1992# endif
1993 ))))
1994 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001995 /*
1996 * The screen is scrolled up when at the last row (some terminals
1997 * scroll automatically, some don't. To avoid problems we scroll
1998 * ourselves).
1999 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 if (t_col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 /* output postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002002 t_puts(&t_col, t_s, s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002004 /* When no more prompt and no more room, truncate here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 if (msg_no_more && lines_left == 0)
2006 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002008 /* Scroll the screen up one line. */
2009 msg_scroll_up();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010
2011 msg_row = Rows - 2;
2012 if (msg_col >= Columns) /* can happen after screen resize */
2013 msg_col = Columns - 1;
2014
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002015 /* Display char in last column before showing more-prompt. */
2016 if (*s >= ' '
2017#ifdef FEAT_RIGHTLEFT
2018 && !cmdmsg_rl
2019#endif
2020 )
2021 {
2022#ifdef FEAT_MBYTE
2023 if (has_mbyte)
2024 {
2025 if (enc_utf8 && maxlen >= 0)
2026 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002027 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002028 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002029 l = (*mb_ptr2len)(s);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002030 s = screen_puts_mbyte(s, l, attr);
2031 }
2032 else
2033#endif
2034 msg_screen_putchar(*s++, attr);
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002035 did_last_char = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002036 }
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002037 else
2038 did_last_char = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002039
2040 if (p_more)
2041 /* store text for scrolling back */
2042 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
2043
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002044 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002045 need_wait_return = TRUE; /* may need wait_return in main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 if (must_redraw < VALID)
2047 must_redraw = VALID;
2048 redraw_cmdline = TRUE;
2049 if (cmdline_row > 0 && !exmode_active)
2050 --cmdline_row;
2051
2052 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002053 * If screen is completely filled and 'more' is set then wait
2054 * for a character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 */
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002056 if (lines_left > 0)
2057 --lines_left;
Bram Moolenaar203335e2006-09-03 14:35:42 +00002058 if (p_more && lines_left == 0 && State != HITRETURN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 && !msg_no_more && !exmode_active)
2060 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061#ifdef FEAT_CON_DIALOG
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002062 if (do_more_prompt(NUL))
2063 s = confirm_msg_tail;
2064#else
2065 (void)do_more_prompt(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066#endif
2067 if (quit_more)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002068 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 }
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002070
2071 /* When we displayed a char in last column need to check if there
2072 * is still more. */
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00002073 if (did_last_char)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002074 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 }
2076
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002077 wrap = *s == '\n'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 || msg_col + t_col >= Columns
2079#ifdef FEAT_MBYTE
2080 || (has_mbyte && (*mb_ptr2cells)(s) > 1
2081 && msg_col + t_col >= Columns - 1)
2082#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002083 ;
2084 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b'
2085 || *s == '\t' || *s == BELL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 /* output any postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002087 t_puts(&t_col, t_s, s, attr);
2088
2089 if (wrap && p_more && !recurse)
2090 /* store text for scrolling back */
2091 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092
2093 if (*s == '\n') /* go to next line */
2094 {
2095 msg_didout = FALSE; /* remember that line is empty */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002096#ifdef FEAT_RIGHTLEFT
2097 if (cmdmsg_rl)
2098 msg_col = Columns - 1;
2099 else
2100#endif
2101 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 if (++msg_row >= Rows) /* safety check */
2103 msg_row = Rows - 1;
2104 }
2105 else if (*s == '\r') /* go to column 0 */
2106 {
2107 msg_col = 0;
2108 }
2109 else if (*s == '\b') /* go to previous char */
2110 {
2111 if (msg_col)
2112 --msg_col;
2113 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002114 else if (*s == TAB) /* translate Tab into spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 {
2116 do
2117 msg_screen_putchar(' ', attr);
2118 while (msg_col & 7);
2119 }
2120 else if (*s == BELL) /* beep (from ":sh") */
2121 vim_beep();
2122 else
2123 {
2124#ifdef FEAT_MBYTE
2125 if (has_mbyte)
2126 {
2127 cw = (*mb_ptr2cells)(s);
2128 if (enc_utf8 && maxlen >= 0)
2129 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002130 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002132 l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 }
2134 else
2135 {
2136 cw = 1;
2137 l = 1;
2138 }
2139#endif
2140 /* When drawing from right to left or when a double-wide character
2141 * doesn't fit, draw a single character here. Otherwise collect
2142 * characters and draw them all at once later. */
2143#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
2144 if (
2145# ifdef FEAT_RIGHTLEFT
2146 cmdmsg_rl
2147# ifdef FEAT_MBYTE
2148 ||
2149# endif
2150# endif
2151# ifdef FEAT_MBYTE
2152 (cw > 1 && msg_col + t_col >= Columns - 1)
2153# endif
2154 )
2155 {
2156# ifdef FEAT_MBYTE
2157 if (l > 1)
2158 s = screen_puts_mbyte(s, l, attr) - 1;
2159 else
2160# endif
2161 msg_screen_putchar(*s, attr);
2162 }
2163 else
2164#endif
2165 {
2166 /* postpone this character until later */
2167 if (t_col == 0)
2168 t_s = s;
2169#ifdef FEAT_MBYTE
2170 t_col += cw;
2171 s += l - 1;
2172#else
2173 ++t_col;
2174#endif
2175 }
2176 }
2177 ++s;
2178 }
2179
2180 /* output any postponed text */
2181 if (t_col > 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002182 t_puts(&t_col, t_s, s, attr);
2183 if (p_more && !recurse)
2184 store_sb_text(&sb_str, s, attr, &sb_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185
2186 msg_check();
2187}
2188
2189/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002190 * Scroll the screen up one line for displaying the next message line.
2191 */
2192 static void
2193msg_scroll_up()
2194{
2195#ifdef FEAT_GUI
2196 /* Remove the cursor before scrolling, ScreenLines[] is going
2197 * to become invalid. */
2198 if (gui.in_use)
2199 gui_undraw_cursor();
2200#endif
2201 /* scrolling up always works */
2202 screen_del_lines(0, 0, 1, (int)Rows, TRUE, NULL);
2203
2204 if (!can_clear((char_u *)" "))
2205 {
2206 /* Scrolling up doesn't result in the right background. Set the
2207 * background here. It's not efficient, but avoids that we have to do
2208 * it all over the code. */
2209 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2210
2211 /* Also clear the last char of the last but one line if it was not
2212 * cleared before to avoid a scroll-up. */
2213 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1)
2214 screen_fill((int)Rows - 2, (int)Rows - 1,
2215 (int)Columns - 1, (int)Columns, ' ', ' ', 0);
2216 }
2217}
2218
2219/*
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002220 * Increment "msg_scrolled".
2221 */
2222 static void
2223inc_msg_scrolled()
2224{
2225#ifdef FEAT_EVAL
2226 if (*get_vim_var_str(VV_SCROLLSTART) == NUL)
2227 {
2228 char_u *p = sourcing_name;
2229 char_u *tofree = NULL;
2230 int len;
2231
2232 /* v:scrollstart is empty, set it to the script/function name and line
2233 * number */
2234 if (p == NULL)
2235 p = (char_u *)_("Unknown");
2236 else
2237 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002238 len = (int)STRLEN(p) + 40;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002239 tofree = alloc(len);
2240 if (tofree != NULL)
2241 {
2242 vim_snprintf((char *)tofree, len, _("%s line %ld"),
2243 p, (long)sourcing_lnum);
2244 p = tofree;
2245 }
2246 }
2247 set_vim_var_string(VV_SCROLLSTART, p, -1);
2248 vim_free(tofree);
2249 }
2250#endif
2251 ++msg_scrolled;
2252}
2253
2254/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002255 * To be able to scroll back at the "more" and "hit-enter" prompts we need to
2256 * store the displayed text and remember where screen lines start.
2257 */
2258typedef struct msgchunk_S msgchunk_T;
2259struct msgchunk_S
2260{
2261 msgchunk_T *sb_next;
2262 msgchunk_T *sb_prev;
2263 char sb_eol; /* TRUE when line ends after this text */
2264 int sb_msg_col; /* column in which text starts */
2265 int sb_attr; /* text attributes */
2266 char_u sb_text[1]; /* text to be displayed, actually longer */
2267};
2268
2269static msgchunk_T *last_msgchunk = NULL; /* last displayed text */
2270
2271static msgchunk_T *msg_sb_start __ARGS((msgchunk_T *mps));
2272static msgchunk_T *disp_sb_line __ARGS((int row, msgchunk_T *smp));
2273
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002274static int do_clear_sb_text = FALSE; /* clear text on next msg */
2275
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002276/*
2277 * Store part of a printed message for displaying when scrolling back.
2278 */
2279 static void
2280store_sb_text(sb_str, s, attr, sb_col, finish)
2281 char_u **sb_str; /* start of string */
2282 char_u *s; /* just after string */
2283 int attr;
2284 int *sb_col;
2285 int finish; /* line ends */
2286{
2287 msgchunk_T *mp;
2288
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002289 if (do_clear_sb_text)
2290 {
2291 clear_sb_text();
2292 do_clear_sb_text = FALSE;
2293 }
2294
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002295 if (s > *sb_str)
2296 {
2297 mp = (msgchunk_T *)alloc((int)(sizeof(msgchunk_T) + (s - *sb_str)));
2298 if (mp != NULL)
2299 {
2300 mp->sb_eol = finish;
2301 mp->sb_msg_col = *sb_col;
2302 mp->sb_attr = attr;
2303 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str);
2304
2305 if (last_msgchunk == NULL)
2306 {
2307 last_msgchunk = mp;
2308 mp->sb_prev = NULL;
2309 }
2310 else
2311 {
2312 mp->sb_prev = last_msgchunk;
2313 last_msgchunk->sb_next = mp;
2314 last_msgchunk = mp;
2315 }
2316 mp->sb_next = NULL;
2317 }
2318 }
2319 else if (finish && last_msgchunk != NULL)
2320 last_msgchunk->sb_eol = TRUE;
2321
2322 *sb_str = s;
2323 *sb_col = 0;
2324}
2325
2326/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002327 * Finished showing messages, clear the scroll-back text on the next message.
2328 */
2329 void
2330may_clear_sb_text()
2331{
2332 do_clear_sb_text = TRUE;
2333}
2334
2335/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002336 * Clear any text remembered for scrolling back.
2337 * Called when redrawing the screen.
2338 */
2339 void
2340clear_sb_text()
2341{
2342 msgchunk_T *mp;
2343
2344 while (last_msgchunk != NULL)
2345 {
2346 mp = last_msgchunk->sb_prev;
2347 vim_free(last_msgchunk);
2348 last_msgchunk = mp;
2349 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002350}
2351
2352/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002353 * "g<" command.
2354 */
2355 void
2356show_sb_text()
2357{
2358 msgchunk_T *mp;
2359
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002360 /* Only show something if there is more than one line, otherwise it looks
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002361 * weird, typing a command without output results in one line. */
2362 mp = msg_sb_start(last_msgchunk);
2363 if (mp == NULL || mp->sb_prev == NULL)
2364 vim_beep();
2365 else
2366 {
2367 do_more_prompt('G');
2368 wait_return(FALSE);
2369 }
2370}
2371
2372/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002373 * Move to the start of screen line in already displayed text.
2374 */
2375 static msgchunk_T *
2376msg_sb_start(mps)
2377 msgchunk_T *mps;
2378{
2379 msgchunk_T *mp = mps;
2380
2381 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol)
2382 mp = mp->sb_prev;
2383 return mp;
2384}
2385
2386/*
Bram Moolenaar6df5e5a2012-03-28 16:49:29 +02002387 * Mark the last message chunk as finishing the line.
2388 */
2389 void
2390msg_sb_eol()
2391{
2392 if (last_msgchunk != NULL)
2393 last_msgchunk->sb_eol = TRUE;
2394}
2395
2396/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002397 * Display a screen line from previously displayed text at row "row".
2398 * Returns a pointer to the text for the next line (can be NULL).
2399 */
2400 static msgchunk_T *
2401disp_sb_line(row, smp)
2402 int row;
2403 msgchunk_T *smp;
2404{
2405 msgchunk_T *mp = smp;
2406 char_u *p;
2407
2408 for (;;)
2409 {
2410 msg_row = row;
2411 msg_col = mp->sb_msg_col;
2412 p = mp->sb_text;
2413 if (*p == '\n') /* don't display the line break */
2414 ++p;
2415 msg_puts_display(p, -1, mp->sb_attr, TRUE);
2416 if (mp->sb_eol || mp->sb_next == NULL)
2417 break;
2418 mp = mp->sb_next;
2419 }
2420 return mp->sb_next;
2421}
2422
2423/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 * Output any postponed text for msg_puts_attr_len().
2425 */
2426 static void
2427t_puts(t_col, t_s, s, attr)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002428 int *t_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 char_u *t_s;
2430 char_u *s;
2431 int attr;
2432{
2433 /* output postponed text */
2434 msg_didout = TRUE; /* remember that line is not empty */
2435 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002436 msg_col += *t_col;
2437 *t_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438#ifdef FEAT_MBYTE
2439 /* If the string starts with a composing character don't increment the
2440 * column position for it. */
2441 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s)))
2442 --msg_col;
2443#endif
2444 if (msg_col >= Columns)
2445 {
2446 msg_col = 0;
2447 ++msg_row;
2448 }
2449}
2450
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451/*
2452 * Returns TRUE when messages should be printed with mch_errmsg().
2453 * This is used when there is no valid screen, so we can see error messages.
2454 * If termcap is not active, we may be writing in an alternate console
2455 * window, cursor positioning may not work correctly (window size may be
2456 * different, e.g. for Win32 console) or we just don't know where the
2457 * cursor is.
2458 */
2459 int
2460msg_use_printf()
2461{
2462 return (!msg_check_screen()
2463#if defined(WIN3264) && !defined(FEAT_GUI_MSWIN)
2464 || !termcap_active
2465#endif
2466 || (swapping_screen() && !termcap_active)
2467 );
2468}
2469
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002470/*
2471 * Print a message when there is no valid screen.
2472 */
2473 static void
2474msg_puts_printf(str, maxlen)
2475 char_u *str;
2476 int maxlen;
2477{
2478 char_u *s = str;
2479 char_u buf[4];
2480 char_u *p;
2481
2482#ifdef WIN3264
2483 if (!(silent_mode && p_verbose == 0))
2484 mch_settmode(TMODE_COOK); /* handle '\r' and '\n' correctly */
2485#endif
2486 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
2487 {
2488 if (!(silent_mode && p_verbose == 0))
2489 {
2490 /* NL --> CR NL translation (for Unix, not for "--version") */
2491 /* NL --> CR translation (for Mac) */
2492 p = &buf[0];
2493 if (*s == '\n' && !info_message)
2494 *p++ = '\r';
2495#if defined(USE_CR) && !defined(MACOS_X_UNIX)
2496 else
2497#endif
2498 *p++ = *s;
2499 *p = '\0';
2500 if (info_message) /* informative message, not an error */
2501 mch_msg((char *)buf);
2502 else
2503 mch_errmsg((char *)buf);
2504 }
2505
2506 /* primitive way to compute the current column */
2507#ifdef FEAT_RIGHTLEFT
2508 if (cmdmsg_rl)
2509 {
2510 if (*s == '\r' || *s == '\n')
2511 msg_col = Columns - 1;
2512 else
2513 --msg_col;
2514 }
2515 else
2516#endif
2517 {
2518 if (*s == '\r' || *s == '\n')
2519 msg_col = 0;
2520 else
2521 ++msg_col;
2522 }
2523 ++s;
2524 }
2525 msg_didout = TRUE; /* assume that line is not empty */
2526
2527#ifdef WIN3264
2528 if (!(silent_mode && p_verbose == 0))
2529 mch_settmode(TMODE_RAW);
2530#endif
2531}
2532
2533/*
2534 * Show the more-prompt and handle the user response.
2535 * This takes care of scrolling back and displaying previously displayed text.
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002536 * When at hit-enter prompt "typed_char" is the already typed character,
2537 * otherwise it's NUL.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002538 * Returns TRUE when jumping ahead to "confirm_msg_tail".
2539 */
2540 static int
2541do_more_prompt(typed_char)
2542 int typed_char;
2543{
2544 int used_typed_char = typed_char;
2545 int oldState = State;
2546 int c;
2547#ifdef FEAT_CON_DIALOG
2548 int retval = FALSE;
2549#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002550 int toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002551 msgchunk_T *mp_last = NULL;
2552 msgchunk_T *mp;
2553 int i;
2554
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002555 if (typed_char == 'G')
2556 {
2557 /* "g<": Find first line on the last page. */
2558 mp_last = msg_sb_start(last_msgchunk);
2559 for (i = 0; i < Rows - 2 && mp_last != NULL
2560 && mp_last->sb_prev != NULL; ++i)
2561 mp_last = msg_sb_start(mp_last->sb_prev);
2562 }
2563
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002564 State = ASKMORE;
2565#ifdef FEAT_MOUSE
2566 setmouse();
2567#endif
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002568 if (typed_char == NUL)
2569 msg_moremsg(FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002570 for (;;)
2571 {
2572 /*
2573 * Get a typed character directly from the user.
2574 */
2575 if (used_typed_char != NUL)
2576 {
2577 c = used_typed_char; /* was typed at hit-enter prompt */
2578 used_typed_char = NUL;
2579 }
2580 else
2581 c = get_keystroke();
2582
2583#if defined(FEAT_MENU) && defined(FEAT_GUI)
2584 if (c == K_MENU)
2585 {
2586 int idx = get_menu_index(current_menu, ASKMORE);
2587
2588 /* Used a menu. If it starts with CTRL-Y, it must
2589 * be a "Copy" for the clipboard. Otherwise
2590 * assume that we end */
2591 if (idx == MENU_INDEX_INVALID)
2592 continue;
2593 c = *current_menu->strings[idx];
2594 if (c != NUL && current_menu->strings[idx][1] != NUL)
2595 ins_typebuf(current_menu->strings[idx] + 1,
2596 current_menu->noremap[idx], 0, TRUE,
2597 current_menu->silent[idx]);
2598 }
2599#endif
2600
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002601 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002602 switch (c)
2603 {
2604 case BS: /* scroll one line back */
2605 case K_BS:
2606 case 'k':
2607 case K_UP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002608 toscroll = -1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002609 break;
2610
2611 case CAR: /* one extra line */
2612 case NL:
2613 case 'j':
2614 case K_DOWN:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002615 toscroll = 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002616 break;
2617
2618 case 'u': /* Up half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002619 toscroll = -(Rows / 2);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002620 break;
2621
2622 case 'd': /* Down half a page */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002623 toscroll = Rows / 2;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002624 break;
2625
2626 case 'b': /* one page back */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002627 case K_PAGEUP:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002628 toscroll = -(Rows - 1);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002629 break;
2630
2631 case ' ': /* one extra page */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002632 case 'f':
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002633 case K_PAGEDOWN:
2634 case K_LEFTMOUSE:
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002635 toscroll = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002636 break;
2637
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002638 case 'g': /* all the way back to the start */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002639 toscroll = -999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002640 break;
2641
2642 case 'G': /* all the way to the end */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002643 toscroll = 999999;
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002644 lines_left = 999999;
2645 break;
2646
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002647 case ':': /* start new command line */
2648#ifdef FEAT_CON_DIALOG
2649 if (!confirm_msg_used)
2650#endif
2651 {
2652 /* Since got_int is set all typeahead will be flushed, but we
2653 * want to keep this ':', remember that in a special way. */
2654 typeahead_noflush(':');
2655 cmdline_row = Rows - 1; /* put ':' on this line */
2656 skip_redraw = TRUE; /* skip redraw once */
2657 need_wait_return = FALSE; /* don't wait in main() */
2658 }
2659 /*FALLTHROUGH*/
2660 case 'q': /* quit */
2661 case Ctrl_C:
2662 case ESC:
2663#ifdef FEAT_CON_DIALOG
2664 if (confirm_msg_used)
2665 {
2666 /* Jump to the choices of the dialog. */
2667 retval = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002668 }
2669 else
2670#endif
2671 {
2672 got_int = TRUE;
2673 quit_more = TRUE;
2674 }
Bram Moolenaar51306d22009-02-24 03:38:04 +00002675 /* When there is some more output (wrapping line) display that
2676 * without another prompt. */
2677 lines_left = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002678 break;
2679
2680#ifdef FEAT_CLIPBOARD
2681 case Ctrl_Y:
2682 /* Strange way to allow copying (yanking) a modeless
2683 * selection at the more prompt. Use CTRL-Y,
2684 * because the same is used in Cmdline-mode and at the
2685 * hit-enter prompt. However, scrolling one line up
2686 * might be expected... */
2687 if (clip_star.state == SELECT_DONE)
2688 clip_copy_modeless_selection(TRUE);
2689 continue;
2690#endif
2691 default: /* no valid response */
2692 msg_moremsg(TRUE);
2693 continue;
2694 }
2695
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002696 if (toscroll != 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002697 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002698 if (toscroll < 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002699 {
2700 /* go to start of last line */
2701 if (mp_last == NULL)
2702 mp = msg_sb_start(last_msgchunk);
2703 else if (mp_last->sb_prev != NULL)
2704 mp = msg_sb_start(mp_last->sb_prev);
2705 else
2706 mp = NULL;
2707
2708 /* go to start of line at top of the screen */
2709 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL;
2710 ++i)
2711 mp = msg_sb_start(mp->sb_prev);
2712
2713 if (mp != NULL && mp->sb_prev != NULL)
2714 {
2715 /* Find line to be displayed at top. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002716 for (i = 0; i > toscroll; --i)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002717 {
2718 if (mp == NULL || mp->sb_prev == NULL)
2719 break;
2720 mp = msg_sb_start(mp->sb_prev);
2721 if (mp_last == NULL)
2722 mp_last = msg_sb_start(last_msgchunk);
2723 else
2724 mp_last = msg_sb_start(mp_last->sb_prev);
2725 }
2726
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002727 if (toscroll == -1 && screen_ins_lines(0, 0, 1,
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002728 (int)Rows, NULL) == OK)
2729 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002730 /* display line at top */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002731 (void)disp_sb_line(0, mp);
2732 }
2733 else
2734 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002735 /* redisplay all lines */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002736 screenclear();
Bram Moolenaar773560b2006-05-06 21:38:18 +00002737 for (i = 0; mp != NULL && i < Rows - 1; ++i)
2738 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002739 mp = disp_sb_line(i, mp);
Bram Moolenaar773560b2006-05-06 21:38:18 +00002740 ++msg_scrolled;
2741 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002742 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002743 toscroll = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002744 }
2745 }
2746 else
2747 {
2748 /* First display any text that we scrolled back. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002749 while (toscroll > 0 && mp_last != NULL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002750 {
2751 /* scroll up, display line at bottom */
2752 msg_scroll_up();
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002753 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002754 screen_fill((int)Rows - 2, (int)Rows - 1, 0,
2755 (int)Columns, ' ', ' ', 0);
2756 mp_last = disp_sb_line((int)Rows - 2, mp_last);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002757 --toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002758 }
2759 }
2760
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002761 if (toscroll <= 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002762 {
2763 /* displayed the requested text, more prompt again */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002764 screen_fill((int)Rows - 1, (int)Rows, 0,
2765 (int)Columns, ' ', ' ', 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002766 msg_moremsg(FALSE);
2767 continue;
2768 }
2769
2770 /* display more text, return to caller */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01002771 lines_left = toscroll;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002772 }
2773
2774 break;
2775 }
2776
2777 /* clear the --more-- message */
2778 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2779 State = oldState;
2780#ifdef FEAT_MOUSE
2781 setmouse();
2782#endif
2783 if (quit_more)
2784 {
2785 msg_row = Rows - 1;
2786 msg_col = 0;
2787 }
2788#ifdef FEAT_RIGHTLEFT
2789 else if (cmdmsg_rl)
2790 msg_col = Columns - 1;
2791#endif
2792
2793#ifdef FEAT_CON_DIALOG
2794 return retval;
2795#else
2796 return FALSE;
2797#endif
2798}
2799
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800#if defined(USE_MCH_ERRMSG) || defined(PROTO)
2801
2802#ifdef mch_errmsg
2803# undef mch_errmsg
2804#endif
2805#ifdef mch_msg
2806# undef mch_msg
2807#endif
2808
2809/*
2810 * Give an error message. To be used when the screen hasn't been initialized
2811 * yet. When stderr can't be used, collect error messages until the GUI has
2812 * started and they can be displayed in a message box.
2813 */
2814 void
2815mch_errmsg(str)
2816 char *str;
2817{
2818 int len;
2819
2820#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
2821 /* On Unix use stderr if it's a tty.
2822 * When not going to start the GUI also use stderr.
2823 * On Mac, when started from Finder, stderr is the console. */
2824 if (
2825# ifdef UNIX
2826# ifdef MACOS_X_UNIX
2827 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
2828# else
2829 isatty(2)
2830# endif
2831# ifdef FEAT_GUI
2832 ||
2833# endif
2834# endif
2835# ifdef FEAT_GUI
2836 !(gui.in_use || gui.starting)
2837# endif
2838 )
2839 {
2840 fprintf(stderr, "%s", str);
2841 return;
2842 }
2843#endif
2844
2845 /* avoid a delay for a message that isn't there */
2846 emsg_on_display = FALSE;
2847
2848 len = (int)STRLEN(str) + 1;
2849 if (error_ga.ga_growsize == 0)
2850 {
2851 error_ga.ga_growsize = 80;
2852 error_ga.ga_itemsize = 1;
2853 }
2854 if (ga_grow(&error_ga, len) == OK)
2855 {
2856 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len,
2857 (char_u *)str, len);
2858#ifdef UNIX
2859 /* remove CR characters, they are displayed */
2860 {
2861 char_u *p;
2862
2863 p = (char_u *)error_ga.ga_data + error_ga.ga_len;
2864 for (;;)
2865 {
2866 p = vim_strchr(p, '\r');
2867 if (p == NULL)
2868 break;
2869 *p = ' ';
2870 }
2871 }
2872#endif
2873 --len; /* don't count the NUL at the end */
2874 error_ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 }
2876}
2877
2878/*
2879 * Give a message. To be used when the screen hasn't been initialized yet.
2880 * When there is no tty, collect messages until the GUI has started and they
2881 * can be displayed in a message box.
2882 */
2883 void
2884mch_msg(str)
2885 char *str;
2886{
2887#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
2888 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and
2889 * uses mch_errmsg() when started from the desktop.
2890 * When not going to start the GUI also use stdout.
2891 * On Mac, when started from Finder, stderr is the console. */
2892 if (
2893# ifdef UNIX
2894# ifdef MACOS_X_UNIX
2895 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
2896# else
2897 isatty(2)
2898# endif
2899# ifdef FEAT_GUI
2900 ||
2901# endif
2902# endif
2903# ifdef FEAT_GUI
2904 !(gui.in_use || gui.starting)
2905# endif
2906 )
2907 {
2908 printf("%s", str);
2909 return;
2910 }
2911# endif
2912 mch_errmsg(str);
2913}
2914#endif /* USE_MCH_ERRMSG */
2915
2916/*
2917 * Put a character on the screen at the current message position and advance
2918 * to the next position. Only for printable ASCII!
2919 */
2920 static void
2921msg_screen_putchar(c, attr)
2922 int c;
2923 int attr;
2924{
2925 msg_didout = TRUE; /* remember that line is not empty */
2926 screen_putchar(c, msg_row, msg_col, attr);
2927#ifdef FEAT_RIGHTLEFT
2928 if (cmdmsg_rl)
2929 {
2930 if (--msg_col == 0)
2931 {
2932 msg_col = Columns;
2933 ++msg_row;
2934 }
2935 }
2936 else
2937#endif
2938 {
2939 if (++msg_col >= Columns)
2940 {
2941 msg_col = 0;
2942 ++msg_row;
2943 }
2944 }
2945}
2946
2947 void
2948msg_moremsg(full)
2949 int full;
2950{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002951 int attr;
2952 char_u *s = (char_u *)_("-- More --");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953
2954 attr = hl_attr(HLF_M);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002955 screen_puts(s, (int)Rows - 1, 0, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 if (full)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002957 screen_puts((char_u *)
2958 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "),
2959 (int)Rows - 1, vim_strsize(s), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960}
2961
2962/*
2963 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
2964 * exmode_active.
2965 */
2966 void
2967repeat_message()
2968{
2969 if (State == ASKMORE)
2970 {
2971 msg_moremsg(TRUE); /* display --more-- message again */
2972 msg_row = Rows - 1;
2973 }
2974#ifdef FEAT_CON_DIALOG
2975 else if (State == CONFIRM)
2976 {
2977 display_confirm_msg(); /* display ":confirm" message again */
2978 msg_row = Rows - 1;
2979 }
2980#endif
2981 else if (State == EXTERNCMD)
2982 {
2983 windgoto(msg_row, msg_col); /* put cursor back */
2984 }
2985 else if (State == HITRETURN || State == SETWSIZE)
2986 {
Bram Moolenaar9f108752007-11-24 14:44:58 +00002987 if (msg_row == Rows - 1)
2988 {
2989 /* Avoid drawing the "hit-enter" prompt below the previous one,
2990 * overwrite it. Esp. useful when regaining focus and a
2991 * FocusGained autocmd exists but didn't draw anything. */
2992 msg_didout = FALSE;
2993 msg_col = 0;
2994 msg_clr_eos();
2995 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 hit_return_msg();
2997 msg_row = Rows - 1;
2998 }
2999}
3000
3001/*
3002 * msg_check_screen - check if the screen is initialized.
3003 * Also check msg_row and msg_col, if they are too big it may cause a crash.
3004 * While starting the GUI the terminal codes will be set for the GUI, but the
3005 * output goes to the terminal. Don't use the terminal codes then.
3006 */
3007 static int
3008msg_check_screen()
3009{
3010 if (!full_screen || !screen_valid(FALSE))
3011 return FALSE;
3012
3013 if (msg_row >= Rows)
3014 msg_row = Rows - 1;
3015 if (msg_col >= Columns)
3016 msg_col = Columns - 1;
3017 return TRUE;
3018}
3019
3020/*
3021 * Clear from current message position to end of screen.
3022 * Skip this when ":silent" was used, no need to clear for redirection.
3023 */
3024 void
3025msg_clr_eos()
3026{
3027 if (msg_silent == 0)
3028 msg_clr_eos_force();
3029}
3030
3031/*
3032 * Clear from current message position to end of screen.
3033 * Note: msg_col is not updated, so we remember the end of the message
3034 * for msg_check().
3035 */
3036 void
3037msg_clr_eos_force()
3038{
3039 if (msg_use_printf())
3040 {
3041 if (full_screen) /* only when termcap codes are valid */
3042 {
3043 if (*T_CD)
3044 out_str(T_CD); /* clear to end of display */
3045 else if (*T_CE)
3046 out_str(T_CE); /* clear to end of line */
3047 }
3048 }
3049 else
3050 {
3051#ifdef FEAT_RIGHTLEFT
3052 if (cmdmsg_rl)
3053 {
3054 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0);
3055 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3056 }
3057 else
3058#endif
3059 {
3060 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns,
3061 ' ', ' ', 0);
3062 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
3063 }
3064 }
3065}
3066
3067/*
3068 * Clear the command line.
3069 */
3070 void
3071msg_clr_cmdline()
3072{
3073 msg_row = cmdline_row;
3074 msg_col = 0;
3075 msg_clr_eos_force();
3076}
3077
3078/*
3079 * end putting a message on the screen
3080 * call wait_return if the message does not fit in the available space
3081 * return TRUE if wait_return not called.
3082 */
3083 int
3084msg_end()
3085{
3086 /*
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02003087 * If the string is larger than the window,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 * or the ruler option is set and we run into it,
3089 * we have to redraw the window.
3090 * Do not do this if we are abandoning the file or editing the command line.
3091 */
3092 if (!exiting && need_wait_return && !(State & CMDLINE))
3093 {
3094 wait_return(FALSE);
3095 return FALSE;
3096 }
3097 out_flush();
3098 return TRUE;
3099}
3100
3101/*
3102 * If the written message runs into the shown command or ruler, we have to
3103 * wait for hit-return and redraw the window later.
3104 */
3105 void
3106msg_check()
3107{
3108 if (msg_row == Rows - 1 && msg_col >= sc_col)
3109 {
3110 need_wait_return = TRUE;
3111 redraw_cmdline = TRUE;
3112 }
3113}
3114
3115/*
3116 * May write a string to the redirection file.
3117 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3118 */
3119 static void
3120redir_write(str, maxlen)
3121 char_u *str;
3122 int maxlen;
3123{
3124 char_u *s = str;
3125 static int cur_col = 0;
3126
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003127 /* Don't do anything for displaying prompts and the like. */
3128 if (redir_off)
3129 return;
3130
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003131 /* If 'verbosefile' is set prepare for writing in that file. */
3132 if (*p_vfile != NUL && verbose_fd == NULL)
3133 verbose_open();
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003134
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003135 if (redirecting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 {
3137 /* If the string doesn't start with CR or NL, go to msg_col */
3138 if (*s != '\n' && *s != '\r')
3139 {
3140 while (cur_col < msg_col)
3141 {
3142#ifdef FEAT_EVAL
3143 if (redir_reg)
3144 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003145 else if (redir_vname)
3146 var_redir_str((char_u *)" ", -1);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003147 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003149 if (redir_fd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 fputs(" ", redir_fd);
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003151 if (verbose_fd != NULL)
3152 fputs(" ", verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 ++cur_col;
3154 }
3155 }
3156
3157#ifdef FEAT_EVAL
3158 if (redir_reg)
3159 write_reg_contents(redir_reg, s, maxlen, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003160 if (redir_vname)
3161 var_redir_str(s, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162#endif
3163
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003164 /* Write and adjust the current column. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3166 {
3167#ifdef FEAT_EVAL
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003168 if (!redir_reg && !redir_vname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169#endif
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003170 if (redir_fd != NULL)
3171 putc(*s, redir_fd);
3172 if (verbose_fd != NULL)
3173 putc(*s, verbose_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174 if (*s == '\r' || *s == '\n')
3175 cur_col = 0;
3176 else if (*s == '\t')
3177 cur_col += (8 - cur_col % 8);
3178 else
3179 ++cur_col;
3180 ++s;
3181 }
3182
3183 if (msg_silent != 0) /* should update msg_col */
3184 msg_col = cur_col;
3185 }
3186}
3187
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003188 int
3189redirecting()
3190{
Bram Moolenaarb5b5b892011-09-14 15:39:29 +02003191 return redir_fd != NULL || *p_vfile != NUL
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003192#ifdef FEAT_EVAL
3193 || redir_reg || redir_vname
3194#endif
3195 ;
3196}
3197
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198/*
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00003199 * Before giving verbose message.
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003200 * Must always be called paired with verbose_leave()!
3201 */
3202 void
3203verbose_enter()
3204{
3205 if (*p_vfile != NUL)
3206 ++msg_silent;
3207}
3208
3209/*
3210 * After giving verbose message.
3211 * Must always be called paired with verbose_enter()!
3212 */
3213 void
3214verbose_leave()
3215{
3216 if (*p_vfile != NUL)
3217 if (--msg_silent < 0)
3218 msg_silent = 0;
3219}
3220
3221/*
3222 * Like verbose_enter() and set msg_scroll when displaying the message.
3223 */
3224 void
3225verbose_enter_scroll()
3226{
3227 if (*p_vfile != NUL)
3228 ++msg_silent;
3229 else
3230 /* always scroll up, don't overwrite */
3231 msg_scroll = TRUE;
3232}
3233
3234/*
3235 * Like verbose_leave() and set cmdline_row when displaying the message.
3236 */
3237 void
3238verbose_leave_scroll()
3239{
3240 if (*p_vfile != NUL)
3241 {
3242 if (--msg_silent < 0)
3243 msg_silent = 0;
3244 }
3245 else
3246 cmdline_row = msg_row;
3247}
3248
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003249/*
3250 * Called when 'verbosefile' is set: stop writing to the file.
3251 */
3252 void
3253verbose_stop()
3254{
3255 if (verbose_fd != NULL)
3256 {
3257 fclose(verbose_fd);
3258 verbose_fd = NULL;
3259 }
3260 verbose_did_open = FALSE;
3261}
3262
3263/*
3264 * Open the file 'verbosefile'.
3265 * Return FAIL or OK.
3266 */
3267 int
3268verbose_open()
3269{
3270 if (verbose_fd == NULL && !verbose_did_open)
3271 {
3272 /* Only give the error message once. */
3273 verbose_did_open = TRUE;
3274
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003275 verbose_fd = mch_fopen((char *)p_vfile, "a");
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003276 if (verbose_fd == NULL)
3277 {
3278 EMSG2(_(e_notopen), p_vfile);
3279 return FAIL;
3280 }
3281 }
3282 return OK;
3283}
3284
3285/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286 * Give a warning message (for searching).
3287 * Use 'w' highlighting and may repeat the message after redrawing
3288 */
3289 void
3290give_warning(message, hl)
3291 char_u *message;
3292 int hl;
3293{
3294 /* Don't do this for ":silent". */
3295 if (msg_silent != 0)
3296 return;
3297
3298 /* Don't want a hit-enter prompt here. */
3299 ++no_wait_return;
Bram Moolenaared203462004-06-16 11:19:22 +00003300
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301#ifdef FEAT_EVAL
3302 set_vim_var_string(VV_WARNINGMSG, message, -1);
3303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304 vim_free(keep_msg);
3305 keep_msg = NULL;
3306 if (hl)
3307 keep_msg_attr = hl_attr(HLF_W);
3308 else
3309 keep_msg_attr = 0;
3310 if (msg_attr(message, keep_msg_attr) && msg_scrolled == 0)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003311 set_keep_msg(message, keep_msg_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312 msg_didout = FALSE; /* overwrite this message */
3313 msg_nowait = TRUE; /* don't wait for this message */
3314 msg_col = 0;
Bram Moolenaared203462004-06-16 11:19:22 +00003315
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 --no_wait_return;
3317}
3318
3319/*
3320 * Advance msg cursor to column "col".
3321 */
3322 void
3323msg_advance(col)
3324 int col;
3325{
3326 if (msg_silent != 0) /* nothing to advance to */
3327 {
3328 msg_col = col; /* for redirection, may fill it up later */
3329 return;
3330 }
3331 if (col >= Columns) /* not enough room */
3332 col = Columns - 1;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003333#ifdef FEAT_RIGHTLEFT
3334 if (cmdmsg_rl)
3335 while (msg_col > Columns - col)
3336 msg_putchar(' ');
3337 else
3338#endif
3339 while (msg_col < col)
3340 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341}
3342
3343#if defined(FEAT_CON_DIALOG) || defined(PROTO)
3344/*
3345 * Used for "confirm()" function, and the :confirm command prefix.
3346 * Versions which haven't got flexible dialogs yet, and console
3347 * versions, get this generic handler which uses the command line.
3348 *
3349 * type = one of:
3350 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC
3351 * title = title string (can be NULL for default)
3352 * (neither used in console dialogs at the moment)
3353 *
3354 * Format of the "buttons" string:
3355 * "Button1Name\nButton2Name\nButton3Name"
3356 * The first button should normally be the default/accept
3357 * The second button should be the 'Cancel' button
3358 * Other buttons- use your imagination!
3359 * A '&' in a button name becomes a shortcut, so each '&' should be before a
3360 * different letter.
3361 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 int
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003363do_dialog(type, title, message, buttons, dfltbutton, textfield, ex_cmd)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003364 int type UNUSED;
3365 char_u *title UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 char_u *message;
3367 char_u *buttons;
3368 int dfltbutton;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003369 char_u *textfield UNUSED; /* IObuff for inputdialog(), NULL
3370 otherwise */
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003371 int ex_cmd; /* when TRUE pressing : accepts default and starts
3372 Ex command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373{
3374 int oldState;
3375 int retval = 0;
3376 char_u *hotkeys;
3377 int c;
3378 int i;
3379
3380#ifndef NO_CONSOLE
3381 /* Don't output anything in silent mode ("ex -s") */
3382 if (silent_mode)
3383 return dfltbutton; /* return default option */
3384#endif
3385
3386#ifdef FEAT_GUI_DIALOG
3387 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */
3388 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
3389 {
3390 c = gui_mch_dialog(type, title, message, buttons, dfltbutton,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003391 textfield, ex_cmd);
Bram Moolenaar8de49e12009-02-11 17:47:54 +00003392 /* avoid a hit-enter prompt without clearing the cmdline */
3393 need_wait_return = FALSE;
3394 emsg_on_display = FALSE;
3395 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396
3397 /* Flush output to avoid that further messages and redrawing is done
3398 * in the wrong order. */
3399 out_flush();
3400 gui_mch_update();
3401
3402 return c;
3403 }
3404#endif
3405
3406 oldState = State;
3407 State = CONFIRM;
3408#ifdef FEAT_MOUSE
3409 setmouse();
3410#endif
3411
3412 /*
3413 * Since we wait for a keypress, don't make the
3414 * user press RETURN as well afterwards.
3415 */
3416 ++no_wait_return;
3417 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton);
3418
3419 if (hotkeys != NULL)
3420 {
3421 for (;;)
3422 {
3423 /* Get a typed character directly from the user. */
3424 c = get_keystroke();
3425 switch (c)
3426 {
3427 case CAR: /* User accepts default option */
3428 case NL:
3429 retval = dfltbutton;
3430 break;
3431 case Ctrl_C: /* User aborts/cancels */
3432 case ESC:
3433 retval = 0;
3434 break;
3435 default: /* Could be a hotkey? */
3436 if (c < 0) /* special keys are ignored here */
3437 continue;
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003438 if (c == ':' && ex_cmd)
3439 {
3440 retval = dfltbutton;
3441 ins_char_typebuf(':');
3442 break;
3443 }
3444
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 /* Make the character lowercase, as chars in "hotkeys" are. */
3446 c = MB_TOLOWER(c);
3447 retval = 1;
3448 for (i = 0; hotkeys[i]; ++i)
3449 {
3450#ifdef FEAT_MBYTE
3451 if (has_mbyte)
3452 {
3453 if ((*mb_ptr2char)(hotkeys + i) == c)
3454 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003455 i += (*mb_ptr2len)(hotkeys + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 }
3457 else
3458#endif
3459 if (hotkeys[i] == c)
3460 break;
3461 ++retval;
3462 }
3463 if (hotkeys[i])
3464 break;
3465 /* No hotkey match, so keep waiting */
3466 continue;
3467 }
3468 break;
3469 }
3470
3471 vim_free(hotkeys);
3472 }
3473
3474 State = oldState;
3475#ifdef FEAT_MOUSE
3476 setmouse();
3477#endif
3478 --no_wait_return;
3479 msg_end_prompt();
3480
3481 return retval;
3482}
3483
3484static int copy_char __ARGS((char_u *from, char_u *to, int lowercase));
3485
3486/*
3487 * Copy one character from "*from" to "*to", taking care of multi-byte
3488 * characters. Return the length of the character in bytes.
3489 */
3490 static int
3491copy_char(from, to, lowercase)
3492 char_u *from;
3493 char_u *to;
3494 int lowercase; /* make character lower case */
3495{
3496#ifdef FEAT_MBYTE
3497 int len;
3498 int c;
3499
3500 if (has_mbyte)
3501 {
3502 if (lowercase)
3503 {
3504 c = MB_TOLOWER((*mb_ptr2char)(from));
3505 return (*mb_char2bytes)(c, to);
3506 }
3507 else
3508 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003509 len = (*mb_ptr2len)(from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510 mch_memmove(to, from, (size_t)len);
3511 return len;
3512 }
3513 }
3514 else
3515#endif
3516 {
3517 if (lowercase)
3518 *to = (char_u)TOLOWER_LOC(*from);
3519 else
3520 *to = *from;
3521 return 1;
3522 }
3523}
3524
3525/*
3526 * Format the dialog string, and display it at the bottom of
3527 * the screen. Return a string of hotkey chars (if defined) for
3528 * each 'button'. If a button has no hotkey defined, the first character of
3529 * the button is used.
3530 * The hotkeys can be multi-byte characters, but without combining chars.
3531 *
3532 * Returns an allocated string with hotkeys, or NULL for error.
3533 */
3534 static char_u *
3535msg_show_console_dialog(message, buttons, dfltbutton)
3536 char_u *message;
3537 char_u *buttons;
3538 int dfltbutton;
3539{
3540 int len = 0;
3541#ifdef FEAT_MBYTE
3542# define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1)
3543#else
3544# define HOTK_LEN 1
3545#endif
3546 int lenhotkey = HOTK_LEN; /* count first button */
3547 char_u *hotk = NULL;
3548 char_u *msgp = NULL;
3549 char_u *hotkp = NULL;
3550 char_u *r;
3551 int copy;
3552#define HAS_HOTKEY_LEN 30
3553 char_u has_hotkey[HAS_HOTKEY_LEN];
3554 int first_hotkey = FALSE; /* first char of button is hotkey */
3555 int idx;
3556
3557 has_hotkey[0] = FALSE;
3558
3559 /*
3560 * First loop: compute the size of memory to allocate.
3561 * Second loop: copy to the allocated memory.
3562 */
3563 for (copy = 0; copy <= 1; ++copy)
3564 {
3565 r = buttons;
3566 idx = 0;
3567 while (*r)
3568 {
3569 if (*r == DLG_BUTTON_SEP)
3570 {
3571 if (copy)
3572 {
3573 *msgp++ = ',';
3574 *msgp++ = ' '; /* '\n' -> ', ' */
3575
3576 /* advance to next hotkey and set default hotkey */
3577#ifdef FEAT_MBYTE
3578 if (has_mbyte)
Bram Moolenaar6a516062007-07-05 08:11:42 +00003579 hotkp += STRLEN(hotkp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 else
3581#endif
3582 ++hotkp;
Bram Moolenaar6a516062007-07-05 08:11:42 +00003583 hotkp[copy_char(r + 1, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 if (dfltbutton)
3585 --dfltbutton;
3586
3587 /* If no hotkey is specified first char is used. */
3588 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx])
3589 first_hotkey = TRUE;
3590 }
3591 else
3592 {
3593 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */
3594 lenhotkey += HOTK_LEN; /* each button needs a hotkey */
3595 if (idx < HAS_HOTKEY_LEN - 1)
3596 has_hotkey[++idx] = FALSE;
3597 }
3598 }
3599 else if (*r == DLG_HOTKEY_CHAR || first_hotkey)
3600 {
3601 if (*r == DLG_HOTKEY_CHAR)
3602 ++r;
3603 first_hotkey = FALSE;
3604 if (copy)
3605 {
3606 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */
3607 *msgp++ = *r;
3608 else
3609 {
3610 /* '&a' -> '[a]' */
3611 *msgp++ = (dfltbutton == 1) ? '[' : '(';
3612 msgp += copy_char(r, msgp, FALSE);
3613 *msgp++ = (dfltbutton == 1) ? ']' : ')';
3614
3615 /* redefine hotkey */
Bram Moolenaar6a516062007-07-05 08:11:42 +00003616 hotkp[copy_char(r, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 }
3618 }
3619 else
3620 {
3621 ++len; /* '&a' -> '[a]' */
3622 if (idx < HAS_HOTKEY_LEN - 1)
3623 has_hotkey[idx] = TRUE;
3624 }
3625 }
3626 else
3627 {
3628 /* everything else copy literally */
3629 if (copy)
3630 msgp += copy_char(r, msgp, FALSE);
3631 }
3632
3633 /* advance to the next character */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003634 mb_ptr_adv(r);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 }
3636
3637 if (copy)
3638 {
3639 *msgp++ = ':';
3640 *msgp++ = ' ';
3641 *msgp = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 }
3643 else
3644 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003645 len += (int)(STRLEN(message)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003646 + 2 /* for the NL's */
3647 + STRLEN(buttons)
3648 + 3); /* for the ": " and NUL */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003649 lenhotkey++; /* for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650
3651 /* If no hotkey is specified first char is used. */
3652 if (!has_hotkey[0])
3653 {
3654 first_hotkey = TRUE;
3655 len += 2; /* "x" -> "[x]" */
3656 }
3657
3658 /*
3659 * Now allocate and load the strings
3660 */
3661 vim_free(confirm_msg);
3662 confirm_msg = alloc(len);
3663 if (confirm_msg == NULL)
3664 return NULL;
3665 *confirm_msg = NUL;
3666 hotk = alloc(lenhotkey);
3667 if (hotk == NULL)
3668 return NULL;
3669
3670 *confirm_msg = '\n';
3671 STRCPY(confirm_msg + 1, message);
3672
3673 msgp = confirm_msg + 1 + STRLEN(message);
3674 hotkp = hotk;
3675
Bram Moolenaar6a516062007-07-05 08:11:42 +00003676 /* Define first default hotkey. Keep the hotkey string NUL
3677 * terminated to avoid reading past the end. */
3678 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679
3680 /* Remember where the choices start, displaying starts here when
3681 * "hotkp" typed at the more prompt. */
3682 confirm_msg_tail = msgp;
3683 *msgp++ = '\n';
3684 }
3685 }
3686
3687 display_confirm_msg();
3688 return hotk;
3689}
3690
3691/*
3692 * Display the ":confirm" message. Also called when screen resized.
3693 */
3694 void
3695display_confirm_msg()
3696{
3697 /* avoid that 'q' at the more prompt truncates the message here */
3698 ++confirm_msg_used;
3699 if (confirm_msg != NULL)
3700 msg_puts_attr(confirm_msg, hl_attr(HLF_M));
3701 --confirm_msg_used;
3702}
3703
3704#endif /* FEAT_CON_DIALOG */
3705
3706#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
3707
3708 int
3709vim_dialog_yesno(type, title, message, dflt)
3710 int type;
3711 char_u *title;
3712 char_u *message;
3713 int dflt;
3714{
3715 if (do_dialog(type,
3716 title == NULL ? (char_u *)_("Question") : title,
3717 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003718 (char_u *)_("&Yes\n&No"), dflt, NULL, FALSE) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 return VIM_YES;
3720 return VIM_NO;
3721}
3722
3723 int
3724vim_dialog_yesnocancel(type, title, message, dflt)
3725 int type;
3726 char_u *title;
3727 char_u *message;
3728 int dflt;
3729{
3730 switch (do_dialog(type,
3731 title == NULL ? (char_u *)_("Question") : title,
3732 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003733 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 {
3735 case 1: return VIM_YES;
3736 case 2: return VIM_NO;
3737 }
3738 return VIM_CANCEL;
3739}
3740
3741 int
3742vim_dialog_yesnoallcancel(type, title, message, dflt)
3743 int type;
3744 char_u *title;
3745 char_u *message;
3746 int dflt;
3747{
3748 switch (do_dialog(type,
3749 title == NULL ? (char_u *)"Question" : title,
3750 message,
3751 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003752 dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 {
3754 case 1: return VIM_YES;
3755 case 2: return VIM_NO;
3756 case 3: return VIM_ALL;
3757 case 4: return VIM_DISCARDALL;
3758 }
3759 return VIM_CANCEL;
3760}
3761
3762#endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */
3763
3764#if defined(FEAT_BROWSE) || defined(PROTO)
3765/*
3766 * Generic browse function. Calls gui_mch_browse() when possible.
3767 * Later this may pop-up a non-GUI file selector (external command?).
3768 */
3769 char_u *
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003770do_browse(flags, title, dflt, ext, initdir, filter, buf)
3771 int flags; /* BROWSE_SAVE and BROWSE_DIR */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 char_u *title; /* title for the window */
3773 char_u *dflt; /* default file name (may include directory) */
3774 char_u *ext; /* extension added */
3775 char_u *initdir; /* initial directory, NULL for current dir or
3776 when using path from "dflt" */
3777 char_u *filter; /* file name filter */
3778 buf_T *buf; /* buffer to read/write for */
3779{
3780 char_u *fname;
3781 static char_u *last_dir = NULL; /* last used directory */
3782 char_u *tofree = NULL;
3783 int save_browse = cmdmod.browse;
3784
3785 /* Must turn off browse to avoid that autocommands will get the
3786 * flag too! */
3787 cmdmod.browse = FALSE;
3788
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003789 if (title == NULL || *title == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003791 if (flags & BROWSE_DIR)
3792 title = (char_u *)_("Select Directory dialog");
3793 else if (flags & BROWSE_SAVE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 title = (char_u *)_("Save File dialog");
3795 else
3796 title = (char_u *)_("Open File dialog");
3797 }
3798
3799 /* When no directory specified, use default file name, default dir, buffer
3800 * dir, last dir or current dir */
3801 if ((initdir == NULL || *initdir == NUL) && dflt != NULL && *dflt != NUL)
3802 {
3803 if (mch_isdir(dflt)) /* default file name is a directory */
3804 {
3805 initdir = dflt;
3806 dflt = NULL;
3807 }
3808 else if (gettail(dflt) != dflt) /* default file name includes a path */
3809 {
3810 tofree = vim_strsave(dflt);
3811 if (tofree != NULL)
3812 {
3813 initdir = tofree;
3814 *gettail(initdir) = NUL;
3815 dflt = gettail(dflt);
3816 }
3817 }
3818 }
3819
3820 if (initdir == NULL || *initdir == NUL)
3821 {
3822 /* When 'browsedir' is a directory, use it */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003823 if (STRCMP(p_bsdir, "last") != 0
3824 && STRCMP(p_bsdir, "buffer") != 0
3825 && STRCMP(p_bsdir, "current") != 0
3826 && mch_isdir(p_bsdir))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 initdir = p_bsdir;
3828 /* When saving or 'browsedir' is "buffer", use buffer fname */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003829 else if (((flags & BROWSE_SAVE) || *p_bsdir == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 && buf != NULL && buf->b_ffname != NULL)
3831 {
3832 if (dflt == NULL || *dflt == NUL)
3833 dflt = gettail(curbuf->b_ffname);
3834 tofree = vim_strsave(curbuf->b_ffname);
3835 if (tofree != NULL)
3836 {
3837 initdir = tofree;
3838 *gettail(initdir) = NUL;
3839 }
3840 }
3841 /* When 'browsedir' is "last", use dir from last browse */
3842 else if (*p_bsdir == 'l')
3843 initdir = last_dir;
3844 /* When 'browsedir is "current", use current directory. This is the
3845 * default already, leave initdir empty. */
3846 }
3847
3848# ifdef FEAT_GUI
3849 if (gui.in_use) /* when this changes, also adjust f_has()! */
3850 {
3851 if (filter == NULL
3852# ifdef FEAT_EVAL
3853 && (filter = get_var_value((char_u *)"b:browsefilter")) == NULL
3854 && (filter = get_var_value((char_u *)"g:browsefilter")) == NULL
3855# endif
3856 )
3857 filter = BROWSE_FILTER_DEFAULT;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003858 if (flags & BROWSE_DIR)
3859 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003860# if defined(FEAT_GUI_GTK) || defined(WIN3264)
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003861 /* For systems that have a directory dialog. */
3862 fname = gui_mch_browsedir(title, initdir);
3863# else
3864 /* Generic solution for selecting a directory: select a file and
3865 * remove the file name. */
3866 fname = gui_mch_browse(0, title, dflt, ext, initdir, (char_u *)"");
3867# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003868# if !defined(FEAT_GUI_GTK)
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003869 /* Win32 adds a dummy file name, others return an arbitrary file
3870 * name. GTK+ 2 returns only the directory, */
3871 if (fname != NULL && *fname != NUL && !mch_isdir(fname))
3872 {
3873 /* Remove the file name. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003874 char_u *tail = gettail_sep(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003875
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003876 if (tail == fname)
3877 *tail++ = '.'; /* use current dir */
3878 *tail = NUL;
3879 }
3880# endif
3881 }
3882 else
3883 fname = gui_mch_browse(flags & BROWSE_SAVE,
3884 title, dflt, ext, initdir, filter);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885
3886 /* We hang around in the dialog for a while, the user might do some
3887 * things to our files. The Win32 dialog allows deleting or renaming
3888 * a file, check timestamps. */
3889 need_check_timestamps = TRUE;
3890 did_check_timestamps = FALSE;
3891 }
3892 else
3893# endif
3894 {
3895 /* TODO: non-GUI file selector here */
3896 EMSG(_("E338: Sorry, no file browser in console mode"));
3897 fname = NULL;
3898 }
3899
3900 /* keep the directory for next time */
3901 if (fname != NULL)
3902 {
3903 vim_free(last_dir);
3904 last_dir = vim_strsave(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003905 if (last_dir != NULL && !(flags & BROWSE_DIR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 {
3907 *gettail(last_dir) = NUL;
3908 if (*last_dir == NUL)
3909 {
3910 /* filename only returned, must be in current dir */
3911 vim_free(last_dir);
3912 last_dir = alloc(MAXPATHL);
3913 if (last_dir != NULL)
3914 mch_dirname(last_dir, MAXPATHL);
3915 }
3916 }
3917 }
3918
3919 vim_free(tofree);
3920 cmdmod.browse = save_browse;
3921
3922 return fname;
3923}
3924#endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003925
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003926#if defined(HAVE_STDARG_H) && defined(FEAT_EVAL)
3927static char *e_printf = N_("E766: Insufficient arguments for printf()");
3928
3929static long tv_nr __ARGS((typval_T *tvs, int *idxp));
3930static char *tv_str __ARGS((typval_T *tvs, int *idxp));
Bram Moolenaara7241f52008-06-24 20:39:31 +00003931# ifdef FEAT_FLOAT
3932static double tv_float __ARGS((typval_T *tvs, int *idxp));
3933# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003934
3935/*
3936 * Get number argument from "idxp" entry in "tvs". First entry is 1.
3937 */
3938 static long
3939tv_nr(tvs, idxp)
3940 typval_T *tvs;
3941 int *idxp;
3942{
3943 int idx = *idxp - 1;
3944 long n = 0;
3945 int err = FALSE;
3946
3947 if (tvs[idx].v_type == VAR_UNKNOWN)
3948 EMSG(_(e_printf));
3949 else
3950 {
3951 ++*idxp;
3952 n = get_tv_number_chk(&tvs[idx], &err);
3953 if (err)
3954 n = 0;
3955 }
3956 return n;
3957}
3958
3959/*
3960 * Get string argument from "idxp" entry in "tvs". First entry is 1.
Bram Moolenaar1e015462005-09-25 22:16:38 +00003961 * Returns NULL for an error.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003962 */
3963 static char *
3964tv_str(tvs, idxp)
3965 typval_T *tvs;
3966 int *idxp;
3967{
3968 int idx = *idxp - 1;
3969 char *s = NULL;
3970
3971 if (tvs[idx].v_type == VAR_UNKNOWN)
3972 EMSG(_(e_printf));
3973 else
3974 {
3975 ++*idxp;
3976 s = (char *)get_tv_string_chk(&tvs[idx]);
3977 }
3978 return s;
3979}
Bram Moolenaara7241f52008-06-24 20:39:31 +00003980
3981# ifdef FEAT_FLOAT
3982/*
3983 * Get float argument from "idxp" entry in "tvs". First entry is 1.
3984 */
3985 static double
3986tv_float(tvs, idxp)
3987 typval_T *tvs;
3988 int *idxp;
3989{
3990 int idx = *idxp - 1;
3991 double f = 0;
3992
3993 if (tvs[idx].v_type == VAR_UNKNOWN)
3994 EMSG(_(e_printf));
3995 else
3996 {
3997 ++*idxp;
3998 if (tvs[idx].v_type == VAR_FLOAT)
3999 f = tvs[idx].vval.v_float;
Bram Moolenaarc4a87012008-06-28 14:10:11 +00004000 else if (tvs[idx].v_type == VAR_NUMBER)
4001 f = tvs[idx].vval.v_number;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004002 else
4003 EMSG(_("E807: Expected Float argument for printf()"));
4004 }
4005 return f;
4006}
4007# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004008#endif
4009
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004010/*
4011 * This code was included to provide a portable vsnprintf() and snprintf().
Bram Moolenaara2031822006-03-07 22:29:51 +00004012 * Some systems may provide their own, but we always use this one for
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004013 * consistency.
4014 *
4015 * This code is based on snprintf.c - a portable implementation of snprintf
4016 * by Mark Martinec <mark.martinec@ijs.si>, Version 2.2, 2000-10-06.
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00004017 * Included with permission. It was heavily modified to fit in Vim.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004018 * The original code, including useful comments, can be found here:
4019 * http://www.ijs.si/software/snprintf/
4020 *
4021 * This snprintf() only supports the following conversion specifiers:
4022 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
4023 * with flags: '-', '+', ' ', '0' and '#'.
4024 * An asterisk is supported for field width as well as precision.
4025 *
Bram Moolenaara7241f52008-06-24 20:39:31 +00004026 * Limited support for floating point was added: 'f', 'e', 'E', 'g', 'G'.
4027 *
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004028 * Length modifiers 'h' (short int) and 'l' (long int) are supported.
4029 * 'll' (long long int) is not supported.
4030 *
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004031 * The locale is not used, the string is used as a byte string. This is only
4032 * relevant for double-byte encodings where the second byte may be '%'.
4033 *
Bram Moolenaara2031822006-03-07 22:29:51 +00004034 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL
4035 * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004036 *
4037 * The return value is the number of characters which would be generated
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004038 * for the given input, excluding the trailing NUL. If this value
Bram Moolenaara2031822006-03-07 22:29:51 +00004039 * is greater or equal to "str_m", not all characters from the result
4040 * have been stored in str, output bytes beyond the ("str_m"-1) -th character
4041 * are discarded. If "str_m" is greater than zero it is guaranteed
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01004042 * the resulting string will be NUL-terminated.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004043 */
4044
4045/*
4046 * When va_list is not supported we only define vim_snprintf().
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004047 *
4048 * vim_vsnprintf() can be invoked with either "va_list" or a list of
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004049 * "typval_T". When the latter is not used it must be NULL.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004050 */
4051
4052/* When generating prototypes all of this is skipped, cproto doesn't
4053 * understand this. */
4054#ifndef PROTO
Bram Moolenaara800b422010-06-27 01:15:55 +02004055
4056# ifdef HAVE_STDARG_H
4057/* Like vim_vsnprintf() but append to the string. */
4058 int
4059vim_snprintf_add(char *str, size_t str_m, char *fmt, ...)
4060{
4061 va_list ap;
4062 int str_l;
4063 size_t len = STRLEN(str);
4064 size_t space;
4065
4066 if (str_m <= len)
4067 space = 0;
4068 else
4069 space = str_m - len;
4070 va_start(ap, fmt);
4071 str_l = vim_vsnprintf(str + len, space, fmt, ap, NULL);
4072 va_end(ap);
4073 return str_l;
4074}
4075# else
4076/* Like vim_vsnprintf() but append to the string. */
4077 int
4078vim_snprintf_add(str, str_m, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
4079 char *str;
4080 size_t str_m;
4081 char *fmt;
4082 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
4083{
4084 size_t len = STRLEN(str);
4085 size_t space;
4086
4087 if (str_m <= len)
4088 space = 0;
4089 else
4090 space = str_m - len;
4091 return vim_vsnprintf(str + len, space, fmt,
4092 a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
4093}
4094# endif
4095
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004096# ifdef HAVE_STDARG_H
4097 int
4098vim_snprintf(char *str, size_t str_m, char *fmt, ...)
4099{
4100 va_list ap;
4101 int str_l;
4102
4103 va_start(ap, fmt);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004104 str_l = vim_vsnprintf(str, str_m, fmt, ap, NULL);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004105 va_end(ap);
4106 return str_l;
4107}
4108
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004109 int
4110vim_vsnprintf(str, str_m, fmt, ap, tvs)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004111# else
4112 /* clumsy way to work around missing va_list */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004113# define get_a_arg(i) (++i, i == 2 ? a1 : i == 3 ? a2 : i == 4 ? a3 : i == 5 ? a4 : i == 6 ? a5 : i == 7 ? a6 : i == 8 ? a7 : i == 9 ? a8 : i == 10 ? a9 : a10)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004114
4115/* VARARGS */
4116 int
4117#ifdef __BORLANDC__
4118_RTLENTRYF
4119#endif
4120vim_snprintf(str, str_m, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
4121# endif
4122 char *str;
4123 size_t str_m;
4124 char *fmt;
4125# ifdef HAVE_STDARG_H
4126 va_list ap;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004127 typval_T *tvs;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004128# else
4129 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
4130# endif
4131{
4132 size_t str_l = 0;
4133 char *p = fmt;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004134 int arg_idx = 1;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004135
4136 if (p == NULL)
4137 p = "";
4138 while (*p != NUL)
4139 {
4140 if (*p != '%')
4141 {
4142 char *q = strchr(p + 1, '%');
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004143 size_t n = (q == NULL) ? STRLEN(p) : (size_t)(q - p);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004144
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004145 /* Copy up to the next '%' or NUL without any changes. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004146 if (str_l < str_m)
4147 {
4148 size_t avail = str_m - str_l;
4149
4150 mch_memmove(str + str_l, p, n > avail ? avail : n);
4151 }
4152 p += n;
4153 str_l += n;
4154 }
4155 else
4156 {
4157 size_t min_field_width = 0, precision = 0;
4158 int zero_padding = 0, precision_specified = 0, justify_left = 0;
4159 int alternate_form = 0, force_sign = 0;
4160
4161 /* If both the ' ' and '+' flags appear, the ' ' flag should be
4162 * ignored. */
4163 int space_for_positive = 1;
4164
4165 /* allowed values: \0, h, l, L */
4166 char length_modifier = '\0';
4167
4168 /* temporary buffer for simple numeric->string conversion */
Bram Moolenaara7241f52008-06-24 20:39:31 +00004169#ifdef FEAT_FLOAT
4170# define TMP_LEN 350 /* On my system 1e308 is the biggest number possible.
4171 * That sounds reasonable to use as the maximum
4172 * printable. */
4173#else
4174# define TMP_LEN 32
4175#endif
4176 char tmp[TMP_LEN];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004177
4178 /* string address in case of string argument */
4179 char *str_arg;
4180
4181 /* natural field width of arg without padding and sign */
4182 size_t str_arg_l;
4183
4184 /* unsigned char argument value - only defined for c conversion.
4185 * N.B. standard explicitly states the char argument for the c
4186 * conversion is unsigned */
4187 unsigned char uchar_arg;
4188
4189 /* number of zeros to be inserted for numeric conversions as
4190 * required by the precision or minimal field width */
4191 size_t number_of_zeros_to_pad = 0;
4192
4193 /* index into tmp where zero padding is to be inserted */
4194 size_t zero_padding_insertion_ind = 0;
4195
4196 /* current conversion specifier character */
4197 char fmt_spec = '\0';
4198
4199 str_arg = NULL;
4200 p++; /* skip '%' */
4201
4202 /* parse flags */
4203 while (*p == '0' || *p == '-' || *p == '+' || *p == ' '
4204 || *p == '#' || *p == '\'')
4205 {
4206 switch (*p)
4207 {
4208 case '0': zero_padding = 1; break;
4209 case '-': justify_left = 1; break;
4210 case '+': force_sign = 1; space_for_positive = 0; break;
4211 case ' ': force_sign = 1;
4212 /* If both the ' ' and '+' flags appear, the ' '
4213 * flag should be ignored */
4214 break;
4215 case '#': alternate_form = 1; break;
4216 case '\'': break;
4217 }
4218 p++;
4219 }
4220 /* If the '0' and '-' flags both appear, the '0' flag should be
4221 * ignored. */
4222
4223 /* parse field width */
4224 if (*p == '*')
4225 {
4226 int j;
4227
4228 p++;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004229 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004230#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004231 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004232#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004233# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004234 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004235# endif
4236 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004237#endif
4238 if (j >= 0)
4239 min_field_width = j;
4240 else
4241 {
4242 min_field_width = -j;
4243 justify_left = 1;
4244 }
4245 }
4246 else if (VIM_ISDIGIT((int)(*p)))
4247 {
4248 /* size_t could be wider than unsigned int; make sure we treat
4249 * argument like common implementations do */
4250 unsigned int uj = *p++ - '0';
4251
4252 while (VIM_ISDIGIT((int)(*p)))
4253 uj = 10 * uj + (unsigned int)(*p++ - '0');
4254 min_field_width = uj;
4255 }
4256
4257 /* parse precision */
4258 if (*p == '.')
4259 {
4260 p++;
4261 precision_specified = 1;
4262 if (*p == '*')
4263 {
4264 int j;
4265
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004266 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004267#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004268 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004269#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004270# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004271 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004272# endif
4273 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004274#endif
4275 p++;
4276 if (j >= 0)
4277 precision = j;
4278 else
4279 {
4280 precision_specified = 0;
4281 precision = 0;
4282 }
4283 }
4284 else if (VIM_ISDIGIT((int)(*p)))
4285 {
4286 /* size_t could be wider than unsigned int; make sure we
4287 * treat argument like common implementations do */
4288 unsigned int uj = *p++ - '0';
4289
4290 while (VIM_ISDIGIT((int)(*p)))
4291 uj = 10 * uj + (unsigned int)(*p++ - '0');
4292 precision = uj;
4293 }
4294 }
4295
4296 /* parse 'h', 'l' and 'll' length modifiers */
4297 if (*p == 'h' || *p == 'l')
4298 {
4299 length_modifier = *p;
4300 p++;
4301 if (length_modifier == 'l' && *p == 'l')
4302 {
4303 /* double l = long long */
4304 length_modifier = 'l'; /* treat it as a single 'l' */
4305 p++;
4306 }
4307 }
4308 fmt_spec = *p;
4309
4310 /* common synonyms: */
4311 switch (fmt_spec)
4312 {
4313 case 'i': fmt_spec = 'd'; break;
4314 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break;
4315 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break;
4316 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004317 case 'F': fmt_spec = 'f'; break;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004318 default: break;
4319 }
4320
4321 /* get parameter value, do initial processing */
4322 switch (fmt_spec)
4323 {
4324 /* '%' and 'c' behave similar to 's' regarding flags and field
4325 * widths */
4326 case '%':
4327 case 'c':
4328 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004329 case 'S':
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004330 length_modifier = '\0';
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004331 str_arg_l = 1;
4332 switch (fmt_spec)
4333 {
4334 case '%':
4335 str_arg = p;
4336 break;
4337
4338 case 'c':
4339 {
4340 int j;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004341
4342 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004343#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004344 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004345#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004346# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004347 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004348# endif
4349 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004350#endif
4351 /* standard demands unsigned char */
4352 uchar_arg = (unsigned char)j;
4353 str_arg = (char *)&uchar_arg;
4354 break;
4355 }
4356
4357 case 's':
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004358 case 'S':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004359 str_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004360#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004361 (char *)get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004362#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004363# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004364 tvs != NULL ? tv_str(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004365# endif
4366 va_arg(ap, char *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004367#endif
4368 if (str_arg == NULL)
4369 {
4370 str_arg = "[NULL]";
4371 str_arg_l = 6;
4372 }
4373 /* make sure not to address string beyond the specified
4374 * precision !!! */
4375 else if (!precision_specified)
4376 str_arg_l = strlen(str_arg);
4377 /* truncate string if necessary as requested by precision */
4378 else if (precision == 0)
4379 str_arg_l = 0;
4380 else
4381 {
Bram Moolenaar223b4312006-05-13 11:09:22 +00004382 /* Don't put the #if inside memchr(), it can be a
4383 * macro. */
Bram Moolenaara2aa31a2014-02-23 22:52:40 +01004384#if VIM_SIZEOF_INT <= 2
Bram Moolenaar223b4312006-05-13 11:09:22 +00004385 char *q = memchr(str_arg, '\0', precision);
4386#else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004387 /* memchr on HP does not like n > 2^31 !!! */
4388 char *q = memchr(str_arg, '\0',
Bram Moolenaar223b4312006-05-13 11:09:22 +00004389 precision <= (size_t)0x7fffffffL ? precision
4390 : (size_t)0x7fffffffL);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004391#endif
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004392 str_arg_l = (q == NULL) ? precision
4393 : (size_t)(q - str_arg);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004394 }
Bram Moolenaar3ab72c52012-11-14 18:10:56 +01004395#ifdef FEAT_MBYTE
4396 if (fmt_spec == 'S')
4397 {
4398 if (min_field_width != 0)
4399 min_field_width += STRLEN(str_arg)
4400 - mb_string2cells((char_u *)str_arg, -1);
4401 if (precision)
4402 {
4403 char_u *p1 = (char_u *)str_arg;
4404 size_t i;
4405
4406 for (i = 0; i < precision && *p1; i++)
4407 p1 += mb_ptr2len(p1);
4408
4409 str_arg_l = precision = p1 - (char_u *)str_arg;
4410 }
4411 }
4412#endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004413 break;
4414
4415 default:
4416 break;
4417 }
4418 break;
4419
4420 case 'd': case 'u': case 'o': case 'x': case 'X': case 'p':
4421 {
4422 /* NOTE: the u, o, x, X and p conversion specifiers
4423 * imply the value is unsigned; d implies a signed
4424 * value */
4425
4426 /* 0 if numeric argument is zero (or if pointer is
4427 * NULL for 'p'), +1 if greater than zero (or nonzero
4428 * for unsigned arguments), -1 if negative (unsigned
4429 * argument is never negative) */
4430 int arg_sign = 0;
4431
4432 /* only defined for length modifier h, or for no
4433 * length modifiers */
4434 int int_arg = 0;
4435 unsigned int uint_arg = 0;
4436
4437 /* only defined for length modifier l */
4438 long int long_arg = 0;
4439 unsigned long int ulong_arg = 0;
4440
4441 /* pointer argument value -only defined for p
4442 * conversion */
4443 void *ptr_arg = NULL;
4444
4445 if (fmt_spec == 'p')
4446 {
4447 length_modifier = '\0';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004448 ptr_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004449#ifndef HAVE_STDARG_H
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004450 (void *)get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004451#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004452# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004453 tvs != NULL ? (void *)tv_str(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004454# endif
4455 va_arg(ap, void *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004456#endif
4457 if (ptr_arg != NULL)
4458 arg_sign = 1;
4459 }
4460 else if (fmt_spec == 'd')
4461 {
4462 /* signed */
4463 switch (length_modifier)
4464 {
4465 case '\0':
4466 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004467 /* char and short arguments are passed as int. */
4468 int_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004469#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004470 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004471#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004472# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004473 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004474# endif
4475 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004476#endif
4477 if (int_arg > 0)
4478 arg_sign = 1;
4479 else if (int_arg < 0)
4480 arg_sign = -1;
4481 break;
4482 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004483 long_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004484#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004485 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004486#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004487# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004488 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004489# endif
4490 va_arg(ap, long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004491#endif
4492 if (long_arg > 0)
4493 arg_sign = 1;
4494 else if (long_arg < 0)
4495 arg_sign = -1;
4496 break;
4497 }
4498 }
4499 else
4500 {
4501 /* unsigned */
4502 switch (length_modifier)
4503 {
4504 case '\0':
4505 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004506 uint_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004507#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004508 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004509#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004510# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004511 tvs != NULL ? (unsigned)
4512 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004513# endif
4514 va_arg(ap, unsigned int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004515#endif
4516 if (uint_arg != 0)
4517 arg_sign = 1;
4518 break;
4519 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004520 ulong_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004521#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004522 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004523#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004524# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004525 tvs != NULL ? (unsigned long)
4526 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004527# endif
4528 va_arg(ap, unsigned long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004529#endif
4530 if (ulong_arg != 0)
4531 arg_sign = 1;
4532 break;
4533 }
4534 }
4535
4536 str_arg = tmp;
4537 str_arg_l = 0;
4538
4539 /* NOTE:
4540 * For d, i, u, o, x, and X conversions, if precision is
4541 * specified, the '0' flag should be ignored. This is so
4542 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux,
4543 * FreeBSD, NetBSD; but not with Perl.
4544 */
4545 if (precision_specified)
4546 zero_padding = 0;
4547 if (fmt_spec == 'd')
4548 {
4549 if (force_sign && arg_sign >= 0)
4550 tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
4551 /* leave negative numbers for sprintf to handle, to
4552 * avoid handling tricky cases like (short int)-32768 */
4553 }
4554 else if (alternate_form)
4555 {
4556 if (arg_sign != 0
4557 && (fmt_spec == 'x' || fmt_spec == 'X') )
4558 {
4559 tmp[str_arg_l++] = '0';
4560 tmp[str_arg_l++] = fmt_spec;
4561 }
4562 /* alternate form should have no effect for p
4563 * conversion, but ... */
4564 }
4565
4566 zero_padding_insertion_ind = str_arg_l;
4567 if (!precision_specified)
4568 precision = 1; /* default precision is 1 */
4569 if (precision == 0 && arg_sign == 0)
4570 {
4571 /* When zero value is formatted with an explicit
4572 * precision 0, the resulting formatted string is
4573 * empty (d, i, u, o, x, X, p). */
4574 }
4575 else
4576 {
4577 char f[5];
4578 int f_l = 0;
4579
4580 /* construct a simple format string for sprintf */
4581 f[f_l++] = '%';
4582 if (!length_modifier)
4583 ;
4584 else if (length_modifier == '2')
4585 {
4586 f[f_l++] = 'l';
4587 f[f_l++] = 'l';
4588 }
4589 else
4590 f[f_l++] = length_modifier;
4591 f[f_l++] = fmt_spec;
4592 f[f_l++] = '\0';
4593
4594 if (fmt_spec == 'p')
4595 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg);
4596 else if (fmt_spec == 'd')
4597 {
4598 /* signed */
4599 switch (length_modifier)
4600 {
4601 case '\0':
4602 case 'h': str_arg_l += sprintf(
4603 tmp + str_arg_l, f, int_arg);
4604 break;
4605 case 'l': str_arg_l += sprintf(
4606 tmp + str_arg_l, f, long_arg);
4607 break;
4608 }
4609 }
4610 else
4611 {
4612 /* unsigned */
4613 switch (length_modifier)
4614 {
4615 case '\0':
4616 case 'h': str_arg_l += sprintf(
4617 tmp + str_arg_l, f, uint_arg);
4618 break;
4619 case 'l': str_arg_l += sprintf(
4620 tmp + str_arg_l, f, ulong_arg);
4621 break;
4622 }
4623 }
4624
4625 /* include the optional minus sign and possible
4626 * "0x" in the region before the zero padding
4627 * insertion point */
4628 if (zero_padding_insertion_ind < str_arg_l
4629 && tmp[zero_padding_insertion_ind] == '-')
4630 zero_padding_insertion_ind++;
4631 if (zero_padding_insertion_ind + 1 < str_arg_l
4632 && tmp[zero_padding_insertion_ind] == '0'
4633 && (tmp[zero_padding_insertion_ind + 1] == 'x'
4634 || tmp[zero_padding_insertion_ind + 1] == 'X'))
4635 zero_padding_insertion_ind += 2;
4636 }
4637
4638 {
4639 size_t num_of_digits = str_arg_l
4640 - zero_padding_insertion_ind;
4641
4642 if (alternate_form && fmt_spec == 'o'
4643 /* unless zero is already the first
4644 * character */
4645 && !(zero_padding_insertion_ind < str_arg_l
4646 && tmp[zero_padding_insertion_ind] == '0'))
4647 {
4648 /* assure leading zero for alternate-form
4649 * octal numbers */
4650 if (!precision_specified
4651 || precision < num_of_digits + 1)
4652 {
4653 /* precision is increased to force the
4654 * first character to be zero, except if a
4655 * zero value is formatted with an
4656 * explicit precision of zero */
4657 precision = num_of_digits + 1;
4658 precision_specified = 1;
4659 }
4660 }
4661 /* zero padding to specified precision? */
4662 if (num_of_digits < precision)
4663 number_of_zeros_to_pad = precision - num_of_digits;
4664 }
4665 /* zero padding to specified minimal field width? */
4666 if (!justify_left && zero_padding)
4667 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004668 int n = (int)(min_field_width - (str_arg_l
4669 + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004670 if (n > 0)
4671 number_of_zeros_to_pad += n;
4672 }
4673 break;
4674 }
4675
Bram Moolenaara7241f52008-06-24 20:39:31 +00004676#ifdef FEAT_FLOAT
4677 case 'f':
4678 case 'e':
4679 case 'E':
4680 case 'g':
4681 case 'G':
4682 {
4683 /* Floating point. */
4684 double f;
4685 double abs_f;
4686 char format[40];
4687 int l;
4688 int remove_trailing_zeroes = FALSE;
4689
4690 f =
4691# ifndef HAVE_STDARG_H
4692 get_a_arg(arg_idx);
4693# else
4694# if defined(FEAT_EVAL)
4695 tvs != NULL ? tv_float(tvs, &arg_idx) :
4696# endif
4697 va_arg(ap, double);
4698# endif
4699 abs_f = f < 0 ? -f : f;
4700
4701 if (fmt_spec == 'g' || fmt_spec == 'G')
4702 {
4703 /* Would be nice to use %g directly, but it prints
4704 * "1.0" as "1", we don't want that. */
4705 if ((abs_f >= 0.001 && abs_f < 10000000.0)
4706 || abs_f == 0.0)
4707 fmt_spec = 'f';
4708 else
4709 fmt_spec = fmt_spec == 'g' ? 'e' : 'E';
4710 remove_trailing_zeroes = TRUE;
4711 }
4712
Bram Moolenaarc9372132009-01-13 15:38:37 +00004713 if (fmt_spec == 'f' &&
4714#ifdef VAX
4715 abs_f > 1.0e38
4716#else
4717 abs_f > 1.0e307
4718#endif
4719 )
Bram Moolenaara7241f52008-06-24 20:39:31 +00004720 {
4721 /* Avoid a buffer overflow */
4722 strcpy(tmp, "inf");
4723 str_arg_l = 3;
4724 }
4725 else
4726 {
4727 format[0] = '%';
4728 l = 1;
4729 if (precision_specified)
4730 {
4731 size_t max_prec = TMP_LEN - 10;
4732
4733 /* Make sure we don't get more digits than we
4734 * have room for. */
4735 if (fmt_spec == 'f' && abs_f > 1.0)
4736 max_prec -= (size_t)log10(abs_f);
4737 if (precision > max_prec)
4738 precision = max_prec;
4739 l += sprintf(format + 1, ".%d", (int)precision);
4740 }
4741 format[l] = fmt_spec;
4742 format[l + 1] = NUL;
4743 str_arg_l = sprintf(tmp, format, f);
4744
4745 if (remove_trailing_zeroes)
4746 {
4747 int i;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004748 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004749
4750 /* Using %g or %G: remove superfluous zeroes. */
4751 if (fmt_spec == 'f')
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004752 tp = tmp + str_arg_l - 1;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004753 else
4754 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004755 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00004756 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004757 if (tp != NULL)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004758 {
4759 /* Remove superfluous '+' and leading
4760 * zeroes from the exponent. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004761 if (tp[1] == '+')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004762 {
4763 /* Change "1.0e+07" to "1.0e07" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004764 STRMOVE(tp + 1, tp + 2);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004765 --str_arg_l;
4766 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004767 i = (tp[1] == '-') ? 2 : 1;
4768 while (tp[i] == '0')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004769 {
4770 /* Change "1.0e07" to "1.0e7" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004771 STRMOVE(tp + i, tp + i + 1);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004772 --str_arg_l;
4773 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004774 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004775 }
4776 }
4777
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004778 if (tp != NULL && !precision_specified)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004779 /* Remove trailing zeroes, but keep the one
4780 * just after a dot. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004781 while (tp > tmp + 2 && *tp == '0'
4782 && tp[-1] != '.')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004783 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004784 STRMOVE(tp, tp + 1);
4785 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004786 --str_arg_l;
4787 }
4788 }
4789 else
4790 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004791 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004792
4793 /* Be consistent: some printf("%e") use 1.0e+12
4794 * and some 1.0e+012. Remove one zero in the last
4795 * case. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004796 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00004797 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004798 if (tp != NULL && (tp[1] == '+' || tp[1] == '-')
4799 && tp[2] == '0'
4800 && vim_isdigit(tp[3])
4801 && vim_isdigit(tp[4]))
Bram Moolenaara7241f52008-06-24 20:39:31 +00004802 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004803 STRMOVE(tp + 2, tp + 3);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004804 --str_arg_l;
4805 }
4806 }
4807 }
4808 str_arg = tmp;
4809 break;
4810 }
4811#endif
4812
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004813 default:
4814 /* unrecognized conversion specifier, keep format string
4815 * as-is */
4816 zero_padding = 0; /* turn zero padding off for non-numeric
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00004817 conversion */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004818 justify_left = 1;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004819 min_field_width = 0; /* reset flags */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004820
4821 /* discard the unrecognized conversion, just keep *
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004822 * the unrecognized conversion character */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004823 str_arg = p;
4824 str_arg_l = 0;
4825 if (*p != NUL)
4826 str_arg_l++; /* include invalid conversion specifier
4827 unchanged if not at end-of-string */
4828 break;
4829 }
4830
4831 if (*p != NUL)
4832 p++; /* step over the just processed conversion specifier */
4833
4834 /* insert padding to the left as requested by min_field_width;
4835 * this does not include the zero padding in case of numerical
4836 * conversions*/
4837 if (!justify_left)
4838 {
4839 /* left padding with blank or zero */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004840 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004841
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004842 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004843 {
4844 if (str_l < str_m)
4845 {
4846 size_t avail = str_m - str_l;
4847
4848 vim_memset(str + str_l, zero_padding ? '0' : ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004849 (size_t)pn > avail ? avail
4850 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004851 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004852 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004853 }
4854 }
4855
4856 /* zero padding as requested by the precision or by the minimal
4857 * field width for numeric conversions required? */
Bram Moolenaarea424162005-06-16 21:51:00 +00004858 if (number_of_zeros_to_pad == 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004859 {
4860 /* will not copy first part of numeric right now, *
4861 * force it to be copied later in its entirety */
4862 zero_padding_insertion_ind = 0;
4863 }
4864 else
4865 {
4866 /* insert first part of numerics (sign or '0x') before zero
4867 * padding */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004868 int zn = (int)zero_padding_insertion_ind;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004869
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004870 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004871 {
4872 if (str_l < str_m)
4873 {
4874 size_t avail = str_m - str_l;
4875
4876 mch_memmove(str + str_l, str_arg,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004877 (size_t)zn > avail ? avail
4878 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004879 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004880 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004881 }
4882
4883 /* insert zero padding as requested by the precision or min
4884 * field width */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004885 zn = (int)number_of_zeros_to_pad;
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004886 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004887 {
4888 if (str_l < str_m)
4889 {
4890 size_t avail = str_m-str_l;
4891
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004892 vim_memset(str + str_l, '0',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004893 (size_t)zn > avail ? avail
4894 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004895 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004896 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004897 }
4898 }
4899
4900 /* insert formatted string
4901 * (or as-is conversion specifier for unknown conversions) */
4902 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004903 int sn = (int)(str_arg_l - zero_padding_insertion_ind);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004904
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004905 if (sn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004906 {
4907 if (str_l < str_m)
4908 {
4909 size_t avail = str_m - str_l;
4910
4911 mch_memmove(str + str_l,
4912 str_arg + zero_padding_insertion_ind,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004913 (size_t)sn > avail ? avail : (size_t)sn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004914 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004915 str_l += sn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004916 }
4917 }
4918
4919 /* insert right padding */
4920 if (justify_left)
4921 {
4922 /* right blank padding to the field width */
Bram Moolenaara7241f52008-06-24 20:39:31 +00004923 int pn = (int)(min_field_width
4924 - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004925
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004926 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004927 {
4928 if (str_l < str_m)
4929 {
4930 size_t avail = str_m - str_l;
4931
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004932 vim_memset(str + str_l, ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004933 (size_t)pn > avail ? avail
4934 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004935 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004936 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004937 }
4938 }
4939 }
4940 }
4941
4942 if (str_m > 0)
4943 {
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004944 /* make sure the string is nul-terminated even at the expense of
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004945 * overwriting the last character (shouldn't happen, but just in case)
4946 * */
4947 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0';
4948 }
4949
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004950#ifdef HAVE_STDARG_H
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004951 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004952 EMSG(_("E767: Too many arguments to printf()"));
4953#endif
4954
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004955 /* Return the number of characters formatted (excluding trailing nul
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004956 * character), that is, the number of characters that would have been
4957 * written to the buffer if it were large enough. */
4958 return (int)str_l;
4959}
4960
4961#endif /* PROTO */