mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
Merge pull request #17741 from dundargoc/doxygen/message
refactor(message): convert function comments to doxygen format
This commit is contained in:
commit
4c7e2ab12e
@ -206,11 +206,10 @@ void msg_grid_validate(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* msg(s) - displays the string 's' on the status line
|
||||
* When terminal not initialized (yet) mch_errmsg(..) is used.
|
||||
* return TRUE if wait_return not called
|
||||
*/
|
||||
/// Displays the string 's' on the status line
|
||||
/// When terminal not initialized (yet) mch_errmsg(..) is used.
|
||||
///
|
||||
/// @return TRUE if wait_return not called
|
||||
int msg(char *s)
|
||||
{
|
||||
return msg_attr_keep(s, 0, false, false);
|
||||
@ -232,7 +231,7 @@ int msg_attr(const char *s, const int attr)
|
||||
return msg_attr_keep(s, attr, false, false);
|
||||
}
|
||||
|
||||
/// similar to msg_outtrans_attr, but support newlines and tabs.
|
||||
/// Similar to msg_outtrans_attr, but support newlines and tabs.
|
||||
void msg_multiline_attr(const char *s, int attr, bool check_int, bool *need_clear)
|
||||
FUNC_ATTR_NONNULL_ALL
|
||||
{
|
||||
@ -339,7 +338,8 @@ bool msg_attr_keep(const char *s, int attr, bool keep, bool multiline)
|
||||
}
|
||||
|
||||
/// Truncate a string such that it can be printed without causing a scroll.
|
||||
/// Returns an allocated string or NULL when no truncating is done.
|
||||
///
|
||||
/// @return an allocated string or NULL when no truncating is done.
|
||||
///
|
||||
/// @param force always truncate
|
||||
char_u *msg_strtrunc(char_u *s, int force)
|
||||
@ -371,10 +371,8 @@ char_u *msg_strtrunc(char_u *s, int force)
|
||||
return buf;
|
||||
}
|
||||
|
||||
/*
|
||||
* Truncate a string "s" to "buf" with cell width "room".
|
||||
* "s" and "buf" may be equal.
|
||||
*/
|
||||
/// Truncate a string "s" to "buf" with cell width "room".
|
||||
/// "s" and "buf" may be equal.
|
||||
void trunc_string(char_u *s, char_u *buf, int room_in, int buflen)
|
||||
{
|
||||
size_t room = room_in - 3; // "..." takes 3 chars
|
||||
@ -498,19 +496,15 @@ int smsg_attr_keep(int attr, const char *s, ...)
|
||||
static int last_sourcing_lnum = 0;
|
||||
static char_u *last_sourcing_name = NULL;
|
||||
|
||||
/*
|
||||
* Reset the last used sourcing name/lnum. Makes sure it is displayed again
|
||||
* for the next error message;
|
||||
*/
|
||||
/// Reset the last used sourcing name/lnum. Makes sure it is displayed again
|
||||
/// for the next error message;
|
||||
void reset_last_sourcing(void)
|
||||
{
|
||||
XFREE_CLEAR(last_sourcing_name);
|
||||
last_sourcing_lnum = 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Return TRUE if "sourcing_name" differs from "last_sourcing_name".
|
||||
*/
|
||||
/// @return TRUE if "sourcing_name" differs from "last_sourcing_name".
|
||||
static int other_sourcing_name(void)
|
||||
{
|
||||
if (sourcing_name != NULL) {
|
||||
@ -560,11 +554,9 @@ static char *get_emsg_lnum(void)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Display name and line number for the source of an error.
|
||||
* Remember the file name and line number, so that for the next error the info
|
||||
* is only displayed if it changed.
|
||||
*/
|
||||
/// Display name and line number for the source of an error.
|
||||
/// Remember the file name and line number, so that for the next error the info
|
||||
/// is only displayed if it changed.
|
||||
void msg_source(int attr)
|
||||
{
|
||||
no_wait_return++;
|
||||
@ -592,12 +584,10 @@ void msg_source(int attr)
|
||||
--no_wait_return;
|
||||
}
|
||||
|
||||
/*
|
||||
* Return TRUE if not giving error messages right now:
|
||||
* If "emsg_off" is set: no error messages at the moment.
|
||||
* If "msg" is in 'debug': do error message but without side effects.
|
||||
* If "emsg_skip" is set: never do error messages.
|
||||
*/
|
||||
/// @return TRUE if not giving error messages right now:
|
||||
/// If "emsg_off" is set: no error messages at the moment.
|
||||
/// If "msg" is in 'debug': do error message but without side effects.
|
||||
/// If "emsg_skip" is set: never do error messages.
|
||||
int emsg_not_now(void)
|
||||
{
|
||||
if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL
|
||||
@ -840,10 +830,11 @@ void msg_schedule_semsg(const char *const fmt, ...)
|
||||
multiqueue_put(main_loop.events, msg_semsg_event, 1, s);
|
||||
}
|
||||
|
||||
// Like msg(), but truncate to a single line if p_shm contains 't', or when
|
||||
// "force" is true. This truncates in another way as for normal messages.
|
||||
// Careful: The string may be changed by msg_may_trunc()!
|
||||
// Returns a pointer to the printed message, if wait_return() not called.
|
||||
/// Like msg(), but truncate to a single line if p_shm contains 't', or when
|
||||
/// "force" is true. This truncates in another way as for normal messages.
|
||||
/// Careful: The string may be changed by msg_may_trunc()!
|
||||
///
|
||||
/// @return a pointer to the printed message, if wait_return() not called.
|
||||
char *msg_trunc_attr(char *s, bool force, int attr)
|
||||
{
|
||||
int n;
|
||||
@ -863,11 +854,11 @@ char *msg_trunc_attr(char *s, bool force, int attr)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Check if message "s" should be truncated at the start (for filenames).
|
||||
* Return a pointer to where the truncated message starts.
|
||||
* Note: May change the message by replacing a character with '<'.
|
||||
*/
|
||||
/// Check if message "s" should be truncated at the start (for filenames).
|
||||
///
|
||||
/// @return a pointer to where the truncated message starts.
|
||||
///
|
||||
/// @note: May change the message by replacing a character with '<'.
|
||||
char_u *msg_may_trunc(bool force, char_u *s)
|
||||
{
|
||||
int room;
|
||||
@ -967,10 +958,9 @@ static void add_msg_hist(const char *s, int len, int attr, bool multiline)
|
||||
msg_hist_len++;
|
||||
}
|
||||
|
||||
/*
|
||||
* Delete the first (oldest) message from the history.
|
||||
* Returns FAIL if there are no messages.
|
||||
*/
|
||||
/// Delete the first (oldest) message from the history.
|
||||
///
|
||||
/// @return FAIL if there are no messages.
|
||||
int delete_first_msg(void)
|
||||
{
|
||||
struct msg_hist *p;
|
||||
@ -1056,10 +1046,8 @@ void ex_messages(void *const eap_p)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Call this after prompting the user. This will avoid a hit-return message
|
||||
* and a delay.
|
||||
*/
|
||||
/// Call this after prompting the user. This will avoid a hit-return message
|
||||
/// and a delay.
|
||||
void msg_end_prompt(void)
|
||||
{
|
||||
msg_ext_clear_later();
|
||||
@ -1073,9 +1061,9 @@ void msg_end_prompt(void)
|
||||
|
||||
/// Wait for the user to hit a key (normally Enter)
|
||||
///
|
||||
/// If 'redraw' is true, redraw the entire screen NOT_VALID
|
||||
/// If 'redraw' is false, do a normal redraw
|
||||
/// If 'redraw' is -1, don't redraw at all
|
||||
/// @param redraw if true, redraw the entire screen NOT_VALID
|
||||
/// if false, do a normal redraw
|
||||
/// if -1, don't redraw at all
|
||||
void wait_return(int redraw)
|
||||
{
|
||||
int c;
|
||||
@ -1265,9 +1253,7 @@ void wait_return(int redraw)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Write the hit-return prompt.
|
||||
*/
|
||||
/// Write the hit-return prompt.
|
||||
static void hit_return_msg(void)
|
||||
{
|
||||
int save_p_more = p_more;
|
||||
@ -1288,9 +1274,7 @@ static void hit_return_msg(void)
|
||||
p_more = save_p_more;
|
||||
}
|
||||
|
||||
/*
|
||||
* Set "keep_msg" to "s". Free the old value and check for NULL pointer.
|
||||
*/
|
||||
/// Set "keep_msg" to "s". Free the old value and check for NULL pointer.
|
||||
void set_keep_msg(char *s, int attr)
|
||||
{
|
||||
xfree(keep_msg);
|
||||
@ -1357,9 +1341,7 @@ void msg_ext_set_kind(const char *msg_kind)
|
||||
msg_ext_kind = msg_kind;
|
||||
}
|
||||
|
||||
/*
|
||||
* Prepare for outputting characters in the command line.
|
||||
*/
|
||||
/// Prepare for outputting characters in the command line.
|
||||
void msg_start(void)
|
||||
{
|
||||
int did_return = false;
|
||||
@ -1406,9 +1388,7 @@ void msg_start(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Note that the current msg position is where messages start.
|
||||
*/
|
||||
/// Note that the current msg position is where messages start.
|
||||
void msg_starthere(void)
|
||||
{
|
||||
lines_left = cmdline_row;
|
||||
@ -1462,12 +1442,11 @@ static void msg_home_replace_attr(char_u *fname, int attr)
|
||||
xfree(name);
|
||||
}
|
||||
|
||||
/*
|
||||
* Output 'len' characters in 'str' (including NULs) with translation
|
||||
* if 'len' is -1, output up to a NUL character.
|
||||
* Use attributes 'attr'.
|
||||
* Return the number of characters it takes on the screen.
|
||||
*/
|
||||
/// Output 'len' characters in 'str' (including NULs) with translation
|
||||
/// if 'len' is -1, output up to a NUL character.
|
||||
/// Use attributes 'attr'.
|
||||
///
|
||||
/// @return the number of characters it takes on the screen.
|
||||
int msg_outtrans(char_u *str)
|
||||
{
|
||||
return msg_outtrans_attr(str, 0);
|
||||
@ -1483,10 +1462,10 @@ int msg_outtrans_len(const char_u *str, int len)
|
||||
return msg_outtrans_len_attr(str, len, 0);
|
||||
}
|
||||
|
||||
/*
|
||||
* Output one character at "p". Return pointer to the next character.
|
||||
* Handles multi-byte characters.
|
||||
*/
|
||||
/// Output one character at "p".
|
||||
/// Handles multi-byte characters.
|
||||
///
|
||||
/// @return pointer to the next character.
|
||||
char_u *msg_outtrans_one(char_u *p, int attr)
|
||||
{
|
||||
int l;
|
||||
@ -1752,9 +1731,7 @@ void str2specialbuf(const char *sp, char *buf, size_t len)
|
||||
*buf = NUL;
|
||||
}
|
||||
|
||||
/*
|
||||
* print line for :print or :list command
|
||||
*/
|
||||
/// print line for :print or :list command
|
||||
void msg_prt_line(char_u *s, int list)
|
||||
{
|
||||
int c;
|
||||
@ -1903,8 +1880,9 @@ void msg_prt_line(char_u *s, int list)
|
||||
msg_clr_eos();
|
||||
}
|
||||
|
||||
// Use grid_puts() to output one multi-byte character.
|
||||
// Return the pointer "s" advanced to the next character.
|
||||
/// Use grid_puts() to output one multi-byte character.
|
||||
///
|
||||
/// @return the pointer "s" advanced to the next character.
|
||||
static char_u *screen_puts_mbyte(char_u *s, int l, int attr)
|
||||
{
|
||||
int cw;
|
||||
@ -1936,10 +1914,8 @@ static char_u *screen_puts_mbyte(char_u *s, int l, int attr)
|
||||
return s + l;
|
||||
}
|
||||
|
||||
/*
|
||||
* Output a string to the screen at position msg_row, msg_col.
|
||||
* Update msg_row and msg_col for the next message.
|
||||
*/
|
||||
/// Output a string to the screen at position msg_row, msg_col.
|
||||
/// Update msg_row and msg_col for the next message.
|
||||
void msg_puts(const char *s)
|
||||
{
|
||||
msg_puts_attr(s, 0);
|
||||
@ -1950,11 +1926,9 @@ void msg_puts_title(const char *s)
|
||||
msg_puts_attr(s, HL_ATTR(HLF_T));
|
||||
}
|
||||
|
||||
/*
|
||||
* Show a message in such a way that it always fits in the line. Cut out a
|
||||
* part in the middle and replace it with "..." when necessary.
|
||||
* Does not handle multi-byte characters!
|
||||
*/
|
||||
/// Show a message in such a way that it always fits in the line. Cut out a
|
||||
/// part in the middle and replace it with "..." when necessary.
|
||||
/// Does not handle multi-byte characters!
|
||||
void msg_outtrans_long_attr(char_u *longstr, int attr)
|
||||
{
|
||||
msg_outtrans_long_len_attr(longstr, (int)STRLEN(longstr), attr);
|
||||
@ -1974,9 +1948,7 @@ void msg_outtrans_long_len_attr(char_u *longstr, int len, int attr)
|
||||
msg_outtrans_len_attr(longstr + len - slen, slen, attr);
|
||||
}
|
||||
|
||||
/*
|
||||
* Basic function for writing a message with highlight attributes.
|
||||
*/
|
||||
/// Basic function for writing a message with highlight attributes.
|
||||
void msg_puts_attr(const char *const s, const int attr)
|
||||
{
|
||||
msg_puts_attr_len(s, -1, attr);
|
||||
@ -2078,10 +2050,8 @@ static void msg_ext_emit_chunk(void)
|
||||
ADD(msg_ext_chunks, ARRAY_OBJ(chunk));
|
||||
}
|
||||
|
||||
/*
|
||||
* The display part of msg_puts_attr_len().
|
||||
* May be called recursively to display scroll-back text.
|
||||
*/
|
||||
/// The display part of msg_puts_attr_len().
|
||||
/// May be called recursively to display scroll-back text.
|
||||
static void msg_puts_display(const char_u *str, int maxlen, int attr, int recurse)
|
||||
{
|
||||
const char_u *s = str;
|
||||
@ -2286,8 +2256,8 @@ static void msg_puts_display(const char_u *str, int maxlen, int attr, int recurs
|
||||
msg_check();
|
||||
}
|
||||
|
||||
/// Return true when ":filter pattern" was used and "msg" does not match
|
||||
/// "pattern".
|
||||
/// @return true when ":filter pattern" was used and "msg" does not match
|
||||
/// "pattern".
|
||||
bool message_filtered(char_u *msg)
|
||||
{
|
||||
if (cmdmod.filter_regmatch.regprog == NULL) {
|
||||
@ -2419,9 +2389,7 @@ void msg_reset_scroll(void)
|
||||
msg_scrolled_at_flush = 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Increment "msg_scrolled".
|
||||
*/
|
||||
/// Increment "msg_scrolled".
|
||||
static void inc_msg_scrolled(void)
|
||||
{
|
||||
if (*get_vim_var_str(VV_SCROLLSTART) == NUL) {
|
||||
@ -2500,9 +2468,7 @@ static void store_sb_text(char_u **sb_str, char_u *s, int attr, int *sb_col, int
|
||||
*sb_col = 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Finished showing messages, clear the scroll-back text on the next message.
|
||||
*/
|
||||
/// Finished showing messages, clear the scroll-back text on the next message.
|
||||
void may_clear_sb_text(void)
|
||||
{
|
||||
do_clear_sb_text = SB_CLEAR_ALL;
|
||||
@ -2545,9 +2511,7 @@ void clear_sb_text(int all)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* "g<" command.
|
||||
*/
|
||||
/// "g<" command.
|
||||
void show_sb_text(void)
|
||||
{
|
||||
msgchunk_T *mp;
|
||||
@ -2563,9 +2527,7 @@ void show_sb_text(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Move to the start of screen line in already displayed text.
|
||||
*/
|
||||
/// Move to the start of screen line in already displayed text.
|
||||
static msgchunk_T *msg_sb_start(msgchunk_T *mps)
|
||||
{
|
||||
msgchunk_T *mp = mps;
|
||||
@ -2576,9 +2538,7 @@ static msgchunk_T *msg_sb_start(msgchunk_T *mps)
|
||||
return mp;
|
||||
}
|
||||
|
||||
/*
|
||||
* Mark the last message chunk as finishing the line.
|
||||
*/
|
||||
/// Mark the last message chunk as finishing the line.
|
||||
void msg_sb_eol(void)
|
||||
{
|
||||
if (last_msgchunk != NULL) {
|
||||
@ -2586,10 +2546,9 @@ void msg_sb_eol(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Display a screen line from previously displayed text at row "row".
|
||||
* Returns a pointer to the text for the next line (can be NULL).
|
||||
*/
|
||||
/// Display a screen line from previously displayed text at row "row".
|
||||
///
|
||||
/// @return a pointer to the text for the next line (can be NULL).
|
||||
static msgchunk_T *disp_sb_line(int row, msgchunk_T *smp)
|
||||
{
|
||||
msgchunk_T *mp = smp;
|
||||
@ -2612,9 +2571,7 @@ static msgchunk_T *disp_sb_line(int row, msgchunk_T *smp)
|
||||
return mp->sb_next;
|
||||
}
|
||||
|
||||
/*
|
||||
* Output any postponed text for msg_puts_attr_len().
|
||||
*/
|
||||
/// Output any postponed text for msg_puts_attr_len().
|
||||
static void t_puts(int *t_col, const char_u *t_s, const char_u *s, int attr)
|
||||
{
|
||||
attr = hl_combine_attr(HL_ATTR(HLF_MSG), attr);
|
||||
@ -2635,9 +2592,9 @@ static void t_puts(int *t_col, const char_u *t_s, const char_u *s, int attr)
|
||||
}
|
||||
}
|
||||
|
||||
// Returns TRUE when messages should be printed to stdout/stderr:
|
||||
// - "batch mode" ("silent mode", -es/-Es)
|
||||
// - no UI and not embedded
|
||||
/// @return TRUE when messages should be printed to stdout/stderr:
|
||||
/// - "batch mode" ("silent mode", -es/-Es)
|
||||
/// - no UI and not embedded
|
||||
int msg_use_printf(void)
|
||||
{
|
||||
return !embedded_mode && !ui_active();
|
||||
@ -2698,13 +2655,12 @@ static void msg_puts_printf(const char *str, const ptrdiff_t maxlen)
|
||||
msg_didout = true; // assume that line is not empty
|
||||
}
|
||||
|
||||
/*
|
||||
* Show the more-prompt and handle the user response.
|
||||
* This takes care of scrolling back and displaying previously displayed text.
|
||||
* When at hit-enter prompt "typed_char" is the already typed character,
|
||||
* otherwise it's NUL.
|
||||
* Returns TRUE when jumping ahead to "confirm_msg_tail".
|
||||
*/
|
||||
/// Show the more-prompt and handle the user response.
|
||||
/// This takes care of scrolling back and displaying previously displayed text.
|
||||
/// When at hit-enter prompt "typed_char" is the already typed character,
|
||||
/// otherwise it's NUL.
|
||||
///
|
||||
/// @return TRUE when jumping ahead to "confirm_msg_tail".
|
||||
static int do_more_prompt(int typed_char)
|
||||
{
|
||||
static bool entered = false;
|
||||
@ -2962,7 +2918,7 @@ void mch_errmsg(char *str)
|
||||
}
|
||||
}
|
||||
|
||||
// Give a message. To be used when the UI is not initialized yet.
|
||||
/// Give a message. To be used when the UI is not initialized yet.
|
||||
void mch_msg(char *str)
|
||||
{
|
||||
assert(str != NULL);
|
||||
@ -2977,10 +2933,8 @@ void mch_msg(char *str)
|
||||
}
|
||||
#endif // WIN32
|
||||
|
||||
/*
|
||||
* Put a character on the screen at the current message position and advance
|
||||
* to the next position. Only for printable ASCII!
|
||||
*/
|
||||
/// Put a character on the screen at the current message position and advance
|
||||
/// to the next position. Only for printable ASCII!
|
||||
static void msg_screen_putchar(int c, int attr)
|
||||
{
|
||||
attr = hl_combine_attr(HL_ATTR(HLF_MSG), attr);
|
||||
@ -3013,10 +2967,8 @@ void msg_moremsg(int full)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
|
||||
* exmode_active.
|
||||
*/
|
||||
/// Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or
|
||||
/// exmode_active.
|
||||
void repeat_message(void)
|
||||
{
|
||||
if (State == ASKMORE) {
|
||||
@ -3041,10 +2993,8 @@ void repeat_message(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Clear from current message position to end of screen.
|
||||
* Skip this when ":silent" was used, no need to clear for redirection.
|
||||
*/
|
||||
/// Clear from current message position to end of screen.
|
||||
/// Skip this when ":silent" was used, no need to clear for redirection.
|
||||
void msg_clr_eos(void)
|
||||
{
|
||||
if (msg_silent == 0) {
|
||||
@ -3052,11 +3002,9 @@ void msg_clr_eos(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Clear from current message position to end of screen.
|
||||
* Note: msg_col is not updated, so we remember the end of the message
|
||||
* for msg_check().
|
||||
*/
|
||||
/// Clear from current message position to end of screen.
|
||||
/// Note: msg_col is not updated, so we remember the end of the message
|
||||
/// for msg_check().
|
||||
void msg_clr_eos_force(void)
|
||||
{
|
||||
if (ui_has(kUIMessages)) {
|
||||
@ -3083,9 +3031,7 @@ void msg_clr_eos_force(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Clear the command line.
|
||||
*/
|
||||
/// Clear the command line.
|
||||
void msg_clr_cmdline(void)
|
||||
{
|
||||
msg_row = cmdline_row;
|
||||
@ -3093,11 +3039,10 @@ void msg_clr_cmdline(void)
|
||||
msg_clr_eos_force();
|
||||
}
|
||||
|
||||
/*
|
||||
* end putting a message on the screen
|
||||
* call wait_return if the message does not fit in the available space
|
||||
* return TRUE if wait_return not called.
|
||||
*/
|
||||
/// end putting a message on the screen
|
||||
/// call wait_return if the message does not fit in the available space
|
||||
///
|
||||
/// @return TRUE if wait_return not called.
|
||||
int msg_end(void)
|
||||
{
|
||||
/*
|
||||
@ -3187,10 +3132,8 @@ bool msg_ext_is_visible(void)
|
||||
return ui_has(kUIMessages) && msg_ext_visible > 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* If the written message runs into the shown command or ruler, we have to
|
||||
* wait for hit-return and redraw the window later.
|
||||
*/
|
||||
/// If the written message runs into the shown command or ruler, we have to
|
||||
/// wait for hit-return and redraw the window later.
|
||||
void msg_check(void)
|
||||
{
|
||||
if (ui_has(kUIMessages)) {
|
||||
@ -3202,10 +3145,9 @@ void msg_check(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* May write a string to the redirection file.
|
||||
* When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes.
|
||||
*/
|
||||
/// May write a string to the redirection file.
|
||||
///
|
||||
/// @param maxlen if -1, write the whole string, otherwise up to "maxlen" bytes.
|
||||
static void redir_write(const char *const str, const ptrdiff_t maxlen)
|
||||
{
|
||||
const char_u *s = (char_u *)str;
|
||||
@ -3290,10 +3232,8 @@ int redirecting(void)
|
||||
|| redir_reg || redir_vname || capture_ga != NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Before giving verbose message.
|
||||
* Must always be called paired with verbose_leave()!
|
||||
*/
|
||||
/// Before giving verbose message.
|
||||
/// Must always be called paired with verbose_leave()!
|
||||
void verbose_enter(void)
|
||||
{
|
||||
if (*p_vfile != NUL) {
|
||||
@ -3301,10 +3241,8 @@ void verbose_enter(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* After giving verbose message.
|
||||
* Must always be called paired with verbose_enter()!
|
||||
*/
|
||||
/// After giving verbose message.
|
||||
/// Must always be called paired with verbose_enter()!
|
||||
void verbose_leave(void)
|
||||
{
|
||||
if (*p_vfile != NUL) {
|
||||
@ -3314,9 +3252,7 @@ void verbose_leave(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Like verbose_enter() and set msg_scroll when displaying the message.
|
||||
*/
|
||||
/// Like verbose_enter() and set msg_scroll when displaying the message.
|
||||
void verbose_enter_scroll(void)
|
||||
{
|
||||
if (*p_vfile != NUL) {
|
||||
@ -3327,9 +3263,7 @@ void verbose_enter_scroll(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Like verbose_leave() and set cmdline_row when displaying the message.
|
||||
*/
|
||||
/// Like verbose_leave() and set cmdline_row when displaying the message.
|
||||
void verbose_leave_scroll(void)
|
||||
{
|
||||
if (*p_vfile != NUL) {
|
||||
@ -3341,9 +3275,7 @@ void verbose_leave_scroll(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Called when 'verbosefile' is set: stop writing to the file.
|
||||
*/
|
||||
/// Called when 'verbosefile' is set: stop writing to the file.
|
||||
void verbose_stop(void)
|
||||
{
|
||||
if (verbose_fd != NULL) {
|
||||
@ -3353,10 +3285,9 @@ void verbose_stop(void)
|
||||
verbose_did_open = FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
* Open the file 'verbosefile'.
|
||||
* Return FAIL or OK.
|
||||
*/
|
||||
/// Open the file 'verbosefile'.
|
||||
///
|
||||
/// @return FAIL or OK.
|
||||
int verbose_open(void)
|
||||
{
|
||||
if (verbose_fd == NULL && !verbose_did_open) {
|
||||
@ -3372,10 +3303,8 @@ int verbose_open(void)
|
||||
return OK;
|
||||
}
|
||||
|
||||
/*
|
||||
* Give a warning message (for searching).
|
||||
* Use 'w' highlighting and may repeat the message after redrawing
|
||||
*/
|
||||
/// Give a warning message (for searching).
|
||||
/// Use 'w' highlighting and may repeat the message after redrawing
|
||||
void give_warning(char_u *message, bool hl) FUNC_ATTR_NONNULL_ARG(1)
|
||||
{
|
||||
// Don't do this for ":silent".
|
||||
@ -3414,9 +3343,7 @@ void give_warning2(char_u *const message, char_u *const a1, bool hl)
|
||||
give_warning(IObuff, hl);
|
||||
}
|
||||
|
||||
/*
|
||||
* Advance msg cursor to column "col".
|
||||
*/
|
||||
/// Advance msg cursor to column "col".
|
||||
void msg_advance(int col)
|
||||
{
|
||||
if (msg_silent != 0) { // nothing to advance to
|
||||
@ -3626,15 +3553,13 @@ static char_u *console_dialog_alloc(const char_u *message, char_u *buttons, bool
|
||||
return xmalloc(lenhotkey);
|
||||
}
|
||||
|
||||
/*
|
||||
* Format the dialog string, and display it at the bottom of
|
||||
* the screen. Return a string of hotkey chars (if defined) for
|
||||
* each 'button'. If a button has no hotkey defined, the first character of
|
||||
* the button is used.
|
||||
* The hotkeys can be multi-byte characters, but without combining chars.
|
||||
*
|
||||
* Returns an allocated string with hotkeys.
|
||||
*/
|
||||
/// Format the dialog string, and display it at the bottom of
|
||||
/// the screen. Return a string of hotkey chars (if defined) for
|
||||
/// each 'button'. If a button has no hotkey defined, the first character of
|
||||
/// the button is used.
|
||||
/// The hotkeys can be multi-byte characters, but without combining chars.
|
||||
///
|
||||
/// @return an allocated string with hotkeys.
|
||||
static char_u *msg_show_console_dialog(char_u *message, char_u *buttons, int dfltbutton)
|
||||
FUNC_ATTR_NONNULL_RET
|
||||
{
|
||||
@ -3727,9 +3652,7 @@ static void copy_hotkeys_and_msg(const char_u *message, char_u *buttons, int def
|
||||
*msgp = NUL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Display the ":confirm" message. Also called when screen resized.
|
||||
*/
|
||||
/// Display the ":confirm" message. Also called when screen resized.
|
||||
void display_confirm_msg(void)
|
||||
{
|
||||
// Avoid that 'q' at the more prompt truncates the message here.
|
||||
|
Loading…
Reference in New Issue
Block a user