blob: 2eee604421591991906a58a7b513ad1401767f0d [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 Moolenaar2df6dcc2004-07-12 15:53:54 +000018static int other_sourcing_name __ARGS((void));
19static char_u *get_emsg_source __ARGS((void));
20static char_u *get_emsg_lnum __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021static void add_msg_hist __ARGS((char_u *s, int len, int attr));
22static void hit_return_msg __ARGS((void));
23static void msg_home_replace_attr __ARGS((char_u *fname, int attr));
24#ifdef FEAT_MBYTE
25static char_u *screen_puts_mbyte __ARGS((char_u *s, int l, int attr));
26#endif
27static void msg_puts_attr_len __ARGS((char_u *str, int maxlen, int attr));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000028static void msg_puts_display __ARGS((char_u *str, int maxlen, int attr, int recurse));
29static void msg_scroll_up __ARGS((void));
Bram Moolenaarbb15b652005-10-03 21:52:09 +000030static void inc_msg_scrolled __ARGS((void));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000031static void store_sb_text __ARGS((char_u **sb_str, char_u *s, int attr, int *sb_col, int finish));
32static void t_puts __ARGS((int *t_col, char_u *t_s, char_u *s, int attr));
33static void msg_puts_printf __ARGS((char_u *str, int maxlen));
34static int do_more_prompt __ARGS((int typed_char));
Bram Moolenaar071d4272004-06-13 20:20:40 +000035static void msg_screen_putchar __ARGS((int c, int attr));
36static int msg_check_screen __ARGS((void));
37static void redir_write __ARGS((char_u *s, int maxlen));
Bram Moolenaar8b044b32005-05-31 22:05:58 +000038static void verbose_write __ARGS((char_u *s, int maxlen));
Bram Moolenaar071d4272004-06-13 20:20:40 +000039#ifdef FEAT_CON_DIALOG
40static char_u *msg_show_console_dialog __ARGS((char_u *message, char_u *buttons, int dfltbutton));
41static int confirm_msg_used = FALSE; /* displaying confirm_msg */
42static char_u *confirm_msg = NULL; /* ":confirm" message */
43static char_u *confirm_msg_tail; /* tail of confirm_msg */
44#endif
45
46struct msg_hist
47{
48 struct msg_hist *next;
49 char_u *msg;
50 int attr;
51};
52
53static struct msg_hist *first_msg_hist = NULL;
54static struct msg_hist *last_msg_hist = NULL;
55static int msg_hist_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000056
57/*
58 * When writing messages to the screen, there are many different situations.
59 * A number of variables is used to remember the current state:
60 * msg_didany TRUE when messages were written since the last time the
61 * user reacted to a prompt.
62 * Reset: After hitting a key for the hit-return prompt,
63 * hitting <CR> for the command line or input().
64 * Set: When any message is written to the screen.
65 * msg_didout TRUE when something was written to the current line.
66 * Reset: When advancing to the next line, when the current
67 * text can be overwritten.
68 * Set: When any message is written to the screen.
69 * msg_nowait No extra delay for the last drawn message.
70 * Used in normal_cmd() before the mode message is drawn.
71 * emsg_on_display There was an error message recently. Indicates that there
72 * should be a delay before redrawing.
73 * msg_scroll The next message should not overwrite the current one.
74 * msg_scrolled How many lines the screen has been scrolled (because of
75 * messages). Used in update_screen() to scroll the screen
76 * back. Incremented each time the screen scrolls a line.
77 * msg_scrolled_ign TRUE when msg_scrolled is non-zero and msg_puts_attr()
78 * writes something without scrolling should not make
79 * need_wait_return to be set. This is a hack to make ":ts"
80 * work without an extra prompt.
81 * lines_left Number of lines available for messages before the
82 * more-prompt is to be given.
83 * need_wait_return TRUE when the hit-return prompt is needed.
84 * Reset: After giving the hit-return prompt, when the user
85 * has answered some other prompt.
86 * Set: When the ruler or typeahead display is overwritten,
87 * scrolling the screen for some message.
88 * keep_msg Message to be displayed after redrawing the screen, in
89 * main_loop().
90 * This is an allocated string or NULL when not used.
91 */
92
93/*
94 * msg(s) - displays the string 's' on the status line
95 * When terminal not initialized (yet) mch_errmsg(..) is used.
96 * return TRUE if wait_return not called
97 */
98 int
99msg(s)
100 char_u *s;
101{
102 return msg_attr_keep(s, 0, FALSE);
103}
104
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000105#if defined(FEAT_EVAL) || defined(FEAT_X11) || defined(USE_XSMP) \
106 || defined(PROTO)
107/*
108 * Like msg() but keep it silent when 'verbosefile' is set.
109 */
110 int
111verb_msg(s)
112 char_u *s;
113{
114 int n;
115
116 verbose_enter();
117 n = msg_attr_keep(s, 0, FALSE);
118 verbose_leave();
119
120 return n;
121}
122#endif
123
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124 int
125msg_attr(s, attr)
126 char_u *s;
127 int attr;
128{
129 return msg_attr_keep(s, attr, FALSE);
130}
131
132 int
133msg_attr_keep(s, attr, keep)
134 char_u *s;
135 int attr;
136 int keep; /* TRUE: set keep_msg if it doesn't scroll */
137{
138 static int entered = 0;
139 int retval;
140 char_u *buf = NULL;
141
142#ifdef FEAT_EVAL
143 if (attr == 0)
144 set_vim_var_string(VV_STATUSMSG, s, -1);
145#endif
146
147 /*
148 * It is possible that displaying a messages causes a problem (e.g.,
149 * when redrawing the window), which causes another message, etc.. To
150 * break this loop, limit the recursiveness to 3 levels.
151 */
152 if (entered >= 3)
153 return TRUE;
154 ++entered;
155
156 /* Add message to history (unless it's a repeated kept message or a
157 * truncated message) */
158 if (s != keep_msg
159 || (*s != '<'
160 && last_msg_hist != NULL
161 && last_msg_hist->msg != NULL
162 && STRCMP(s, last_msg_hist->msg)))
163 add_msg_hist(s, -1, attr);
164
165 /* When displaying keep_msg, don't let msg_start() free it, caller must do
166 * that. */
167 if (s == keep_msg)
168 keep_msg = NULL;
169
170 /* Truncate the message if needed. */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000171 msg_start();
172 buf = msg_strtrunc(s, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173 if (buf != NULL)
174 s = buf;
175
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176 msg_outtrans_attr(s, attr);
177 msg_clr_eos();
178 retval = msg_end();
179
180 if (keep && retval && vim_strsize(s) < (int)(Rows - cmdline_row - 1)
181 * Columns + sc_col)
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000182 set_keep_msg(s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183
184 vim_free(buf);
185 --entered;
186 return retval;
187}
188
189/*
190 * Truncate a string such that it can be printed without causing a scroll.
191 * Returns an allocated string or NULL when no truncating is done.
192 */
193 char_u *
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000194msg_strtrunc(s, force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 char_u *s;
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000196 int force; /* always truncate */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197{
198 char_u *buf = NULL;
199 int len;
200 int room;
201
202 /* May truncate message to avoid a hit-return prompt */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000203 if ((!msg_scroll && !need_wait_return && shortmess(SHM_TRUNCALL)
204 && !exmode_active && msg_silent == 0) || force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205 {
206 len = vim_strsize(s);
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000207 if (msg_scrolled != 0)
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000208 /* Use all the columns. */
209 room = (int)(Rows - msg_row) * Columns - 1;
210 else
211 /* Use up to 'showcmd' column. */
212 room = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213 if (len > room && room > 0)
214 {
215#ifdef FEAT_MBYTE
216 if (enc_utf8)
217 /* may have up to 18 bytes per cell (6 per char, up to two
218 * composing chars) */
219 buf = alloc((room + 2) * 18);
220 else if (enc_dbcs == DBCS_JPNU)
221 /* may have up to 2 bytes per cell for euc-jp */
222 buf = alloc((room + 2) * 2);
223 else
224#endif
225 buf = alloc(room + 2);
226 if (buf != NULL)
227 trunc_string(s, buf, room);
228 }
229 }
230 return buf;
231}
232
233/*
234 * Truncate a string "s" to "buf" with cell width "room".
235 * "s" and "buf" may be equal.
236 */
237 void
238trunc_string(s, buf, room)
239 char_u *s;
240 char_u *buf;
241 int room;
242{
243 int half;
244 int len;
245 int e;
246 int i;
247 int n;
248
249 room -= 3;
250 half = room / 2;
251 len = 0;
252
253 /* First part: Start of the string. */
254 for (e = 0; len < half; ++e)
255 {
256 if (s[e] == NUL)
257 {
258 /* text fits without truncating! */
259 buf[e] = NUL;
260 return;
261 }
262 n = ptr2cells(s + e);
263 if (len + n >= half)
264 break;
265 len += n;
266 buf[e] = s[e];
267#ifdef FEAT_MBYTE
268 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000269 for (n = (*mb_ptr2len)(s + e); --n > 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 {
271 ++e;
272 buf[e] = s[e];
273 }
274#endif
275 }
276
277 /* Last part: End of the string. */
278 i = e;
279#ifdef FEAT_MBYTE
280 if (enc_dbcs != 0)
281 {
282 /* For DBCS going backwards in a string is slow, but
283 * computing the cell width isn't too slow: go forward
284 * until the rest fits. */
285 n = vim_strsize(s + i);
286 while (len + n > room)
287 {
288 n -= ptr2cells(s + i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000289 i += (*mb_ptr2len)(s + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 }
291 }
292 else if (enc_utf8)
293 {
294 /* For UTF-8 we can go backwards easily. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000295 half = i = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296 for (;;)
297 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000298 do
299 half = half - (*mb_head_off)(s, s + half - 1) - 1;
300 while (utf_iscomposing(utf_ptr2char(s + half)) && half > 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 n = ptr2cells(s + half);
302 if (len + n > room)
303 break;
304 len += n;
305 i = half;
306 }
307 }
308 else
309#endif
310 {
311 for (i = (int)STRLEN(s); len + (n = ptr2cells(s + i - 1)) <= room; --i)
312 len += n;
313 }
314
315 /* Set the middle and copy the last part. */
316 mch_memmove(buf + e, "...", (size_t)3);
317 mch_memmove(buf + e + 3, s + i, STRLEN(s + i) + 1);
318}
319
320/*
321 * Automatic prototype generation does not understand this function.
322 * Note: Caller of smgs() and smsg_attr() must check the resulting string is
323 * shorter than IOSIZE!!!
324 */
325#ifndef PROTO
326# ifndef HAVE_STDARG_H
327
328int
329#ifdef __BORLANDC__
330_RTLENTRYF
331#endif
332smsg __ARGS((char_u *, long, long, long,
333 long, long, long, long, long, long, long));
334int
335#ifdef __BORLANDC__
336_RTLENTRYF
337#endif
338smsg_attr __ARGS((int, char_u *, long, long, long,
339 long, long, long, long, long, long, long));
340
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000341int vim_snprintf __ARGS((char *, size_t, char *, long, long, long,
342 long, long, long, long, long, long, long));
343
344/*
345 * smsg(str, arg, ...) is like using sprintf(buf, str, arg, ...) and then
346 * calling msg(buf).
347 * The buffer used is IObuff, the message is truncated at IOSIZE.
348 */
349
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350/* VARARGS */
351 int
352#ifdef __BORLANDC__
353_RTLENTRYF
354#endif
355smsg(s, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
356 char_u *s;
357 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
358{
359 return smsg_attr(0, s, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
360}
361
362/* VARARGS */
363 int
364#ifdef __BORLANDC__
365_RTLENTRYF
366#endif
367smsg_attr(attr, s, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
368 int attr;
369 char_u *s;
370 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
371{
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000372 vim_snprintf((char *)IObuff, IOSIZE, (char *)s,
373 a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 return msg_attr(IObuff, attr);
375}
376
377# else /* HAVE_STDARG_H */
378
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000379int vim_snprintf(char *str, size_t str_m, char *fmt, ...);
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000380
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 int
382#ifdef __BORLANDC__
383_RTLENTRYF
384#endif
385smsg(char_u *s, ...)
386{
387 va_list arglist;
388
389 va_start(arglist, s);
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000390 vim_vsnprintf((char *)IObuff, IOSIZE, (char *)s, arglist, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 va_end(arglist);
392 return msg(IObuff);
393}
394
395 int
396#ifdef __BORLANDC__
397_RTLENTRYF
398#endif
399smsg_attr(int attr, char_u *s, ...)
400{
401 va_list arglist;
402
403 va_start(arglist, s);
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000404 vim_vsnprintf((char *)IObuff, IOSIZE, (char *)s, arglist, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405 va_end(arglist);
406 return msg_attr(IObuff, attr);
407}
408
409# endif /* HAVE_STDARG_H */
410#endif
411
412/*
413 * Remember the last sourcing name/lnum used in an error message, so that it
414 * isn't printed each time when it didn't change.
415 */
416static int last_sourcing_lnum = 0;
417static char_u *last_sourcing_name = NULL;
418
419/*
420 * Reset the last used sourcing name/lnum. Makes sure it is displayed again
421 * for the next error message;
422 */
Bram Moolenaar4eec5ec2005-06-26 22:26:21 +0000423 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424reset_last_sourcing()
425{
426 vim_free(last_sourcing_name);
427 last_sourcing_name = NULL;
428 last_sourcing_lnum = 0;
429}
430
431/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000432 * Return TRUE if "sourcing_name" differs from "last_sourcing_name".
433 */
434 static int
435other_sourcing_name()
436{
437 if (sourcing_name != NULL)
438 {
439 if (last_sourcing_name != NULL)
440 return STRCMP(sourcing_name, last_sourcing_name) != 0;
441 return TRUE;
442 }
443 return FALSE;
444}
445
446/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 * Get the message about the source, as used for an error message.
448 * Returns an allocated string with room for one more character.
449 * Returns NULL when no message is to be given.
450 */
451 static char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000452get_emsg_source()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453{
454 char_u *Buf, *p;
455
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000456 if (sourcing_name != NULL && other_sourcing_name())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457 {
458 p = (char_u *)_("Error detected while processing %s:");
459 Buf = alloc((unsigned)(STRLEN(sourcing_name) + STRLEN(p)));
460 if (Buf != NULL)
461 sprintf((char *)Buf, (char *)p, sourcing_name);
462 return Buf;
463 }
464 return NULL;
465}
466
467/*
468 * Get the message about the source lnum, as used for an error message.
469 * Returns an allocated string with room for one more character.
470 * Returns NULL when no message is to be given.
471 */
472 static char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000473get_emsg_lnum()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474{
475 char_u *Buf, *p;
476
477 /* lnum is 0 when executing a command from the command line
478 * argument, we don't want a line number then */
479 if (sourcing_name != NULL
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000480 && (other_sourcing_name() || sourcing_lnum != last_sourcing_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 && sourcing_lnum != 0)
482 {
483 p = (char_u *)_("line %4ld:");
484 Buf = alloc((unsigned)(STRLEN(p) + 20));
485 if (Buf != NULL)
486 sprintf((char *)Buf, (char *)p, (long)sourcing_lnum);
487 return Buf;
488 }
489 return NULL;
490}
491
492/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000493 * Display name and line number for the source of an error.
494 * Remember the file name and line number, so that for the next error the info
495 * is only displayed if it changed.
496 */
497 void
498msg_source(attr)
499 int attr;
500{
501 char_u *p;
502
503 ++no_wait_return;
504 p = get_emsg_source();
505 if (p != NULL)
506 {
507 msg_attr(p, attr);
508 vim_free(p);
509 }
510 p = get_emsg_lnum();
511 if (p != NULL)
512 {
513 msg_attr(p, hl_attr(HLF_N));
514 vim_free(p);
515 last_sourcing_lnum = sourcing_lnum; /* only once for each line */
516 }
517
518 /* remember the last sourcing name printed, also when it's empty */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000519 if (sourcing_name == NULL || other_sourcing_name())
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000520 {
521 vim_free(last_sourcing_name);
522 if (sourcing_name == NULL)
523 last_sourcing_name = NULL;
524 else
525 last_sourcing_name = vim_strsave(sourcing_name);
526 }
527 --no_wait_return;
528}
529
530/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000531 * Return TRUE if not giving error messages right now:
532 * If "emsg_off" is set: no error messages at the moment.
533 * If "msg" is in 'debug': do error message but without side effects.
534 * If "emsg_skip" is set: never do error messages.
535 */
536 int
537emsg_not_now()
538{
539 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL
540 && vim_strchr(p_debug, 't') == NULL)
541#ifdef FEAT_EVAL
542 || emsg_skip > 0
543#endif
544 )
545 return TRUE;
546 return FALSE;
547}
548
549/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 * emsg() - display an error message
551 *
552 * Rings the bell, if appropriate, and calls message() to do the real work
553 * When terminal not initialized (yet) mch_errmsg(..) is used.
554 *
555 * return TRUE if wait_return not called
556 */
557 int
558emsg(s)
559 char_u *s;
560{
561 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 char_u *p;
563#ifdef FEAT_EVAL
564 int ignore = FALSE;
565 int severe;
566#endif
567
568 called_emsg = TRUE;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000569 ex_exitval = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570
571 /*
Bram Moolenaar1d817d02005-01-16 21:56:27 +0000572 * If "emsg_severe" is TRUE: When an error exception is to be thrown,
573 * prefer this message over previous messages for the same command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 */
575#ifdef FEAT_EVAL
576 severe = emsg_severe;
577 emsg_severe = FALSE;
578#endif
579
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000580 /* Skip this if not giving error messages at the moment. */
581 if (emsg_not_now())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 return TRUE;
583
Bram Moolenaar57657d82006-04-21 22:12:41 +0000584 if (!emsg_off || vim_strchr(p_debug, 't') != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 {
586#ifdef FEAT_EVAL
587 /*
588 * Cause a throw of an error exception if appropriate. Don't display
589 * the error message in this case. (If no matching catch clause will
590 * be found, the message will be displayed later on.) "ignore" is set
591 * when the message should be ignored completely (used for the
592 * interrupt message).
593 */
594 if (cause_errthrow(s, severe, &ignore) == TRUE)
595 {
596 if (!ignore)
597 did_emsg = TRUE;
598 return TRUE;
599 }
600
601 /* set "v:errmsg", also when using ":silent! cmd" */
602 set_vim_var_string(VV_ERRMSG, s, -1);
603#endif
604
605 /*
606 * When using ":silent! cmd" ignore error messsages.
607 * But do write it to the redirection file.
608 */
609 if (emsg_silent != 0)
610 {
611 msg_start();
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000612 p = get_emsg_source();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 if (p != NULL)
614 {
615 STRCAT(p, "\n");
616 redir_write(p, -1);
617 vim_free(p);
618 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000619 p = get_emsg_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620 if (p != NULL)
621 {
622 STRCAT(p, "\n");
623 redir_write(p, -1);
624 vim_free(p);
625 }
626 redir_write(s, -1);
627 return TRUE;
628 }
629
630 /* Reset msg_silent, an error causes messages to be switched back on. */
631 msg_silent = 0;
632 cmd_silent = FALSE;
633
634 if (global_busy) /* break :global command */
635 ++global_busy;
636
637 if (p_eb)
638 beep_flush(); /* also includes flush_buffers() */
639 else
640 flush_buffers(FALSE); /* flush internal buffers */
641 did_emsg = TRUE; /* flag for DoOneCmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 }
643
644 emsg_on_display = TRUE; /* remember there is an error message */
645 ++msg_scroll; /* don't overwrite a previous message */
646 attr = hl_attr(HLF_E); /* set highlight mode for error messages */
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000647 if (msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648 need_wait_return = TRUE; /* needed in case emsg() is called after
649 * wait_return has reset need_wait_return
650 * and a redraw is expected because
651 * msg_scrolled is non-zero */
652
653 /*
654 * Display name and line number for the source of the error.
655 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000656 msg_source(attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657
658 /*
659 * Display the error message itself.
660 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000661 msg_nowait = FALSE; /* wait for this msg */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 return msg_attr(s, attr);
663}
664
665/*
666 * Print an error message with one "%s" and one string argument.
667 */
668 int
669emsg2(s, a1)
670 char_u *s, *a1;
671{
672 return emsg3(s, a1, NULL);
673}
674
Bram Moolenaarea424162005-06-16 21:51:00 +0000675/* emsg3() and emsgn() are in misc2.c to avoid warnings for the prototypes. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676
Bram Moolenaardf177f62005-02-22 08:39:57 +0000677 void
678emsg_invreg(name)
679 int name;
680{
681 EMSG2(_("E354: Invalid register name: '%s'"), transchar(name));
682}
683
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684/*
685 * Like msg(), but truncate to a single line if p_shm contains 't', or when
686 * "force" is TRUE. This truncates in another way as for normal messages.
687 * Careful: The string may be changed by msg_may_trunc()!
688 * Returns a pointer to the printed message, if wait_return() not called.
689 */
690 char_u *
691msg_trunc_attr(s, force, attr)
692 char_u *s;
693 int force;
694 int attr;
695{
696 int n;
697
698 /* Add message to history before truncating */
699 add_msg_hist(s, -1, attr);
700
701 s = msg_may_trunc(force, s);
702
703 msg_hist_off = TRUE;
704 n = msg_attr(s, attr);
705 msg_hist_off = FALSE;
706
707 if (n)
708 return s;
709 return NULL;
710}
711
712/*
713 * Check if message "s" should be truncated at the start (for filenames).
714 * Return a pointer to where the truncated message starts.
715 * Note: May change the message by replacing a character with '<'.
716 */
717 char_u *
718msg_may_trunc(force, s)
719 int force;
720 char_u *s;
721{
722 int n;
723 int room;
724
725 room = (int)(Rows - cmdline_row - 1) * Columns + sc_col - 1;
726 if ((force || (shortmess(SHM_TRUNC) && !exmode_active))
727 && (n = (int)STRLEN(s) - room) > 0)
728 {
729#ifdef FEAT_MBYTE
730 if (has_mbyte)
731 {
732 int size = vim_strsize(s);
733
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +0000734 /* There may be room anyway when there are multibyte chars. */
735 if (size <= room)
736 return s;
737
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 for (n = 0; size >= room; )
739 {
740 size -= (*mb_ptr2cells)(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000741 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 }
743 --n;
744 }
745#endif
746 s += n;
747 *s = '<';
748 }
749 return s;
750}
751
752 static void
753add_msg_hist(s, len, attr)
754 char_u *s;
755 int len; /* -1 for undetermined length */
756 int attr;
757{
758 struct msg_hist *p;
759
760 if (msg_hist_off || msg_silent != 0)
761 return;
762
763 /* Don't let the message history get too big */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000764 while (msg_hist_len > MAX_MSG_HIST_LEN)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000765 (void)delete_first_msg();
766
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 /* allocate an entry and add the message at the end of the history */
768 p = (struct msg_hist *)alloc((int)sizeof(struct msg_hist));
769 if (p != NULL)
770 {
771 if (len < 0)
772 len = (int)STRLEN(s);
773 /* remove leading and trailing newlines */
774 while (len > 0 && *s == '\n')
775 {
776 ++s;
777 --len;
778 }
779 while (len > 0 && s[len - 1] == '\n')
780 --len;
781 p->msg = vim_strnsave(s, len);
782 p->next = NULL;
783 p->attr = attr;
784 if (last_msg_hist != NULL)
785 last_msg_hist->next = p;
786 last_msg_hist = p;
787 if (first_msg_hist == NULL)
788 first_msg_hist = last_msg_hist;
789 ++msg_hist_len;
790 }
791}
792
793/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000794 * Delete the first (oldest) message from the history.
795 * Returns FAIL if there are no messages.
796 */
797 int
798delete_first_msg()
799{
800 struct msg_hist *p;
801
802 if (msg_hist_len <= 0)
803 return FAIL;
804 p = first_msg_hist;
805 first_msg_hist = p->next;
806 vim_free(p->msg);
807 vim_free(p);
808 --msg_hist_len;
809 return OK;
810}
811
812/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 * ":messages" command.
814 */
815/*ARGSUSED*/
816 void
817ex_messages(eap)
818 exarg_T *eap;
819{
820 struct msg_hist *p;
821 char_u *s;
822
823 msg_hist_off = TRUE;
824
825 s = mch_getenv((char_u *)"LANG");
826 if (s != NULL && *s != NUL)
827 msg_attr((char_u *)
828 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
829 hl_attr(HLF_T));
830
831 for (p = first_msg_hist; p != NULL; p = p->next)
832 if (p->msg != NULL)
833 msg_attr(p->msg, p->attr);
834
835 msg_hist_off = FALSE;
836}
837
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000838#if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839/*
840 * Call this after prompting the user. This will avoid a hit-return message
841 * and a delay.
842 */
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000843 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844msg_end_prompt()
845{
846 need_wait_return = FALSE;
847 emsg_on_display = FALSE;
848 cmdline_row = msg_row;
849 msg_col = 0;
850 msg_clr_eos();
851}
852#endif
853
854/*
855 * wait for the user to hit a key (normally a return)
856 * if 'redraw' is TRUE, clear and redraw the screen
857 * if 'redraw' is FALSE, just redraw the screen
858 * if 'redraw' is -1, don't redraw at all
859 */
860 void
861wait_return(redraw)
862 int redraw;
863{
864 int c;
865 int oldState;
866 int tmpState;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 int had_got_int;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868
869 if (redraw == TRUE)
870 must_redraw = CLEAR;
871
872 /* If using ":silent cmd", don't wait for a return. Also don't set
873 * need_wait_return to do it later. */
874 if (msg_silent != 0)
875 return;
876
877/*
878 * With the global command (and some others) we only need one return at the
879 * end. Adjust cmdline_row to avoid the next message overwriting the last one.
880 * When inside vgetc(), we can't wait for a typed character at all.
881 */
Bram Moolenaar5555acc2006-04-07 21:33:12 +0000882 if (vgetc_busy > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883 return;
884 if (no_wait_return)
885 {
886 need_wait_return = TRUE;
887 if (!exmode_active)
888 cmdline_row = msg_row;
889 return;
890 }
891
892 redir_off = TRUE; /* don't redirect this message */
893 oldState = State;
894 if (quit_more)
895 {
896 c = CAR; /* just pretend CR was hit */
897 quit_more = FALSE;
898 got_int = FALSE;
899 }
900 else if (exmode_active)
901 {
902 MSG_PUTS(" "); /* make sure the cursor is on the right line */
903 c = CAR; /* no need for a return in ex mode */
904 got_int = FALSE;
905 }
906 else
907 {
908 /* Make sure the hit-return prompt is on screen when 'guioptions' was
909 * just changed. */
910 screenalloc(FALSE);
911
912 State = HITRETURN;
913#ifdef FEAT_MOUSE
914 setmouse();
915#endif
916#ifdef USE_ON_FLY_SCROLL
917 dont_scroll = TRUE; /* disallow scrolling here */
918#endif
919 hit_return_msg();
920
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 do
922 {
923 /* Remember "got_int", if it is set vgetc() probably returns a
924 * CTRL-C, but we need to loop then. */
925 had_got_int = got_int;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000926
927 /* Don't do mappings here, we put the character back in the
928 * typeahead buffer. */
929 ++no_mapping;
930 ++allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 c = safe_vgetc();
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000932 if (had_got_int && !global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 got_int = FALSE;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000934 --no_mapping;
935 --allow_keys;
936
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937#ifdef FEAT_CLIPBOARD
938 /* Strange way to allow copying (yanking) a modeless selection at
939 * the hit-enter prompt. Use CTRL-Y, because the same is used in
940 * Cmdline-mode and it's harmless when there is no selection. */
941 if (c == Ctrl_Y && clip_star.state == SELECT_DONE)
942 {
943 clip_copy_modeless_selection(TRUE);
944 c = K_IGNORE;
945 }
946#endif
Bram Moolenaare1438bb2006-03-01 22:01:55 +0000947 /*
948 * Allow scrolling back in the messages.
949 * Also accept scroll-down commands when messages fill the screen,
950 * to avoid that typing one 'j' too many makes the messages
951 * disappear.
952 */
953 if (p_more && !p_cp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000954 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +0000955 if (c == 'b' || c == 'k' || c == 'u' || c == 'g' || c == K_UP)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000956 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +0000957 /* scroll back to show older messages */
958 do_more_prompt(c);
959 if (quit_more)
960 {
961 c = CAR; /* just pretend CR was hit */
962 quit_more = FALSE;
963 got_int = FALSE;
964 }
965 else
966 {
967 c = K_IGNORE;
968 hit_return_msg();
969 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000970 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +0000971 else if (msg_scrolled > Rows - 2
972 && (c == 'j' || c == K_DOWN || c == 'd'))
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000973 c = K_IGNORE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000974 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 } while ((had_got_int && c == Ctrl_C)
976 || c == K_IGNORE
977#ifdef FEAT_GUI
978 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR
979#endif
980#ifdef FEAT_MOUSE
981 || c == K_LEFTDRAG || c == K_LEFTRELEASE
982 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE
983 || c == K_RIGHTDRAG || c == K_RIGHTRELEASE
984 || c == K_MOUSEDOWN || c == K_MOUSEUP
985 || (!mouse_has(MOUSE_RETURN)
986 && mouse_row < msg_row
987 && (c == K_LEFTMOUSE
988 || c == K_MIDDLEMOUSE
989 || c == K_RIGHTMOUSE
990 || c == K_X1MOUSE
991 || c == K_X2MOUSE))
992#endif
993 );
994 ui_breakcheck();
995#ifdef FEAT_MOUSE
996 /*
997 * Avoid that the mouse-up event causes visual mode to start.
998 */
999 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE
1000 || c == K_X1MOUSE || c == K_X2MOUSE)
1001 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0);
1002 else
1003#endif
1004 if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C)
1005 {
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001006 /* Put the character back in the typeahead buffer. Don't use the
1007 * stuff buffer, because lmaps wouldn't work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001008 ins_char_typebuf(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 do_redraw = TRUE; /* need a redraw even though there is
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001010 typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 }
1013 redir_off = FALSE;
1014
1015 /*
1016 * If the user hits ':', '?' or '/' we get a command line from the next
1017 * line.
1018 */
1019 if (c == ':' || c == '?' || c == '/')
1020 {
1021 if (!exmode_active)
1022 cmdline_row = msg_row;
1023 skip_redraw = TRUE; /* skip redraw once */
1024 do_redraw = FALSE;
1025 }
1026
1027 /*
1028 * If the window size changed set_shellsize() will redraw the screen.
1029 * Otherwise the screen is only redrawn if 'redraw' is set and no ':'
1030 * typed.
1031 */
1032 tmpState = State;
1033 State = oldState; /* restore State before set_shellsize */
1034#ifdef FEAT_MOUSE
1035 setmouse();
1036#endif
1037 msg_check();
1038
1039#if defined(UNIX) || defined(VMS)
1040 /*
1041 * When switching screens, we need to output an extra newline on exit.
1042 */
1043 if (swapping_screen() && !termcap_active)
1044 newline_on_exit = TRUE;
1045#endif
1046
1047 need_wait_return = FALSE;
1048 did_wait_return = TRUE;
1049 emsg_on_display = FALSE; /* can delete error message now */
1050 lines_left = -1; /* reset lines_left at next msg_start() */
1051 reset_last_sourcing();
1052 if (keep_msg != NULL && vim_strsize(keep_msg) >=
1053 (Rows - cmdline_row - 1) * Columns + sc_col)
1054 {
1055 vim_free(keep_msg);
1056 keep_msg = NULL; /* don't redisplay message, it's too long */
1057 }
1058
1059 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */
1060 {
1061 starttermcap(); /* start termcap before redrawing */
1062 shell_resized();
1063 }
1064 else if (!skip_redraw
1065 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1)))
1066 {
1067 starttermcap(); /* start termcap before redrawing */
1068 redraw_later(VALID);
1069 }
1070}
1071
1072/*
1073 * Write the hit-return prompt.
1074 */
1075 static void
1076hit_return_msg()
1077{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001078 int save_p_more = p_more;
1079
1080 p_more = FALSE; /* don't want see this message when scrolling back */
1081 if (msg_didout) /* start on a new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 msg_putchar('\n');
1083 if (got_int)
1084 MSG_PUTS(_("Interrupt: "));
1085
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001086 MSG_PUTS_ATTR(_("Press ENTER or type command to continue"), hl_attr(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 if (!msg_use_printf())
1088 msg_clr_eos();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001089 p_more = save_p_more;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090}
1091
1092/*
1093 * Set "keep_msg" to "s". Free the old value and check for NULL pointer.
1094 */
1095 void
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001096set_keep_msg(s, attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 char_u *s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001098 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099{
1100 vim_free(keep_msg);
1101 if (s != NULL && msg_silent == 0)
1102 keep_msg = vim_strsave(s);
1103 else
1104 keep_msg = NULL;
Bram Moolenaaraab21c32005-01-25 21:46:35 +00001105 keep_msg_more = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001106 keep_msg_attr = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107}
1108
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001109#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1110/*
1111 * If there currently is a message being displayed, set "keep_msg" to it, so
1112 * that it will be displayed again after redraw.
1113 */
1114 void
1115set_keep_msg_from_hist()
1116{
1117 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0
1118 && (State & NORMAL))
1119 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr);
1120}
1121#endif
1122
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123/*
1124 * Prepare for outputting characters in the command line.
1125 */
1126 void
1127msg_start()
1128{
1129 int did_return = FALSE;
1130
1131 vim_free(keep_msg);
1132 keep_msg = NULL; /* don't display old message now */
1133 if (!msg_scroll && full_screen) /* overwrite last message */
1134 {
1135 msg_row = cmdline_row;
1136 msg_col =
1137#ifdef FEAT_RIGHTLEFT
1138 cmdmsg_rl ? Columns - 1 :
1139#endif
1140 0;
1141 }
1142 else if (msg_didout) /* start message on next line */
1143 {
1144 msg_putchar('\n');
1145 did_return = TRUE;
1146 if (exmode_active != EXMODE_NORMAL)
1147 cmdline_row = msg_row;
1148 }
1149 if (!msg_didany || lines_left < 0)
1150 msg_starthere();
1151 if (msg_silent == 0)
1152 {
1153 msg_didout = FALSE; /* no output on current line yet */
1154 cursor_off();
1155 }
1156
1157 /* when redirecting, may need to start a new line. */
1158 if (!did_return)
1159 redir_write((char_u *)"\n", -1);
1160}
1161
1162/*
1163 * Note that the current msg position is where messages start.
1164 */
1165 void
1166msg_starthere()
1167{
1168 lines_left = cmdline_row;
1169 msg_didany = FALSE;
1170}
1171
1172 void
1173msg_putchar(c)
1174 int c;
1175{
1176 msg_putchar_attr(c, 0);
1177}
1178
1179 void
1180msg_putchar_attr(c, attr)
1181 int c;
1182 int attr;
1183{
1184#ifdef FEAT_MBYTE
1185 char_u buf[MB_MAXBYTES + 1];
1186#else
1187 char_u buf[4];
1188#endif
1189
1190 if (IS_SPECIAL(c))
1191 {
1192 buf[0] = K_SPECIAL;
1193 buf[1] = K_SECOND(c);
1194 buf[2] = K_THIRD(c);
1195 buf[3] = NUL;
1196 }
1197 else
1198 {
1199#ifdef FEAT_MBYTE
1200 buf[(*mb_char2bytes)(c, buf)] = NUL;
1201#else
1202 buf[0] = c;
1203 buf[1] = NUL;
1204#endif
1205 }
1206 msg_puts_attr(buf, attr);
1207}
1208
1209 void
1210msg_outnum(n)
1211 long n;
1212{
1213 char_u buf[20];
1214
1215 sprintf((char *)buf, "%ld", n);
1216 msg_puts(buf);
1217}
1218
1219 void
1220msg_home_replace(fname)
1221 char_u *fname;
1222{
1223 msg_home_replace_attr(fname, 0);
1224}
1225
1226#if defined(FEAT_FIND_ID) || defined(PROTO)
1227 void
1228msg_home_replace_hl(fname)
1229 char_u *fname;
1230{
1231 msg_home_replace_attr(fname, hl_attr(HLF_D));
1232}
1233#endif
1234
1235 static void
1236msg_home_replace_attr(fname, attr)
1237 char_u *fname;
1238 int attr;
1239{
1240 char_u *name;
1241
1242 name = home_replace_save(NULL, fname);
1243 if (name != NULL)
1244 msg_outtrans_attr(name, attr);
1245 vim_free(name);
1246}
1247
1248/*
1249 * Output 'len' characters in 'str' (including NULs) with translation
1250 * if 'len' is -1, output upto a NUL character.
1251 * Use attributes 'attr'.
1252 * Return the number of characters it takes on the screen.
1253 */
1254 int
1255msg_outtrans(str)
1256 char_u *str;
1257{
1258 return msg_outtrans_attr(str, 0);
1259}
1260
1261 int
1262msg_outtrans_attr(str, attr)
1263 char_u *str;
1264 int attr;
1265{
1266 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr);
1267}
1268
1269 int
1270msg_outtrans_len(str, len)
1271 char_u *str;
1272 int len;
1273{
1274 return msg_outtrans_len_attr(str, len, 0);
1275}
1276
1277/*
1278 * Output one character at "p". Return pointer to the next character.
1279 * Handles multi-byte characters.
1280 */
1281 char_u *
1282msg_outtrans_one(p, attr)
1283 char_u *p;
1284 int attr;
1285{
1286#ifdef FEAT_MBYTE
1287 int l;
1288
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001289 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 {
1291 msg_outtrans_len_attr(p, l, attr);
1292 return p + l;
1293 }
1294#endif
1295 msg_puts_attr(transchar_byte(*p), attr);
1296 return p + 1;
1297}
1298
1299 int
1300msg_outtrans_len_attr(msgstr, len, attr)
1301 char_u *msgstr;
1302 int len;
1303 int attr;
1304{
1305 int retval = 0;
1306 char_u *str = msgstr;
1307 char_u *plain_start = msgstr;
1308 char_u *s;
1309#ifdef FEAT_MBYTE
1310 int mb_l;
1311 int c;
1312#endif
1313
1314 /* if MSG_HIST flag set, add message to history */
1315 if (attr & MSG_HIST)
1316 {
1317 add_msg_hist(str, len, attr);
1318 attr &= ~MSG_HIST;
1319 }
1320
1321#ifdef FEAT_MBYTE
1322 /* If the string starts with a composing character first draw a space on
1323 * which the composing char can be drawn. */
1324 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr)))
1325 msg_puts_attr((char_u *)" ", attr);
1326#endif
1327
1328 /*
1329 * Go over the string. Special characters are translated and printed.
1330 * Normal characters are printed several at a time.
1331 */
1332 while (--len >= 0)
1333 {
1334#ifdef FEAT_MBYTE
1335 if (enc_utf8)
1336 /* Don't include composing chars after the end. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001337 mb_l = utfc_ptr2len_len(str, len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001339 mb_l = (*mb_ptr2len)(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 else
1341 mb_l = 1;
1342 if (has_mbyte && mb_l > 1)
1343 {
1344 c = (*mb_ptr2char)(str);
1345 if (vim_isprintc(c))
1346 /* printable multi-byte char: count the cells. */
1347 retval += (*mb_ptr2cells)(str);
1348 else
1349 {
1350 /* unprintable multi-byte char: print the printable chars so
1351 * far and the translation of the unprintable char. */
1352 if (str > plain_start)
1353 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1354 attr);
1355 plain_start = str + mb_l;
1356 msg_puts_attr(transchar(c), attr == 0 ? hl_attr(HLF_8) : attr);
1357 retval += char2cells(c);
1358 }
1359 len -= mb_l - 1;
1360 str += mb_l;
1361 }
1362 else
1363#endif
1364 {
1365 s = transchar_byte(*str);
1366 if (s[1] != NUL)
1367 {
1368 /* unprintable char: print the printable chars so far and the
1369 * translation of the unprintable char. */
1370 if (str > plain_start)
1371 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1372 attr);
1373 plain_start = str + 1;
1374 msg_puts_attr(s, attr == 0 ? hl_attr(HLF_8) : attr);
1375 }
1376 retval += ptr2cells(str);
1377 ++str;
1378 }
1379 }
1380
1381 if (str > plain_start)
1382 /* print the printable chars at the end */
1383 msg_puts_attr_len(plain_start, (int)(str - plain_start), attr);
1384
1385 return retval;
1386}
1387
1388#if defined(FEAT_QUICKFIX) || defined(PROTO)
1389 void
1390msg_make(arg)
1391 char_u *arg;
1392{
1393 int i;
1394 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB";
1395
1396 arg = skipwhite(arg);
1397 for (i = 5; *arg && i >= 0; --i)
1398 if (*arg++ != str[i])
1399 break;
1400 if (i < 0)
1401 {
1402 msg_putchar('\n');
1403 for (i = 0; rs[i]; ++i)
1404 msg_putchar(rs[i] - 3);
1405 }
1406}
1407#endif
1408
1409/*
1410 * Output the string 'str' upto a NUL character.
1411 * Return the number of characters it takes on the screen.
1412 *
1413 * If K_SPECIAL is encountered, then it is taken in conjunction with the
1414 * following character and shown as <F1>, <S-Up> etc. Any other character
1415 * which is not printable shown in <> form.
1416 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>.
1417 * If a character is displayed in one of these special ways, is also
1418 * highlighted (its highlight name is '8' in the p_hl variable).
1419 * Otherwise characters are not highlighted.
1420 * This function is used to show mappings, where we want to see how to type
1421 * the character/string -- webb
1422 */
1423 int
1424msg_outtrans_special(strstart, from)
1425 char_u *strstart;
1426 int from; /* TRUE for lhs of a mapping */
1427{
1428 char_u *str = strstart;
1429 int retval = 0;
1430 char_u *string;
1431 int attr;
1432 int len;
1433
1434 attr = hl_attr(HLF_8);
1435 while (*str != NUL)
1436 {
1437 /* Leading and trailing spaces need to be displayed in <> form. */
1438 if ((str == strstart || str[1] == NUL) && *str == ' ')
1439 {
1440 string = (char_u *)"<Space>";
1441 ++str;
1442 }
1443 else
1444 string = str2special(&str, from);
1445 len = vim_strsize(string);
1446 /* Highlight special keys */
1447 msg_puts_attr(string, len > 1
1448#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001449 && (*mb_ptr2len)(string) <= 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450#endif
1451 ? attr : 0);
1452 retval += len;
1453 }
1454 return retval;
1455}
1456
1457/*
1458 * Return the printable string for the key codes at "*sp".
1459 * Used for translating the lhs or rhs of a mapping to printable chars.
1460 * Advances "sp" to the next code.
1461 */
1462 char_u *
1463str2special(sp, from)
1464 char_u **sp;
1465 int from; /* TRUE for lhs of mapping */
1466{
1467 int c;
1468 static char_u buf[7];
1469 char_u *str = *sp;
1470 int modifiers = 0;
1471 int special = FALSE;
1472
1473#ifdef FEAT_MBYTE
1474 if (has_mbyte)
1475 {
1476 char_u *p;
1477
1478 /* Try to un-escape a multi-byte character. Return the un-escaped
1479 * string if it is a multi-byte character. */
1480 p = mb_unescape(sp);
1481 if (p != NULL)
1482 return p;
1483 }
1484#endif
1485
1486 c = *str;
1487 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1488 {
1489 if (str[1] == KS_MODIFIER)
1490 {
1491 modifiers = str[2];
1492 str += 3;
1493 c = *str;
1494 }
1495 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1496 {
1497 c = TO_SPECIAL(str[1], str[2]);
1498 str += 2;
1499 if (c == K_ZERO) /* display <Nul> as ^@ */
1500 c = NUL;
1501 }
1502 if (IS_SPECIAL(c) || modifiers) /* special key */
1503 special = TRUE;
1504 }
1505 *sp = str + 1;
1506
1507#ifdef FEAT_MBYTE
1508 /* For multi-byte characters check for an illegal byte. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001509 if (has_mbyte && MB_BYTE2LEN(*str) > (*mb_ptr2len)(str))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 {
1511 transchar_nonprint(buf, c);
1512 return buf;
1513 }
1514#endif
1515
1516 /* Make unprintable characters in <> form, also <M-Space> and <Tab>.
1517 * Use <Space> only for lhs of a mapping. */
1518 if (special || char2cells(c) > 1 || (from && c == ' '))
1519 return get_special_key_name(c, modifiers);
1520 buf[0] = c;
1521 buf[1] = NUL;
1522 return buf;
1523}
1524
1525/*
1526 * Translate a key sequence into special key names.
1527 */
1528 void
1529str2specialbuf(sp, buf, len)
1530 char_u *sp;
1531 char_u *buf;
1532 int len;
1533{
1534 char_u *s;
1535
1536 *buf = NUL;
1537 while (*sp)
1538 {
1539 s = str2special(&sp, FALSE);
1540 if ((int)(STRLEN(s) + STRLEN(buf)) < len)
1541 STRCAT(buf, s);
1542 }
1543}
1544
1545/*
1546 * print line for :print or :list command
1547 */
1548 void
Bram Moolenaardf177f62005-02-22 08:39:57 +00001549msg_prt_line(s, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 char_u *s;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001551 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552{
1553 int c;
1554 int col = 0;
1555 int n_extra = 0;
1556 int c_extra = 0;
1557 char_u *p_extra = NULL; /* init to make SASC shut up */
1558 int n;
1559 int attr= 0;
1560 char_u *trail = NULL;
1561#ifdef FEAT_MBYTE
1562 int l;
1563 char_u buf[MB_MAXBYTES + 1];
1564#endif
1565
Bram Moolenaardf177f62005-02-22 08:39:57 +00001566 if (curwin->w_p_list)
1567 list = TRUE;
1568
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 /* find start of trailing whitespace */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001570 if (list && lcs_trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 {
1572 trail = s + STRLEN(s);
1573 while (trail > s && vim_iswhite(trail[-1]))
1574 --trail;
1575 }
1576
1577 /* output a space for an empty line, otherwise the line will be
1578 * overwritten */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001579 if (*s == NUL && !(list && lcs_eol != NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 msg_putchar(' ');
1581
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001582 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 {
1584 if (n_extra)
1585 {
1586 --n_extra;
1587 if (c_extra)
1588 c = c_extra;
1589 else
1590 c = *p_extra++;
1591 }
1592#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001593 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 {
1595 col += (*mb_ptr2cells)(s);
1596 mch_memmove(buf, s, (size_t)l);
1597 buf[l] = NUL;
1598 msg_puts_attr(buf, attr);
1599 s += l;
1600 continue;
1601 }
1602#endif
1603 else
1604 {
1605 attr = 0;
1606 c = *s++;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001607 if (c == TAB && (!list || lcs_tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 {
1609 /* tab amount depends on current column */
1610 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001611 if (!list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 {
1613 c = ' ';
1614 c_extra = ' ';
1615 }
1616 else
1617 {
1618 c = lcs_tab1;
1619 c_extra = lcs_tab2;
1620 attr = hl_attr(HLF_8);
1621 }
1622 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00001623 else if (c == NUL && list && lcs_eol != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 {
1625 p_extra = (char_u *)"";
1626 c_extra = NUL;
1627 n_extra = 1;
1628 c = lcs_eol;
1629 attr = hl_attr(HLF_AT);
1630 --s;
1631 }
1632 else if (c != NUL && (n = byte2cells(c)) > 1)
1633 {
1634 n_extra = n - 1;
1635 p_extra = transchar_byte(c);
1636 c_extra = NUL;
1637 c = *p_extra++;
1638 }
1639 else if (c == ' ' && trail != NULL && s > trail)
1640 {
1641 c = lcs_trail;
1642 attr = hl_attr(HLF_8);
1643 }
1644 }
1645
1646 if (c == NUL)
1647 break;
1648
1649 msg_putchar_attr(c, attr);
1650 col++;
1651 }
1652 msg_clr_eos();
1653}
1654
1655#ifdef FEAT_MBYTE
1656/*
1657 * Use screen_puts() to output one multi-byte character.
1658 * Return the pointer "s" advanced to the next character.
1659 */
1660 static char_u *
1661screen_puts_mbyte(s, l, attr)
1662 char_u *s;
1663 int l;
1664 int attr;
1665{
1666 int cw;
1667
1668 msg_didout = TRUE; /* remember that line is not empty */
1669 cw = (*mb_ptr2cells)(s);
1670 if (cw > 1 && (
1671#ifdef FEAT_RIGHTLEFT
1672 cmdmsg_rl ? msg_col <= 1 :
1673#endif
1674 msg_col == Columns - 1))
1675 {
1676 /* Doesn't fit, print a highlighted '>' to fill it up. */
1677 msg_screen_putchar('>', hl_attr(HLF_AT));
1678 return s;
1679 }
1680
1681 screen_puts_len(s, l, msg_row, msg_col, attr);
1682#ifdef FEAT_RIGHTLEFT
1683 if (cmdmsg_rl)
1684 {
1685 msg_col -= cw;
1686 if (msg_col == 0)
1687 {
1688 msg_col = Columns;
1689 ++msg_row;
1690 }
1691 }
1692 else
1693#endif
1694 {
1695 msg_col += cw;
1696 if (msg_col >= Columns)
1697 {
1698 msg_col = 0;
1699 ++msg_row;
1700 }
1701 }
1702 return s + l;
1703}
1704#endif
1705
1706/*
1707 * Output a string to the screen at position msg_row, msg_col.
1708 * Update msg_row and msg_col for the next message.
1709 */
1710 void
1711msg_puts(s)
1712 char_u *s;
1713{
1714 msg_puts_attr(s, 0);
1715}
1716
1717 void
1718msg_puts_title(s)
1719 char_u *s;
1720{
1721 msg_puts_attr(s, hl_attr(HLF_T));
1722}
1723
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724/*
1725 * Show a message in such a way that it always fits in the line. Cut out a
1726 * part in the middle and replace it with "..." when necessary.
1727 * Does not handle multi-byte characters!
1728 */
1729 void
1730msg_puts_long_attr(longstr, attr)
1731 char_u *longstr;
1732 int attr;
1733{
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001734 msg_puts_long_len_attr(longstr, (int)STRLEN(longstr), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735}
1736
1737 void
1738msg_puts_long_len_attr(longstr, len, attr)
1739 char_u *longstr;
1740 int len;
1741 int attr;
1742{
1743 int slen = len;
1744 int room;
1745
1746 room = Columns - msg_col;
1747 if (len > room && room >= 20)
1748 {
1749 slen = (room - 3) / 2;
1750 msg_outtrans_len_attr(longstr, slen, attr);
1751 msg_puts_attr((char_u *)"...", hl_attr(HLF_8));
1752 }
1753 msg_outtrans_len_attr(longstr + len - slen, slen, attr);
1754}
1755
1756/*
1757 * Basic function for writing a message with highlight attributes.
1758 */
1759 void
1760msg_puts_attr(s, attr)
1761 char_u *s;
1762 int attr;
1763{
1764 msg_puts_attr_len(s, -1, attr);
1765}
1766
1767/*
1768 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes).
1769 * When "maxlen" is -1 there is no maximum length.
1770 * When "maxlen" is >= 0 the message is not put in the history.
1771 */
1772 static void
1773msg_puts_attr_len(str, maxlen, attr)
1774 char_u *str;
1775 int maxlen;
1776 int attr;
1777{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 /*
1779 * If redirection is on, also write to the redirection file.
1780 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001781 redir_write(str, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782
1783 /*
1784 * Don't print anything when using ":silent cmd".
1785 */
1786 if (msg_silent != 0)
1787 return;
1788
1789 /* if MSG_HIST flag set, add message to history */
1790 if ((attr & MSG_HIST) && maxlen < 0)
1791 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001792 add_msg_hist(str, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 attr &= ~MSG_HIST;
1794 }
1795
1796 /*
1797 * When writing something to the screen after it has scrolled, requires a
1798 * wait-return prompt later. Needed when scrolling, resetting
1799 * need_wait_return after some prompt, and then outputting something
1800 * without scrolling
1801 */
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001802 if (msg_scrolled != 0 && !msg_scrolled_ign)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 need_wait_return = TRUE;
1804 msg_didany = TRUE; /* remember that something was outputted */
1805
1806 /*
1807 * If there is no valid screen, use fprintf so we can see error messages.
1808 * If termcap is not active, we may be writing in an alternate console
1809 * window, cursor positioning may not work correctly (window size may be
1810 * different, e.g. for Win32 console) or we just don't know where the
1811 * cursor is.
1812 */
1813 if (msg_use_printf())
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001814 msg_puts_printf(str, maxlen);
1815 else
1816 msg_puts_display(str, maxlen, attr, FALSE);
1817}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001819/*
1820 * The display part of msg_puts_attr_len().
1821 * May be called recursively to display scroll-back text.
1822 */
1823 static void
1824msg_puts_display(str, maxlen, attr, recurse)
1825 char_u *str;
1826 int maxlen;
1827 int attr;
1828 int recurse;
1829{
1830 char_u *s = str;
1831 char_u *t_s = str; /* string from "t_s" to "s" is still todo */
1832 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */
1833#ifdef FEAT_MBYTE
1834 int l;
1835 int cw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001837 char_u *sb_str = str;
1838 int sb_col = msg_col;
1839 int wrap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840
1841 did_wait_return = FALSE;
1842 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
1843 {
1844 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001845 * We are at the end of the screen line when:
1846 * - When outputting a newline.
1847 * - When outputting a character in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001849 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850#ifdef FEAT_RIGHTLEFT
1851 cmdmsg_rl
1852 ? (
1853 msg_col <= 1
1854 || (*s == TAB && msg_col <= 7)
1855# ifdef FEAT_MBYTE
1856 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2)
1857# endif
1858 )
1859 :
1860#endif
1861 (msg_col + t_col >= Columns - 1
1862 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7))
1863# ifdef FEAT_MBYTE
1864 || (has_mbyte && (*mb_ptr2cells)(s) > 1
1865 && msg_col + t_col >= Columns - 2)
1866# endif
1867 ))))
1868 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001869 /*
1870 * The screen is scrolled up when at the last row (some terminals
1871 * scroll automatically, some don't. To avoid problems we scroll
1872 * ourselves).
1873 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 if (t_col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 /* output postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001876 t_puts(&t_col, t_s, s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877
1878 /* When no more prompt an no more room, truncate here */
1879 if (msg_no_more && lines_left == 0)
1880 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001882 /* Scroll the screen up one line. */
1883 msg_scroll_up();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884
1885 msg_row = Rows - 2;
1886 if (msg_col >= Columns) /* can happen after screen resize */
1887 msg_col = Columns - 1;
1888
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001889 /* Display char in last column before showing more-prompt. */
1890 if (*s >= ' '
1891#ifdef FEAT_RIGHTLEFT
1892 && !cmdmsg_rl
1893#endif
1894 )
1895 {
1896#ifdef FEAT_MBYTE
1897 if (has_mbyte)
1898 {
1899 if (enc_utf8 && maxlen >= 0)
1900 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001901 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001902 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001903 l = (*mb_ptr2len)(s);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001904 s = screen_puts_mbyte(s, l, attr);
1905 }
1906 else
1907#endif
1908 msg_screen_putchar(*s++, attr);
1909 }
1910
1911 if (p_more)
1912 /* store text for scrolling back */
1913 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
1914
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001915 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001916 need_wait_return = TRUE; /* may need wait_return in main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 if (must_redraw < VALID)
1918 must_redraw = VALID;
1919 redraw_cmdline = TRUE;
1920 if (cmdline_row > 0 && !exmode_active)
1921 --cmdline_row;
1922
1923 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001924 * If screen is completely filled and 'more' is set then wait
1925 * for a character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 */
Bram Moolenaar203335e2006-09-03 14:35:42 +00001927 --lines_left;
1928 if (p_more && lines_left == 0 && State != HITRETURN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 && !msg_no_more && !exmode_active)
1930 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931#ifdef FEAT_CON_DIALOG
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001932 if (do_more_prompt(NUL))
1933 s = confirm_msg_tail;
1934#else
1935 (void)do_more_prompt(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936#endif
1937 if (quit_more)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001938 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 }
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001940
1941 /* When we displayed a char in last column need to check if there
1942 * is still more. */
1943 if (*s >= ' '
1944#ifdef FEAT_RIGHTLEFT
1945 && !cmdmsg_rl
1946#endif
1947 )
1948 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 }
1950
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001951 wrap = *s == '\n'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 || msg_col + t_col >= Columns
1953#ifdef FEAT_MBYTE
1954 || (has_mbyte && (*mb_ptr2cells)(s) > 1
1955 && msg_col + t_col >= Columns - 1)
1956#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001957 ;
1958 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b'
1959 || *s == '\t' || *s == BELL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 /* output any postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001961 t_puts(&t_col, t_s, s, attr);
1962
1963 if (wrap && p_more && !recurse)
1964 /* store text for scrolling back */
1965 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966
1967 if (*s == '\n') /* go to next line */
1968 {
1969 msg_didout = FALSE; /* remember that line is empty */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001970#ifdef FEAT_RIGHTLEFT
1971 if (cmdmsg_rl)
1972 msg_col = Columns - 1;
1973 else
1974#endif
1975 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 if (++msg_row >= Rows) /* safety check */
1977 msg_row = Rows - 1;
1978 }
1979 else if (*s == '\r') /* go to column 0 */
1980 {
1981 msg_col = 0;
1982 }
1983 else if (*s == '\b') /* go to previous char */
1984 {
1985 if (msg_col)
1986 --msg_col;
1987 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001988 else if (*s == TAB) /* translate Tab into spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 {
1990 do
1991 msg_screen_putchar(' ', attr);
1992 while (msg_col & 7);
1993 }
1994 else if (*s == BELL) /* beep (from ":sh") */
1995 vim_beep();
1996 else
1997 {
1998#ifdef FEAT_MBYTE
1999 if (has_mbyte)
2000 {
2001 cw = (*mb_ptr2cells)(s);
2002 if (enc_utf8 && maxlen >= 0)
2003 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002004 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002006 l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 }
2008 else
2009 {
2010 cw = 1;
2011 l = 1;
2012 }
2013#endif
2014 /* When drawing from right to left or when a double-wide character
2015 * doesn't fit, draw a single character here. Otherwise collect
2016 * characters and draw them all at once later. */
2017#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
2018 if (
2019# ifdef FEAT_RIGHTLEFT
2020 cmdmsg_rl
2021# ifdef FEAT_MBYTE
2022 ||
2023# endif
2024# endif
2025# ifdef FEAT_MBYTE
2026 (cw > 1 && msg_col + t_col >= Columns - 1)
2027# endif
2028 )
2029 {
2030# ifdef FEAT_MBYTE
2031 if (l > 1)
2032 s = screen_puts_mbyte(s, l, attr) - 1;
2033 else
2034# endif
2035 msg_screen_putchar(*s, attr);
2036 }
2037 else
2038#endif
2039 {
2040 /* postpone this character until later */
2041 if (t_col == 0)
2042 t_s = s;
2043#ifdef FEAT_MBYTE
2044 t_col += cw;
2045 s += l - 1;
2046#else
2047 ++t_col;
2048#endif
2049 }
2050 }
2051 ++s;
2052 }
2053
2054 /* output any postponed text */
2055 if (t_col > 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002056 t_puts(&t_col, t_s, s, attr);
2057 if (p_more && !recurse)
2058 store_sb_text(&sb_str, s, attr, &sb_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059
2060 msg_check();
2061}
2062
2063/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002064 * Scroll the screen up one line for displaying the next message line.
2065 */
2066 static void
2067msg_scroll_up()
2068{
2069#ifdef FEAT_GUI
2070 /* Remove the cursor before scrolling, ScreenLines[] is going
2071 * to become invalid. */
2072 if (gui.in_use)
2073 gui_undraw_cursor();
2074#endif
2075 /* scrolling up always works */
2076 screen_del_lines(0, 0, 1, (int)Rows, TRUE, NULL);
2077
2078 if (!can_clear((char_u *)" "))
2079 {
2080 /* Scrolling up doesn't result in the right background. Set the
2081 * background here. It's not efficient, but avoids that we have to do
2082 * it all over the code. */
2083 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2084
2085 /* Also clear the last char of the last but one line if it was not
2086 * cleared before to avoid a scroll-up. */
2087 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1)
2088 screen_fill((int)Rows - 2, (int)Rows - 1,
2089 (int)Columns - 1, (int)Columns, ' ', ' ', 0);
2090 }
2091}
2092
2093/*
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002094 * Increment "msg_scrolled".
2095 */
2096 static void
2097inc_msg_scrolled()
2098{
2099#ifdef FEAT_EVAL
2100 if (*get_vim_var_str(VV_SCROLLSTART) == NUL)
2101 {
2102 char_u *p = sourcing_name;
2103 char_u *tofree = NULL;
2104 int len;
2105
2106 /* v:scrollstart is empty, set it to the script/function name and line
2107 * number */
2108 if (p == NULL)
2109 p = (char_u *)_("Unknown");
2110 else
2111 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002112 len = (int)STRLEN(p) + 40;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002113 tofree = alloc(len);
2114 if (tofree != NULL)
2115 {
2116 vim_snprintf((char *)tofree, len, _("%s line %ld"),
2117 p, (long)sourcing_lnum);
2118 p = tofree;
2119 }
2120 }
2121 set_vim_var_string(VV_SCROLLSTART, p, -1);
2122 vim_free(tofree);
2123 }
2124#endif
2125 ++msg_scrolled;
2126}
2127
2128/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002129 * To be able to scroll back at the "more" and "hit-enter" prompts we need to
2130 * store the displayed text and remember where screen lines start.
2131 */
2132typedef struct msgchunk_S msgchunk_T;
2133struct msgchunk_S
2134{
2135 msgchunk_T *sb_next;
2136 msgchunk_T *sb_prev;
2137 char sb_eol; /* TRUE when line ends after this text */
2138 int sb_msg_col; /* column in which text starts */
2139 int sb_attr; /* text attributes */
2140 char_u sb_text[1]; /* text to be displayed, actually longer */
2141};
2142
2143static msgchunk_T *last_msgchunk = NULL; /* last displayed text */
2144
2145static msgchunk_T *msg_sb_start __ARGS((msgchunk_T *mps));
2146static msgchunk_T *disp_sb_line __ARGS((int row, msgchunk_T *smp));
2147
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002148static int do_clear_sb_text = FALSE; /* clear text on next msg */
2149
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002150/*
2151 * Store part of a printed message for displaying when scrolling back.
2152 */
2153 static void
2154store_sb_text(sb_str, s, attr, sb_col, finish)
2155 char_u **sb_str; /* start of string */
2156 char_u *s; /* just after string */
2157 int attr;
2158 int *sb_col;
2159 int finish; /* line ends */
2160{
2161 msgchunk_T *mp;
2162
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002163 if (do_clear_sb_text)
2164 {
2165 clear_sb_text();
2166 do_clear_sb_text = FALSE;
2167 }
2168
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002169 if (s > *sb_str)
2170 {
2171 mp = (msgchunk_T *)alloc((int)(sizeof(msgchunk_T) + (s - *sb_str)));
2172 if (mp != NULL)
2173 {
2174 mp->sb_eol = finish;
2175 mp->sb_msg_col = *sb_col;
2176 mp->sb_attr = attr;
2177 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str);
2178
2179 if (last_msgchunk == NULL)
2180 {
2181 last_msgchunk = mp;
2182 mp->sb_prev = NULL;
2183 }
2184 else
2185 {
2186 mp->sb_prev = last_msgchunk;
2187 last_msgchunk->sb_next = mp;
2188 last_msgchunk = mp;
2189 }
2190 mp->sb_next = NULL;
2191 }
2192 }
2193 else if (finish && last_msgchunk != NULL)
2194 last_msgchunk->sb_eol = TRUE;
2195
2196 *sb_str = s;
2197 *sb_col = 0;
2198}
2199
2200/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002201 * Finished showing messages, clear the scroll-back text on the next message.
2202 */
2203 void
2204may_clear_sb_text()
2205{
2206 do_clear_sb_text = TRUE;
2207}
2208
2209/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002210 * Clear any text remembered for scrolling back.
2211 * Called when redrawing the screen.
2212 */
2213 void
2214clear_sb_text()
2215{
2216 msgchunk_T *mp;
2217
2218 while (last_msgchunk != NULL)
2219 {
2220 mp = last_msgchunk->sb_prev;
2221 vim_free(last_msgchunk);
2222 last_msgchunk = mp;
2223 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002224}
2225
2226/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002227 * "g<" command.
2228 */
2229 void
2230show_sb_text()
2231{
2232 msgchunk_T *mp;
2233
2234 /* Only show somethign if there is more than one line, otherwise it looks
2235 * weird, typing a command without output results in one line. */
2236 mp = msg_sb_start(last_msgchunk);
2237 if (mp == NULL || mp->sb_prev == NULL)
2238 vim_beep();
2239 else
2240 {
2241 do_more_prompt('G');
2242 wait_return(FALSE);
2243 }
2244}
2245
2246/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002247 * Move to the start of screen line in already displayed text.
2248 */
2249 static msgchunk_T *
2250msg_sb_start(mps)
2251 msgchunk_T *mps;
2252{
2253 msgchunk_T *mp = mps;
2254
2255 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol)
2256 mp = mp->sb_prev;
2257 return mp;
2258}
2259
2260/*
2261 * Display a screen line from previously displayed text at row "row".
2262 * Returns a pointer to the text for the next line (can be NULL).
2263 */
2264 static msgchunk_T *
2265disp_sb_line(row, smp)
2266 int row;
2267 msgchunk_T *smp;
2268{
2269 msgchunk_T *mp = smp;
2270 char_u *p;
2271
2272 for (;;)
2273 {
2274 msg_row = row;
2275 msg_col = mp->sb_msg_col;
2276 p = mp->sb_text;
2277 if (*p == '\n') /* don't display the line break */
2278 ++p;
2279 msg_puts_display(p, -1, mp->sb_attr, TRUE);
2280 if (mp->sb_eol || mp->sb_next == NULL)
2281 break;
2282 mp = mp->sb_next;
2283 }
2284 return mp->sb_next;
2285}
2286
2287/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 * Output any postponed text for msg_puts_attr_len().
2289 */
2290 static void
2291t_puts(t_col, t_s, s, attr)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002292 int *t_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 char_u *t_s;
2294 char_u *s;
2295 int attr;
2296{
2297 /* output postponed text */
2298 msg_didout = TRUE; /* remember that line is not empty */
2299 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002300 msg_col += *t_col;
2301 *t_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302#ifdef FEAT_MBYTE
2303 /* If the string starts with a composing character don't increment the
2304 * column position for it. */
2305 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s)))
2306 --msg_col;
2307#endif
2308 if (msg_col >= Columns)
2309 {
2310 msg_col = 0;
2311 ++msg_row;
2312 }
2313}
2314
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315/*
2316 * Returns TRUE when messages should be printed with mch_errmsg().
2317 * This is used when there is no valid screen, so we can see error messages.
2318 * If termcap is not active, we may be writing in an alternate console
2319 * window, cursor positioning may not work correctly (window size may be
2320 * different, e.g. for Win32 console) or we just don't know where the
2321 * cursor is.
2322 */
2323 int
2324msg_use_printf()
2325{
2326 return (!msg_check_screen()
2327#if defined(WIN3264) && !defined(FEAT_GUI_MSWIN)
2328 || !termcap_active
2329#endif
2330 || (swapping_screen() && !termcap_active)
2331 );
2332}
2333
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002334/*
2335 * Print a message when there is no valid screen.
2336 */
2337 static void
2338msg_puts_printf(str, maxlen)
2339 char_u *str;
2340 int maxlen;
2341{
2342 char_u *s = str;
2343 char_u buf[4];
2344 char_u *p;
2345
2346#ifdef WIN3264
2347 if (!(silent_mode && p_verbose == 0))
2348 mch_settmode(TMODE_COOK); /* handle '\r' and '\n' correctly */
2349#endif
2350 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
2351 {
2352 if (!(silent_mode && p_verbose == 0))
2353 {
2354 /* NL --> CR NL translation (for Unix, not for "--version") */
2355 /* NL --> CR translation (for Mac) */
2356 p = &buf[0];
2357 if (*s == '\n' && !info_message)
2358 *p++ = '\r';
2359#if defined(USE_CR) && !defined(MACOS_X_UNIX)
2360 else
2361#endif
2362 *p++ = *s;
2363 *p = '\0';
2364 if (info_message) /* informative message, not an error */
2365 mch_msg((char *)buf);
2366 else
2367 mch_errmsg((char *)buf);
2368 }
2369
2370 /* primitive way to compute the current column */
2371#ifdef FEAT_RIGHTLEFT
2372 if (cmdmsg_rl)
2373 {
2374 if (*s == '\r' || *s == '\n')
2375 msg_col = Columns - 1;
2376 else
2377 --msg_col;
2378 }
2379 else
2380#endif
2381 {
2382 if (*s == '\r' || *s == '\n')
2383 msg_col = 0;
2384 else
2385 ++msg_col;
2386 }
2387 ++s;
2388 }
2389 msg_didout = TRUE; /* assume that line is not empty */
2390
2391#ifdef WIN3264
2392 if (!(silent_mode && p_verbose == 0))
2393 mch_settmode(TMODE_RAW);
2394#endif
2395}
2396
2397/*
2398 * Show the more-prompt and handle the user response.
2399 * This takes care of scrolling back and displaying previously displayed text.
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002400 * When at hit-enter prompt "typed_char" is the already typed character,
2401 * otherwise it's NUL.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002402 * Returns TRUE when jumping ahead to "confirm_msg_tail".
2403 */
2404 static int
2405do_more_prompt(typed_char)
2406 int typed_char;
2407{
2408 int used_typed_char = typed_char;
2409 int oldState = State;
2410 int c;
2411#ifdef FEAT_CON_DIALOG
2412 int retval = FALSE;
2413#endif
2414 int scroll;
2415 msgchunk_T *mp_last = NULL;
2416 msgchunk_T *mp;
2417 int i;
2418
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002419 if (typed_char == 'G')
2420 {
2421 /* "g<": Find first line on the last page. */
2422 mp_last = msg_sb_start(last_msgchunk);
2423 for (i = 0; i < Rows - 2 && mp_last != NULL
2424 && mp_last->sb_prev != NULL; ++i)
2425 mp_last = msg_sb_start(mp_last->sb_prev);
2426 }
2427
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002428 State = ASKMORE;
2429#ifdef FEAT_MOUSE
2430 setmouse();
2431#endif
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002432 if (typed_char == NUL)
2433 msg_moremsg(FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002434 for (;;)
2435 {
2436 /*
2437 * Get a typed character directly from the user.
2438 */
2439 if (used_typed_char != NUL)
2440 {
2441 c = used_typed_char; /* was typed at hit-enter prompt */
2442 used_typed_char = NUL;
2443 }
2444 else
2445 c = get_keystroke();
2446
2447#if defined(FEAT_MENU) && defined(FEAT_GUI)
2448 if (c == K_MENU)
2449 {
2450 int idx = get_menu_index(current_menu, ASKMORE);
2451
2452 /* Used a menu. If it starts with CTRL-Y, it must
2453 * be a "Copy" for the clipboard. Otherwise
2454 * assume that we end */
2455 if (idx == MENU_INDEX_INVALID)
2456 continue;
2457 c = *current_menu->strings[idx];
2458 if (c != NUL && current_menu->strings[idx][1] != NUL)
2459 ins_typebuf(current_menu->strings[idx] + 1,
2460 current_menu->noremap[idx], 0, TRUE,
2461 current_menu->silent[idx]);
2462 }
2463#endif
2464
2465 scroll = 0;
2466 switch (c)
2467 {
2468 case BS: /* scroll one line back */
2469 case K_BS:
2470 case 'k':
2471 case K_UP:
2472 scroll = -1;
2473 break;
2474
2475 case CAR: /* one extra line */
2476 case NL:
2477 case 'j':
2478 case K_DOWN:
2479 scroll = 1;
2480 break;
2481
2482 case 'u': /* Up half a page */
2483 case K_PAGEUP:
2484 scroll = -(Rows / 2);
2485 break;
2486
2487 case 'd': /* Down half a page */
2488 scroll = Rows / 2;
2489 break;
2490
2491 case 'b': /* one page back */
2492 scroll = -(Rows - 1);
2493 break;
2494
2495 case ' ': /* one extra page */
2496 case K_PAGEDOWN:
2497 case K_LEFTMOUSE:
2498 scroll = Rows - 1;
2499 break;
2500
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002501 case 'g': /* all the way back to the start */
2502 scroll = -999999;
2503 break;
2504
2505 case 'G': /* all the way to the end */
2506 scroll = 999999;
2507 lines_left = 999999;
2508 break;
2509
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002510 case ':': /* start new command line */
2511#ifdef FEAT_CON_DIALOG
2512 if (!confirm_msg_used)
2513#endif
2514 {
2515 /* Since got_int is set all typeahead will be flushed, but we
2516 * want to keep this ':', remember that in a special way. */
2517 typeahead_noflush(':');
2518 cmdline_row = Rows - 1; /* put ':' on this line */
2519 skip_redraw = TRUE; /* skip redraw once */
2520 need_wait_return = FALSE; /* don't wait in main() */
2521 }
2522 /*FALLTHROUGH*/
2523 case 'q': /* quit */
2524 case Ctrl_C:
2525 case ESC:
2526#ifdef FEAT_CON_DIALOG
2527 if (confirm_msg_used)
2528 {
2529 /* Jump to the choices of the dialog. */
2530 retval = TRUE;
2531 lines_left = Rows - 1;
2532 }
2533 else
2534#endif
2535 {
2536 got_int = TRUE;
2537 quit_more = TRUE;
2538 }
2539 break;
2540
2541#ifdef FEAT_CLIPBOARD
2542 case Ctrl_Y:
2543 /* Strange way to allow copying (yanking) a modeless
2544 * selection at the more prompt. Use CTRL-Y,
2545 * because the same is used in Cmdline-mode and at the
2546 * hit-enter prompt. However, scrolling one line up
2547 * might be expected... */
2548 if (clip_star.state == SELECT_DONE)
2549 clip_copy_modeless_selection(TRUE);
2550 continue;
2551#endif
2552 default: /* no valid response */
2553 msg_moremsg(TRUE);
2554 continue;
2555 }
2556
2557 if (scroll != 0)
2558 {
2559 if (scroll < 0)
2560 {
2561 /* go to start of last line */
2562 if (mp_last == NULL)
2563 mp = msg_sb_start(last_msgchunk);
2564 else if (mp_last->sb_prev != NULL)
2565 mp = msg_sb_start(mp_last->sb_prev);
2566 else
2567 mp = NULL;
2568
2569 /* go to start of line at top of the screen */
2570 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL;
2571 ++i)
2572 mp = msg_sb_start(mp->sb_prev);
2573
2574 if (mp != NULL && mp->sb_prev != NULL)
2575 {
2576 /* Find line to be displayed at top. */
2577 for (i = 0; i > scroll; --i)
2578 {
2579 if (mp == NULL || mp->sb_prev == NULL)
2580 break;
2581 mp = msg_sb_start(mp->sb_prev);
2582 if (mp_last == NULL)
2583 mp_last = msg_sb_start(last_msgchunk);
2584 else
2585 mp_last = msg_sb_start(mp_last->sb_prev);
2586 }
2587
2588 if (scroll == -1 && screen_ins_lines(0, 0, 1,
2589 (int)Rows, NULL) == OK)
2590 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002591 /* display line at top */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002592 (void)disp_sb_line(0, mp);
2593 }
2594 else
2595 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002596 /* redisplay all lines */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002597 screenclear();
Bram Moolenaar773560b2006-05-06 21:38:18 +00002598 for (i = 0; mp != NULL && i < Rows - 1; ++i)
2599 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002600 mp = disp_sb_line(i, mp);
Bram Moolenaar773560b2006-05-06 21:38:18 +00002601 ++msg_scrolled;
2602 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002603 }
2604 scroll = 0;
2605 }
2606 }
2607 else
2608 {
2609 /* First display any text that we scrolled back. */
2610 while (scroll > 0 && mp_last != NULL)
2611 {
2612 /* scroll up, display line at bottom */
2613 msg_scroll_up();
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002614 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002615 screen_fill((int)Rows - 2, (int)Rows - 1, 0,
2616 (int)Columns, ' ', ' ', 0);
2617 mp_last = disp_sb_line((int)Rows - 2, mp_last);
2618 --scroll;
2619 }
2620 }
2621
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002622 if (scroll < 0 || (scroll == 0 && mp_last != NULL))
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002623 {
2624 /* displayed the requested text, more prompt again */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002625 screen_fill((int)Rows - 1, (int)Rows, 0,
2626 (int)Columns, ' ', ' ', 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002627 msg_moremsg(FALSE);
2628 continue;
2629 }
2630
2631 /* display more text, return to caller */
2632 lines_left = scroll;
2633 }
2634
2635 break;
2636 }
2637
2638 /* clear the --more-- message */
2639 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2640 State = oldState;
2641#ifdef FEAT_MOUSE
2642 setmouse();
2643#endif
2644 if (quit_more)
2645 {
2646 msg_row = Rows - 1;
2647 msg_col = 0;
2648 }
2649#ifdef FEAT_RIGHTLEFT
2650 else if (cmdmsg_rl)
2651 msg_col = Columns - 1;
2652#endif
2653
2654#ifdef FEAT_CON_DIALOG
2655 return retval;
2656#else
2657 return FALSE;
2658#endif
2659}
2660
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661#if defined(USE_MCH_ERRMSG) || defined(PROTO)
2662
2663#ifdef mch_errmsg
2664# undef mch_errmsg
2665#endif
2666#ifdef mch_msg
2667# undef mch_msg
2668#endif
2669
2670/*
2671 * Give an error message. To be used when the screen hasn't been initialized
2672 * yet. When stderr can't be used, collect error messages until the GUI has
2673 * started and they can be displayed in a message box.
2674 */
2675 void
2676mch_errmsg(str)
2677 char *str;
2678{
2679 int len;
2680
2681#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
2682 /* On Unix use stderr if it's a tty.
2683 * When not going to start the GUI also use stderr.
2684 * On Mac, when started from Finder, stderr is the console. */
2685 if (
2686# ifdef UNIX
2687# ifdef MACOS_X_UNIX
2688 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
2689# else
2690 isatty(2)
2691# endif
2692# ifdef FEAT_GUI
2693 ||
2694# endif
2695# endif
2696# ifdef FEAT_GUI
2697 !(gui.in_use || gui.starting)
2698# endif
2699 )
2700 {
2701 fprintf(stderr, "%s", str);
2702 return;
2703 }
2704#endif
2705
2706 /* avoid a delay for a message that isn't there */
2707 emsg_on_display = FALSE;
2708
2709 len = (int)STRLEN(str) + 1;
2710 if (error_ga.ga_growsize == 0)
2711 {
2712 error_ga.ga_growsize = 80;
2713 error_ga.ga_itemsize = 1;
2714 }
2715 if (ga_grow(&error_ga, len) == OK)
2716 {
2717 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len,
2718 (char_u *)str, len);
2719#ifdef UNIX
2720 /* remove CR characters, they are displayed */
2721 {
2722 char_u *p;
2723
2724 p = (char_u *)error_ga.ga_data + error_ga.ga_len;
2725 for (;;)
2726 {
2727 p = vim_strchr(p, '\r');
2728 if (p == NULL)
2729 break;
2730 *p = ' ';
2731 }
2732 }
2733#endif
2734 --len; /* don't count the NUL at the end */
2735 error_ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 }
2737}
2738
2739/*
2740 * Give a message. To be used when the screen hasn't been initialized yet.
2741 * When there is no tty, collect messages until the GUI has started and they
2742 * can be displayed in a message box.
2743 */
2744 void
2745mch_msg(str)
2746 char *str;
2747{
2748#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
2749 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and
2750 * uses mch_errmsg() when started from the desktop.
2751 * When not going to start the GUI also use stdout.
2752 * On Mac, when started from Finder, stderr is the console. */
2753 if (
2754# ifdef UNIX
2755# ifdef MACOS_X_UNIX
2756 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
2757# else
2758 isatty(2)
2759# endif
2760# ifdef FEAT_GUI
2761 ||
2762# endif
2763# endif
2764# ifdef FEAT_GUI
2765 !(gui.in_use || gui.starting)
2766# endif
2767 )
2768 {
2769 printf("%s", str);
2770 return;
2771 }
2772# endif
2773 mch_errmsg(str);
2774}
2775#endif /* USE_MCH_ERRMSG */
2776
2777/*
2778 * Put a character on the screen at the current message position and advance
2779 * to the next position. Only for printable ASCII!
2780 */
2781 static void
2782msg_screen_putchar(c, attr)
2783 int c;
2784 int attr;
2785{
2786 msg_didout = TRUE; /* remember that line is not empty */
2787 screen_putchar(c, msg_row, msg_col, attr);
2788#ifdef FEAT_RIGHTLEFT
2789 if (cmdmsg_rl)
2790 {
2791 if (--msg_col == 0)
2792 {
2793 msg_col = Columns;
2794 ++msg_row;
2795 }
2796 }
2797 else
2798#endif
2799 {
2800 if (++msg_col >= Columns)
2801 {
2802 msg_col = 0;
2803 ++msg_row;
2804 }
2805 }
2806}
2807
2808 void
2809msg_moremsg(full)
2810 int full;
2811{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002812 int attr;
2813 char_u *s = (char_u *)_("-- More --");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814
2815 attr = hl_attr(HLF_M);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002816 screen_puts(s, (int)Rows - 1, 0, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 if (full)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002818 screen_puts((char_u *)
2819 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "),
2820 (int)Rows - 1, vim_strsize(s), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821}
2822
2823/*
2824 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
2825 * exmode_active.
2826 */
2827 void
2828repeat_message()
2829{
2830 if (State == ASKMORE)
2831 {
2832 msg_moremsg(TRUE); /* display --more-- message again */
2833 msg_row = Rows - 1;
2834 }
2835#ifdef FEAT_CON_DIALOG
2836 else if (State == CONFIRM)
2837 {
2838 display_confirm_msg(); /* display ":confirm" message again */
2839 msg_row = Rows - 1;
2840 }
2841#endif
2842 else if (State == EXTERNCMD)
2843 {
2844 windgoto(msg_row, msg_col); /* put cursor back */
2845 }
2846 else if (State == HITRETURN || State == SETWSIZE)
2847 {
2848 hit_return_msg();
2849 msg_row = Rows - 1;
2850 }
2851}
2852
2853/*
2854 * msg_check_screen - check if the screen is initialized.
2855 * Also check msg_row and msg_col, if they are too big it may cause a crash.
2856 * While starting the GUI the terminal codes will be set for the GUI, but the
2857 * output goes to the terminal. Don't use the terminal codes then.
2858 */
2859 static int
2860msg_check_screen()
2861{
2862 if (!full_screen || !screen_valid(FALSE))
2863 return FALSE;
2864
2865 if (msg_row >= Rows)
2866 msg_row = Rows - 1;
2867 if (msg_col >= Columns)
2868 msg_col = Columns - 1;
2869 return TRUE;
2870}
2871
2872/*
2873 * Clear from current message position to end of screen.
2874 * Skip this when ":silent" was used, no need to clear for redirection.
2875 */
2876 void
2877msg_clr_eos()
2878{
2879 if (msg_silent == 0)
2880 msg_clr_eos_force();
2881}
2882
2883/*
2884 * Clear from current message position to end of screen.
2885 * Note: msg_col is not updated, so we remember the end of the message
2886 * for msg_check().
2887 */
2888 void
2889msg_clr_eos_force()
2890{
2891 if (msg_use_printf())
2892 {
2893 if (full_screen) /* only when termcap codes are valid */
2894 {
2895 if (*T_CD)
2896 out_str(T_CD); /* clear to end of display */
2897 else if (*T_CE)
2898 out_str(T_CE); /* clear to end of line */
2899 }
2900 }
2901 else
2902 {
2903#ifdef FEAT_RIGHTLEFT
2904 if (cmdmsg_rl)
2905 {
2906 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0);
2907 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2908 }
2909 else
2910#endif
2911 {
2912 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns,
2913 ' ', ' ', 0);
2914 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2915 }
2916 }
2917}
2918
2919/*
2920 * Clear the command line.
2921 */
2922 void
2923msg_clr_cmdline()
2924{
2925 msg_row = cmdline_row;
2926 msg_col = 0;
2927 msg_clr_eos_force();
2928}
2929
2930/*
2931 * end putting a message on the screen
2932 * call wait_return if the message does not fit in the available space
2933 * return TRUE if wait_return not called.
2934 */
2935 int
2936msg_end()
2937{
2938 /*
2939 * if the string is larger than the window,
2940 * or the ruler option is set and we run into it,
2941 * we have to redraw the window.
2942 * Do not do this if we are abandoning the file or editing the command line.
2943 */
2944 if (!exiting && need_wait_return && !(State & CMDLINE))
2945 {
2946 wait_return(FALSE);
2947 return FALSE;
2948 }
2949 out_flush();
2950 return TRUE;
2951}
2952
2953/*
2954 * If the written message runs into the shown command or ruler, we have to
2955 * wait for hit-return and redraw the window later.
2956 */
2957 void
2958msg_check()
2959{
2960 if (msg_row == Rows - 1 && msg_col >= sc_col)
2961 {
2962 need_wait_return = TRUE;
2963 redraw_cmdline = TRUE;
2964 }
2965}
2966
2967/*
2968 * May write a string to the redirection file.
2969 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
2970 */
2971 static void
2972redir_write(str, maxlen)
2973 char_u *str;
2974 int maxlen;
2975{
2976 char_u *s = str;
2977 static int cur_col = 0;
2978
Bram Moolenaar8b044b32005-05-31 22:05:58 +00002979 /* Don't do anything for displaying prompts and the like. */
2980 if (redir_off)
2981 return;
2982
2983 /*
2984 * If 'verbosefile' is set write message in that file.
2985 * Must come before the rest because of updating "msg_col".
2986 */
2987 if (*p_vfile != NUL)
2988 verbose_write(s, maxlen);
2989
2990 if (redir_fd != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991#ifdef FEAT_EVAL
Bram Moolenaardf177f62005-02-22 08:39:57 +00002992 || redir_reg || redir_vname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993#endif
Bram Moolenaar8b044b32005-05-31 22:05:58 +00002994 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 {
2996 /* If the string doesn't start with CR or NL, go to msg_col */
2997 if (*s != '\n' && *s != '\r')
2998 {
2999 while (cur_col < msg_col)
3000 {
3001#ifdef FEAT_EVAL
3002 if (redir_reg)
3003 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003004 else if (redir_vname)
3005 var_redir_str((char_u *)" ", -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006 else if (redir_fd)
3007#endif
3008 fputs(" ", redir_fd);
3009 ++cur_col;
3010 }
3011 }
3012
3013#ifdef FEAT_EVAL
3014 if (redir_reg)
3015 write_reg_contents(redir_reg, s, maxlen, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003016 if (redir_vname)
3017 var_redir_str(s, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018#endif
3019
3020 /* Adjust the current column */
3021 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3022 {
3023#ifdef FEAT_EVAL
Bram Moolenaardf177f62005-02-22 08:39:57 +00003024 if (!redir_reg && !redir_vname && redir_fd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025#endif
3026 putc(*s, redir_fd);
3027 if (*s == '\r' || *s == '\n')
3028 cur_col = 0;
3029 else if (*s == '\t')
3030 cur_col += (8 - cur_col % 8);
3031 else
3032 ++cur_col;
3033 ++s;
3034 }
3035
3036 if (msg_silent != 0) /* should update msg_col */
3037 msg_col = cur_col;
3038 }
3039}
3040
3041/*
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003042 * Before giving verbose messsage.
3043 * Must always be called paired with verbose_leave()!
3044 */
3045 void
3046verbose_enter()
3047{
3048 if (*p_vfile != NUL)
3049 ++msg_silent;
3050}
3051
3052/*
3053 * After giving verbose message.
3054 * Must always be called paired with verbose_enter()!
3055 */
3056 void
3057verbose_leave()
3058{
3059 if (*p_vfile != NUL)
3060 if (--msg_silent < 0)
3061 msg_silent = 0;
3062}
3063
3064/*
3065 * Like verbose_enter() and set msg_scroll when displaying the message.
3066 */
3067 void
3068verbose_enter_scroll()
3069{
3070 if (*p_vfile != NUL)
3071 ++msg_silent;
3072 else
3073 /* always scroll up, don't overwrite */
3074 msg_scroll = TRUE;
3075}
3076
3077/*
3078 * Like verbose_leave() and set cmdline_row when displaying the message.
3079 */
3080 void
3081verbose_leave_scroll()
3082{
3083 if (*p_vfile != NUL)
3084 {
3085 if (--msg_silent < 0)
3086 msg_silent = 0;
3087 }
3088 else
3089 cmdline_row = msg_row;
3090}
3091
3092static FILE *verbose_fd = NULL;
3093static int verbose_did_open = FALSE;
3094
3095/*
3096 * Called when 'verbosefile' is set: stop writing to the file.
3097 */
3098 void
3099verbose_stop()
3100{
3101 if (verbose_fd != NULL)
3102 {
3103 fclose(verbose_fd);
3104 verbose_fd = NULL;
3105 }
3106 verbose_did_open = FALSE;
3107}
3108
3109/*
3110 * Open the file 'verbosefile'.
3111 * Return FAIL or OK.
3112 */
3113 int
3114verbose_open()
3115{
3116 if (verbose_fd == NULL && !verbose_did_open)
3117 {
3118 /* Only give the error message once. */
3119 verbose_did_open = TRUE;
3120
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003121 verbose_fd = mch_fopen((char *)p_vfile, "a");
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003122 if (verbose_fd == NULL)
3123 {
3124 EMSG2(_(e_notopen), p_vfile);
3125 return FAIL;
3126 }
3127 }
3128 return OK;
3129}
3130
3131/*
3132 * Write a string to 'verbosefile'.
3133 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3134 */
3135 static void
3136verbose_write(str, maxlen)
3137 char_u *str;
3138 int maxlen;
3139{
3140 char_u *s = str;
3141 static int cur_col = 0;
3142
3143 /* Open the file when called the first time. */
3144 if (verbose_fd == NULL)
3145 verbose_open();
3146
3147 if (verbose_fd != NULL)
3148 {
3149 /* If the string doesn't start with CR or NL, go to msg_col */
3150 if (*s != '\n' && *s != '\r')
3151 {
3152 while (cur_col < msg_col)
3153 {
3154 fputs(" ", verbose_fd);
3155 ++cur_col;
3156 }
3157 }
3158
3159 /* Adjust the current column */
3160 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3161 {
3162 putc(*s, verbose_fd);
3163 if (*s == '\r' || *s == '\n')
3164 cur_col = 0;
3165 else if (*s == '\t')
3166 cur_col += (8 - cur_col % 8);
3167 else
3168 ++cur_col;
3169 ++s;
3170 }
3171 }
3172}
3173
3174/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 * Give a warning message (for searching).
3176 * Use 'w' highlighting and may repeat the message after redrawing
3177 */
3178 void
3179give_warning(message, hl)
3180 char_u *message;
3181 int hl;
3182{
3183 /* Don't do this for ":silent". */
3184 if (msg_silent != 0)
3185 return;
3186
3187 /* Don't want a hit-enter prompt here. */
3188 ++no_wait_return;
Bram Moolenaared203462004-06-16 11:19:22 +00003189
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190#ifdef FEAT_EVAL
3191 set_vim_var_string(VV_WARNINGMSG, message, -1);
3192#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 vim_free(keep_msg);
3194 keep_msg = NULL;
3195 if (hl)
3196 keep_msg_attr = hl_attr(HLF_W);
3197 else
3198 keep_msg_attr = 0;
3199 if (msg_attr(message, keep_msg_attr) && msg_scrolled == 0)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003200 set_keep_msg(message, keep_msg_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 msg_didout = FALSE; /* overwrite this message */
3202 msg_nowait = TRUE; /* don't wait for this message */
3203 msg_col = 0;
Bram Moolenaared203462004-06-16 11:19:22 +00003204
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 --no_wait_return;
3206}
3207
3208/*
3209 * Advance msg cursor to column "col".
3210 */
3211 void
3212msg_advance(col)
3213 int col;
3214{
3215 if (msg_silent != 0) /* nothing to advance to */
3216 {
3217 msg_col = col; /* for redirection, may fill it up later */
3218 return;
3219 }
3220 if (col >= Columns) /* not enough room */
3221 col = Columns - 1;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003222#ifdef FEAT_RIGHTLEFT
3223 if (cmdmsg_rl)
3224 while (msg_col > Columns - col)
3225 msg_putchar(' ');
3226 else
3227#endif
3228 while (msg_col < col)
3229 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230}
3231
3232#if defined(FEAT_CON_DIALOG) || defined(PROTO)
3233/*
3234 * Used for "confirm()" function, and the :confirm command prefix.
3235 * Versions which haven't got flexible dialogs yet, and console
3236 * versions, get this generic handler which uses the command line.
3237 *
3238 * type = one of:
3239 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC
3240 * title = title string (can be NULL for default)
3241 * (neither used in console dialogs at the moment)
3242 *
3243 * Format of the "buttons" string:
3244 * "Button1Name\nButton2Name\nButton3Name"
3245 * The first button should normally be the default/accept
3246 * The second button should be the 'Cancel' button
3247 * Other buttons- use your imagination!
3248 * A '&' in a button name becomes a shortcut, so each '&' should be before a
3249 * different letter.
3250 */
3251/* ARGSUSED */
3252 int
3253do_dialog(type, title, message, buttons, dfltbutton, textfield)
3254 int type;
3255 char_u *title;
3256 char_u *message;
3257 char_u *buttons;
3258 int dfltbutton;
3259 char_u *textfield; /* IObuff for inputdialog(), NULL otherwise */
3260{
3261 int oldState;
3262 int retval = 0;
3263 char_u *hotkeys;
3264 int c;
3265 int i;
3266
3267#ifndef NO_CONSOLE
3268 /* Don't output anything in silent mode ("ex -s") */
3269 if (silent_mode)
3270 return dfltbutton; /* return default option */
3271#endif
3272
3273#ifdef FEAT_GUI_DIALOG
3274 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */
3275 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
3276 {
3277 c = gui_mch_dialog(type, title, message, buttons, dfltbutton,
3278 textfield);
3279 msg_end_prompt();
3280
3281 /* Flush output to avoid that further messages and redrawing is done
3282 * in the wrong order. */
3283 out_flush();
3284 gui_mch_update();
3285
3286 return c;
3287 }
3288#endif
3289
3290 oldState = State;
3291 State = CONFIRM;
3292#ifdef FEAT_MOUSE
3293 setmouse();
3294#endif
3295
3296 /*
3297 * Since we wait for a keypress, don't make the
3298 * user press RETURN as well afterwards.
3299 */
3300 ++no_wait_return;
3301 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton);
3302
3303 if (hotkeys != NULL)
3304 {
3305 for (;;)
3306 {
3307 /* Get a typed character directly from the user. */
3308 c = get_keystroke();
3309 switch (c)
3310 {
3311 case CAR: /* User accepts default option */
3312 case NL:
3313 retval = dfltbutton;
3314 break;
3315 case Ctrl_C: /* User aborts/cancels */
3316 case ESC:
3317 retval = 0;
3318 break;
3319 default: /* Could be a hotkey? */
3320 if (c < 0) /* special keys are ignored here */
3321 continue;
3322 /* Make the character lowercase, as chars in "hotkeys" are. */
3323 c = MB_TOLOWER(c);
3324 retval = 1;
3325 for (i = 0; hotkeys[i]; ++i)
3326 {
3327#ifdef FEAT_MBYTE
3328 if (has_mbyte)
3329 {
3330 if ((*mb_ptr2char)(hotkeys + i) == c)
3331 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003332 i += (*mb_ptr2len)(hotkeys + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 }
3334 else
3335#endif
3336 if (hotkeys[i] == c)
3337 break;
3338 ++retval;
3339 }
3340 if (hotkeys[i])
3341 break;
3342 /* No hotkey match, so keep waiting */
3343 continue;
3344 }
3345 break;
3346 }
3347
3348 vim_free(hotkeys);
3349 }
3350
3351 State = oldState;
3352#ifdef FEAT_MOUSE
3353 setmouse();
3354#endif
3355 --no_wait_return;
3356 msg_end_prompt();
3357
3358 return retval;
3359}
3360
3361static int copy_char __ARGS((char_u *from, char_u *to, int lowercase));
3362
3363/*
3364 * Copy one character from "*from" to "*to", taking care of multi-byte
3365 * characters. Return the length of the character in bytes.
3366 */
3367 static int
3368copy_char(from, to, lowercase)
3369 char_u *from;
3370 char_u *to;
3371 int lowercase; /* make character lower case */
3372{
3373#ifdef FEAT_MBYTE
3374 int len;
3375 int c;
3376
3377 if (has_mbyte)
3378 {
3379 if (lowercase)
3380 {
3381 c = MB_TOLOWER((*mb_ptr2char)(from));
3382 return (*mb_char2bytes)(c, to);
3383 }
3384 else
3385 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003386 len = (*mb_ptr2len)(from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 mch_memmove(to, from, (size_t)len);
3388 return len;
3389 }
3390 }
3391 else
3392#endif
3393 {
3394 if (lowercase)
3395 *to = (char_u)TOLOWER_LOC(*from);
3396 else
3397 *to = *from;
3398 return 1;
3399 }
3400}
3401
3402/*
3403 * Format the dialog string, and display it at the bottom of
3404 * the screen. Return a string of hotkey chars (if defined) for
3405 * each 'button'. If a button has no hotkey defined, the first character of
3406 * the button is used.
3407 * The hotkeys can be multi-byte characters, but without combining chars.
3408 *
3409 * Returns an allocated string with hotkeys, or NULL for error.
3410 */
3411 static char_u *
3412msg_show_console_dialog(message, buttons, dfltbutton)
3413 char_u *message;
3414 char_u *buttons;
3415 int dfltbutton;
3416{
3417 int len = 0;
3418#ifdef FEAT_MBYTE
3419# define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1)
3420#else
3421# define HOTK_LEN 1
3422#endif
3423 int lenhotkey = HOTK_LEN; /* count first button */
3424 char_u *hotk = NULL;
3425 char_u *msgp = NULL;
3426 char_u *hotkp = NULL;
3427 char_u *r;
3428 int copy;
3429#define HAS_HOTKEY_LEN 30
3430 char_u has_hotkey[HAS_HOTKEY_LEN];
3431 int first_hotkey = FALSE; /* first char of button is hotkey */
3432 int idx;
3433
3434 has_hotkey[0] = FALSE;
3435
3436 /*
3437 * First loop: compute the size of memory to allocate.
3438 * Second loop: copy to the allocated memory.
3439 */
3440 for (copy = 0; copy <= 1; ++copy)
3441 {
3442 r = buttons;
3443 idx = 0;
3444 while (*r)
3445 {
3446 if (*r == DLG_BUTTON_SEP)
3447 {
3448 if (copy)
3449 {
3450 *msgp++ = ',';
3451 *msgp++ = ' '; /* '\n' -> ', ' */
3452
3453 /* advance to next hotkey and set default hotkey */
3454#ifdef FEAT_MBYTE
3455 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003456 hotkp += (*mb_ptr2len)(hotkp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 else
3458#endif
3459 ++hotkp;
3460 (void)copy_char(r + 1, hotkp, TRUE);
3461 if (dfltbutton)
3462 --dfltbutton;
3463
3464 /* If no hotkey is specified first char is used. */
3465 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx])
3466 first_hotkey = TRUE;
3467 }
3468 else
3469 {
3470 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */
3471 lenhotkey += HOTK_LEN; /* each button needs a hotkey */
3472 if (idx < HAS_HOTKEY_LEN - 1)
3473 has_hotkey[++idx] = FALSE;
3474 }
3475 }
3476 else if (*r == DLG_HOTKEY_CHAR || first_hotkey)
3477 {
3478 if (*r == DLG_HOTKEY_CHAR)
3479 ++r;
3480 first_hotkey = FALSE;
3481 if (copy)
3482 {
3483 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */
3484 *msgp++ = *r;
3485 else
3486 {
3487 /* '&a' -> '[a]' */
3488 *msgp++ = (dfltbutton == 1) ? '[' : '(';
3489 msgp += copy_char(r, msgp, FALSE);
3490 *msgp++ = (dfltbutton == 1) ? ']' : ')';
3491
3492 /* redefine hotkey */
3493 (void)copy_char(r, hotkp, TRUE);
3494 }
3495 }
3496 else
3497 {
3498 ++len; /* '&a' -> '[a]' */
3499 if (idx < HAS_HOTKEY_LEN - 1)
3500 has_hotkey[idx] = TRUE;
3501 }
3502 }
3503 else
3504 {
3505 /* everything else copy literally */
3506 if (copy)
3507 msgp += copy_char(r, msgp, FALSE);
3508 }
3509
3510 /* advance to the next character */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003511 mb_ptr_adv(r);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 }
3513
3514 if (copy)
3515 {
3516 *msgp++ = ':';
3517 *msgp++ = ' ';
3518 *msgp = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003519 mb_ptr_adv(hotkp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 *hotkp = NUL;
3521 }
3522 else
3523 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003524 len += (int)(STRLEN(message)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003525 + 2 /* for the NL's */
3526 + STRLEN(buttons)
3527 + 3); /* for the ": " and NUL */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003528 lenhotkey++; /* for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529
3530 /* If no hotkey is specified first char is used. */
3531 if (!has_hotkey[0])
3532 {
3533 first_hotkey = TRUE;
3534 len += 2; /* "x" -> "[x]" */
3535 }
3536
3537 /*
3538 * Now allocate and load the strings
3539 */
3540 vim_free(confirm_msg);
3541 confirm_msg = alloc(len);
3542 if (confirm_msg == NULL)
3543 return NULL;
3544 *confirm_msg = NUL;
3545 hotk = alloc(lenhotkey);
3546 if (hotk == NULL)
3547 return NULL;
3548
3549 *confirm_msg = '\n';
3550 STRCPY(confirm_msg + 1, message);
3551
3552 msgp = confirm_msg + 1 + STRLEN(message);
3553 hotkp = hotk;
3554
3555 /* define first default hotkey */
3556 (void)copy_char(buttons, hotkp, TRUE);
3557
3558 /* Remember where the choices start, displaying starts here when
3559 * "hotkp" typed at the more prompt. */
3560 confirm_msg_tail = msgp;
3561 *msgp++ = '\n';
3562 }
3563 }
3564
3565 display_confirm_msg();
3566 return hotk;
3567}
3568
3569/*
3570 * Display the ":confirm" message. Also called when screen resized.
3571 */
3572 void
3573display_confirm_msg()
3574{
3575 /* avoid that 'q' at the more prompt truncates the message here */
3576 ++confirm_msg_used;
3577 if (confirm_msg != NULL)
3578 msg_puts_attr(confirm_msg, hl_attr(HLF_M));
3579 --confirm_msg_used;
3580}
3581
3582#endif /* FEAT_CON_DIALOG */
3583
3584#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
3585
3586 int
3587vim_dialog_yesno(type, title, message, dflt)
3588 int type;
3589 char_u *title;
3590 char_u *message;
3591 int dflt;
3592{
3593 if (do_dialog(type,
3594 title == NULL ? (char_u *)_("Question") : title,
3595 message,
3596 (char_u *)_("&Yes\n&No"), dflt, NULL) == 1)
3597 return VIM_YES;
3598 return VIM_NO;
3599}
3600
3601 int
3602vim_dialog_yesnocancel(type, title, message, dflt)
3603 int type;
3604 char_u *title;
3605 char_u *message;
3606 int dflt;
3607{
3608 switch (do_dialog(type,
3609 title == NULL ? (char_u *)_("Question") : title,
3610 message,
3611 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL))
3612 {
3613 case 1: return VIM_YES;
3614 case 2: return VIM_NO;
3615 }
3616 return VIM_CANCEL;
3617}
3618
3619 int
3620vim_dialog_yesnoallcancel(type, title, message, dflt)
3621 int type;
3622 char_u *title;
3623 char_u *message;
3624 int dflt;
3625{
3626 switch (do_dialog(type,
3627 title == NULL ? (char_u *)"Question" : title,
3628 message,
3629 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"),
3630 dflt, NULL))
3631 {
3632 case 1: return VIM_YES;
3633 case 2: return VIM_NO;
3634 case 3: return VIM_ALL;
3635 case 4: return VIM_DISCARDALL;
3636 }
3637 return VIM_CANCEL;
3638}
3639
3640#endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */
3641
3642#if defined(FEAT_BROWSE) || defined(PROTO)
3643/*
3644 * Generic browse function. Calls gui_mch_browse() when possible.
3645 * Later this may pop-up a non-GUI file selector (external command?).
3646 */
3647 char_u *
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003648do_browse(flags, title, dflt, ext, initdir, filter, buf)
3649 int flags; /* BROWSE_SAVE and BROWSE_DIR */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 char_u *title; /* title for the window */
3651 char_u *dflt; /* default file name (may include directory) */
3652 char_u *ext; /* extension added */
3653 char_u *initdir; /* initial directory, NULL for current dir or
3654 when using path from "dflt" */
3655 char_u *filter; /* file name filter */
3656 buf_T *buf; /* buffer to read/write for */
3657{
3658 char_u *fname;
3659 static char_u *last_dir = NULL; /* last used directory */
3660 char_u *tofree = NULL;
3661 int save_browse = cmdmod.browse;
3662
3663 /* Must turn off browse to avoid that autocommands will get the
3664 * flag too! */
3665 cmdmod.browse = FALSE;
3666
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003667 if (title == NULL || *title == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003669 if (flags & BROWSE_DIR)
3670 title = (char_u *)_("Select Directory dialog");
3671 else if (flags & BROWSE_SAVE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 title = (char_u *)_("Save File dialog");
3673 else
3674 title = (char_u *)_("Open File dialog");
3675 }
3676
3677 /* When no directory specified, use default file name, default dir, buffer
3678 * dir, last dir or current dir */
3679 if ((initdir == NULL || *initdir == NUL) && dflt != NULL && *dflt != NUL)
3680 {
3681 if (mch_isdir(dflt)) /* default file name is a directory */
3682 {
3683 initdir = dflt;
3684 dflt = NULL;
3685 }
3686 else if (gettail(dflt) != dflt) /* default file name includes a path */
3687 {
3688 tofree = vim_strsave(dflt);
3689 if (tofree != NULL)
3690 {
3691 initdir = tofree;
3692 *gettail(initdir) = NUL;
3693 dflt = gettail(dflt);
3694 }
3695 }
3696 }
3697
3698 if (initdir == NULL || *initdir == NUL)
3699 {
3700 /* When 'browsedir' is a directory, use it */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003701 if (STRCMP(p_bsdir, "last") != 0
3702 && STRCMP(p_bsdir, "buffer") != 0
3703 && STRCMP(p_bsdir, "current") != 0
3704 && mch_isdir(p_bsdir))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 initdir = p_bsdir;
3706 /* When saving or 'browsedir' is "buffer", use buffer fname */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003707 else if (((flags & BROWSE_SAVE) || *p_bsdir == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 && buf != NULL && buf->b_ffname != NULL)
3709 {
3710 if (dflt == NULL || *dflt == NUL)
3711 dflt = gettail(curbuf->b_ffname);
3712 tofree = vim_strsave(curbuf->b_ffname);
3713 if (tofree != NULL)
3714 {
3715 initdir = tofree;
3716 *gettail(initdir) = NUL;
3717 }
3718 }
3719 /* When 'browsedir' is "last", use dir from last browse */
3720 else if (*p_bsdir == 'l')
3721 initdir = last_dir;
3722 /* When 'browsedir is "current", use current directory. This is the
3723 * default already, leave initdir empty. */
3724 }
3725
3726# ifdef FEAT_GUI
3727 if (gui.in_use) /* when this changes, also adjust f_has()! */
3728 {
3729 if (filter == NULL
3730# ifdef FEAT_EVAL
3731 && (filter = get_var_value((char_u *)"b:browsefilter")) == NULL
3732 && (filter = get_var_value((char_u *)"g:browsefilter")) == NULL
3733# endif
3734 )
3735 filter = BROWSE_FILTER_DEFAULT;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003736 if (flags & BROWSE_DIR)
3737 {
3738# if defined(HAVE_GTK2) || defined(WIN3264)
3739 /* For systems that have a directory dialog. */
3740 fname = gui_mch_browsedir(title, initdir);
3741# else
3742 /* Generic solution for selecting a directory: select a file and
3743 * remove the file name. */
3744 fname = gui_mch_browse(0, title, dflt, ext, initdir, (char_u *)"");
3745# endif
3746# if !defined(HAVE_GTK2)
3747 /* Win32 adds a dummy file name, others return an arbitrary file
3748 * name. GTK+ 2 returns only the directory, */
3749 if (fname != NULL && *fname != NUL && !mch_isdir(fname))
3750 {
3751 /* Remove the file name. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003752 char_u *tail = gettail_sep(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003753
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003754 if (tail == fname)
3755 *tail++ = '.'; /* use current dir */
3756 *tail = NUL;
3757 }
3758# endif
3759 }
3760 else
3761 fname = gui_mch_browse(flags & BROWSE_SAVE,
3762 title, dflt, ext, initdir, filter);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763
3764 /* We hang around in the dialog for a while, the user might do some
3765 * things to our files. The Win32 dialog allows deleting or renaming
3766 * a file, check timestamps. */
3767 need_check_timestamps = TRUE;
3768 did_check_timestamps = FALSE;
3769 }
3770 else
3771# endif
3772 {
3773 /* TODO: non-GUI file selector here */
3774 EMSG(_("E338: Sorry, no file browser in console mode"));
3775 fname = NULL;
3776 }
3777
3778 /* keep the directory for next time */
3779 if (fname != NULL)
3780 {
3781 vim_free(last_dir);
3782 last_dir = vim_strsave(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003783 if (last_dir != NULL && !(flags & BROWSE_DIR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 {
3785 *gettail(last_dir) = NUL;
3786 if (*last_dir == NUL)
3787 {
3788 /* filename only returned, must be in current dir */
3789 vim_free(last_dir);
3790 last_dir = alloc(MAXPATHL);
3791 if (last_dir != NULL)
3792 mch_dirname(last_dir, MAXPATHL);
3793 }
3794 }
3795 }
3796
3797 vim_free(tofree);
3798 cmdmod.browse = save_browse;
3799
3800 return fname;
3801}
3802#endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003803
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003804#if defined(HAVE_STDARG_H) && defined(FEAT_EVAL)
3805static char *e_printf = N_("E766: Insufficient arguments for printf()");
3806
3807static long tv_nr __ARGS((typval_T *tvs, int *idxp));
3808static char *tv_str __ARGS((typval_T *tvs, int *idxp));
3809
3810/*
3811 * Get number argument from "idxp" entry in "tvs". First entry is 1.
3812 */
3813 static long
3814tv_nr(tvs, idxp)
3815 typval_T *tvs;
3816 int *idxp;
3817{
3818 int idx = *idxp - 1;
3819 long n = 0;
3820 int err = FALSE;
3821
3822 if (tvs[idx].v_type == VAR_UNKNOWN)
3823 EMSG(_(e_printf));
3824 else
3825 {
3826 ++*idxp;
3827 n = get_tv_number_chk(&tvs[idx], &err);
3828 if (err)
3829 n = 0;
3830 }
3831 return n;
3832}
3833
3834/*
3835 * Get string argument from "idxp" entry in "tvs". First entry is 1.
Bram Moolenaar1e015462005-09-25 22:16:38 +00003836 * Returns NULL for an error.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003837 */
3838 static char *
3839tv_str(tvs, idxp)
3840 typval_T *tvs;
3841 int *idxp;
3842{
3843 int idx = *idxp - 1;
3844 char *s = NULL;
3845
3846 if (tvs[idx].v_type == VAR_UNKNOWN)
3847 EMSG(_(e_printf));
3848 else
3849 {
3850 ++*idxp;
3851 s = (char *)get_tv_string_chk(&tvs[idx]);
3852 }
3853 return s;
3854}
3855#endif
3856
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003857/*
3858 * This code was included to provide a portable vsnprintf() and snprintf().
Bram Moolenaara2031822006-03-07 22:29:51 +00003859 * Some systems may provide their own, but we always use this one for
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003860 * consistency.
3861 *
3862 * This code is based on snprintf.c - a portable implementation of snprintf
3863 * by Mark Martinec <mark.martinec@ijs.si>, Version 2.2, 2000-10-06.
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003864 * Included with permission. It was heavely modified to fit in Vim.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003865 * The original code, including useful comments, can be found here:
3866 * http://www.ijs.si/software/snprintf/
3867 *
3868 * This snprintf() only supports the following conversion specifiers:
3869 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
3870 * with flags: '-', '+', ' ', '0' and '#'.
3871 * An asterisk is supported for field width as well as precision.
3872 *
3873 * Length modifiers 'h' (short int) and 'l' (long int) are supported.
3874 * 'll' (long long int) is not supported.
3875 *
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00003876 * The locale is not used, the string is used as a byte string. This is only
3877 * relevant for double-byte encodings where the second byte may be '%'.
3878 *
Bram Moolenaara2031822006-03-07 22:29:51 +00003879 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL
3880 * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003881 *
3882 * The return value is the number of characters which would be generated
3883 * for the given input, excluding the trailing null. If this value
Bram Moolenaara2031822006-03-07 22:29:51 +00003884 * is greater or equal to "str_m", not all characters from the result
3885 * have been stored in str, output bytes beyond the ("str_m"-1) -th character
3886 * are discarded. If "str_m" is greater than zero it is guaranteed
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003887 * the resulting string will be null-terminated.
3888 */
3889
3890/*
3891 * When va_list is not supported we only define vim_snprintf().
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003892 *
3893 * vim_vsnprintf() can be invoked with either "va_list" or a list of
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00003894 * "typval_T". When the latter is not used it must be NULL.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003895 */
3896
3897/* When generating prototypes all of this is skipped, cproto doesn't
3898 * understand this. */
3899#ifndef PROTO
3900# ifdef HAVE_STDARG_H
3901 int
3902vim_snprintf(char *str, size_t str_m, char *fmt, ...)
3903{
3904 va_list ap;
3905 int str_l;
3906
3907 va_start(ap, fmt);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003908 str_l = vim_vsnprintf(str, str_m, fmt, ap, NULL);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003909 va_end(ap);
3910 return str_l;
3911}
3912
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003913 int
3914vim_vsnprintf(str, str_m, fmt, ap, tvs)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003915# else
3916 /* clumsy way to work around missing va_list */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003917# 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 +00003918
3919/* VARARGS */
3920 int
3921#ifdef __BORLANDC__
3922_RTLENTRYF
3923#endif
3924vim_snprintf(str, str_m, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
3925# endif
3926 char *str;
3927 size_t str_m;
3928 char *fmt;
3929# ifdef HAVE_STDARG_H
3930 va_list ap;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003931 typval_T *tvs;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003932# else
3933 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
3934# endif
3935{
3936 size_t str_l = 0;
3937 char *p = fmt;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003938 int arg_idx = 1;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003939
3940 if (p == NULL)
3941 p = "";
3942 while (*p != NUL)
3943 {
3944 if (*p != '%')
3945 {
3946 char *q = strchr(p + 1, '%');
3947 size_t n = (q == NULL) ? STRLEN(p) : (q - p);
3948
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00003949 /* Copy up to the next '%' or NUL without any changes. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003950 if (str_l < str_m)
3951 {
3952 size_t avail = str_m - str_l;
3953
3954 mch_memmove(str + str_l, p, n > avail ? avail : n);
3955 }
3956 p += n;
3957 str_l += n;
3958 }
3959 else
3960 {
3961 size_t min_field_width = 0, precision = 0;
3962 int zero_padding = 0, precision_specified = 0, justify_left = 0;
3963 int alternate_form = 0, force_sign = 0;
3964
3965 /* If both the ' ' and '+' flags appear, the ' ' flag should be
3966 * ignored. */
3967 int space_for_positive = 1;
3968
3969 /* allowed values: \0, h, l, L */
3970 char length_modifier = '\0';
3971
3972 /* temporary buffer for simple numeric->string conversion */
3973 char tmp[32];
3974
3975 /* string address in case of string argument */
3976 char *str_arg;
3977
3978 /* natural field width of arg without padding and sign */
3979 size_t str_arg_l;
3980
3981 /* unsigned char argument value - only defined for c conversion.
3982 * N.B. standard explicitly states the char argument for the c
3983 * conversion is unsigned */
3984 unsigned char uchar_arg;
3985
3986 /* number of zeros to be inserted for numeric conversions as
3987 * required by the precision or minimal field width */
3988 size_t number_of_zeros_to_pad = 0;
3989
3990 /* index into tmp where zero padding is to be inserted */
3991 size_t zero_padding_insertion_ind = 0;
3992
3993 /* current conversion specifier character */
3994 char fmt_spec = '\0';
3995
3996 str_arg = NULL;
3997 p++; /* skip '%' */
3998
3999 /* parse flags */
4000 while (*p == '0' || *p == '-' || *p == '+' || *p == ' '
4001 || *p == '#' || *p == '\'')
4002 {
4003 switch (*p)
4004 {
4005 case '0': zero_padding = 1; break;
4006 case '-': justify_left = 1; break;
4007 case '+': force_sign = 1; space_for_positive = 0; break;
4008 case ' ': force_sign = 1;
4009 /* If both the ' ' and '+' flags appear, the ' '
4010 * flag should be ignored */
4011 break;
4012 case '#': alternate_form = 1; break;
4013 case '\'': break;
4014 }
4015 p++;
4016 }
4017 /* If the '0' and '-' flags both appear, the '0' flag should be
4018 * ignored. */
4019
4020 /* parse field width */
4021 if (*p == '*')
4022 {
4023 int j;
4024
4025 p++;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004026 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004027#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004028 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004029#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004030# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004031 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004032# endif
4033 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004034#endif
4035 if (j >= 0)
4036 min_field_width = j;
4037 else
4038 {
4039 min_field_width = -j;
4040 justify_left = 1;
4041 }
4042 }
4043 else if (VIM_ISDIGIT((int)(*p)))
4044 {
4045 /* size_t could be wider than unsigned int; make sure we treat
4046 * argument like common implementations do */
4047 unsigned int uj = *p++ - '0';
4048
4049 while (VIM_ISDIGIT((int)(*p)))
4050 uj = 10 * uj + (unsigned int)(*p++ - '0');
4051 min_field_width = uj;
4052 }
4053
4054 /* parse precision */
4055 if (*p == '.')
4056 {
4057 p++;
4058 precision_specified = 1;
4059 if (*p == '*')
4060 {
4061 int j;
4062
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004063 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004064#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004065 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004066#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004067# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004068 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004069# endif
4070 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004071#endif
4072 p++;
4073 if (j >= 0)
4074 precision = j;
4075 else
4076 {
4077 precision_specified = 0;
4078 precision = 0;
4079 }
4080 }
4081 else if (VIM_ISDIGIT((int)(*p)))
4082 {
4083 /* size_t could be wider than unsigned int; make sure we
4084 * treat argument like common implementations do */
4085 unsigned int uj = *p++ - '0';
4086
4087 while (VIM_ISDIGIT((int)(*p)))
4088 uj = 10 * uj + (unsigned int)(*p++ - '0');
4089 precision = uj;
4090 }
4091 }
4092
4093 /* parse 'h', 'l' and 'll' length modifiers */
4094 if (*p == 'h' || *p == 'l')
4095 {
4096 length_modifier = *p;
4097 p++;
4098 if (length_modifier == 'l' && *p == 'l')
4099 {
4100 /* double l = long long */
4101 length_modifier = 'l'; /* treat it as a single 'l' */
4102 p++;
4103 }
4104 }
4105 fmt_spec = *p;
4106
4107 /* common synonyms: */
4108 switch (fmt_spec)
4109 {
4110 case 'i': fmt_spec = 'd'; break;
4111 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break;
4112 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break;
4113 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break;
4114 default: break;
4115 }
4116
4117 /* get parameter value, do initial processing */
4118 switch (fmt_spec)
4119 {
4120 /* '%' and 'c' behave similar to 's' regarding flags and field
4121 * widths */
4122 case '%':
4123 case 'c':
4124 case 's':
4125 length_modifier = '\0';
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004126 str_arg_l = 1;
4127 switch (fmt_spec)
4128 {
4129 case '%':
4130 str_arg = p;
4131 break;
4132
4133 case 'c':
4134 {
4135 int j;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004136
4137 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004138#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004139 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004140#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004141# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004142 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004143# endif
4144 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004145#endif
4146 /* standard demands unsigned char */
4147 uchar_arg = (unsigned char)j;
4148 str_arg = (char *)&uchar_arg;
4149 break;
4150 }
4151
4152 case 's':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004153 str_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004154#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004155 (char *)get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004156#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004157# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004158 tvs != NULL ? tv_str(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004159# endif
4160 va_arg(ap, char *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004161#endif
4162 if (str_arg == NULL)
4163 {
4164 str_arg = "[NULL]";
4165 str_arg_l = 6;
4166 }
4167 /* make sure not to address string beyond the specified
4168 * precision !!! */
4169 else if (!precision_specified)
4170 str_arg_l = strlen(str_arg);
4171 /* truncate string if necessary as requested by precision */
4172 else if (precision == 0)
4173 str_arg_l = 0;
4174 else
4175 {
Bram Moolenaar223b4312006-05-13 11:09:22 +00004176 /* Don't put the #if inside memchr(), it can be a
4177 * macro. */
4178#if SIZEOF_INT <= 2
4179 char *q = memchr(str_arg, '\0', precision);
4180#else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004181 /* memchr on HP does not like n > 2^31 !!! */
4182 char *q = memchr(str_arg, '\0',
Bram Moolenaar223b4312006-05-13 11:09:22 +00004183 precision <= (size_t)0x7fffffffL ? precision
4184 : (size_t)0x7fffffffL);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004185#endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004186 str_arg_l = (q == NULL) ? precision : q - str_arg;
4187 }
4188 break;
4189
4190 default:
4191 break;
4192 }
4193 break;
4194
4195 case 'd': case 'u': case 'o': case 'x': case 'X': case 'p':
4196 {
4197 /* NOTE: the u, o, x, X and p conversion specifiers
4198 * imply the value is unsigned; d implies a signed
4199 * value */
4200
4201 /* 0 if numeric argument is zero (or if pointer is
4202 * NULL for 'p'), +1 if greater than zero (or nonzero
4203 * for unsigned arguments), -1 if negative (unsigned
4204 * argument is never negative) */
4205 int arg_sign = 0;
4206
4207 /* only defined for length modifier h, or for no
4208 * length modifiers */
4209 int int_arg = 0;
4210 unsigned int uint_arg = 0;
4211
4212 /* only defined for length modifier l */
4213 long int long_arg = 0;
4214 unsigned long int ulong_arg = 0;
4215
4216 /* pointer argument value -only defined for p
4217 * conversion */
4218 void *ptr_arg = NULL;
4219
4220 if (fmt_spec == 'p')
4221 {
4222 length_modifier = '\0';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004223 ptr_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004224#ifndef HAVE_STDARG_H
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004225 (void *)get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004226#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004227# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004228 tvs != NULL ? (void *)tv_str(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004229# endif
4230 va_arg(ap, void *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004231#endif
4232 if (ptr_arg != NULL)
4233 arg_sign = 1;
4234 }
4235 else if (fmt_spec == 'd')
4236 {
4237 /* signed */
4238 switch (length_modifier)
4239 {
4240 case '\0':
4241 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004242 /* char and short arguments are passed as int. */
4243 int_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004244#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004245 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004246#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004247# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004248 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004249# endif
4250 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004251#endif
4252 if (int_arg > 0)
4253 arg_sign = 1;
4254 else if (int_arg < 0)
4255 arg_sign = -1;
4256 break;
4257 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004258 long_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004259#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004260 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004261#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004262# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004263 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004264# endif
4265 va_arg(ap, long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004266#endif
4267 if (long_arg > 0)
4268 arg_sign = 1;
4269 else if (long_arg < 0)
4270 arg_sign = -1;
4271 break;
4272 }
4273 }
4274 else
4275 {
4276 /* unsigned */
4277 switch (length_modifier)
4278 {
4279 case '\0':
4280 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004281 uint_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004282#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004283 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004284#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004285# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004286 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004287# endif
4288 va_arg(ap, unsigned int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004289#endif
4290 if (uint_arg != 0)
4291 arg_sign = 1;
4292 break;
4293 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004294 ulong_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004295#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004296 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004297#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004298# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004299 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004300# endif
4301 va_arg(ap, unsigned long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004302#endif
4303 if (ulong_arg != 0)
4304 arg_sign = 1;
4305 break;
4306 }
4307 }
4308
4309 str_arg = tmp;
4310 str_arg_l = 0;
4311
4312 /* NOTE:
4313 * For d, i, u, o, x, and X conversions, if precision is
4314 * specified, the '0' flag should be ignored. This is so
4315 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux,
4316 * FreeBSD, NetBSD; but not with Perl.
4317 */
4318 if (precision_specified)
4319 zero_padding = 0;
4320 if (fmt_spec == 'd')
4321 {
4322 if (force_sign && arg_sign >= 0)
4323 tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
4324 /* leave negative numbers for sprintf to handle, to
4325 * avoid handling tricky cases like (short int)-32768 */
4326 }
4327 else if (alternate_form)
4328 {
4329 if (arg_sign != 0
4330 && (fmt_spec == 'x' || fmt_spec == 'X') )
4331 {
4332 tmp[str_arg_l++] = '0';
4333 tmp[str_arg_l++] = fmt_spec;
4334 }
4335 /* alternate form should have no effect for p
4336 * conversion, but ... */
4337 }
4338
4339 zero_padding_insertion_ind = str_arg_l;
4340 if (!precision_specified)
4341 precision = 1; /* default precision is 1 */
4342 if (precision == 0 && arg_sign == 0)
4343 {
4344 /* When zero value is formatted with an explicit
4345 * precision 0, the resulting formatted string is
4346 * empty (d, i, u, o, x, X, p). */
4347 }
4348 else
4349 {
4350 char f[5];
4351 int f_l = 0;
4352
4353 /* construct a simple format string for sprintf */
4354 f[f_l++] = '%';
4355 if (!length_modifier)
4356 ;
4357 else if (length_modifier == '2')
4358 {
4359 f[f_l++] = 'l';
4360 f[f_l++] = 'l';
4361 }
4362 else
4363 f[f_l++] = length_modifier;
4364 f[f_l++] = fmt_spec;
4365 f[f_l++] = '\0';
4366
4367 if (fmt_spec == 'p')
4368 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg);
4369 else if (fmt_spec == 'd')
4370 {
4371 /* signed */
4372 switch (length_modifier)
4373 {
4374 case '\0':
4375 case 'h': str_arg_l += sprintf(
4376 tmp + str_arg_l, f, int_arg);
4377 break;
4378 case 'l': str_arg_l += sprintf(
4379 tmp + str_arg_l, f, long_arg);
4380 break;
4381 }
4382 }
4383 else
4384 {
4385 /* unsigned */
4386 switch (length_modifier)
4387 {
4388 case '\0':
4389 case 'h': str_arg_l += sprintf(
4390 tmp + str_arg_l, f, uint_arg);
4391 break;
4392 case 'l': str_arg_l += sprintf(
4393 tmp + str_arg_l, f, ulong_arg);
4394 break;
4395 }
4396 }
4397
4398 /* include the optional minus sign and possible
4399 * "0x" in the region before the zero padding
4400 * insertion point */
4401 if (zero_padding_insertion_ind < str_arg_l
4402 && tmp[zero_padding_insertion_ind] == '-')
4403 zero_padding_insertion_ind++;
4404 if (zero_padding_insertion_ind + 1 < str_arg_l
4405 && tmp[zero_padding_insertion_ind] == '0'
4406 && (tmp[zero_padding_insertion_ind + 1] == 'x'
4407 || tmp[zero_padding_insertion_ind + 1] == 'X'))
4408 zero_padding_insertion_ind += 2;
4409 }
4410
4411 {
4412 size_t num_of_digits = str_arg_l
4413 - zero_padding_insertion_ind;
4414
4415 if (alternate_form && fmt_spec == 'o'
4416 /* unless zero is already the first
4417 * character */
4418 && !(zero_padding_insertion_ind < str_arg_l
4419 && tmp[zero_padding_insertion_ind] == '0'))
4420 {
4421 /* assure leading zero for alternate-form
4422 * octal numbers */
4423 if (!precision_specified
4424 || precision < num_of_digits + 1)
4425 {
4426 /* precision is increased to force the
4427 * first character to be zero, except if a
4428 * zero value is formatted with an
4429 * explicit precision of zero */
4430 precision = num_of_digits + 1;
4431 precision_specified = 1;
4432 }
4433 }
4434 /* zero padding to specified precision? */
4435 if (num_of_digits < precision)
4436 number_of_zeros_to_pad = precision - num_of_digits;
4437 }
4438 /* zero padding to specified minimal field width? */
4439 if (!justify_left && zero_padding)
4440 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004441 int n = (int)(min_field_width - (str_arg_l
4442 + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004443 if (n > 0)
4444 number_of_zeros_to_pad += n;
4445 }
4446 break;
4447 }
4448
4449 default:
4450 /* unrecognized conversion specifier, keep format string
4451 * as-is */
4452 zero_padding = 0; /* turn zero padding off for non-numeric
4453 convers. */
4454 justify_left = 1;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004455 min_field_width = 0; /* reset flags */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004456
4457 /* discard the unrecognized conversion, just keep *
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004458 * the unrecognized conversion character */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004459 str_arg = p;
4460 str_arg_l = 0;
4461 if (*p != NUL)
4462 str_arg_l++; /* include invalid conversion specifier
4463 unchanged if not at end-of-string */
4464 break;
4465 }
4466
4467 if (*p != NUL)
4468 p++; /* step over the just processed conversion specifier */
4469
4470 /* insert padding to the left as requested by min_field_width;
4471 * this does not include the zero padding in case of numerical
4472 * conversions*/
4473 if (!justify_left)
4474 {
4475 /* left padding with blank or zero */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004476 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004477
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004478 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004479 {
4480 if (str_l < str_m)
4481 {
4482 size_t avail = str_m - str_l;
4483
4484 vim_memset(str + str_l, zero_padding ? '0' : ' ',
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004485 (size_t)pn > avail ? avail : pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004486 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004487 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004488 }
4489 }
4490
4491 /* zero padding as requested by the precision or by the minimal
4492 * field width for numeric conversions required? */
Bram Moolenaarea424162005-06-16 21:51:00 +00004493 if (number_of_zeros_to_pad == 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004494 {
4495 /* will not copy first part of numeric right now, *
4496 * force it to be copied later in its entirety */
4497 zero_padding_insertion_ind = 0;
4498 }
4499 else
4500 {
4501 /* insert first part of numerics (sign or '0x') before zero
4502 * padding */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004503 int zn = (int)zero_padding_insertion_ind;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004504
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004505 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004506 {
4507 if (str_l < str_m)
4508 {
4509 size_t avail = str_m - str_l;
4510
4511 mch_memmove(str + str_l, str_arg,
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004512 (size_t)zn > avail ? avail : zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004513 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004514 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004515 }
4516
4517 /* insert zero padding as requested by the precision or min
4518 * field width */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004519 zn = (int)number_of_zeros_to_pad;
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004520 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004521 {
4522 if (str_l < str_m)
4523 {
4524 size_t avail = str_m-str_l;
4525
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004526 vim_memset(str + str_l, '0',
4527 (size_t)zn > avail ? avail : zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004528 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004529 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004530 }
4531 }
4532
4533 /* insert formatted string
4534 * (or as-is conversion specifier for unknown conversions) */
4535 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004536 int sn = (int)(str_arg_l - zero_padding_insertion_ind);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004537
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004538 if (sn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004539 {
4540 if (str_l < str_m)
4541 {
4542 size_t avail = str_m - str_l;
4543
4544 mch_memmove(str + str_l,
4545 str_arg + zero_padding_insertion_ind,
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004546 (size_t)sn > avail ? avail : sn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004547 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004548 str_l += sn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004549 }
4550 }
4551
4552 /* insert right padding */
4553 if (justify_left)
4554 {
4555 /* right blank padding to the field width */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004556 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004557
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004558 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004559 {
4560 if (str_l < str_m)
4561 {
4562 size_t avail = str_m - str_l;
4563
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004564 vim_memset(str + str_l, ' ',
4565 (size_t)pn > avail ? avail : pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004566 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004567 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004568 }
4569 }
4570 }
4571 }
4572
4573 if (str_m > 0)
4574 {
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004575 /* make sure the string is nul-terminated even at the expense of
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004576 * overwriting the last character (shouldn't happen, but just in case)
4577 * */
4578 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0';
4579 }
4580
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004581#ifdef HAVE_STDARG_H
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004582 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004583 EMSG(_("E767: Too many arguments to printf()"));
4584#endif
4585
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004586 /* Return the number of characters formatted (excluding trailing nul
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004587 * character), that is, the number of characters that would have been
4588 * written to the buffer if it were large enough. */
4589 return (int)str_l;
4590}
4591
4592#endif /* PROTO */