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