1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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.
11 * message.c: functions for displaying messages on the command line
14 #define MESSAGE_FILE /* don't include prototype for smsg() */
18 #if defined(FEAT_FLOAT) && defined(HAVE_MATH_H)
22 static int other_sourcing_name
__ARGS((void));
23 static char_u
*get_emsg_source
__ARGS((void));
24 static char_u
*get_emsg_lnum
__ARGS((void));
25 static void add_msg_hist
__ARGS((char_u
*s
, int len
, int attr
));
26 static void hit_return_msg
__ARGS((void));
27 static void msg_home_replace_attr
__ARGS((char_u
*fname
, int attr
));
29 static char_u
*screen_puts_mbyte
__ARGS((char_u
*s
, int l
, int attr
));
31 static void msg_puts_attr_len
__ARGS((char_u
*str
, int maxlen
, int attr
));
32 static void msg_puts_display
__ARGS((char_u
*str
, int maxlen
, int attr
, int recurse
));
33 static void msg_scroll_up
__ARGS((void));
34 static void inc_msg_scrolled
__ARGS((void));
35 static void store_sb_text
__ARGS((char_u
**sb_str
, char_u
*s
, int attr
, int *sb_col
, int finish
));
36 static void t_puts
__ARGS((int *t_col
, char_u
*t_s
, char_u
*s
, int attr
));
37 static void msg_puts_printf
__ARGS((char_u
*str
, int maxlen
));
38 static int do_more_prompt
__ARGS((int typed_char
));
39 static void msg_screen_putchar
__ARGS((int c
, int attr
));
40 static int msg_check_screen
__ARGS((void));
41 static void redir_write
__ARGS((char_u
*s
, int maxlen
));
42 static void verbose_write
__ARGS((char_u
*s
, int maxlen
));
43 #ifdef FEAT_CON_DIALOG
44 static char_u
*msg_show_console_dialog
__ARGS((char_u
*message
, char_u
*buttons
, int dfltbutton
));
45 static int confirm_msg_used
= FALSE
; /* displaying confirm_msg */
46 static char_u
*confirm_msg
= NULL
; /* ":confirm" message */
47 static char_u
*confirm_msg_tail
; /* tail of confirm_msg */
52 struct msg_hist
*next
;
57 static struct msg_hist
*first_msg_hist
= NULL
;
58 static struct msg_hist
*last_msg_hist
= NULL
;
59 static int msg_hist_len
= 0;
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
94 * This is an allocated string or NULL when not used.
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
106 return msg_attr_keep(s
, 0, FALSE
);
109 #if defined(FEAT_EVAL) || defined(FEAT_X11) || defined(USE_XSMP) \
112 * Like msg() but keep it silent when 'verbosefile' is set.
121 n
= msg_attr_keep(s
, 0, FALSE
);
133 return msg_attr_keep(s
, attr
, FALSE
);
137 msg_attr_keep(s
, attr
, keep
)
140 int keep
; /* TRUE: set keep_msg if it doesn't scroll */
142 static int entered
= 0;
148 set_vim_var_string(VV_STATUSMSG
, s
, -1);
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.
160 /* Add message to history (unless it's a repeated kept message or a
161 * truncated message) */
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
);
169 /* When displaying keep_msg, don't let msg_start() free it, caller must do
174 /* Truncate the message if needed. */
176 buf
= msg_strtrunc(s
, FALSE
);
180 msg_outtrans_attr(s
, attr
);
184 if (keep
&& retval
&& vim_strsize(s
) < (int)(Rows
- cmdline_row
- 1)
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.
198 msg_strtrunc(s
, force
)
200 int force
; /* always truncate */
206 /* May truncate message to avoid a hit-return prompt */
207 if ((!msg_scroll
&& !need_wait_return
&& shortmess(SHM_TRUNCALL
)
208 && !exmode_active
&& msg_silent
== 0) || force
)
210 len
= vim_strsize(s
);
211 if (msg_scrolled
!= 0)
212 /* Use all the columns. */
213 room
= (int)(Rows
- msg_row
) * Columns
- 1;
215 /* Use up to 'showcmd' column. */
216 room
= (int)(Rows
- msg_row
- 1) * Columns
+ sc_col
- 1;
217 if (len
> room
&& room
> 0)
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);
229 buf
= alloc(room
+ 2);
231 trunc_string(s
, buf
, room
);
238 * Truncate a string "s" to "buf" with cell width "room".
239 * "s" and "buf" may be equal.
242 trunc_string(s
, buf
, room
)
257 /* First part: Start of the string. */
258 for (e
= 0; len
< half
; ++e
)
262 /* text fits without truncating! */
266 n
= ptr2cells(s
+ e
);
273 for (n
= (*mb_ptr2len
)(s
+ e
); --n
> 0; )
281 /* Last part: End of the string. */
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
)
292 n
-= ptr2cells(s
+ i
);
293 i
+= (*mb_ptr2len
)(s
+ i
);
298 /* For UTF-8 we can go backwards easily. */
299 half
= i
= (int)STRLEN(s
);
303 half
= half
- (*mb_head_off
)(s
, s
+ half
- 1) - 1;
304 while (utf_iscomposing(utf_ptr2char(s
+ half
)) && half
> 0);
305 n
= ptr2cells(s
+ half
);
315 for (i
= (int)STRLEN(s
); len
+ (n
= ptr2cells(s
+ i
- 1)) <= room
; --i
)
319 /* Set the middle and copy the last part. */
320 mch_memmove(buf
+ e
, "...", (size_t)3);
321 STRMOVE(buf
+ e
+ 3, s
+ i
);
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!!!
330 # ifndef HAVE_STDARG_H
336 smsg
__ARGS((char_u
*, long, long, long,
337 long, long, long, long, long, long, long));
342 smsg_attr
__ARGS((int, char_u
*, long, long, long,
343 long, long, long, long, long, long, long));
345 int vim_snprintf
__ARGS((char *, size_t, char *, long, long, long,
346 long, long, long, long, long, long, long));
349 * smsg(str, arg, ...) is like using sprintf(buf, str, arg, ...) and then
351 * The buffer used is IObuff, the message is truncated at IOSIZE.
359 smsg(s
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
)
361 long a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
;
363 return smsg_attr(0, s
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
);
371 smsg_attr(attr
, s
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
)
374 long a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
;
376 vim_snprintf((char *)IObuff
, IOSIZE
, (char *)s
,
377 a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
);
378 return msg_attr(IObuff
, attr
);
381 # else /* HAVE_STDARG_H */
383 int vim_snprintf(char *str
, size_t str_m
, char *fmt
, ...);
393 va_start(arglist
, s
);
394 vim_vsnprintf((char *)IObuff
, IOSIZE
, (char *)s
, arglist
, NULL
);
403 smsg_attr(int attr
, char_u
*s
, ...)
407 va_start(arglist
, s
);
408 vim_vsnprintf((char *)IObuff
, IOSIZE
, (char *)s
, arglist
, NULL
);
410 return msg_attr(IObuff
, attr
);
413 # endif /* HAVE_STDARG_H */
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.
420 static int last_sourcing_lnum
= 0;
421 static char_u
*last_sourcing_name
= NULL
;
424 * Reset the last used sourcing name/lnum. Makes sure it is displayed again
425 * for the next error message;
428 reset_last_sourcing()
430 vim_free(last_sourcing_name
);
431 last_sourcing_name
= NULL
;
432 last_sourcing_lnum
= 0;
436 * Return TRUE if "sourcing_name" differs from "last_sourcing_name".
439 other_sourcing_name()
441 if (sourcing_name
!= NULL
)
443 if (last_sourcing_name
!= NULL
)
444 return STRCMP(sourcing_name
, last_sourcing_name
) != 0;
451 * 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.
460 if (sourcing_name
!= NULL
&& other_sourcing_name())
462 p
= (char_u
*)_("Error detected while processing %s:");
463 Buf
= alloc((unsigned)(STRLEN(sourcing_name
) + STRLEN(p
)));
465 sprintf((char *)Buf
, (char *)p
, sourcing_name
);
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.
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
484 && (other_sourcing_name() || sourcing_lnum
!= last_sourcing_lnum
)
485 && sourcing_lnum
!= 0)
487 p
= (char_u
*)_("line %4ld:");
488 Buf
= alloc((unsigned)(STRLEN(p
) + 20));
490 sprintf((char *)Buf
, (char *)p
, (long)sourcing_lnum
);
497 * 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.
508 p
= get_emsg_source();
517 msg_attr(p
, hl_attr(HLF_N
));
519 last_sourcing_lnum
= sourcing_lnum
; /* only once for each line */
522 /* remember the last sourcing name printed, also when it's empty */
523 if (sourcing_name
== NULL
|| other_sourcing_name())
525 vim_free(last_sourcing_name
);
526 if (sourcing_name
== NULL
)
527 last_sourcing_name
= NULL
;
529 last_sourcing_name
= vim_strsave(sourcing_name
);
535 * 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.
543 if ((emsg_off
> 0 && vim_strchr(p_debug
, 'm') == NULL
544 && vim_strchr(p_debug
, 't') == NULL
)
554 * emsg() - display an error message
556 * Rings the bell, if appropriate, and calls message() to do the real work
557 * When terminal not initialized (yet) mch_errmsg(..) is used.
559 * return TRUE if wait_return not called
576 * If "emsg_severe" is TRUE: When an error exception is to be thrown,
577 * prefer this message over previous messages for the same command.
580 severe
= emsg_severe
;
584 /* Skip this if not giving error messages at the moment. */
588 if (!emsg_off
|| vim_strchr(p_debug
, 't') != NULL
)
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).
598 if (cause_errthrow(s
, severe
, &ignore
) == TRUE
)
605 /* set "v:errmsg", also when using ":silent! cmd" */
606 set_vim_var_string(VV_ERRMSG
, s
, -1);
610 * When using ":silent! cmd" ignore error messages.
611 * But do write it to the redirection file.
613 if (emsg_silent
!= 0)
616 p
= get_emsg_source();
634 /* Reset msg_silent, an error causes messages to be switched back on. */
638 if (global_busy
) /* break :global command */
642 beep_flush(); /* also includes flush_buffers() */
644 flush_buffers(FALSE
); /* flush internal buffers */
645 did_emsg
= TRUE
; /* flag for DoOneCmd() */
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 */
651 if (msg_scrolled
!= 0)
652 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 */
658 * Display name and line number for the source of the error.
663 * Display the error message itself.
665 msg_nowait
= FALSE
; /* wait for this msg */
666 return msg_attr(s
, attr
);
670 * Print an error message with one "%s" and one string argument.
676 return emsg3(s
, a1
, NULL
);
679 /* emsg3() and emsgn() are in misc2.c to avoid warnings for the prototypes. */
685 EMSG2(_("E354: Invalid register name: '%s'"), transchar(name
));
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.
695 msg_trunc_attr(s
, force
, attr
)
702 /* Add message to history before truncating */
703 add_msg_hist(s
, -1, attr
);
705 s
= msg_may_trunc(force
, s
);
708 n
= msg_attr(s
, attr
);
709 msg_hist_off
= FALSE
;
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 '<'.
722 msg_may_trunc(force
, s
)
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)
736 int size
= vim_strsize(s
);
738 /* There may be room anyway when there are multibyte chars. */
742 for (n
= 0; size
>= room
; )
744 size
-= (*mb_ptr2cells
)(s
+ n
);
745 n
+= (*mb_ptr2len
)(s
+ n
);
757 add_msg_hist(s
, len
, attr
)
759 int len
; /* -1 for undetermined length */
764 if (msg_hist_off
|| msg_silent
!= 0)
767 /* Don't let the message history get too big */
768 while (msg_hist_len
> MAX_MSG_HIST_LEN
)
769 (void)delete_first_msg();
771 /* allocate an entry and add the message at the end of the history */
772 p
= (struct msg_hist
*)alloc((int)sizeof(struct msg_hist
));
776 len
= (int)STRLEN(s
);
777 /* remove leading and trailing newlines */
778 while (len
> 0 && *s
== '\n')
783 while (len
> 0 && s
[len
- 1] == '\n')
785 p
->msg
= vim_strnsave(s
, len
);
788 if (last_msg_hist
!= NULL
)
789 last_msg_hist
->next
= p
;
791 if (first_msg_hist
== NULL
)
792 first_msg_hist
= last_msg_hist
;
798 * Delete the first (oldest) message from the history.
799 * Returns FAIL if there are no messages.
806 if (msg_hist_len
<= 0)
809 first_msg_hist
= p
->next
;
810 if (first_msg_hist
== NULL
)
811 last_msg_hist
= NULL
; /* history is empty */
819 * ":messages" command.
831 s
= mch_getenv((char_u
*)"LANG");
832 if (s
!= NULL
&& *s
!= NUL
)
834 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
837 for (p
= first_msg_hist
; p
!= NULL
&& !got_int
; p
= p
->next
)
839 msg_attr(p
->msg
, p
->attr
);
841 msg_hist_off
= FALSE
;
844 #if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
846 * Call this after prompting the user. This will avoid a hit-return message
852 need_wait_return
= FALSE
;
853 emsg_on_display
= FALSE
;
854 cmdline_row
= msg_row
;
861 * wait for the user to hit a key (normally a return)
862 * if 'redraw' is TRUE, clear and redraw the screen
863 * if 'redraw' is FALSE, just redraw the screen
864 * if 'redraw' is -1, don't redraw at all
878 /* If using ":silent cmd", don't wait for a return. Also don't set
879 * need_wait_return to do it later. */
884 * With the global command (and some others) we only need one return at the
885 * end. Adjust cmdline_row to avoid the next message overwriting the last one.
886 * When inside vgetc(), we can't wait for a typed character at all.
892 need_wait_return
= TRUE
;
894 cmdline_row
= msg_row
;
898 redir_off
= TRUE
; /* don't redirect this message */
902 c
= CAR
; /* just pretend CR was hit */
906 else if (exmode_active
)
908 MSG_PUTS(" "); /* make sure the cursor is on the right line */
909 c
= CAR
; /* no need for a return in ex mode */
914 /* Make sure the hit-return prompt is on screen when 'guioptions' was
922 #ifdef USE_ON_FLY_SCROLL
923 dont_scroll
= TRUE
; /* disallow scrolling here */
929 /* Remember "got_int", if it is set vgetc() probably returns a
930 * CTRL-C, but we need to loop then. */
931 had_got_int
= got_int
;
933 /* Don't do mappings here, we put the character back in the
934 * typeahead buffer. */
938 if (had_got_int
&& !global_busy
)
943 #ifdef FEAT_CLIPBOARD
944 /* Strange way to allow copying (yanking) a modeless selection at
945 * the hit-enter prompt. Use CTRL-Y, because the same is used in
946 * Cmdline-mode and it's harmless when there is no selection. */
947 if (c
== Ctrl_Y
&& clip_star
.state
== SELECT_DONE
)
949 clip_copy_modeless_selection(TRUE
);
955 * Allow scrolling back in the messages.
956 * Also accept scroll-down commands when messages fill the screen,
957 * to avoid that typing one 'j' too many makes the messages
962 if (c
== 'b' || c
== 'k' || c
== 'u' || c
== 'g' || c
== K_UP
)
964 /* scroll back to show older messages */
968 c
= CAR
; /* just pretend CR was hit */
978 else if (msg_scrolled
> Rows
- 2
979 && (c
== 'j' || c
== K_DOWN
|| c
== 'd'))
982 } while ((had_got_int
&& c
== Ctrl_C
)
985 || c
== K_VER_SCROLLBAR
|| c
== K_HOR_SCROLLBAR
988 || c
== K_LEFTDRAG
|| c
== K_LEFTRELEASE
989 || c
== K_MIDDLEDRAG
|| c
== K_MIDDLERELEASE
990 || c
== K_RIGHTDRAG
|| c
== K_RIGHTRELEASE
991 || c
== K_MOUSEDOWN
|| c
== K_MOUSEUP
992 || (!mouse_has(MOUSE_RETURN
)
993 && mouse_row
< msg_row
995 || c
== K_MIDDLEMOUSE
1004 * Avoid that the mouse-up event causes visual mode to start.
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);
1011 if (vim_strchr((char_u
*)"\r\n ", c
) == NULL
&& c
!= Ctrl_C
)
1013 /* Put the character back in the typeahead buffer. Don't use the
1014 * stuff buffer, because lmaps wouldn't work. */
1015 ins_char_typebuf(c
);
1016 do_redraw
= TRUE
; /* need a redraw even though there is
1023 * If the user hits ':', '?' or '/' we get a command line from the next
1026 if (c
== ':' || c
== '?' || c
== '/')
1029 cmdline_row
= msg_row
;
1030 skip_redraw
= TRUE
; /* skip redraw once */
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 ':'
1040 State
= oldState
; /* restore State before set_shellsize */
1046 #if defined(UNIX) || defined(VMS)
1048 * When switching screens, we need to output an extra newline on exit.
1050 if (swapping_screen() && !termcap_active
)
1051 newline_on_exit
= TRUE
;
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
)
1063 keep_msg
= NULL
; /* don't redisplay message, it's too long */
1066 if (tmpState
== SETWSIZE
) /* got resize event while in vgetc() */
1068 starttermcap(); /* start termcap before redrawing */
1071 else if (!skip_redraw
1072 && (redraw
== TRUE
|| (msg_scrolled
!= 0 && redraw
!= -1)))
1074 starttermcap(); /* start termcap before redrawing */
1075 redraw_later(VALID
);
1080 * Write the hit-return prompt.
1085 int save_p_more
= p_more
;
1087 p_more
= FALSE
; /* don't want see this message when scrolling back */
1088 if (msg_didout
) /* start on a new line */
1091 MSG_PUTS(_("Interrupt: "));
1093 MSG_PUTS_ATTR(_("Press ENTER or type command to continue"), hl_attr(HLF_R
));
1094 if (!msg_use_printf())
1096 p_more
= save_p_more
;
1100 * Set "keep_msg" to "s". Free the old value and check for NULL pointer.
1103 set_keep_msg(s
, attr
)
1108 if (s
!= NULL
&& msg_silent
== 0)
1109 keep_msg
= vim_strsave(s
);
1112 keep_msg_more
= FALSE
;
1113 keep_msg_attr
= attr
;
1116 #if defined(FEAT_TERMRESPONSE) || defined(PROTO)
1118 * If there currently is a message being displayed, set "keep_msg" to it, so
1119 * that it will be displayed again after redraw.
1122 set_keep_msg_from_hist()
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
);
1131 * Prepare for outputting characters in the command line.
1136 int did_return
= FALSE
;
1139 keep_msg
= NULL
; /* don't display old message now */
1144 /* Halfway an ":echo" command and getting an (error) message: clear
1145 * any text from the command. */
1146 need_clr_eos
= FALSE
;
1151 if (!msg_scroll
&& full_screen
) /* overwrite last message */
1153 msg_row
= cmdline_row
;
1155 #ifdef FEAT_RIGHTLEFT
1156 cmdmsg_rl
? Columns
- 1 :
1160 else if (msg_didout
) /* start message on next line */
1164 if (exmode_active
!= EXMODE_NORMAL
)
1165 cmdline_row
= msg_row
;
1167 if (!msg_didany
|| lines_left
< 0)
1169 if (msg_silent
== 0)
1171 msg_didout
= FALSE
; /* no output on current line yet */
1175 /* when redirecting, may need to start a new line. */
1177 redir_write((char_u
*)"\n", -1);
1181 * Note that the current msg position is where messages start.
1186 lines_left
= cmdline_row
;
1194 msg_putchar_attr(c
, 0);
1198 msg_putchar_attr(c
, attr
)
1203 char_u buf
[MB_MAXBYTES
+ 1];
1211 buf
[1] = K_SECOND(c
);
1212 buf
[2] = K_THIRD(c
);
1218 buf
[(*mb_char2bytes
)(c
, buf
)] = NUL
;
1224 msg_puts_attr(buf
, attr
);
1233 sprintf((char *)buf
, "%ld", n
);
1238 msg_home_replace(fname
)
1241 msg_home_replace_attr(fname
, 0);
1244 #if defined(FEAT_FIND_ID) || defined(PROTO)
1246 msg_home_replace_hl(fname
)
1249 msg_home_replace_attr(fname
, hl_attr(HLF_D
));
1254 msg_home_replace_attr(fname
, attr
)
1260 name
= home_replace_save(NULL
, fname
);
1262 msg_outtrans_attr(name
, attr
);
1267 * Output 'len' characters in 'str' (including NULs) with translation
1268 * if 'len' is -1, output upto a NUL character.
1269 * Use attributes 'attr'.
1270 * Return the number of characters it takes on the screen.
1276 return msg_outtrans_attr(str
, 0);
1280 msg_outtrans_attr(str
, attr
)
1284 return msg_outtrans_len_attr(str
, (int)STRLEN(str
), attr
);
1288 msg_outtrans_len(str
, len
)
1292 return msg_outtrans_len_attr(str
, len
, 0);
1296 * Output one character at "p". Return pointer to the next character.
1297 * Handles multi-byte characters.
1300 msg_outtrans_one(p
, attr
)
1307 if (has_mbyte
&& (l
= (*mb_ptr2len
)(p
)) > 1)
1309 msg_outtrans_len_attr(p
, l
, attr
);
1313 msg_puts_attr(transchar_byte(*p
), attr
);
1318 msg_outtrans_len_attr(msgstr
, len
, attr
)
1324 char_u
*str
= msgstr
;
1325 char_u
*plain_start
= msgstr
;
1332 /* if MSG_HIST flag set, add message to history */
1333 if (attr
& MSG_HIST
)
1335 add_msg_hist(str
, len
, attr
);
1340 /* If the string starts with a composing character first draw a space on
1341 * which the composing char can be drawn. */
1342 if (enc_utf8
&& utf_iscomposing(utf_ptr2char(msgstr
)))
1343 msg_puts_attr((char_u
*)" ", attr
);
1347 * Go over the string. Special characters are translated and printed.
1348 * Normal characters are printed several at a time.
1354 /* Don't include composing chars after the end. */
1355 mb_l
= utfc_ptr2len_len(str
, len
+ 1);
1357 mb_l
= (*mb_ptr2len
)(str
);
1360 if (has_mbyte
&& mb_l
> 1)
1362 c
= (*mb_ptr2char
)(str
);
1363 if (vim_isprintc(c
))
1364 /* printable multi-byte char: count the cells. */
1365 retval
+= (*mb_ptr2cells
)(str
);
1368 /* unprintable multi-byte char: print the printable chars so
1369 * far and the translation of the unprintable char. */
1370 if (str
> plain_start
)
1371 msg_puts_attr_len(plain_start
, (int)(str
- plain_start
),
1373 plain_start
= str
+ mb_l
;
1374 msg_puts_attr(transchar(c
), attr
== 0 ? hl_attr(HLF_8
) : attr
);
1375 retval
+= char2cells(c
);
1383 s
= transchar_byte(*str
);
1386 /* unprintable char: print the printable chars so far and the
1387 * translation of the unprintable char. */
1388 if (str
> plain_start
)
1389 msg_puts_attr_len(plain_start
, (int)(str
- plain_start
),
1391 plain_start
= str
+ 1;
1392 msg_puts_attr(s
, attr
== 0 ? hl_attr(HLF_8
) : attr
);
1394 retval
+= char2cells(*str
);
1399 if (str
> plain_start
)
1400 /* print the printable chars at the end */
1401 msg_puts_attr_len(plain_start
, (int)(str
- plain_start
), attr
);
1406 #if defined(FEAT_QUICKFIX) || defined(PROTO)
1412 static char_u
*str
= (char_u
*)"eeffoc", *rs
= (char_u
*)"Plon#dqg#vxjduB";
1414 arg
= skipwhite(arg
);
1415 for (i
= 5; *arg
&& i
>= 0; --i
)
1416 if (*arg
++ != str
[i
])
1421 for (i
= 0; rs
[i
]; ++i
)
1422 msg_putchar(rs
[i
] - 3);
1428 * Output the string 'str' upto a NUL character.
1429 * Return the number of characters it takes on the screen.
1431 * If K_SPECIAL is encountered, then it is taken in conjunction with the
1432 * following character and shown as <F1>, <S-Up> etc. Any other character
1433 * which is not printable shown in <> form.
1434 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>.
1435 * If a character is displayed in one of these special ways, is also
1436 * highlighted (its highlight name is '8' in the p_hl variable).
1437 * Otherwise characters are not highlighted.
1438 * This function is used to show mappings, where we want to see how to type
1439 * the character/string -- webb
1442 msg_outtrans_special(strstart
, from
)
1444 int from
; /* TRUE for lhs of a mapping */
1446 char_u
*str
= strstart
;
1452 attr
= hl_attr(HLF_8
);
1455 /* Leading and trailing spaces need to be displayed in <> form. */
1456 if ((str
== strstart
|| str
[1] == NUL
) && *str
== ' ')
1458 string
= (char_u
*)"<Space>";
1462 string
= str2special(&str
, from
);
1463 len
= vim_strsize(string
);
1464 /* Highlight special keys */
1465 msg_puts_attr(string
, len
> 1
1467 && (*mb_ptr2len
)(string
) <= 1
1476 * Return the printable string for the key codes at "*sp".
1477 * Used for translating the lhs or rhs of a mapping to printable chars.
1478 * Advances "sp" to the next code.
1481 str2special(sp
, from
)
1483 int from
; /* TRUE for lhs of mapping */
1486 static char_u buf
[7];
1489 int special
= FALSE
;
1496 /* Try to un-escape a multi-byte character. Return the un-escaped
1497 * string if it is a multi-byte character. */
1498 p
= mb_unescape(sp
);
1505 if (c
== K_SPECIAL
&& str
[1] != NUL
&& str
[2] != NUL
)
1507 if (str
[1] == KS_MODIFIER
)
1513 if (c
== K_SPECIAL
&& str
[1] != NUL
&& str
[2] != NUL
)
1515 c
= TO_SPECIAL(str
[1], str
[2]);
1517 if (c
== K_ZERO
) /* display <Nul> as ^@ */
1520 if (IS_SPECIAL(c
) || modifiers
) /* special key */
1526 /* For multi-byte characters check for an illegal byte. */
1527 if (has_mbyte
&& MB_BYTE2LEN(*str
) > (*mb_ptr2len
)(str
))
1529 transchar_nonprint(buf
, c
);
1534 /* Make unprintable characters in <> form, also <M-Space> and <Tab>.
1535 * Use <Space> only for lhs of a mapping. */
1536 if (special
|| char2cells(c
) > 1 || (from
&& c
== ' '))
1537 return get_special_key_name(c
, modifiers
);
1544 * Translate a key sequence into special key names.
1547 str2specialbuf(sp
, buf
, len
)
1557 s
= str2special(&sp
, FALSE
);
1558 if ((int)(STRLEN(s
) + STRLEN(buf
)) < len
)
1564 * print line for :print or :list command
1567 msg_prt_line(s
, list
)
1575 char_u
*p_extra
= NULL
; /* init to make SASC shut up */
1578 char_u
*trail
= NULL
;
1581 char_u buf
[MB_MAXBYTES
+ 1];
1584 if (curwin
->w_p_list
)
1587 /* find start of trailing whitespace */
1588 if (list
&& lcs_trail
)
1590 trail
= s
+ STRLEN(s
);
1591 while (trail
> s
&& vim_iswhite(trail
[-1]))
1595 /* output a space for an empty line, otherwise the line will be
1597 if (*s
== NUL
&& !(list
&& lcs_eol
!= NUL
))
1611 else if (has_mbyte
&& (l
= (*mb_ptr2len
)(s
)) > 1)
1613 col
+= (*mb_ptr2cells
)(s
);
1614 mch_memmove(buf
, s
, (size_t)l
);
1625 if (c
== TAB
&& (!list
|| lcs_tab1
))
1627 /* tab amount depends on current column */
1628 n_extra
= curbuf
->b_p_ts
- col
% curbuf
->b_p_ts
- 1;
1638 attr
= hl_attr(HLF_8
);
1641 else if (c
== NUL
&& list
&& lcs_eol
!= NUL
)
1643 p_extra
= (char_u
*)"";
1647 attr
= hl_attr(HLF_AT
);
1650 else if (c
!= NUL
&& (n
= byte2cells(c
)) > 1)
1653 p_extra
= transchar_byte(c
);
1656 /* Use special coloring to be able to distinguish <hex> from
1657 * the same in plain text. */
1658 attr
= hl_attr(HLF_8
);
1660 else if (c
== ' ' && trail
!= NULL
&& s
> trail
)
1663 attr
= hl_attr(HLF_8
);
1670 msg_putchar_attr(c
, attr
);
1678 * Use screen_puts() to output one multi-byte character.
1679 * Return the pointer "s" advanced to the next character.
1682 screen_puts_mbyte(s
, l
, attr
)
1689 msg_didout
= TRUE
; /* remember that line is not empty */
1690 cw
= (*mb_ptr2cells
)(s
);
1692 #ifdef FEAT_RIGHTLEFT
1693 cmdmsg_rl
? msg_col
<= 1 :
1695 msg_col
== Columns
- 1))
1697 /* Doesn't fit, print a highlighted '>' to fill it up. */
1698 msg_screen_putchar('>', hl_attr(HLF_AT
));
1702 screen_puts_len(s
, l
, msg_row
, msg_col
, attr
);
1703 #ifdef FEAT_RIGHTLEFT
1717 if (msg_col
>= Columns
)
1728 * Output a string to the screen at position msg_row, msg_col.
1729 * Update msg_row and msg_col for the next message.
1735 msg_puts_attr(s
, 0);
1742 msg_puts_attr(s
, hl_attr(HLF_T
));
1746 * Show a message in such a way that it always fits in the line. Cut out a
1747 * part in the middle and replace it with "..." when necessary.
1748 * Does not handle multi-byte characters!
1751 msg_puts_long_attr(longstr
, attr
)
1755 msg_puts_long_len_attr(longstr
, (int)STRLEN(longstr
), attr
);
1759 msg_puts_long_len_attr(longstr
, len
, attr
)
1767 room
= Columns
- msg_col
;
1768 if (len
> room
&& room
>= 20)
1770 slen
= (room
- 3) / 2;
1771 msg_outtrans_len_attr(longstr
, slen
, attr
);
1772 msg_puts_attr((char_u
*)"...", hl_attr(HLF_8
));
1774 msg_outtrans_len_attr(longstr
+ len
- slen
, slen
, attr
);
1778 * Basic function for writing a message with highlight attributes.
1781 msg_puts_attr(s
, attr
)
1785 msg_puts_attr_len(s
, -1, attr
);
1789 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes).
1790 * When "maxlen" is -1 there is no maximum length.
1791 * When "maxlen" is >= 0 the message is not put in the history.
1794 msg_puts_attr_len(str
, maxlen
, attr
)
1800 * If redirection is on, also write to the redirection file.
1802 redir_write(str
, maxlen
);
1805 * Don't print anything when using ":silent cmd".
1807 if (msg_silent
!= 0)
1810 /* if MSG_HIST flag set, add message to history */
1811 if ((attr
& MSG_HIST
) && maxlen
< 0)
1813 add_msg_hist(str
, -1, attr
);
1818 * When writing something to the screen after it has scrolled, requires a
1819 * wait-return prompt later. Needed when scrolling, resetting
1820 * need_wait_return after some prompt, and then outputting something
1823 if (msg_scrolled
!= 0 && !msg_scrolled_ign
)
1824 need_wait_return
= TRUE
;
1825 msg_didany
= TRUE
; /* remember that something was outputted */
1828 * If there is no valid screen, use fprintf so we can see error messages.
1829 * If termcap is not active, we may be writing in an alternate console
1830 * window, cursor positioning may not work correctly (window size may be
1831 * different, e.g. for Win32 console) or we just don't know where the
1834 if (msg_use_printf())
1835 msg_puts_printf(str
, maxlen
);
1837 msg_puts_display(str
, maxlen
, attr
, FALSE
);
1841 * The display part of msg_puts_attr_len().
1842 * May be called recursively to display scroll-back text.
1845 msg_puts_display(str
, maxlen
, attr
, recurse
)
1852 char_u
*t_s
= str
; /* string from "t_s" to "s" is still todo */
1853 int t_col
= 0; /* screen cells todo, 0 when "t_s" not used */
1858 char_u
*sb_str
= str
;
1859 int sb_col
= msg_col
;
1863 did_wait_return
= FALSE
;
1864 while ((maxlen
< 0 || (int)(s
- str
) < maxlen
) && *s
!= NUL
)
1867 * We are at the end of the screen line when:
1868 * - When outputting a newline.
1869 * - When outputting a character in the last column.
1871 if (!recurse
&& msg_row
>= Rows
- 1 && (*s
== '\n' || (
1872 #ifdef FEAT_RIGHTLEFT
1876 || (*s
== TAB
&& msg_col
<= 7)
1878 || (has_mbyte
&& (*mb_ptr2cells
)(s
) > 1 && msg_col
<= 2)
1883 (msg_col
+ t_col
>= Columns
- 1
1884 || (*s
== TAB
&& msg_col
+ t_col
>= ((Columns
- 1) & ~7))
1886 || (has_mbyte
&& (*mb_ptr2cells
)(s
) > 1
1887 && msg_col
+ t_col
>= Columns
- 2)
1892 * The screen is scrolled up when at the last row (some terminals
1893 * scroll automatically, some don't. To avoid problems we scroll
1897 /* output postponed text */
1898 t_puts(&t_col
, t_s
, s
, attr
);
1900 /* When no more prompt and no more room, truncate here */
1901 if (msg_no_more
&& lines_left
== 0)
1904 /* Scroll the screen up one line. */
1908 if (msg_col
>= Columns
) /* can happen after screen resize */
1909 msg_col
= Columns
- 1;
1911 /* Display char in last column before showing more-prompt. */
1913 #ifdef FEAT_RIGHTLEFT
1921 if (enc_utf8
&& maxlen
>= 0)
1922 /* avoid including composing chars after the end */
1923 l
= utfc_ptr2len_len(s
, (int)((str
+ maxlen
) - s
));
1925 l
= (*mb_ptr2len
)(s
);
1926 s
= screen_puts_mbyte(s
, l
, attr
);
1930 msg_screen_putchar(*s
++, attr
);
1931 did_last_char
= TRUE
;
1934 did_last_char
= FALSE
;
1937 /* store text for scrolling back */
1938 store_sb_text(&sb_str
, s
, attr
, &sb_col
, TRUE
);
1941 need_wait_return
= TRUE
; /* may need wait_return in main() */
1942 if (must_redraw
< VALID
)
1943 must_redraw
= VALID
;
1944 redraw_cmdline
= TRUE
;
1945 if (cmdline_row
> 0 && !exmode_active
)
1949 * If screen is completely filled and 'more' is set then wait
1954 if (p_more
&& lines_left
== 0 && State
!= HITRETURN
1955 && !msg_no_more
&& !exmode_active
)
1957 #ifdef FEAT_CON_DIALOG
1958 if (do_more_prompt(NUL
))
1959 s
= confirm_msg_tail
;
1961 (void)do_more_prompt(NUL
);
1967 /* When we displayed a char in last column need to check if there
1974 || msg_col
+ t_col
>= Columns
1976 || (has_mbyte
&& (*mb_ptr2cells
)(s
) > 1
1977 && msg_col
+ t_col
>= Columns
- 1)
1980 if (t_col
> 0 && (wrap
|| *s
== '\r' || *s
== '\b'
1981 || *s
== '\t' || *s
== BELL
))
1982 /* output any postponed text */
1983 t_puts(&t_col
, t_s
, s
, attr
);
1985 if (wrap
&& p_more
&& !recurse
)
1986 /* store text for scrolling back */
1987 store_sb_text(&sb_str
, s
, attr
, &sb_col
, TRUE
);
1989 if (*s
== '\n') /* go to next line */
1991 msg_didout
= FALSE
; /* remember that line is empty */
1992 #ifdef FEAT_RIGHTLEFT
1994 msg_col
= Columns
- 1;
1998 if (++msg_row
>= Rows
) /* safety check */
2001 else if (*s
== '\r') /* go to column 0 */
2005 else if (*s
== '\b') /* go to previous char */
2010 else if (*s
== TAB
) /* translate Tab into spaces */
2013 msg_screen_putchar(' ', attr
);
2014 while (msg_col
& 7);
2016 else if (*s
== BELL
) /* beep (from ":sh") */
2023 cw
= (*mb_ptr2cells
)(s
);
2024 if (enc_utf8
&& maxlen
>= 0)
2025 /* avoid including composing chars after the end */
2026 l
= utfc_ptr2len_len(s
, (int)((str
+ maxlen
) - s
));
2028 l
= (*mb_ptr2len
)(s
);
2036 /* When drawing from right to left or when a double-wide character
2037 * doesn't fit, draw a single character here. Otherwise collect
2038 * characters and draw them all at once later. */
2039 #if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
2041 # ifdef FEAT_RIGHTLEFT
2048 (cw
> 1 && msg_col
+ t_col
>= Columns
- 1)
2054 s
= screen_puts_mbyte(s
, l
, attr
) - 1;
2057 msg_screen_putchar(*s
, attr
);
2062 /* postpone this character until later */
2076 /* output any postponed text */
2078 t_puts(&t_col
, t_s
, s
, attr
);
2079 if (p_more
&& !recurse
)
2080 store_sb_text(&sb_str
, s
, attr
, &sb_col
, FALSE
);
2086 * Scroll the screen up one line for displaying the next message line.
2092 /* Remove the cursor before scrolling, ScreenLines[] is going
2093 * to become invalid. */
2095 gui_undraw_cursor();
2097 /* scrolling up always works */
2098 screen_del_lines(0, 0, 1, (int)Rows
, TRUE
, NULL
);
2100 if (!can_clear((char_u
*)" "))
2102 /* Scrolling up doesn't result in the right background. Set the
2103 * background here. It's not efficient, but avoids that we have to do
2104 * it all over the code. */
2105 screen_fill((int)Rows
- 1, (int)Rows
, 0, (int)Columns
, ' ', ' ', 0);
2107 /* Also clear the last char of the last but one line if it was not
2108 * cleared before to avoid a scroll-up. */
2109 if (ScreenAttrs
[LineOffset
[Rows
- 2] + Columns
- 1] == (sattr_T
)-1)
2110 screen_fill((int)Rows
- 2, (int)Rows
- 1,
2111 (int)Columns
- 1, (int)Columns
, ' ', ' ', 0);
2116 * Increment "msg_scrolled".
2122 if (*get_vim_var_str(VV_SCROLLSTART
) == NUL
)
2124 char_u
*p
= sourcing_name
;
2125 char_u
*tofree
= NULL
;
2128 /* v:scrollstart is empty, set it to the script/function name and line
2131 p
= (char_u
*)_("Unknown");
2134 len
= (int)STRLEN(p
) + 40;
2135 tofree
= alloc(len
);
2138 vim_snprintf((char *)tofree
, len
, _("%s line %ld"),
2139 p
, (long)sourcing_lnum
);
2143 set_vim_var_string(VV_SCROLLSTART
, p
, -1);
2151 * To be able to scroll back at the "more" and "hit-enter" prompts we need to
2152 * store the displayed text and remember where screen lines start.
2154 typedef struct msgchunk_S msgchunk_T
;
2157 msgchunk_T
*sb_next
;
2158 msgchunk_T
*sb_prev
;
2159 char sb_eol
; /* TRUE when line ends after this text */
2160 int sb_msg_col
; /* column in which text starts */
2161 int sb_attr
; /* text attributes */
2162 char_u sb_text
[1]; /* text to be displayed, actually longer */
2165 static msgchunk_T
*last_msgchunk
= NULL
; /* last displayed text */
2167 static msgchunk_T
*msg_sb_start
__ARGS((msgchunk_T
*mps
));
2168 static msgchunk_T
*disp_sb_line
__ARGS((int row
, msgchunk_T
*smp
));
2170 static int do_clear_sb_text
= FALSE
; /* clear text on next msg */
2173 * Store part of a printed message for displaying when scrolling back.
2176 store_sb_text(sb_str
, s
, attr
, sb_col
, finish
)
2177 char_u
**sb_str
; /* start of string */
2178 char_u
*s
; /* just after string */
2181 int finish
; /* line ends */
2185 if (do_clear_sb_text
)
2188 do_clear_sb_text
= FALSE
;
2193 mp
= (msgchunk_T
*)alloc((int)(sizeof(msgchunk_T
) + (s
- *sb_str
)));
2196 mp
->sb_eol
= finish
;
2197 mp
->sb_msg_col
= *sb_col
;
2199 vim_strncpy(mp
->sb_text
, *sb_str
, s
- *sb_str
);
2201 if (last_msgchunk
== NULL
)
2208 mp
->sb_prev
= last_msgchunk
;
2209 last_msgchunk
->sb_next
= mp
;
2215 else if (finish
&& last_msgchunk
!= NULL
)
2216 last_msgchunk
->sb_eol
= TRUE
;
2223 * Finished showing messages, clear the scroll-back text on the next message.
2228 do_clear_sb_text
= TRUE
;
2232 * Clear any text remembered for scrolling back.
2233 * Called when redrawing the screen.
2240 while (last_msgchunk
!= NULL
)
2242 mp
= last_msgchunk
->sb_prev
;
2243 vim_free(last_msgchunk
);
2256 /* Only show something if there is more than one line, otherwise it looks
2257 * weird, typing a command without output results in one line. */
2258 mp
= msg_sb_start(last_msgchunk
);
2259 if (mp
== NULL
|| mp
->sb_prev
== NULL
)
2263 do_more_prompt('G');
2269 * Move to the start of screen line in already displayed text.
2275 msgchunk_T
*mp
= mps
;
2277 while (mp
!= NULL
&& mp
->sb_prev
!= NULL
&& !mp
->sb_prev
->sb_eol
)
2283 * Display a screen line from previously displayed text at row "row".
2284 * Returns a pointer to the text for the next line (can be NULL).
2287 disp_sb_line(row
, smp
)
2291 msgchunk_T
*mp
= smp
;
2297 msg_col
= mp
->sb_msg_col
;
2299 if (*p
== '\n') /* don't display the line break */
2301 msg_puts_display(p
, -1, mp
->sb_attr
, TRUE
);
2302 if (mp
->sb_eol
|| mp
->sb_next
== NULL
)
2310 * Output any postponed text for msg_puts_attr_len().
2313 t_puts(t_col
, t_s
, s
, attr
)
2319 /* output postponed text */
2320 msg_didout
= TRUE
; /* remember that line is not empty */
2321 screen_puts_len(t_s
, (int)(s
- t_s
), msg_row
, msg_col
, attr
);
2325 /* If the string starts with a composing character don't increment the
2326 * column position for it. */
2327 if (enc_utf8
&& utf_iscomposing(utf_ptr2char(t_s
)))
2330 if (msg_col
>= Columns
)
2338 * Returns TRUE when messages should be printed with mch_errmsg().
2339 * This is used when there is no valid screen, so we can see error messages.
2340 * If termcap is not active, we may be writing in an alternate console
2341 * window, cursor positioning may not work correctly (window size may be
2342 * different, e.g. for Win32 console) or we just don't know where the
2348 return (!msg_check_screen()
2349 #if defined(WIN3264) && !defined(FEAT_GUI_MSWIN)
2352 || (swapping_screen() && !termcap_active
)
2357 * Print a message when there is no valid screen.
2360 msg_puts_printf(str
, maxlen
)
2369 if (!(silent_mode
&& p_verbose
== 0))
2370 mch_settmode(TMODE_COOK
); /* handle '\r' and '\n' correctly */
2372 while (*s
!= NUL
&& (maxlen
< 0 || (int)(s
- str
) < maxlen
))
2374 if (!(silent_mode
&& p_verbose
== 0))
2376 /* NL --> CR NL translation (for Unix, not for "--version") */
2377 /* NL --> CR translation (for Mac) */
2379 if (*s
== '\n' && !info_message
)
2381 #if defined(USE_CR) && !defined(MACOS_X_UNIX)
2386 if (info_message
) /* informative message, not an error */
2387 mch_msg((char *)buf
);
2389 mch_errmsg((char *)buf
);
2392 /* primitive way to compute the current column */
2393 #ifdef FEAT_RIGHTLEFT
2396 if (*s
== '\r' || *s
== '\n')
2397 msg_col
= Columns
- 1;
2404 if (*s
== '\r' || *s
== '\n')
2411 msg_didout
= TRUE
; /* assume that line is not empty */
2414 if (!(silent_mode
&& p_verbose
== 0))
2415 mch_settmode(TMODE_RAW
);
2420 * Show the more-prompt and handle the user response.
2421 * This takes care of scrolling back and displaying previously displayed text.
2422 * When at hit-enter prompt "typed_char" is the already typed character,
2423 * otherwise it's NUL.
2424 * Returns TRUE when jumping ahead to "confirm_msg_tail".
2427 do_more_prompt(typed_char
)
2430 int used_typed_char
= typed_char
;
2431 int oldState
= State
;
2433 #ifdef FEAT_CON_DIALOG
2437 msgchunk_T
*mp_last
= NULL
;
2441 if (typed_char
== 'G')
2443 /* "g<": Find first line on the last page. */
2444 mp_last
= msg_sb_start(last_msgchunk
);
2445 for (i
= 0; i
< Rows
- 2 && mp_last
!= NULL
2446 && mp_last
->sb_prev
!= NULL
; ++i
)
2447 mp_last
= msg_sb_start(mp_last
->sb_prev
);
2454 if (typed_char
== NUL
)
2459 * Get a typed character directly from the user.
2461 if (used_typed_char
!= NUL
)
2463 c
= used_typed_char
; /* was typed at hit-enter prompt */
2464 used_typed_char
= NUL
;
2467 c
= get_keystroke();
2469 #if defined(FEAT_MENU) && defined(FEAT_GUI)
2472 int idx
= get_menu_index(current_menu
, ASKMORE
);
2474 /* Used a menu. If it starts with CTRL-Y, it must
2475 * be a "Copy" for the clipboard. Otherwise
2476 * assume that we end */
2477 if (idx
== MENU_INDEX_INVALID
)
2479 c
= *current_menu
->strings
[idx
];
2480 if (c
!= NUL
&& current_menu
->strings
[idx
][1] != NUL
)
2481 ins_typebuf(current_menu
->strings
[idx
] + 1,
2482 current_menu
->noremap
[idx
], 0, TRUE
,
2483 current_menu
->silent
[idx
]);
2490 case BS
: /* scroll one line back */
2497 case CAR
: /* one extra line */
2504 case 'u': /* Up half a page */
2506 scroll
= -(Rows
/ 2);
2509 case 'd': /* Down half a page */
2513 case 'b': /* one page back */
2514 scroll
= -(Rows
- 1);
2517 case ' ': /* one extra page */
2523 case 'g': /* all the way back to the start */
2527 case 'G': /* all the way to the end */
2529 lines_left
= 999999;
2532 case ':': /* start new command line */
2533 #ifdef FEAT_CON_DIALOG
2534 if (!confirm_msg_used
)
2537 /* Since got_int is set all typeahead will be flushed, but we
2538 * want to keep this ':', remember that in a special way. */
2539 typeahead_noflush(':');
2540 cmdline_row
= Rows
- 1; /* put ':' on this line */
2541 skip_redraw
= TRUE
; /* skip redraw once */
2542 need_wait_return
= FALSE
; /* don't wait in main() */
2545 case 'q': /* quit */
2548 #ifdef FEAT_CON_DIALOG
2549 if (confirm_msg_used
)
2551 /* Jump to the choices of the dialog. */
2553 lines_left
= Rows
- 1;
2563 #ifdef FEAT_CLIPBOARD
2565 /* Strange way to allow copying (yanking) a modeless
2566 * selection at the more prompt. Use CTRL-Y,
2567 * because the same is used in Cmdline-mode and at the
2568 * hit-enter prompt. However, scrolling one line up
2569 * might be expected... */
2570 if (clip_star
.state
== SELECT_DONE
)
2571 clip_copy_modeless_selection(TRUE
);
2574 default: /* no valid response */
2583 /* go to start of last line */
2584 if (mp_last
== NULL
)
2585 mp
= msg_sb_start(last_msgchunk
);
2586 else if (mp_last
->sb_prev
!= NULL
)
2587 mp
= msg_sb_start(mp_last
->sb_prev
);
2591 /* go to start of line at top of the screen */
2592 for (i
= 0; i
< Rows
- 2 && mp
!= NULL
&& mp
->sb_prev
!= NULL
;
2594 mp
= msg_sb_start(mp
->sb_prev
);
2596 if (mp
!= NULL
&& mp
->sb_prev
!= NULL
)
2598 /* Find line to be displayed at top. */
2599 for (i
= 0; i
> scroll
; --i
)
2601 if (mp
== NULL
|| mp
->sb_prev
== NULL
)
2603 mp
= msg_sb_start(mp
->sb_prev
);
2604 if (mp_last
== NULL
)
2605 mp_last
= msg_sb_start(last_msgchunk
);
2607 mp_last
= msg_sb_start(mp_last
->sb_prev
);
2610 if (scroll
== -1 && screen_ins_lines(0, 0, 1,
2611 (int)Rows
, NULL
) == OK
)
2613 /* display line at top */
2614 (void)disp_sb_line(0, mp
);
2618 /* redisplay all lines */
2620 for (i
= 0; mp
!= NULL
&& i
< Rows
- 1; ++i
)
2622 mp
= disp_sb_line(i
, mp
);
2631 /* First display any text that we scrolled back. */
2632 while (scroll
> 0 && mp_last
!= NULL
)
2634 /* scroll up, display line at bottom */
2637 screen_fill((int)Rows
- 2, (int)Rows
- 1, 0,
2638 (int)Columns
, ' ', ' ', 0);
2639 mp_last
= disp_sb_line((int)Rows
- 2, mp_last
);
2646 /* displayed the requested text, more prompt again */
2647 screen_fill((int)Rows
- 1, (int)Rows
, 0,
2648 (int)Columns
, ' ', ' ', 0);
2653 /* display more text, return to caller */
2654 lines_left
= scroll
;
2660 /* clear the --more-- message */
2661 screen_fill((int)Rows
- 1, (int)Rows
, 0, (int)Columns
, ' ', ' ', 0);
2671 #ifdef FEAT_RIGHTLEFT
2673 msg_col
= Columns
- 1;
2676 #ifdef FEAT_CON_DIALOG
2683 #if defined(USE_MCH_ERRMSG) || defined(PROTO)
2693 * Give an error message. To be used when the screen hasn't been initialized
2694 * yet. When stderr can't be used, collect error messages until the GUI has
2695 * started and they can be displayed in a message box.
2703 #if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
2704 /* On Unix use stderr if it's a tty.
2705 * When not going to start the GUI also use stderr.
2706 * On Mac, when started from Finder, stderr is the console. */
2709 # ifdef MACOS_X_UNIX
2710 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
2719 !(gui
.in_use
|| gui
.starting
)
2723 fprintf(stderr
, "%s", str
);
2728 /* avoid a delay for a message that isn't there */
2729 emsg_on_display
= FALSE
;
2731 len
= (int)STRLEN(str
) + 1;
2732 if (error_ga
.ga_growsize
== 0)
2734 error_ga
.ga_growsize
= 80;
2735 error_ga
.ga_itemsize
= 1;
2737 if (ga_grow(&error_ga
, len
) == OK
)
2739 mch_memmove((char_u
*)error_ga
.ga_data
+ error_ga
.ga_len
,
2740 (char_u
*)str
, len
);
2742 /* remove CR characters, they are displayed */
2746 p
= (char_u
*)error_ga
.ga_data
+ error_ga
.ga_len
;
2749 p
= vim_strchr(p
, '\r');
2756 --len
; /* don't count the NUL at the end */
2757 error_ga
.ga_len
+= len
;
2762 * Give a message. To be used when the screen hasn't been initialized yet.
2763 * When there is no tty, collect messages until the GUI has started and they
2764 * can be displayed in a message box.
2770 #if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI)
2771 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and
2772 * uses mch_errmsg() when started from the desktop.
2773 * When not going to start the GUI also use stdout.
2774 * On Mac, when started from Finder, stderr is the console. */
2777 # ifdef MACOS_X_UNIX
2778 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0)
2787 !(gui
.in_use
|| gui
.starting
)
2797 #endif /* USE_MCH_ERRMSG */
2800 * Put a character on the screen at the current message position and advance
2801 * to the next position. Only for printable ASCII!
2804 msg_screen_putchar(c
, attr
)
2808 msg_didout
= TRUE
; /* remember that line is not empty */
2809 screen_putchar(c
, msg_row
, msg_col
, attr
);
2810 #ifdef FEAT_RIGHTLEFT
2822 if (++msg_col
>= Columns
)
2835 char_u
*s
= (char_u
*)_("-- More --");
2837 attr
= hl_attr(HLF_M
);
2838 screen_puts(s
, (int)Rows
- 1, 0, attr
);
2840 screen_puts((char_u
*)
2841 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "),
2842 (int)Rows
- 1, vim_strsize(s
), attr
);
2846 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
2852 if (State
== ASKMORE
)
2854 msg_moremsg(TRUE
); /* display --more-- message again */
2857 #ifdef FEAT_CON_DIALOG
2858 else if (State
== CONFIRM
)
2860 display_confirm_msg(); /* display ":confirm" message again */
2864 else if (State
== EXTERNCMD
)
2866 windgoto(msg_row
, msg_col
); /* put cursor back */
2868 else if (State
== HITRETURN
|| State
== SETWSIZE
)
2870 if (msg_row
== Rows
- 1)
2872 /* Avoid drawing the "hit-enter" prompt below the previous one,
2873 * overwrite it. Esp. useful when regaining focus and a
2874 * FocusGained autocmd exists but didn't draw anything. */
2885 * msg_check_screen - check if the screen is initialized.
2886 * Also check msg_row and msg_col, if they are too big it may cause a crash.
2887 * While starting the GUI the terminal codes will be set for the GUI, but the
2888 * output goes to the terminal. Don't use the terminal codes then.
2893 if (!full_screen
|| !screen_valid(FALSE
))
2896 if (msg_row
>= Rows
)
2898 if (msg_col
>= Columns
)
2899 msg_col
= Columns
- 1;
2904 * Clear from current message position to end of screen.
2905 * Skip this when ":silent" was used, no need to clear for redirection.
2910 if (msg_silent
== 0)
2911 msg_clr_eos_force();
2915 * Clear from current message position to end of screen.
2916 * Note: msg_col is not updated, so we remember the end of the message
2922 if (msg_use_printf())
2924 if (full_screen
) /* only when termcap codes are valid */
2927 out_str(T_CD
); /* clear to end of display */
2929 out_str(T_CE
); /* clear to end of line */
2934 #ifdef FEAT_RIGHTLEFT
2937 screen_fill(msg_row
, msg_row
+ 1, 0, msg_col
+ 1, ' ', ' ', 0);
2938 screen_fill(msg_row
+ 1, (int)Rows
, 0, (int)Columns
, ' ', ' ', 0);
2943 screen_fill(msg_row
, msg_row
+ 1, msg_col
, (int)Columns
,
2945 screen_fill(msg_row
+ 1, (int)Rows
, 0, (int)Columns
, ' ', ' ', 0);
2951 * Clear the command line.
2956 msg_row
= cmdline_row
;
2958 msg_clr_eos_force();
2962 * end putting a message on the screen
2963 * call wait_return if the message does not fit in the available space
2964 * return TRUE if wait_return not called.
2970 * if the string is larger than the window,
2971 * or the ruler option is set and we run into it,
2972 * we have to redraw the window.
2973 * Do not do this if we are abandoning the file or editing the command line.
2975 if (!exiting
&& need_wait_return
&& !(State
& CMDLINE
))
2985 * If the written message runs into the shown command or ruler, we have to
2986 * wait for hit-return and redraw the window later.
2991 if (msg_row
== Rows
- 1 && msg_col
>= sc_col
)
2993 need_wait_return
= TRUE
;
2994 redraw_cmdline
= TRUE
;
2999 * May write a string to the redirection file.
3000 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3003 redir_write(str
, maxlen
)
3008 static int cur_col
= 0;
3010 /* Don't do anything for displaying prompts and the like. */
3015 * If 'verbosefile' is set write message in that file.
3016 * Must come before the rest because of updating "msg_col".
3018 if (*p_vfile
!= NUL
)
3019 verbose_write(s
, maxlen
);
3021 if (redir_fd
!= NULL
3023 || redir_reg
|| redir_vname
3027 /* If the string doesn't start with CR or NL, go to msg_col */
3028 if (*s
!= '\n' && *s
!= '\r')
3030 while (cur_col
< msg_col
)
3034 write_reg_contents(redir_reg
, (char_u
*)" ", -1, TRUE
);
3035 else if (redir_vname
)
3036 var_redir_str((char_u
*)" ", -1);
3039 fputs(" ", redir_fd
);
3046 write_reg_contents(redir_reg
, s
, maxlen
, TRUE
);
3048 var_redir_str(s
, maxlen
);
3051 /* Adjust the current column */
3052 while (*s
!= NUL
&& (maxlen
< 0 || (int)(s
- str
) < maxlen
))
3055 if (!redir_reg
&& !redir_vname
&& redir_fd
!= NULL
)
3058 if (*s
== '\r' || *s
== '\n')
3060 else if (*s
== '\t')
3061 cur_col
+= (8 - cur_col
% 8);
3067 if (msg_silent
!= 0) /* should update msg_col */
3073 * Before giving verbose message.
3074 * Must always be called paired with verbose_leave()!
3079 if (*p_vfile
!= NUL
)
3084 * After giving verbose message.
3085 * Must always be called paired with verbose_enter()!
3090 if (*p_vfile
!= NUL
)
3091 if (--msg_silent
< 0)
3096 * Like verbose_enter() and set msg_scroll when displaying the message.
3099 verbose_enter_scroll()
3101 if (*p_vfile
!= NUL
)
3104 /* always scroll up, don't overwrite */
3109 * Like verbose_leave() and set cmdline_row when displaying the message.
3112 verbose_leave_scroll()
3114 if (*p_vfile
!= NUL
)
3116 if (--msg_silent
< 0)
3120 cmdline_row
= msg_row
;
3123 static FILE *verbose_fd
= NULL
;
3124 static int verbose_did_open
= FALSE
;
3127 * Called when 'verbosefile' is set: stop writing to the file.
3132 if (verbose_fd
!= NULL
)
3137 verbose_did_open
= FALSE
;
3141 * Open the file 'verbosefile'.
3142 * Return FAIL or OK.
3147 if (verbose_fd
== NULL
&& !verbose_did_open
)
3149 /* Only give the error message once. */
3150 verbose_did_open
= TRUE
;
3152 verbose_fd
= mch_fopen((char *)p_vfile
, "a");
3153 if (verbose_fd
== NULL
)
3155 EMSG2(_(e_notopen
), p_vfile
);
3163 * Write a string to 'verbosefile'.
3164 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
3167 verbose_write(str
, maxlen
)
3172 static int cur_col
= 0;
3174 /* Open the file when called the first time. */
3175 if (verbose_fd
== NULL
)
3178 if (verbose_fd
!= NULL
)
3180 /* If the string doesn't start with CR or NL, go to msg_col */
3181 if (*s
!= '\n' && *s
!= '\r')
3183 while (cur_col
< msg_col
)
3185 fputs(" ", verbose_fd
);
3190 /* Adjust the current column */
3191 while (*s
!= NUL
&& (maxlen
< 0 || (int)(s
- str
) < maxlen
))
3193 putc(*s
, verbose_fd
);
3194 if (*s
== '\r' || *s
== '\n')
3196 else if (*s
== '\t')
3197 cur_col
+= (8 - cur_col
% 8);
3206 * Give a warning message (for searching).
3207 * Use 'w' highlighting and may repeat the message after redrawing
3210 give_warning(message
, hl
)
3214 /* Don't do this for ":silent". */
3215 if (msg_silent
!= 0)
3218 /* Don't want a hit-enter prompt here. */
3222 set_vim_var_string(VV_WARNINGMSG
, message
, -1);
3227 keep_msg_attr
= hl_attr(HLF_W
);
3230 if (msg_attr(message
, keep_msg_attr
) && msg_scrolled
== 0)
3231 set_keep_msg(message
, keep_msg_attr
);
3232 msg_didout
= FALSE
; /* overwrite this message */
3233 msg_nowait
= TRUE
; /* don't wait for this message */
3240 * Advance msg cursor to column "col".
3246 if (msg_silent
!= 0) /* nothing to advance to */
3248 msg_col
= col
; /* for redirection, may fill it up later */
3251 if (col
>= Columns
) /* not enough room */
3253 #ifdef FEAT_RIGHTLEFT
3255 while (msg_col
> Columns
- col
)
3259 while (msg_col
< col
)
3263 #if defined(FEAT_CON_DIALOG) || defined(PROTO)
3265 * Used for "confirm()" function, and the :confirm command prefix.
3266 * Versions which haven't got flexible dialogs yet, and console
3267 * versions, get this generic handler which uses the command line.
3270 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC
3271 * title = title string (can be NULL for default)
3272 * (neither used in console dialogs at the moment)
3274 * Format of the "buttons" string:
3275 * "Button1Name\nButton2Name\nButton3Name"
3276 * The first button should normally be the default/accept
3277 * The second button should be the 'Cancel' button
3278 * Other buttons- use your imagination!
3279 * A '&' in a button name becomes a shortcut, so each '&' should be before a
3284 do_dialog(type
, title
, message
, buttons
, dfltbutton
, textfield
)
3290 char_u
*textfield
; /* IObuff for inputdialog(), NULL otherwise */
3299 /* Don't output anything in silent mode ("ex -s") */
3301 return dfltbutton
; /* return default option */
3304 #ifdef FEAT_GUI_DIALOG
3305 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */
3306 if (gui
.in_use
&& vim_strchr(p_go
, GO_CONDIALOG
) == NULL
)
3308 c
= gui_mch_dialog(type
, title
, message
, buttons
, dfltbutton
,
3312 /* Flush output to avoid that further messages and redrawing is done
3313 * in the wrong order. */
3328 * Since we wait for a keypress, don't make the
3329 * user press RETURN as well afterwards.
3332 hotkeys
= msg_show_console_dialog(message
, buttons
, dfltbutton
);
3334 if (hotkeys
!= NULL
)
3338 /* Get a typed character directly from the user. */
3339 c
= get_keystroke();
3342 case CAR
: /* User accepts default option */
3344 retval
= dfltbutton
;
3346 case Ctrl_C
: /* User aborts/cancels */
3350 default: /* Could be a hotkey? */
3351 if (c
< 0) /* special keys are ignored here */
3353 /* Make the character lowercase, as chars in "hotkeys" are. */
3356 for (i
= 0; hotkeys
[i
]; ++i
)
3361 if ((*mb_ptr2char
)(hotkeys
+ i
) == c
)
3363 i
+= (*mb_ptr2len
)(hotkeys
+ i
) - 1;
3367 if (hotkeys
[i
] == c
)
3373 /* No hotkey match, so keep waiting */
3392 static int copy_char
__ARGS((char_u
*from
, char_u
*to
, int lowercase
));
3395 * Copy one character from "*from" to "*to", taking care of multi-byte
3396 * characters. Return the length of the character in bytes.
3399 copy_char(from
, to
, lowercase
)
3402 int lowercase
; /* make character lower case */
3412 c
= MB_TOLOWER((*mb_ptr2char
)(from
));
3413 return (*mb_char2bytes
)(c
, to
);
3417 len
= (*mb_ptr2len
)(from
);
3418 mch_memmove(to
, from
, (size_t)len
);
3426 *to
= (char_u
)TOLOWER_LOC(*from
);
3434 * Format the dialog string, and display it at the bottom of
3435 * the screen. Return a string of hotkey chars (if defined) for
3436 * each 'button'. If a button has no hotkey defined, the first character of
3437 * the button is used.
3438 * The hotkeys can be multi-byte characters, but without combining chars.
3440 * Returns an allocated string with hotkeys, or NULL for error.
3443 msg_show_console_dialog(message
, buttons
, dfltbutton
)
3450 # define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1)
3454 int lenhotkey
= HOTK_LEN
; /* count first button */
3455 char_u
*hotk
= NULL
;
3456 char_u
*msgp
= NULL
;
3457 char_u
*hotkp
= NULL
;
3460 #define HAS_HOTKEY_LEN 30
3461 char_u has_hotkey
[HAS_HOTKEY_LEN
];
3462 int first_hotkey
= FALSE
; /* first char of button is hotkey */
3465 has_hotkey
[0] = FALSE
;
3468 * First loop: compute the size of memory to allocate.
3469 * Second loop: copy to the allocated memory.
3471 for (copy
= 0; copy
<= 1; ++copy
)
3477 if (*r
== DLG_BUTTON_SEP
)
3482 *msgp
++ = ' '; /* '\n' -> ', ' */
3484 /* advance to next hotkey and set default hotkey */
3487 hotkp
+= STRLEN(hotkp
);
3491 hotkp
[copy_char(r
+ 1, hotkp
, TRUE
)] = NUL
;
3495 /* If no hotkey is specified first char is used. */
3496 if (idx
< HAS_HOTKEY_LEN
- 1 && !has_hotkey
[++idx
])
3497 first_hotkey
= TRUE
;
3501 len
+= 3; /* '\n' -> ', '; 'x' -> '(x)' */
3502 lenhotkey
+= HOTK_LEN
; /* each button needs a hotkey */
3503 if (idx
< HAS_HOTKEY_LEN
- 1)
3504 has_hotkey
[++idx
] = FALSE
;
3507 else if (*r
== DLG_HOTKEY_CHAR
|| first_hotkey
)
3509 if (*r
== DLG_HOTKEY_CHAR
)
3511 first_hotkey
= FALSE
;
3514 if (*r
== DLG_HOTKEY_CHAR
) /* '&&a' -> '&a' */
3519 *msgp
++ = (dfltbutton
== 1) ? '[' : '(';
3520 msgp
+= copy_char(r
, msgp
, FALSE
);
3521 *msgp
++ = (dfltbutton
== 1) ? ']' : ')';
3523 /* redefine hotkey */
3524 hotkp
[copy_char(r
, hotkp
, TRUE
)] = NUL
;
3529 ++len
; /* '&a' -> '[a]' */
3530 if (idx
< HAS_HOTKEY_LEN
- 1)
3531 has_hotkey
[idx
] = TRUE
;
3536 /* everything else copy literally */
3538 msgp
+= copy_char(r
, msgp
, FALSE
);
3541 /* advance to the next character */
3553 len
+= (int)(STRLEN(message
)
3554 + 2 /* for the NL's */
3556 + 3); /* for the ": " and NUL */
3557 lenhotkey
++; /* for the NUL */
3559 /* If no hotkey is specified first char is used. */
3562 first_hotkey
= TRUE
;
3563 len
+= 2; /* "x" -> "[x]" */
3567 * Now allocate and load the strings
3569 vim_free(confirm_msg
);
3570 confirm_msg
= alloc(len
);
3571 if (confirm_msg
== NULL
)
3574 hotk
= alloc(lenhotkey
);
3578 *confirm_msg
= '\n';
3579 STRCPY(confirm_msg
+ 1, message
);
3581 msgp
= confirm_msg
+ 1 + STRLEN(message
);
3584 /* Define first default hotkey. Keep the hotkey string NUL
3585 * terminated to avoid reading past the end. */
3586 hotkp
[copy_char(buttons
, hotkp
, TRUE
)] = NUL
;
3588 /* Remember where the choices start, displaying starts here when
3589 * "hotkp" typed at the more prompt. */
3590 confirm_msg_tail
= msgp
;
3595 display_confirm_msg();
3600 * Display the ":confirm" message. Also called when screen resized.
3603 display_confirm_msg()
3605 /* avoid that 'q' at the more prompt truncates the message here */
3607 if (confirm_msg
!= NULL
)
3608 msg_puts_attr(confirm_msg
, hl_attr(HLF_M
));
3612 #endif /* FEAT_CON_DIALOG */
3614 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
3617 vim_dialog_yesno(type
, title
, message
, dflt
)
3624 title
== NULL
? (char_u
*)_("Question") : title
,
3626 (char_u
*)_("&Yes\n&No"), dflt
, NULL
) == 1)
3632 vim_dialog_yesnocancel(type
, title
, message
, dflt
)
3638 switch (do_dialog(type
,
3639 title
== NULL
? (char_u
*)_("Question") : title
,
3641 (char_u
*)_("&Yes\n&No\n&Cancel"), dflt
, NULL
))
3643 case 1: return VIM_YES
;
3644 case 2: return VIM_NO
;
3650 vim_dialog_yesnoallcancel(type
, title
, message
, dflt
)
3656 switch (do_dialog(type
,
3657 title
== NULL
? (char_u
*)"Question" : title
,
3659 (char_u
*)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"),
3662 case 1: return VIM_YES
;
3663 case 2: return VIM_NO
;
3664 case 3: return VIM_ALL
;
3665 case 4: return VIM_DISCARDALL
;
3670 #endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */
3672 #if defined(FEAT_BROWSE) || defined(PROTO)
3674 * Generic browse function. Calls gui_mch_browse() when possible.
3675 * Later this may pop-up a non-GUI file selector (external command?).
3678 do_browse(flags
, title
, dflt
, ext
, initdir
, filter
, buf
)
3679 int flags
; /* BROWSE_SAVE and BROWSE_DIR */
3680 char_u
*title
; /* title for the window */
3681 char_u
*dflt
; /* default file name (may include directory) */
3682 char_u
*ext
; /* extension added */
3683 char_u
*initdir
; /* initial directory, NULL for current dir or
3684 when using path from "dflt" */
3685 char_u
*filter
; /* file name filter */
3686 buf_T
*buf
; /* buffer to read/write for */
3689 static char_u
*last_dir
= NULL
; /* last used directory */
3690 char_u
*tofree
= NULL
;
3691 int save_browse
= cmdmod
.browse
;
3693 /* Must turn off browse to avoid that autocommands will get the
3695 cmdmod
.browse
= FALSE
;
3697 if (title
== NULL
|| *title
== NUL
)
3699 if (flags
& BROWSE_DIR
)
3700 title
= (char_u
*)_("Select Directory dialog");
3701 else if (flags
& BROWSE_SAVE
)
3702 title
= (char_u
*)_("Save File dialog");
3704 title
= (char_u
*)_("Open File dialog");
3707 /* When no directory specified, use default file name, default dir, buffer
3708 * dir, last dir or current dir */
3709 if ((initdir
== NULL
|| *initdir
== NUL
) && dflt
!= NULL
&& *dflt
!= NUL
)
3711 if (mch_isdir(dflt
)) /* default file name is a directory */
3716 else if (gettail(dflt
) != dflt
) /* default file name includes a path */
3718 tofree
= vim_strsave(dflt
);
3722 *gettail(initdir
) = NUL
;
3723 dflt
= gettail(dflt
);
3728 if (initdir
== NULL
|| *initdir
== NUL
)
3730 /* When 'browsedir' is a directory, use it */
3731 if (STRCMP(p_bsdir
, "last") != 0
3732 && STRCMP(p_bsdir
, "buffer") != 0
3733 && STRCMP(p_bsdir
, "current") != 0
3734 && mch_isdir(p_bsdir
))
3736 /* When saving or 'browsedir' is "buffer", use buffer fname */
3737 else if (((flags
& BROWSE_SAVE
) || *p_bsdir
== 'b')
3738 && buf
!= NULL
&& buf
->b_ffname
!= NULL
)
3740 if (dflt
== NULL
|| *dflt
== NUL
)
3741 dflt
= gettail(curbuf
->b_ffname
);
3742 tofree
= vim_strsave(curbuf
->b_ffname
);
3746 *gettail(initdir
) = NUL
;
3749 /* When 'browsedir' is "last", use dir from last browse */
3750 else if (*p_bsdir
== 'l')
3752 /* When 'browsedir is "current", use current directory. This is the
3753 * default already, leave initdir empty. */
3757 if (gui
.in_use
) /* when this changes, also adjust f_has()! */
3761 && (filter
= get_var_value((char_u
*)"b:browsefilter")) == NULL
3762 && (filter
= get_var_value((char_u
*)"g:browsefilter")) == NULL
3765 filter
= BROWSE_FILTER_DEFAULT
;
3766 if (flags
& BROWSE_DIR
)
3768 # if defined(HAVE_GTK2) || defined(WIN3264)
3769 /* For systems that have a directory dialog. */
3770 fname
= gui_mch_browsedir(title
, initdir
);
3772 /* Generic solution for selecting a directory: select a file and
3773 * remove the file name. */
3774 fname
= gui_mch_browse(0, title
, dflt
, ext
, initdir
, (char_u
*)"");
3776 # if !defined(HAVE_GTK2)
3777 /* Win32 adds a dummy file name, others return an arbitrary file
3778 * name. GTK+ 2 returns only the directory, */
3779 if (fname
!= NULL
&& *fname
!= NUL
&& !mch_isdir(fname
))
3781 /* Remove the file name. */
3782 char_u
*tail
= gettail_sep(fname
);
3785 *tail
++ = '.'; /* use current dir */
3791 fname
= gui_mch_browse(flags
& BROWSE_SAVE
,
3792 title
, dflt
, ext
, initdir
, filter
);
3794 /* We hang around in the dialog for a while, the user might do some
3795 * things to our files. The Win32 dialog allows deleting or renaming
3796 * a file, check timestamps. */
3797 need_check_timestamps
= TRUE
;
3798 did_check_timestamps
= FALSE
;
3803 /* TODO: non-GUI file selector here */
3804 EMSG(_("E338: Sorry, no file browser in console mode"));
3808 /* keep the directory for next time */
3812 last_dir
= vim_strsave(fname
);
3813 if (last_dir
!= NULL
&& !(flags
& BROWSE_DIR
))
3815 *gettail(last_dir
) = NUL
;
3816 if (*last_dir
== NUL
)
3818 /* filename only returned, must be in current dir */
3820 last_dir
= alloc(MAXPATHL
);
3821 if (last_dir
!= NULL
)
3822 mch_dirname(last_dir
, MAXPATHL
);
3828 cmdmod
.browse
= save_browse
;
3834 #if defined(HAVE_STDARG_H) && defined(FEAT_EVAL)
3835 static char *e_printf
= N_("E766: Insufficient arguments for printf()");
3837 static long tv_nr
__ARGS((typval_T
*tvs
, int *idxp
));
3838 static char *tv_str
__ARGS((typval_T
*tvs
, int *idxp
));
3840 static double tv_float
__ARGS((typval_T
*tvs
, int *idxp
));
3844 * Get number argument from "idxp" entry in "tvs". First entry is 1.
3851 int idx
= *idxp
- 1;
3855 if (tvs
[idx
].v_type
== VAR_UNKNOWN
)
3860 n
= get_tv_number_chk(&tvs
[idx
], &err
);
3868 * Get string argument from "idxp" entry in "tvs". First entry is 1.
3869 * Returns NULL for an error.
3876 int idx
= *idxp
- 1;
3879 if (tvs
[idx
].v_type
== VAR_UNKNOWN
)
3884 s
= (char *)get_tv_string_chk(&tvs
[idx
]);
3891 * Get float argument from "idxp" entry in "tvs". First entry is 1.
3898 int idx
= *idxp
- 1;
3901 if (tvs
[idx
].v_type
== VAR_UNKNOWN
)
3906 if (tvs
[idx
].v_type
== VAR_FLOAT
)
3907 f
= tvs
[idx
].vval
.v_float
;
3908 else if (tvs
[idx
].v_type
== VAR_NUMBER
)
3909 f
= tvs
[idx
].vval
.v_number
;
3911 EMSG(_("E807: Expected Float argument for printf()"));
3919 * This code was included to provide a portable vsnprintf() and snprintf().
3920 * Some systems may provide their own, but we always use this one for
3923 * This code is based on snprintf.c - a portable implementation of snprintf
3924 * by Mark Martinec <mark.martinec@ijs.si>, Version 2.2, 2000-10-06.
3925 * Included with permission. It was heavily modified to fit in Vim.
3926 * The original code, including useful comments, can be found here:
3927 * http://www.ijs.si/software/snprintf/
3929 * This snprintf() only supports the following conversion specifiers:
3930 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
3931 * with flags: '-', '+', ' ', '0' and '#'.
3932 * An asterisk is supported for field width as well as precision.
3934 * Limited support for floating point was added: 'f', 'e', 'E', 'g', 'G'.
3936 * Length modifiers 'h' (short int) and 'l' (long int) are supported.
3937 * 'll' (long long int) is not supported.
3939 * The locale is not used, the string is used as a byte string. This is only
3940 * relevant for double-byte encodings where the second byte may be '%'.
3942 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL
3943 * pointer for resulting string argument if "str_m" is zero (as per ISO C99).
3945 * The return value is the number of characters which would be generated
3946 * for the given input, excluding the trailing null. If this value
3947 * is greater or equal to "str_m", not all characters from the result
3948 * have been stored in str, output bytes beyond the ("str_m"-1) -th character
3949 * are discarded. If "str_m" is greater than zero it is guaranteed
3950 * the resulting string will be null-terminated.
3954 * When va_list is not supported we only define vim_snprintf().
3956 * vim_vsnprintf() can be invoked with either "va_list" or a list of
3957 * "typval_T". When the latter is not used it must be NULL.
3960 /* When generating prototypes all of this is skipped, cproto doesn't
3961 * understand this. */
3963 # ifdef HAVE_STDARG_H
3965 vim_snprintf(char *str
, size_t str_m
, char *fmt
, ...)
3971 str_l
= vim_vsnprintf(str
, str_m
, fmt
, ap
, NULL
);
3977 vim_vsnprintf(str
, str_m
, fmt
, ap
, tvs
)
3979 /* clumsy way to work around missing va_list */
3980 # 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)
3987 vim_snprintf(str
, str_m
, fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
)
3992 # ifdef HAVE_STDARG_H
3996 long a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
;
4009 char *q
= strchr(p
+ 1, '%');
4010 size_t n
= (q
== NULL
) ? STRLEN(p
) : (q
- p
);
4012 /* Copy up to the next '%' or NUL without any changes. */
4015 size_t avail
= str_m
- str_l
;
4017 mch_memmove(str
+ str_l
, p
, n
> avail
? avail
: n
);
4024 size_t min_field_width
= 0, precision
= 0;
4025 int zero_padding
= 0, precision_specified
= 0, justify_left
= 0;
4026 int alternate_form
= 0, force_sign
= 0;
4028 /* If both the ' ' and '+' flags appear, the ' ' flag should be
4030 int space_for_positive
= 1;
4032 /* allowed values: \0, h, l, L */
4033 char length_modifier
= '\0';
4035 /* temporary buffer for simple numeric->string conversion */
4037 # define TMP_LEN 350 /* On my system 1e308 is the biggest number possible.
4038 * That sounds reasonable to use as the maximum
4045 /* string address in case of string argument */
4048 /* natural field width of arg without padding and sign */
4051 /* unsigned char argument value - only defined for c conversion.
4052 * N.B. standard explicitly states the char argument for the c
4053 * conversion is unsigned */
4054 unsigned char uchar_arg
;
4056 /* number of zeros to be inserted for numeric conversions as
4057 * required by the precision or minimal field width */
4058 size_t number_of_zeros_to_pad
= 0;
4060 /* index into tmp where zero padding is to be inserted */
4061 size_t zero_padding_insertion_ind
= 0;
4063 /* current conversion specifier character */
4064 char fmt_spec
= '\0';
4070 while (*p
== '0' || *p
== '-' || *p
== '+' || *p
== ' '
4071 || *p
== '#' || *p
== '\'')
4075 case '0': zero_padding
= 1; break;
4076 case '-': justify_left
= 1; break;
4077 case '+': force_sign
= 1; space_for_positive
= 0; break;
4078 case ' ': force_sign
= 1;
4079 /* If both the ' ' and '+' flags appear, the ' '
4080 * flag should be ignored */
4082 case '#': alternate_form
= 1; break;
4087 /* If the '0' and '-' flags both appear, the '0' flag should be
4090 /* parse field width */
4097 #ifndef HAVE_STDARG_H
4100 # if defined(FEAT_EVAL)
4101 tvs
!= NULL
? tv_nr(tvs
, &arg_idx
) :
4106 min_field_width
= j
;
4109 min_field_width
= -j
;
4113 else if (VIM_ISDIGIT((int)(*p
)))
4115 /* size_t could be wider than unsigned int; make sure we treat
4116 * argument like common implementations do */
4117 unsigned int uj
= *p
++ - '0';
4119 while (VIM_ISDIGIT((int)(*p
)))
4120 uj
= 10 * uj
+ (unsigned int)(*p
++ - '0');
4121 min_field_width
= uj
;
4124 /* parse precision */
4128 precision_specified
= 1;
4134 #ifndef HAVE_STDARG_H
4137 # if defined(FEAT_EVAL)
4138 tvs
!= NULL
? tv_nr(tvs
, &arg_idx
) :
4147 precision_specified
= 0;
4151 else if (VIM_ISDIGIT((int)(*p
)))
4153 /* size_t could be wider than unsigned int; make sure we
4154 * treat argument like common implementations do */
4155 unsigned int uj
= *p
++ - '0';
4157 while (VIM_ISDIGIT((int)(*p
)))
4158 uj
= 10 * uj
+ (unsigned int)(*p
++ - '0');
4163 /* parse 'h', 'l' and 'll' length modifiers */
4164 if (*p
== 'h' || *p
== 'l')
4166 length_modifier
= *p
;
4168 if (length_modifier
== 'l' && *p
== 'l')
4170 /* double l = long long */
4171 length_modifier
= 'l'; /* treat it as a single 'l' */
4177 /* common synonyms: */
4180 case 'i': fmt_spec
= 'd'; break;
4181 case 'D': fmt_spec
= 'd'; length_modifier
= 'l'; break;
4182 case 'U': fmt_spec
= 'u'; length_modifier
= 'l'; break;
4183 case 'O': fmt_spec
= 'o'; length_modifier
= 'l'; break;
4184 case 'F': fmt_spec
= 'f'; break;
4188 /* get parameter value, do initial processing */
4191 /* '%' and 'c' behave similar to 's' regarding flags and field
4196 length_modifier
= '\0';
4209 #ifndef HAVE_STDARG_H
4212 # if defined(FEAT_EVAL)
4213 tvs
!= NULL
? tv_nr(tvs
, &arg_idx
) :
4217 /* standard demands unsigned char */
4218 uchar_arg
= (unsigned char)j
;
4219 str_arg
= (char *)&uchar_arg
;
4225 #ifndef HAVE_STDARG_H
4226 (char *)get_a_arg(arg_idx
);
4228 # if defined(FEAT_EVAL)
4229 tvs
!= NULL
? tv_str(tvs
, &arg_idx
) :
4233 if (str_arg
== NULL
)
4238 /* make sure not to address string beyond the specified
4240 else if (!precision_specified
)
4241 str_arg_l
= strlen(str_arg
);
4242 /* truncate string if necessary as requested by precision */
4243 else if (precision
== 0)
4247 /* Don't put the #if inside memchr(), it can be a
4250 char *q
= memchr(str_arg
, '\0', precision
);
4252 /* memchr on HP does not like n > 2^31 !!! */
4253 char *q
= memchr(str_arg
, '\0',
4254 precision
<= (size_t)0x7fffffffL
? precision
4255 : (size_t)0x7fffffffL
);
4257 str_arg_l
= (q
== NULL
) ? precision
: q
- str_arg
;
4266 case 'd': case 'u': case 'o': case 'x': case 'X': case 'p':
4268 /* NOTE: the u, o, x, X and p conversion specifiers
4269 * imply the value is unsigned; d implies a signed
4272 /* 0 if numeric argument is zero (or if pointer is
4273 * NULL for 'p'), +1 if greater than zero (or nonzero
4274 * for unsigned arguments), -1 if negative (unsigned
4275 * argument is never negative) */
4278 /* only defined for length modifier h, or for no
4279 * length modifiers */
4281 unsigned int uint_arg
= 0;
4283 /* only defined for length modifier l */
4284 long int long_arg
= 0;
4285 unsigned long int ulong_arg
= 0;
4287 /* pointer argument value -only defined for p
4289 void *ptr_arg
= NULL
;
4291 if (fmt_spec
== 'p')
4293 length_modifier
= '\0';
4295 #ifndef HAVE_STDARG_H
4296 (void *)get_a_arg(arg_idx
);
4298 # if defined(FEAT_EVAL)
4299 tvs
!= NULL
? (void *)tv_str(tvs
, &arg_idx
) :
4303 if (ptr_arg
!= NULL
)
4306 else if (fmt_spec
== 'd')
4309 switch (length_modifier
)
4313 /* char and short arguments are passed as int. */
4315 #ifndef HAVE_STDARG_H
4318 # if defined(FEAT_EVAL)
4319 tvs
!= NULL
? tv_nr(tvs
, &arg_idx
) :
4325 else if (int_arg
< 0)
4330 #ifndef HAVE_STDARG_H
4333 # if defined(FEAT_EVAL)
4334 tvs
!= NULL
? tv_nr(tvs
, &arg_idx
) :
4336 va_arg(ap
, long int);
4340 else if (long_arg
< 0)
4348 switch (length_modifier
)
4353 #ifndef HAVE_STDARG_H
4356 # if defined(FEAT_EVAL)
4357 tvs
!= NULL
? tv_nr(tvs
, &arg_idx
) :
4359 va_arg(ap
, unsigned int);
4366 #ifndef HAVE_STDARG_H
4369 # if defined(FEAT_EVAL)
4370 tvs
!= NULL
? tv_nr(tvs
, &arg_idx
) :
4372 va_arg(ap
, unsigned long int);
4384 * For d, i, u, o, x, and X conversions, if precision is
4385 * specified, the '0' flag should be ignored. This is so
4386 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux,
4387 * FreeBSD, NetBSD; but not with Perl.
4389 if (precision_specified
)
4391 if (fmt_spec
== 'd')
4393 if (force_sign
&& arg_sign
>= 0)
4394 tmp
[str_arg_l
++] = space_for_positive
? ' ' : '+';
4395 /* leave negative numbers for sprintf to handle, to
4396 * avoid handling tricky cases like (short int)-32768 */
4398 else if (alternate_form
)
4401 && (fmt_spec
== 'x' || fmt_spec
== 'X') )
4403 tmp
[str_arg_l
++] = '0';
4404 tmp
[str_arg_l
++] = fmt_spec
;
4406 /* alternate form should have no effect for p
4407 * conversion, but ... */
4410 zero_padding_insertion_ind
= str_arg_l
;
4411 if (!precision_specified
)
4412 precision
= 1; /* default precision is 1 */
4413 if (precision
== 0 && arg_sign
== 0)
4415 /* When zero value is formatted with an explicit
4416 * precision 0, the resulting formatted string is
4417 * empty (d, i, u, o, x, X, p). */
4424 /* construct a simple format string for sprintf */
4426 if (!length_modifier
)
4428 else if (length_modifier
== '2')
4434 f
[f_l
++] = length_modifier
;
4435 f
[f_l
++] = fmt_spec
;
4438 if (fmt_spec
== 'p')
4439 str_arg_l
+= sprintf(tmp
+ str_arg_l
, f
, ptr_arg
);
4440 else if (fmt_spec
== 'd')
4443 switch (length_modifier
)
4446 case 'h': str_arg_l
+= sprintf(
4447 tmp
+ str_arg_l
, f
, int_arg
);
4449 case 'l': str_arg_l
+= sprintf(
4450 tmp
+ str_arg_l
, f
, long_arg
);
4457 switch (length_modifier
)
4460 case 'h': str_arg_l
+= sprintf(
4461 tmp
+ str_arg_l
, f
, uint_arg
);
4463 case 'l': str_arg_l
+= sprintf(
4464 tmp
+ str_arg_l
, f
, ulong_arg
);
4469 /* include the optional minus sign and possible
4470 * "0x" in the region before the zero padding
4471 * insertion point */
4472 if (zero_padding_insertion_ind
< str_arg_l
4473 && tmp
[zero_padding_insertion_ind
] == '-')
4474 zero_padding_insertion_ind
++;
4475 if (zero_padding_insertion_ind
+ 1 < str_arg_l
4476 && tmp
[zero_padding_insertion_ind
] == '0'
4477 && (tmp
[zero_padding_insertion_ind
+ 1] == 'x'
4478 || tmp
[zero_padding_insertion_ind
+ 1] == 'X'))
4479 zero_padding_insertion_ind
+= 2;
4483 size_t num_of_digits
= str_arg_l
4484 - zero_padding_insertion_ind
;
4486 if (alternate_form
&& fmt_spec
== 'o'
4487 /* unless zero is already the first
4489 && !(zero_padding_insertion_ind
< str_arg_l
4490 && tmp
[zero_padding_insertion_ind
] == '0'))
4492 /* assure leading zero for alternate-form
4494 if (!precision_specified
4495 || precision
< num_of_digits
+ 1)
4497 /* precision is increased to force the
4498 * first character to be zero, except if a
4499 * zero value is formatted with an
4500 * explicit precision of zero */
4501 precision
= num_of_digits
+ 1;
4502 precision_specified
= 1;
4505 /* zero padding to specified precision? */
4506 if (num_of_digits
< precision
)
4507 number_of_zeros_to_pad
= precision
- num_of_digits
;
4509 /* zero padding to specified minimal field width? */
4510 if (!justify_left
&& zero_padding
)
4512 int n
= (int)(min_field_width
- (str_arg_l
4513 + number_of_zeros_to_pad
));
4515 number_of_zeros_to_pad
+= n
;
4527 /* Floating point. */
4532 int remove_trailing_zeroes
= FALSE
;
4535 # ifndef HAVE_STDARG_H
4538 # if defined(FEAT_EVAL)
4539 tvs
!= NULL
? tv_float(tvs
, &arg_idx
) :
4543 abs_f
= f
< 0 ? -f
: f
;
4545 if (fmt_spec
== 'g' || fmt_spec
== 'G')
4547 /* Would be nice to use %g directly, but it prints
4548 * "1.0" as "1", we don't want that. */
4549 if ((abs_f
>= 0.001 && abs_f
< 10000000.0)
4553 fmt_spec
= fmt_spec
== 'g' ? 'e' : 'E';
4554 remove_trailing_zeroes
= TRUE
;
4557 if (fmt_spec
== 'f' && abs_f
> 1.0e307
)
4559 /* Avoid a buffer overflow */
4567 if (precision_specified
)
4569 size_t max_prec
= TMP_LEN
- 10;
4571 /* Make sure we don't get more digits than we
4573 if (fmt_spec
== 'f' && abs_f
> 1.0)
4574 max_prec
-= (size_t)log10(abs_f
);
4575 if (precision
> max_prec
)
4576 precision
= max_prec
;
4577 l
+= sprintf(format
+ 1, ".%d", (int)precision
);
4579 format
[l
] = fmt_spec
;
4580 format
[l
+ 1] = NUL
;
4581 str_arg_l
= sprintf(tmp
, format
, f
);
4583 if (remove_trailing_zeroes
)
4588 /* Using %g or %G: remove superfluous zeroes. */
4589 if (fmt_spec
== 'f')
4590 p
= tmp
+ str_arg_l
- 1;
4593 p
= (char *)vim_strchr((char_u
*)tmp
,
4594 fmt_spec
== 'e' ? 'e' : 'E');
4597 /* Remove superfluous '+' and leading
4598 * zeroes from the exponent. */
4601 /* Change "1.0e+07" to "1.0e07" */
4602 STRMOVE(p
+ 1, p
+ 2);
4605 i
= (p
[1] == '-') ? 2 : 1;
4608 /* Change "1.0e07" to "1.0e7" */
4609 STRMOVE(p
+ i
, p
+ i
+ 1);
4616 if (p
!= NULL
&& !precision_specified
)
4617 /* Remove trailing zeroes, but keep the one
4618 * just after a dot. */
4619 while (p
> tmp
+ 2 && *p
== '0' && p
[-1] != '.')
4630 /* Be consistent: some printf("%e") use 1.0e+12
4631 * and some 1.0e+012. Remove one zero in the last
4633 p
= (char *)vim_strchr((char_u
*)tmp
,
4634 fmt_spec
== 'e' ? 'e' : 'E');
4635 if (p
!= NULL
&& (p
[1] == '+' || p
[1] == '-')
4637 && vim_isdigit(p
[3])
4638 && vim_isdigit(p
[4]))
4640 STRMOVE(p
+ 2, p
+ 3);
4651 /* unrecognized conversion specifier, keep format string
4653 zero_padding
= 0; /* turn zero padding off for non-numeric
4656 min_field_width
= 0; /* reset flags */
4658 /* discard the unrecognized conversion, just keep *
4659 * the unrecognized conversion character */
4663 str_arg_l
++; /* include invalid conversion specifier
4664 unchanged if not at end-of-string */
4669 p
++; /* step over the just processed conversion specifier */
4671 /* insert padding to the left as requested by min_field_width;
4672 * this does not include the zero padding in case of numerical
4676 /* left padding with blank or zero */
4677 int pn
= (int)(min_field_width
- (str_arg_l
+ number_of_zeros_to_pad
));
4683 size_t avail
= str_m
- str_l
;
4685 vim_memset(str
+ str_l
, zero_padding
? '0' : ' ',
4686 (size_t)pn
> avail
? avail
: pn
);
4692 /* zero padding as requested by the precision or by the minimal
4693 * field width for numeric conversions required? */
4694 if (number_of_zeros_to_pad
== 0)
4696 /* will not copy first part of numeric right now, *
4697 * force it to be copied later in its entirety */
4698 zero_padding_insertion_ind
= 0;
4702 /* insert first part of numerics (sign or '0x') before zero
4704 int zn
= (int)zero_padding_insertion_ind
;
4710 size_t avail
= str_m
- str_l
;
4712 mch_memmove(str
+ str_l
, str_arg
,
4713 (size_t)zn
> avail
? avail
: zn
);
4718 /* insert zero padding as requested by the precision or min
4720 zn
= (int)number_of_zeros_to_pad
;
4725 size_t avail
= str_m
-str_l
;
4727 vim_memset(str
+ str_l
, '0',
4728 (size_t)zn
> avail
? avail
: zn
);
4734 /* insert formatted string
4735 * (or as-is conversion specifier for unknown conversions) */
4737 int sn
= (int)(str_arg_l
- zero_padding_insertion_ind
);
4743 size_t avail
= str_m
- str_l
;
4745 mch_memmove(str
+ str_l
,
4746 str_arg
+ zero_padding_insertion_ind
,
4747 (size_t)sn
> avail
? avail
: sn
);
4753 /* insert right padding */
4756 /* right blank padding to the field width */
4757 int pn
= (int)(min_field_width
4758 - (str_arg_l
+ number_of_zeros_to_pad
));
4764 size_t avail
= str_m
- str_l
;
4766 vim_memset(str
+ str_l
, ' ',
4767 (size_t)pn
> avail
? avail
: pn
);
4777 /* make sure the string is nul-terminated even at the expense of
4778 * overwriting the last character (shouldn't happen, but just in case)
4780 str
[str_l
<= str_m
- 1 ? str_l
: str_m
- 1] = '\0';
4783 #ifdef HAVE_STDARG_H
4784 if (tvs
!= NULL
&& tvs
[arg_idx
- 1].v_type
!= VAR_UNKNOWN
)
4785 EMSG(_("E767: Too many arguments to printf()"));
4788 /* Return the number of characters formatted (excluding trailing nul
4789 * character), that is, the number of characters that would have been
4790 * written to the buffer if it were large enough. */