blob: c67d47d984374de0536df853187cf42fe78aab1d [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 /* Put the character back in the typeahead buffer. Don't use the
1008 * stuff buffer, because lmaps wouldn't work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001009 ins_char_typebuf(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 do_redraw = TRUE; /* need a redraw even though there is
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001011 typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 }
1014 redir_off = FALSE;
1015
1016 /*
1017 * If the user hits ':', '?' or '/' we get a command line from the next
1018 * line.
1019 */
1020 if (c == ':' || c == '?' || c == '/')
1021 {
1022 if (!exmode_active)
1023 cmdline_row = msg_row;
1024 skip_redraw = TRUE; /* skip redraw once */
1025 do_redraw = FALSE;
1026 }
1027
1028 /*
1029 * If the window size changed set_shellsize() will redraw the screen.
1030 * Otherwise the screen is only redrawn if 'redraw' is set and no ':'
1031 * typed.
1032 */
1033 tmpState = State;
1034 State = oldState; /* restore State before set_shellsize */
1035#ifdef FEAT_MOUSE
1036 setmouse();
1037#endif
1038 msg_check();
1039
1040#if defined(UNIX) || defined(VMS)
1041 /*
1042 * When switching screens, we need to output an extra newline on exit.
1043 */
1044 if (swapping_screen() && !termcap_active)
1045 newline_on_exit = TRUE;
1046#endif
1047
1048 need_wait_return = FALSE;
1049 did_wait_return = TRUE;
1050 emsg_on_display = FALSE; /* can delete error message now */
1051 lines_left = -1; /* reset lines_left at next msg_start() */
1052 reset_last_sourcing();
1053 if (keep_msg != NULL && vim_strsize(keep_msg) >=
1054 (Rows - cmdline_row - 1) * Columns + sc_col)
1055 {
1056 vim_free(keep_msg);
1057 keep_msg = NULL; /* don't redisplay message, it's too long */
1058 }
1059
1060 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */
1061 {
1062 starttermcap(); /* start termcap before redrawing */
1063 shell_resized();
1064 }
1065 else if (!skip_redraw
1066 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1)))
1067 {
1068 starttermcap(); /* start termcap before redrawing */
1069 redraw_later(VALID);
1070 }
1071}
1072
1073/*
1074 * Write the hit-return prompt.
1075 */
1076 static void
1077hit_return_msg()
1078{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001079 int save_p_more = p_more;
1080
1081 p_more = FALSE; /* don't want see this message when scrolling back */
1082 if (msg_didout) /* start on a new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 msg_putchar('\n');
1084 if (got_int)
1085 MSG_PUTS(_("Interrupt: "));
1086
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001087 MSG_PUTS_ATTR(_("Press ENTER or type command to continue"), hl_attr(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 if (!msg_use_printf())
1089 msg_clr_eos();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001090 p_more = save_p_more;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091}
1092
1093/*
1094 * Set "keep_msg" to "s". Free the old value and check for NULL pointer.
1095 */
1096 void
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001097set_keep_msg(s, attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 char_u *s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001099 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100{
1101 vim_free(keep_msg);
1102 if (s != NULL && msg_silent == 0)
1103 keep_msg = vim_strsave(s);
1104 else
1105 keep_msg = NULL;
Bram Moolenaaraab21c32005-01-25 21:46:35 +00001106 keep_msg_more = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001107 keep_msg_attr = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108}
1109
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001110#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1111/*
1112 * If there currently is a message being displayed, set "keep_msg" to it, so
1113 * that it will be displayed again after redraw.
1114 */
1115 void
1116set_keep_msg_from_hist()
1117{
1118 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0
1119 && (State & NORMAL))
1120 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr);
1121}
1122#endif
1123
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124/*
1125 * Prepare for outputting characters in the command line.
1126 */
1127 void
1128msg_start()
1129{
1130 int did_return = FALSE;
1131
1132 vim_free(keep_msg);
1133 keep_msg = NULL; /* don't display old message now */
1134 if (!msg_scroll && full_screen) /* overwrite last message */
1135 {
1136 msg_row = cmdline_row;
1137 msg_col =
1138#ifdef FEAT_RIGHTLEFT
1139 cmdmsg_rl ? Columns - 1 :
1140#endif
1141 0;
1142 }
1143 else if (msg_didout) /* start message on next line */
1144 {
1145 msg_putchar('\n');
1146 did_return = TRUE;
1147 if (exmode_active != EXMODE_NORMAL)
1148 cmdline_row = msg_row;
1149 }
1150 if (!msg_didany || lines_left < 0)
1151 msg_starthere();
1152 if (msg_silent == 0)
1153 {
1154 msg_didout = FALSE; /* no output on current line yet */
1155 cursor_off();
1156 }
1157
1158 /* when redirecting, may need to start a new line. */
1159 if (!did_return)
1160 redir_write((char_u *)"\n", -1);
1161}
1162
1163/*
1164 * Note that the current msg position is where messages start.
1165 */
1166 void
1167msg_starthere()
1168{
1169 lines_left = cmdline_row;
1170 msg_didany = FALSE;
1171}
1172
1173 void
1174msg_putchar(c)
1175 int c;
1176{
1177 msg_putchar_attr(c, 0);
1178}
1179
1180 void
1181msg_putchar_attr(c, attr)
1182 int c;
1183 int attr;
1184{
1185#ifdef FEAT_MBYTE
1186 char_u buf[MB_MAXBYTES + 1];
1187#else
1188 char_u buf[4];
1189#endif
1190
1191 if (IS_SPECIAL(c))
1192 {
1193 buf[0] = K_SPECIAL;
1194 buf[1] = K_SECOND(c);
1195 buf[2] = K_THIRD(c);
1196 buf[3] = NUL;
1197 }
1198 else
1199 {
1200#ifdef FEAT_MBYTE
1201 buf[(*mb_char2bytes)(c, buf)] = NUL;
1202#else
1203 buf[0] = c;
1204 buf[1] = NUL;
1205#endif
1206 }
1207 msg_puts_attr(buf, attr);
1208}
1209
1210 void
1211msg_outnum(n)
1212 long n;
1213{
1214 char_u buf[20];
1215
1216 sprintf((char *)buf, "%ld", n);
1217 msg_puts(buf);
1218}
1219
1220 void
1221msg_home_replace(fname)
1222 char_u *fname;
1223{
1224 msg_home_replace_attr(fname, 0);
1225}
1226
1227#if defined(FEAT_FIND_ID) || defined(PROTO)
1228 void
1229msg_home_replace_hl(fname)
1230 char_u *fname;
1231{
1232 msg_home_replace_attr(fname, hl_attr(HLF_D));
1233}
1234#endif
1235
1236 static void
1237msg_home_replace_attr(fname, attr)
1238 char_u *fname;
1239 int attr;
1240{
1241 char_u *name;
1242
1243 name = home_replace_save(NULL, fname);
1244 if (name != NULL)
1245 msg_outtrans_attr(name, attr);
1246 vim_free(name);
1247}
1248
1249/*
1250 * Output 'len' characters in 'str' (including NULs) with translation
1251 * if 'len' is -1, output upto a NUL character.
1252 * Use attributes 'attr'.
1253 * Return the number of characters it takes on the screen.
1254 */
1255 int
1256msg_outtrans(str)
1257 char_u *str;
1258{
1259 return msg_outtrans_attr(str, 0);
1260}
1261
1262 int
1263msg_outtrans_attr(str, attr)
1264 char_u *str;
1265 int attr;
1266{
1267 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr);
1268}
1269
1270 int
1271msg_outtrans_len(str, len)
1272 char_u *str;
1273 int len;
1274{
1275 return msg_outtrans_len_attr(str, len, 0);
1276}
1277
1278/*
1279 * Output one character at "p". Return pointer to the next character.
1280 * Handles multi-byte characters.
1281 */
1282 char_u *
1283msg_outtrans_one(p, attr)
1284 char_u *p;
1285 int attr;
1286{
1287#ifdef FEAT_MBYTE
1288 int l;
1289
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001290 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 {
1292 msg_outtrans_len_attr(p, l, attr);
1293 return p + l;
1294 }
1295#endif
1296 msg_puts_attr(transchar_byte(*p), attr);
1297 return p + 1;
1298}
1299
1300 int
1301msg_outtrans_len_attr(msgstr, len, attr)
1302 char_u *msgstr;
1303 int len;
1304 int attr;
1305{
1306 int retval = 0;
1307 char_u *str = msgstr;
1308 char_u *plain_start = msgstr;
1309 char_u *s;
1310#ifdef FEAT_MBYTE
1311 int mb_l;
1312 int c;
1313#endif
1314
1315 /* if MSG_HIST flag set, add message to history */
1316 if (attr & MSG_HIST)
1317 {
1318 add_msg_hist(str, len, attr);
1319 attr &= ~MSG_HIST;
1320 }
1321
1322#ifdef FEAT_MBYTE
1323 /* If the string starts with a composing character first draw a space on
1324 * which the composing char can be drawn. */
1325 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr)))
1326 msg_puts_attr((char_u *)" ", attr);
1327#endif
1328
1329 /*
1330 * Go over the string. Special characters are translated and printed.
1331 * Normal characters are printed several at a time.
1332 */
1333 while (--len >= 0)
1334 {
1335#ifdef FEAT_MBYTE
1336 if (enc_utf8)
1337 /* Don't include composing chars after the end. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001338 mb_l = utfc_ptr2len_len(str, len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001340 mb_l = (*mb_ptr2len)(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 else
1342 mb_l = 1;
1343 if (has_mbyte && mb_l > 1)
1344 {
1345 c = (*mb_ptr2char)(str);
1346 if (vim_isprintc(c))
1347 /* printable multi-byte char: count the cells. */
1348 retval += (*mb_ptr2cells)(str);
1349 else
1350 {
1351 /* unprintable multi-byte char: print the printable chars so
1352 * far and the translation of the unprintable char. */
1353 if (str > plain_start)
1354 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1355 attr);
1356 plain_start = str + mb_l;
1357 msg_puts_attr(transchar(c), attr == 0 ? hl_attr(HLF_8) : attr);
1358 retval += char2cells(c);
1359 }
1360 len -= mb_l - 1;
1361 str += mb_l;
1362 }
1363 else
1364#endif
1365 {
1366 s = transchar_byte(*str);
1367 if (s[1] != NUL)
1368 {
1369 /* unprintable char: print the printable chars so far and the
1370 * translation of the unprintable char. */
1371 if (str > plain_start)
1372 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1373 attr);
1374 plain_start = str + 1;
1375 msg_puts_attr(s, attr == 0 ? hl_attr(HLF_8) : attr);
1376 }
1377 retval += ptr2cells(str);
1378 ++str;
1379 }
1380 }
1381
1382 if (str > plain_start)
1383 /* print the printable chars at the end */
1384 msg_puts_attr_len(plain_start, (int)(str - plain_start), attr);
1385
1386 return retval;
1387}
1388
1389#if defined(FEAT_QUICKFIX) || defined(PROTO)
1390 void
1391msg_make(arg)
1392 char_u *arg;
1393{
1394 int i;
1395 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB";
1396
1397 arg = skipwhite(arg);
1398 for (i = 5; *arg && i >= 0; --i)
1399 if (*arg++ != str[i])
1400 break;
1401 if (i < 0)
1402 {
1403 msg_putchar('\n');
1404 for (i = 0; rs[i]; ++i)
1405 msg_putchar(rs[i] - 3);
1406 }
1407}
1408#endif
1409
1410/*
1411 * Output the string 'str' upto a NUL character.
1412 * Return the number of characters it takes on the screen.
1413 *
1414 * If K_SPECIAL is encountered, then it is taken in conjunction with the
1415 * following character and shown as <F1>, <S-Up> etc. Any other character
1416 * which is not printable shown in <> form.
1417 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>.
1418 * If a character is displayed in one of these special ways, is also
1419 * highlighted (its highlight name is '8' in the p_hl variable).
1420 * Otherwise characters are not highlighted.
1421 * This function is used to show mappings, where we want to see how to type
1422 * the character/string -- webb
1423 */
1424 int
1425msg_outtrans_special(strstart, from)
1426 char_u *strstart;
1427 int from; /* TRUE for lhs of a mapping */
1428{
1429 char_u *str = strstart;
1430 int retval = 0;
1431 char_u *string;
1432 int attr;
1433 int len;
1434
1435 attr = hl_attr(HLF_8);
1436 while (*str != NUL)
1437 {
1438 /* Leading and trailing spaces need to be displayed in <> form. */
1439 if ((str == strstart || str[1] == NUL) && *str == ' ')
1440 {
1441 string = (char_u *)"<Space>";
1442 ++str;
1443 }
1444 else
1445 string = str2special(&str, from);
1446 len = vim_strsize(string);
1447 /* Highlight special keys */
1448 msg_puts_attr(string, len > 1
1449#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001450 && (*mb_ptr2len)(string) <= 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451#endif
1452 ? attr : 0);
1453 retval += len;
1454 }
1455 return retval;
1456}
1457
1458/*
1459 * Return the printable string for the key codes at "*sp".
1460 * Used for translating the lhs or rhs of a mapping to printable chars.
1461 * Advances "sp" to the next code.
1462 */
1463 char_u *
1464str2special(sp, from)
1465 char_u **sp;
1466 int from; /* TRUE for lhs of mapping */
1467{
1468 int c;
1469 static char_u buf[7];
1470 char_u *str = *sp;
1471 int modifiers = 0;
1472 int special = FALSE;
1473
1474#ifdef FEAT_MBYTE
1475 if (has_mbyte)
1476 {
1477 char_u *p;
1478
1479 /* Try to un-escape a multi-byte character. Return the un-escaped
1480 * string if it is a multi-byte character. */
1481 p = mb_unescape(sp);
1482 if (p != NULL)
1483 return p;
1484 }
1485#endif
1486
1487 c = *str;
1488 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1489 {
1490 if (str[1] == KS_MODIFIER)
1491 {
1492 modifiers = str[2];
1493 str += 3;
1494 c = *str;
1495 }
1496 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1497 {
1498 c = TO_SPECIAL(str[1], str[2]);
1499 str += 2;
1500 if (c == K_ZERO) /* display <Nul> as ^@ */
1501 c = NUL;
1502 }
1503 if (IS_SPECIAL(c) || modifiers) /* special key */
1504 special = TRUE;
1505 }
1506 *sp = str + 1;
1507
1508#ifdef FEAT_MBYTE
1509 /* For multi-byte characters check for an illegal byte. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001510 if (has_mbyte && MB_BYTE2LEN(*str) > (*mb_ptr2len)(str))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 {
1512 transchar_nonprint(buf, c);
1513 return buf;
1514 }
1515#endif
1516
1517 /* Make unprintable characters in <> form, also <M-Space> and <Tab>.
1518 * Use <Space> only for lhs of a mapping. */
1519 if (special || char2cells(c) > 1 || (from && c == ' '))
1520 return get_special_key_name(c, modifiers);
1521 buf[0] = c;
1522 buf[1] = NUL;
1523 return buf;
1524}
1525
1526/*
1527 * Translate a key sequence into special key names.
1528 */
1529 void
1530str2specialbuf(sp, buf, len)
1531 char_u *sp;
1532 char_u *buf;
1533 int len;
1534{
1535 char_u *s;
1536
1537 *buf = NUL;
1538 while (*sp)
1539 {
1540 s = str2special(&sp, FALSE);
1541 if ((int)(STRLEN(s) + STRLEN(buf)) < len)
1542 STRCAT(buf, s);
1543 }
1544}
1545
1546/*
1547 * print line for :print or :list command
1548 */
1549 void
Bram Moolenaardf177f62005-02-22 08:39:57 +00001550msg_prt_line(s, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 char_u *s;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001552 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553{
1554 int c;
1555 int col = 0;
1556 int n_extra = 0;
1557 int c_extra = 0;
1558 char_u *p_extra = NULL; /* init to make SASC shut up */
1559 int n;
1560 int attr= 0;
1561 char_u *trail = NULL;
1562#ifdef FEAT_MBYTE
1563 int l;
1564 char_u buf[MB_MAXBYTES + 1];
1565#endif
1566
Bram Moolenaardf177f62005-02-22 08:39:57 +00001567 if (curwin->w_p_list)
1568 list = TRUE;
1569
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 /* find start of trailing whitespace */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001571 if (list && lcs_trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 {
1573 trail = s + STRLEN(s);
1574 while (trail > s && vim_iswhite(trail[-1]))
1575 --trail;
1576 }
1577
1578 /* output a space for an empty line, otherwise the line will be
1579 * overwritten */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001580 if (*s == NUL && !(list && lcs_eol != NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 msg_putchar(' ');
1582
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001583 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 {
1585 if (n_extra)
1586 {
1587 --n_extra;
1588 if (c_extra)
1589 c = c_extra;
1590 else
1591 c = *p_extra++;
1592 }
1593#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001594 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 {
1596 col += (*mb_ptr2cells)(s);
1597 mch_memmove(buf, s, (size_t)l);
1598 buf[l] = NUL;
1599 msg_puts_attr(buf, attr);
1600 s += l;
1601 continue;
1602 }
1603#endif
1604 else
1605 {
1606 attr = 0;
1607 c = *s++;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001608 if (c == TAB && (!list || lcs_tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 {
1610 /* tab amount depends on current column */
1611 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001612 if (!list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 {
1614 c = ' ';
1615 c_extra = ' ';
1616 }
1617 else
1618 {
1619 c = lcs_tab1;
1620 c_extra = lcs_tab2;
1621 attr = hl_attr(HLF_8);
1622 }
1623 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00001624 else if (c == NUL && list && lcs_eol != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 {
1626 p_extra = (char_u *)"";
1627 c_extra = NUL;
1628 n_extra = 1;
1629 c = lcs_eol;
1630 attr = hl_attr(HLF_AT);
1631 --s;
1632 }
1633 else if (c != NUL && (n = byte2cells(c)) > 1)
1634 {
1635 n_extra = n - 1;
1636 p_extra = transchar_byte(c);
1637 c_extra = NUL;
1638 c = *p_extra++;
1639 }
1640 else if (c == ' ' && trail != NULL && s > trail)
1641 {
1642 c = lcs_trail;
1643 attr = hl_attr(HLF_8);
1644 }
1645 }
1646
1647 if (c == NUL)
1648 break;
1649
1650 msg_putchar_attr(c, attr);
1651 col++;
1652 }
1653 msg_clr_eos();
1654}
1655
1656#ifdef FEAT_MBYTE
1657/*
1658 * Use screen_puts() to output one multi-byte character.
1659 * Return the pointer "s" advanced to the next character.
1660 */
1661 static char_u *
1662screen_puts_mbyte(s, l, attr)
1663 char_u *s;
1664 int l;
1665 int attr;
1666{
1667 int cw;
1668
1669 msg_didout = TRUE; /* remember that line is not empty */
1670 cw = (*mb_ptr2cells)(s);
1671 if (cw > 1 && (
1672#ifdef FEAT_RIGHTLEFT
1673 cmdmsg_rl ? msg_col <= 1 :
1674#endif
1675 msg_col == Columns - 1))
1676 {
1677 /* Doesn't fit, print a highlighted '>' to fill it up. */
1678 msg_screen_putchar('>', hl_attr(HLF_AT));
1679 return s;
1680 }
1681
1682 screen_puts_len(s, l, msg_row, msg_col, attr);
1683#ifdef FEAT_RIGHTLEFT
1684 if (cmdmsg_rl)
1685 {
1686 msg_col -= cw;
1687 if (msg_col == 0)
1688 {
1689 msg_col = Columns;
1690 ++msg_row;
1691 }
1692 }
1693 else
1694#endif
1695 {
1696 msg_col += cw;
1697 if (msg_col >= Columns)
1698 {
1699 msg_col = 0;
1700 ++msg_row;
1701 }
1702 }
1703 return s + l;
1704}
1705#endif
1706
1707/*
1708 * Output a string to the screen at position msg_row, msg_col.
1709 * Update msg_row and msg_col for the next message.
1710 */
1711 void
1712msg_puts(s)
1713 char_u *s;
1714{
1715 msg_puts_attr(s, 0);
1716}
1717
1718 void
1719msg_puts_title(s)
1720 char_u *s;
1721{
1722 msg_puts_attr(s, hl_attr(HLF_T));
1723}
1724
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725/*
1726 * Show a message in such a way that it always fits in the line. Cut out a
1727 * part in the middle and replace it with "..." when necessary.
1728 * Does not handle multi-byte characters!
1729 */
1730 void
1731msg_puts_long_attr(longstr, attr)
1732 char_u *longstr;
1733 int attr;
1734{
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001735 msg_puts_long_len_attr(longstr, (int)STRLEN(longstr), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736}
1737
1738 void
1739msg_puts_long_len_attr(longstr, len, attr)
1740 char_u *longstr;
1741 int len;
1742 int attr;
1743{
1744 int slen = len;
1745 int room;
1746
1747 room = Columns - msg_col;
1748 if (len > room && room >= 20)
1749 {
1750 slen = (room - 3) / 2;
1751 msg_outtrans_len_attr(longstr, slen, attr);
1752 msg_puts_attr((char_u *)"...", hl_attr(HLF_8));
1753 }
1754 msg_outtrans_len_attr(longstr + len - slen, slen, attr);
1755}
1756
1757/*
1758 * Basic function for writing a message with highlight attributes.
1759 */
1760 void
1761msg_puts_attr(s, attr)
1762 char_u *s;
1763 int attr;
1764{
1765 msg_puts_attr_len(s, -1, attr);
1766}
1767
1768/*
1769 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes).
1770 * When "maxlen" is -1 there is no maximum length.
1771 * When "maxlen" is >= 0 the message is not put in the history.
1772 */
1773 static void
1774msg_puts_attr_len(str, maxlen, attr)
1775 char_u *str;
1776 int maxlen;
1777 int attr;
1778{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 /*
1780 * If redirection is on, also write to the redirection file.
1781 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001782 redir_write(str, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783
1784 /*
1785 * Don't print anything when using ":silent cmd".
1786 */
1787 if (msg_silent != 0)
1788 return;
1789
1790 /* if MSG_HIST flag set, add message to history */
1791 if ((attr & MSG_HIST) && maxlen < 0)
1792 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001793 add_msg_hist(str, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 attr &= ~MSG_HIST;
1795 }
1796
1797 /*
1798 * When writing something to the screen after it has scrolled, requires a
1799 * wait-return prompt later. Needed when scrolling, resetting
1800 * need_wait_return after some prompt, and then outputting something
1801 * without scrolling
1802 */
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001803 if (msg_scrolled != 0 && !msg_scrolled_ign)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 need_wait_return = TRUE;
1805 msg_didany = TRUE; /* remember that something was outputted */
1806
1807 /*
1808 * If there is no valid screen, use fprintf so we can see error messages.
1809 * If termcap is not active, we may be writing in an alternate console
1810 * window, cursor positioning may not work correctly (window size may be
1811 * different, e.g. for Win32 console) or we just don't know where the
1812 * cursor is.
1813 */
1814 if (msg_use_printf())
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001815 msg_puts_printf(str, maxlen);
1816 else
1817 msg_puts_display(str, maxlen, attr, FALSE);
1818}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001820/*
1821 * The display part of msg_puts_attr_len().
1822 * May be called recursively to display scroll-back text.
1823 */
1824 static void
1825msg_puts_display(str, maxlen, attr, recurse)
1826 char_u *str;
1827 int maxlen;
1828 int attr;
1829 int recurse;
1830{
1831 char_u *s = str;
1832 char_u *t_s = str; /* string from "t_s" to "s" is still todo */
1833 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */
1834#ifdef FEAT_MBYTE
1835 int l;
1836 int cw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001838 char_u *sb_str = str;
1839 int sb_col = msg_col;
1840 int wrap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841
1842 did_wait_return = FALSE;
1843 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
1844 {
1845 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001846 * We are at the end of the screen line when:
1847 * - When outputting a newline.
1848 * - When outputting a character in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001850 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851#ifdef FEAT_RIGHTLEFT
1852 cmdmsg_rl
1853 ? (
1854 msg_col <= 1
1855 || (*s == TAB && msg_col <= 7)
1856# ifdef FEAT_MBYTE
1857 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2)
1858# endif
1859 )
1860 :
1861#endif
1862 (msg_col + t_col >= Columns - 1
1863 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7))
1864# ifdef FEAT_MBYTE
1865 || (has_mbyte && (*mb_ptr2cells)(s) > 1
1866 && msg_col + t_col >= Columns - 2)
1867# endif
1868 ))))
1869 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001870 /*
1871 * The screen is scrolled up when at the last row (some terminals
1872 * scroll automatically, some don't. To avoid problems we scroll
1873 * ourselves).
1874 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 if (t_col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 /* output postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001877 t_puts(&t_col, t_s, s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878
1879 /* When no more prompt an no more room, truncate here */
1880 if (msg_no_more && lines_left == 0)
1881 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001883 /* Scroll the screen up one line. */
1884 msg_scroll_up();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885
1886 msg_row = Rows - 2;
1887 if (msg_col >= Columns) /* can happen after screen resize */
1888 msg_col = Columns - 1;
1889
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001890 /* Display char in last column before showing more-prompt. */
1891 if (*s >= ' '
1892#ifdef FEAT_RIGHTLEFT
1893 && !cmdmsg_rl
1894#endif
1895 )
1896 {
1897#ifdef FEAT_MBYTE
1898 if (has_mbyte)
1899 {
1900 if (enc_utf8 && maxlen >= 0)
1901 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001902 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001903 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001904 l = (*mb_ptr2len)(s);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001905 s = screen_puts_mbyte(s, l, attr);
1906 }
1907 else
1908#endif
1909 msg_screen_putchar(*s++, attr);
1910 }
1911
1912 if (p_more)
1913 /* store text for scrolling back */
1914 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
1915
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001916 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001917 need_wait_return = TRUE; /* may need wait_return in main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 if (must_redraw < VALID)
1919 must_redraw = VALID;
1920 redraw_cmdline = TRUE;
1921 if (cmdline_row > 0 && !exmode_active)
1922 --cmdline_row;
1923
1924 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001925 * If screen is completely filled and 'more' is set then wait
1926 * for a character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 */
1928 if (p_more && --lines_left == 0 && State != HITRETURN
1929 && !msg_no_more && !exmode_active)
1930 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931#ifdef FEAT_CON_DIALOG
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001932 if (do_more_prompt(NUL))
1933 s = confirm_msg_tail;
1934#else
1935 (void)do_more_prompt(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936#endif
1937 if (quit_more)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001938 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 }
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001940
1941 /* When we displayed a char in last column need to check if there
1942 * is still more. */
1943 if (*s >= ' '
1944#ifdef FEAT_RIGHTLEFT
1945 && !cmdmsg_rl
1946#endif
1947 )
1948 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 }
1950
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001951 wrap = *s == '\n'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 || msg_col + t_col >= Columns
1953#ifdef FEAT_MBYTE
1954 || (has_mbyte && (*mb_ptr2cells)(s) > 1
1955 && msg_col + t_col >= Columns - 1)
1956#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001957 ;
1958 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b'
1959 || *s == '\t' || *s == BELL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 /* output any postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001961 t_puts(&t_col, t_s, s, attr);
1962
1963 if (wrap && p_more && !recurse)
1964 /* store text for scrolling back */
1965 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966
1967 if (*s == '\n') /* go to next line */
1968 {
1969 msg_didout = FALSE; /* remember that line is empty */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001970#ifdef FEAT_RIGHTLEFT
1971 if (cmdmsg_rl)
1972 msg_col = Columns - 1;
1973 else
1974#endif
1975 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 if (++msg_row >= Rows) /* safety check */
1977 msg_row = Rows - 1;
1978 }
1979 else if (*s == '\r') /* go to column 0 */
1980 {
1981 msg_col = 0;
1982 }
1983 else if (*s == '\b') /* go to previous char */
1984 {
1985 if (msg_col)
1986 --msg_col;
1987 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001988 else if (*s == TAB) /* translate Tab into spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 {
1990 do
1991 msg_screen_putchar(' ', attr);
1992 while (msg_col & 7);
1993 }
1994 else if (*s == BELL) /* beep (from ":sh") */
1995 vim_beep();
1996 else
1997 {
1998#ifdef FEAT_MBYTE
1999 if (has_mbyte)
2000 {
2001 cw = (*mb_ptr2cells)(s);
2002 if (enc_utf8 && maxlen >= 0)
2003 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002004 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002006 l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 }
2008 else
2009 {
2010 cw = 1;
2011 l = 1;
2012 }
2013#endif
2014 /* When drawing from right to left or when a double-wide character
2015 * doesn't fit, draw a single character here. Otherwise collect
2016 * characters and draw them all at once later. */
2017#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
2018 if (
2019# ifdef FEAT_RIGHTLEFT
2020 cmdmsg_rl
2021# ifdef FEAT_MBYTE
2022 ||
2023# endif
2024# endif
2025# ifdef FEAT_MBYTE
2026 (cw > 1 && msg_col + t_col >= Columns - 1)
2027# endif
2028 )
2029 {
2030# ifdef FEAT_MBYTE
2031 if (l > 1)
2032 s = screen_puts_mbyte(s, l, attr) - 1;
2033 else
2034# endif
2035 msg_screen_putchar(*s, attr);
2036 }
2037 else
2038#endif
2039 {
2040 /* postpone this character until later */
2041 if (t_col == 0)
2042 t_s = s;
2043#ifdef FEAT_MBYTE
2044 t_col += cw;
2045 s += l - 1;
2046#else
2047 ++t_col;
2048#endif
2049 }
2050 }
2051 ++s;
2052 }
2053
2054 /* output any postponed text */
2055 if (t_col > 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002056 t_puts(&t_col, t_s, s, attr);
2057 if (p_more && !recurse)
2058 store_sb_text(&sb_str, s, attr, &sb_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059
2060 msg_check();
2061}
2062
2063/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002064 * Scroll the screen up one line for displaying the next message line.
2065 */
2066 static void
2067msg_scroll_up()
2068{
2069#ifdef FEAT_GUI
2070 /* Remove the cursor before scrolling, ScreenLines[] is going
2071 * to become invalid. */
2072 if (gui.in_use)
2073 gui_undraw_cursor();
2074#endif
2075 /* scrolling up always works */
2076 screen_del_lines(0, 0, 1, (int)Rows, TRUE, NULL);
2077
2078 if (!can_clear((char_u *)" "))
2079 {
2080 /* Scrolling up doesn't result in the right background. Set the
2081 * background here. It's not efficient, but avoids that we have to do
2082 * it all over the code. */
2083 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2084
2085 /* Also clear the last char of the last but one line if it was not
2086 * cleared before to avoid a scroll-up. */
2087 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1)
2088 screen_fill((int)Rows - 2, (int)Rows - 1,
2089 (int)Columns - 1, (int)Columns, ' ', ' ', 0);
2090 }
2091}
2092
2093/*
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002094 * Increment "msg_scrolled".
2095 */
2096 static void
2097inc_msg_scrolled()
2098{
2099#ifdef FEAT_EVAL
2100 if (*get_vim_var_str(VV_SCROLLSTART) == NUL)
2101 {
2102 char_u *p = sourcing_name;
2103 char_u *tofree = NULL;
2104 int len;
2105
2106 /* v:scrollstart is empty, set it to the script/function name and line
2107 * number */
2108 if (p == NULL)
2109 p = (char_u *)_("Unknown");
2110 else
2111 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002112 len = (int)STRLEN(p) + 40;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002113 tofree = alloc(len);
2114 if (tofree != NULL)
2115 {
2116 vim_snprintf((char *)tofree, len, _("%s line %ld"),
2117 p, (long)sourcing_lnum);
2118 p = tofree;
2119 }
2120 }
2121 set_vim_var_string(VV_SCROLLSTART, p, -1);
2122 vim_free(tofree);
2123 }
2124#endif
2125 ++msg_scrolled;
2126}
2127
2128/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002129 * To be able to scroll back at the "more" and "hit-enter" prompts we need to
2130 * store the displayed text and remember where screen lines start.
2131 */
2132typedef struct msgchunk_S msgchunk_T;
2133struct msgchunk_S
2134{
2135 msgchunk_T *sb_next;
2136 msgchunk_T *sb_prev;
2137 char sb_eol; /* TRUE when line ends after this text */
2138 int sb_msg_col; /* column in which text starts */
2139 int sb_attr; /* text attributes */
2140 char_u sb_text[1]; /* text to be displayed, actually longer */
2141};
2142
2143static msgchunk_T *last_msgchunk = NULL; /* last displayed text */
2144
2145static msgchunk_T *msg_sb_start __ARGS((msgchunk_T *mps));
2146static msgchunk_T *disp_sb_line __ARGS((int row, msgchunk_T *smp));
2147
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002148static int do_clear_sb_text = FALSE; /* clear text on next msg */
2149
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002150/*
2151 * Store part of a printed message for displaying when scrolling back.
2152 */
2153 static void
2154store_sb_text(sb_str, s, attr, sb_col, finish)
2155 char_u **sb_str; /* start of string */
2156 char_u *s; /* just after string */
2157 int attr;
2158 int *sb_col;
2159 int finish; /* line ends */
2160{
2161 msgchunk_T *mp;
2162
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002163 if (do_clear_sb_text)
2164 {
2165 clear_sb_text();
2166 do_clear_sb_text = FALSE;
2167 }
2168
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002169 if (s > *sb_str)
2170 {
2171 mp = (msgchunk_T *)alloc((int)(sizeof(msgchunk_T) + (s - *sb_str)));
2172 if (mp != NULL)
2173 {
2174 mp->sb_eol = finish;
2175 mp->sb_msg_col = *sb_col;
2176 mp->sb_attr = attr;
2177 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str);
2178
2179 if (last_msgchunk == NULL)
2180 {
2181 last_msgchunk = mp;
2182 mp->sb_prev = NULL;
2183 }
2184 else
2185 {
2186 mp->sb_prev = last_msgchunk;
2187 last_msgchunk->sb_next = mp;
2188 last_msgchunk = mp;
2189 }
2190 mp->sb_next = NULL;
2191 }
2192 }
2193 else if (finish && last_msgchunk != NULL)
2194 last_msgchunk->sb_eol = TRUE;
2195
2196 *sb_str = s;
2197 *sb_col = 0;
2198}
2199
2200/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002201 * Finished showing messages, clear the scroll-back text on the next message.
2202 */
2203 void
2204may_clear_sb_text()
2205{
2206 do_clear_sb_text = TRUE;
2207}
2208
2209/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002210 * Clear any text remembered for scrolling back.
2211 * Called when redrawing the screen.
2212 */
2213 void
2214clear_sb_text()
2215{
2216 msgchunk_T *mp;
2217
2218 while (last_msgchunk != NULL)
2219 {
2220 mp = last_msgchunk->sb_prev;
2221 vim_free(last_msgchunk);
2222 last_msgchunk = mp;
2223 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002224}
2225
2226/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002227 * "g<" command.
2228 */
2229 void
2230show_sb_text()
2231{
2232 msgchunk_T *mp;
2233
2234 /* Only show somethign if there is more than one line, otherwise it looks
2235 * weird, typing a command without output results in one line. */
2236 mp = msg_sb_start(last_msgchunk);
2237 if (mp == NULL || mp->sb_prev == NULL)
2238 vim_beep();
2239 else
2240 {
2241 do_more_prompt('G');
2242 wait_return(FALSE);
2243 }
2244}
2245
2246/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002247 * Move to the start of screen line in already displayed text.
2248 */
2249 static msgchunk_T *
2250msg_sb_start(mps)
2251 msgchunk_T *mps;
2252{
2253 msgchunk_T *mp = mps;
2254
2255 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol)
2256 mp = mp->sb_prev;
2257 return mp;
2258}
2259
2260/*
2261 * Display a screen line from previously displayed text at row "row".
2262 * Returns a pointer to the text for the next line (can be NULL).
2263 */
2264 static msgchunk_T *
2265disp_sb_line(row, smp)
2266 int row;
2267 msgchunk_T *smp;
2268{
2269 msgchunk_T *mp = smp;
2270 char_u *p;
2271
2272 for (;;)
2273 {
2274 msg_row = row;
2275 msg_col = mp->sb_msg_col;
2276 p = mp->sb_text;
2277 if (*p == '\n') /* don't display the line break */
2278 ++p;
2279 msg_puts_display(p, -1, mp->sb_attr, TRUE);
2280 if (mp->sb_eol || mp->sb_next == NULL)
2281 break;
2282 mp = mp->sb_next;
2283 }
2284 return mp->sb_next;
2285}
2286
2287/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 * Output any postponed text for msg_puts_attr_len().
2289 */
2290 static void
2291t_puts(t_col, t_s, s, attr)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002292 int *t_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 char_u *t_s;
2294 char_u *s;
2295 int attr;
2296{
2297 /* output postponed text */
2298 msg_didout = TRUE; /* remember that line is not empty */
2299 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002300 msg_col += *t_col;
2301 *t_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302#ifdef FEAT_MBYTE
2303 /* If the string starts with a composing character don't increment the
2304 * column position for it. */
2305 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s)))
2306 --msg_col;
2307#endif
2308 if (msg_col >= Columns)
2309 {
2310 msg_col = 0;
2311 ++msg_row;
2312 }
2313}
2314
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315/*
2316 * Returns TRUE when messages should be printed with mch_errmsg().
2317 * This is used when there is no valid screen, so we can see error messages.
2318 * If termcap is not active, we may be writing in an alternate console
2319 * window, cursor positioning may not work correctly (window size may be
2320 * different, e.g. for Win32 console) or we just don't know where the
2321 * cursor is.
2322 */
2323 int
2324msg_use_printf()
2325{
2326 return (!msg_check_screen()
2327#if defined(WIN3264) && !defined(FEAT_GUI_MSWIN)
2328 || !termcap_active
2329#endif
2330 || (swapping_screen() && !termcap_active)
2331 );
2332}
2333
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002334/*
2335 * Print a message when there is no valid screen.
2336 */
2337 static void
2338msg_puts_printf(str, maxlen)
2339 char_u *str;
2340 int maxlen;
2341{
2342 char_u *s = str;
2343 char_u buf[4];
2344 char_u *p;
2345
2346#ifdef WIN3264
2347 if (!(silent_mode && p_verbose == 0))
2348 mch_settmode(TMODE_COOK); /* handle '\r' and '\n' correctly */
2349#endif
2350 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
2351 {
2352 if (!(silent_mode && p_verbose == 0))
2353 {
2354 /* NL --> CR NL translation (for Unix, not for "--version") */
2355 /* NL --> CR translation (for Mac) */
2356 p = &buf[0];
2357 if (*s == '\n' && !info_message)
2358 *p++ = '\r';
2359#if defined(USE_CR) && !defined(MACOS_X_UNIX)
2360 else
2361#endif
2362 *p++ = *s;
2363 *p = '\0';
2364 if (info_message) /* informative message, not an error */
2365 mch_msg((char *)buf);
2366 else
2367 mch_errmsg((char *)buf);
2368 }
2369
2370 /* primitive way to compute the current column */
2371#ifdef FEAT_RIGHTLEFT
2372 if (cmdmsg_rl)
2373 {
2374 if (*s == '\r' || *s == '\n')
2375 msg_col = Columns - 1;
2376 else
2377 --msg_col;
2378 }
2379 else
2380#endif
2381 {
2382 if (*s == '\r' || *s == '\n')
2383 msg_col = 0;
2384 else
2385 ++msg_col;
2386 }
2387 ++s;
2388 }
2389 msg_didout = TRUE; /* assume that line is not empty */
2390
2391#ifdef WIN3264
2392 if (!(silent_mode && p_verbose == 0))
2393 mch_settmode(TMODE_RAW);
2394#endif
2395}
2396
2397/*
2398 * Show the more-prompt and handle the user response.
2399 * This takes care of scrolling back and displaying previously displayed text.
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002400 * When at hit-enter prompt "typed_char" is the already typed character,
2401 * otherwise it's NUL.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002402 * Returns TRUE when jumping ahead to "confirm_msg_tail".
2403 */
2404 static int
2405do_more_prompt(typed_char)
2406 int typed_char;
2407{
2408 int used_typed_char = typed_char;
2409 int oldState = State;
2410 int c;
2411#ifdef FEAT_CON_DIALOG
2412 int retval = FALSE;
2413#endif
2414 int scroll;
2415 msgchunk_T *mp_last = NULL;
2416 msgchunk_T *mp;
2417 int i;
2418
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002419 if (typed_char == 'G')
2420 {
2421 /* "g<": Find first line on the last page. */
2422 mp_last = msg_sb_start(last_msgchunk);
2423 for (i = 0; i < Rows - 2 && mp_last != NULL
2424 && mp_last->sb_prev != NULL; ++i)
2425 mp_last = msg_sb_start(mp_last->sb_prev);
2426 }
2427
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002428 State = ASKMORE;
2429#ifdef FEAT_MOUSE
2430 setmouse();
2431#endif
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002432 if (typed_char == NUL)
2433 msg_moremsg(FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002434 for (;;)
2435 {
2436 /*
2437 * Get a typed character directly from the user.
2438 */
2439 if (used_typed_char != NUL)
2440 {
2441 c = used_typed_char; /* was typed at hit-enter prompt */
2442 used_typed_char = NUL;
2443 }
2444 else
2445 c = get_keystroke();
2446
2447#if defined(FEAT_MENU) && defined(FEAT_GUI)
2448 if (c == K_MENU)
2449 {
2450 int idx = get_menu_index(current_menu, ASKMORE);
2451
2452 /* Used a menu. If it starts with CTRL-Y, it must
2453 * be a "Copy" for the clipboard. Otherwise
2454 * assume that we end */
2455 if (idx == MENU_INDEX_INVALID)
2456 continue;
2457 c = *current_menu->strings[idx];
2458 if (c != NUL && current_menu->strings[idx][1] != NUL)
2459 ins_typebuf(current_menu->strings[idx] + 1,
2460 current_menu->noremap[idx], 0, TRUE,
2461 current_menu->silent[idx]);
2462 }
2463#endif
2464
2465 scroll = 0;
2466 switch (c)
2467 {
2468 case BS: /* scroll one line back */
2469 case K_BS:
2470 case 'k':
2471 case K_UP:
2472 scroll = -1;
2473 break;
2474
2475 case CAR: /* one extra line */
2476 case NL:
2477 case 'j':
2478 case K_DOWN:
2479 scroll = 1;
2480 break;
2481
2482 case 'u': /* Up half a page */
2483 case K_PAGEUP:
2484 scroll = -(Rows / 2);
2485 break;
2486
2487 case 'd': /* Down half a page */
2488 scroll = Rows / 2;
2489 break;
2490
2491 case 'b': /* one page back */
2492 scroll = -(Rows - 1);
2493 break;
2494
2495 case ' ': /* one extra page */
2496 case K_PAGEDOWN:
2497 case K_LEFTMOUSE:
2498 scroll = Rows - 1;
2499 break;
2500
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002501 case 'g': /* all the way back to the start */
2502 scroll = -999999;
2503 break;
2504
2505 case 'G': /* all the way to the end */
2506 scroll = 999999;
2507 lines_left = 999999;
2508 break;
2509
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002510 case ':': /* start new command line */
2511#ifdef FEAT_CON_DIALOG
2512 if (!confirm_msg_used)
2513#endif
2514 {
2515 /* Since got_int is set all typeahead will be flushed, but we
2516 * want to keep this ':', remember that in a special way. */
2517 typeahead_noflush(':');
2518 cmdline_row = Rows - 1; /* put ':' on this line */
2519 skip_redraw = TRUE; /* skip redraw once */
2520 need_wait_return = FALSE; /* don't wait in main() */
2521 }
2522 /*FALLTHROUGH*/
2523 case 'q': /* quit */
2524 case Ctrl_C:
2525 case ESC:
2526#ifdef FEAT_CON_DIALOG
2527 if (confirm_msg_used)
2528 {
2529 /* Jump to the choices of the dialog. */
2530 retval = TRUE;
2531 lines_left = Rows - 1;
2532 }
2533 else
2534#endif
2535 {
2536 got_int = TRUE;
2537 quit_more = TRUE;
2538 }
2539 break;
2540
2541#ifdef FEAT_CLIPBOARD
2542 case Ctrl_Y:
2543 /* Strange way to allow copying (yanking) a modeless
2544 * selection at the more prompt. Use CTRL-Y,
2545 * because the same is used in Cmdline-mode and at the
2546 * hit-enter prompt. However, scrolling one line up
2547 * might be expected... */
2548 if (clip_star.state == SELECT_DONE)
2549 clip_copy_modeless_selection(TRUE);
2550 continue;
2551#endif
2552 default: /* no valid response */
2553 msg_moremsg(TRUE);
2554 continue;
2555 }
2556
2557 if (scroll != 0)
2558 {
2559 if (scroll < 0)
2560 {
2561 /* go to start of last line */
2562 if (mp_last == NULL)
2563 mp = msg_sb_start(last_msgchunk);
2564 else if (mp_last->sb_prev != NULL)
2565 mp = msg_sb_start(mp_last->sb_prev);
2566 else
2567 mp = NULL;
2568
2569 /* go to start of line at top of the screen */
2570 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL;
2571 ++i)
2572 mp = msg_sb_start(mp->sb_prev);
2573
2574 if (mp != NULL && mp->sb_prev != NULL)
2575 {
2576 /* Find line to be displayed at top. */
2577 for (i = 0; i > scroll; --i)
2578 {
2579 if (mp == NULL || mp->sb_prev == NULL)
2580 break;
2581 mp = msg_sb_start(mp->sb_prev);
2582 if (mp_last == NULL)
2583 mp_last = msg_sb_start(last_msgchunk);
2584 else
2585 mp_last = msg_sb_start(mp_last->sb_prev);
2586 }
2587
2588 if (scroll == -1 && screen_ins_lines(0, 0, 1,
2589 (int)Rows, NULL) == OK)
2590 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002591 /* display line at top */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002592 (void)disp_sb_line(0, mp);
2593 }
2594 else
2595 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002596 /* redisplay all lines */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002597 screenclear();
2598 for (i = 0; i < Rows - 1; ++i)
2599 mp = disp_sb_line(i, mp);
2600 }
2601 scroll = 0;
2602 }
2603 }
2604 else
2605 {
2606 /* First display any text that we scrolled back. */
2607 while (scroll > 0 && mp_last != NULL)
2608 {
2609 /* scroll up, display line at bottom */
2610 msg_scroll_up();
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002611 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002612 screen_fill((int)Rows - 2, (int)Rows - 1, 0,
2613 (int)Columns, ' ', ' ', 0);
2614 mp_last = disp_sb_line((int)Rows - 2, mp_last);
2615 --scroll;
2616 }
2617 }
2618
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002619 if (scroll < 0 || (scroll == 0 && mp_last != NULL))
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002620 {
2621 /* displayed the requested text, more prompt again */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002622 screen_fill((int)Rows - 1, (int)Rows, 0,
2623 (int)Columns, ' ', ' ', 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002624 msg_moremsg(FALSE);
2625 continue;
2626 }
2627
2628 /* display more text, return to caller */
2629 lines_left = scroll;
2630 }
2631
2632 break;
2633 }
2634
2635 /* clear the --more-- message */
2636 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2637 State = oldState;
2638#ifdef FEAT_MOUSE
2639 setmouse();
2640#endif
2641 if (quit_more)
2642 {
2643 msg_row = Rows - 1;
2644 msg_col = 0;
2645 }
2646#ifdef FEAT_RIGHTLEFT
2647 else if (cmdmsg_rl)
2648 msg_col = Columns - 1;
2649#endif
2650
2651#ifdef FEAT_CON_DIALOG
2652 return retval;
2653#else
2654 return FALSE;
2655#endif
2656}
2657
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658#if defined(USE_MCH_ERRMSG) || defined(PROTO)
2659
2660#ifdef mch_errmsg
2661# undef mch_errmsg
2662#endif
2663#ifdef mch_msg
2664# undef mch_msg
2665#endif
2666
2667/*
2668 * Give an error message. To be used when the screen hasn't been initialized
2669 * yet. When stderr can't be used, collect error messages until the GUI has
2670 * started and they can be displayed in a message box.
2671 */
2672 void
2673mch_errmsg(str)
2674 char *str;
2675{
2676 int len;
2677
2678#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
2679 /* On Unix use stderr if it's a tty.
2680 * When not going to start the GUI also use stderr.
2681 * On Mac, when started from Finder, stderr is the console. */
2682 if (
2683# ifdef UNIX
2684# ifdef MACOS_X_UNIX
2685 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
2686# else
2687 isatty(2)
2688# endif
2689# ifdef FEAT_GUI
2690 ||
2691# endif
2692# endif
2693# ifdef FEAT_GUI
2694 !(gui.in_use || gui.starting)
2695# endif
2696 )
2697 {
2698 fprintf(stderr, "%s", str);
2699 return;
2700 }
2701#endif
2702
2703 /* avoid a delay for a message that isn't there */
2704 emsg_on_display = FALSE;
2705
2706 len = (int)STRLEN(str) + 1;
2707 if (error_ga.ga_growsize == 0)
2708 {
2709 error_ga.ga_growsize = 80;
2710 error_ga.ga_itemsize = 1;
2711 }
2712 if (ga_grow(&error_ga, len) == OK)
2713 {
2714 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len,
2715 (char_u *)str, len);
2716#ifdef UNIX
2717 /* remove CR characters, they are displayed */
2718 {
2719 char_u *p;
2720
2721 p = (char_u *)error_ga.ga_data + error_ga.ga_len;
2722 for (;;)
2723 {
2724 p = vim_strchr(p, '\r');
2725 if (p == NULL)
2726 break;
2727 *p = ' ';
2728 }
2729 }
2730#endif
2731 --len; /* don't count the NUL at the end */
2732 error_ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 }
2734}
2735
2736/*
2737 * Give a message. To be used when the screen hasn't been initialized yet.
2738 * When there is no tty, collect messages until the GUI has started and they
2739 * can be displayed in a message box.
2740 */
2741 void
2742mch_msg(str)
2743 char *str;
2744{
2745#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
2746 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and
2747 * uses mch_errmsg() when started from the desktop.
2748 * When not going to start the GUI also use stdout.
2749 * On Mac, when started from Finder, stderr is the console. */
2750 if (
2751# ifdef UNIX
2752# ifdef MACOS_X_UNIX
2753 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
2754# else
2755 isatty(2)
2756# endif
2757# ifdef FEAT_GUI
2758 ||
2759# endif
2760# endif
2761# ifdef FEAT_GUI
2762 !(gui.in_use || gui.starting)
2763# endif
2764 )
2765 {
2766 printf("%s", str);
2767 return;
2768 }
2769# endif
2770 mch_errmsg(str);
2771}
2772#endif /* USE_MCH_ERRMSG */
2773
2774/*
2775 * Put a character on the screen at the current message position and advance
2776 * to the next position. Only for printable ASCII!
2777 */
2778 static void
2779msg_screen_putchar(c, attr)
2780 int c;
2781 int attr;
2782{
2783 msg_didout = TRUE; /* remember that line is not empty */
2784 screen_putchar(c, msg_row, msg_col, attr);
2785#ifdef FEAT_RIGHTLEFT
2786 if (cmdmsg_rl)
2787 {
2788 if (--msg_col == 0)
2789 {
2790 msg_col = Columns;
2791 ++msg_row;
2792 }
2793 }
2794 else
2795#endif
2796 {
2797 if (++msg_col >= Columns)
2798 {
2799 msg_col = 0;
2800 ++msg_row;
2801 }
2802 }
2803}
2804
2805 void
2806msg_moremsg(full)
2807 int full;
2808{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002809 int attr;
2810 char_u *s = (char_u *)_("-- More --");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811
2812 attr = hl_attr(HLF_M);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002813 screen_puts(s, (int)Rows - 1, 0, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 if (full)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002815 screen_puts((char_u *)
2816 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "),
2817 (int)Rows - 1, vim_strsize(s), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818}
2819
2820/*
2821 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
2822 * exmode_active.
2823 */
2824 void
2825repeat_message()
2826{
2827 if (State == ASKMORE)
2828 {
2829 msg_moremsg(TRUE); /* display --more-- message again */
2830 msg_row = Rows - 1;
2831 }
2832#ifdef FEAT_CON_DIALOG
2833 else if (State == CONFIRM)
2834 {
2835 display_confirm_msg(); /* display ":confirm" message again */
2836 msg_row = Rows - 1;
2837 }
2838#endif
2839 else if (State == EXTERNCMD)
2840 {
2841 windgoto(msg_row, msg_col); /* put cursor back */
2842 }
2843 else if (State == HITRETURN || State == SETWSIZE)
2844 {
2845 hit_return_msg();
2846 msg_row = Rows - 1;
2847 }
2848}
2849
2850/*
2851 * msg_check_screen - check if the screen is initialized.
2852 * Also check msg_row and msg_col, if they are too big it may cause a crash.
2853 * While starting the GUI the terminal codes will be set for the GUI, but the
2854 * output goes to the terminal. Don't use the terminal codes then.
2855 */
2856 static int
2857msg_check_screen()
2858{
2859 if (!full_screen || !screen_valid(FALSE))
2860 return FALSE;
2861
2862 if (msg_row >= Rows)
2863 msg_row = Rows - 1;
2864 if (msg_col >= Columns)
2865 msg_col = Columns - 1;
2866 return TRUE;
2867}
2868
2869/*
2870 * Clear from current message position to end of screen.
2871 * Skip this when ":silent" was used, no need to clear for redirection.
2872 */
2873 void
2874msg_clr_eos()
2875{
2876 if (msg_silent == 0)
2877 msg_clr_eos_force();
2878}
2879
2880/*
2881 * Clear from current message position to end of screen.
2882 * Note: msg_col is not updated, so we remember the end of the message
2883 * for msg_check().
2884 */
2885 void
2886msg_clr_eos_force()
2887{
2888 if (msg_use_printf())
2889 {
2890 if (full_screen) /* only when termcap codes are valid */
2891 {
2892 if (*T_CD)
2893 out_str(T_CD); /* clear to end of display */
2894 else if (*T_CE)
2895 out_str(T_CE); /* clear to end of line */
2896 }
2897 }
2898 else
2899 {
2900#ifdef FEAT_RIGHTLEFT
2901 if (cmdmsg_rl)
2902 {
2903 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0);
2904 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2905 }
2906 else
2907#endif
2908 {
2909 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns,
2910 ' ', ' ', 0);
2911 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2912 }
2913 }
2914}
2915
2916/*
2917 * Clear the command line.
2918 */
2919 void
2920msg_clr_cmdline()
2921{
2922 msg_row = cmdline_row;
2923 msg_col = 0;
2924 msg_clr_eos_force();
2925}
2926
2927/*
2928 * end putting a message on the screen
2929 * call wait_return if the message does not fit in the available space
2930 * return TRUE if wait_return not called.
2931 */
2932 int
2933msg_end()
2934{
2935 /*
2936 * if the string is larger than the window,
2937 * or the ruler option is set and we run into it,
2938 * we have to redraw the window.
2939 * Do not do this if we are abandoning the file or editing the command line.
2940 */
2941 if (!exiting && need_wait_return && !(State & CMDLINE))
2942 {
2943 wait_return(FALSE);
2944 return FALSE;
2945 }
2946 out_flush();
2947 return TRUE;
2948}
2949
2950/*
2951 * If the written message runs into the shown command or ruler, we have to
2952 * wait for hit-return and redraw the window later.
2953 */
2954 void
2955msg_check()
2956{
2957 if (msg_row == Rows - 1 && msg_col >= sc_col)
2958 {
2959 need_wait_return = TRUE;
2960 redraw_cmdline = TRUE;
2961 }
2962}
2963
2964/*
2965 * May write a string to the redirection file.
2966 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
2967 */
2968 static void
2969redir_write(str, maxlen)
2970 char_u *str;
2971 int maxlen;
2972{
2973 char_u *s = str;
2974 static int cur_col = 0;
2975
Bram Moolenaar8b044b32005-05-31 22:05:58 +00002976 /* Don't do anything for displaying prompts and the like. */
2977 if (redir_off)
2978 return;
2979
2980 /*
2981 * If 'verbosefile' is set write message in that file.
2982 * Must come before the rest because of updating "msg_col".
2983 */
2984 if (*p_vfile != NUL)
2985 verbose_write(s, maxlen);
2986
2987 if (redir_fd != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988#ifdef FEAT_EVAL
Bram Moolenaardf177f62005-02-22 08:39:57 +00002989 || redir_reg || redir_vname
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990#endif
Bram Moolenaar8b044b32005-05-31 22:05:58 +00002991 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 {
2993 /* If the string doesn't start with CR or NL, go to msg_col */
2994 if (*s != '\n' && *s != '\r')
2995 {
2996 while (cur_col < msg_col)
2997 {
2998#ifdef FEAT_EVAL
2999 if (redir_reg)
3000 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003001 else if (redir_vname)
3002 var_redir_str((char_u *)" ", -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 else if (redir_fd)
3004#endif
3005 fputs(" ", redir_fd);
3006 ++cur_col;
3007 }
3008 }
3009
3010#ifdef FEAT_EVAL
3011 if (redir_reg)
3012 write_reg_contents(redir_reg, s, maxlen, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003013 if (redir_vname)
3014 var_redir_str(s, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015#endif
3016
3017 /* Adjust the current column */
3018 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3019 {
3020#ifdef FEAT_EVAL
Bram Moolenaardf177f62005-02-22 08:39:57 +00003021 if (!redir_reg && !redir_vname && redir_fd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022#endif
3023 putc(*s, redir_fd);
3024 if (*s == '\r' || *s == '\n')
3025 cur_col = 0;
3026 else if (*s == '\t')
3027 cur_col += (8 - cur_col % 8);
3028 else
3029 ++cur_col;
3030 ++s;
3031 }
3032
3033 if (msg_silent != 0) /* should update msg_col */
3034 msg_col = cur_col;
3035 }
3036}
3037
3038/*
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003039 * Before giving verbose messsage.
3040 * Must always be called paired with verbose_leave()!
3041 */
3042 void
3043verbose_enter()
3044{
3045 if (*p_vfile != NUL)
3046 ++msg_silent;
3047}
3048
3049/*
3050 * After giving verbose message.
3051 * Must always be called paired with verbose_enter()!
3052 */
3053 void
3054verbose_leave()
3055{
3056 if (*p_vfile != NUL)
3057 if (--msg_silent < 0)
3058 msg_silent = 0;
3059}
3060
3061/*
3062 * Like verbose_enter() and set msg_scroll when displaying the message.
3063 */
3064 void
3065verbose_enter_scroll()
3066{
3067 if (*p_vfile != NUL)
3068 ++msg_silent;
3069 else
3070 /* always scroll up, don't overwrite */
3071 msg_scroll = TRUE;
3072}
3073
3074/*
3075 * Like verbose_leave() and set cmdline_row when displaying the message.
3076 */
3077 void
3078verbose_leave_scroll()
3079{
3080 if (*p_vfile != NUL)
3081 {
3082 if (--msg_silent < 0)
3083 msg_silent = 0;
3084 }
3085 else
3086 cmdline_row = msg_row;
3087}
3088
3089static FILE *verbose_fd = NULL;
3090static int verbose_did_open = FALSE;
3091
3092/*
3093 * Called when 'verbosefile' is set: stop writing to the file.
3094 */
3095 void
3096verbose_stop()
3097{
3098 if (verbose_fd != NULL)
3099 {
3100 fclose(verbose_fd);
3101 verbose_fd = NULL;
3102 }
3103 verbose_did_open = FALSE;
3104}
3105
3106/*
3107 * Open the file 'verbosefile'.
3108 * Return FAIL or OK.
3109 */
3110 int
3111verbose_open()
3112{
3113 if (verbose_fd == NULL && !verbose_did_open)
3114 {
3115 /* Only give the error message once. */
3116 verbose_did_open = TRUE;
3117
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003118 verbose_fd = mch_fopen((char *)p_vfile, "a");
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003119 if (verbose_fd == NULL)
3120 {
3121 EMSG2(_(e_notopen), p_vfile);
3122 return FAIL;
3123 }
3124 }
3125 return OK;
3126}
3127
3128/*
3129 * Write a string to 'verbosefile'.
3130 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3131 */
3132 static void
3133verbose_write(str, maxlen)
3134 char_u *str;
3135 int maxlen;
3136{
3137 char_u *s = str;
3138 static int cur_col = 0;
3139
3140 /* Open the file when called the first time. */
3141 if (verbose_fd == NULL)
3142 verbose_open();
3143
3144 if (verbose_fd != NULL)
3145 {
3146 /* If the string doesn't start with CR or NL, go to msg_col */
3147 if (*s != '\n' && *s != '\r')
3148 {
3149 while (cur_col < msg_col)
3150 {
3151 fputs(" ", verbose_fd);
3152 ++cur_col;
3153 }
3154 }
3155
3156 /* Adjust the current column */
3157 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3158 {
3159 putc(*s, verbose_fd);
3160 if (*s == '\r' || *s == '\n')
3161 cur_col = 0;
3162 else if (*s == '\t')
3163 cur_col += (8 - cur_col % 8);
3164 else
3165 ++cur_col;
3166 ++s;
3167 }
3168 }
3169}
3170
3171/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 * Give a warning message (for searching).
3173 * Use 'w' highlighting and may repeat the message after redrawing
3174 */
3175 void
3176give_warning(message, hl)
3177 char_u *message;
3178 int hl;
3179{
3180 /* Don't do this for ":silent". */
3181 if (msg_silent != 0)
3182 return;
3183
3184 /* Don't want a hit-enter prompt here. */
3185 ++no_wait_return;
Bram Moolenaared203462004-06-16 11:19:22 +00003186
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187#ifdef FEAT_EVAL
3188 set_vim_var_string(VV_WARNINGMSG, message, -1);
3189#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 vim_free(keep_msg);
3191 keep_msg = NULL;
3192 if (hl)
3193 keep_msg_attr = hl_attr(HLF_W);
3194 else
3195 keep_msg_attr = 0;
3196 if (msg_attr(message, keep_msg_attr) && msg_scrolled == 0)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003197 set_keep_msg(message, keep_msg_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 msg_didout = FALSE; /* overwrite this message */
3199 msg_nowait = TRUE; /* don't wait for this message */
3200 msg_col = 0;
Bram Moolenaared203462004-06-16 11:19:22 +00003201
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 --no_wait_return;
3203}
3204
3205/*
3206 * Advance msg cursor to column "col".
3207 */
3208 void
3209msg_advance(col)
3210 int col;
3211{
3212 if (msg_silent != 0) /* nothing to advance to */
3213 {
3214 msg_col = col; /* for redirection, may fill it up later */
3215 return;
3216 }
3217 if (col >= Columns) /* not enough room */
3218 col = Columns - 1;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003219#ifdef FEAT_RIGHTLEFT
3220 if (cmdmsg_rl)
3221 while (msg_col > Columns - col)
3222 msg_putchar(' ');
3223 else
3224#endif
3225 while (msg_col < col)
3226 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227}
3228
3229#if defined(FEAT_CON_DIALOG) || defined(PROTO)
3230/*
3231 * Used for "confirm()" function, and the :confirm command prefix.
3232 * Versions which haven't got flexible dialogs yet, and console
3233 * versions, get this generic handler which uses the command line.
3234 *
3235 * type = one of:
3236 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC
3237 * title = title string (can be NULL for default)
3238 * (neither used in console dialogs at the moment)
3239 *
3240 * Format of the "buttons" string:
3241 * "Button1Name\nButton2Name\nButton3Name"
3242 * The first button should normally be the default/accept
3243 * The second button should be the 'Cancel' button
3244 * Other buttons- use your imagination!
3245 * A '&' in a button name becomes a shortcut, so each '&' should be before a
3246 * different letter.
3247 */
3248/* ARGSUSED */
3249 int
3250do_dialog(type, title, message, buttons, dfltbutton, textfield)
3251 int type;
3252 char_u *title;
3253 char_u *message;
3254 char_u *buttons;
3255 int dfltbutton;
3256 char_u *textfield; /* IObuff for inputdialog(), NULL otherwise */
3257{
3258 int oldState;
3259 int retval = 0;
3260 char_u *hotkeys;
3261 int c;
3262 int i;
3263
3264#ifndef NO_CONSOLE
3265 /* Don't output anything in silent mode ("ex -s") */
3266 if (silent_mode)
3267 return dfltbutton; /* return default option */
3268#endif
3269
3270#ifdef FEAT_GUI_DIALOG
3271 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */
3272 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
3273 {
3274 c = gui_mch_dialog(type, title, message, buttons, dfltbutton,
3275 textfield);
3276 msg_end_prompt();
3277
3278 /* Flush output to avoid that further messages and redrawing is done
3279 * in the wrong order. */
3280 out_flush();
3281 gui_mch_update();
3282
3283 return c;
3284 }
3285#endif
3286
3287 oldState = State;
3288 State = CONFIRM;
3289#ifdef FEAT_MOUSE
3290 setmouse();
3291#endif
3292
3293 /*
3294 * Since we wait for a keypress, don't make the
3295 * user press RETURN as well afterwards.
3296 */
3297 ++no_wait_return;
3298 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton);
3299
3300 if (hotkeys != NULL)
3301 {
3302 for (;;)
3303 {
3304 /* Get a typed character directly from the user. */
3305 c = get_keystroke();
3306 switch (c)
3307 {
3308 case CAR: /* User accepts default option */
3309 case NL:
3310 retval = dfltbutton;
3311 break;
3312 case Ctrl_C: /* User aborts/cancels */
3313 case ESC:
3314 retval = 0;
3315 break;
3316 default: /* Could be a hotkey? */
3317 if (c < 0) /* special keys are ignored here */
3318 continue;
3319 /* Make the character lowercase, as chars in "hotkeys" are. */
3320 c = MB_TOLOWER(c);
3321 retval = 1;
3322 for (i = 0; hotkeys[i]; ++i)
3323 {
3324#ifdef FEAT_MBYTE
3325 if (has_mbyte)
3326 {
3327 if ((*mb_ptr2char)(hotkeys + i) == c)
3328 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003329 i += (*mb_ptr2len)(hotkeys + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330 }
3331 else
3332#endif
3333 if (hotkeys[i] == c)
3334 break;
3335 ++retval;
3336 }
3337 if (hotkeys[i])
3338 break;
3339 /* No hotkey match, so keep waiting */
3340 continue;
3341 }
3342 break;
3343 }
3344
3345 vim_free(hotkeys);
3346 }
3347
3348 State = oldState;
3349#ifdef FEAT_MOUSE
3350 setmouse();
3351#endif
3352 --no_wait_return;
3353 msg_end_prompt();
3354
3355 return retval;
3356}
3357
3358static int copy_char __ARGS((char_u *from, char_u *to, int lowercase));
3359
3360/*
3361 * Copy one character from "*from" to "*to", taking care of multi-byte
3362 * characters. Return the length of the character in bytes.
3363 */
3364 static int
3365copy_char(from, to, lowercase)
3366 char_u *from;
3367 char_u *to;
3368 int lowercase; /* make character lower case */
3369{
3370#ifdef FEAT_MBYTE
3371 int len;
3372 int c;
3373
3374 if (has_mbyte)
3375 {
3376 if (lowercase)
3377 {
3378 c = MB_TOLOWER((*mb_ptr2char)(from));
3379 return (*mb_char2bytes)(c, to);
3380 }
3381 else
3382 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003383 len = (*mb_ptr2len)(from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 mch_memmove(to, from, (size_t)len);
3385 return len;
3386 }
3387 }
3388 else
3389#endif
3390 {
3391 if (lowercase)
3392 *to = (char_u)TOLOWER_LOC(*from);
3393 else
3394 *to = *from;
3395 return 1;
3396 }
3397}
3398
3399/*
3400 * Format the dialog string, and display it at the bottom of
3401 * the screen. Return a string of hotkey chars (if defined) for
3402 * each 'button'. If a button has no hotkey defined, the first character of
3403 * the button is used.
3404 * The hotkeys can be multi-byte characters, but without combining chars.
3405 *
3406 * Returns an allocated string with hotkeys, or NULL for error.
3407 */
3408 static char_u *
3409msg_show_console_dialog(message, buttons, dfltbutton)
3410 char_u *message;
3411 char_u *buttons;
3412 int dfltbutton;
3413{
3414 int len = 0;
3415#ifdef FEAT_MBYTE
3416# define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1)
3417#else
3418# define HOTK_LEN 1
3419#endif
3420 int lenhotkey = HOTK_LEN; /* count first button */
3421 char_u *hotk = NULL;
3422 char_u *msgp = NULL;
3423 char_u *hotkp = NULL;
3424 char_u *r;
3425 int copy;
3426#define HAS_HOTKEY_LEN 30
3427 char_u has_hotkey[HAS_HOTKEY_LEN];
3428 int first_hotkey = FALSE; /* first char of button is hotkey */
3429 int idx;
3430
3431 has_hotkey[0] = FALSE;
3432
3433 /*
3434 * First loop: compute the size of memory to allocate.
3435 * Second loop: copy to the allocated memory.
3436 */
3437 for (copy = 0; copy <= 1; ++copy)
3438 {
3439 r = buttons;
3440 idx = 0;
3441 while (*r)
3442 {
3443 if (*r == DLG_BUTTON_SEP)
3444 {
3445 if (copy)
3446 {
3447 *msgp++ = ',';
3448 *msgp++ = ' '; /* '\n' -> ', ' */
3449
3450 /* advance to next hotkey and set default hotkey */
3451#ifdef FEAT_MBYTE
3452 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003453 hotkp += (*mb_ptr2len)(hotkp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 else
3455#endif
3456 ++hotkp;
3457 (void)copy_char(r + 1, hotkp, TRUE);
3458 if (dfltbutton)
3459 --dfltbutton;
3460
3461 /* If no hotkey is specified first char is used. */
3462 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx])
3463 first_hotkey = TRUE;
3464 }
3465 else
3466 {
3467 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */
3468 lenhotkey += HOTK_LEN; /* each button needs a hotkey */
3469 if (idx < HAS_HOTKEY_LEN - 1)
3470 has_hotkey[++idx] = FALSE;
3471 }
3472 }
3473 else if (*r == DLG_HOTKEY_CHAR || first_hotkey)
3474 {
3475 if (*r == DLG_HOTKEY_CHAR)
3476 ++r;
3477 first_hotkey = FALSE;
3478 if (copy)
3479 {
3480 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */
3481 *msgp++ = *r;
3482 else
3483 {
3484 /* '&a' -> '[a]' */
3485 *msgp++ = (dfltbutton == 1) ? '[' : '(';
3486 msgp += copy_char(r, msgp, FALSE);
3487 *msgp++ = (dfltbutton == 1) ? ']' : ')';
3488
3489 /* redefine hotkey */
3490 (void)copy_char(r, hotkp, TRUE);
3491 }
3492 }
3493 else
3494 {
3495 ++len; /* '&a' -> '[a]' */
3496 if (idx < HAS_HOTKEY_LEN - 1)
3497 has_hotkey[idx] = TRUE;
3498 }
3499 }
3500 else
3501 {
3502 /* everything else copy literally */
3503 if (copy)
3504 msgp += copy_char(r, msgp, FALSE);
3505 }
3506
3507 /* advance to the next character */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003508 mb_ptr_adv(r);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 }
3510
3511 if (copy)
3512 {
3513 *msgp++ = ':';
3514 *msgp++ = ' ';
3515 *msgp = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003516 mb_ptr_adv(hotkp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 *hotkp = NUL;
3518 }
3519 else
3520 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003521 len += (int)(STRLEN(message)
3522 + 2 /* for the NL's */
3523 + STRLEN(buttons)
3524 + 3); /* for the ": " and NUL */
3525 lenhotkey++; /* for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526
3527 /* If no hotkey is specified first char is used. */
3528 if (!has_hotkey[0])
3529 {
3530 first_hotkey = TRUE;
3531 len += 2; /* "x" -> "[x]" */
3532 }
3533
3534 /*
3535 * Now allocate and load the strings
3536 */
3537 vim_free(confirm_msg);
3538 confirm_msg = alloc(len);
3539 if (confirm_msg == NULL)
3540 return NULL;
3541 *confirm_msg = NUL;
3542 hotk = alloc(lenhotkey);
3543 if (hotk == NULL)
3544 return NULL;
3545
3546 *confirm_msg = '\n';
3547 STRCPY(confirm_msg + 1, message);
3548
3549 msgp = confirm_msg + 1 + STRLEN(message);
3550 hotkp = hotk;
3551
3552 /* define first default hotkey */
3553 (void)copy_char(buttons, hotkp, TRUE);
3554
3555 /* Remember where the choices start, displaying starts here when
3556 * "hotkp" typed at the more prompt. */
3557 confirm_msg_tail = msgp;
3558 *msgp++ = '\n';
3559 }
3560 }
3561
3562 display_confirm_msg();
3563 return hotk;
3564}
3565
3566/*
3567 * Display the ":confirm" message. Also called when screen resized.
3568 */
3569 void
3570display_confirm_msg()
3571{
3572 /* avoid that 'q' at the more prompt truncates the message here */
3573 ++confirm_msg_used;
3574 if (confirm_msg != NULL)
3575 msg_puts_attr(confirm_msg, hl_attr(HLF_M));
3576 --confirm_msg_used;
3577}
3578
3579#endif /* FEAT_CON_DIALOG */
3580
3581#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
3582
3583 int
3584vim_dialog_yesno(type, title, message, dflt)
3585 int type;
3586 char_u *title;
3587 char_u *message;
3588 int dflt;
3589{
3590 if (do_dialog(type,
3591 title == NULL ? (char_u *)_("Question") : title,
3592 message,
3593 (char_u *)_("&Yes\n&No"), dflt, NULL) == 1)
3594 return VIM_YES;
3595 return VIM_NO;
3596}
3597
3598 int
3599vim_dialog_yesnocancel(type, title, message, dflt)
3600 int type;
3601 char_u *title;
3602 char_u *message;
3603 int dflt;
3604{
3605 switch (do_dialog(type,
3606 title == NULL ? (char_u *)_("Question") : title,
3607 message,
3608 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL))
3609 {
3610 case 1: return VIM_YES;
3611 case 2: return VIM_NO;
3612 }
3613 return VIM_CANCEL;
3614}
3615
3616 int
3617vim_dialog_yesnoallcancel(type, title, message, dflt)
3618 int type;
3619 char_u *title;
3620 char_u *message;
3621 int dflt;
3622{
3623 switch (do_dialog(type,
3624 title == NULL ? (char_u *)"Question" : title,
3625 message,
3626 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"),
3627 dflt, NULL))
3628 {
3629 case 1: return VIM_YES;
3630 case 2: return VIM_NO;
3631 case 3: return VIM_ALL;
3632 case 4: return VIM_DISCARDALL;
3633 }
3634 return VIM_CANCEL;
3635}
3636
3637#endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */
3638
3639#if defined(FEAT_BROWSE) || defined(PROTO)
3640/*
3641 * Generic browse function. Calls gui_mch_browse() when possible.
3642 * Later this may pop-up a non-GUI file selector (external command?).
3643 */
3644 char_u *
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003645do_browse(flags, title, dflt, ext, initdir, filter, buf)
3646 int flags; /* BROWSE_SAVE and BROWSE_DIR */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 char_u *title; /* title for the window */
3648 char_u *dflt; /* default file name (may include directory) */
3649 char_u *ext; /* extension added */
3650 char_u *initdir; /* initial directory, NULL for current dir or
3651 when using path from "dflt" */
3652 char_u *filter; /* file name filter */
3653 buf_T *buf; /* buffer to read/write for */
3654{
3655 char_u *fname;
3656 static char_u *last_dir = NULL; /* last used directory */
3657 char_u *tofree = NULL;
3658 int save_browse = cmdmod.browse;
3659
3660 /* Must turn off browse to avoid that autocommands will get the
3661 * flag too! */
3662 cmdmod.browse = FALSE;
3663
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003664 if (title == NULL || *title == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003666 if (flags & BROWSE_DIR)
3667 title = (char_u *)_("Select Directory dialog");
3668 else if (flags & BROWSE_SAVE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 title = (char_u *)_("Save File dialog");
3670 else
3671 title = (char_u *)_("Open File dialog");
3672 }
3673
3674 /* When no directory specified, use default file name, default dir, buffer
3675 * dir, last dir or current dir */
3676 if ((initdir == NULL || *initdir == NUL) && dflt != NULL && *dflt != NUL)
3677 {
3678 if (mch_isdir(dflt)) /* default file name is a directory */
3679 {
3680 initdir = dflt;
3681 dflt = NULL;
3682 }
3683 else if (gettail(dflt) != dflt) /* default file name includes a path */
3684 {
3685 tofree = vim_strsave(dflt);
3686 if (tofree != NULL)
3687 {
3688 initdir = tofree;
3689 *gettail(initdir) = NUL;
3690 dflt = gettail(dflt);
3691 }
3692 }
3693 }
3694
3695 if (initdir == NULL || *initdir == NUL)
3696 {
3697 /* When 'browsedir' is a directory, use it */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003698 if (STRCMP(p_bsdir, "last") != 0
3699 && STRCMP(p_bsdir, "buffer") != 0
3700 && STRCMP(p_bsdir, "current") != 0
3701 && mch_isdir(p_bsdir))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 initdir = p_bsdir;
3703 /* When saving or 'browsedir' is "buffer", use buffer fname */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003704 else if (((flags & BROWSE_SAVE) || *p_bsdir == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 && buf != NULL && buf->b_ffname != NULL)
3706 {
3707 if (dflt == NULL || *dflt == NUL)
3708 dflt = gettail(curbuf->b_ffname);
3709 tofree = vim_strsave(curbuf->b_ffname);
3710 if (tofree != NULL)
3711 {
3712 initdir = tofree;
3713 *gettail(initdir) = NUL;
3714 }
3715 }
3716 /* When 'browsedir' is "last", use dir from last browse */
3717 else if (*p_bsdir == 'l')
3718 initdir = last_dir;
3719 /* When 'browsedir is "current", use current directory. This is the
3720 * default already, leave initdir empty. */
3721 }
3722
3723# ifdef FEAT_GUI
3724 if (gui.in_use) /* when this changes, also adjust f_has()! */
3725 {
3726 if (filter == NULL
3727# ifdef FEAT_EVAL
3728 && (filter = get_var_value((char_u *)"b:browsefilter")) == NULL
3729 && (filter = get_var_value((char_u *)"g:browsefilter")) == NULL
3730# endif
3731 )
3732 filter = BROWSE_FILTER_DEFAULT;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003733 if (flags & BROWSE_DIR)
3734 {
3735# if defined(HAVE_GTK2) || defined(WIN3264)
3736 /* For systems that have a directory dialog. */
3737 fname = gui_mch_browsedir(title, initdir);
3738# else
3739 /* Generic solution for selecting a directory: select a file and
3740 * remove the file name. */
3741 fname = gui_mch_browse(0, title, dflt, ext, initdir, (char_u *)"");
3742# endif
3743# if !defined(HAVE_GTK2)
3744 /* Win32 adds a dummy file name, others return an arbitrary file
3745 * name. GTK+ 2 returns only the directory, */
3746 if (fname != NULL && *fname != NUL && !mch_isdir(fname))
3747 {
3748 /* Remove the file name. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003749 char_u *tail = gettail_sep(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003750
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003751 if (tail == fname)
3752 *tail++ = '.'; /* use current dir */
3753 *tail = NUL;
3754 }
3755# endif
3756 }
3757 else
3758 fname = gui_mch_browse(flags & BROWSE_SAVE,
3759 title, dflt, ext, initdir, filter);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760
3761 /* We hang around in the dialog for a while, the user might do some
3762 * things to our files. The Win32 dialog allows deleting or renaming
3763 * a file, check timestamps. */
3764 need_check_timestamps = TRUE;
3765 did_check_timestamps = FALSE;
3766 }
3767 else
3768# endif
3769 {
3770 /* TODO: non-GUI file selector here */
3771 EMSG(_("E338: Sorry, no file browser in console mode"));
3772 fname = NULL;
3773 }
3774
3775 /* keep the directory for next time */
3776 if (fname != NULL)
3777 {
3778 vim_free(last_dir);
3779 last_dir = vim_strsave(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003780 if (last_dir != NULL && !(flags & BROWSE_DIR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 {
3782 *gettail(last_dir) = NUL;
3783 if (*last_dir == NUL)
3784 {
3785 /* filename only returned, must be in current dir */
3786 vim_free(last_dir);
3787 last_dir = alloc(MAXPATHL);
3788 if (last_dir != NULL)
3789 mch_dirname(last_dir, MAXPATHL);
3790 }
3791 }
3792 }
3793
3794 vim_free(tofree);
3795 cmdmod.browse = save_browse;
3796
3797 return fname;
3798}
3799#endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003800
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003801#if defined(HAVE_STDARG_H) && defined(FEAT_EVAL)
3802static char *e_printf = N_("E766: Insufficient arguments for printf()");
3803
3804static long tv_nr __ARGS((typval_T *tvs, int *idxp));
3805static char *tv_str __ARGS((typval_T *tvs, int *idxp));
3806
3807/*
3808 * Get number argument from "idxp" entry in "tvs". First entry is 1.
3809 */
3810 static long
3811tv_nr(tvs, idxp)
3812 typval_T *tvs;
3813 int *idxp;
3814{
3815 int idx = *idxp - 1;
3816 long n = 0;
3817 int err = FALSE;
3818
3819 if (tvs[idx].v_type == VAR_UNKNOWN)
3820 EMSG(_(e_printf));
3821 else
3822 {
3823 ++*idxp;
3824 n = get_tv_number_chk(&tvs[idx], &err);
3825 if (err)
3826 n = 0;
3827 }
3828 return n;
3829}
3830
3831/*
3832 * Get string argument from "idxp" entry in "tvs". First entry is 1.
Bram Moolenaar1e015462005-09-25 22:16:38 +00003833 * Returns NULL for an error.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003834 */
3835 static char *
3836tv_str(tvs, idxp)
3837 typval_T *tvs;
3838 int *idxp;
3839{
3840 int idx = *idxp - 1;
3841 char *s = NULL;
3842
3843 if (tvs[idx].v_type == VAR_UNKNOWN)
3844 EMSG(_(e_printf));
3845 else
3846 {
3847 ++*idxp;
3848 s = (char *)get_tv_string_chk(&tvs[idx]);
3849 }
3850 return s;
3851}
3852#endif
3853
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003854/*
3855 * This code was included to provide a portable vsnprintf() and snprintf().
Bram Moolenaara2031822006-03-07 22:29:51 +00003856 * Some systems may provide their own, but we always use this one for
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003857 * consistency.
3858 *
3859 * This code is based on snprintf.c - a portable implementation of snprintf
3860 * by Mark Martinec <mark.martinec@ijs.si>, Version 2.2, 2000-10-06.
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003861 * Included with permission. It was heavely modified to fit in Vim.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003862 * The original code, including useful comments, can be found here:
3863 * http://www.ijs.si/software/snprintf/
3864 *
3865 * This snprintf() only supports the following conversion specifiers:
3866 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
3867 * with flags: '-', '+', ' ', '0' and '#'.
3868 * An asterisk is supported for field width as well as precision.
3869 *
3870 * Length modifiers 'h' (short int) and 'l' (long int) are supported.
3871 * 'll' (long long int) is not supported.
3872 *
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00003873 * The locale is not used, the string is used as a byte string. This is only
3874 * relevant for double-byte encodings where the second byte may be '%'.
3875 *
Bram Moolenaara2031822006-03-07 22:29:51 +00003876 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL
3877 * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003878 *
3879 * The return value is the number of characters which would be generated
3880 * for the given input, excluding the trailing null. If this value
Bram Moolenaara2031822006-03-07 22:29:51 +00003881 * is greater or equal to "str_m", not all characters from the result
3882 * have been stored in str, output bytes beyond the ("str_m"-1) -th character
3883 * are discarded. If "str_m" is greater than zero it is guaranteed
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003884 * the resulting string will be null-terminated.
3885 */
3886
3887/*
3888 * When va_list is not supported we only define vim_snprintf().
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003889 *
3890 * vim_vsnprintf() can be invoked with either "va_list" or a list of
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00003891 * "typval_T". When the latter is not used it must be NULL.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003892 */
3893
3894/* When generating prototypes all of this is skipped, cproto doesn't
3895 * understand this. */
3896#ifndef PROTO
3897# ifdef HAVE_STDARG_H
3898 int
3899vim_snprintf(char *str, size_t str_m, char *fmt, ...)
3900{
3901 va_list ap;
3902 int str_l;
3903
3904 va_start(ap, fmt);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003905 str_l = vim_vsnprintf(str, str_m, fmt, ap, NULL);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003906 va_end(ap);
3907 return str_l;
3908}
3909
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003910 int
3911vim_vsnprintf(str, str_m, fmt, ap, tvs)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003912# else
3913 /* clumsy way to work around missing va_list */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003914# 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 +00003915
3916/* VARARGS */
3917 int
3918#ifdef __BORLANDC__
3919_RTLENTRYF
3920#endif
3921vim_snprintf(str, str_m, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
3922# endif
3923 char *str;
3924 size_t str_m;
3925 char *fmt;
3926# ifdef HAVE_STDARG_H
3927 va_list ap;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003928 typval_T *tvs;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003929# else
3930 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
3931# endif
3932{
3933 size_t str_l = 0;
3934 char *p = fmt;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003935 int arg_idx = 1;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003936
3937 if (p == NULL)
3938 p = "";
3939 while (*p != NUL)
3940 {
3941 if (*p != '%')
3942 {
3943 char *q = strchr(p + 1, '%');
3944 size_t n = (q == NULL) ? STRLEN(p) : (q - p);
3945
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00003946 /* Copy up to the next '%' or NUL without any changes. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003947 if (str_l < str_m)
3948 {
3949 size_t avail = str_m - str_l;
3950
3951 mch_memmove(str + str_l, p, n > avail ? avail : n);
3952 }
3953 p += n;
3954 str_l += n;
3955 }
3956 else
3957 {
3958 size_t min_field_width = 0, precision = 0;
3959 int zero_padding = 0, precision_specified = 0, justify_left = 0;
3960 int alternate_form = 0, force_sign = 0;
3961
3962 /* If both the ' ' and '+' flags appear, the ' ' flag should be
3963 * ignored. */
3964 int space_for_positive = 1;
3965
3966 /* allowed values: \0, h, l, L */
3967 char length_modifier = '\0';
3968
3969 /* temporary buffer for simple numeric->string conversion */
3970 char tmp[32];
3971
3972 /* string address in case of string argument */
3973 char *str_arg;
3974
3975 /* natural field width of arg without padding and sign */
3976 size_t str_arg_l;
3977
3978 /* unsigned char argument value - only defined for c conversion.
3979 * N.B. standard explicitly states the char argument for the c
3980 * conversion is unsigned */
3981 unsigned char uchar_arg;
3982
3983 /* number of zeros to be inserted for numeric conversions as
3984 * required by the precision or minimal field width */
3985 size_t number_of_zeros_to_pad = 0;
3986
3987 /* index into tmp where zero padding is to be inserted */
3988 size_t zero_padding_insertion_ind = 0;
3989
3990 /* current conversion specifier character */
3991 char fmt_spec = '\0';
3992
3993 str_arg = NULL;
3994 p++; /* skip '%' */
3995
3996 /* parse flags */
3997 while (*p == '0' || *p == '-' || *p == '+' || *p == ' '
3998 || *p == '#' || *p == '\'')
3999 {
4000 switch (*p)
4001 {
4002 case '0': zero_padding = 1; break;
4003 case '-': justify_left = 1; break;
4004 case '+': force_sign = 1; space_for_positive = 0; break;
4005 case ' ': force_sign = 1;
4006 /* If both the ' ' and '+' flags appear, the ' '
4007 * flag should be ignored */
4008 break;
4009 case '#': alternate_form = 1; break;
4010 case '\'': break;
4011 }
4012 p++;
4013 }
4014 /* If the '0' and '-' flags both appear, the '0' flag should be
4015 * ignored. */
4016
4017 /* parse field width */
4018 if (*p == '*')
4019 {
4020 int j;
4021
4022 p++;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004023 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004024#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004025 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004026#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004027# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004028 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004029# endif
4030 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004031#endif
4032 if (j >= 0)
4033 min_field_width = j;
4034 else
4035 {
4036 min_field_width = -j;
4037 justify_left = 1;
4038 }
4039 }
4040 else if (VIM_ISDIGIT((int)(*p)))
4041 {
4042 /* size_t could be wider than unsigned int; make sure we treat
4043 * argument like common implementations do */
4044 unsigned int uj = *p++ - '0';
4045
4046 while (VIM_ISDIGIT((int)(*p)))
4047 uj = 10 * uj + (unsigned int)(*p++ - '0');
4048 min_field_width = uj;
4049 }
4050
4051 /* parse precision */
4052 if (*p == '.')
4053 {
4054 p++;
4055 precision_specified = 1;
4056 if (*p == '*')
4057 {
4058 int j;
4059
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004060 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004061#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004062 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004063#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004064# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004065 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004066# endif
4067 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004068#endif
4069 p++;
4070 if (j >= 0)
4071 precision = j;
4072 else
4073 {
4074 precision_specified = 0;
4075 precision = 0;
4076 }
4077 }
4078 else if (VIM_ISDIGIT((int)(*p)))
4079 {
4080 /* size_t could be wider than unsigned int; make sure we
4081 * treat argument like common implementations do */
4082 unsigned int uj = *p++ - '0';
4083
4084 while (VIM_ISDIGIT((int)(*p)))
4085 uj = 10 * uj + (unsigned int)(*p++ - '0');
4086 precision = uj;
4087 }
4088 }
4089
4090 /* parse 'h', 'l' and 'll' length modifiers */
4091 if (*p == 'h' || *p == 'l')
4092 {
4093 length_modifier = *p;
4094 p++;
4095 if (length_modifier == 'l' && *p == 'l')
4096 {
4097 /* double l = long long */
4098 length_modifier = 'l'; /* treat it as a single 'l' */
4099 p++;
4100 }
4101 }
4102 fmt_spec = *p;
4103
4104 /* common synonyms: */
4105 switch (fmt_spec)
4106 {
4107 case 'i': fmt_spec = 'd'; break;
4108 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break;
4109 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break;
4110 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break;
4111 default: break;
4112 }
4113
4114 /* get parameter value, do initial processing */
4115 switch (fmt_spec)
4116 {
4117 /* '%' and 'c' behave similar to 's' regarding flags and field
4118 * widths */
4119 case '%':
4120 case 'c':
4121 case 's':
4122 length_modifier = '\0';
4123 zero_padding = 0; /* turn zero padding off for string
4124 conversions */
4125 str_arg_l = 1;
4126 switch (fmt_spec)
4127 {
4128 case '%':
4129 str_arg = p;
4130 break;
4131
4132 case 'c':
4133 {
4134 int j;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004135
4136 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004137#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004138 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004139#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004140# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004141 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004142# endif
4143 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004144#endif
4145 /* standard demands unsigned char */
4146 uchar_arg = (unsigned char)j;
4147 str_arg = (char *)&uchar_arg;
4148 break;
4149 }
4150
4151 case 's':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004152 str_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004153#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004154 (char *)get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004155#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004156# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004157 tvs != NULL ? tv_str(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004158# endif
4159 va_arg(ap, char *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004160#endif
4161 if (str_arg == NULL)
4162 {
4163 str_arg = "[NULL]";
4164 str_arg_l = 6;
4165 }
4166 /* make sure not to address string beyond the specified
4167 * precision !!! */
4168 else if (!precision_specified)
4169 str_arg_l = strlen(str_arg);
4170 /* truncate string if necessary as requested by precision */
4171 else if (precision == 0)
4172 str_arg_l = 0;
4173 else
4174 {
4175 /* memchr on HP does not like n > 2^31 !!! */
4176 char *q = memchr(str_arg, '\0',
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004177#if SIZEOF_INT <= 2
4178 precision
4179#else
Bram Moolenaarc01140a2006-03-24 22:21:52 +00004180 precision <= (size_t)0x7fffffffL ? precision
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004181 : (size_t)0x7fffffffL
4182#endif
4183 );
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004184 str_arg_l = (q == NULL) ? precision : q - str_arg;
4185 }
4186 break;
4187
4188 default:
4189 break;
4190 }
4191 break;
4192
4193 case 'd': case 'u': case 'o': case 'x': case 'X': case 'p':
4194 {
4195 /* NOTE: the u, o, x, X and p conversion specifiers
4196 * imply the value is unsigned; d implies a signed
4197 * value */
4198
4199 /* 0 if numeric argument is zero (or if pointer is
4200 * NULL for 'p'), +1 if greater than zero (or nonzero
4201 * for unsigned arguments), -1 if negative (unsigned
4202 * argument is never negative) */
4203 int arg_sign = 0;
4204
4205 /* only defined for length modifier h, or for no
4206 * length modifiers */
4207 int int_arg = 0;
4208 unsigned int uint_arg = 0;
4209
4210 /* only defined for length modifier l */
4211 long int long_arg = 0;
4212 unsigned long int ulong_arg = 0;
4213
4214 /* pointer argument value -only defined for p
4215 * conversion */
4216 void *ptr_arg = NULL;
4217
4218 if (fmt_spec == 'p')
4219 {
4220 length_modifier = '\0';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004221 ptr_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004222#ifndef HAVE_STDARG_H
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004223 (void *)get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004224#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004225# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004226 tvs != NULL ? (void *)tv_str(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004227# endif
4228 va_arg(ap, void *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004229#endif
4230 if (ptr_arg != NULL)
4231 arg_sign = 1;
4232 }
4233 else if (fmt_spec == 'd')
4234 {
4235 /* signed */
4236 switch (length_modifier)
4237 {
4238 case '\0':
4239 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004240 /* char and short arguments are passed as int. */
4241 int_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004242#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004243 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004244#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004245# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004246 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004247# endif
4248 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004249#endif
4250 if (int_arg > 0)
4251 arg_sign = 1;
4252 else if (int_arg < 0)
4253 arg_sign = -1;
4254 break;
4255 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004256 long_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004257#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004258 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004259#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004260# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004261 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004262# endif
4263 va_arg(ap, long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004264#endif
4265 if (long_arg > 0)
4266 arg_sign = 1;
4267 else if (long_arg < 0)
4268 arg_sign = -1;
4269 break;
4270 }
4271 }
4272 else
4273 {
4274 /* unsigned */
4275 switch (length_modifier)
4276 {
4277 case '\0':
4278 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004279 uint_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004280#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004281 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004282#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004283# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004284 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004285# endif
4286 va_arg(ap, unsigned int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004287#endif
4288 if (uint_arg != 0)
4289 arg_sign = 1;
4290 break;
4291 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004292 ulong_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004293#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004294 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004295#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004296# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004297 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004298# endif
4299 va_arg(ap, unsigned long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004300#endif
4301 if (ulong_arg != 0)
4302 arg_sign = 1;
4303 break;
4304 }
4305 }
4306
4307 str_arg = tmp;
4308 str_arg_l = 0;
4309
4310 /* NOTE:
4311 * For d, i, u, o, x, and X conversions, if precision is
4312 * specified, the '0' flag should be ignored. This is so
4313 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux,
4314 * FreeBSD, NetBSD; but not with Perl.
4315 */
4316 if (precision_specified)
4317 zero_padding = 0;
4318 if (fmt_spec == 'd')
4319 {
4320 if (force_sign && arg_sign >= 0)
4321 tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
4322 /* leave negative numbers for sprintf to handle, to
4323 * avoid handling tricky cases like (short int)-32768 */
4324 }
4325 else if (alternate_form)
4326 {
4327 if (arg_sign != 0
4328 && (fmt_spec == 'x' || fmt_spec == 'X') )
4329 {
4330 tmp[str_arg_l++] = '0';
4331 tmp[str_arg_l++] = fmt_spec;
4332 }
4333 /* alternate form should have no effect for p
4334 * conversion, but ... */
4335 }
4336
4337 zero_padding_insertion_ind = str_arg_l;
4338 if (!precision_specified)
4339 precision = 1; /* default precision is 1 */
4340 if (precision == 0 && arg_sign == 0)
4341 {
4342 /* When zero value is formatted with an explicit
4343 * precision 0, the resulting formatted string is
4344 * empty (d, i, u, o, x, X, p). */
4345 }
4346 else
4347 {
4348 char f[5];
4349 int f_l = 0;
4350
4351 /* construct a simple format string for sprintf */
4352 f[f_l++] = '%';
4353 if (!length_modifier)
4354 ;
4355 else if (length_modifier == '2')
4356 {
4357 f[f_l++] = 'l';
4358 f[f_l++] = 'l';
4359 }
4360 else
4361 f[f_l++] = length_modifier;
4362 f[f_l++] = fmt_spec;
4363 f[f_l++] = '\0';
4364
4365 if (fmt_spec == 'p')
4366 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg);
4367 else if (fmt_spec == 'd')
4368 {
4369 /* signed */
4370 switch (length_modifier)
4371 {
4372 case '\0':
4373 case 'h': str_arg_l += sprintf(
4374 tmp + str_arg_l, f, int_arg);
4375 break;
4376 case 'l': str_arg_l += sprintf(
4377 tmp + str_arg_l, f, long_arg);
4378 break;
4379 }
4380 }
4381 else
4382 {
4383 /* unsigned */
4384 switch (length_modifier)
4385 {
4386 case '\0':
4387 case 'h': str_arg_l += sprintf(
4388 tmp + str_arg_l, f, uint_arg);
4389 break;
4390 case 'l': str_arg_l += sprintf(
4391 tmp + str_arg_l, f, ulong_arg);
4392 break;
4393 }
4394 }
4395
4396 /* include the optional minus sign and possible
4397 * "0x" in the region before the zero padding
4398 * insertion point */
4399 if (zero_padding_insertion_ind < str_arg_l
4400 && tmp[zero_padding_insertion_ind] == '-')
4401 zero_padding_insertion_ind++;
4402 if (zero_padding_insertion_ind + 1 < str_arg_l
4403 && tmp[zero_padding_insertion_ind] == '0'
4404 && (tmp[zero_padding_insertion_ind + 1] == 'x'
4405 || tmp[zero_padding_insertion_ind + 1] == 'X'))
4406 zero_padding_insertion_ind += 2;
4407 }
4408
4409 {
4410 size_t num_of_digits = str_arg_l
4411 - zero_padding_insertion_ind;
4412
4413 if (alternate_form && fmt_spec == 'o'
4414 /* unless zero is already the first
4415 * character */
4416 && !(zero_padding_insertion_ind < str_arg_l
4417 && tmp[zero_padding_insertion_ind] == '0'))
4418 {
4419 /* assure leading zero for alternate-form
4420 * octal numbers */
4421 if (!precision_specified
4422 || precision < num_of_digits + 1)
4423 {
4424 /* precision is increased to force the
4425 * first character to be zero, except if a
4426 * zero value is formatted with an
4427 * explicit precision of zero */
4428 precision = num_of_digits + 1;
4429 precision_specified = 1;
4430 }
4431 }
4432 /* zero padding to specified precision? */
4433 if (num_of_digits < precision)
4434 number_of_zeros_to_pad = precision - num_of_digits;
4435 }
4436 /* zero padding to specified minimal field width? */
4437 if (!justify_left && zero_padding)
4438 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004439 int n = (int)(min_field_width - (str_arg_l
4440 + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004441 if (n > 0)
4442 number_of_zeros_to_pad += n;
4443 }
4444 break;
4445 }
4446
4447 default:
4448 /* unrecognized conversion specifier, keep format string
4449 * as-is */
4450 zero_padding = 0; /* turn zero padding off for non-numeric
4451 convers. */
4452 justify_left = 1;
4453 min_field_width = 0; /* reset flags */
4454
4455 /* discard the unrecognized conversion, just keep *
4456 * the unrecognized conversion character */
4457 str_arg = p;
4458 str_arg_l = 0;
4459 if (*p != NUL)
4460 str_arg_l++; /* include invalid conversion specifier
4461 unchanged if not at end-of-string */
4462 break;
4463 }
4464
4465 if (*p != NUL)
4466 p++; /* step over the just processed conversion specifier */
4467
4468 /* insert padding to the left as requested by min_field_width;
4469 * this does not include the zero padding in case of numerical
4470 * conversions*/
4471 if (!justify_left)
4472 {
4473 /* left padding with blank or zero */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004474 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004475
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004476 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004477 {
4478 if (str_l < str_m)
4479 {
4480 size_t avail = str_m - str_l;
4481
4482 vim_memset(str + str_l, zero_padding ? '0' : ' ',
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004483 (size_t)pn > avail ? avail : pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004484 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004485 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004486 }
4487 }
4488
4489 /* zero padding as requested by the precision or by the minimal
4490 * field width for numeric conversions required? */
Bram Moolenaarea424162005-06-16 21:51:00 +00004491 if (number_of_zeros_to_pad == 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004492 {
4493 /* will not copy first part of numeric right now, *
4494 * force it to be copied later in its entirety */
4495 zero_padding_insertion_ind = 0;
4496 }
4497 else
4498 {
4499 /* insert first part of numerics (sign or '0x') before zero
4500 * padding */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004501 int zn = (int)zero_padding_insertion_ind;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004502
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004503 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004504 {
4505 if (str_l < str_m)
4506 {
4507 size_t avail = str_m - str_l;
4508
4509 mch_memmove(str + str_l, str_arg,
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004510 (size_t)zn > avail ? avail : zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004511 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004512 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004513 }
4514
4515 /* insert zero padding as requested by the precision or min
4516 * field width */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004517 zn = (int)number_of_zeros_to_pad;
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004518 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004519 {
4520 if (str_l < str_m)
4521 {
4522 size_t avail = str_m-str_l;
4523
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004524 vim_memset(str + str_l, '0',
4525 (size_t)zn > avail ? avail : zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004526 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004527 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004528 }
4529 }
4530
4531 /* insert formatted string
4532 * (or as-is conversion specifier for unknown conversions) */
4533 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004534 int sn = (int)(str_arg_l - zero_padding_insertion_ind);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004535
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004536 if (sn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004537 {
4538 if (str_l < str_m)
4539 {
4540 size_t avail = str_m - str_l;
4541
4542 mch_memmove(str + str_l,
4543 str_arg + zero_padding_insertion_ind,
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004544 (size_t)sn > avail ? avail : sn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004545 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004546 str_l += sn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004547 }
4548 }
4549
4550 /* insert right padding */
4551 if (justify_left)
4552 {
4553 /* right blank padding to the field width */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004554 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004555
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004556 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004557 {
4558 if (str_l < str_m)
4559 {
4560 size_t avail = str_m - str_l;
4561
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004562 vim_memset(str + str_l, ' ',
4563 (size_t)pn > avail ? avail : pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004564 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004565 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004566 }
4567 }
4568 }
4569 }
4570
4571 if (str_m > 0)
4572 {
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004573 /* make sure the string is nul-terminated even at the expense of
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004574 * overwriting the last character (shouldn't happen, but just in case)
4575 * */
4576 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0';
4577 }
4578
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004579#ifdef HAVE_STDARG_H
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004580 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004581 EMSG(_("E767: Too many arguments to printf()"));
4582#endif
4583
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004584 /* Return the number of characters formatted (excluding trailing nul
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004585 * character), that is, the number of characters that would have been
4586 * written to the buffer if it were large enough. */
4587 return (int)str_l;
4588}
4589
4590#endif /* PROTO */