blob: 00947250489cdde4ec8bc121d6618dbfc0be1652 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * message.c: functions for displaying messages on the command line
12 */
13
14#define MESSAGE_FILE /* don't include prototype for smsg() */
15
16#include "vim.h"
17
Bram Moolenaara7241f52008-06-24 20:39:31 +000018#if defined(FEAT_FLOAT) && defined(HAVE_MATH_H)
19# include <math.h>
20#endif
21
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000022static int other_sourcing_name __ARGS((void));
23static char_u *get_emsg_source __ARGS((void));
24static char_u *get_emsg_lnum __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000025static void add_msg_hist __ARGS((char_u *s, int len, int attr));
26static void hit_return_msg __ARGS((void));
27static void msg_home_replace_attr __ARGS((char_u *fname, int attr));
28#ifdef FEAT_MBYTE
29static char_u *screen_puts_mbyte __ARGS((char_u *s, int l, int attr));
30#endif
31static void msg_puts_attr_len __ARGS((char_u *str, int maxlen, int attr));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000032static void msg_puts_display __ARGS((char_u *str, int maxlen, int attr, int recurse));
33static void msg_scroll_up __ARGS((void));
Bram Moolenaarbb15b652005-10-03 21:52:09 +000034static void inc_msg_scrolled __ARGS((void));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000035static void store_sb_text __ARGS((char_u **sb_str, char_u *s, int attr, int *sb_col, int finish));
36static void t_puts __ARGS((int *t_col, char_u *t_s, char_u *s, int attr));
37static void msg_puts_printf __ARGS((char_u *str, int maxlen));
38static int do_more_prompt __ARGS((int typed_char));
Bram Moolenaar071d4272004-06-13 20:20:40 +000039static void msg_screen_putchar __ARGS((int c, int attr));
40static int msg_check_screen __ARGS((void));
41static void redir_write __ARGS((char_u *s, int maxlen));
Bram Moolenaar8b044b32005-05-31 22:05:58 +000042static void verbose_write __ARGS((char_u *s, int maxlen));
Bram Moolenaar071d4272004-06-13 20:20:40 +000043#ifdef FEAT_CON_DIALOG
44static char_u *msg_show_console_dialog __ARGS((char_u *message, char_u *buttons, int dfltbutton));
45static int confirm_msg_used = FALSE; /* displaying confirm_msg */
46static char_u *confirm_msg = NULL; /* ":confirm" message */
47static char_u *confirm_msg_tail; /* tail of confirm_msg */
48#endif
49
50struct msg_hist
51{
52 struct msg_hist *next;
53 char_u *msg;
54 int attr;
55};
56
57static struct msg_hist *first_msg_hist = NULL;
58static struct msg_hist *last_msg_hist = NULL;
59static int msg_hist_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000060
61/*
62 * When writing messages to the screen, there are many different situations.
63 * A number of variables is used to remember the current state:
64 * msg_didany TRUE when messages were written since the last time the
65 * user reacted to a prompt.
66 * Reset: After hitting a key for the hit-return prompt,
67 * hitting <CR> for the command line or input().
68 * Set: When any message is written to the screen.
69 * msg_didout TRUE when something was written to the current line.
70 * Reset: When advancing to the next line, when the current
71 * text can be overwritten.
72 * Set: When any message is written to the screen.
73 * msg_nowait No extra delay for the last drawn message.
74 * Used in normal_cmd() before the mode message is drawn.
75 * emsg_on_display There was an error message recently. Indicates that there
76 * should be a delay before redrawing.
77 * msg_scroll The next message should not overwrite the current one.
78 * msg_scrolled How many lines the screen has been scrolled (because of
79 * messages). Used in update_screen() to scroll the screen
80 * back. Incremented each time the screen scrolls a line.
81 * msg_scrolled_ign TRUE when msg_scrolled is non-zero and msg_puts_attr()
82 * writes something without scrolling should not make
83 * need_wait_return to be set. This is a hack to make ":ts"
84 * work without an extra prompt.
85 * lines_left Number of lines available for messages before the
86 * more-prompt is to be given.
87 * need_wait_return TRUE when the hit-return prompt is needed.
88 * Reset: After giving the hit-return prompt, when the user
89 * has answered some other prompt.
90 * Set: When the ruler or typeahead display is overwritten,
91 * scrolling the screen for some message.
92 * keep_msg Message to be displayed after redrawing the screen, in
93 * main_loop().
94 * This is an allocated string or NULL when not used.
95 */
96
97/*
98 * msg(s) - displays the string 's' on the status line
99 * When terminal not initialized (yet) mch_errmsg(..) is used.
100 * return TRUE if wait_return not called
101 */
102 int
103msg(s)
104 char_u *s;
105{
106 return msg_attr_keep(s, 0, FALSE);
107}
108
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000109#if defined(FEAT_EVAL) || defined(FEAT_X11) || defined(USE_XSMP) \
Bram Moolenaarbbc936b2009-07-01 16:04:58 +0000110 || defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar8b044b32005-05-31 22:05:58 +0000111/*
112 * Like msg() but keep it silent when 'verbosefile' is set.
113 */
114 int
115verb_msg(s)
116 char_u *s;
117{
118 int n;
119
120 verbose_enter();
121 n = msg_attr_keep(s, 0, FALSE);
122 verbose_leave();
123
124 return n;
125}
126#endif
127
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128 int
129msg_attr(s, attr)
130 char_u *s;
131 int attr;
132{
133 return msg_attr_keep(s, attr, FALSE);
134}
135
136 int
137msg_attr_keep(s, attr, keep)
138 char_u *s;
139 int attr;
140 int keep; /* TRUE: set keep_msg if it doesn't scroll */
141{
142 static int entered = 0;
143 int retval;
144 char_u *buf = NULL;
145
146#ifdef FEAT_EVAL
147 if (attr == 0)
148 set_vim_var_string(VV_STATUSMSG, s, -1);
149#endif
150
151 /*
152 * It is possible that displaying a messages causes a problem (e.g.,
153 * when redrawing the window), which causes another message, etc.. To
154 * break this loop, limit the recursiveness to 3 levels.
155 */
156 if (entered >= 3)
157 return TRUE;
158 ++entered;
159
160 /* Add message to history (unless it's a repeated kept message or a
161 * truncated message) */
162 if (s != keep_msg
163 || (*s != '<'
164 && last_msg_hist != NULL
165 && last_msg_hist->msg != NULL
166 && STRCMP(s, last_msg_hist->msg)))
167 add_msg_hist(s, -1, attr);
168
169 /* When displaying keep_msg, don't let msg_start() free it, caller must do
170 * that. */
171 if (s == keep_msg)
172 keep_msg = NULL;
173
174 /* Truncate the message if needed. */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000175 msg_start();
176 buf = msg_strtrunc(s, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177 if (buf != NULL)
178 s = buf;
179
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 msg_outtrans_attr(s, attr);
181 msg_clr_eos();
182 retval = msg_end();
183
184 if (keep && retval && vim_strsize(s) < (int)(Rows - cmdline_row - 1)
185 * Columns + sc_col)
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000186 set_keep_msg(s, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187
188 vim_free(buf);
189 --entered;
190 return retval;
191}
192
193/*
194 * Truncate a string such that it can be printed without causing a scroll.
195 * Returns an allocated string or NULL when no truncating is done.
196 */
197 char_u *
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000198msg_strtrunc(s, force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 char_u *s;
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000200 int force; /* always truncate */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201{
202 char_u *buf = NULL;
203 int len;
204 int room;
205
206 /* May truncate message to avoid a hit-return prompt */
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000207 if ((!msg_scroll && !need_wait_return && shortmess(SHM_TRUNCALL)
208 && !exmode_active && msg_silent == 0) || force)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209 {
210 len = vim_strsize(s);
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000211 if (msg_scrolled != 0)
Bram Moolenaar7ca30432005-09-09 19:44:31 +0000212 /* Use all the columns. */
213 room = (int)(Rows - msg_row) * Columns - 1;
214 else
215 /* Use up to 'showcmd' column. */
216 room = (int)(Rows - msg_row - 1) * Columns + sc_col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 if (len > room && room > 0)
218 {
219#ifdef FEAT_MBYTE
220 if (enc_utf8)
221 /* may have up to 18 bytes per cell (6 per char, up to two
222 * composing chars) */
223 buf = alloc((room + 2) * 18);
224 else if (enc_dbcs == DBCS_JPNU)
225 /* may have up to 2 bytes per cell for euc-jp */
226 buf = alloc((room + 2) * 2);
227 else
228#endif
229 buf = alloc(room + 2);
230 if (buf != NULL)
231 trunc_string(s, buf, room);
232 }
233 }
234 return buf;
235}
236
237/*
238 * Truncate a string "s" to "buf" with cell width "room".
239 * "s" and "buf" may be equal.
240 */
241 void
242trunc_string(s, buf, room)
243 char_u *s;
244 char_u *buf;
245 int room;
246{
247 int half;
248 int len;
249 int e;
250 int i;
251 int n;
252
253 room -= 3;
254 half = room / 2;
255 len = 0;
256
257 /* First part: Start of the string. */
258 for (e = 0; len < half; ++e)
259 {
260 if (s[e] == NUL)
261 {
262 /* text fits without truncating! */
263 buf[e] = NUL;
264 return;
265 }
266 n = ptr2cells(s + e);
267 if (len + n >= half)
268 break;
269 len += n;
270 buf[e] = s[e];
271#ifdef FEAT_MBYTE
272 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000273 for (n = (*mb_ptr2len)(s + e); --n > 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274 {
275 ++e;
276 buf[e] = s[e];
277 }
278#endif
279 }
280
281 /* Last part: End of the string. */
282 i = e;
283#ifdef FEAT_MBYTE
284 if (enc_dbcs != 0)
285 {
286 /* For DBCS going backwards in a string is slow, but
287 * computing the cell width isn't too slow: go forward
288 * until the rest fits. */
289 n = vim_strsize(s + i);
290 while (len + n > room)
291 {
292 n -= ptr2cells(s + i);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000293 i += (*mb_ptr2len)(s + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 }
295 }
296 else if (enc_utf8)
297 {
298 /* For UTF-8 we can go backwards easily. */
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000299 half = i = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 for (;;)
301 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000302 do
303 half = half - (*mb_head_off)(s, s + half - 1) - 1;
304 while (utf_iscomposing(utf_ptr2char(s + half)) && half > 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 n = ptr2cells(s + half);
306 if (len + n > room)
307 break;
308 len += n;
309 i = half;
310 }
311 }
312 else
313#endif
314 {
315 for (i = (int)STRLEN(s); len + (n = ptr2cells(s + i - 1)) <= room; --i)
316 len += n;
317 }
318
319 /* Set the middle and copy the last part. */
320 mch_memmove(buf + e, "...", (size_t)3);
Bram Moolenaara7241f52008-06-24 20:39:31 +0000321 STRMOVE(buf + e + 3, s + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322}
323
324/*
325 * Automatic prototype generation does not understand this function.
326 * Note: Caller of smgs() and smsg_attr() must check the resulting string is
327 * shorter than IOSIZE!!!
328 */
329#ifndef PROTO
330# ifndef HAVE_STDARG_H
331
332int
333#ifdef __BORLANDC__
334_RTLENTRYF
335#endif
336smsg __ARGS((char_u *, long, long, long,
337 long, long, long, long, long, long, long));
338int
339#ifdef __BORLANDC__
340_RTLENTRYF
341#endif
342smsg_attr __ARGS((int, char_u *, long, long, long,
343 long, long, long, long, long, long, long));
344
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000345int vim_snprintf __ARGS((char *, size_t, char *, long, long, long,
346 long, long, long, long, long, long, long));
347
348/*
349 * smsg(str, arg, ...) is like using sprintf(buf, str, arg, ...) and then
350 * calling msg(buf).
351 * The buffer used is IObuff, the message is truncated at IOSIZE.
352 */
353
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354/* VARARGS */
355 int
356#ifdef __BORLANDC__
357_RTLENTRYF
358#endif
359smsg(s, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
360 char_u *s;
361 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
362{
363 return smsg_attr(0, s, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
364}
365
366/* VARARGS */
367 int
368#ifdef __BORLANDC__
369_RTLENTRYF
370#endif
371smsg_attr(attr, s, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
372 int attr;
373 char_u *s;
374 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
375{
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000376 vim_snprintf((char *)IObuff, IOSIZE, (char *)s,
377 a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 return msg_attr(IObuff, attr);
379}
380
381# else /* HAVE_STDARG_H */
382
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000383int vim_snprintf(char *str, size_t str_m, char *fmt, ...);
Bram Moolenaar9c13b352005-05-19 20:53:52 +0000384
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385 int
386#ifdef __BORLANDC__
387_RTLENTRYF
388#endif
389smsg(char_u *s, ...)
390{
391 va_list arglist;
392
393 va_start(arglist, s);
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000394 vim_vsnprintf((char *)IObuff, IOSIZE, (char *)s, arglist, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 va_end(arglist);
396 return msg(IObuff);
397}
398
399 int
400#ifdef __BORLANDC__
401_RTLENTRYF
402#endif
403smsg_attr(int attr, char_u *s, ...)
404{
405 va_list arglist;
406
407 va_start(arglist, s);
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000408 vim_vsnprintf((char *)IObuff, IOSIZE, (char *)s, arglist, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 va_end(arglist);
410 return msg_attr(IObuff, attr);
411}
412
413# endif /* HAVE_STDARG_H */
414#endif
415
416/*
417 * Remember the last sourcing name/lnum used in an error message, so that it
418 * isn't printed each time when it didn't change.
419 */
420static int last_sourcing_lnum = 0;
421static char_u *last_sourcing_name = NULL;
422
423/*
424 * Reset the last used sourcing name/lnum. Makes sure it is displayed again
425 * for the next error message;
426 */
Bram Moolenaar4eec5ec2005-06-26 22:26:21 +0000427 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428reset_last_sourcing()
429{
430 vim_free(last_sourcing_name);
431 last_sourcing_name = NULL;
432 last_sourcing_lnum = 0;
433}
434
435/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000436 * Return TRUE if "sourcing_name" differs from "last_sourcing_name".
437 */
438 static int
439other_sourcing_name()
440{
441 if (sourcing_name != NULL)
442 {
443 if (last_sourcing_name != NULL)
444 return STRCMP(sourcing_name, last_sourcing_name) != 0;
445 return TRUE;
446 }
447 return FALSE;
448}
449
450/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451 * Get the message about the source, as used for an error message.
452 * Returns an allocated string with room for one more character.
453 * Returns NULL when no message is to be given.
454 */
455 static char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000456get_emsg_source()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457{
458 char_u *Buf, *p;
459
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000460 if (sourcing_name != NULL && other_sourcing_name())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 {
462 p = (char_u *)_("Error detected while processing %s:");
463 Buf = alloc((unsigned)(STRLEN(sourcing_name) + STRLEN(p)));
464 if (Buf != NULL)
465 sprintf((char *)Buf, (char *)p, sourcing_name);
466 return Buf;
467 }
468 return NULL;
469}
470
471/*
472 * Get the message about the source lnum, as used for an error message.
473 * Returns an allocated string with room for one more character.
474 * Returns NULL when no message is to be given.
475 */
476 static char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000477get_emsg_lnum()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478{
479 char_u *Buf, *p;
480
481 /* lnum is 0 when executing a command from the command line
482 * argument, we don't want a line number then */
483 if (sourcing_name != NULL
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000484 && (other_sourcing_name() || sourcing_lnum != last_sourcing_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 && sourcing_lnum != 0)
486 {
487 p = (char_u *)_("line %4ld:");
488 Buf = alloc((unsigned)(STRLEN(p) + 20));
489 if (Buf != NULL)
490 sprintf((char *)Buf, (char *)p, (long)sourcing_lnum);
491 return Buf;
492 }
493 return NULL;
494}
495
496/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000497 * Display name and line number for the source of an error.
498 * Remember the file name and line number, so that for the next error the info
499 * is only displayed if it changed.
500 */
501 void
502msg_source(attr)
503 int attr;
504{
505 char_u *p;
506
507 ++no_wait_return;
508 p = get_emsg_source();
509 if (p != NULL)
510 {
511 msg_attr(p, attr);
512 vim_free(p);
513 }
514 p = get_emsg_lnum();
515 if (p != NULL)
516 {
517 msg_attr(p, hl_attr(HLF_N));
518 vim_free(p);
519 last_sourcing_lnum = sourcing_lnum; /* only once for each line */
520 }
521
522 /* remember the last sourcing name printed, also when it's empty */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000523 if (sourcing_name == NULL || other_sourcing_name())
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000524 {
525 vim_free(last_sourcing_name);
526 if (sourcing_name == NULL)
527 last_sourcing_name = NULL;
528 else
529 last_sourcing_name = vim_strsave(sourcing_name);
530 }
531 --no_wait_return;
532}
533
534/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000535 * Return TRUE if not giving error messages right now:
536 * If "emsg_off" is set: no error messages at the moment.
537 * If "msg" is in 'debug': do error message but without side effects.
538 * If "emsg_skip" is set: never do error messages.
539 */
540 int
541emsg_not_now()
542{
543 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL
544 && vim_strchr(p_debug, 't') == NULL)
545#ifdef FEAT_EVAL
546 || emsg_skip > 0
547#endif
548 )
549 return TRUE;
550 return FALSE;
551}
552
553/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 * emsg() - display an error message
555 *
556 * Rings the bell, if appropriate, and calls message() to do the real work
557 * When terminal not initialized (yet) mch_errmsg(..) is used.
558 *
559 * return TRUE if wait_return not called
560 */
561 int
562emsg(s)
563 char_u *s;
564{
565 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 char_u *p;
567#ifdef FEAT_EVAL
568 int ignore = FALSE;
569 int severe;
570#endif
571
Bram Moolenaarfd0e7562011-01-04 19:25:50 +0100572 /* Skip this if not giving error messages at the moment. */
573 if (emsg_not_now())
574 return TRUE;
575
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 called_emsg = TRUE;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000577 ex_exitval = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578
579 /*
Bram Moolenaar1d817d02005-01-16 21:56:27 +0000580 * If "emsg_severe" is TRUE: When an error exception is to be thrown,
581 * prefer this message over previous messages for the same command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 */
583#ifdef FEAT_EVAL
584 severe = emsg_severe;
585 emsg_severe = FALSE;
586#endif
587
Bram Moolenaar57657d82006-04-21 22:12:41 +0000588 if (!emsg_off || vim_strchr(p_debug, 't') != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 {
590#ifdef FEAT_EVAL
591 /*
592 * Cause a throw of an error exception if appropriate. Don't display
593 * the error message in this case. (If no matching catch clause will
594 * be found, the message will be displayed later on.) "ignore" is set
595 * when the message should be ignored completely (used for the
596 * interrupt message).
597 */
598 if (cause_errthrow(s, severe, &ignore) == TRUE)
599 {
600 if (!ignore)
601 did_emsg = TRUE;
602 return TRUE;
603 }
604
605 /* set "v:errmsg", also when using ":silent! cmd" */
606 set_vim_var_string(VV_ERRMSG, s, -1);
607#endif
608
609 /*
Bram Moolenaara7241f52008-06-24 20:39:31 +0000610 * When using ":silent! cmd" ignore error messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 * But do write it to the redirection file.
612 */
613 if (emsg_silent != 0)
614 {
615 msg_start();
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000616 p = get_emsg_source();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617 if (p != NULL)
618 {
619 STRCAT(p, "\n");
620 redir_write(p, -1);
621 vim_free(p);
622 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000623 p = get_emsg_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 if (p != NULL)
625 {
626 STRCAT(p, "\n");
627 redir_write(p, -1);
628 vim_free(p);
629 }
630 redir_write(s, -1);
631 return TRUE;
632 }
633
634 /* Reset msg_silent, an error causes messages to be switched back on. */
635 msg_silent = 0;
636 cmd_silent = FALSE;
637
638 if (global_busy) /* break :global command */
639 ++global_busy;
640
641 if (p_eb)
642 beep_flush(); /* also includes flush_buffers() */
643 else
644 flush_buffers(FALSE); /* flush internal buffers */
645 did_emsg = TRUE; /* flag for DoOneCmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 }
647
648 emsg_on_display = TRUE; /* remember there is an error message */
649 ++msg_scroll; /* don't overwrite a previous message */
650 attr = hl_attr(HLF_E); /* set highlight mode for error messages */
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000651 if (msg_scrolled != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652 need_wait_return = TRUE; /* needed in case emsg() is called after
653 * wait_return has reset need_wait_return
654 * and a redraw is expected because
655 * msg_scrolled is non-zero */
656
657 /*
658 * Display name and line number for the source of the error.
659 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000660 msg_source(attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661
662 /*
663 * Display the error message itself.
664 */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000665 msg_nowait = FALSE; /* wait for this msg */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 return msg_attr(s, attr);
667}
668
669/*
670 * Print an error message with one "%s" and one string argument.
671 */
672 int
673emsg2(s, a1)
674 char_u *s, *a1;
675{
676 return emsg3(s, a1, NULL);
677}
678
Bram Moolenaarea424162005-06-16 21:51:00 +0000679/* emsg3() and emsgn() are in misc2.c to avoid warnings for the prototypes. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680
Bram Moolenaardf177f62005-02-22 08:39:57 +0000681 void
682emsg_invreg(name)
683 int name;
684{
685 EMSG2(_("E354: Invalid register name: '%s'"), transchar(name));
686}
687
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688/*
689 * Like msg(), but truncate to a single line if p_shm contains 't', or when
690 * "force" is TRUE. This truncates in another way as for normal messages.
691 * Careful: The string may be changed by msg_may_trunc()!
692 * Returns a pointer to the printed message, if wait_return() not called.
693 */
694 char_u *
695msg_trunc_attr(s, force, attr)
696 char_u *s;
697 int force;
698 int attr;
699{
700 int n;
701
702 /* Add message to history before truncating */
703 add_msg_hist(s, -1, attr);
704
705 s = msg_may_trunc(force, s);
706
707 msg_hist_off = TRUE;
708 n = msg_attr(s, attr);
709 msg_hist_off = FALSE;
710
711 if (n)
712 return s;
713 return NULL;
714}
715
716/*
717 * Check if message "s" should be truncated at the start (for filenames).
718 * Return a pointer to where the truncated message starts.
719 * Note: May change the message by replacing a character with '<'.
720 */
721 char_u *
722msg_may_trunc(force, s)
723 int force;
724 char_u *s;
725{
726 int n;
727 int room;
728
729 room = (int)(Rows - cmdline_row - 1) * Columns + sc_col - 1;
730 if ((force || (shortmess(SHM_TRUNC) && !exmode_active))
731 && (n = (int)STRLEN(s) - room) > 0)
732 {
733#ifdef FEAT_MBYTE
734 if (has_mbyte)
735 {
736 int size = vim_strsize(s);
737
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +0000738 /* There may be room anyway when there are multibyte chars. */
739 if (size <= room)
740 return s;
741
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 for (n = 0; size >= room; )
743 {
744 size -= (*mb_ptr2cells)(s + n);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000745 n += (*mb_ptr2len)(s + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 }
747 --n;
748 }
749#endif
750 s += n;
751 *s = '<';
752 }
753 return s;
754}
755
756 static void
757add_msg_hist(s, len, attr)
758 char_u *s;
759 int len; /* -1 for undetermined length */
760 int attr;
761{
762 struct msg_hist *p;
763
764 if (msg_hist_off || msg_silent != 0)
765 return;
766
767 /* Don't let the message history get too big */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000768 while (msg_hist_len > MAX_MSG_HIST_LEN)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000769 (void)delete_first_msg();
770
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 /* allocate an entry and add the message at the end of the history */
772 p = (struct msg_hist *)alloc((int)sizeof(struct msg_hist));
773 if (p != NULL)
774 {
775 if (len < 0)
776 len = (int)STRLEN(s);
777 /* remove leading and trailing newlines */
778 while (len > 0 && *s == '\n')
779 {
780 ++s;
781 --len;
782 }
783 while (len > 0 && s[len - 1] == '\n')
784 --len;
785 p->msg = vim_strnsave(s, len);
786 p->next = NULL;
787 p->attr = attr;
788 if (last_msg_hist != NULL)
789 last_msg_hist->next = p;
790 last_msg_hist = p;
791 if (first_msg_hist == NULL)
792 first_msg_hist = last_msg_hist;
793 ++msg_hist_len;
794 }
795}
796
797/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000798 * Delete the first (oldest) message from the history.
799 * Returns FAIL if there are no messages.
800 */
801 int
802delete_first_msg()
803{
804 struct msg_hist *p;
805
806 if (msg_hist_len <= 0)
807 return FAIL;
808 p = first_msg_hist;
809 first_msg_hist = p->next;
Bram Moolenaara7241f52008-06-24 20:39:31 +0000810 if (first_msg_hist == NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200811 last_msg_hist = NULL; /* history is empty */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000812 vim_free(p->msg);
813 vim_free(p);
814 --msg_hist_len;
815 return OK;
816}
817
818/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 * ":messages" command.
820 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 void
822ex_messages(eap)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +0000823 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824{
825 struct msg_hist *p;
826 char_u *s;
827
828 msg_hist_off = TRUE;
829
830 s = mch_getenv((char_u *)"LANG");
831 if (s != NULL && *s != NUL)
832 msg_attr((char_u *)
833 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
834 hl_attr(HLF_T));
835
Bram Moolenaar5c2e0f22007-09-13 20:05:18 +0000836 for (p = first_msg_hist; p != NULL && !got_int; p = p->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 if (p->msg != NULL)
838 msg_attr(p->msg, p->attr);
839
840 msg_hist_off = FALSE;
841}
842
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000843#if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844/*
845 * Call this after prompting the user. This will avoid a hit-return message
846 * and a delay.
847 */
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000848 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849msg_end_prompt()
850{
851 need_wait_return = FALSE;
852 emsg_on_display = FALSE;
853 cmdline_row = msg_row;
854 msg_col = 0;
855 msg_clr_eos();
856}
857#endif
858
859/*
860 * wait for the user to hit a key (normally a return)
861 * if 'redraw' is TRUE, clear and redraw the screen
862 * if 'redraw' is FALSE, just redraw the screen
863 * if 'redraw' is -1, don't redraw at all
864 */
865 void
866wait_return(redraw)
867 int redraw;
868{
869 int c;
870 int oldState;
871 int tmpState;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 int had_got_int;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873
874 if (redraw == TRUE)
875 must_redraw = CLEAR;
876
877 /* If using ":silent cmd", don't wait for a return. Also don't set
878 * need_wait_return to do it later. */
879 if (msg_silent != 0)
880 return;
881
882/*
883 * With the global command (and some others) we only need one return at the
884 * end. Adjust cmdline_row to avoid the next message overwriting the last one.
885 * When inside vgetc(), we can't wait for a typed character at all.
886 */
Bram Moolenaar5555acc2006-04-07 21:33:12 +0000887 if (vgetc_busy > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888 return;
889 if (no_wait_return)
890 {
891 need_wait_return = TRUE;
892 if (!exmode_active)
893 cmdline_row = msg_row;
894 return;
895 }
896
897 redir_off = TRUE; /* don't redirect this message */
898 oldState = State;
899 if (quit_more)
900 {
901 c = CAR; /* just pretend CR was hit */
902 quit_more = FALSE;
903 got_int = FALSE;
904 }
905 else if (exmode_active)
906 {
907 MSG_PUTS(" "); /* make sure the cursor is on the right line */
908 c = CAR; /* no need for a return in ex mode */
909 got_int = FALSE;
910 }
911 else
912 {
913 /* Make sure the hit-return prompt is on screen when 'guioptions' was
914 * just changed. */
915 screenalloc(FALSE);
916
917 State = HITRETURN;
918#ifdef FEAT_MOUSE
919 setmouse();
920#endif
921#ifdef USE_ON_FLY_SCROLL
922 dont_scroll = TRUE; /* disallow scrolling here */
923#endif
924 hit_return_msg();
925
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 do
927 {
928 /* Remember "got_int", if it is set vgetc() probably returns a
929 * CTRL-C, but we need to loop then. */
930 had_got_int = got_int;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000931
932 /* Don't do mappings here, we put the character back in the
933 * typeahead buffer. */
934 ++no_mapping;
935 ++allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 c = safe_vgetc();
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000937 if (had_got_int && !global_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 got_int = FALSE;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000939 --no_mapping;
940 --allow_keys;
941
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942#ifdef FEAT_CLIPBOARD
943 /* Strange way to allow copying (yanking) a modeless selection at
944 * the hit-enter prompt. Use CTRL-Y, because the same is used in
945 * Cmdline-mode and it's harmless when there is no selection. */
946 if (c == Ctrl_Y && clip_star.state == SELECT_DONE)
947 {
948 clip_copy_modeless_selection(TRUE);
949 c = K_IGNORE;
950 }
951#endif
Bram Moolenaarc27c8d52007-09-06 10:54:51 +0000952
Bram Moolenaare1438bb2006-03-01 22:01:55 +0000953 /*
954 * Allow scrolling back in the messages.
955 * Also accept scroll-down commands when messages fill the screen,
956 * to avoid that typing one 'j' too many makes the messages
957 * disappear.
958 */
959 if (p_more && !p_cp)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000960 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +0000961 if (c == 'b' || c == 'k' || c == 'u' || c == 'g' || c == K_UP)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000962 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +0000963 /* scroll back to show older messages */
964 do_more_prompt(c);
965 if (quit_more)
966 {
967 c = CAR; /* just pretend CR was hit */
968 quit_more = FALSE;
969 got_int = FALSE;
970 }
971 else
972 {
973 c = K_IGNORE;
974 hit_return_msg();
975 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000976 }
Bram Moolenaare1438bb2006-03-01 22:01:55 +0000977 else if (msg_scrolled > Rows - 2
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +0000978 && (c == 'j' || c == K_DOWN || c == 'd' || c == 'f'))
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000979 c = K_IGNORE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 } while ((had_got_int && c == Ctrl_C)
982 || c == K_IGNORE
983#ifdef FEAT_GUI
984 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR
985#endif
986#ifdef FEAT_MOUSE
987 || c == K_LEFTDRAG || c == K_LEFTRELEASE
988 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE
989 || c == K_RIGHTDRAG || c == K_RIGHTRELEASE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200990 || c == K_MOUSELEFT || c == K_MOUSERIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 || c == K_MOUSEDOWN || c == K_MOUSEUP
992 || (!mouse_has(MOUSE_RETURN)
993 && mouse_row < msg_row
994 && (c == K_LEFTMOUSE
995 || c == K_MIDDLEMOUSE
996 || c == K_RIGHTMOUSE
997 || c == K_X1MOUSE
998 || c == K_X2MOUSE))
999#endif
1000 );
1001 ui_breakcheck();
1002#ifdef FEAT_MOUSE
1003 /*
1004 * Avoid that the mouse-up event causes visual mode to start.
1005 */
1006 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE
1007 || c == K_X1MOUSE || c == K_X2MOUSE)
1008 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0);
1009 else
1010#endif
1011 if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C)
1012 {
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001013 /* Put the character back in the typeahead buffer. Don't use the
1014 * stuff buffer, because lmaps wouldn't work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00001015 ins_char_typebuf(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 do_redraw = TRUE; /* need a redraw even though there is
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +00001017 typeahead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 }
1020 redir_off = FALSE;
1021
1022 /*
1023 * If the user hits ':', '?' or '/' we get a command line from the next
1024 * line.
1025 */
1026 if (c == ':' || c == '?' || c == '/')
1027 {
1028 if (!exmode_active)
1029 cmdline_row = msg_row;
1030 skip_redraw = TRUE; /* skip redraw once */
1031 do_redraw = FALSE;
1032 }
1033
1034 /*
1035 * If the window size changed set_shellsize() will redraw the screen.
1036 * Otherwise the screen is only redrawn if 'redraw' is set and no ':'
1037 * typed.
1038 */
1039 tmpState = State;
1040 State = oldState; /* restore State before set_shellsize */
1041#ifdef FEAT_MOUSE
1042 setmouse();
1043#endif
1044 msg_check();
1045
1046#if defined(UNIX) || defined(VMS)
1047 /*
1048 * When switching screens, we need to output an extra newline on exit.
1049 */
1050 if (swapping_screen() && !termcap_active)
1051 newline_on_exit = TRUE;
1052#endif
1053
1054 need_wait_return = FALSE;
1055 did_wait_return = TRUE;
1056 emsg_on_display = FALSE; /* can delete error message now */
1057 lines_left = -1; /* reset lines_left at next msg_start() */
1058 reset_last_sourcing();
1059 if (keep_msg != NULL && vim_strsize(keep_msg) >=
1060 (Rows - cmdline_row - 1) * Columns + sc_col)
1061 {
1062 vim_free(keep_msg);
1063 keep_msg = NULL; /* don't redisplay message, it's too long */
1064 }
1065
1066 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */
1067 {
1068 starttermcap(); /* start termcap before redrawing */
1069 shell_resized();
1070 }
1071 else if (!skip_redraw
1072 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1)))
1073 {
1074 starttermcap(); /* start termcap before redrawing */
1075 redraw_later(VALID);
1076 }
1077}
1078
1079/*
1080 * Write the hit-return prompt.
1081 */
1082 static void
1083hit_return_msg()
1084{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001085 int save_p_more = p_more;
1086
1087 p_more = FALSE; /* don't want see this message when scrolling back */
1088 if (msg_didout) /* start on a new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 msg_putchar('\n');
1090 if (got_int)
1091 MSG_PUTS(_("Interrupt: "));
1092
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001093 MSG_PUTS_ATTR(_("Press ENTER or type command to continue"), hl_attr(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 if (!msg_use_printf())
1095 msg_clr_eos();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001096 p_more = save_p_more;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097}
1098
1099/*
1100 * Set "keep_msg" to "s". Free the old value and check for NULL pointer.
1101 */
1102 void
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001103set_keep_msg(s, attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104 char_u *s;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001105 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106{
1107 vim_free(keep_msg);
1108 if (s != NULL && msg_silent == 0)
1109 keep_msg = vim_strsave(s);
1110 else
1111 keep_msg = NULL;
Bram Moolenaaraab21c32005-01-25 21:46:35 +00001112 keep_msg_more = FALSE;
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001113 keep_msg_attr = attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114}
1115
Bram Moolenaar030f0df2006-02-21 22:02:53 +00001116#if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1117/*
1118 * If there currently is a message being displayed, set "keep_msg" to it, so
1119 * that it will be displayed again after redraw.
1120 */
1121 void
1122set_keep_msg_from_hist()
1123{
1124 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0
1125 && (State & NORMAL))
1126 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr);
1127}
1128#endif
1129
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130/*
1131 * Prepare for outputting characters in the command line.
1132 */
1133 void
1134msg_start()
1135{
1136 int did_return = FALSE;
1137
Bram Moolenaare4ce65d2010-08-04 20:12:32 +02001138 if (!msg_silent)
1139 {
1140 vim_free(keep_msg);
1141 keep_msg = NULL; /* don't display old message now */
1142 }
Bram Moolenaara7241f52008-06-24 20:39:31 +00001143
1144#ifdef FEAT_EVAL
1145 if (need_clr_eos)
1146 {
1147 /* Halfway an ":echo" command and getting an (error) message: clear
1148 * any text from the command. */
1149 need_clr_eos = FALSE;
1150 msg_clr_eos();
1151 }
1152#endif
1153
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 if (!msg_scroll && full_screen) /* overwrite last message */
1155 {
1156 msg_row = cmdline_row;
1157 msg_col =
1158#ifdef FEAT_RIGHTLEFT
1159 cmdmsg_rl ? Columns - 1 :
1160#endif
1161 0;
1162 }
1163 else if (msg_didout) /* start message on next line */
1164 {
1165 msg_putchar('\n');
1166 did_return = TRUE;
1167 if (exmode_active != EXMODE_NORMAL)
1168 cmdline_row = msg_row;
1169 }
1170 if (!msg_didany || lines_left < 0)
1171 msg_starthere();
1172 if (msg_silent == 0)
1173 {
1174 msg_didout = FALSE; /* no output on current line yet */
1175 cursor_off();
1176 }
1177
1178 /* when redirecting, may need to start a new line. */
1179 if (!did_return)
1180 redir_write((char_u *)"\n", -1);
1181}
1182
1183/*
1184 * Note that the current msg position is where messages start.
1185 */
1186 void
1187msg_starthere()
1188{
1189 lines_left = cmdline_row;
1190 msg_didany = FALSE;
1191}
1192
1193 void
1194msg_putchar(c)
1195 int c;
1196{
1197 msg_putchar_attr(c, 0);
1198}
1199
1200 void
1201msg_putchar_attr(c, attr)
1202 int c;
1203 int attr;
1204{
1205#ifdef FEAT_MBYTE
1206 char_u buf[MB_MAXBYTES + 1];
1207#else
1208 char_u buf[4];
1209#endif
1210
1211 if (IS_SPECIAL(c))
1212 {
1213 buf[0] = K_SPECIAL;
1214 buf[1] = K_SECOND(c);
1215 buf[2] = K_THIRD(c);
1216 buf[3] = NUL;
1217 }
1218 else
1219 {
1220#ifdef FEAT_MBYTE
1221 buf[(*mb_char2bytes)(c, buf)] = NUL;
1222#else
1223 buf[0] = c;
1224 buf[1] = NUL;
1225#endif
1226 }
1227 msg_puts_attr(buf, attr);
1228}
1229
1230 void
1231msg_outnum(n)
1232 long n;
1233{
1234 char_u buf[20];
1235
1236 sprintf((char *)buf, "%ld", n);
1237 msg_puts(buf);
1238}
1239
1240 void
1241msg_home_replace(fname)
1242 char_u *fname;
1243{
1244 msg_home_replace_attr(fname, 0);
1245}
1246
1247#if defined(FEAT_FIND_ID) || defined(PROTO)
1248 void
1249msg_home_replace_hl(fname)
1250 char_u *fname;
1251{
1252 msg_home_replace_attr(fname, hl_attr(HLF_D));
1253}
1254#endif
1255
1256 static void
1257msg_home_replace_attr(fname, attr)
1258 char_u *fname;
1259 int attr;
1260{
1261 char_u *name;
1262
1263 name = home_replace_save(NULL, fname);
1264 if (name != NULL)
1265 msg_outtrans_attr(name, attr);
1266 vim_free(name);
1267}
1268
1269/*
1270 * Output 'len' characters in 'str' (including NULs) with translation
1271 * if 'len' is -1, output upto a NUL character.
1272 * Use attributes 'attr'.
1273 * Return the number of characters it takes on the screen.
1274 */
1275 int
1276msg_outtrans(str)
1277 char_u *str;
1278{
1279 return msg_outtrans_attr(str, 0);
1280}
1281
1282 int
1283msg_outtrans_attr(str, attr)
1284 char_u *str;
1285 int attr;
1286{
1287 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr);
1288}
1289
1290 int
1291msg_outtrans_len(str, len)
1292 char_u *str;
1293 int len;
1294{
1295 return msg_outtrans_len_attr(str, len, 0);
1296}
1297
1298/*
1299 * Output one character at "p". Return pointer to the next character.
1300 * Handles multi-byte characters.
1301 */
1302 char_u *
1303msg_outtrans_one(p, attr)
1304 char_u *p;
1305 int attr;
1306{
1307#ifdef FEAT_MBYTE
1308 int l;
1309
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001310 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 {
1312 msg_outtrans_len_attr(p, l, attr);
1313 return p + l;
1314 }
1315#endif
1316 msg_puts_attr(transchar_byte(*p), attr);
1317 return p + 1;
1318}
1319
1320 int
1321msg_outtrans_len_attr(msgstr, len, attr)
1322 char_u *msgstr;
1323 int len;
1324 int attr;
1325{
1326 int retval = 0;
1327 char_u *str = msgstr;
1328 char_u *plain_start = msgstr;
1329 char_u *s;
1330#ifdef FEAT_MBYTE
1331 int mb_l;
1332 int c;
1333#endif
1334
1335 /* if MSG_HIST flag set, add message to history */
1336 if (attr & MSG_HIST)
1337 {
1338 add_msg_hist(str, len, attr);
1339 attr &= ~MSG_HIST;
1340 }
1341
1342#ifdef FEAT_MBYTE
1343 /* If the string starts with a composing character first draw a space on
1344 * which the composing char can be drawn. */
1345 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr)))
1346 msg_puts_attr((char_u *)" ", attr);
1347#endif
1348
1349 /*
1350 * Go over the string. Special characters are translated and printed.
1351 * Normal characters are printed several at a time.
1352 */
1353 while (--len >= 0)
1354 {
1355#ifdef FEAT_MBYTE
1356 if (enc_utf8)
1357 /* Don't include composing chars after the end. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001358 mb_l = utfc_ptr2len_len(str, len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001360 mb_l = (*mb_ptr2len)(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 else
1362 mb_l = 1;
1363 if (has_mbyte && mb_l > 1)
1364 {
1365 c = (*mb_ptr2char)(str);
1366 if (vim_isprintc(c))
1367 /* printable multi-byte char: count the cells. */
1368 retval += (*mb_ptr2cells)(str);
1369 else
1370 {
1371 /* unprintable multi-byte char: print the printable chars so
1372 * far and the translation of the unprintable char. */
1373 if (str > plain_start)
1374 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1375 attr);
1376 plain_start = str + mb_l;
1377 msg_puts_attr(transchar(c), attr == 0 ? hl_attr(HLF_8) : attr);
1378 retval += char2cells(c);
1379 }
1380 len -= mb_l - 1;
1381 str += mb_l;
1382 }
1383 else
1384#endif
1385 {
1386 s = transchar_byte(*str);
1387 if (s[1] != NUL)
1388 {
1389 /* unprintable char: print the printable chars so far and the
1390 * translation of the unprintable char. */
1391 if (str > plain_start)
1392 msg_puts_attr_len(plain_start, (int)(str - plain_start),
1393 attr);
1394 plain_start = str + 1;
1395 msg_puts_attr(s, attr == 0 ? hl_attr(HLF_8) : attr);
Bram Moolenaarc236c162008-07-13 17:41:49 +00001396 retval += (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 }
Bram Moolenaarb3c722a2008-07-06 17:16:02 +00001398 else
1399 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 ++str;
1401 }
1402 }
1403
1404 if (str > plain_start)
1405 /* print the printable chars at the end */
1406 msg_puts_attr_len(plain_start, (int)(str - plain_start), attr);
1407
1408 return retval;
1409}
1410
1411#if defined(FEAT_QUICKFIX) || defined(PROTO)
1412 void
1413msg_make(arg)
1414 char_u *arg;
1415{
1416 int i;
1417 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB";
1418
1419 arg = skipwhite(arg);
1420 for (i = 5; *arg && i >= 0; --i)
1421 if (*arg++ != str[i])
1422 break;
1423 if (i < 0)
1424 {
1425 msg_putchar('\n');
1426 for (i = 0; rs[i]; ++i)
1427 msg_putchar(rs[i] - 3);
1428 }
1429}
1430#endif
1431
1432/*
1433 * Output the string 'str' upto a NUL character.
1434 * Return the number of characters it takes on the screen.
1435 *
1436 * If K_SPECIAL is encountered, then it is taken in conjunction with the
1437 * following character and shown as <F1>, <S-Up> etc. Any other character
1438 * which is not printable shown in <> form.
1439 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>.
1440 * If a character is displayed in one of these special ways, is also
1441 * highlighted (its highlight name is '8' in the p_hl variable).
1442 * Otherwise characters are not highlighted.
1443 * This function is used to show mappings, where we want to see how to type
1444 * the character/string -- webb
1445 */
1446 int
1447msg_outtrans_special(strstart, from)
1448 char_u *strstart;
1449 int from; /* TRUE for lhs of a mapping */
1450{
1451 char_u *str = strstart;
1452 int retval = 0;
1453 char_u *string;
1454 int attr;
1455 int len;
1456
1457 attr = hl_attr(HLF_8);
1458 while (*str != NUL)
1459 {
1460 /* Leading and trailing spaces need to be displayed in <> form. */
1461 if ((str == strstart || str[1] == NUL) && *str == ' ')
1462 {
1463 string = (char_u *)"<Space>";
1464 ++str;
1465 }
1466 else
1467 string = str2special(&str, from);
1468 len = vim_strsize(string);
1469 /* Highlight special keys */
1470 msg_puts_attr(string, len > 1
1471#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001472 && (*mb_ptr2len)(string) <= 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473#endif
1474 ? attr : 0);
1475 retval += len;
1476 }
1477 return retval;
1478}
1479
Bram Moolenaarbd743252010-10-20 21:23:33 +02001480#if defined(FEAT_EVAL) || defined(PROTO)
1481/*
1482 * Return the lhs or rhs of a mapping, with the key codes turned into printable
1483 * strings, in an allocated string.
1484 */
1485 char_u *
1486str2special_save(str, is_lhs)
1487 char_u *str;
1488 int is_lhs; /* TRUE for lhs, FALSE for rhs */
1489{
1490 garray_T ga;
1491 char_u *p = str;
1492
1493 ga_init2(&ga, 1, 40);
1494 while (*p != NUL)
1495 ga_concat(&ga, str2special(&p, is_lhs));
1496 ga_append(&ga, NUL);
1497 return (char_u *)ga.ga_data;
1498}
1499#endif
1500
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501/*
1502 * Return the printable string for the key codes at "*sp".
1503 * Used for translating the lhs or rhs of a mapping to printable chars.
1504 * Advances "sp" to the next code.
1505 */
1506 char_u *
1507str2special(sp, from)
1508 char_u **sp;
1509 int from; /* TRUE for lhs of mapping */
1510{
1511 int c;
1512 static char_u buf[7];
1513 char_u *str = *sp;
1514 int modifiers = 0;
1515 int special = FALSE;
1516
1517#ifdef FEAT_MBYTE
1518 if (has_mbyte)
1519 {
1520 char_u *p;
1521
1522 /* Try to un-escape a multi-byte character. Return the un-escaped
1523 * string if it is a multi-byte character. */
1524 p = mb_unescape(sp);
1525 if (p != NULL)
1526 return p;
1527 }
1528#endif
1529
1530 c = *str;
1531 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1532 {
1533 if (str[1] == KS_MODIFIER)
1534 {
1535 modifiers = str[2];
1536 str += 3;
1537 c = *str;
1538 }
1539 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL)
1540 {
1541 c = TO_SPECIAL(str[1], str[2]);
1542 str += 2;
1543 if (c == K_ZERO) /* display <Nul> as ^@ */
1544 c = NUL;
1545 }
1546 if (IS_SPECIAL(c) || modifiers) /* special key */
1547 special = TRUE;
1548 }
1549 *sp = str + 1;
1550
1551#ifdef FEAT_MBYTE
1552 /* For multi-byte characters check for an illegal byte. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001553 if (has_mbyte && MB_BYTE2LEN(*str) > (*mb_ptr2len)(str))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 {
1555 transchar_nonprint(buf, c);
1556 return buf;
1557 }
1558#endif
1559
1560 /* Make unprintable characters in <> form, also <M-Space> and <Tab>.
1561 * Use <Space> only for lhs of a mapping. */
1562 if (special || char2cells(c) > 1 || (from && c == ' '))
1563 return get_special_key_name(c, modifiers);
1564 buf[0] = c;
1565 buf[1] = NUL;
1566 return buf;
1567}
1568
1569/*
1570 * Translate a key sequence into special key names.
1571 */
1572 void
1573str2specialbuf(sp, buf, len)
1574 char_u *sp;
1575 char_u *buf;
1576 int len;
1577{
1578 char_u *s;
1579
1580 *buf = NUL;
1581 while (*sp)
1582 {
1583 s = str2special(&sp, FALSE);
1584 if ((int)(STRLEN(s) + STRLEN(buf)) < len)
1585 STRCAT(buf, s);
1586 }
1587}
1588
1589/*
1590 * print line for :print or :list command
1591 */
1592 void
Bram Moolenaardf177f62005-02-22 08:39:57 +00001593msg_prt_line(s, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 char_u *s;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001595 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596{
1597 int c;
1598 int col = 0;
1599 int n_extra = 0;
1600 int c_extra = 0;
1601 char_u *p_extra = NULL; /* init to make SASC shut up */
1602 int n;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001603 int attr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 char_u *trail = NULL;
1605#ifdef FEAT_MBYTE
1606 int l;
1607 char_u buf[MB_MAXBYTES + 1];
1608#endif
1609
Bram Moolenaardf177f62005-02-22 08:39:57 +00001610 if (curwin->w_p_list)
1611 list = TRUE;
1612
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 /* find start of trailing whitespace */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001614 if (list && lcs_trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 {
1616 trail = s + STRLEN(s);
1617 while (trail > s && vim_iswhite(trail[-1]))
1618 --trail;
1619 }
1620
1621 /* output a space for an empty line, otherwise the line will be
1622 * overwritten */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001623 if (*s == NUL && !(list && lcs_eol != NUL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 msg_putchar(' ');
1625
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001626 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 {
Bram Moolenaar56da7972007-01-16 14:46:32 +00001628 if (n_extra > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 {
1630 --n_extra;
1631 if (c_extra)
1632 c = c_extra;
1633 else
1634 c = *p_extra++;
1635 }
1636#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001637 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 {
1639 col += (*mb_ptr2cells)(s);
1640 mch_memmove(buf, s, (size_t)l);
1641 buf[l] = NUL;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001642 msg_puts(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 s += l;
1644 continue;
1645 }
1646#endif
1647 else
1648 {
1649 attr = 0;
1650 c = *s++;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001651 if (c == TAB && (!list || lcs_tab1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 {
1653 /* tab amount depends on current column */
1654 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001655 if (!list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 {
1657 c = ' ';
1658 c_extra = ' ';
1659 }
1660 else
1661 {
1662 c = lcs_tab1;
1663 c_extra = lcs_tab2;
1664 attr = hl_attr(HLF_8);
1665 }
1666 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00001667 else if (c == NUL && list && lcs_eol != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 {
1669 p_extra = (char_u *)"";
1670 c_extra = NUL;
1671 n_extra = 1;
1672 c = lcs_eol;
1673 attr = hl_attr(HLF_AT);
1674 --s;
1675 }
1676 else if (c != NUL && (n = byte2cells(c)) > 1)
1677 {
1678 n_extra = n - 1;
1679 p_extra = transchar_byte(c);
1680 c_extra = NUL;
1681 c = *p_extra++;
Bram Moolenaar56da7972007-01-16 14:46:32 +00001682 /* Use special coloring to be able to distinguish <hex> from
1683 * the same in plain text. */
1684 attr = hl_attr(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 }
1686 else if (c == ' ' && trail != NULL && s > trail)
1687 {
1688 c = lcs_trail;
1689 attr = hl_attr(HLF_8);
1690 }
1691 }
1692
1693 if (c == NUL)
1694 break;
1695
1696 msg_putchar_attr(c, attr);
1697 col++;
1698 }
1699 msg_clr_eos();
1700}
1701
1702#ifdef FEAT_MBYTE
1703/*
1704 * Use screen_puts() to output one multi-byte character.
1705 * Return the pointer "s" advanced to the next character.
1706 */
1707 static char_u *
1708screen_puts_mbyte(s, l, attr)
1709 char_u *s;
1710 int l;
1711 int attr;
1712{
1713 int cw;
1714
1715 msg_didout = TRUE; /* remember that line is not empty */
1716 cw = (*mb_ptr2cells)(s);
1717 if (cw > 1 && (
1718#ifdef FEAT_RIGHTLEFT
1719 cmdmsg_rl ? msg_col <= 1 :
1720#endif
1721 msg_col == Columns - 1))
1722 {
1723 /* Doesn't fit, print a highlighted '>' to fill it up. */
1724 msg_screen_putchar('>', hl_attr(HLF_AT));
1725 return s;
1726 }
1727
1728 screen_puts_len(s, l, msg_row, msg_col, attr);
1729#ifdef FEAT_RIGHTLEFT
1730 if (cmdmsg_rl)
1731 {
1732 msg_col -= cw;
1733 if (msg_col == 0)
1734 {
1735 msg_col = Columns;
1736 ++msg_row;
1737 }
1738 }
1739 else
1740#endif
1741 {
1742 msg_col += cw;
1743 if (msg_col >= Columns)
1744 {
1745 msg_col = 0;
1746 ++msg_row;
1747 }
1748 }
1749 return s + l;
1750}
1751#endif
1752
1753/*
1754 * Output a string to the screen at position msg_row, msg_col.
1755 * Update msg_row and msg_col for the next message.
1756 */
1757 void
1758msg_puts(s)
1759 char_u *s;
1760{
1761 msg_puts_attr(s, 0);
1762}
1763
1764 void
1765msg_puts_title(s)
1766 char_u *s;
1767{
1768 msg_puts_attr(s, hl_attr(HLF_T));
1769}
1770
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771/*
1772 * Show a message in such a way that it always fits in the line. Cut out a
1773 * part in the middle and replace it with "..." when necessary.
1774 * Does not handle multi-byte characters!
1775 */
1776 void
1777msg_puts_long_attr(longstr, attr)
1778 char_u *longstr;
1779 int attr;
1780{
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001781 msg_puts_long_len_attr(longstr, (int)STRLEN(longstr), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782}
1783
1784 void
1785msg_puts_long_len_attr(longstr, len, attr)
1786 char_u *longstr;
1787 int len;
1788 int attr;
1789{
1790 int slen = len;
1791 int room;
1792
1793 room = Columns - msg_col;
1794 if (len > room && room >= 20)
1795 {
1796 slen = (room - 3) / 2;
1797 msg_outtrans_len_attr(longstr, slen, attr);
1798 msg_puts_attr((char_u *)"...", hl_attr(HLF_8));
1799 }
1800 msg_outtrans_len_attr(longstr + len - slen, slen, attr);
1801}
1802
1803/*
1804 * Basic function for writing a message with highlight attributes.
1805 */
1806 void
1807msg_puts_attr(s, attr)
1808 char_u *s;
1809 int attr;
1810{
1811 msg_puts_attr_len(s, -1, attr);
1812}
1813
1814/*
1815 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes).
1816 * When "maxlen" is -1 there is no maximum length.
1817 * When "maxlen" is >= 0 the message is not put in the history.
1818 */
1819 static void
1820msg_puts_attr_len(str, maxlen, attr)
1821 char_u *str;
1822 int maxlen;
1823 int attr;
1824{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 /*
1826 * If redirection is on, also write to the redirection file.
1827 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001828 redir_write(str, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829
1830 /*
1831 * Don't print anything when using ":silent cmd".
1832 */
1833 if (msg_silent != 0)
1834 return;
1835
1836 /* if MSG_HIST flag set, add message to history */
1837 if ((attr & MSG_HIST) && maxlen < 0)
1838 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001839 add_msg_hist(str, -1, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 attr &= ~MSG_HIST;
1841 }
1842
1843 /*
1844 * When writing something to the screen after it has scrolled, requires a
1845 * wait-return prompt later. Needed when scrolling, resetting
1846 * need_wait_return after some prompt, and then outputting something
1847 * without scrolling
1848 */
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001849 if (msg_scrolled != 0 && !msg_scrolled_ign)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 need_wait_return = TRUE;
1851 msg_didany = TRUE; /* remember that something was outputted */
1852
1853 /*
1854 * If there is no valid screen, use fprintf so we can see error messages.
1855 * If termcap is not active, we may be writing in an alternate console
1856 * window, cursor positioning may not work correctly (window size may be
1857 * different, e.g. for Win32 console) or we just don't know where the
1858 * cursor is.
1859 */
1860 if (msg_use_printf())
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001861 msg_puts_printf(str, maxlen);
1862 else
1863 msg_puts_display(str, maxlen, attr, FALSE);
1864}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001866/*
1867 * The display part of msg_puts_attr_len().
1868 * May be called recursively to display scroll-back text.
1869 */
1870 static void
1871msg_puts_display(str, maxlen, attr, recurse)
1872 char_u *str;
1873 int maxlen;
1874 int attr;
1875 int recurse;
1876{
1877 char_u *s = str;
1878 char_u *t_s = str; /* string from "t_s" to "s" is still todo */
1879 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */
1880#ifdef FEAT_MBYTE
1881 int l;
1882 int cw;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001884 char_u *sb_str = str;
1885 int sb_col = msg_col;
1886 int wrap;
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00001887 int did_last_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888
1889 did_wait_return = FALSE;
Bram Moolenaar57b7fe82007-08-05 17:20:43 +00001890 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 {
1892 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001893 * We are at the end of the screen line when:
1894 * - When outputting a newline.
1895 * - When outputting a character in the last column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001897 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898#ifdef FEAT_RIGHTLEFT
1899 cmdmsg_rl
1900 ? (
1901 msg_col <= 1
1902 || (*s == TAB && msg_col <= 7)
1903# ifdef FEAT_MBYTE
1904 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2)
1905# endif
1906 )
1907 :
1908#endif
1909 (msg_col + t_col >= Columns - 1
1910 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7))
1911# ifdef FEAT_MBYTE
1912 || (has_mbyte && (*mb_ptr2cells)(s) > 1
1913 && msg_col + t_col >= Columns - 2)
1914# endif
1915 ))))
1916 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001917 /*
1918 * The screen is scrolled up when at the last row (some terminals
1919 * scroll automatically, some don't. To avoid problems we scroll
1920 * ourselves).
1921 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 if (t_col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 /* output postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001924 t_puts(&t_col, t_s, s, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00001926 /* When no more prompt and no more room, truncate here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 if (msg_no_more && lines_left == 0)
1928 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001930 /* Scroll the screen up one line. */
1931 msg_scroll_up();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932
1933 msg_row = Rows - 2;
1934 if (msg_col >= Columns) /* can happen after screen resize */
1935 msg_col = Columns - 1;
1936
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001937 /* Display char in last column before showing more-prompt. */
1938 if (*s >= ' '
1939#ifdef FEAT_RIGHTLEFT
1940 && !cmdmsg_rl
1941#endif
1942 )
1943 {
1944#ifdef FEAT_MBYTE
1945 if (has_mbyte)
1946 {
1947 if (enc_utf8 && maxlen >= 0)
1948 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001949 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001950 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001951 l = (*mb_ptr2len)(s);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001952 s = screen_puts_mbyte(s, l, attr);
1953 }
1954 else
1955#endif
1956 msg_screen_putchar(*s++, attr);
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00001957 did_last_char = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001958 }
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00001959 else
1960 did_last_char = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001961
1962 if (p_more)
1963 /* store text for scrolling back */
1964 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
1965
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001966 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001967 need_wait_return = TRUE; /* may need wait_return in main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 if (must_redraw < VALID)
1969 must_redraw = VALID;
1970 redraw_cmdline = TRUE;
1971 if (cmdline_row > 0 && !exmode_active)
1972 --cmdline_row;
1973
1974 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001975 * If screen is completely filled and 'more' is set then wait
1976 * for a character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 */
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00001978 if (lines_left > 0)
1979 --lines_left;
Bram Moolenaar203335e2006-09-03 14:35:42 +00001980 if (p_more && lines_left == 0 && State != HITRETURN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 && !msg_no_more && !exmode_active)
1982 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983#ifdef FEAT_CON_DIALOG
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001984 if (do_more_prompt(NUL))
1985 s = confirm_msg_tail;
1986#else
1987 (void)do_more_prompt(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988#endif
1989 if (quit_more)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001990 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 }
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001992
1993 /* When we displayed a char in last column need to check if there
1994 * is still more. */
Bram Moolenaarc27c8d52007-09-06 10:54:51 +00001995 if (did_last_char)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001996 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 }
1998
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001999 wrap = *s == '\n'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 || msg_col + t_col >= Columns
2001#ifdef FEAT_MBYTE
2002 || (has_mbyte && (*mb_ptr2cells)(s) > 1
2003 && msg_col + t_col >= Columns - 1)
2004#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002005 ;
2006 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b'
2007 || *s == '\t' || *s == BELL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 /* output any postponed text */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002009 t_puts(&t_col, t_s, s, attr);
2010
2011 if (wrap && p_more && !recurse)
2012 /* store text for scrolling back */
2013 store_sb_text(&sb_str, s, attr, &sb_col, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014
2015 if (*s == '\n') /* go to next line */
2016 {
2017 msg_didout = FALSE; /* remember that line is empty */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002018#ifdef FEAT_RIGHTLEFT
2019 if (cmdmsg_rl)
2020 msg_col = Columns - 1;
2021 else
2022#endif
2023 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 if (++msg_row >= Rows) /* safety check */
2025 msg_row = Rows - 1;
2026 }
2027 else if (*s == '\r') /* go to column 0 */
2028 {
2029 msg_col = 0;
2030 }
2031 else if (*s == '\b') /* go to previous char */
2032 {
2033 if (msg_col)
2034 --msg_col;
2035 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002036 else if (*s == TAB) /* translate Tab into spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 {
2038 do
2039 msg_screen_putchar(' ', attr);
2040 while (msg_col & 7);
2041 }
2042 else if (*s == BELL) /* beep (from ":sh") */
2043 vim_beep();
2044 else
2045 {
2046#ifdef FEAT_MBYTE
2047 if (has_mbyte)
2048 {
2049 cw = (*mb_ptr2cells)(s);
2050 if (enc_utf8 && maxlen >= 0)
2051 /* avoid including composing chars after the end */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002052 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002054 l = (*mb_ptr2len)(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 }
2056 else
2057 {
2058 cw = 1;
2059 l = 1;
2060 }
2061#endif
2062 /* When drawing from right to left or when a double-wide character
2063 * doesn't fit, draw a single character here. Otherwise collect
2064 * characters and draw them all at once later. */
2065#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
2066 if (
2067# ifdef FEAT_RIGHTLEFT
2068 cmdmsg_rl
2069# ifdef FEAT_MBYTE
2070 ||
2071# endif
2072# endif
2073# ifdef FEAT_MBYTE
2074 (cw > 1 && msg_col + t_col >= Columns - 1)
2075# endif
2076 )
2077 {
2078# ifdef FEAT_MBYTE
2079 if (l > 1)
2080 s = screen_puts_mbyte(s, l, attr) - 1;
2081 else
2082# endif
2083 msg_screen_putchar(*s, attr);
2084 }
2085 else
2086#endif
2087 {
2088 /* postpone this character until later */
2089 if (t_col == 0)
2090 t_s = s;
2091#ifdef FEAT_MBYTE
2092 t_col += cw;
2093 s += l - 1;
2094#else
2095 ++t_col;
2096#endif
2097 }
2098 }
2099 ++s;
2100 }
2101
2102 /* output any postponed text */
2103 if (t_col > 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002104 t_puts(&t_col, t_s, s, attr);
2105 if (p_more && !recurse)
2106 store_sb_text(&sb_str, s, attr, &sb_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107
2108 msg_check();
2109}
2110
2111/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002112 * Scroll the screen up one line for displaying the next message line.
2113 */
2114 static void
2115msg_scroll_up()
2116{
2117#ifdef FEAT_GUI
2118 /* Remove the cursor before scrolling, ScreenLines[] is going
2119 * to become invalid. */
2120 if (gui.in_use)
2121 gui_undraw_cursor();
2122#endif
2123 /* scrolling up always works */
2124 screen_del_lines(0, 0, 1, (int)Rows, TRUE, NULL);
2125
2126 if (!can_clear((char_u *)" "))
2127 {
2128 /* Scrolling up doesn't result in the right background. Set the
2129 * background here. It's not efficient, but avoids that we have to do
2130 * it all over the code. */
2131 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2132
2133 /* Also clear the last char of the last but one line if it was not
2134 * cleared before to avoid a scroll-up. */
2135 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1)
2136 screen_fill((int)Rows - 2, (int)Rows - 1,
2137 (int)Columns - 1, (int)Columns, ' ', ' ', 0);
2138 }
2139}
2140
2141/*
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002142 * Increment "msg_scrolled".
2143 */
2144 static void
2145inc_msg_scrolled()
2146{
2147#ifdef FEAT_EVAL
2148 if (*get_vim_var_str(VV_SCROLLSTART) == NUL)
2149 {
2150 char_u *p = sourcing_name;
2151 char_u *tofree = NULL;
2152 int len;
2153
2154 /* v:scrollstart is empty, set it to the script/function name and line
2155 * number */
2156 if (p == NULL)
2157 p = (char_u *)_("Unknown");
2158 else
2159 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002160 len = (int)STRLEN(p) + 40;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002161 tofree = alloc(len);
2162 if (tofree != NULL)
2163 {
2164 vim_snprintf((char *)tofree, len, _("%s line %ld"),
2165 p, (long)sourcing_lnum);
2166 p = tofree;
2167 }
2168 }
2169 set_vim_var_string(VV_SCROLLSTART, p, -1);
2170 vim_free(tofree);
2171 }
2172#endif
2173 ++msg_scrolled;
2174}
2175
2176/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002177 * To be able to scroll back at the "more" and "hit-enter" prompts we need to
2178 * store the displayed text and remember where screen lines start.
2179 */
2180typedef struct msgchunk_S msgchunk_T;
2181struct msgchunk_S
2182{
2183 msgchunk_T *sb_next;
2184 msgchunk_T *sb_prev;
2185 char sb_eol; /* TRUE when line ends after this text */
2186 int sb_msg_col; /* column in which text starts */
2187 int sb_attr; /* text attributes */
2188 char_u sb_text[1]; /* text to be displayed, actually longer */
2189};
2190
2191static msgchunk_T *last_msgchunk = NULL; /* last displayed text */
2192
2193static msgchunk_T *msg_sb_start __ARGS((msgchunk_T *mps));
2194static msgchunk_T *disp_sb_line __ARGS((int row, msgchunk_T *smp));
2195
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002196static int do_clear_sb_text = FALSE; /* clear text on next msg */
2197
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002198/*
2199 * Store part of a printed message for displaying when scrolling back.
2200 */
2201 static void
2202store_sb_text(sb_str, s, attr, sb_col, finish)
2203 char_u **sb_str; /* start of string */
2204 char_u *s; /* just after string */
2205 int attr;
2206 int *sb_col;
2207 int finish; /* line ends */
2208{
2209 msgchunk_T *mp;
2210
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002211 if (do_clear_sb_text)
2212 {
2213 clear_sb_text();
2214 do_clear_sb_text = FALSE;
2215 }
2216
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002217 if (s > *sb_str)
2218 {
2219 mp = (msgchunk_T *)alloc((int)(sizeof(msgchunk_T) + (s - *sb_str)));
2220 if (mp != NULL)
2221 {
2222 mp->sb_eol = finish;
2223 mp->sb_msg_col = *sb_col;
2224 mp->sb_attr = attr;
2225 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str);
2226
2227 if (last_msgchunk == NULL)
2228 {
2229 last_msgchunk = mp;
2230 mp->sb_prev = NULL;
2231 }
2232 else
2233 {
2234 mp->sb_prev = last_msgchunk;
2235 last_msgchunk->sb_next = mp;
2236 last_msgchunk = mp;
2237 }
2238 mp->sb_next = NULL;
2239 }
2240 }
2241 else if (finish && last_msgchunk != NULL)
2242 last_msgchunk->sb_eol = TRUE;
2243
2244 *sb_str = s;
2245 *sb_col = 0;
2246}
2247
2248/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002249 * Finished showing messages, clear the scroll-back text on the next message.
2250 */
2251 void
2252may_clear_sb_text()
2253{
2254 do_clear_sb_text = TRUE;
2255}
2256
2257/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002258 * Clear any text remembered for scrolling back.
2259 * Called when redrawing the screen.
2260 */
2261 void
2262clear_sb_text()
2263{
2264 msgchunk_T *mp;
2265
2266 while (last_msgchunk != NULL)
2267 {
2268 mp = last_msgchunk->sb_prev;
2269 vim_free(last_msgchunk);
2270 last_msgchunk = mp;
2271 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002272}
2273
2274/*
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002275 * "g<" command.
2276 */
2277 void
2278show_sb_text()
2279{
2280 msgchunk_T *mp;
2281
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002282 /* Only show something if there is more than one line, otherwise it looks
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002283 * weird, typing a command without output results in one line. */
2284 mp = msg_sb_start(last_msgchunk);
2285 if (mp == NULL || mp->sb_prev == NULL)
2286 vim_beep();
2287 else
2288 {
2289 do_more_prompt('G');
2290 wait_return(FALSE);
2291 }
2292}
2293
2294/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002295 * Move to the start of screen line in already displayed text.
2296 */
2297 static msgchunk_T *
2298msg_sb_start(mps)
2299 msgchunk_T *mps;
2300{
2301 msgchunk_T *mp = mps;
2302
2303 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol)
2304 mp = mp->sb_prev;
2305 return mp;
2306}
2307
2308/*
2309 * Display a screen line from previously displayed text at row "row".
2310 * Returns a pointer to the text for the next line (can be NULL).
2311 */
2312 static msgchunk_T *
2313disp_sb_line(row, smp)
2314 int row;
2315 msgchunk_T *smp;
2316{
2317 msgchunk_T *mp = smp;
2318 char_u *p;
2319
2320 for (;;)
2321 {
2322 msg_row = row;
2323 msg_col = mp->sb_msg_col;
2324 p = mp->sb_text;
2325 if (*p == '\n') /* don't display the line break */
2326 ++p;
2327 msg_puts_display(p, -1, mp->sb_attr, TRUE);
2328 if (mp->sb_eol || mp->sb_next == NULL)
2329 break;
2330 mp = mp->sb_next;
2331 }
2332 return mp->sb_next;
2333}
2334
2335/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 * Output any postponed text for msg_puts_attr_len().
2337 */
2338 static void
2339t_puts(t_col, t_s, s, attr)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002340 int *t_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 char_u *t_s;
2342 char_u *s;
2343 int attr;
2344{
2345 /* output postponed text */
2346 msg_didout = TRUE; /* remember that line is not empty */
2347 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002348 msg_col += *t_col;
2349 *t_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350#ifdef FEAT_MBYTE
2351 /* If the string starts with a composing character don't increment the
2352 * column position for it. */
2353 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s)))
2354 --msg_col;
2355#endif
2356 if (msg_col >= Columns)
2357 {
2358 msg_col = 0;
2359 ++msg_row;
2360 }
2361}
2362
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363/*
2364 * Returns TRUE when messages should be printed with mch_errmsg().
2365 * This is used when there is no valid screen, so we can see error messages.
2366 * If termcap is not active, we may be writing in an alternate console
2367 * window, cursor positioning may not work correctly (window size may be
2368 * different, e.g. for Win32 console) or we just don't know where the
2369 * cursor is.
2370 */
2371 int
2372msg_use_printf()
2373{
2374 return (!msg_check_screen()
2375#if defined(WIN3264) && !defined(FEAT_GUI_MSWIN)
2376 || !termcap_active
2377#endif
2378 || (swapping_screen() && !termcap_active)
2379 );
2380}
2381
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002382/*
2383 * Print a message when there is no valid screen.
2384 */
2385 static void
2386msg_puts_printf(str, maxlen)
2387 char_u *str;
2388 int maxlen;
2389{
2390 char_u *s = str;
2391 char_u buf[4];
2392 char_u *p;
2393
2394#ifdef WIN3264
2395 if (!(silent_mode && p_verbose == 0))
2396 mch_settmode(TMODE_COOK); /* handle '\r' and '\n' correctly */
2397#endif
2398 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
2399 {
2400 if (!(silent_mode && p_verbose == 0))
2401 {
2402 /* NL --> CR NL translation (for Unix, not for "--version") */
2403 /* NL --> CR translation (for Mac) */
2404 p = &buf[0];
2405 if (*s == '\n' && !info_message)
2406 *p++ = '\r';
2407#if defined(USE_CR) && !defined(MACOS_X_UNIX)
2408 else
2409#endif
2410 *p++ = *s;
2411 *p = '\0';
2412 if (info_message) /* informative message, not an error */
2413 mch_msg((char *)buf);
2414 else
2415 mch_errmsg((char *)buf);
2416 }
2417
2418 /* primitive way to compute the current column */
2419#ifdef FEAT_RIGHTLEFT
2420 if (cmdmsg_rl)
2421 {
2422 if (*s == '\r' || *s == '\n')
2423 msg_col = Columns - 1;
2424 else
2425 --msg_col;
2426 }
2427 else
2428#endif
2429 {
2430 if (*s == '\r' || *s == '\n')
2431 msg_col = 0;
2432 else
2433 ++msg_col;
2434 }
2435 ++s;
2436 }
2437 msg_didout = TRUE; /* assume that line is not empty */
2438
2439#ifdef WIN3264
2440 if (!(silent_mode && p_verbose == 0))
2441 mch_settmode(TMODE_RAW);
2442#endif
2443}
2444
2445/*
2446 * Show the more-prompt and handle the user response.
2447 * This takes care of scrolling back and displaying previously displayed text.
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002448 * When at hit-enter prompt "typed_char" is the already typed character,
2449 * otherwise it's NUL.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002450 * Returns TRUE when jumping ahead to "confirm_msg_tail".
2451 */
2452 static int
2453do_more_prompt(typed_char)
2454 int typed_char;
2455{
2456 int used_typed_char = typed_char;
2457 int oldState = State;
2458 int c;
2459#ifdef FEAT_CON_DIALOG
2460 int retval = FALSE;
2461#endif
2462 int scroll;
2463 msgchunk_T *mp_last = NULL;
2464 msgchunk_T *mp;
2465 int i;
2466
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002467 if (typed_char == 'G')
2468 {
2469 /* "g<": Find first line on the last page. */
2470 mp_last = msg_sb_start(last_msgchunk);
2471 for (i = 0; i < Rows - 2 && mp_last != NULL
2472 && mp_last->sb_prev != NULL; ++i)
2473 mp_last = msg_sb_start(mp_last->sb_prev);
2474 }
2475
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002476 State = ASKMORE;
2477#ifdef FEAT_MOUSE
2478 setmouse();
2479#endif
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002480 if (typed_char == NUL)
2481 msg_moremsg(FALSE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002482 for (;;)
2483 {
2484 /*
2485 * Get a typed character directly from the user.
2486 */
2487 if (used_typed_char != NUL)
2488 {
2489 c = used_typed_char; /* was typed at hit-enter prompt */
2490 used_typed_char = NUL;
2491 }
2492 else
2493 c = get_keystroke();
2494
2495#if defined(FEAT_MENU) && defined(FEAT_GUI)
2496 if (c == K_MENU)
2497 {
2498 int idx = get_menu_index(current_menu, ASKMORE);
2499
2500 /* Used a menu. If it starts with CTRL-Y, it must
2501 * be a "Copy" for the clipboard. Otherwise
2502 * assume that we end */
2503 if (idx == MENU_INDEX_INVALID)
2504 continue;
2505 c = *current_menu->strings[idx];
2506 if (c != NUL && current_menu->strings[idx][1] != NUL)
2507 ins_typebuf(current_menu->strings[idx] + 1,
2508 current_menu->noremap[idx], 0, TRUE,
2509 current_menu->silent[idx]);
2510 }
2511#endif
2512
2513 scroll = 0;
2514 switch (c)
2515 {
2516 case BS: /* scroll one line back */
2517 case K_BS:
2518 case 'k':
2519 case K_UP:
2520 scroll = -1;
2521 break;
2522
2523 case CAR: /* one extra line */
2524 case NL:
2525 case 'j':
2526 case K_DOWN:
2527 scroll = 1;
2528 break;
2529
2530 case 'u': /* Up half a page */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002531 scroll = -(Rows / 2);
2532 break;
2533
2534 case 'd': /* Down half a page */
2535 scroll = Rows / 2;
2536 break;
2537
2538 case 'b': /* one page back */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002539 case K_PAGEUP:
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002540 scroll = -(Rows - 1);
2541 break;
2542
2543 case ' ': /* one extra page */
Bram Moolenaar2a9e4df2009-02-21 23:59:19 +00002544 case 'f':
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002545 case K_PAGEDOWN:
2546 case K_LEFTMOUSE:
2547 scroll = Rows - 1;
2548 break;
2549
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002550 case 'g': /* all the way back to the start */
2551 scroll = -999999;
2552 break;
2553
2554 case 'G': /* all the way to the end */
2555 scroll = 999999;
2556 lines_left = 999999;
2557 break;
2558
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002559 case ':': /* start new command line */
2560#ifdef FEAT_CON_DIALOG
2561 if (!confirm_msg_used)
2562#endif
2563 {
2564 /* Since got_int is set all typeahead will be flushed, but we
2565 * want to keep this ':', remember that in a special way. */
2566 typeahead_noflush(':');
2567 cmdline_row = Rows - 1; /* put ':' on this line */
2568 skip_redraw = TRUE; /* skip redraw once */
2569 need_wait_return = FALSE; /* don't wait in main() */
2570 }
2571 /*FALLTHROUGH*/
2572 case 'q': /* quit */
2573 case Ctrl_C:
2574 case ESC:
2575#ifdef FEAT_CON_DIALOG
2576 if (confirm_msg_used)
2577 {
2578 /* Jump to the choices of the dialog. */
2579 retval = TRUE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002580 }
2581 else
2582#endif
2583 {
2584 got_int = TRUE;
2585 quit_more = TRUE;
2586 }
Bram Moolenaar51306d22009-02-24 03:38:04 +00002587 /* When there is some more output (wrapping line) display that
2588 * without another prompt. */
2589 lines_left = Rows - 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002590 break;
2591
2592#ifdef FEAT_CLIPBOARD
2593 case Ctrl_Y:
2594 /* Strange way to allow copying (yanking) a modeless
2595 * selection at the more prompt. Use CTRL-Y,
2596 * because the same is used in Cmdline-mode and at the
2597 * hit-enter prompt. However, scrolling one line up
2598 * might be expected... */
2599 if (clip_star.state == SELECT_DONE)
2600 clip_copy_modeless_selection(TRUE);
2601 continue;
2602#endif
2603 default: /* no valid response */
2604 msg_moremsg(TRUE);
2605 continue;
2606 }
2607
2608 if (scroll != 0)
2609 {
2610 if (scroll < 0)
2611 {
2612 /* go to start of last line */
2613 if (mp_last == NULL)
2614 mp = msg_sb_start(last_msgchunk);
2615 else if (mp_last->sb_prev != NULL)
2616 mp = msg_sb_start(mp_last->sb_prev);
2617 else
2618 mp = NULL;
2619
2620 /* go to start of line at top of the screen */
2621 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL;
2622 ++i)
2623 mp = msg_sb_start(mp->sb_prev);
2624
2625 if (mp != NULL && mp->sb_prev != NULL)
2626 {
2627 /* Find line to be displayed at top. */
2628 for (i = 0; i > scroll; --i)
2629 {
2630 if (mp == NULL || mp->sb_prev == NULL)
2631 break;
2632 mp = msg_sb_start(mp->sb_prev);
2633 if (mp_last == NULL)
2634 mp_last = msg_sb_start(last_msgchunk);
2635 else
2636 mp_last = msg_sb_start(mp_last->sb_prev);
2637 }
2638
2639 if (scroll == -1 && screen_ins_lines(0, 0, 1,
2640 (int)Rows, NULL) == OK)
2641 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002642 /* display line at top */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002643 (void)disp_sb_line(0, mp);
2644 }
2645 else
2646 {
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002647 /* redisplay all lines */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002648 screenclear();
Bram Moolenaar773560b2006-05-06 21:38:18 +00002649 for (i = 0; mp != NULL && i < Rows - 1; ++i)
2650 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002651 mp = disp_sb_line(i, mp);
Bram Moolenaar773560b2006-05-06 21:38:18 +00002652 ++msg_scrolled;
2653 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002654 }
2655 scroll = 0;
2656 }
2657 }
2658 else
2659 {
2660 /* First display any text that we scrolled back. */
2661 while (scroll > 0 && mp_last != NULL)
2662 {
2663 /* scroll up, display line at bottom */
2664 msg_scroll_up();
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002665 inc_msg_scrolled();
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002666 screen_fill((int)Rows - 2, (int)Rows - 1, 0,
2667 (int)Columns, ' ', ' ', 0);
2668 mp_last = disp_sb_line((int)Rows - 2, mp_last);
2669 --scroll;
2670 }
2671 }
2672
Bram Moolenaar1b0b07f2007-08-07 20:00:31 +00002673 if (scroll <= 0)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002674 {
2675 /* displayed the requested text, more prompt again */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00002676 screen_fill((int)Rows - 1, (int)Rows, 0,
2677 (int)Columns, ' ', ' ', 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002678 msg_moremsg(FALSE);
2679 continue;
2680 }
2681
2682 /* display more text, return to caller */
2683 lines_left = scroll;
2684 }
2685
2686 break;
2687 }
2688
2689 /* clear the --more-- message */
2690 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2691 State = oldState;
2692#ifdef FEAT_MOUSE
2693 setmouse();
2694#endif
2695 if (quit_more)
2696 {
2697 msg_row = Rows - 1;
2698 msg_col = 0;
2699 }
2700#ifdef FEAT_RIGHTLEFT
2701 else if (cmdmsg_rl)
2702 msg_col = Columns - 1;
2703#endif
2704
2705#ifdef FEAT_CON_DIALOG
2706 return retval;
2707#else
2708 return FALSE;
2709#endif
2710}
2711
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712#if defined(USE_MCH_ERRMSG) || defined(PROTO)
2713
2714#ifdef mch_errmsg
2715# undef mch_errmsg
2716#endif
2717#ifdef mch_msg
2718# undef mch_msg
2719#endif
2720
2721/*
2722 * Give an error message. To be used when the screen hasn't been initialized
2723 * yet. When stderr can't be used, collect error messages until the GUI has
2724 * started and they can be displayed in a message box.
2725 */
2726 void
2727mch_errmsg(str)
2728 char *str;
2729{
2730 int len;
2731
2732#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
2733 /* On Unix use stderr if it's a tty.
2734 * When not going to start the GUI also use stderr.
2735 * On Mac, when started from Finder, stderr is the console. */
2736 if (
2737# ifdef UNIX
2738# ifdef MACOS_X_UNIX
2739 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
2740# else
2741 isatty(2)
2742# endif
2743# ifdef FEAT_GUI
2744 ||
2745# endif
2746# endif
2747# ifdef FEAT_GUI
2748 !(gui.in_use || gui.starting)
2749# endif
2750 )
2751 {
2752 fprintf(stderr, "%s", str);
2753 return;
2754 }
2755#endif
2756
2757 /* avoid a delay for a message that isn't there */
2758 emsg_on_display = FALSE;
2759
2760 len = (int)STRLEN(str) + 1;
2761 if (error_ga.ga_growsize == 0)
2762 {
2763 error_ga.ga_growsize = 80;
2764 error_ga.ga_itemsize = 1;
2765 }
2766 if (ga_grow(&error_ga, len) == OK)
2767 {
2768 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len,
2769 (char_u *)str, len);
2770#ifdef UNIX
2771 /* remove CR characters, they are displayed */
2772 {
2773 char_u *p;
2774
2775 p = (char_u *)error_ga.ga_data + error_ga.ga_len;
2776 for (;;)
2777 {
2778 p = vim_strchr(p, '\r');
2779 if (p == NULL)
2780 break;
2781 *p = ' ';
2782 }
2783 }
2784#endif
2785 --len; /* don't count the NUL at the end */
2786 error_ga.ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 }
2788}
2789
2790/*
2791 * Give a message. To be used when the screen hasn't been initialized yet.
2792 * When there is no tty, collect messages until the GUI has started and they
2793 * can be displayed in a message box.
2794 */
2795 void
2796mch_msg(str)
2797 char *str;
2798{
2799#if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
2800 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and
2801 * uses mch_errmsg() when started from the desktop.
2802 * When not going to start the GUI also use stdout.
2803 * On Mac, when started from Finder, stderr is the console. */
2804 if (
2805# ifdef UNIX
2806# ifdef MACOS_X_UNIX
2807 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
2808# else
2809 isatty(2)
2810# endif
2811# ifdef FEAT_GUI
2812 ||
2813# endif
2814# endif
2815# ifdef FEAT_GUI
2816 !(gui.in_use || gui.starting)
2817# endif
2818 )
2819 {
2820 printf("%s", str);
2821 return;
2822 }
2823# endif
2824 mch_errmsg(str);
2825}
2826#endif /* USE_MCH_ERRMSG */
2827
2828/*
2829 * Put a character on the screen at the current message position and advance
2830 * to the next position. Only for printable ASCII!
2831 */
2832 static void
2833msg_screen_putchar(c, attr)
2834 int c;
2835 int attr;
2836{
2837 msg_didout = TRUE; /* remember that line is not empty */
2838 screen_putchar(c, msg_row, msg_col, attr);
2839#ifdef FEAT_RIGHTLEFT
2840 if (cmdmsg_rl)
2841 {
2842 if (--msg_col == 0)
2843 {
2844 msg_col = Columns;
2845 ++msg_row;
2846 }
2847 }
2848 else
2849#endif
2850 {
2851 if (++msg_col >= Columns)
2852 {
2853 msg_col = 0;
2854 ++msg_row;
2855 }
2856 }
2857}
2858
2859 void
2860msg_moremsg(full)
2861 int full;
2862{
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002863 int attr;
2864 char_u *s = (char_u *)_("-- More --");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865
2866 attr = hl_attr(HLF_M);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002867 screen_puts(s, (int)Rows - 1, 0, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 if (full)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002869 screen_puts((char_u *)
2870 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "),
2871 (int)Rows - 1, vim_strsize(s), attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872}
2873
2874/*
2875 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
2876 * exmode_active.
2877 */
2878 void
2879repeat_message()
2880{
2881 if (State == ASKMORE)
2882 {
2883 msg_moremsg(TRUE); /* display --more-- message again */
2884 msg_row = Rows - 1;
2885 }
2886#ifdef FEAT_CON_DIALOG
2887 else if (State == CONFIRM)
2888 {
2889 display_confirm_msg(); /* display ":confirm" message again */
2890 msg_row = Rows - 1;
2891 }
2892#endif
2893 else if (State == EXTERNCMD)
2894 {
2895 windgoto(msg_row, msg_col); /* put cursor back */
2896 }
2897 else if (State == HITRETURN || State == SETWSIZE)
2898 {
Bram Moolenaar9f108752007-11-24 14:44:58 +00002899 if (msg_row == Rows - 1)
2900 {
2901 /* Avoid drawing the "hit-enter" prompt below the previous one,
2902 * overwrite it. Esp. useful when regaining focus and a
2903 * FocusGained autocmd exists but didn't draw anything. */
2904 msg_didout = FALSE;
2905 msg_col = 0;
2906 msg_clr_eos();
2907 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 hit_return_msg();
2909 msg_row = Rows - 1;
2910 }
2911}
2912
2913/*
2914 * msg_check_screen - check if the screen is initialized.
2915 * Also check msg_row and msg_col, if they are too big it may cause a crash.
2916 * While starting the GUI the terminal codes will be set for the GUI, but the
2917 * output goes to the terminal. Don't use the terminal codes then.
2918 */
2919 static int
2920msg_check_screen()
2921{
2922 if (!full_screen || !screen_valid(FALSE))
2923 return FALSE;
2924
2925 if (msg_row >= Rows)
2926 msg_row = Rows - 1;
2927 if (msg_col >= Columns)
2928 msg_col = Columns - 1;
2929 return TRUE;
2930}
2931
2932/*
2933 * Clear from current message position to end of screen.
2934 * Skip this when ":silent" was used, no need to clear for redirection.
2935 */
2936 void
2937msg_clr_eos()
2938{
2939 if (msg_silent == 0)
2940 msg_clr_eos_force();
2941}
2942
2943/*
2944 * Clear from current message position to end of screen.
2945 * Note: msg_col is not updated, so we remember the end of the message
2946 * for msg_check().
2947 */
2948 void
2949msg_clr_eos_force()
2950{
2951 if (msg_use_printf())
2952 {
2953 if (full_screen) /* only when termcap codes are valid */
2954 {
2955 if (*T_CD)
2956 out_str(T_CD); /* clear to end of display */
2957 else if (*T_CE)
2958 out_str(T_CE); /* clear to end of line */
2959 }
2960 }
2961 else
2962 {
2963#ifdef FEAT_RIGHTLEFT
2964 if (cmdmsg_rl)
2965 {
2966 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0);
2967 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2968 }
2969 else
2970#endif
2971 {
2972 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns,
2973 ' ', ' ', 0);
2974 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0);
2975 }
2976 }
2977}
2978
2979/*
2980 * Clear the command line.
2981 */
2982 void
2983msg_clr_cmdline()
2984{
2985 msg_row = cmdline_row;
2986 msg_col = 0;
2987 msg_clr_eos_force();
2988}
2989
2990/*
2991 * end putting a message on the screen
2992 * call wait_return if the message does not fit in the available space
2993 * return TRUE if wait_return not called.
2994 */
2995 int
2996msg_end()
2997{
2998 /*
2999 * if the string is larger than the window,
3000 * or the ruler option is set and we run into it,
3001 * we have to redraw the window.
3002 * Do not do this if we are abandoning the file or editing the command line.
3003 */
3004 if (!exiting && need_wait_return && !(State & CMDLINE))
3005 {
3006 wait_return(FALSE);
3007 return FALSE;
3008 }
3009 out_flush();
3010 return TRUE;
3011}
3012
3013/*
3014 * If the written message runs into the shown command or ruler, we have to
3015 * wait for hit-return and redraw the window later.
3016 */
3017 void
3018msg_check()
3019{
3020 if (msg_row == Rows - 1 && msg_col >= sc_col)
3021 {
3022 need_wait_return = TRUE;
3023 redraw_cmdline = TRUE;
3024 }
3025}
3026
3027/*
3028 * May write a string to the redirection file.
3029 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3030 */
3031 static void
3032redir_write(str, maxlen)
3033 char_u *str;
3034 int maxlen;
3035{
3036 char_u *s = str;
3037 static int cur_col = 0;
3038
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003039 /* Don't do anything for displaying prompts and the like. */
3040 if (redir_off)
3041 return;
3042
3043 /*
3044 * If 'verbosefile' is set write message in that file.
3045 * Must come before the rest because of updating "msg_col".
3046 */
3047 if (*p_vfile != NUL)
3048 verbose_write(s, maxlen);
3049
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003050 if (redirecting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 {
3052 /* If the string doesn't start with CR or NL, go to msg_col */
3053 if (*s != '\n' && *s != '\r')
3054 {
3055 while (cur_col < msg_col)
3056 {
3057#ifdef FEAT_EVAL
3058 if (redir_reg)
3059 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003060 else if (redir_vname)
3061 var_redir_str((char_u *)" ", -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062 else if (redir_fd)
3063#endif
3064 fputs(" ", redir_fd);
3065 ++cur_col;
3066 }
3067 }
3068
3069#ifdef FEAT_EVAL
3070 if (redir_reg)
3071 write_reg_contents(redir_reg, s, maxlen, TRUE);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003072 if (redir_vname)
3073 var_redir_str(s, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074#endif
3075
3076 /* Adjust the current column */
3077 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3078 {
3079#ifdef FEAT_EVAL
Bram Moolenaardf177f62005-02-22 08:39:57 +00003080 if (!redir_reg && !redir_vname && redir_fd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081#endif
3082 putc(*s, redir_fd);
3083 if (*s == '\r' || *s == '\n')
3084 cur_col = 0;
3085 else if (*s == '\t')
3086 cur_col += (8 - cur_col % 8);
3087 else
3088 ++cur_col;
3089 ++s;
3090 }
3091
3092 if (msg_silent != 0) /* should update msg_col */
3093 msg_col = cur_col;
3094 }
3095}
3096
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003097 int
3098redirecting()
3099{
3100 return redir_fd != NULL
3101#ifdef FEAT_EVAL
3102 || redir_reg || redir_vname
3103#endif
3104 ;
3105}
3106
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107/*
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00003108 * Before giving verbose message.
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003109 * Must always be called paired with verbose_leave()!
3110 */
3111 void
3112verbose_enter()
3113{
3114 if (*p_vfile != NUL)
3115 ++msg_silent;
3116}
3117
3118/*
3119 * After giving verbose message.
3120 * Must always be called paired with verbose_enter()!
3121 */
3122 void
3123verbose_leave()
3124{
3125 if (*p_vfile != NUL)
3126 if (--msg_silent < 0)
3127 msg_silent = 0;
3128}
3129
3130/*
3131 * Like verbose_enter() and set msg_scroll when displaying the message.
3132 */
3133 void
3134verbose_enter_scroll()
3135{
3136 if (*p_vfile != NUL)
3137 ++msg_silent;
3138 else
3139 /* always scroll up, don't overwrite */
3140 msg_scroll = TRUE;
3141}
3142
3143/*
3144 * Like verbose_leave() and set cmdline_row when displaying the message.
3145 */
3146 void
3147verbose_leave_scroll()
3148{
3149 if (*p_vfile != NUL)
3150 {
3151 if (--msg_silent < 0)
3152 msg_silent = 0;
3153 }
3154 else
3155 cmdline_row = msg_row;
3156}
3157
3158static FILE *verbose_fd = NULL;
3159static int verbose_did_open = FALSE;
3160
3161/*
3162 * Called when 'verbosefile' is set: stop writing to the file.
3163 */
3164 void
3165verbose_stop()
3166{
3167 if (verbose_fd != NULL)
3168 {
3169 fclose(verbose_fd);
3170 verbose_fd = NULL;
3171 }
3172 verbose_did_open = FALSE;
3173}
3174
3175/*
3176 * Open the file 'verbosefile'.
3177 * Return FAIL or OK.
3178 */
3179 int
3180verbose_open()
3181{
3182 if (verbose_fd == NULL && !verbose_did_open)
3183 {
3184 /* Only give the error message once. */
3185 verbose_did_open = TRUE;
3186
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003187 verbose_fd = mch_fopen((char *)p_vfile, "a");
Bram Moolenaar8b044b32005-05-31 22:05:58 +00003188 if (verbose_fd == NULL)
3189 {
3190 EMSG2(_(e_notopen), p_vfile);
3191 return FAIL;
3192 }
3193 }
3194 return OK;
3195}
3196
3197/*
3198 * Write a string to 'verbosefile'.
3199 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3200 */
3201 static void
3202verbose_write(str, maxlen)
3203 char_u *str;
3204 int maxlen;
3205{
3206 char_u *s = str;
3207 static int cur_col = 0;
3208
3209 /* Open the file when called the first time. */
3210 if (verbose_fd == NULL)
3211 verbose_open();
3212
3213 if (verbose_fd != NULL)
3214 {
3215 /* If the string doesn't start with CR or NL, go to msg_col */
3216 if (*s != '\n' && *s != '\r')
3217 {
3218 while (cur_col < msg_col)
3219 {
3220 fputs(" ", verbose_fd);
3221 ++cur_col;
3222 }
3223 }
3224
3225 /* Adjust the current column */
3226 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen))
3227 {
3228 putc(*s, verbose_fd);
3229 if (*s == '\r' || *s == '\n')
3230 cur_col = 0;
3231 else if (*s == '\t')
3232 cur_col += (8 - cur_col % 8);
3233 else
3234 ++cur_col;
3235 ++s;
3236 }
3237 }
3238}
3239
3240/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 * Give a warning message (for searching).
3242 * Use 'w' highlighting and may repeat the message after redrawing
3243 */
3244 void
3245give_warning(message, hl)
3246 char_u *message;
3247 int hl;
3248{
3249 /* Don't do this for ":silent". */
3250 if (msg_silent != 0)
3251 return;
3252
3253 /* Don't want a hit-enter prompt here. */
3254 ++no_wait_return;
Bram Moolenaared203462004-06-16 11:19:22 +00003255
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256#ifdef FEAT_EVAL
3257 set_vim_var_string(VV_WARNINGMSG, message, -1);
3258#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 vim_free(keep_msg);
3260 keep_msg = NULL;
3261 if (hl)
3262 keep_msg_attr = hl_attr(HLF_W);
3263 else
3264 keep_msg_attr = 0;
3265 if (msg_attr(message, keep_msg_attr) && msg_scrolled == 0)
Bram Moolenaar030f0df2006-02-21 22:02:53 +00003266 set_keep_msg(message, keep_msg_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 msg_didout = FALSE; /* overwrite this message */
3268 msg_nowait = TRUE; /* don't wait for this message */
3269 msg_col = 0;
Bram Moolenaared203462004-06-16 11:19:22 +00003270
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 --no_wait_return;
3272}
3273
3274/*
3275 * Advance msg cursor to column "col".
3276 */
3277 void
3278msg_advance(col)
3279 int col;
3280{
3281 if (msg_silent != 0) /* nothing to advance to */
3282 {
3283 msg_col = col; /* for redirection, may fill it up later */
3284 return;
3285 }
3286 if (col >= Columns) /* not enough room */
3287 col = Columns - 1;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003288#ifdef FEAT_RIGHTLEFT
3289 if (cmdmsg_rl)
3290 while (msg_col > Columns - col)
3291 msg_putchar(' ');
3292 else
3293#endif
3294 while (msg_col < col)
3295 msg_putchar(' ');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296}
3297
3298#if defined(FEAT_CON_DIALOG) || defined(PROTO)
3299/*
3300 * Used for "confirm()" function, and the :confirm command prefix.
3301 * Versions which haven't got flexible dialogs yet, and console
3302 * versions, get this generic handler which uses the command line.
3303 *
3304 * type = one of:
3305 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC
3306 * title = title string (can be NULL for default)
3307 * (neither used in console dialogs at the moment)
3308 *
3309 * Format of the "buttons" string:
3310 * "Button1Name\nButton2Name\nButton3Name"
3311 * The first button should normally be the default/accept
3312 * The second button should be the 'Cancel' button
3313 * Other buttons- use your imagination!
3314 * A '&' in a button name becomes a shortcut, so each '&' should be before a
3315 * different letter.
3316 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 int
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003318do_dialog(type, title, message, buttons, dfltbutton, textfield, ex_cmd)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003319 int type UNUSED;
3320 char_u *title UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 char_u *message;
3322 char_u *buttons;
3323 int dfltbutton;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003324 char_u *textfield UNUSED; /* IObuff for inputdialog(), NULL
3325 otherwise */
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003326 int ex_cmd; /* when TRUE pressing : accepts default and starts
3327 Ex command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328{
3329 int oldState;
3330 int retval = 0;
3331 char_u *hotkeys;
3332 int c;
3333 int i;
3334
3335#ifndef NO_CONSOLE
3336 /* Don't output anything in silent mode ("ex -s") */
3337 if (silent_mode)
3338 return dfltbutton; /* return default option */
3339#endif
3340
3341#ifdef FEAT_GUI_DIALOG
3342 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */
3343 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
3344 {
3345 c = gui_mch_dialog(type, title, message, buttons, dfltbutton,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003346 textfield, ex_cmd);
Bram Moolenaar8de49e12009-02-11 17:47:54 +00003347 /* avoid a hit-enter prompt without clearing the cmdline */
3348 need_wait_return = FALSE;
3349 emsg_on_display = FALSE;
3350 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351
3352 /* Flush output to avoid that further messages and redrawing is done
3353 * in the wrong order. */
3354 out_flush();
3355 gui_mch_update();
3356
3357 return c;
3358 }
3359#endif
3360
3361 oldState = State;
3362 State = CONFIRM;
3363#ifdef FEAT_MOUSE
3364 setmouse();
3365#endif
3366
3367 /*
3368 * Since we wait for a keypress, don't make the
3369 * user press RETURN as well afterwards.
3370 */
3371 ++no_wait_return;
3372 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton);
3373
3374 if (hotkeys != NULL)
3375 {
3376 for (;;)
3377 {
3378 /* Get a typed character directly from the user. */
3379 c = get_keystroke();
3380 switch (c)
3381 {
3382 case CAR: /* User accepts default option */
3383 case NL:
3384 retval = dfltbutton;
3385 break;
3386 case Ctrl_C: /* User aborts/cancels */
3387 case ESC:
3388 retval = 0;
3389 break;
3390 default: /* Could be a hotkey? */
3391 if (c < 0) /* special keys are ignored here */
3392 continue;
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003393 if (c == ':' && ex_cmd)
3394 {
3395 retval = dfltbutton;
3396 ins_char_typebuf(':');
3397 break;
3398 }
3399
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 /* Make the character lowercase, as chars in "hotkeys" are. */
3401 c = MB_TOLOWER(c);
3402 retval = 1;
3403 for (i = 0; hotkeys[i]; ++i)
3404 {
3405#ifdef FEAT_MBYTE
3406 if (has_mbyte)
3407 {
3408 if ((*mb_ptr2char)(hotkeys + i) == c)
3409 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003410 i += (*mb_ptr2len)(hotkeys + i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 }
3412 else
3413#endif
3414 if (hotkeys[i] == c)
3415 break;
3416 ++retval;
3417 }
3418 if (hotkeys[i])
3419 break;
3420 /* No hotkey match, so keep waiting */
3421 continue;
3422 }
3423 break;
3424 }
3425
3426 vim_free(hotkeys);
3427 }
3428
3429 State = oldState;
3430#ifdef FEAT_MOUSE
3431 setmouse();
3432#endif
3433 --no_wait_return;
3434 msg_end_prompt();
3435
3436 return retval;
3437}
3438
3439static int copy_char __ARGS((char_u *from, char_u *to, int lowercase));
3440
3441/*
3442 * Copy one character from "*from" to "*to", taking care of multi-byte
3443 * characters. Return the length of the character in bytes.
3444 */
3445 static int
3446copy_char(from, to, lowercase)
3447 char_u *from;
3448 char_u *to;
3449 int lowercase; /* make character lower case */
3450{
3451#ifdef FEAT_MBYTE
3452 int len;
3453 int c;
3454
3455 if (has_mbyte)
3456 {
3457 if (lowercase)
3458 {
3459 c = MB_TOLOWER((*mb_ptr2char)(from));
3460 return (*mb_char2bytes)(c, to);
3461 }
3462 else
3463 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003464 len = (*mb_ptr2len)(from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 mch_memmove(to, from, (size_t)len);
3466 return len;
3467 }
3468 }
3469 else
3470#endif
3471 {
3472 if (lowercase)
3473 *to = (char_u)TOLOWER_LOC(*from);
3474 else
3475 *to = *from;
3476 return 1;
3477 }
3478}
3479
3480/*
3481 * Format the dialog string, and display it at the bottom of
3482 * the screen. Return a string of hotkey chars (if defined) for
3483 * each 'button'. If a button has no hotkey defined, the first character of
3484 * the button is used.
3485 * The hotkeys can be multi-byte characters, but without combining chars.
3486 *
3487 * Returns an allocated string with hotkeys, or NULL for error.
3488 */
3489 static char_u *
3490msg_show_console_dialog(message, buttons, dfltbutton)
3491 char_u *message;
3492 char_u *buttons;
3493 int dfltbutton;
3494{
3495 int len = 0;
3496#ifdef FEAT_MBYTE
3497# define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1)
3498#else
3499# define HOTK_LEN 1
3500#endif
3501 int lenhotkey = HOTK_LEN; /* count first button */
3502 char_u *hotk = NULL;
3503 char_u *msgp = NULL;
3504 char_u *hotkp = NULL;
3505 char_u *r;
3506 int copy;
3507#define HAS_HOTKEY_LEN 30
3508 char_u has_hotkey[HAS_HOTKEY_LEN];
3509 int first_hotkey = FALSE; /* first char of button is hotkey */
3510 int idx;
3511
3512 has_hotkey[0] = FALSE;
3513
3514 /*
3515 * First loop: compute the size of memory to allocate.
3516 * Second loop: copy to the allocated memory.
3517 */
3518 for (copy = 0; copy <= 1; ++copy)
3519 {
3520 r = buttons;
3521 idx = 0;
3522 while (*r)
3523 {
3524 if (*r == DLG_BUTTON_SEP)
3525 {
3526 if (copy)
3527 {
3528 *msgp++ = ',';
3529 *msgp++ = ' '; /* '\n' -> ', ' */
3530
3531 /* advance to next hotkey and set default hotkey */
3532#ifdef FEAT_MBYTE
3533 if (has_mbyte)
Bram Moolenaar6a516062007-07-05 08:11:42 +00003534 hotkp += STRLEN(hotkp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 else
3536#endif
3537 ++hotkp;
Bram Moolenaar6a516062007-07-05 08:11:42 +00003538 hotkp[copy_char(r + 1, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 if (dfltbutton)
3540 --dfltbutton;
3541
3542 /* If no hotkey is specified first char is used. */
3543 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx])
3544 first_hotkey = TRUE;
3545 }
3546 else
3547 {
3548 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */
3549 lenhotkey += HOTK_LEN; /* each button needs a hotkey */
3550 if (idx < HAS_HOTKEY_LEN - 1)
3551 has_hotkey[++idx] = FALSE;
3552 }
3553 }
3554 else if (*r == DLG_HOTKEY_CHAR || first_hotkey)
3555 {
3556 if (*r == DLG_HOTKEY_CHAR)
3557 ++r;
3558 first_hotkey = FALSE;
3559 if (copy)
3560 {
3561 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */
3562 *msgp++ = *r;
3563 else
3564 {
3565 /* '&a' -> '[a]' */
3566 *msgp++ = (dfltbutton == 1) ? '[' : '(';
3567 msgp += copy_char(r, msgp, FALSE);
3568 *msgp++ = (dfltbutton == 1) ? ']' : ')';
3569
3570 /* redefine hotkey */
Bram Moolenaar6a516062007-07-05 08:11:42 +00003571 hotkp[copy_char(r, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 }
3573 }
3574 else
3575 {
3576 ++len; /* '&a' -> '[a]' */
3577 if (idx < HAS_HOTKEY_LEN - 1)
3578 has_hotkey[idx] = TRUE;
3579 }
3580 }
3581 else
3582 {
3583 /* everything else copy literally */
3584 if (copy)
3585 msgp += copy_char(r, msgp, FALSE);
3586 }
3587
3588 /* advance to the next character */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003589 mb_ptr_adv(r);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 }
3591
3592 if (copy)
3593 {
3594 *msgp++ = ':';
3595 *msgp++ = ' ';
3596 *msgp = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 }
3598 else
3599 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003600 len += (int)(STRLEN(message)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003601 + 2 /* for the NL's */
3602 + STRLEN(buttons)
3603 + 3); /* for the ": " and NUL */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003604 lenhotkey++; /* for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605
3606 /* If no hotkey is specified first char is used. */
3607 if (!has_hotkey[0])
3608 {
3609 first_hotkey = TRUE;
3610 len += 2; /* "x" -> "[x]" */
3611 }
3612
3613 /*
3614 * Now allocate and load the strings
3615 */
3616 vim_free(confirm_msg);
3617 confirm_msg = alloc(len);
3618 if (confirm_msg == NULL)
3619 return NULL;
3620 *confirm_msg = NUL;
3621 hotk = alloc(lenhotkey);
3622 if (hotk == NULL)
3623 return NULL;
3624
3625 *confirm_msg = '\n';
3626 STRCPY(confirm_msg + 1, message);
3627
3628 msgp = confirm_msg + 1 + STRLEN(message);
3629 hotkp = hotk;
3630
Bram Moolenaar6a516062007-07-05 08:11:42 +00003631 /* Define first default hotkey. Keep the hotkey string NUL
3632 * terminated to avoid reading past the end. */
3633 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634
3635 /* Remember where the choices start, displaying starts here when
3636 * "hotkp" typed at the more prompt. */
3637 confirm_msg_tail = msgp;
3638 *msgp++ = '\n';
3639 }
3640 }
3641
3642 display_confirm_msg();
3643 return hotk;
3644}
3645
3646/*
3647 * Display the ":confirm" message. Also called when screen resized.
3648 */
3649 void
3650display_confirm_msg()
3651{
3652 /* avoid that 'q' at the more prompt truncates the message here */
3653 ++confirm_msg_used;
3654 if (confirm_msg != NULL)
3655 msg_puts_attr(confirm_msg, hl_attr(HLF_M));
3656 --confirm_msg_used;
3657}
3658
3659#endif /* FEAT_CON_DIALOG */
3660
3661#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
3662
3663 int
3664vim_dialog_yesno(type, title, message, dflt)
3665 int type;
3666 char_u *title;
3667 char_u *message;
3668 int dflt;
3669{
3670 if (do_dialog(type,
3671 title == NULL ? (char_u *)_("Question") : title,
3672 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003673 (char_u *)_("&Yes\n&No"), dflt, NULL, FALSE) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 return VIM_YES;
3675 return VIM_NO;
3676}
3677
3678 int
3679vim_dialog_yesnocancel(type, title, message, dflt)
3680 int type;
3681 char_u *title;
3682 char_u *message;
3683 int dflt;
3684{
3685 switch (do_dialog(type,
3686 title == NULL ? (char_u *)_("Question") : title,
3687 message,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003688 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 {
3690 case 1: return VIM_YES;
3691 case 2: return VIM_NO;
3692 }
3693 return VIM_CANCEL;
3694}
3695
3696 int
3697vim_dialog_yesnoallcancel(type, title, message, dflt)
3698 int type;
3699 char_u *title;
3700 char_u *message;
3701 int dflt;
3702{
3703 switch (do_dialog(type,
3704 title == NULL ? (char_u *)"Question" : title,
3705 message,
3706 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01003707 dflt, NULL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 {
3709 case 1: return VIM_YES;
3710 case 2: return VIM_NO;
3711 case 3: return VIM_ALL;
3712 case 4: return VIM_DISCARDALL;
3713 }
3714 return VIM_CANCEL;
3715}
3716
3717#endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */
3718
3719#if defined(FEAT_BROWSE) || defined(PROTO)
3720/*
3721 * Generic browse function. Calls gui_mch_browse() when possible.
3722 * Later this may pop-up a non-GUI file selector (external command?).
3723 */
3724 char_u *
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003725do_browse(flags, title, dflt, ext, initdir, filter, buf)
3726 int flags; /* BROWSE_SAVE and BROWSE_DIR */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727 char_u *title; /* title for the window */
3728 char_u *dflt; /* default file name (may include directory) */
3729 char_u *ext; /* extension added */
3730 char_u *initdir; /* initial directory, NULL for current dir or
3731 when using path from "dflt" */
3732 char_u *filter; /* file name filter */
3733 buf_T *buf; /* buffer to read/write for */
3734{
3735 char_u *fname;
3736 static char_u *last_dir = NULL; /* last used directory */
3737 char_u *tofree = NULL;
3738 int save_browse = cmdmod.browse;
3739
3740 /* Must turn off browse to avoid that autocommands will get the
3741 * flag too! */
3742 cmdmod.browse = FALSE;
3743
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003744 if (title == NULL || *title == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003746 if (flags & BROWSE_DIR)
3747 title = (char_u *)_("Select Directory dialog");
3748 else if (flags & BROWSE_SAVE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749 title = (char_u *)_("Save File dialog");
3750 else
3751 title = (char_u *)_("Open File dialog");
3752 }
3753
3754 /* When no directory specified, use default file name, default dir, buffer
3755 * dir, last dir or current dir */
3756 if ((initdir == NULL || *initdir == NUL) && dflt != NULL && *dflt != NUL)
3757 {
3758 if (mch_isdir(dflt)) /* default file name is a directory */
3759 {
3760 initdir = dflt;
3761 dflt = NULL;
3762 }
3763 else if (gettail(dflt) != dflt) /* default file name includes a path */
3764 {
3765 tofree = vim_strsave(dflt);
3766 if (tofree != NULL)
3767 {
3768 initdir = tofree;
3769 *gettail(initdir) = NUL;
3770 dflt = gettail(dflt);
3771 }
3772 }
3773 }
3774
3775 if (initdir == NULL || *initdir == NUL)
3776 {
3777 /* When 'browsedir' is a directory, use it */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003778 if (STRCMP(p_bsdir, "last") != 0
3779 && STRCMP(p_bsdir, "buffer") != 0
3780 && STRCMP(p_bsdir, "current") != 0
3781 && mch_isdir(p_bsdir))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 initdir = p_bsdir;
3783 /* When saving or 'browsedir' is "buffer", use buffer fname */
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003784 else if (((flags & BROWSE_SAVE) || *p_bsdir == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 && buf != NULL && buf->b_ffname != NULL)
3786 {
3787 if (dflt == NULL || *dflt == NUL)
3788 dflt = gettail(curbuf->b_ffname);
3789 tofree = vim_strsave(curbuf->b_ffname);
3790 if (tofree != NULL)
3791 {
3792 initdir = tofree;
3793 *gettail(initdir) = NUL;
3794 }
3795 }
3796 /* When 'browsedir' is "last", use dir from last browse */
3797 else if (*p_bsdir == 'l')
3798 initdir = last_dir;
3799 /* When 'browsedir is "current", use current directory. This is the
3800 * default already, leave initdir empty. */
3801 }
3802
3803# ifdef FEAT_GUI
3804 if (gui.in_use) /* when this changes, also adjust f_has()! */
3805 {
3806 if (filter == NULL
3807# ifdef FEAT_EVAL
3808 && (filter = get_var_value((char_u *)"b:browsefilter")) == NULL
3809 && (filter = get_var_value((char_u *)"g:browsefilter")) == NULL
3810# endif
3811 )
3812 filter = BROWSE_FILTER_DEFAULT;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003813 if (flags & BROWSE_DIR)
3814 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003815# if defined(FEAT_GUI_GTK) || defined(WIN3264)
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003816 /* For systems that have a directory dialog. */
3817 fname = gui_mch_browsedir(title, initdir);
3818# else
3819 /* Generic solution for selecting a directory: select a file and
3820 * remove the file name. */
3821 fname = gui_mch_browse(0, title, dflt, ext, initdir, (char_u *)"");
3822# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003823# if !defined(FEAT_GUI_GTK)
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003824 /* Win32 adds a dummy file name, others return an arbitrary file
3825 * name. GTK+ 2 returns only the directory, */
3826 if (fname != NULL && *fname != NUL && !mch_isdir(fname))
3827 {
3828 /* Remove the file name. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003829 char_u *tail = gettail_sep(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003830
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003831 if (tail == fname)
3832 *tail++ = '.'; /* use current dir */
3833 *tail = NUL;
3834 }
3835# endif
3836 }
3837 else
3838 fname = gui_mch_browse(flags & BROWSE_SAVE,
3839 title, dflt, ext, initdir, filter);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840
3841 /* We hang around in the dialog for a while, the user might do some
3842 * things to our files. The Win32 dialog allows deleting or renaming
3843 * a file, check timestamps. */
3844 need_check_timestamps = TRUE;
3845 did_check_timestamps = FALSE;
3846 }
3847 else
3848# endif
3849 {
3850 /* TODO: non-GUI file selector here */
3851 EMSG(_("E338: Sorry, no file browser in console mode"));
3852 fname = NULL;
3853 }
3854
3855 /* keep the directory for next time */
3856 if (fname != NULL)
3857 {
3858 vim_free(last_dir);
3859 last_dir = vim_strsave(fname);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003860 if (last_dir != NULL && !(flags & BROWSE_DIR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 {
3862 *gettail(last_dir) = NUL;
3863 if (*last_dir == NUL)
3864 {
3865 /* filename only returned, must be in current dir */
3866 vim_free(last_dir);
3867 last_dir = alloc(MAXPATHL);
3868 if (last_dir != NULL)
3869 mch_dirname(last_dir, MAXPATHL);
3870 }
3871 }
3872 }
3873
3874 vim_free(tofree);
3875 cmdmod.browse = save_browse;
3876
3877 return fname;
3878}
3879#endif
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003880
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003881#if defined(HAVE_STDARG_H) && defined(FEAT_EVAL)
3882static char *e_printf = N_("E766: Insufficient arguments for printf()");
3883
3884static long tv_nr __ARGS((typval_T *tvs, int *idxp));
3885static char *tv_str __ARGS((typval_T *tvs, int *idxp));
Bram Moolenaara7241f52008-06-24 20:39:31 +00003886# ifdef FEAT_FLOAT
3887static double tv_float __ARGS((typval_T *tvs, int *idxp));
3888# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003889
3890/*
3891 * Get number argument from "idxp" entry in "tvs". First entry is 1.
3892 */
3893 static long
3894tv_nr(tvs, idxp)
3895 typval_T *tvs;
3896 int *idxp;
3897{
3898 int idx = *idxp - 1;
3899 long n = 0;
3900 int err = FALSE;
3901
3902 if (tvs[idx].v_type == VAR_UNKNOWN)
3903 EMSG(_(e_printf));
3904 else
3905 {
3906 ++*idxp;
3907 n = get_tv_number_chk(&tvs[idx], &err);
3908 if (err)
3909 n = 0;
3910 }
3911 return n;
3912}
3913
3914/*
3915 * Get string argument from "idxp" entry in "tvs". First entry is 1.
Bram Moolenaar1e015462005-09-25 22:16:38 +00003916 * Returns NULL for an error.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003917 */
3918 static char *
3919tv_str(tvs, idxp)
3920 typval_T *tvs;
3921 int *idxp;
3922{
3923 int idx = *idxp - 1;
3924 char *s = NULL;
3925
3926 if (tvs[idx].v_type == VAR_UNKNOWN)
3927 EMSG(_(e_printf));
3928 else
3929 {
3930 ++*idxp;
3931 s = (char *)get_tv_string_chk(&tvs[idx]);
3932 }
3933 return s;
3934}
Bram Moolenaara7241f52008-06-24 20:39:31 +00003935
3936# ifdef FEAT_FLOAT
3937/*
3938 * Get float argument from "idxp" entry in "tvs". First entry is 1.
3939 */
3940 static double
3941tv_float(tvs, idxp)
3942 typval_T *tvs;
3943 int *idxp;
3944{
3945 int idx = *idxp - 1;
3946 double f = 0;
3947
3948 if (tvs[idx].v_type == VAR_UNKNOWN)
3949 EMSG(_(e_printf));
3950 else
3951 {
3952 ++*idxp;
3953 if (tvs[idx].v_type == VAR_FLOAT)
3954 f = tvs[idx].vval.v_float;
Bram Moolenaarc4a87012008-06-28 14:10:11 +00003955 else if (tvs[idx].v_type == VAR_NUMBER)
3956 f = tvs[idx].vval.v_number;
Bram Moolenaara7241f52008-06-24 20:39:31 +00003957 else
3958 EMSG(_("E807: Expected Float argument for printf()"));
3959 }
3960 return f;
3961}
3962# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003963#endif
3964
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003965/*
3966 * This code was included to provide a portable vsnprintf() and snprintf().
Bram Moolenaara2031822006-03-07 22:29:51 +00003967 * Some systems may provide their own, but we always use this one for
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003968 * consistency.
3969 *
3970 * This code is based on snprintf.c - a portable implementation of snprintf
3971 * by Mark Martinec <mark.martinec@ijs.si>, Version 2.2, 2000-10-06.
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00003972 * Included with permission. It was heavily modified to fit in Vim.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003973 * The original code, including useful comments, can be found here:
3974 * http://www.ijs.si/software/snprintf/
3975 *
3976 * This snprintf() only supports the following conversion specifiers:
3977 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
3978 * with flags: '-', '+', ' ', '0' and '#'.
3979 * An asterisk is supported for field width as well as precision.
3980 *
Bram Moolenaara7241f52008-06-24 20:39:31 +00003981 * Limited support for floating point was added: 'f', 'e', 'E', 'g', 'G'.
3982 *
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003983 * Length modifiers 'h' (short int) and 'l' (long int) are supported.
3984 * 'll' (long long int) is not supported.
3985 *
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00003986 * The locale is not used, the string is used as a byte string. This is only
3987 * relevant for double-byte encodings where the second byte may be '%'.
3988 *
Bram Moolenaara2031822006-03-07 22:29:51 +00003989 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL
3990 * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003991 *
3992 * The return value is the number of characters which would be generated
3993 * for the given input, excluding the trailing null. If this value
Bram Moolenaara2031822006-03-07 22:29:51 +00003994 * is greater or equal to "str_m", not all characters from the result
3995 * have been stored in str, output bytes beyond the ("str_m"-1) -th character
3996 * are discarded. If "str_m" is greater than zero it is guaranteed
Bram Moolenaar9c13b352005-05-19 20:53:52 +00003997 * the resulting string will be null-terminated.
3998 */
3999
4000/*
4001 * When va_list is not supported we only define vim_snprintf().
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004002 *
4003 * vim_vsnprintf() can be invoked with either "va_list" or a list of
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004004 * "typval_T". When the latter is not used it must be NULL.
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004005 */
4006
4007/* When generating prototypes all of this is skipped, cproto doesn't
4008 * understand this. */
4009#ifndef PROTO
Bram Moolenaara800b422010-06-27 01:15:55 +02004010
4011# ifdef HAVE_STDARG_H
4012/* Like vim_vsnprintf() but append to the string. */
4013 int
4014vim_snprintf_add(char *str, size_t str_m, char *fmt, ...)
4015{
4016 va_list ap;
4017 int str_l;
4018 size_t len = STRLEN(str);
4019 size_t space;
4020
4021 if (str_m <= len)
4022 space = 0;
4023 else
4024 space = str_m - len;
4025 va_start(ap, fmt);
4026 str_l = vim_vsnprintf(str + len, space, fmt, ap, NULL);
4027 va_end(ap);
4028 return str_l;
4029}
4030# else
4031/* Like vim_vsnprintf() but append to the string. */
4032 int
4033vim_snprintf_add(str, str_m, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
4034 char *str;
4035 size_t str_m;
4036 char *fmt;
4037 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
4038{
4039 size_t len = STRLEN(str);
4040 size_t space;
4041
4042 if (str_m <= len)
4043 space = 0;
4044 else
4045 space = str_m - len;
4046 return vim_vsnprintf(str + len, space, fmt,
4047 a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
4048}
4049# endif
4050
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004051# ifdef HAVE_STDARG_H
4052 int
4053vim_snprintf(char *str, size_t str_m, char *fmt, ...)
4054{
4055 va_list ap;
4056 int str_l;
4057
4058 va_start(ap, fmt);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004059 str_l = vim_vsnprintf(str, str_m, fmt, ap, NULL);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004060 va_end(ap);
4061 return str_l;
4062}
4063
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004064 int
4065vim_vsnprintf(str, str_m, fmt, ap, tvs)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004066# else
4067 /* clumsy way to work around missing va_list */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004068# 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 +00004069
4070/* VARARGS */
4071 int
4072#ifdef __BORLANDC__
4073_RTLENTRYF
4074#endif
4075vim_snprintf(str, str_m, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10)
4076# endif
4077 char *str;
4078 size_t str_m;
4079 char *fmt;
4080# ifdef HAVE_STDARG_H
4081 va_list ap;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004082 typval_T *tvs;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004083# else
4084 long a1, a2, a3, a4, a5, a6, a7, a8, a9, a10;
4085# endif
4086{
4087 size_t str_l = 0;
4088 char *p = fmt;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004089 int arg_idx = 1;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004090
4091 if (p == NULL)
4092 p = "";
4093 while (*p != NUL)
4094 {
4095 if (*p != '%')
4096 {
4097 char *q = strchr(p + 1, '%');
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004098 size_t n = (q == NULL) ? STRLEN(p) : (size_t)(q - p);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004099
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004100 /* Copy up to the next '%' or NUL without any changes. */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004101 if (str_l < str_m)
4102 {
4103 size_t avail = str_m - str_l;
4104
4105 mch_memmove(str + str_l, p, n > avail ? avail : n);
4106 }
4107 p += n;
4108 str_l += n;
4109 }
4110 else
4111 {
4112 size_t min_field_width = 0, precision = 0;
4113 int zero_padding = 0, precision_specified = 0, justify_left = 0;
4114 int alternate_form = 0, force_sign = 0;
4115
4116 /* If both the ' ' and '+' flags appear, the ' ' flag should be
4117 * ignored. */
4118 int space_for_positive = 1;
4119
4120 /* allowed values: \0, h, l, L */
4121 char length_modifier = '\0';
4122
4123 /* temporary buffer for simple numeric->string conversion */
Bram Moolenaara7241f52008-06-24 20:39:31 +00004124#ifdef FEAT_FLOAT
4125# define TMP_LEN 350 /* On my system 1e308 is the biggest number possible.
4126 * That sounds reasonable to use as the maximum
4127 * printable. */
4128#else
4129# define TMP_LEN 32
4130#endif
4131 char tmp[TMP_LEN];
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004132
4133 /* string address in case of string argument */
4134 char *str_arg;
4135
4136 /* natural field width of arg without padding and sign */
4137 size_t str_arg_l;
4138
4139 /* unsigned char argument value - only defined for c conversion.
4140 * N.B. standard explicitly states the char argument for the c
4141 * conversion is unsigned */
4142 unsigned char uchar_arg;
4143
4144 /* number of zeros to be inserted for numeric conversions as
4145 * required by the precision or minimal field width */
4146 size_t number_of_zeros_to_pad = 0;
4147
4148 /* index into tmp where zero padding is to be inserted */
4149 size_t zero_padding_insertion_ind = 0;
4150
4151 /* current conversion specifier character */
4152 char fmt_spec = '\0';
4153
4154 str_arg = NULL;
4155 p++; /* skip '%' */
4156
4157 /* parse flags */
4158 while (*p == '0' || *p == '-' || *p == '+' || *p == ' '
4159 || *p == '#' || *p == '\'')
4160 {
4161 switch (*p)
4162 {
4163 case '0': zero_padding = 1; break;
4164 case '-': justify_left = 1; break;
4165 case '+': force_sign = 1; space_for_positive = 0; break;
4166 case ' ': force_sign = 1;
4167 /* If both the ' ' and '+' flags appear, the ' '
4168 * flag should be ignored */
4169 break;
4170 case '#': alternate_form = 1; break;
4171 case '\'': break;
4172 }
4173 p++;
4174 }
4175 /* If the '0' and '-' flags both appear, the '0' flag should be
4176 * ignored. */
4177
4178 /* parse field width */
4179 if (*p == '*')
4180 {
4181 int j;
4182
4183 p++;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004184 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004185#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004186 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004187#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004188# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004189 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004190# endif
4191 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004192#endif
4193 if (j >= 0)
4194 min_field_width = j;
4195 else
4196 {
4197 min_field_width = -j;
4198 justify_left = 1;
4199 }
4200 }
4201 else if (VIM_ISDIGIT((int)(*p)))
4202 {
4203 /* size_t could be wider than unsigned int; make sure we treat
4204 * argument like common implementations do */
4205 unsigned int uj = *p++ - '0';
4206
4207 while (VIM_ISDIGIT((int)(*p)))
4208 uj = 10 * uj + (unsigned int)(*p++ - '0');
4209 min_field_width = uj;
4210 }
4211
4212 /* parse precision */
4213 if (*p == '.')
4214 {
4215 p++;
4216 precision_specified = 1;
4217 if (*p == '*')
4218 {
4219 int j;
4220
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004221 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004222#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004223 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 ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004227# endif
4228 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004229#endif
4230 p++;
4231 if (j >= 0)
4232 precision = j;
4233 else
4234 {
4235 precision_specified = 0;
4236 precision = 0;
4237 }
4238 }
4239 else if (VIM_ISDIGIT((int)(*p)))
4240 {
4241 /* size_t could be wider than unsigned int; make sure we
4242 * treat argument like common implementations do */
4243 unsigned int uj = *p++ - '0';
4244
4245 while (VIM_ISDIGIT((int)(*p)))
4246 uj = 10 * uj + (unsigned int)(*p++ - '0');
4247 precision = uj;
4248 }
4249 }
4250
4251 /* parse 'h', 'l' and 'll' length modifiers */
4252 if (*p == 'h' || *p == 'l')
4253 {
4254 length_modifier = *p;
4255 p++;
4256 if (length_modifier == 'l' && *p == 'l')
4257 {
4258 /* double l = long long */
4259 length_modifier = 'l'; /* treat it as a single 'l' */
4260 p++;
4261 }
4262 }
4263 fmt_spec = *p;
4264
4265 /* common synonyms: */
4266 switch (fmt_spec)
4267 {
4268 case 'i': fmt_spec = 'd'; break;
4269 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break;
4270 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break;
4271 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004272 case 'F': fmt_spec = 'f'; break;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004273 default: break;
4274 }
4275
4276 /* get parameter value, do initial processing */
4277 switch (fmt_spec)
4278 {
4279 /* '%' and 'c' behave similar to 's' regarding flags and field
4280 * widths */
4281 case '%':
4282 case 'c':
4283 case 's':
4284 length_modifier = '\0';
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004285 str_arg_l = 1;
4286 switch (fmt_spec)
4287 {
4288 case '%':
4289 str_arg = p;
4290 break;
4291
4292 case 'c':
4293 {
4294 int j;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004295
4296 j =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004297#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004298 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004299#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004300# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004301 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004302# endif
4303 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004304#endif
4305 /* standard demands unsigned char */
4306 uchar_arg = (unsigned char)j;
4307 str_arg = (char *)&uchar_arg;
4308 break;
4309 }
4310
4311 case 's':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004312 str_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004313#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004314 (char *)get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004315#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004316# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004317 tvs != NULL ? tv_str(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004318# endif
4319 va_arg(ap, char *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004320#endif
4321 if (str_arg == NULL)
4322 {
4323 str_arg = "[NULL]";
4324 str_arg_l = 6;
4325 }
4326 /* make sure not to address string beyond the specified
4327 * precision !!! */
4328 else if (!precision_specified)
4329 str_arg_l = strlen(str_arg);
4330 /* truncate string if necessary as requested by precision */
4331 else if (precision == 0)
4332 str_arg_l = 0;
4333 else
4334 {
Bram Moolenaar223b4312006-05-13 11:09:22 +00004335 /* Don't put the #if inside memchr(), it can be a
4336 * macro. */
4337#if SIZEOF_INT <= 2
4338 char *q = memchr(str_arg, '\0', precision);
4339#else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004340 /* memchr on HP does not like n > 2^31 !!! */
4341 char *q = memchr(str_arg, '\0',
Bram Moolenaar223b4312006-05-13 11:09:22 +00004342 precision <= (size_t)0x7fffffffL ? precision
4343 : (size_t)0x7fffffffL);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004344#endif
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004345 str_arg_l = (q == NULL) ? precision
4346 : (size_t)(q - str_arg);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004347 }
4348 break;
4349
4350 default:
4351 break;
4352 }
4353 break;
4354
4355 case 'd': case 'u': case 'o': case 'x': case 'X': case 'p':
4356 {
4357 /* NOTE: the u, o, x, X and p conversion specifiers
4358 * imply the value is unsigned; d implies a signed
4359 * value */
4360
4361 /* 0 if numeric argument is zero (or if pointer is
4362 * NULL for 'p'), +1 if greater than zero (or nonzero
4363 * for unsigned arguments), -1 if negative (unsigned
4364 * argument is never negative) */
4365 int arg_sign = 0;
4366
4367 /* only defined for length modifier h, or for no
4368 * length modifiers */
4369 int int_arg = 0;
4370 unsigned int uint_arg = 0;
4371
4372 /* only defined for length modifier l */
4373 long int long_arg = 0;
4374 unsigned long int ulong_arg = 0;
4375
4376 /* pointer argument value -only defined for p
4377 * conversion */
4378 void *ptr_arg = NULL;
4379
4380 if (fmt_spec == 'p')
4381 {
4382 length_modifier = '\0';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004383 ptr_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004384#ifndef HAVE_STDARG_H
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004385 (void *)get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004386#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004387# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004388 tvs != NULL ? (void *)tv_str(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004389# endif
4390 va_arg(ap, void *);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004391#endif
4392 if (ptr_arg != NULL)
4393 arg_sign = 1;
4394 }
4395 else if (fmt_spec == 'd')
4396 {
4397 /* signed */
4398 switch (length_modifier)
4399 {
4400 case '\0':
4401 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004402 /* char and short arguments are passed as int. */
4403 int_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004404#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004405 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004406#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004407# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004408 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004409# endif
4410 va_arg(ap, int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004411#endif
4412 if (int_arg > 0)
4413 arg_sign = 1;
4414 else if (int_arg < 0)
4415 arg_sign = -1;
4416 break;
4417 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004418 long_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004419#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004420 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004421#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004422# if defined(FEAT_EVAL)
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004423 tvs != NULL ? tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004424# endif
4425 va_arg(ap, long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004426#endif
4427 if (long_arg > 0)
4428 arg_sign = 1;
4429 else if (long_arg < 0)
4430 arg_sign = -1;
4431 break;
4432 }
4433 }
4434 else
4435 {
4436 /* unsigned */
4437 switch (length_modifier)
4438 {
4439 case '\0':
4440 case 'h':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004441 uint_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004442#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004443 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004444#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004445# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004446 tvs != NULL ? (unsigned)
4447 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004448# endif
4449 va_arg(ap, unsigned int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004450#endif
4451 if (uint_arg != 0)
4452 arg_sign = 1;
4453 break;
4454 case 'l':
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004455 ulong_arg =
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004456#ifndef HAVE_STDARG_H
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004457 get_a_arg(arg_idx);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004458#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004459# if defined(FEAT_EVAL)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004460 tvs != NULL ? (unsigned long)
4461 tv_nr(tvs, &arg_idx) :
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004462# endif
4463 va_arg(ap, unsigned long int);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004464#endif
4465 if (ulong_arg != 0)
4466 arg_sign = 1;
4467 break;
4468 }
4469 }
4470
4471 str_arg = tmp;
4472 str_arg_l = 0;
4473
4474 /* NOTE:
4475 * For d, i, u, o, x, and X conversions, if precision is
4476 * specified, the '0' flag should be ignored. This is so
4477 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux,
4478 * FreeBSD, NetBSD; but not with Perl.
4479 */
4480 if (precision_specified)
4481 zero_padding = 0;
4482 if (fmt_spec == 'd')
4483 {
4484 if (force_sign && arg_sign >= 0)
4485 tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
4486 /* leave negative numbers for sprintf to handle, to
4487 * avoid handling tricky cases like (short int)-32768 */
4488 }
4489 else if (alternate_form)
4490 {
4491 if (arg_sign != 0
4492 && (fmt_spec == 'x' || fmt_spec == 'X') )
4493 {
4494 tmp[str_arg_l++] = '0';
4495 tmp[str_arg_l++] = fmt_spec;
4496 }
4497 /* alternate form should have no effect for p
4498 * conversion, but ... */
4499 }
4500
4501 zero_padding_insertion_ind = str_arg_l;
4502 if (!precision_specified)
4503 precision = 1; /* default precision is 1 */
4504 if (precision == 0 && arg_sign == 0)
4505 {
4506 /* When zero value is formatted with an explicit
4507 * precision 0, the resulting formatted string is
4508 * empty (d, i, u, o, x, X, p). */
4509 }
4510 else
4511 {
4512 char f[5];
4513 int f_l = 0;
4514
4515 /* construct a simple format string for sprintf */
4516 f[f_l++] = '%';
4517 if (!length_modifier)
4518 ;
4519 else if (length_modifier == '2')
4520 {
4521 f[f_l++] = 'l';
4522 f[f_l++] = 'l';
4523 }
4524 else
4525 f[f_l++] = length_modifier;
4526 f[f_l++] = fmt_spec;
4527 f[f_l++] = '\0';
4528
4529 if (fmt_spec == 'p')
4530 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg);
4531 else if (fmt_spec == 'd')
4532 {
4533 /* signed */
4534 switch (length_modifier)
4535 {
4536 case '\0':
4537 case 'h': str_arg_l += sprintf(
4538 tmp + str_arg_l, f, int_arg);
4539 break;
4540 case 'l': str_arg_l += sprintf(
4541 tmp + str_arg_l, f, long_arg);
4542 break;
4543 }
4544 }
4545 else
4546 {
4547 /* unsigned */
4548 switch (length_modifier)
4549 {
4550 case '\0':
4551 case 'h': str_arg_l += sprintf(
4552 tmp + str_arg_l, f, uint_arg);
4553 break;
4554 case 'l': str_arg_l += sprintf(
4555 tmp + str_arg_l, f, ulong_arg);
4556 break;
4557 }
4558 }
4559
4560 /* include the optional minus sign and possible
4561 * "0x" in the region before the zero padding
4562 * insertion point */
4563 if (zero_padding_insertion_ind < str_arg_l
4564 && tmp[zero_padding_insertion_ind] == '-')
4565 zero_padding_insertion_ind++;
4566 if (zero_padding_insertion_ind + 1 < str_arg_l
4567 && tmp[zero_padding_insertion_ind] == '0'
4568 && (tmp[zero_padding_insertion_ind + 1] == 'x'
4569 || tmp[zero_padding_insertion_ind + 1] == 'X'))
4570 zero_padding_insertion_ind += 2;
4571 }
4572
4573 {
4574 size_t num_of_digits = str_arg_l
4575 - zero_padding_insertion_ind;
4576
4577 if (alternate_form && fmt_spec == 'o'
4578 /* unless zero is already the first
4579 * character */
4580 && !(zero_padding_insertion_ind < str_arg_l
4581 && tmp[zero_padding_insertion_ind] == '0'))
4582 {
4583 /* assure leading zero for alternate-form
4584 * octal numbers */
4585 if (!precision_specified
4586 || precision < num_of_digits + 1)
4587 {
4588 /* precision is increased to force the
4589 * first character to be zero, except if a
4590 * zero value is formatted with an
4591 * explicit precision of zero */
4592 precision = num_of_digits + 1;
4593 precision_specified = 1;
4594 }
4595 }
4596 /* zero padding to specified precision? */
4597 if (num_of_digits < precision)
4598 number_of_zeros_to_pad = precision - num_of_digits;
4599 }
4600 /* zero padding to specified minimal field width? */
4601 if (!justify_left && zero_padding)
4602 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004603 int n = (int)(min_field_width - (str_arg_l
4604 + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004605 if (n > 0)
4606 number_of_zeros_to_pad += n;
4607 }
4608 break;
4609 }
4610
Bram Moolenaara7241f52008-06-24 20:39:31 +00004611#ifdef FEAT_FLOAT
4612 case 'f':
4613 case 'e':
4614 case 'E':
4615 case 'g':
4616 case 'G':
4617 {
4618 /* Floating point. */
4619 double f;
4620 double abs_f;
4621 char format[40];
4622 int l;
4623 int remove_trailing_zeroes = FALSE;
4624
4625 f =
4626# ifndef HAVE_STDARG_H
4627 get_a_arg(arg_idx);
4628# else
4629# if defined(FEAT_EVAL)
4630 tvs != NULL ? tv_float(tvs, &arg_idx) :
4631# endif
4632 va_arg(ap, double);
4633# endif
4634 abs_f = f < 0 ? -f : f;
4635
4636 if (fmt_spec == 'g' || fmt_spec == 'G')
4637 {
4638 /* Would be nice to use %g directly, but it prints
4639 * "1.0" as "1", we don't want that. */
4640 if ((abs_f >= 0.001 && abs_f < 10000000.0)
4641 || abs_f == 0.0)
4642 fmt_spec = 'f';
4643 else
4644 fmt_spec = fmt_spec == 'g' ? 'e' : 'E';
4645 remove_trailing_zeroes = TRUE;
4646 }
4647
Bram Moolenaarc9372132009-01-13 15:38:37 +00004648 if (fmt_spec == 'f' &&
4649#ifdef VAX
4650 abs_f > 1.0e38
4651#else
4652 abs_f > 1.0e307
4653#endif
4654 )
Bram Moolenaara7241f52008-06-24 20:39:31 +00004655 {
4656 /* Avoid a buffer overflow */
4657 strcpy(tmp, "inf");
4658 str_arg_l = 3;
4659 }
4660 else
4661 {
4662 format[0] = '%';
4663 l = 1;
4664 if (precision_specified)
4665 {
4666 size_t max_prec = TMP_LEN - 10;
4667
4668 /* Make sure we don't get more digits than we
4669 * have room for. */
4670 if (fmt_spec == 'f' && abs_f > 1.0)
4671 max_prec -= (size_t)log10(abs_f);
4672 if (precision > max_prec)
4673 precision = max_prec;
4674 l += sprintf(format + 1, ".%d", (int)precision);
4675 }
4676 format[l] = fmt_spec;
4677 format[l + 1] = NUL;
4678 str_arg_l = sprintf(tmp, format, f);
4679
4680 if (remove_trailing_zeroes)
4681 {
4682 int i;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004683 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004684
4685 /* Using %g or %G: remove superfluous zeroes. */
4686 if (fmt_spec == 'f')
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004687 tp = tmp + str_arg_l - 1;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004688 else
4689 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004690 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00004691 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004692 if (tp != NULL)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004693 {
4694 /* Remove superfluous '+' and leading
4695 * zeroes from the exponent. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004696 if (tp[1] == '+')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004697 {
4698 /* Change "1.0e+07" to "1.0e07" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004699 STRMOVE(tp + 1, tp + 2);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004700 --str_arg_l;
4701 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004702 i = (tp[1] == '-') ? 2 : 1;
4703 while (tp[i] == '0')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004704 {
4705 /* Change "1.0e07" to "1.0e7" */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004706 STRMOVE(tp + i, tp + i + 1);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004707 --str_arg_l;
4708 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004709 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004710 }
4711 }
4712
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004713 if (tp != NULL && !precision_specified)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004714 /* Remove trailing zeroes, but keep the one
4715 * just after a dot. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004716 while (tp > tmp + 2 && *tp == '0'
4717 && tp[-1] != '.')
Bram Moolenaara7241f52008-06-24 20:39:31 +00004718 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004719 STRMOVE(tp, tp + 1);
4720 --tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004721 --str_arg_l;
4722 }
4723 }
4724 else
4725 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004726 char *tp;
Bram Moolenaara7241f52008-06-24 20:39:31 +00004727
4728 /* Be consistent: some printf("%e") use 1.0e+12
4729 * and some 1.0e+012. Remove one zero in the last
4730 * case. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004731 tp = (char *)vim_strchr((char_u *)tmp,
Bram Moolenaara7241f52008-06-24 20:39:31 +00004732 fmt_spec == 'e' ? 'e' : 'E');
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004733 if (tp != NULL && (tp[1] == '+' || tp[1] == '-')
4734 && tp[2] == '0'
4735 && vim_isdigit(tp[3])
4736 && vim_isdigit(tp[4]))
Bram Moolenaara7241f52008-06-24 20:39:31 +00004737 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004738 STRMOVE(tp + 2, tp + 3);
Bram Moolenaara7241f52008-06-24 20:39:31 +00004739 --str_arg_l;
4740 }
4741 }
4742 }
4743 str_arg = tmp;
4744 break;
4745 }
4746#endif
4747
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004748 default:
4749 /* unrecognized conversion specifier, keep format string
4750 * as-is */
4751 zero_padding = 0; /* turn zero padding off for non-numeric
Bram Moolenaarf1dc4962007-05-10 16:50:23 +00004752 conversion */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004753 justify_left = 1;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004754 min_field_width = 0; /* reset flags */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004755
4756 /* discard the unrecognized conversion, just keep *
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004757 * the unrecognized conversion character */
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004758 str_arg = p;
4759 str_arg_l = 0;
4760 if (*p != NUL)
4761 str_arg_l++; /* include invalid conversion specifier
4762 unchanged if not at end-of-string */
4763 break;
4764 }
4765
4766 if (*p != NUL)
4767 p++; /* step over the just processed conversion specifier */
4768
4769 /* insert padding to the left as requested by min_field_width;
4770 * this does not include the zero padding in case of numerical
4771 * conversions*/
4772 if (!justify_left)
4773 {
4774 /* left padding with blank or zero */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004775 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004776
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004777 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004778 {
4779 if (str_l < str_m)
4780 {
4781 size_t avail = str_m - str_l;
4782
4783 vim_memset(str + str_l, zero_padding ? '0' : ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004784 (size_t)pn > avail ? avail
4785 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004786 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004787 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004788 }
4789 }
4790
4791 /* zero padding as requested by the precision or by the minimal
4792 * field width for numeric conversions required? */
Bram Moolenaarea424162005-06-16 21:51:00 +00004793 if (number_of_zeros_to_pad == 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004794 {
4795 /* will not copy first part of numeric right now, *
4796 * force it to be copied later in its entirety */
4797 zero_padding_insertion_ind = 0;
4798 }
4799 else
4800 {
4801 /* insert first part of numerics (sign or '0x') before zero
4802 * padding */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004803 int zn = (int)zero_padding_insertion_ind;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004804
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004805 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004806 {
4807 if (str_l < str_m)
4808 {
4809 size_t avail = str_m - str_l;
4810
4811 mch_memmove(str + str_l, str_arg,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004812 (size_t)zn > avail ? avail
4813 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004814 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004815 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004816 }
4817
4818 /* insert zero padding as requested by the precision or min
4819 * field width */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004820 zn = (int)number_of_zeros_to_pad;
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004821 if (zn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004822 {
4823 if (str_l < str_m)
4824 {
4825 size_t avail = str_m-str_l;
4826
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004827 vim_memset(str + str_l, '0',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004828 (size_t)zn > avail ? avail
4829 : (size_t)zn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004830 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004831 str_l += zn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004832 }
4833 }
4834
4835 /* insert formatted string
4836 * (or as-is conversion specifier for unknown conversions) */
4837 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004838 int sn = (int)(str_arg_l - zero_padding_insertion_ind);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004839
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004840 if (sn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004841 {
4842 if (str_l < str_m)
4843 {
4844 size_t avail = str_m - str_l;
4845
4846 mch_memmove(str + str_l,
4847 str_arg + zero_padding_insertion_ind,
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004848 (size_t)sn > avail ? avail : (size_t)sn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004849 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004850 str_l += sn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004851 }
4852 }
4853
4854 /* insert right padding */
4855 if (justify_left)
4856 {
4857 /* right blank padding to the field width */
Bram Moolenaara7241f52008-06-24 20:39:31 +00004858 int pn = (int)(min_field_width
4859 - (str_arg_l + number_of_zeros_to_pad));
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004860
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004861 if (pn > 0)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004862 {
4863 if (str_l < str_m)
4864 {
4865 size_t avail = str_m - str_l;
4866
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004867 vim_memset(str + str_l, ' ',
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004868 (size_t)pn > avail ? avail
4869 : (size_t)pn);
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004870 }
Bram Moolenaar686f51e2005-05-20 21:19:57 +00004871 str_l += pn;
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004872 }
4873 }
4874 }
4875 }
4876
4877 if (str_m > 0)
4878 {
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004879 /* make sure the string is nul-terminated even at the expense of
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004880 * overwriting the last character (shouldn't happen, but just in case)
4881 * */
4882 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0';
4883 }
4884
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004885#ifdef HAVE_STDARG_H
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00004886 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004887 EMSG(_("E767: Too many arguments to printf()"));
4888#endif
4889
Bram Moolenaar63b3ce82005-07-22 21:46:50 +00004890 /* Return the number of characters formatted (excluding trailing nul
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004891 * character), that is, the number of characters that would have been
4892 * written to the buffer if it were large enough. */
4893 return (int)str_l;
4894}
4895
4896#endif /* PROTO */