Mercurial > vim
annotate src/message.c @ 32586:304341915488 v9.0.1625
patch 9.0.1625: "super" is not considered a reserved name
Commit: https://github.com/vim/vim/commit/ce723f391844695a07d9af02ef60330afd3e158c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jun 10 19:00:12 2023 +0100
patch 9.0.1625: "super" is not considered a reserved name
Problem: "super" is not considered a reserved name.
Solution: Add "super" to the list of reserved names. (closes https://github.com/vim/vim/issues/12515)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 10 Jun 2023 20:15:04 +0200 |
parents | d6055989fa27 |
children | 831290c20fb7 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
10040
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * message.c: functions for displaying messages on the command line | |
12 */ | |
13 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
14 #define MESSAGE_FILE // don't include prototype for smsg() |
7 | 15 |
16 #include "vim.h" | |
17 | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
18 static void add_msg_hist(char_u *s, int len, int attr); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
19 static void hit_return_msg(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
20 static void msg_home_replace_attr(char_u *fname, int attr); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
21 static void msg_puts_attr_len(char *str, int maxlen, int attr); |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
22 static void msg_puts_display(char_u *str, int maxlen, int attr, int recurse); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
23 static void msg_scroll_up(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
24 static void inc_msg_scrolled(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
25 static void store_sb_text(char_u **sb_str, char_u *s, int attr, int *sb_col, int finish); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
26 static void t_puts(int *t_col, char_u *t_s, char_u *s, int attr); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
27 static void msg_puts_printf(char_u *str, int maxlen); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
28 static int do_more_prompt(int typed_char); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
29 static void msg_screen_putchar(int c, int attr); |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
30 static void msg_moremsg(int full); |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
31 static int msg_check_screen(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
32 static void redir_write(char_u *s, int maxlen); |
7 | 33 #ifdef FEAT_CON_DIALOG |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
34 static char_u *msg_show_console_dialog(char_u *message, char_u *buttons, int dfltbutton); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
35 static int confirm_msg_used = FALSE; // displaying confirm_msg |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
36 static char_u *confirm_msg = NULL; // ":confirm" message |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
37 static char_u *confirm_msg_tail; // tail of confirm_msg |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
38 static void display_confirm_msg(void); |
7 | 39 #endif |
31289
4f1e70a709bb
patch 9.0.0978: build errors without the +channel feature
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
40 #ifdef FEAT_EVAL |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
41 static int emsg_to_channel_log = FALSE; |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
42 #endif |
7 | 43 |
44 struct msg_hist | |
45 { | |
46 struct msg_hist *next; | |
47 char_u *msg; | |
48 int attr; | |
49 }; | |
50 | |
51 static struct msg_hist *first_msg_hist = NULL; | |
52 static struct msg_hist *last_msg_hist = NULL; | |
53 static int msg_hist_len = 0; | |
54 | |
3072 | 55 static FILE *verbose_fd = NULL; |
56 static int verbose_did_open = FALSE; | |
57 | |
7 | 58 /* |
59 * When writing messages to the screen, there are many different situations. | |
60 * A number of variables is used to remember the current state: | |
61 * msg_didany TRUE when messages were written since the last time the | |
62 * user reacted to a prompt. | |
63 * Reset: After hitting a key for the hit-return prompt, | |
64 * hitting <CR> for the command line or input(). | |
65 * Set: When any message is written to the screen. | |
66 * msg_didout TRUE when something was written to the current line. | |
67 * Reset: When advancing to the next line, when the current | |
68 * text can be overwritten. | |
69 * Set: When any message is written to the screen. | |
70 * msg_nowait No extra delay for the last drawn message. | |
71 * Used in normal_cmd() before the mode message is drawn. | |
72 * emsg_on_display There was an error message recently. Indicates that there | |
73 * should be a delay before redrawing. | |
74 * msg_scroll The next message should not overwrite the current one. | |
75 * msg_scrolled How many lines the screen has been scrolled (because of | |
76 * messages). Used in update_screen() to scroll the screen | |
77 * back. Incremented each time the screen scrolls a line. | |
78 * msg_scrolled_ign TRUE when msg_scrolled is non-zero and msg_puts_attr() | |
79 * writes something without scrolling should not make | |
80 * need_wait_return to be set. This is a hack to make ":ts" | |
81 * work without an extra prompt. | |
82 * lines_left Number of lines available for messages before the | |
3240 | 83 * more-prompt is to be given. -1 when not set. |
7 | 84 * need_wait_return TRUE when the hit-return prompt is needed. |
85 * Reset: After giving the hit-return prompt, when the user | |
86 * has answered some other prompt. | |
87 * Set: When the ruler or typeahead display is overwritten, | |
88 * scrolling the screen for some message. | |
89 * keep_msg Message to be displayed after redrawing the screen, in | |
90 * main_loop(). | |
91 * This is an allocated string or NULL when not used. | |
92 */ | |
93 | |
94 /* | |
95 * msg(s) - displays the string 's' on the status line | |
96 * When terminal not initialized (yet) mch_errmsg(..) is used. | |
29960
4fcf816aa806
patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
29954
diff
changeset
|
97 * return TRUE if wait_return() not called |
7 | 98 */ |
99 int | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
100 msg(char *s) |
7 | 101 { |
102 return msg_attr_keep(s, 0, FALSE); | |
103 } | |
104 | |
291 | 105 /* |
106 * Like msg() but keep it silent when 'verbosefile' is set. | |
107 */ | |
108 int | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
109 verb_msg(char *s) |
291 | 110 { |
111 int n; | |
112 | |
113 verbose_enter(); | |
114 n = msg_attr_keep(s, 0, FALSE); | |
115 verbose_leave(); | |
116 | |
117 return n; | |
118 } | |
119 | |
7 | 120 int |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
121 msg_attr(char *s, int attr) |
7 | 122 { |
123 return msg_attr_keep(s, attr, FALSE); | |
124 } | |
125 | |
126 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
127 msg_attr_keep( |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
128 char *s, |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
129 int attr, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
130 int keep) // TRUE: set keep_msg if it doesn't scroll |
7 | 131 { |
132 static int entered = 0; | |
133 int retval; | |
134 char_u *buf = NULL; | |
135 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
136 // Skip messages not matching ":filter pattern". |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
137 // Don't filter when there is an error. |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
138 if (!emsg_on_display && message_filtered((char_u *)s)) |
9941
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
139 return TRUE; |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
140 |
7 | 141 #ifdef FEAT_EVAL |
142 if (attr == 0) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
143 set_vim_var_string(VV_STATUSMSG, (char_u *)s, -1); |
7 | 144 #endif |
145 | |
146 /* | |
147 * It is possible that displaying a messages causes a problem (e.g., | |
148 * when redrawing the window), which causes another message, etc.. To | |
149 * break this loop, limit the recursiveness to 3 levels. | |
150 */ | |
151 if (entered >= 3) | |
152 return TRUE; | |
153 ++entered; | |
154 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
155 // Add message to history (unless it's a repeated kept message or a |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
156 // truncated message) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
157 if ((char_u *)s != keep_msg |
7 | 158 || (*s != '<' |
159 && last_msg_hist != NULL | |
160 && last_msg_hist->msg != NULL | |
161 && STRCMP(s, last_msg_hist->msg))) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
162 add_msg_hist((char_u *)s, -1, attr); |
7 | 163 |
31287
fa309d9af73c
patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents:
31277
diff
changeset
|
164 #ifdef FEAT_EVAL |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
165 if (emsg_to_channel_log) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
166 // Write message in the channel log. |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27255
diff
changeset
|
167 ch_log(NULL, "ERROR: %s", s); |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
168 #endif |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
169 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
170 // Truncate the message if needed. |
513 | 171 msg_start(); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
172 buf = msg_strtrunc((char_u *)s, FALSE); |
7 | 173 if (buf != NULL) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
174 s = (char *)buf; |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
175 |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
176 msg_outtrans_attr((char_u *)s, attr); |
7 | 177 msg_clr_eos(); |
178 retval = msg_end(); | |
179 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
180 if (keep && retval && vim_strsize((char_u *)s) |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
181 < (int)(Rows - cmdline_row - 1) * Columns + sc_col) |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
182 set_keep_msg((char_u *)s, 0); |
7 | 183 |
27255
8c43e3d1a6e5
patch 8.2.4156: fileinfo message overwrites echo'ed message
Bram Moolenaar <Bram@vim.org>
parents:
27022
diff
changeset
|
184 need_fileinfo = FALSE; |
8c43e3d1a6e5
patch 8.2.4156: fileinfo message overwrites echo'ed message
Bram Moolenaar <Bram@vim.org>
parents:
27022
diff
changeset
|
185 |
7 | 186 vim_free(buf); |
187 --entered; | |
188 return retval; | |
189 } | |
190 | |
191 /* | |
192 * Truncate a string such that it can be printed without causing a scroll. | |
193 * Returns an allocated string or NULL when no truncating is done. | |
194 */ | |
195 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
196 msg_strtrunc( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
197 char_u *s, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
198 int force) // always truncate |
7 | 199 { |
200 char_u *buf = NULL; | |
201 int len; | |
202 int room; | |
203 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
204 // May truncate message to avoid a hit-return prompt |
513 | 205 if ((!msg_scroll && !need_wait_return && shortmess(SHM_TRUNCALL) |
206 && !exmode_active && msg_silent == 0) || force) | |
7 | 207 { |
208 len = vim_strsize(s); | |
29916
cf55d7e10bb1
patch 9.0.0296: message in popup is shortened unnecessary
Bram Moolenaar <Bram@vim.org>
parents:
29904
diff
changeset
|
209 if (msg_scrolled != 0 |
cf55d7e10bb1
patch 9.0.0296: message in popup is shortened unnecessary
Bram Moolenaar <Bram@vim.org>
parents:
29904
diff
changeset
|
210 #ifdef HAS_MESSAGE_WINDOW |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29982
diff
changeset
|
211 || in_echowindow |
29916
cf55d7e10bb1
patch 9.0.0296: message in popup is shortened unnecessary
Bram Moolenaar <Bram@vim.org>
parents:
29904
diff
changeset
|
212 #endif |
cf55d7e10bb1
patch 9.0.0296: message in popup is shortened unnecessary
Bram Moolenaar <Bram@vim.org>
parents:
29904
diff
changeset
|
213 ) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
214 // Use all the columns. |
513 | 215 room = (int)(Rows - msg_row) * Columns - 1; |
216 else | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
217 // Use up to 'showcmd' column. |
513 | 218 room = (int)(Rows - msg_row - 1) * Columns + sc_col - 1; |
7 | 219 if (len > room && room > 0) |
220 { | |
221 if (enc_utf8) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
222 // may have up to 18 bytes per cell (6 per char, up to two |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
223 // composing chars) |
3277 | 224 len = (room + 2) * 18; |
7 | 225 else if (enc_dbcs == DBCS_JPNU) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
226 // may have up to 2 bytes per cell for euc-jp |
3277 | 227 len = (room + 2) * 2; |
7 | 228 else |
3277 | 229 len = room + 2; |
230 buf = alloc(len); | |
7 | 231 if (buf != NULL) |
3277 | 232 trunc_string(s, buf, room, len); |
7 | 233 } |
234 } | |
235 return buf; | |
236 } | |
237 | |
238 /* | |
239 * Truncate a string "s" to "buf" with cell width "room". | |
240 * "s" and "buf" may be equal. | |
241 */ | |
242 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
243 trunc_string( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
244 char_u *s, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
245 char_u *buf, |
9640
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
246 int room_in, |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
247 int buflen) |
7 | 248 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
249 size_t room = room_in - 3; // "..." takes 3 chars |
9640
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
250 size_t half; |
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
251 size_t len = 0; |
7 | 252 int e; |
253 int i; | |
254 int n; | |
255 | |
23946
0b1f5717dc4d
patch 8.2.2515: memory access error when truncating an empty message
Bram Moolenaar <Bram@vim.org>
parents:
23825
diff
changeset
|
256 if (*s == NUL) |
0b1f5717dc4d
patch 8.2.2515: memory access error when truncating an empty message
Bram Moolenaar <Bram@vim.org>
parents:
23825
diff
changeset
|
257 { |
0b1f5717dc4d
patch 8.2.2515: memory access error when truncating an empty message
Bram Moolenaar <Bram@vim.org>
parents:
23825
diff
changeset
|
258 if (buflen > 0) |
0b1f5717dc4d
patch 8.2.2515: memory access error when truncating an empty message
Bram Moolenaar <Bram@vim.org>
parents:
23825
diff
changeset
|
259 *buf = NUL; |
0b1f5717dc4d
patch 8.2.2515: memory access error when truncating an empty message
Bram Moolenaar <Bram@vim.org>
parents:
23825
diff
changeset
|
260 return; |
0b1f5717dc4d
patch 8.2.2515: memory access error when truncating an empty message
Bram Moolenaar <Bram@vim.org>
parents:
23825
diff
changeset
|
261 } |
0b1f5717dc4d
patch 8.2.2515: memory access error when truncating an empty message
Bram Moolenaar <Bram@vim.org>
parents:
23825
diff
changeset
|
262 |
9640
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
263 if (room_in < 3) |
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
264 room = 0; |
7 | 265 half = room / 2; |
266 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
267 // First part: Start of the string. |
3277 | 268 for (e = 0; len < half && e < buflen; ++e) |
7 | 269 { |
270 if (s[e] == NUL) | |
271 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
272 // text fits without truncating! |
7 | 273 buf[e] = NUL; |
274 return; | |
275 } | |
276 n = ptr2cells(s + e); | |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
277 if (len + n > half) |
7 | 278 break; |
279 len += n; | |
280 buf[e] = s[e]; | |
281 if (has_mbyte) | |
474 | 282 for (n = (*mb_ptr2len)(s + e); --n > 0; ) |
7 | 283 { |
3277 | 284 if (++e == buflen) |
285 break; | |
7 | 286 buf[e] = s[e]; |
287 } | |
288 } | |
289 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
290 // Last part: End of the string. |
7 | 291 i = e; |
292 if (enc_dbcs != 0) | |
293 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
294 // For DBCS going backwards in a string is slow, but |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
295 // computing the cell width isn't too slow: go forward |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
296 // until the rest fits. |
7 | 297 n = vim_strsize(s + i); |
298 while (len + n > room) | |
299 { | |
300 n -= ptr2cells(s + i); | |
474 | 301 i += (*mb_ptr2len)(s + i); |
7 | 302 } |
303 } | |
304 else if (enc_utf8) | |
305 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
306 // For UTF-8 we can go backwards easily. |
714 | 307 half = i = (int)STRLEN(s); |
7 | 308 for (;;) |
309 { | |
714 | 310 do |
11269
121d29004998
patch 8.0.0520: using a function pointer while the function is known
Christian Brabandt <cb@256bit.org>
parents:
11163
diff
changeset
|
311 half = half - utf_head_off(s, s + half - 1) - 1; |
9581
716382aaa0c0
commit https://github.com/vim/vim/commit/b9644433d2728e99fab874e5e33147ad95d23a31
Christian Brabandt <cb@256bit.org>
parents:
9542
diff
changeset
|
312 while (half > 0 && utf_iscomposing(utf_ptr2char(s + half))); |
7 | 313 n = ptr2cells(s + half); |
9581
716382aaa0c0
commit https://github.com/vim/vim/commit/b9644433d2728e99fab874e5e33147ad95d23a31
Christian Brabandt <cb@256bit.org>
parents:
9542
diff
changeset
|
314 if (len + n > room || half == 0) |
7 | 315 break; |
316 len += n; | |
9698
a1b1405a33ca
commit https://github.com/vim/vim/commit/a5c0cc11330157c721748e317e8ff54b649610ca
Christian Brabandt <cb@256bit.org>
parents:
9640
diff
changeset
|
317 i = (int)half; |
7 | 318 } |
319 } | |
320 else | |
321 { | |
18999
6fb11e7fb9cd
patch 8.2.0060: message test only runs with one encoding
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
322 for (i = (int)STRLEN(s); |
6fb11e7fb9cd
patch 8.2.0060: message test only runs with one encoding
Bram Moolenaar <Bram@vim.org>
parents:
18991
diff
changeset
|
323 i - 1 >= 0 && len + (n = ptr2cells(s + i - 1)) <= room; --i) |
7 | 324 len += n; |
325 } | |
326 | |
9538
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
327 |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
328 if (i <= e + 3) |
3277 | 329 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
330 // text fits without truncating |
9538
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
331 if (s != buf) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
332 { |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
333 len = STRLEN(s); |
9640
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
334 if (len >= (size_t)buflen) |
9538
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
335 len = buflen - 1; |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
336 len = len - e + 1; |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
337 if (len < 1) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
338 buf[e - 1] = NUL; |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
339 else |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
340 mch_memmove(buf + e, s + e, len); |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
341 } |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
342 } |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
343 else if (e + 3 < buflen) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
344 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
345 // set the middle and copy the last part |
3277 | 346 mch_memmove(buf + e, "...", (size_t)3); |
9640
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
347 len = STRLEN(s + i) + 1; |
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
348 if (len >= (size_t)buflen - e - 3) |
3277 | 349 len = buflen - e - 3 - 1; |
350 mch_memmove(buf + e + 3, s + i, len); | |
351 buf[e + 3 + len - 1] = NUL; | |
352 } | |
353 else | |
354 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
355 // can't fit in the "...", just truncate it |
9538
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
356 buf[e - 1] = NUL; |
3277 | 357 } |
7 | 358 } |
359 | |
360 /* | |
361 * Automatic prototype generation does not understand this function. | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
362 * Note: Caller of smsg() and smsg_attr() must check the resulting string is |
7 | 363 * shorter than IOSIZE!!! |
364 */ | |
365 #ifndef PROTO | |
366 | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
367 int vim_snprintf(char *str, size_t str_m, const char *fmt, ...); |
272 | 368 |
7 | 369 int |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
370 smsg(const char *s, ...) |
7 | 371 { |
18309
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
372 if (IObuff == NULL) |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
373 { |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
374 // Very early in initialisation and already something wrong, just |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
375 // give the raw message so the user at least gets a hint. |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
376 return msg((char *)s); |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
377 } |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
378 |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
379 va_list arglist; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
380 |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
381 va_start(arglist, s); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
382 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
383 va_end(arglist); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
384 return msg((char *)IObuff); |
7 | 385 } |
386 | |
387 int | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
388 smsg_attr(int attr, const char *s, ...) |
7 | 389 { |
18309
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
390 if (IObuff == NULL) |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
391 { |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
392 // Very early in initialisation and already something wrong, just |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
393 // give the raw message so the user at least gets a hint. |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
394 return msg_attr((char *)s, attr); |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
395 } |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
396 |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
397 va_list arglist; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
398 |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
399 va_start(arglist, s); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
400 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
401 va_end(arglist); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
402 return msg_attr((char *)IObuff, attr); |
7 | 403 } |
404 | |
14237
487d7bda80ea
patch 8.1.0135: undo message delays screen update for CTRL-O u
Christian Brabandt <cb@256bit.org>
parents:
14210
diff
changeset
|
405 int |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
406 smsg_attr_keep(int attr, const char *s, ...) |
14237
487d7bda80ea
patch 8.1.0135: undo message delays screen update for CTRL-O u
Christian Brabandt <cb@256bit.org>
parents:
14210
diff
changeset
|
407 { |
18309
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
408 if (IObuff == NULL) |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
409 { |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
410 // Very early in initialisation and already something wrong, just |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
411 // give the raw message so the user at least gets a hint. |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
412 return msg_attr_keep((char *)s, attr, TRUE); |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
413 } |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
414 |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
415 va_list arglist; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
416 |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
417 va_start(arglist, s); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
418 vim_vsnprintf((char *)IObuff, IOSIZE, s, arglist); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
419 va_end(arglist); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
420 return msg_attr_keep((char *)IObuff, attr, TRUE); |
14237
487d7bda80ea
patch 8.1.0135: undo message delays screen update for CTRL-O u
Christian Brabandt <cb@256bit.org>
parents:
14210
diff
changeset
|
421 } |
487d7bda80ea
patch 8.1.0135: undo message delays screen update for CTRL-O u
Christian Brabandt <cb@256bit.org>
parents:
14210
diff
changeset
|
422 |
7 | 423 #endif |
424 | |
425 /* | |
426 * Remember the last sourcing name/lnum used in an error message, so that it | |
427 * isn't printed each time when it didn't change. | |
428 */ | |
429 static int last_sourcing_lnum = 0; | |
430 static char_u *last_sourcing_name = NULL; | |
431 | |
432 /* | |
433 * Reset the last used sourcing name/lnum. Makes sure it is displayed again | |
434 * for the next error message; | |
435 */ | |
360 | 436 void |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
437 reset_last_sourcing(void) |
7 | 438 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13188
diff
changeset
|
439 VIM_CLEAR(last_sourcing_name); |
7 | 440 last_sourcing_lnum = 0; |
441 } | |
442 | |
443 /* | |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
444 * Return TRUE if "SOURCING_NAME" differs from "last_sourcing_name". |
16 | 445 */ |
446 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
447 other_sourcing_name(void) |
16 | 448 { |
26284
ae947ebb4038
patch 8.2.3673: crash when allocating signal stack fails
Bram Moolenaar <Bram@vim.org>
parents:
25778
diff
changeset
|
449 if (HAVE_SOURCING_INFO && SOURCING_NAME != NULL) |
16 | 450 { |
451 if (last_sourcing_name != NULL) | |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
452 return STRCMP(SOURCING_NAME, last_sourcing_name) != 0; |
16 | 453 return TRUE; |
454 } | |
455 return FALSE; | |
456 } | |
457 | |
458 /* | |
7 | 459 * Get the message about the source, as used for an error message. |
460 * Returns an allocated string with room for one more character. | |
461 * Returns NULL when no message is to be given. | |
462 */ | |
463 static char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
464 get_emsg_source(void) |
7 | 465 { |
466 char_u *Buf, *p; | |
467 | |
26284
ae947ebb4038
patch 8.2.3673: crash when allocating signal stack fails
Bram Moolenaar <Bram@vim.org>
parents:
25778
diff
changeset
|
468 if (HAVE_SOURCING_INFO && SOURCING_NAME != NULL && other_sourcing_name()) |
7 | 469 { |
22208
a607f02fd17a
patch 8.2.1653: expand('<stack>') does not include the final line number
Bram Moolenaar <Bram@vim.org>
parents:
22163
diff
changeset
|
470 char_u *sname = estack_sfile(ESTACK_NONE); |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
471 char_u *tofree = sname; |
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
472 |
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
473 if (sname == NULL) |
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
474 sname = SOURCING_NAME; |
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
475 |
22584
c271498e03b2
patch 8.2.1840: Vim9: error message is not clear about compilation error
Bram Moolenaar <Bram@vim.org>
parents:
22208
diff
changeset
|
476 #ifdef FEAT_EVAL |
c271498e03b2
patch 8.2.1840: Vim9: error message is not clear about compilation error
Bram Moolenaar <Bram@vim.org>
parents:
22208
diff
changeset
|
477 if (estack_compiling) |
c271498e03b2
patch 8.2.1840: Vim9: error message is not clear about compilation error
Bram Moolenaar <Bram@vim.org>
parents:
22208
diff
changeset
|
478 p = (char_u *)_("Error detected while compiling %s:"); |
c271498e03b2
patch 8.2.1840: Vim9: error message is not clear about compilation error
Bram Moolenaar <Bram@vim.org>
parents:
22208
diff
changeset
|
479 else |
c271498e03b2
patch 8.2.1840: Vim9: error message is not clear about compilation error
Bram Moolenaar <Bram@vim.org>
parents:
22208
diff
changeset
|
480 #endif |
c271498e03b2
patch 8.2.1840: Vim9: error message is not clear about compilation error
Bram Moolenaar <Bram@vim.org>
parents:
22208
diff
changeset
|
481 p = (char_u *)_("Error detected while processing %s:"); |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
482 Buf = alloc(STRLEN(sname) + STRLEN(p)); |
7 | 483 if (Buf != NULL) |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
484 sprintf((char *)Buf, (char *)p, sname); |
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
485 vim_free(tofree); |
7 | 486 return Buf; |
487 } | |
488 return NULL; | |
489 } | |
490 | |
491 /* | |
492 * Get the message about the source lnum, as used for an error message. | |
493 * Returns an allocated string with room for one more character. | |
494 * Returns NULL when no message is to be given. | |
495 */ | |
496 static char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
497 get_emsg_lnum(void) |
7 | 498 { |
499 char_u *Buf, *p; | |
500 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
501 // lnum is 0 when executing a command from the command line |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
502 // argument, we don't want a line number then |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
503 if (SOURCING_NAME != NULL |
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
504 && (other_sourcing_name() || SOURCING_LNUM != last_sourcing_lnum) |
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
505 && SOURCING_LNUM != 0) |
7 | 506 { |
507 p = (char_u *)_("line %4ld:"); | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
508 Buf = alloc(STRLEN(p) + 20); |
7 | 509 if (Buf != NULL) |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
510 sprintf((char *)Buf, (char *)p, (long)SOURCING_LNUM); |
7 | 511 return Buf; |
512 } | |
513 return NULL; | |
514 } | |
515 | |
516 /* | |
16 | 517 * Display name and line number for the source of an error. |
518 * Remember the file name and line number, so that for the next error the info | |
519 * is only displayed if it changed. | |
520 */ | |
521 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
522 msg_source(int attr) |
16 | 523 { |
524 char_u *p; | |
26288
8e0cbe0d84ec
patch 8.2.3675: using freed memory when vim_strsave() fails
Bram Moolenaar <Bram@vim.org>
parents:
26284
diff
changeset
|
525 static int recursive = FALSE; |
8e0cbe0d84ec
patch 8.2.3675: using freed memory when vim_strsave() fails
Bram Moolenaar <Bram@vim.org>
parents:
26284
diff
changeset
|
526 |
8e0cbe0d84ec
patch 8.2.3675: using freed memory when vim_strsave() fails
Bram Moolenaar <Bram@vim.org>
parents:
26284
diff
changeset
|
527 // Bail out if something called here causes an error. |
8e0cbe0d84ec
patch 8.2.3675: using freed memory when vim_strsave() fails
Bram Moolenaar <Bram@vim.org>
parents:
26284
diff
changeset
|
528 if (recursive) |
8e0cbe0d84ec
patch 8.2.3675: using freed memory when vim_strsave() fails
Bram Moolenaar <Bram@vim.org>
parents:
26284
diff
changeset
|
529 return; |
8e0cbe0d84ec
patch 8.2.3675: using freed memory when vim_strsave() fails
Bram Moolenaar <Bram@vim.org>
parents:
26284
diff
changeset
|
530 recursive = TRUE; |
16 | 531 |
532 ++no_wait_return; | |
533 p = get_emsg_source(); | |
534 if (p != NULL) | |
535 { | |
30351
c8c7adcf2ddc
patch 9.0.0511: unnecessary scrolling for message of only one line
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
536 msg_scroll = TRUE; // this will take more than one line |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
537 msg_attr((char *)p, attr); |
16 | 538 vim_free(p); |
539 } | |
540 p = get_emsg_lnum(); | |
541 if (p != NULL) | |
542 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
543 msg_attr((char *)p, HL_ATTR(HLF_N)); |
16 | 544 vim_free(p); |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
545 last_sourcing_lnum = SOURCING_LNUM; // only once for each line |
16 | 546 } |
547 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
548 // remember the last sourcing name printed, also when it's empty |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
549 if (SOURCING_NAME == NULL || other_sourcing_name()) |
16 | 550 { |
26288
8e0cbe0d84ec
patch 8.2.3675: using freed memory when vim_strsave() fails
Bram Moolenaar <Bram@vim.org>
parents:
26284
diff
changeset
|
551 VIM_CLEAR(last_sourcing_name); |
8e0cbe0d84ec
patch 8.2.3675: using freed memory when vim_strsave() fails
Bram Moolenaar <Bram@vim.org>
parents:
26284
diff
changeset
|
552 if (SOURCING_NAME != NULL) |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
553 last_sourcing_name = vim_strsave(SOURCING_NAME); |
16 | 554 } |
555 --no_wait_return; | |
26288
8e0cbe0d84ec
patch 8.2.3675: using freed memory when vim_strsave() fails
Bram Moolenaar <Bram@vim.org>
parents:
26284
diff
changeset
|
556 |
8e0cbe0d84ec
patch 8.2.3675: using freed memory when vim_strsave() fails
Bram Moolenaar <Bram@vim.org>
parents:
26284
diff
changeset
|
557 recursive = FALSE; |
16 | 558 } |
559 | |
560 /* | |
840 | 561 * Return TRUE if not giving error messages right now: |
562 * If "emsg_off" is set: no error messages at the moment. | |
563 * If "msg" is in 'debug': do error message but without side effects. | |
564 * If "emsg_skip" is set: never do error messages. | |
565 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
566 static int |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
567 emsg_not_now(void) |
840 | 568 { |
569 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL | |
570 && vim_strchr(p_debug, 't') == NULL) | |
571 #ifdef FEAT_EVAL | |
572 || emsg_skip > 0 | |
573 #endif | |
574 ) | |
575 return TRUE; | |
576 return FALSE; | |
577 } | |
578 | |
11016
4e7308525fe7
patch 8.0.0397: can't build with +viminfo but without +eval
Christian Brabandt <cb@256bit.org>
parents:
11012
diff
changeset
|
579 #if defined(FEAT_EVAL) || defined(PROTO) |
11006
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
580 static garray_T ignore_error_list = GA_EMPTY; |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
581 |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
582 void |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
583 ignore_error_for_testing(char_u *error) |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
584 { |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
585 if (ignore_error_list.ga_itemsize == 0) |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
586 ga_init2(&ignore_error_list, sizeof(char_u *), 1); |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
587 |
15219
dada0b389d4f
patch 8.1.0619: :echomsg and :echoerr do not handle List and Dict
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
588 if (STRCMP("RESET", error) == 0) |
dada0b389d4f
patch 8.1.0619: :echomsg and :echoerr do not handle List and Dict
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
589 ga_clear_strings(&ignore_error_list); |
dada0b389d4f
patch 8.1.0619: :echomsg and :echoerr do not handle List and Dict
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
590 else |
27022
eebbcc83fb75
patch 8.2.4040: keeping track of allocated lines is too complicated
Bram Moolenaar <Bram@vim.org>
parents:
27018
diff
changeset
|
591 ga_copy_string(&ignore_error_list, error); |
11006
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
592 } |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
593 |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
594 static int |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
595 ignore_error(const char *msg) |
11006
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
596 { |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
597 int i; |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
598 |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
599 for (i = 0; i < ignore_error_list.ga_len; ++i) |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
600 if (strstr(msg, |
11006
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
601 (char *)((char_u **)(ignore_error_list.ga_data))[i]) != NULL) |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
602 return TRUE; |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
603 return FALSE; |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
604 } |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
605 #endif |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
606 |
9605
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
607 #if !defined(HAVE_STRERROR) || defined(PROTO) |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
608 /* |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
609 * Replacement for perror() that behaves more or less like emsg() was called. |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18931
diff
changeset
|
610 * v:errmsg will be set and called_emsg will be incremented. |
9605
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
611 */ |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
612 void |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
613 do_perror(char *msg) |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
614 { |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
615 perror(msg); |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
616 ++emsg_silent; |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
617 emsg(msg); |
9605
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
618 --emsg_silent; |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
619 } |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
620 #endif |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
621 |
840 | 622 /* |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
623 * emsg_core() - display an error message |
7 | 624 * |
625 * Rings the bell, if appropriate, and calls message() to do the real work | |
626 * When terminal not initialized (yet) mch_errmsg(..) is used. | |
627 * | |
29960
4fcf816aa806
patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
29954
diff
changeset
|
628 * Return TRUE if wait_return() not called. |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
629 * Note: caller must check 'emsg_not_now()' before calling this. |
7 | 630 */ |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
631 static int |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
632 emsg_core(const char *s) |
7 | 633 { |
634 int attr; | |
635 char_u *p; | |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
636 int r; |
7 | 637 #ifdef FEAT_EVAL |
638 int ignore = FALSE; | |
639 int severe; | |
640 #endif | |
641 | |
11006
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
642 #ifdef FEAT_EVAL |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
643 // When testing some errors are turned into a normal message. |
11006
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
644 if (ignore_error(s)) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
645 // don't call msg() if it results in a dialog |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
646 return msg_use_printf() ? FALSE : msg((char *)s); |
11006
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
647 #endif |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
648 |
18949
5c405689da3e
patch 8.2.0035: saving and restoring called_emsg is clumsy
Bram Moolenaar <Bram@vim.org>
parents:
18931
diff
changeset
|
649 ++called_emsg; |
7 | 650 |
651 #ifdef FEAT_EVAL | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
652 // If "emsg_severe" is TRUE: When an error exception is to be thrown, |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
653 // prefer this message over previous messages for the same command. |
7 | 654 severe = emsg_severe; |
655 emsg_severe = FALSE; | |
656 #endif | |
657 | |
839 | 658 if (!emsg_off || vim_strchr(p_debug, 't') != NULL) |
7 | 659 { |
660 #ifdef FEAT_EVAL | |
661 /* | |
662 * Cause a throw of an error exception if appropriate. Don't display | |
663 * the error message in this case. (If no matching catch clause will | |
664 * be found, the message will be displayed later on.) "ignore" is set | |
665 * when the message should be ignored completely (used for the | |
666 * interrupt message). | |
667 */ | |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
668 if (cause_errthrow((char_u *)s, severe, &ignore) == TRUE) |
7 | 669 { |
670 if (!ignore) | |
15079
a527110d5f56
patch 8.1.0550: expression evaluation may repeat an error message
Bram Moolenaar <Bram@vim.org>
parents:
14909
diff
changeset
|
671 ++did_emsg; |
7 | 672 return TRUE; |
673 } | |
674 | |
22742
f7f2d73ff85e
patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
675 if (in_assert_fails && emsg_assert_fails_msg == NULL) |
21859
3e5d0832a2e7
patch 8.2.1479: Vim9: error for list index uses wrong line number
Bram Moolenaar <Bram@vim.org>
parents:
21493
diff
changeset
|
676 { |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
677 emsg_assert_fails_msg = vim_strsave((char_u *)s); |
21859
3e5d0832a2e7
patch 8.2.1479: Vim9: error for list index uses wrong line number
Bram Moolenaar <Bram@vim.org>
parents:
21493
diff
changeset
|
678 emsg_assert_fails_lnum = SOURCING_LNUM; |
22163
b6d36f0b4f03
patch 8.2.1631: test_fails() does not check the context of the line number
Bram Moolenaar <Bram@vim.org>
parents:
21859
diff
changeset
|
679 vim_free(emsg_assert_fails_context); |
b6d36f0b4f03
patch 8.2.1631: test_fails() does not check the context of the line number
Bram Moolenaar <Bram@vim.org>
parents:
21859
diff
changeset
|
680 emsg_assert_fails_context = vim_strsave( |
b6d36f0b4f03
patch 8.2.1631: test_fails() does not check the context of the line number
Bram Moolenaar <Bram@vim.org>
parents:
21859
diff
changeset
|
681 SOURCING_NAME == NULL ? (char_u *)"" : SOURCING_NAME); |
21859
3e5d0832a2e7
patch 8.2.1479: Vim9: error for list index uses wrong line number
Bram Moolenaar <Bram@vim.org>
parents:
21493
diff
changeset
|
682 } |
21265
6a4806e326dd
patch 8.2.1183: assert_fails() checks the last error message
Bram Moolenaar <Bram@vim.org>
parents:
21192
diff
changeset
|
683 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
684 // set "v:errmsg", also when using ":silent! cmd" |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
685 set_vim_var_string(VV_ERRMSG, (char_u *)s, -1); |
7 | 686 #endif |
687 | |
688 /* | |
1619 | 689 * When using ":silent! cmd" ignore error messages. |
7 | 690 * But do write it to the redirection file. |
691 */ | |
692 if (emsg_silent != 0) | |
693 { | |
24406
a26f0fa12845
patch 8.2.2743: Vim9: function state stuck when compiling with ":silent!"
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
694 #ifdef FEAT_EVAL |
a26f0fa12845
patch 8.2.2743: Vim9: function state stuck when compiling with ":silent!"
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
695 ++did_emsg_silent; |
a26f0fa12845
patch 8.2.2743: Vim9: function state stuck when compiling with ":silent!"
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
696 #endif |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
697 if (emsg_noredir == 0) |
7 | 698 { |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
699 msg_start(); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
700 p = get_emsg_source(); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
701 if (p != NULL) |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
702 { |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
703 STRCAT(p, "\n"); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
704 redir_write(p, -1); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
705 vim_free(p); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
706 } |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
707 p = get_emsg_lnum(); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
708 if (p != NULL) |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
709 { |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
710 STRCAT(p, "\n"); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
711 redir_write(p, -1); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
712 vim_free(p); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
713 } |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
714 redir_write((char_u *)s, -1); |
7 | 715 } |
23102
3239b0f3c592
patch 8.2.2097: Vim9: using :silent! when calling a function prevents abort
Bram Moolenaar <Bram@vim.org>
parents:
23090
diff
changeset
|
716 #ifdef FEAT_EVAL |
3239b0f3c592
patch 8.2.2097: Vim9: using :silent! when calling a function prevents abort
Bram Moolenaar <Bram@vim.org>
parents:
23090
diff
changeset
|
717 // Only increment did_emsg_def when :silent! wasn't used inside the |
3239b0f3c592
patch 8.2.2097: Vim9: using :silent! when calling a function prevents abort
Bram Moolenaar <Bram@vim.org>
parents:
23090
diff
changeset
|
718 // :def function. |
3239b0f3c592
patch 8.2.2097: Vim9: using :silent! when calling a function prevents abort
Bram Moolenaar <Bram@vim.org>
parents:
23090
diff
changeset
|
719 if (emsg_silent == emsg_silent_def) |
3239b0f3c592
patch 8.2.2097: Vim9: using :silent! when calling a function prevents abort
Bram Moolenaar <Bram@vim.org>
parents:
23090
diff
changeset
|
720 ++did_emsg_def; |
3239b0f3c592
patch 8.2.2097: Vim9: using :silent! when calling a function prevents abort
Bram Moolenaar <Bram@vim.org>
parents:
23090
diff
changeset
|
721 #endif |
31287
fa309d9af73c
patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents:
31277
diff
changeset
|
722 #ifdef FEAT_EVAL |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
723 ch_log(NULL, "ERROR silent: %s", s); |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
724 #endif |
7 | 725 return TRUE; |
726 } | |
727 | |
10589
b0c9c1a05054
patch 8.0.0184: when an error is caught Vim still exits with non-zero result
Christian Brabandt <cb@256bit.org>
parents:
10426
diff
changeset
|
728 ex_exitval = 1; |
b0c9c1a05054
patch 8.0.0184: when an error is caught Vim still exits with non-zero result
Christian Brabandt <cb@256bit.org>
parents:
10426
diff
changeset
|
729 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
730 // Reset msg_silent, an error causes messages to be switched back on. |
7 | 731 msg_silent = 0; |
732 cmd_silent = FALSE; | |
733 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
734 if (global_busy) // break :global command |
7 | 735 ++global_busy; |
736 | |
737 if (p_eb) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
738 beep_flush(); // also includes flush_buffers() |
7 | 739 else |
14909
c97b4b537572
patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
740 flush_buffers(FLUSH_MINIMAL); // flush internal buffers |
15079
a527110d5f56
patch 8.1.0550: expression evaluation may repeat an error message
Bram Moolenaar <Bram@vim.org>
parents:
14909
diff
changeset
|
741 ++did_emsg; // flag for DoOneCmd() |
12375
ab0d827151a1
patch 8.0.1067: try/catch in timer does not prevent it from being stopped
Christian Brabandt <cb@256bit.org>
parents:
12152
diff
changeset
|
742 #ifdef FEAT_EVAL |
25609
f8bcd21e6e24
patch 8.2.3341: Vim9: function call aborted despite try/catch
Bram Moolenaar <Bram@vim.org>
parents:
25567
diff
changeset
|
743 ++uncaught_emsg; |
12375
ab0d827151a1
patch 8.0.1067: try/catch in timer does not prevent it from being stopped
Christian Brabandt <cb@256bit.org>
parents:
12152
diff
changeset
|
744 #endif |
7 | 745 } |
746 | |
29926
2be5a2741943
patch 9.0.0301: the message window popup is delayed after an error message
Bram Moolenaar <Bram@vim.org>
parents:
29920
diff
changeset
|
747 #ifdef HAS_MESSAGE_WINDOW |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29982
diff
changeset
|
748 if (!in_echowindow) |
29926
2be5a2741943
patch 9.0.0301: the message window popup is delayed after an error message
Bram Moolenaar <Bram@vim.org>
parents:
29920
diff
changeset
|
749 #endif |
2be5a2741943
patch 9.0.0301: the message window popup is delayed after an error message
Bram Moolenaar <Bram@vim.org>
parents:
29920
diff
changeset
|
750 emsg_on_display = TRUE; // remember there is an error message |
2be5a2741943
patch 9.0.0301: the message window popup is delayed after an error message
Bram Moolenaar <Bram@vim.org>
parents:
29920
diff
changeset
|
751 |
2be5a2741943
patch 9.0.0301: the message window popup is delayed after an error message
Bram Moolenaar <Bram@vim.org>
parents:
29920
diff
changeset
|
752 attr = HL_ATTR(HLF_E); // set highlight mode for error messages |
539 | 753 if (msg_scrolled != 0) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
754 need_wait_return = TRUE; // needed in case emsg() is called after |
29960
4fcf816aa806
patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
29954
diff
changeset
|
755 // wait_return() has reset need_wait_return |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
756 // and a redraw is expected because |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
757 // msg_scrolled is non-zero |
7 | 758 |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
759 #ifdef FEAT_JOB_CHANNEL |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
760 emsg_to_channel_log = TRUE; |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
761 #endif |
7 | 762 /* |
763 * Display name and line number for the source of the error. | |
764 */ | |
30351
c8c7adcf2ddc
patch 9.0.0511: unnecessary scrolling for message of only one line
Bram Moolenaar <Bram@vim.org>
parents:
30226
diff
changeset
|
765 msg_scroll = TRUE; |
16 | 766 msg_source(attr); |
7 | 767 |
768 /* | |
769 * Display the error message itself. | |
770 */ | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
771 msg_nowait = FALSE; // wait for this msg |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
772 r = msg_attr((char *)s, attr); |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
773 |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
774 #ifdef FEAT_JOB_CHANNEL |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
775 emsg_to_channel_log = FALSE; |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
776 #endif |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
777 return r; |
7 | 778 } |
779 | |
780 /* | |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
781 * Print error message "s". Should already be translated. |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
782 * Return TRUE if wait_return() not called. |
7 | 783 */ |
784 int | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
785 emsg(char *s) |
7 | 786 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
787 // Skip this if not giving error messages at the moment. |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
788 if (emsg_not_now()) |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
789 return TRUE; |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
790 |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
791 return emsg_core(s); |
7 | 792 } |
793 | |
15896
ac080f6a4db8
patch 8.1.0954: arguments of semsg() and siemsg() are not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
794 #ifndef PROTO // manual proto with __attribute__ |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
795 /* |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
796 * Print error message "s" with format string and variable arguments. |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
797 * "s" should already be translated. |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
798 * Note: caller must not use "IObuff" for "s"! |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
799 * Return TRUE if wait_return() not called. |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
800 */ |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
801 int |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
802 semsg(const char *s, ...) |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
803 { |
18309
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
804 // Skip this if not giving error messages at the moment. |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
805 if (emsg_not_now()) |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
806 return TRUE; |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
807 |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
808 if (IObuff == NULL) |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
809 // Very early in initialisation and already something wrong, just |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
810 // give the raw message so the user at least gets a hint. |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
811 return emsg_core(s); |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
812 |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
813 va_list ap; |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
814 |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
815 va_start(ap, s); |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
816 vim_vsnprintf((char *)IObuff, IOSIZE, s, ap); |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
817 va_end(ap); |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
818 return emsg_core((char *)IObuff); |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
819 } |
15896
ac080f6a4db8
patch 8.1.0954: arguments of semsg() and siemsg() are not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
820 #endif |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
821 |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
822 /* |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
823 * Same as emsg(...), but abort on error when ABORT_ON_INTERNAL_ERROR is |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
824 * defined. It is used for internal errors only, so that they can be |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
825 * detected when fuzzing vim. |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
826 */ |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
827 void |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
828 iemsg(char *s) |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
829 { |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
830 if (emsg_not_now()) |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
831 return; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
832 |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
833 // Give a generic error which is translated. The error itself may not be |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
834 // translated, it almost never shows. |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
835 emsg_core(_(e_internal_error_please_report_a_bug)); |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
836 |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
837 emsg_core(s); |
26869
659e30d7eeb7
patch 8.2.3963: build failure with tiny and small features
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
838 #if defined(ABORT_ON_INTERNAL_ERROR) && defined(FEAT_EVAL) |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
839 set_vim_var_string(VV_ERRMSG, (char_u *)s, -1); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
840 msg_putchar('\n'); // avoid overwriting the error message |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
841 out_flush(); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
842 abort(); |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
843 #endif |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
844 } |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
845 |
15896
ac080f6a4db8
patch 8.1.0954: arguments of semsg() and siemsg() are not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
846 #ifndef PROTO // manual proto with __attribute__ |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
847 /* |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
848 * Same as semsg(...) but abort on error when ABORT_ON_INTERNAL_ERROR is |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
849 * defined. It is used for internal errors only, so that they can be |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
850 * detected when fuzzing vim. |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
851 * Note: caller must not pass 'IObuff' as 1st argument. |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
852 */ |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
853 void |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
854 siemsg(const char *s, ...) |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
855 { |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
856 if (emsg_not_now()) |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
857 return; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
858 |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
859 // Give a generic error which is translated. The error itself may not be |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
860 // translated, it almost never shows. |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
861 emsg_core(_(e_internal_error_please_report_a_bug)); |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
862 |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
863 if (IObuff == NULL) |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
864 { |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
865 // Very early in initialisation and already something wrong, just |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
866 // give the raw message so the user at least gets a hint. |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
867 emsg_core(s); |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
868 } |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
869 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15219
diff
changeset
|
870 { |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
871 va_list ap; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
872 |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
873 va_start(ap, s); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
874 vim_vsnprintf((char *)IObuff, IOSIZE, s, ap); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
875 va_end(ap); |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
876 emsg_core((char *)IObuff); |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
877 } |
29775
455e7588b979
patch 9.0.0227: cannot read error message when abort() is called
Bram Moolenaar <Bram@vim.org>
parents:
29734
diff
changeset
|
878 # ifdef ABORT_ON_INTERNAL_ERROR |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
879 msg_putchar('\n'); // avoid overwriting the error message |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
880 out_flush(); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
881 abort(); |
29775
455e7588b979
patch 9.0.0227: cannot read error message when abort() is called
Bram Moolenaar <Bram@vim.org>
parents:
29734
diff
changeset
|
882 # endif |
15896
ac080f6a4db8
patch 8.1.0954: arguments of semsg() and siemsg() are not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
883 } |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
884 #endif |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
885 |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
886 /* |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
887 * Give an "Internal error" message. |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
888 */ |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
889 void |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
890 internal_error(char *where) |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
891 { |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
892 // Give a generic error which is translated. The error itself may not be |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
893 // translated, it almost never shows. |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
894 emsg_core(_(e_internal_error_please_report_a_bug)); |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
895 |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
896 siemsg(_(e_internal_error_str), where); |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
897 } |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
898 |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
899 #if defined(FEAT_EVAL) || defined(PROTO) |
19554
b38d73f36467
patch 8.2.0334: abort called when using test_void()
Bram Moolenaar <Bram@vim.org>
parents:
19477
diff
changeset
|
900 /* |
b38d73f36467
patch 8.2.0334: abort called when using test_void()
Bram Moolenaar <Bram@vim.org>
parents:
19477
diff
changeset
|
901 * Like internal_error() but do not call abort(), to avoid tests using |
b38d73f36467
patch 8.2.0334: abort called when using test_void()
Bram Moolenaar <Bram@vim.org>
parents:
19477
diff
changeset
|
902 * test_unknown() and test_void() causing Vim to exit. |
b38d73f36467
patch 8.2.0334: abort called when using test_void()
Bram Moolenaar <Bram@vim.org>
parents:
19477
diff
changeset
|
903 */ |
b38d73f36467
patch 8.2.0334: abort called when using test_void()
Bram Moolenaar <Bram@vim.org>
parents:
19477
diff
changeset
|
904 void |
b38d73f36467
patch 8.2.0334: abort called when using test_void()
Bram Moolenaar <Bram@vim.org>
parents:
19477
diff
changeset
|
905 internal_error_no_abort(char *where) |
b38d73f36467
patch 8.2.0334: abort called when using test_void()
Bram Moolenaar <Bram@vim.org>
parents:
19477
diff
changeset
|
906 { |
32489
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
907 // Give a generic error which is translated. The error itself may not be |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
908 // translated, it almost never shows. |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
909 emsg_core(_(e_internal_error_please_report_a_bug)); |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
910 |
d6055989fa27
patch 9.0.1576: users may not know what to do with an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31964
diff
changeset
|
911 semsg(_(e_internal_error_str), where); |
19554
b38d73f36467
patch 8.2.0334: abort called when using test_void()
Bram Moolenaar <Bram@vim.org>
parents:
19477
diff
changeset
|
912 } |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
913 #endif |
19554
b38d73f36467
patch 8.2.0334: abort called when using test_void()
Bram Moolenaar <Bram@vim.org>
parents:
19477
diff
changeset
|
914 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
915 // emsg3() and emsgn() are in misc2.c to avoid warnings for the prototypes. |
7 | 916 |
167 | 917 void |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
918 emsg_invreg(int name) |
167 | 919 { |
31964
c0a9bc376b54
patch 9.0.1314: :messages behavior depends on 'fileformat' of current buffer
Bram Moolenaar <Bram@vim.org>
parents:
31877
diff
changeset
|
920 semsg(_(e_invalid_register_name_str), transchar_buf(NULL, name)); |
167 | 921 } |
922 | |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
923 #if defined(FEAT_EVAL) || defined(PROTO) |
7 | 924 /* |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18999
diff
changeset
|
925 * Give an error message which contains %s for "name[len]". |
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18999
diff
changeset
|
926 */ |
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18999
diff
changeset
|
927 void |
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18999
diff
changeset
|
928 emsg_namelen(char *msg, char_u *name, int len) |
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18999
diff
changeset
|
929 { |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27255
diff
changeset
|
930 char_u *copy = vim_strnsave(name, len); |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18999
diff
changeset
|
931 |
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18999
diff
changeset
|
932 semsg(msg, copy == NULL ? "NULL" : (char *)copy); |
19685
d64f403289db
patch 8.2.0399: various memory leaks
Bram Moolenaar <Bram@vim.org>
parents:
19615
diff
changeset
|
933 vim_free(copy); |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18999
diff
changeset
|
934 } |
27018
268f6a3511df
patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
935 #endif |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18999
diff
changeset
|
936 |
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
18999
diff
changeset
|
937 /* |
7 | 938 * Like msg(), but truncate to a single line if p_shm contains 't', or when |
939 * "force" is TRUE. This truncates in another way as for normal messages. | |
940 * Careful: The string may be changed by msg_may_trunc()! | |
941 * Returns a pointer to the printed message, if wait_return() not called. | |
942 */ | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
943 char * |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
944 msg_trunc_attr(char *s, int force, int attr) |
7 | 945 { |
946 int n; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
947 char *ts; |
7 | 948 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
949 // Add message to history before truncating |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
950 add_msg_hist((char_u *)s, -1, attr); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
951 |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
952 ts = (char *)msg_may_trunc(force, (char_u *)s); |
7 | 953 |
954 msg_hist_off = TRUE; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
955 n = msg_attr(ts, attr); |
7 | 956 msg_hist_off = FALSE; |
957 | |
958 if (n) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
959 return ts; |
7 | 960 return NULL; |
961 } | |
962 | |
963 /* | |
964 * Check if message "s" should be truncated at the start (for filenames). | |
965 * Return a pointer to where the truncated message starts. | |
966 * Note: May change the message by replacing a character with '<'. | |
967 */ | |
968 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
969 msg_may_trunc(int force, char_u *s) |
7 | 970 { |
971 int n; | |
972 int room; | |
973 | |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
974 // If 'cmdheight' is zero or something unexpected happened "room" may be |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
975 // negative. |
7 | 976 room = (int)(Rows - cmdline_row - 1) * Columns + sc_col - 1; |
29288
d9acbf59032c
patch 8.2.5161: might still access invalid memory
Bram Moolenaar <Bram@vim.org>
parents:
29155
diff
changeset
|
977 if (room > 0 && (force || (shortmess(SHM_TRUNC) && !exmode_active)) |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29982
diff
changeset
|
978 && (n = (int)STRLEN(s) - room) > 0) |
7 | 979 { |
980 if (has_mbyte) | |
981 { | |
982 int size = vim_strsize(s); | |
983 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
984 // There may be room anyway when there are multibyte chars. |
615 | 985 if (size <= room) |
986 return s; | |
987 | |
7 | 988 for (n = 0; size >= room; ) |
989 { | |
990 size -= (*mb_ptr2cells)(s + n); | |
474 | 991 n += (*mb_ptr2len)(s + n); |
7 | 992 } |
993 --n; | |
994 } | |
995 s += n; | |
996 *s = '<'; | |
997 } | |
998 return s; | |
999 } | |
1000 | |
1001 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1002 add_msg_hist( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1003 char_u *s, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1004 int len, // -1 for undetermined length |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1005 int attr) |
7 | 1006 { |
1007 struct msg_hist *p; | |
1008 | |
1009 if (msg_hist_off || msg_silent != 0) | |
1010 return; | |
1011 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1012 // Don't let the message history get too big |
625 | 1013 while (msg_hist_len > MAX_MSG_HIST_LEN) |
355 | 1014 (void)delete_first_msg(); |
1015 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1016 // allocate an entry and add the message at the end of the history |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
1017 p = ALLOC_ONE(struct msg_hist); |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1018 if (p == NULL) |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1019 return; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1020 |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1021 if (len < 0) |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1022 len = (int)STRLEN(s); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1023 // remove leading and trailing newlines |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1024 while (len > 0 && *s == '\n') |
7 | 1025 { |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1026 ++s; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1027 --len; |
7 | 1028 } |
31728
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1029 while (len > 0 && s[len - 1] == '\n') |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1030 --len; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1031 p->msg = vim_strnsave(s, len); |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1032 p->next = NULL; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1033 p->attr = attr; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1034 if (last_msg_hist != NULL) |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1035 last_msg_hist->next = p; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1036 last_msg_hist = p; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1037 if (first_msg_hist == NULL) |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1038 first_msg_hist = last_msg_hist; |
238ca27dbfd2
patch 9.0.1196: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents:
31624
diff
changeset
|
1039 ++msg_hist_len; |
7 | 1040 } |
1041 | |
1042 /* | |
355 | 1043 * Delete the first (oldest) message from the history. |
1044 * Returns FAIL if there are no messages. | |
1045 */ | |
1046 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1047 delete_first_msg(void) |
355 | 1048 { |
1049 struct msg_hist *p; | |
1050 | |
1051 if (msg_hist_len <= 0) | |
1052 return FAIL; | |
1053 p = first_msg_hist; | |
1054 first_msg_hist = p->next; | |
1619 | 1055 if (first_msg_hist == NULL) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1056 last_msg_hist = NULL; // history is empty |
355 | 1057 vim_free(p->msg); |
1058 vim_free(p); | |
1059 --msg_hist_len; | |
1060 return OK; | |
1061 } | |
1062 | |
1063 /* | |
7 | 1064 * ":messages" command. |
1065 */ | |
1066 void | |
8901
b4dad96ade29
commit https://github.com/vim/vim/commit/52196b2dbe3b64b5054e1df3d3aa8fc65e30addc
Christian Brabandt <cb@256bit.org>
parents:
8897
diff
changeset
|
1067 ex_messages(exarg_T *eap) |
7 | 1068 { |
1069 struct msg_hist *p; | |
1070 char_u *s; | |
8897
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1071 int c = 0; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1072 |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1073 if (STRCMP(eap->arg, "clear") == 0) |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1074 { |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1075 int keep = eap->addr_count == 0 ? 0 : eap->line2; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1076 |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1077 while (msg_hist_len > keep) |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1078 (void)delete_first_msg(); |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1079 return; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1080 } |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1081 |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1082 if (*eap->arg != NUL) |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1083 { |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26835
diff
changeset
|
1084 emsg(_(e_invalid_argument)); |
8897
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1085 return; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1086 } |
7 | 1087 |
1088 msg_hist_off = TRUE; | |
1089 | |
8897
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1090 p = first_msg_hist; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1091 if (eap->addr_count != 0) |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1092 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1093 // Count total messages |
8897
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1094 for (; p != NULL && !got_int; p = p->next) |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1095 c++; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1096 |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1097 c -= eap->line2; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1098 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1099 // Skip without number of messages specified |
8897
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1100 for (p = first_msg_hist; p != NULL && !got_int && c > 0; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1101 p = p->next, c--); |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1102 } |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1103 |
8905
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
1104 if (p == first_msg_hist) |
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
1105 { |
20162
7196cd9d8397
patch 8.2.0636: :messages does not show the maintainer when $LANG is unset
Bram Moolenaar <Bram@vim.org>
parents:
19685
diff
changeset
|
1106 #ifdef FEAT_MULTI_LANG |
7196cd9d8397
patch 8.2.0636: :messages does not show the maintainer when $LANG is unset
Bram Moolenaar <Bram@vim.org>
parents:
19685
diff
changeset
|
1107 s = get_mess_lang(); |
7196cd9d8397
patch 8.2.0636: :messages does not show the maintainer when $LANG is unset
Bram Moolenaar <Bram@vim.org>
parents:
19685
diff
changeset
|
1108 #else |
8905
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
1109 s = mch_getenv((char_u *)"LANG"); |
20162
7196cd9d8397
patch 8.2.0636: :messages does not show the maintainer when $LANG is unset
Bram Moolenaar <Bram@vim.org>
parents:
19685
diff
changeset
|
1110 #endif |
8905
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
1111 if (s != NULL && *s != NUL) |
14210
1681178c4434
patch 8.1.0122: translators don't always understand the maintainer message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1112 // The next comment is extracted by xgettext and put in po file for |
1681178c4434
patch 8.1.0122: translators don't always understand the maintainer message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1113 // translators to read. |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1114 msg_attr( |
14210
1681178c4434
patch 8.1.0122: translators don't always understand the maintainer message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1115 // Translator: Please replace the name and email address |
1681178c4434
patch 8.1.0122: translators don't always understand the maintainer message
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
1116 // with the appropriate text for your translation. |
8905
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
1117 _("Messages maintainer: Bram Moolenaar <Bram@vim.org>"), |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1118 HL_ATTR(HLF_T)); |
8905
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
1119 } |
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
1120 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1121 // Display what was not skipped. |
8897
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1122 for (; p != NULL && !got_int; p = p->next) |
7 | 1123 if (p->msg != NULL) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1124 msg_attr((char *)p->msg, p->attr); |
7 | 1125 |
1126 msg_hist_off = FALSE; | |
1127 } | |
1128 | |
28 | 1129 #if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO) |
7 | 1130 /* |
1131 * Call this after prompting the user. This will avoid a hit-return message | |
1132 * and a delay. | |
1133 */ | |
28 | 1134 void |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1135 msg_end_prompt(void) |
7 | 1136 { |
1137 need_wait_return = FALSE; | |
1138 emsg_on_display = FALSE; | |
1139 cmdline_row = msg_row; | |
1140 msg_col = 0; | |
1141 msg_clr_eos(); | |
3240 | 1142 lines_left = -1; |
7 | 1143 } |
1144 #endif | |
1145 | |
1146 /* | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1147 * Wait for the user to hit a key (normally Enter). |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1148 * If "redraw" is TRUE, clear and redraw the screen. |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1149 * If "redraw" is FALSE, just redraw the screen. |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1150 * If "redraw" is -1, don't redraw at all. |
7 | 1151 */ |
1152 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1153 wait_return(int redraw) |
7 | 1154 { |
1155 int c; | |
1156 int oldState; | |
1157 int tmpState; | |
1158 int had_got_int; | |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13802
diff
changeset
|
1159 int save_reg_recording; |
5430 | 1160 FILE *save_scriptout; |
7 | 1161 |
1162 if (redraw == TRUE) | |
29812
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29775
diff
changeset
|
1163 set_must_redraw(UPD_CLEAR); |
7 | 1164 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1165 // If using ":silent cmd", don't wait for a return. Also don't set |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1166 // need_wait_return to do it later. |
7 | 1167 if (msg_silent != 0) |
1168 return; | |
30222
b871016ea7c1
patch 9.0.0447: using :echowin while at the hit-enter prompt causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30029
diff
changeset
|
1169 #ifdef HAS_MESSAGE_WINDOW |
b871016ea7c1
patch 9.0.0447: using :echowin while at the hit-enter prompt causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30029
diff
changeset
|
1170 if (in_echowindow) |
b871016ea7c1
patch 9.0.0447: using :echowin while at the hit-enter prompt causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30029
diff
changeset
|
1171 return; |
b871016ea7c1
patch 9.0.0447: using :echowin while at the hit-enter prompt causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30029
diff
changeset
|
1172 #endif |
7 | 1173 |
2723 | 1174 /* |
1175 * When inside vgetc(), we can't wait for a typed character at all. | |
1176 * With the global command (and some others) we only need one return at | |
1177 * the end. Adjust cmdline_row to avoid the next message overwriting the | |
1178 * last one. | |
1179 */ | |
822 | 1180 if (vgetc_busy > 0) |
7 | 1181 return; |
2723 | 1182 need_wait_return = TRUE; |
7 | 1183 if (no_wait_return) |
1184 { | |
1185 if (!exmode_active) | |
1186 cmdline_row = msg_row; | |
1187 return; | |
1188 } | |
1189 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1190 redir_off = TRUE; // don't redirect this message |
7 | 1191 oldState = State; |
1192 if (quit_more) | |
1193 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1194 c = CAR; // just pretend CR was hit |
7 | 1195 quit_more = FALSE; |
1196 got_int = FALSE; | |
1197 } | |
1198 else if (exmode_active) | |
1199 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1200 msg_puts(" "); // make sure the cursor is on the right line |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1201 c = CAR; // no need for a return in ex mode |
7 | 1202 got_int = FALSE; |
1203 } | |
1204 else | |
1205 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1206 // Make sure the hit-return prompt is on screen when 'guioptions' was |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1207 // just changed. |
7 | 1208 screenalloc(FALSE); |
1209 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
1210 State = MODE_HITRETURN; |
7 | 1211 setmouse(); |
1212 #ifdef USE_ON_FLY_SCROLL | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1213 dont_scroll = TRUE; // disallow scrolling here |
7 | 1214 #endif |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
1215 cmdline_row = msg_row; |
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
1216 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1217 // Avoid the sequence that the user types ":" at the hit-return prompt |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1218 // to start an Ex command, but the file-changed dialog gets in the |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1219 // way. |
4325 | 1220 if (need_check_timestamps) |
1221 check_timestamps(FALSE); | |
1222 | |
7 | 1223 hit_return_msg(); |
1224 | |
1225 do | |
1226 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1227 // Remember "got_int", if it is set vgetc() probably returns a |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1228 // CTRL-C, but we need to loop then. |
7 | 1229 had_got_int = got_int; |
280 | 1230 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1231 // Don't do mappings here, we put the character back in the |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1232 // typeahead buffer. |
280 | 1233 ++no_mapping; |
1234 ++allow_keys; | |
5430 | 1235 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1236 // Temporarily disable Recording. If Recording is active, the |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1237 // character will be recorded later, since it will be added to the |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1238 // typebuf after the loop |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13802
diff
changeset
|
1239 save_reg_recording = reg_recording; |
5430 | 1240 save_scriptout = scriptout; |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13802
diff
changeset
|
1241 reg_recording = 0; |
5430 | 1242 scriptout = NULL; |
7 | 1243 c = safe_vgetc(); |
216 | 1244 if (had_got_int && !global_busy) |
7 | 1245 got_int = FALSE; |
280 | 1246 --no_mapping; |
1247 --allow_keys; | |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13802
diff
changeset
|
1248 reg_recording = save_reg_recording; |
5430 | 1249 scriptout = save_scriptout; |
280 | 1250 |
7 | 1251 #ifdef FEAT_CLIPBOARD |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1252 // Strange way to allow copying (yanking) a modeless selection at |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1253 // the hit-enter prompt. Use CTRL-Y, because the same is used in |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1254 // Cmdline-mode and it's harmless when there is no selection. |
7 | 1255 if (c == Ctrl_Y && clip_star.state == SELECT_DONE) |
1256 { | |
1257 clip_copy_modeless_selection(TRUE); | |
1258 c = K_IGNORE; | |
1259 } | |
1260 #endif | |
1381 | 1261 |
698 | 1262 /* |
1263 * Allow scrolling back in the messages. | |
1264 * Also accept scroll-down commands when messages fill the screen, | |
1265 * to avoid that typing one 'j' too many makes the messages | |
1266 * disappear. | |
1267 */ | |
1268 if (p_more && !p_cp) | |
446 | 1269 { |
4234 | 1270 if (c == 'b' || c == 'k' || c == 'u' || c == 'g' |
1271 || c == K_UP || c == K_PAGEUP) | |
446 | 1272 { |
4234 | 1273 if (msg_scrolled > Rows) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1274 // scroll back to show older messages |
4234 | 1275 do_more_prompt(c); |
1276 else | |
1277 { | |
1278 msg_didout = FALSE; | |
1279 c = K_IGNORE; | |
1280 msg_col = | |
1281 #ifdef FEAT_RIGHTLEFT | |
1282 cmdmsg_rl ? Columns - 1 : | |
1283 #endif | |
1284 0; | |
1285 } | |
698 | 1286 if (quit_more) |
1287 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1288 c = CAR; // just pretend CR was hit |
698 | 1289 quit_more = FALSE; |
1290 got_int = FALSE; | |
1291 } | |
5290
059c8a4b103f
updated for version 7.4b.021
Bram Moolenaar <bram@vim.org>
parents:
5245
diff
changeset
|
1292 else if (c != K_IGNORE) |
698 | 1293 { |
1294 c = K_IGNORE; | |
1295 hit_return_msg(); | |
1296 } | |
446 | 1297 } |
698 | 1298 else if (msg_scrolled > Rows - 2 |
4234 | 1299 && (c == 'j' || c == 'd' || c == 'f' |
1300 || c == K_DOWN || c == K_PAGEDOWN)) | |
446 | 1301 c = K_IGNORE; |
1302 } | |
7 | 1303 } while ((had_got_int && c == Ctrl_C) |
1304 || c == K_IGNORE | |
1305 #ifdef FEAT_GUI | |
1306 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR | |
1307 #endif | |
1308 || c == K_LEFTDRAG || c == K_LEFTRELEASE | |
1309 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE | |
1310 || c == K_RIGHTDRAG || c == K_RIGHTRELEASE | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1311 || c == K_MOUSELEFT || c == K_MOUSERIGHT |
7 | 1312 || c == K_MOUSEDOWN || c == K_MOUSEUP |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
1313 || c == K_MOUSEMOVE |
7 | 1314 || (!mouse_has(MOUSE_RETURN) |
1315 && mouse_row < msg_row | |
1316 && (c == K_LEFTMOUSE | |
1317 || c == K_MIDDLEMOUSE | |
1318 || c == K_RIGHTMOUSE | |
1319 || c == K_X1MOUSE | |
1320 || c == K_X2MOUSE)) | |
1321 ); | |
1322 ui_breakcheck(); | |
31140
a52697bcffa6
patch 9.0.0904: various comment and indent flaws
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
1323 |
a52697bcffa6
patch 9.0.0904: various comment and indent flaws
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
1324 // Avoid that the mouse-up event causes Visual mode to start. |
7 | 1325 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE |
1326 || c == K_X1MOUSE || c == K_X2MOUSE) | |
1327 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0); | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18309
diff
changeset
|
1328 else if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C) |
7 | 1329 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1330 // Put the character back in the typeahead buffer. Don't use the |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1331 // stuff buffer, because lmaps wouldn't work. |
20571
5995db0fe84a
patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents:
20162
diff
changeset
|
1332 ins_char_typebuf(vgetc_char, vgetc_mod_mask); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1333 do_redraw = TRUE; // need a redraw even though there is |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1334 // typeahead |
7 | 1335 } |
1336 } | |
1337 redir_off = FALSE; | |
1338 | |
1339 /* | |
1340 * If the user hits ':', '?' or '/' we get a command line from the next | |
1341 * line. | |
1342 */ | |
1343 if (c == ':' || c == '?' || c == '/') | |
1344 { | |
1345 if (!exmode_active) | |
1346 cmdline_row = msg_row; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1347 skip_redraw = TRUE; // skip redraw once |
7 | 1348 do_redraw = FALSE; |
14129
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1349 #ifdef FEAT_TERMINAL |
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1350 skip_term_loop = TRUE; |
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1351 #endif |
7 | 1352 } |
1353 | |
1354 /* | |
1355 * If the window size changed set_shellsize() will redraw the screen. | |
1356 * Otherwise the screen is only redrawn if 'redraw' is set and no ':' | |
1357 * typed. | |
1358 */ | |
1359 tmpState = State; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1360 State = oldState; // restore State before set_shellsize |
7 | 1361 setmouse(); |
1362 msg_check(); | |
1363 | |
1364 #if defined(UNIX) || defined(VMS) | |
1365 /* | |
1366 * When switching screens, we need to output an extra newline on exit. | |
1367 */ | |
1368 if (swapping_screen() && !termcap_active) | |
1369 newline_on_exit = TRUE; | |
1370 #endif | |
1371 | |
1372 need_wait_return = FALSE; | |
1373 did_wait_return = TRUE; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1374 emsg_on_display = FALSE; // can delete error message now |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1375 lines_left = -1; // reset lines_left at next msg_start() |
7 | 1376 reset_last_sourcing(); |
1377 if (keep_msg != NULL && vim_strsize(keep_msg) >= | |
1378 (Rows - cmdline_row - 1) * Columns + sc_col) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1379 VIM_CLEAR(keep_msg); // don't redisplay message, it's too long |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1380 |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
1381 if (tmpState == MODE_SETWSIZE) // got resize event while in vgetc() |
7 | 1382 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1383 starttermcap(); // start termcap before redrawing |
7 | 1384 shell_resized(); |
1385 } | |
1386 else if (!skip_redraw | |
1387 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1))) | |
1388 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1389 starttermcap(); // start termcap before redrawing |
29732
89e1d67814a9
patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents:
29546
diff
changeset
|
1390 redraw_later(UPD_VALID); |
7 | 1391 } |
1392 } | |
1393 | |
1394 /* | |
1395 * Write the hit-return prompt. | |
1396 */ | |
1397 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1398 hit_return_msg(void) |
7 | 1399 { |
446 | 1400 int save_p_more = p_more; |
1401 | |
26771
fc859aea8cec
patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents:
26288
diff
changeset
|
1402 p_more = FALSE; // don't want to see this message when scrolling back |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1403 if (msg_didout) // start on a new line |
7 | 1404 msg_putchar('\n'); |
1405 if (got_int) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1406 msg_puts(_("Interrupt: ")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1407 |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1408 msg_puts_attr(_("Press ENTER or type command to continue"), HL_ATTR(HLF_R)); |
7 | 1409 if (!msg_use_printf()) |
1410 msg_clr_eos(); | |
446 | 1411 p_more = save_p_more; |
7 | 1412 } |
1413 | |
1414 /* | |
1415 * Set "keep_msg" to "s". Free the old value and check for NULL pointer. | |
1416 */ | |
1417 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1418 set_keep_msg(char_u *s, int attr) |
7 | 1419 { |
1420 vim_free(keep_msg); | |
1421 if (s != NULL && msg_silent == 0) | |
1422 keep_msg = vim_strsave(s); | |
1423 else | |
1424 keep_msg = NULL; | |
127 | 1425 keep_msg_more = FALSE; |
678 | 1426 keep_msg_attr = attr; |
7 | 1427 } |
1428 | |
678 | 1429 /* |
1430 * If there currently is a message being displayed, set "keep_msg" to it, so | |
1431 * that it will be displayed again after redraw. | |
1432 */ | |
1433 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1434 set_keep_msg_from_hist(void) |
678 | 1435 { |
1436 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
1437 && (State & MODE_NORMAL)) |
678 | 1438 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr); |
1439 } | |
1440 | |
7 | 1441 /* |
1442 * Prepare for outputting characters in the command line. | |
1443 */ | |
1444 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1445 msg_start(void) |
7 | 1446 { |
1447 int did_return = FALSE; | |
1448 | |
2491
904cd1c26a1e
After entering a crypt key would need to hit return to continue.
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
1449 if (!msg_silent) |
27255
8c43e3d1a6e5
patch 8.2.4156: fileinfo message overwrites echo'ed message
Bram Moolenaar <Bram@vim.org>
parents:
27022
diff
changeset
|
1450 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13188
diff
changeset
|
1451 VIM_CLEAR(keep_msg); |
27255
8c43e3d1a6e5
patch 8.2.4156: fileinfo message overwrites echo'ed message
Bram Moolenaar <Bram@vim.org>
parents:
27022
diff
changeset
|
1452 need_fileinfo = FALSE; |
8c43e3d1a6e5
patch 8.2.4156: fileinfo message overwrites echo'ed message
Bram Moolenaar <Bram@vim.org>
parents:
27022
diff
changeset
|
1453 } |
1619 | 1454 |
1455 #ifdef FEAT_EVAL | |
30029
d03ee646c9ec
patch 9.0.0352: using :echowindow in a timer clears part of message
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
1456 if (need_clr_eos) |
1619 | 1457 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1458 // Halfway an ":echo" command and getting an (error) message: clear |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1459 // any text from the command. |
1619 | 1460 need_clr_eos = FALSE; |
1461 msg_clr_eos(); | |
1462 } | |
1463 #endif | |
1464 | |
29904
2516775e8134
patch 9.0.0290: compiler warning for variable set but not used
Bram Moolenaar <Bram@vim.org>
parents:
29902
diff
changeset
|
1465 #ifdef HAS_MESSAGE_WINDOW |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29982
diff
changeset
|
1466 if (in_echowindow) |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
1467 { |
29966
5dfd4bd66ad8
patch 9.0.0321: cannot use the message popup window directly
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
1468 if (popup_message_win_visible() |
5dfd4bd66ad8
patch 9.0.0321: cannot use the message popup window directly
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
1469 && ((msg_col > 0 && (msg_scroll || !full_screen)) |
5dfd4bd66ad8
patch 9.0.0321: cannot use the message popup window directly
Bram Moolenaar <Bram@vim.org>
parents:
29960
diff
changeset
|
1470 || in_echowindow)) |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
1471 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
1472 win_T *wp = popup_get_message_win(); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
1473 |
29936
64b885d1acfc
patch 9.0.0306: buffer write message is two lines in message popup window
Bram Moolenaar <Bram@vim.org>
parents:
29926
diff
changeset
|
1474 // start a new line |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
1475 curbuf = wp->w_buffer; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
1476 ml_append(wp->w_buffer->b_ml.ml_line_count, |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
1477 (char_u *)"", (colnr_T)0, FALSE); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
1478 curbuf = curwin->w_buffer; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
1479 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
1480 msg_col = 0; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
1481 } |
29904
2516775e8134
patch 9.0.0290: compiler warning for variable set but not used
Bram Moolenaar <Bram@vim.org>
parents:
29902
diff
changeset
|
1482 else |
2516775e8134
patch 9.0.0290: compiler warning for variable set but not used
Bram Moolenaar <Bram@vim.org>
parents:
29902
diff
changeset
|
1483 #endif |
2516775e8134
patch 9.0.0290: compiler warning for variable set but not used
Bram Moolenaar <Bram@vim.org>
parents:
29902
diff
changeset
|
1484 if (!msg_scroll && full_screen) // overwrite last message |
7 | 1485 { |
1486 msg_row = cmdline_row; | |
1487 msg_col = | |
1488 #ifdef FEAT_RIGHTLEFT | |
1489 cmdmsg_rl ? Columns - 1 : | |
1490 #endif | |
1491 0; | |
1492 } | |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29982
diff
changeset
|
1493 else if (msg_didout || in_echowindow) |
7 | 1494 { |
29954
b8f987e3ebe2
patch 9.0.0315: shell command is displayed in message window
Bram Moolenaar <Bram@vim.org>
parents:
29944
diff
changeset
|
1495 // start message on next line |
7 | 1496 msg_putchar('\n'); |
1497 did_return = TRUE; | |
1498 if (exmode_active != EXMODE_NORMAL) | |
1499 cmdline_row = msg_row; | |
1500 } | |
1501 if (!msg_didany || lines_left < 0) | |
1502 msg_starthere(); | |
1503 if (msg_silent == 0) | |
1504 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1505 msg_didout = FALSE; // no output on current line yet |
7 | 1506 cursor_off(); |
1507 } | |
1508 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1509 // when redirecting, may need to start a new line. |
7 | 1510 if (!did_return) |
1511 redir_write((char_u *)"\n", -1); | |
1512 } | |
1513 | |
1514 /* | |
1515 * Note that the current msg position is where messages start. | |
1516 */ | |
1517 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1518 msg_starthere(void) |
7 | 1519 { |
1520 lines_left = cmdline_row; | |
1521 msg_didany = FALSE; | |
1522 } | |
1523 | |
1524 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1525 msg_putchar(int c) |
7 | 1526 { |
1527 msg_putchar_attr(c, 0); | |
1528 } | |
1529 | |
1530 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1531 msg_putchar_attr(int c, int attr) |
7 | 1532 { |
15551
b069a878bbeb
patch 8.1.0783: compiler warning for signed/unsigned
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1533 char_u buf[MB_MAXBYTES + 1]; |
7 | 1534 |
1535 if (IS_SPECIAL(c)) | |
1536 { | |
1537 buf[0] = K_SPECIAL; | |
1538 buf[1] = K_SECOND(c); | |
1539 buf[2] = K_THIRD(c); | |
1540 buf[3] = NUL; | |
1541 } | |
1542 else | |
15551
b069a878bbeb
patch 8.1.0783: compiler warning for signed/unsigned
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1543 buf[(*mb_char2bytes)(c, buf)] = NUL; |
b069a878bbeb
patch 8.1.0783: compiler warning for signed/unsigned
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1544 msg_puts_attr((char *)buf, attr); |
7 | 1545 } |
1546 | |
1547 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1548 msg_outnum(long n) |
7 | 1549 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1550 char buf[20]; |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1551 |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1552 sprintf(buf, "%ld", n); |
7 | 1553 msg_puts(buf); |
1554 } | |
1555 | |
1556 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1557 msg_home_replace(char_u *fname) |
7 | 1558 { |
1559 msg_home_replace_attr(fname, 0); | |
1560 } | |
1561 | |
1562 #if defined(FEAT_FIND_ID) || defined(PROTO) | |
1563 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1564 msg_home_replace_hl(char_u *fname) |
7 | 1565 { |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1566 msg_home_replace_attr(fname, HL_ATTR(HLF_D)); |
7 | 1567 } |
1568 #endif | |
1569 | |
1570 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1571 msg_home_replace_attr(char_u *fname, int attr) |
7 | 1572 { |
1573 char_u *name; | |
1574 | |
1575 name = home_replace_save(NULL, fname); | |
1576 if (name != NULL) | |
1577 msg_outtrans_attr(name, attr); | |
1578 vim_free(name); | |
1579 } | |
1580 | |
1581 /* | |
1582 * Output 'len' characters in 'str' (including NULs) with translation | |
18829
eff8d8f72a82
patch 8.1.2402: typos and other small things
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
1583 * if 'len' is -1, output up to a NUL character. |
7 | 1584 * Use attributes 'attr'. |
1585 * Return the number of characters it takes on the screen. | |
1586 */ | |
1587 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1588 msg_outtrans(char_u *str) |
7 | 1589 { |
1590 return msg_outtrans_attr(str, 0); | |
1591 } | |
1592 | |
1593 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1594 msg_outtrans_attr(char_u *str, int attr) |
7 | 1595 { |
1596 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr); | |
1597 } | |
1598 | |
1599 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1600 msg_outtrans_len(char_u *str, int len) |
7 | 1601 { |
1602 return msg_outtrans_len_attr(str, len, 0); | |
1603 } | |
1604 | |
1605 /* | |
1606 * Output one character at "p". Return pointer to the next character. | |
1607 * Handles multi-byte characters. | |
1608 */ | |
1609 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1610 msg_outtrans_one(char_u *p, int attr) |
7 | 1611 { |
1612 int l; | |
1613 | |
474 | 1614 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
7 | 1615 { |
1616 msg_outtrans_len_attr(p, l, attr); | |
1617 return p + l; | |
1618 } | |
31964
c0a9bc376b54
patch 9.0.1314: :messages behavior depends on 'fileformat' of current buffer
Bram Moolenaar <Bram@vim.org>
parents:
31877
diff
changeset
|
1619 msg_puts_attr((char *)transchar_byte_buf(NULL, *p), attr); |
7 | 1620 return p + 1; |
1621 } | |
1622 | |
1623 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1624 msg_outtrans_len_attr(char_u *msgstr, int len, int attr) |
7 | 1625 { |
1626 int retval = 0; | |
1627 char_u *str = msgstr; | |
1628 char_u *plain_start = msgstr; | |
1629 char_u *s; | |
1630 int mb_l; | |
1631 int c; | |
22592
fb5546aa6817
patch 8.2.1844: using "q" at the more prompt doesn't stop a long message
Bram Moolenaar <Bram@vim.org>
parents:
22584
diff
changeset
|
1632 int save_got_int = got_int; |
fb5546aa6817
patch 8.2.1844: using "q" at the more prompt doesn't stop a long message
Bram Moolenaar <Bram@vim.org>
parents:
22584
diff
changeset
|
1633 |
fb5546aa6817
patch 8.2.1844: using "q" at the more prompt doesn't stop a long message
Bram Moolenaar <Bram@vim.org>
parents:
22584
diff
changeset
|
1634 // Only quit when got_int was set in here. |
fb5546aa6817
patch 8.2.1844: using "q" at the more prompt doesn't stop a long message
Bram Moolenaar <Bram@vim.org>
parents:
22584
diff
changeset
|
1635 got_int = FALSE; |
7 | 1636 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1637 // if MSG_HIST flag set, add message to history |
7 | 1638 if (attr & MSG_HIST) |
1639 { | |
1640 add_msg_hist(str, len, attr); | |
1641 attr &= ~MSG_HIST; | |
1642 } | |
1643 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1644 // If the string starts with a composing character first draw a space on |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1645 // which the composing char can be drawn. |
7 | 1646 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr))) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1647 msg_puts_attr(" ", attr); |
7 | 1648 |
1649 /* | |
1650 * Go over the string. Special characters are translated and printed. | |
1651 * Normal characters are printed several at a time. | |
1652 */ | |
22592
fb5546aa6817
patch 8.2.1844: using "q" at the more prompt doesn't stop a long message
Bram Moolenaar <Bram@vim.org>
parents:
22584
diff
changeset
|
1653 while (--len >= 0 && !got_int) |
7 | 1654 { |
1655 if (enc_utf8) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1656 // Don't include composing chars after the end. |
474 | 1657 mb_l = utfc_ptr2len_len(str, len + 1); |
7 | 1658 else if (has_mbyte) |
474 | 1659 mb_l = (*mb_ptr2len)(str); |
7 | 1660 else |
1661 mb_l = 1; | |
1662 if (has_mbyte && mb_l > 1) | |
1663 { | |
1664 c = (*mb_ptr2char)(str); | |
1665 if (vim_isprintc(c)) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1666 // printable multi-byte char: count the cells. |
7 | 1667 retval += (*mb_ptr2cells)(str); |
1668 else | |
1669 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1670 // unprintable multi-byte char: print the printable chars so |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1671 // far and the translation of the unprintable char. |
7 | 1672 if (str > plain_start) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1673 msg_puts_attr_len((char *)plain_start, |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1674 (int)(str - plain_start), attr); |
7 | 1675 plain_start = str + mb_l; |
31964
c0a9bc376b54
patch 9.0.1314: :messages behavior depends on 'fileformat' of current buffer
Bram Moolenaar <Bram@vim.org>
parents:
31877
diff
changeset
|
1676 msg_puts_attr((char *)transchar_buf(NULL, c), |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1677 attr == 0 ? HL_ATTR(HLF_8) : attr); |
7 | 1678 retval += char2cells(c); |
1679 } | |
1680 len -= mb_l - 1; | |
1681 str += mb_l; | |
1682 } | |
1683 else | |
1684 { | |
31964
c0a9bc376b54
patch 9.0.1314: :messages behavior depends on 'fileformat' of current buffer
Bram Moolenaar <Bram@vim.org>
parents:
31877
diff
changeset
|
1685 s = transchar_byte_buf(NULL, *str); |
7 | 1686 if (s[1] != NUL) |
1687 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1688 // unprintable char: print the printable chars so far and the |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1689 // translation of the unprintable char. |
7 | 1690 if (str > plain_start) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1691 msg_puts_attr_len((char *)plain_start, |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1692 (int)(str - plain_start), attr); |
7 | 1693 plain_start = str + 1; |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1694 msg_puts_attr((char *)s, attr == 0 ? HL_ATTR(HLF_8) : attr); |
1668 | 1695 retval += (int)STRLEN(s); |
7 | 1696 } |
1663 | 1697 else |
1698 ++retval; | |
7 | 1699 ++str; |
1700 } | |
1701 } | |
1702 | |
22592
fb5546aa6817
patch 8.2.1844: using "q" at the more prompt doesn't stop a long message
Bram Moolenaar <Bram@vim.org>
parents:
22584
diff
changeset
|
1703 if (str > plain_start && !got_int) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1704 // print the printable chars at the end |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1705 msg_puts_attr_len((char *)plain_start, (int)(str - plain_start), attr); |
7 | 1706 |
22592
fb5546aa6817
patch 8.2.1844: using "q" at the more prompt doesn't stop a long message
Bram Moolenaar <Bram@vim.org>
parents:
22584
diff
changeset
|
1707 got_int |= save_got_int; |
fb5546aa6817
patch 8.2.1844: using "q" at the more prompt doesn't stop a long message
Bram Moolenaar <Bram@vim.org>
parents:
22584
diff
changeset
|
1708 |
7 | 1709 return retval; |
1710 } | |
1711 | |
1712 #if defined(FEAT_QUICKFIX) || defined(PROTO) | |
1713 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1714 msg_make(char_u *arg) |
7 | 1715 { |
1716 int i; | |
1717 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB"; | |
1718 | |
1719 arg = skipwhite(arg); | |
1720 for (i = 5; *arg && i >= 0; --i) | |
1721 if (*arg++ != str[i]) | |
1722 break; | |
1723 if (i < 0) | |
1724 { | |
1725 msg_putchar('\n'); | |
1726 for (i = 0; rs[i]; ++i) | |
1727 msg_putchar(rs[i] - 3); | |
1728 } | |
1729 } | |
1730 #endif | |
1731 | |
1732 /* | |
18829
eff8d8f72a82
patch 8.1.2402: typos and other small things
Bram Moolenaar <Bram@vim.org>
parents:
18498
diff
changeset
|
1733 * Output the string 'str' up to a NUL character. |
7 | 1734 * Return the number of characters it takes on the screen. |
1735 * | |
1736 * If K_SPECIAL is encountered, then it is taken in conjunction with the | |
1737 * following character and shown as <F1>, <S-Up> etc. Any other character | |
1738 * which is not printable shown in <> form. | |
1739 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>. | |
1740 * If a character is displayed in one of these special ways, is also | |
1741 * highlighted (its highlight name is '8' in the p_hl variable). | |
1742 * Otherwise characters are not highlighted. | |
1743 * This function is used to show mappings, where we want to see how to type | |
1744 * the character/string -- webb | |
1745 */ | |
1746 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1747 msg_outtrans_special( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1748 char_u *strstart, |
16393
c1c25e2523a6
patch 8.1.1201: output of :command is hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1749 int from, // TRUE for lhs of a mapping |
18498
9e6d5a4abb1c
patch 8.1.2243: typos in comments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
1750 int maxlen) // screen columns, 0 for unlimited |
7 | 1751 { |
1752 char_u *str = strstart; | |
1753 int retval = 0; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1754 char *text; |
7 | 1755 int attr; |
1756 int len; | |
1757 | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1758 attr = HL_ATTR(HLF_8); |
7 | 1759 while (*str != NUL) |
1760 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1761 // Leading and trailing spaces need to be displayed in <> form. |
7 | 1762 if ((str == strstart || str[1] == NUL) && *str == ' ') |
1763 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1764 text = "<Space>"; |
7 | 1765 ++str; |
1766 } | |
1767 else | |
30226
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1768 text = (char *)str2special(&str, from, FALSE); |
28800
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1769 if (text[0] != NUL && text[1] == NUL) |
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1770 // single-byte character or illegal byte |
31964
c0a9bc376b54
patch 9.0.1314: :messages behavior depends on 'fileformat' of current buffer
Bram Moolenaar <Bram@vim.org>
parents:
31877
diff
changeset
|
1771 text = (char *)transchar_byte_buf(NULL, (char_u)text[0]); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1772 len = vim_strsize((char_u *)text); |
16393
c1c25e2523a6
patch 8.1.1201: output of :command is hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1773 if (maxlen > 0 && retval + len >= maxlen) |
c1c25e2523a6
patch 8.1.1201: output of :command is hard to read
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1774 break; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1775 // Highlight special keys |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1776 msg_puts_attr(text, len > 1 |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1777 && (*mb_ptr2len)((char_u *)text) <= 1 ? attr : 0); |
7 | 1778 retval += len; |
1779 } | |
1780 return retval; | |
1781 } | |
1782 | |
30825
c7983f593fa7
patch 9.0.0747: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
30519
diff
changeset
|
1783 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO) |
2610 | 1784 /* |
1785 * Return the lhs or rhs of a mapping, with the key codes turned into printable | |
1786 * strings, in an allocated string. | |
1787 */ | |
1788 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1789 str2special_save( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1790 char_u *str, |
30226
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1791 int replace_spaces, // TRUE to replace " " with "<Space>". |
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1792 // used for the lhs of mapping and keytrans(). |
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1793 int replace_lt) // TRUE to replace "<" with "<lt>". |
2610 | 1794 { |
1795 garray_T ga; | |
1796 char_u *p = str; | |
1797 | |
1798 ga_init2(&ga, 1, 40); | |
1799 while (*p != NUL) | |
30226
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1800 ga_concat(&ga, str2special(&p, replace_spaces, replace_lt)); |
2610 | 1801 ga_append(&ga, NUL); |
1802 return (char_u *)ga.ga_data; | |
1803 } | |
1804 #endif | |
1805 | |
7 | 1806 /* |
1807 * Return the printable string for the key codes at "*sp". | |
28800
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1808 * On illegal byte return a string with only that byte. |
7 | 1809 * Used for translating the lhs or rhs of a mapping to printable chars. |
1810 * Advances "sp" to the next code. | |
1811 */ | |
1812 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1813 str2special( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1814 char_u **sp, |
30226
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1815 int replace_spaces, // TRUE to replace " " with "<Space>". |
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1816 // used for the lhs of mapping and keytrans(). |
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1817 int replace_lt) // TRUE to replace "<" with "<lt>". |
7 | 1818 { |
1819 int c; | |
1820 static char_u buf[7]; | |
1821 char_u *str = *sp; | |
1822 int modifiers = 0; | |
1823 int special = FALSE; | |
1824 | |
1825 if (has_mbyte) | |
1826 { | |
1827 char_u *p; | |
1828 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1829 // Try to un-escape a multi-byte character. Return the un-escaped |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1830 // string if it is a multi-byte character. |
7 | 1831 p = mb_unescape(sp); |
1832 if (p != NULL) | |
1833 return p; | |
1834 } | |
1835 | |
1836 c = *str; | |
1837 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) | |
1838 { | |
1839 if (str[1] == KS_MODIFIER) | |
1840 { | |
1841 modifiers = str[2]; | |
1842 str += 3; | |
1843 c = *str; | |
1844 } | |
1845 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) | |
1846 { | |
1847 c = TO_SPECIAL(str[1], str[2]); | |
1848 str += 2; | |
1849 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1850 if (IS_SPECIAL(c) || modifiers) // special key |
7 | 1851 special = TRUE; |
1852 } | |
1853 | |
28800
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1854 if (has_mbyte && !IS_SPECIAL(c) && MB_BYTE2LEN(c) > 1) |
7 | 1855 { |
28686
141fb1d233ba
patch 8.2.4867: listing of mapping with K_SPECIAL is wrong
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
1856 char_u *p; |
141fb1d233ba
patch 8.2.4867: listing of mapping with K_SPECIAL is wrong
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
1857 |
141fb1d233ba
patch 8.2.4867: listing of mapping with K_SPECIAL is wrong
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
1858 *sp = str; |
141fb1d233ba
patch 8.2.4867: listing of mapping with K_SPECIAL is wrong
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
1859 // Try to un-escape a multi-byte character after modifiers. |
141fb1d233ba
patch 8.2.4867: listing of mapping with K_SPECIAL is wrong
Bram Moolenaar <Bram@vim.org>
parents:
28169
diff
changeset
|
1860 p = mb_unescape(sp); |
28800
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1861 if (p != NULL) |
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1862 // Since 'special' is TRUE the multi-byte character 'c' will be |
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1863 // processed by get_special_key_name() |
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1864 c = (*mb_ptr2char)(p); |
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1865 else |
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1866 // illegal byte |
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1867 *sp = str + 1; |
7 | 1868 } |
3024 | 1869 else |
29332
a538982f74ea
patch 9.0.0009: going past the end of a menu item with only modifier
Bram Moolenaar <Bram@vim.org>
parents:
29288
diff
changeset
|
1870 // single-byte character, NUL or illegal byte |
a538982f74ea
patch 9.0.0009: going past the end of a menu item with only modifier
Bram Moolenaar <Bram@vim.org>
parents:
29288
diff
changeset
|
1871 *sp = str + (*str == NUL ? 0 : 1); |
7 | 1872 |
28800
fea88e555652
patch 8.2.4924: maparg() may return a string that cannot be reused
Bram Moolenaar <Bram@vim.org>
parents:
28773
diff
changeset
|
1873 // Make special keys and C0 control characters in <> form, also <M-Space>. |
30226
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1874 if (special |
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1875 || c < ' ' |
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1876 || (replace_spaces && c == ' ') |
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1877 || (replace_lt && c == '<')) |
7 | 1878 return get_special_key_name(c, modifiers); |
1879 buf[0] = c; | |
1880 buf[1] = NUL; | |
1881 return buf; | |
1882 } | |
1883 | |
1884 /* | |
1885 * Translate a key sequence into special key names. | |
1886 */ | |
1887 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1888 str2specialbuf(char_u *sp, char_u *buf, int len) |
7 | 1889 { |
1890 char_u *s; | |
1891 | |
1892 *buf = NUL; | |
1893 while (*sp) | |
1894 { | |
30226
b6b803ed4a53
patch 9.0.0449: there is no easy way to translate a key code into a string
Bram Moolenaar <Bram@vim.org>
parents:
30222
diff
changeset
|
1895 s = str2special(&sp, FALSE, FALSE); |
7 | 1896 if ((int)(STRLEN(s) + STRLEN(buf)) < len) |
1897 STRCAT(buf, s); | |
1898 } | |
1899 } | |
1900 | |
1901 /* | |
1902 * print line for :print or :list command | |
1903 */ | |
1904 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1905 msg_prt_line(char_u *s, int list) |
7 | 1906 { |
1907 int c; | |
1908 int col = 0; | |
1909 int n_extra = 0; | |
1910 int c_extra = 0; | |
15502
bc17a9d37810
patch 8.1.0759: showing two characters for tab is limited
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1911 int c_final = 0; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1912 char_u *p_extra = NULL; // init to make SASC shut up |
7 | 1913 int n; |
1059 | 1914 int attr = 0; |
7 | 1915 char_u *trail = NULL; |
23825
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1916 char_u *lead = NULL; |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
1917 int in_multispace = FALSE; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
1918 int multispace_pos = 0; |
7 | 1919 int l; |
1920 char_u buf[MB_MAXBYTES + 1]; | |
1921 | |
167 | 1922 if (curwin->w_p_list) |
1923 list = TRUE; | |
1924 | |
23825
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1925 if (list) |
7 | 1926 { |
23825
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1927 // find start of trailing whitespace |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
1928 if (curwin->w_lcs_chars.trail) |
23825
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1929 { |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1930 trail = s + STRLEN(s); |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1931 while (trail > s && VIM_ISWHITE(trail[-1])) |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1932 --trail; |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1933 } |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1934 // find end of leading whitespace |
29404
87980a7936e7
patch 9.0.0044: typos in comments, wrapping lines
Bram Moolenaar <Bram@vim.org>
parents:
29332
diff
changeset
|
1935 if (curwin->w_lcs_chars.lead |
87980a7936e7
patch 9.0.0044: typos in comments, wrapping lines
Bram Moolenaar <Bram@vim.org>
parents:
29332
diff
changeset
|
1936 || curwin->w_lcs_chars.leadmultispace != NULL) |
23825
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1937 { |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1938 lead = s; |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1939 while (VIM_ISWHITE(lead[0])) |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1940 lead++; |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1941 // in a line full of spaces all of them are treated as trailing |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1942 if (*lead == NUL) |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1943 lead = NULL; |
0bd44e94dd14
patch 8.2.2454: leading space can not be made visible
Bram Moolenaar <Bram@vim.org>
parents:
23102
diff
changeset
|
1944 } |
7 | 1945 } |
1946 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1947 // output a space for an empty line, otherwise the line will be |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1948 // overwritten |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
1949 if (*s == NUL && !(list && curwin->w_lcs_chars.eol != NUL)) |
7 | 1950 msg_putchar(' '); |
1951 | |
446 | 1952 while (!got_int) |
7 | 1953 { |
1059 | 1954 if (n_extra > 0) |
7 | 1955 { |
1956 --n_extra; | |
15502
bc17a9d37810
patch 8.1.0759: showing two characters for tab is limited
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1957 if (n_extra == 0 && c_final) |
bc17a9d37810
patch 8.1.0759: showing two characters for tab is limited
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1958 c = c_final; |
bc17a9d37810
patch 8.1.0759: showing two characters for tab is limited
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1959 else if (c_extra) |
7 | 1960 c = c_extra; |
1961 else | |
1962 c = *p_extra++; | |
1963 } | |
474 | 1964 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1) |
7 | 1965 { |
1966 col += (*mb_ptr2cells)(s); | |
23064
89c324e327c0
patch 8.2.2078: illegal memory access when using :print on invalid text
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
1967 if (l >= MB_MAXBYTES) |
89c324e327c0
patch 8.2.2078: illegal memory access when using :print on invalid text
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
1968 { |
23090
fb27d3a7a24b
patch 8.2.2091: MS-Windows: build warnings
Bram Moolenaar <Bram@vim.org>
parents:
23064
diff
changeset
|
1969 STRCPY(buf, "?"); |
23064
89c324e327c0
patch 8.2.2078: illegal memory access when using :print on invalid text
Bram Moolenaar <Bram@vim.org>
parents:
22742
diff
changeset
|
1970 } |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
1971 else if (curwin->w_lcs_chars.nbsp != NUL && list |
6801 | 1972 && (mb_ptr2char(s) == 160 |
1973 || mb_ptr2char(s) == 0x202f)) | |
2692 | 1974 { |
29155
4d72bdf70625
patch 8.2.5097: using uninitialized memory when using 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
29128
diff
changeset
|
1975 int len = mb_char2bytes(curwin->w_lcs_chars.nbsp, buf); |
4d72bdf70625
patch 8.2.5097: using uninitialized memory when using 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
29128
diff
changeset
|
1976 |
4d72bdf70625
patch 8.2.5097: using uninitialized memory when using 'listchars'
Bram Moolenaar <Bram@vim.org>
parents:
29128
diff
changeset
|
1977 buf[len] = NUL; |
2692 | 1978 } |
1979 else | |
1980 { | |
1981 mch_memmove(buf, s, (size_t)l); | |
1982 buf[l] = NUL; | |
1983 } | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
1984 msg_puts((char *)buf); |
7 | 1985 s += l; |
1986 continue; | |
1987 } | |
1988 else | |
1989 { | |
1990 attr = 0; | |
1991 c = *s++; | |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
1992 in_multispace = c == ' ' |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
1993 && ((col > 0 && s[-2] == ' ') || *s == ' '); |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
1994 if (!in_multispace) |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
1995 multispace_pos = 0; |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
1996 if (c == TAB && (!list || curwin->w_lcs_chars.tab1)) |
7 | 1997 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
1998 // tab amount depends on current column |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14129
diff
changeset
|
1999 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14129
diff
changeset
|
2000 n_extra = tabstop_padding(col, curbuf->b_p_ts, |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14129
diff
changeset
|
2001 curbuf->b_p_vts_array) - 1; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14129
diff
changeset
|
2002 #else |
7 | 2003 n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1; |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14129
diff
changeset
|
2004 #endif |
167 | 2005 if (!list) |
7 | 2006 { |
2007 c = ' '; | |
2008 c_extra = ' '; | |
15502
bc17a9d37810
patch 8.1.0759: showing two characters for tab is limited
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2009 c_final = NUL; |
7 | 2010 } |
2011 else | |
2012 { | |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
2013 c = (n_extra == 0 && curwin->w_lcs_chars.tab3) |
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
2014 ? curwin->w_lcs_chars.tab3 |
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
2015 : curwin->w_lcs_chars.tab1; |
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
2016 c_extra = curwin->w_lcs_chars.tab2; |
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
2017 c_final = curwin->w_lcs_chars.tab3; |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2018 attr = HL_ATTR(HLF_8); |
7 | 2019 } |
2020 } | |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
2021 else if (c == 160 && list && curwin->w_lcs_chars.nbsp != NUL) |
2692 | 2022 { |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
2023 c = curwin->w_lcs_chars.nbsp; |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2024 attr = HL_ATTR(HLF_8); |
2692 | 2025 } |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
2026 else if (c == NUL && list && curwin->w_lcs_chars.eol != NUL) |
7 | 2027 { |
2028 p_extra = (char_u *)""; | |
2029 c_extra = NUL; | |
15502
bc17a9d37810
patch 8.1.0759: showing two characters for tab is limited
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2030 c_final = NUL; |
7 | 2031 n_extra = 1; |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23946
diff
changeset
|
2032 c = curwin->w_lcs_chars.eol; |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2033 attr = HL_ATTR(HLF_AT); |
7 | 2034 --s; |
2035 } | |
2036 else if (c != NUL && (n = byte2cells(c)) > 1) | |
2037 { | |
2038 n_extra = n - 1; | |
31964
c0a9bc376b54
patch 9.0.1314: :messages behavior depends on 'fileformat' of current buffer
Bram Moolenaar <Bram@vim.org>
parents:
31877
diff
changeset
|
2039 p_extra = transchar_byte_buf(NULL, c); |
7 | 2040 c_extra = NUL; |
15502
bc17a9d37810
patch 8.1.0759: showing two characters for tab is limited
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2041 c_final = NUL; |
7 | 2042 c = *p_extra++; |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2043 // Use special coloring to be able to distinguish <hex> from |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2044 // the same in plain text. |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2045 attr = HL_ATTR(HLF_8); |
7 | 2046 } |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2047 else if (c == ' ') |
7 | 2048 { |
29090
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
28800
diff
changeset
|
2049 if (list && lead != NULL && s <= lead && in_multispace |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
28800
diff
changeset
|
2050 && curwin->w_lcs_chars.leadmultispace != NULL) |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
28800
diff
changeset
|
2051 { |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
28800
diff
changeset
|
2052 c = curwin->w_lcs_chars.leadmultispace[multispace_pos++]; |
29098
cff23287478f
patch 8.2.5070: unnecessary code
Bram Moolenaar <Bram@vim.org>
parents:
29090
diff
changeset
|
2053 if (curwin->w_lcs_chars.leadmultispace[multispace_pos] |
cff23287478f
patch 8.2.5070: unnecessary code
Bram Moolenaar <Bram@vim.org>
parents:
29090
diff
changeset
|
2054 == NUL) |
29090
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
28800
diff
changeset
|
2055 multispace_pos = 0; |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
28800
diff
changeset
|
2056 attr = HL_ATTR(HLF_8); |
9b292596a332
patch 8.2.5066: timer_create is not available on every Mac system
Bram Moolenaar <Bram@vim.org>
parents:
28800
diff
changeset
|
2057 } |
29098
cff23287478f
patch 8.2.5070: unnecessary code
Bram Moolenaar <Bram@vim.org>
parents:
29090
diff
changeset
|
2058 else if (lead != NULL && s <= lead |
cff23287478f
patch 8.2.5070: unnecessary code
Bram Moolenaar <Bram@vim.org>
parents:
29090
diff
changeset
|
2059 && curwin->w_lcs_chars.lead != NUL) |
25778
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2060 { |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2061 c = curwin->w_lcs_chars.lead; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2062 attr = HL_ATTR(HLF_8); |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2063 } |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2064 else if (trail != NULL && s > trail) |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2065 { |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2066 c = curwin->w_lcs_chars.trail; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2067 attr = HL_ATTR(HLF_8); |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2068 } |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2069 else if (list && in_multispace |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2070 && curwin->w_lcs_chars.multispace != NULL) |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2071 { |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2072 c = curwin->w_lcs_chars.multispace[multispace_pos++]; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2073 if (curwin->w_lcs_chars.multispace[multispace_pos] == NUL) |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2074 multispace_pos = 0; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2075 attr = HL_ATTR(HLF_8); |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2076 } |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2077 else if (list && curwin->w_lcs_chars.space != NUL) |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2078 { |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2079 c = curwin->w_lcs_chars.space; |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2080 attr = HL_ATTR(HLF_8); |
373278f5bd51
patch 8.2.3424: a sequence of spaces is hard to see in list mode
Bram Moolenaar <Bram@vim.org>
parents:
25609
diff
changeset
|
2081 } |
6781 | 2082 } |
7 | 2083 } |
2084 | |
2085 if (c == NUL) | |
2086 break; | |
2087 | |
2088 msg_putchar_attr(c, attr); | |
2089 col++; | |
2090 } | |
2091 msg_clr_eos(); | |
2092 } | |
2093 | |
2094 /* | |
2095 * Use screen_puts() to output one multi-byte character. | |
2096 * Return the pointer "s" advanced to the next character. | |
2097 */ | |
2098 static char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2099 screen_puts_mbyte(char_u *s, int l, int attr) |
7 | 2100 { |
2101 int cw; | |
2102 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2103 msg_didout = TRUE; // remember that line is not empty |
7 | 2104 cw = (*mb_ptr2cells)(s); |
2105 if (cw > 1 && ( | |
2106 #ifdef FEAT_RIGHTLEFT | |
2107 cmdmsg_rl ? msg_col <= 1 : | |
2108 #endif | |
2109 msg_col == Columns - 1)) | |
2110 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2111 // Doesn't fit, print a highlighted '>' to fill it up. |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2112 msg_screen_putchar('>', HL_ATTR(HLF_AT)); |
7 | 2113 return s; |
2114 } | |
2115 | |
2116 screen_puts_len(s, l, msg_row, msg_col, attr); | |
2117 #ifdef FEAT_RIGHTLEFT | |
2118 if (cmdmsg_rl) | |
2119 { | |
2120 msg_col -= cw; | |
2121 if (msg_col == 0) | |
2122 { | |
2123 msg_col = Columns; | |
2124 ++msg_row; | |
2125 } | |
2126 } | |
2127 else | |
2128 #endif | |
2129 { | |
2130 msg_col += cw; | |
2131 if (msg_col >= Columns) | |
2132 { | |
2133 msg_col = 0; | |
2134 ++msg_row; | |
2135 } | |
2136 } | |
2137 return s + l; | |
2138 } | |
2139 | |
2140 /* | |
2141 * Output a string to the screen at position msg_row, msg_col. | |
2142 * Update msg_row and msg_col for the next message. | |
2143 */ | |
2144 void | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
2145 msg_puts(char *s) |
7 | 2146 { |
10141
b67088aae933
commit https://github.com/vim/vim/commit/aeac9006d5d14910f214f09df52c026a5936e737
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2147 msg_puts_attr(s, 0); |
7 | 2148 } |
2149 | |
2150 void | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
2151 msg_puts_title(char *s) |
7 | 2152 { |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2153 msg_puts_attr(s, HL_ATTR(HLF_T)); |
7 | 2154 } |
2155 | |
2156 /* | |
2157 * Show a message in such a way that it always fits in the line. Cut out a | |
2158 * part in the middle and replace it with "..." when necessary. | |
2159 * Does not handle multi-byte characters! | |
2160 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
2161 static void |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
2162 msg_outtrans_long_len_attr(char_u *longstr, int len, int attr) |
7 | 2163 { |
2164 int slen = len; | |
2165 int room; | |
2166 | |
2167 room = Columns - msg_col; | |
2168 if (len > room && room >= 20) | |
2169 { | |
2170 slen = (room - 3) / 2; | |
2171 msg_outtrans_len_attr(longstr, slen, attr); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
2172 msg_puts_attr("...", HL_ATTR(HLF_8)); |
7 | 2173 } |
2174 msg_outtrans_len_attr(longstr + len - slen, slen, attr); | |
2175 } | |
2176 | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
2177 void |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
2178 msg_outtrans_long_attr(char_u *longstr, int attr) |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
2179 { |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
2180 msg_outtrans_long_len_attr(longstr, (int)STRLEN(longstr), attr); |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
2181 } |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
2182 |
7 | 2183 /* |
2184 * Basic function for writing a message with highlight attributes. | |
2185 */ | |
2186 void | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
2187 msg_puts_attr(char *s, int attr) |
7 | 2188 { |
2189 msg_puts_attr_len(s, -1, attr); | |
2190 } | |
2191 | |
2192 /* | |
2193 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes). | |
2194 * When "maxlen" is -1 there is no maximum length. | |
2195 * When "maxlen" is >= 0 the message is not put in the history. | |
2196 */ | |
2197 static void | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
2198 msg_puts_attr_len(char *str, int maxlen, int attr) |
7 | 2199 { |
2200 /* | |
2201 * If redirection is on, also write to the redirection file. | |
2202 */ | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
2203 redir_write((char_u *)str, maxlen); |
7 | 2204 |
2205 /* | |
2206 * Don't print anything when using ":silent cmd". | |
2207 */ | |
2208 if (msg_silent != 0) | |
2209 return; | |
2210 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2211 // if MSG_HIST flag set, add message to history |
7 | 2212 if ((attr & MSG_HIST) && maxlen < 0) |
2213 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
2214 add_msg_hist((char_u *)str, -1, attr); |
7 | 2215 attr &= ~MSG_HIST; |
2216 } | |
2217 | |
18293
1c5974759bcd
patch 8.1.2141: :tselect has an extra hit-enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
18176
diff
changeset
|
2218 // When writing something to the screen after it has scrolled, requires a |
1c5974759bcd
patch 8.1.2141: :tselect has an extra hit-enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
18176
diff
changeset
|
2219 // wait-return prompt later. Needed when scrolling, resetting |
1c5974759bcd
patch 8.1.2141: :tselect has an extra hit-enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
18176
diff
changeset
|
2220 // need_wait_return after some prompt, and then outputting something |
1c5974759bcd
patch 8.1.2141: :tselect has an extra hit-enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
18176
diff
changeset
|
2221 // without scrolling |
1c5974759bcd
patch 8.1.2141: :tselect has an extra hit-enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
18176
diff
changeset
|
2222 // Not needed when only using CR to move the cursor. |
1c5974759bcd
patch 8.1.2141: :tselect has an extra hit-enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
18176
diff
changeset
|
2223 if (msg_scrolled != 0 && !msg_scrolled_ign && STRCMP(str, "\r") != 0) |
7 | 2224 need_wait_return = TRUE; |
18293
1c5974759bcd
patch 8.1.2141: :tselect has an extra hit-enter prompt
Bram Moolenaar <Bram@vim.org>
parents:
18176
diff
changeset
|
2225 msg_didany = TRUE; // remember that something was outputted |
7 | 2226 |
2227 /* | |
2228 * If there is no valid screen, use fprintf so we can see error messages. | |
2229 * If termcap is not active, we may be writing in an alternate console | |
2230 * window, cursor positioning may not work correctly (window size may be | |
2231 * different, e.g. for Win32 console) or we just don't know where the | |
2232 * cursor is. | |
2233 */ | |
2234 if (msg_use_printf()) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
2235 msg_puts_printf((char_u *)str, maxlen); |
446 | 2236 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
2237 msg_puts_display((char_u *)str, maxlen, attr, FALSE); |
27255
8c43e3d1a6e5
patch 8.2.4156: fileinfo message overwrites echo'ed message
Bram Moolenaar <Bram@vim.org>
parents:
27022
diff
changeset
|
2238 |
8c43e3d1a6e5
patch 8.2.4156: fileinfo message overwrites echo'ed message
Bram Moolenaar <Bram@vim.org>
parents:
27022
diff
changeset
|
2239 need_fileinfo = FALSE; |
446 | 2240 } |
2241 | |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2242 // values for "where" |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2243 #define PUT_APPEND 0 // append to "lnum" |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2244 #define PUT_TRUNC 1 // replace "lnum" |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2245 #define PUT_BELOW 2 // add below "lnum" |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2246 // |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2247 #ifdef HAS_MESSAGE_WINDOW |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2248 /* |
29982
b579e1f5e7e2
patch 9.0.0329: ":highlight" hangs when 'cmdheight' is zero
Bram Moolenaar <Bram@vim.org>
parents:
29966
diff
changeset
|
2249 * Put text "t_s" until "end" in the message window. |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2250 * "where" specifies where to put the text. |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2251 */ |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2252 static void |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2253 put_msg_win(win_T *wp, int where, char_u *t_s, char_u *end, linenr_T lnum) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2254 { |
29902
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2255 char_u *p; |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2256 |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2257 if (where == PUT_BELOW) |
29902
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2258 { |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2259 if (*end != NUL) |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2260 { |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2261 p = vim_strnsave(t_s, end - t_s); |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2262 if (p == NULL) |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2263 return; |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2264 } |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2265 else |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2266 p = t_s; |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2267 ml_append_buf(wp->w_buffer, lnum, p, (colnr_T)0, FALSE); |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2268 if (p != t_s) |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2269 vim_free(p); |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2270 } |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2271 else |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2272 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2273 char_u *newp; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2274 |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2275 curbuf = wp->w_buffer; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2276 if (where == PUT_APPEND) |
29902
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2277 { |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2278 newp = concat_str(ml_get(lnum), t_s); |
29902
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2279 if (newp == NULL) |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2280 return; |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2281 if (*end != NUL) |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2282 newp[STRLEN(ml_get(lnum)) + (end - t_s)] = NUL; |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2283 } |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2284 else |
29902
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2285 { |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2286 newp = vim_strnsave(t_s, end - t_s); |
29902
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2287 if (newp == NULL) |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2288 return; |
ab2d83e147ca
patch 9.0.0289: invalid memory write
Bram Moolenaar <Bram@vim.org>
parents:
29900
diff
changeset
|
2289 } |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2290 ml_replace(lnum, newp, FALSE); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2291 curbuf = curwin->w_buffer; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2292 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2293 redraw_win_later(wp, UPD_NOT_VALID); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2294 |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2295 // set msg_col so that a newline is written if needed |
29982
b579e1f5e7e2
patch 9.0.0329: ":highlight" hangs when 'cmdheight' is zero
Bram Moolenaar <Bram@vim.org>
parents:
29966
diff
changeset
|
2296 msg_col += (int)(end - t_s); |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2297 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2298 #endif |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2299 |
446 | 2300 /* |
2301 * The display part of msg_puts_attr_len(). | |
2302 * May be called recursively to display scroll-back text. | |
2303 */ | |
2304 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2305 msg_puts_display( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2306 char_u *str, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2307 int maxlen, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2308 int attr, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2309 int recurse) |
446 | 2310 { |
2311 char_u *s = str; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2312 char_u *t_s = str; // string from "t_s" to "s" is still todo |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2313 int t_col = 0; // screen cells todo, 0 when "t_s" not used |
446 | 2314 int l; |
2315 int cw; | |
2316 char_u *sb_str = str; | |
2317 int sb_col = msg_col; | |
2318 int wrap; | |
1381 | 2319 int did_last_char; |
29904
2516775e8134
patch 9.0.0290: compiler warning for variable set but not used
Bram Moolenaar <Bram@vim.org>
parents:
29902
diff
changeset
|
2320 #ifdef HAS_MESSAGE_WINDOW |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2321 int where = PUT_APPEND; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2322 win_T *msg_win = NULL; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2323 linenr_T lnum = 1; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2324 |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29982
diff
changeset
|
2325 if (in_echowindow) |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2326 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2327 msg_win = popup_get_message_win(); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2328 |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2329 if (msg_win != NULL) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2330 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2331 if (!popup_message_win_visible()) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2332 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2333 if (*str == NL) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2334 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2335 // When not showing the message window and the output |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2336 // starts with a NL show the message normally. |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2337 msg_win = NULL; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2338 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2339 else |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2340 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2341 // currently hidden, make it empty |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2342 curbuf = msg_win->w_buffer; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2343 while ((curbuf->b_ml.ml_flags & ML_EMPTY) == 0) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2344 ml_delete(1); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2345 curbuf = curwin->w_buffer; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2346 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2347 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2348 else |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2349 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2350 lnum = msg_win->w_buffer->b_ml.ml_line_count; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2351 if (msg_col == 0) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2352 where = PUT_TRUNC; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2353 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2354 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2355 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2356 #endif |
7 | 2357 |
2358 did_wait_return = FALSE; | |
1339 | 2359 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL) |
7 | 2360 { |
2361 /* | |
446 | 2362 * We are at the end of the screen line when: |
2363 * - When outputting a newline. | |
2364 * - When outputting a character in the last column. | |
7 | 2365 */ |
446 | 2366 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || ( |
7 | 2367 #ifdef FEAT_RIGHTLEFT |
2368 cmdmsg_rl | |
2369 ? ( | |
2370 msg_col <= 1 | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2371 || (*s == TAB && msg_col <= 7) |
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2372 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2)) |
7 | 2373 : |
2374 #endif | |
18866
a686560cf6c9
patch 8.1.2419: with a long file name the hit-enter prompt appears
Bram Moolenaar <Bram@vim.org>
parents:
18829
diff
changeset
|
2375 ((*s != '\r' && msg_col + t_col >= Columns - 1) |
7 | 2376 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7)) |
2377 || (has_mbyte && (*mb_ptr2cells)(s) > 1 | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2378 && msg_col + t_col >= Columns - 2))))) |
7 | 2379 { |
446 | 2380 /* |
2381 * The screen is scrolled up when at the last row (some terminals | |
2382 * scroll automatically, some don't. To avoid problems we scroll | |
2383 * ourselves). | |
2384 */ | |
7 | 2385 if (t_col > 0) |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2386 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2387 // output postponed text |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2388 #ifdef HAS_MESSAGE_WINDOW |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2389 if (msg_win != NULL) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2390 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2391 put_msg_win(msg_win, where, t_s, s, lnum); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2392 t_col = 0; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2393 where = PUT_BELOW; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2394 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2395 else |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2396 #endif |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2397 t_puts(&t_col, t_s, s, attr); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2398 } |
7 | 2399 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2400 // When no more prompt and no more room, truncate here |
7 | 2401 if (msg_no_more && lines_left == 0) |
2402 break; | |
446 | 2403 |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2404 #ifdef HAS_MESSAGE_WINDOW |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2405 if (msg_win == NULL) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2406 #endif |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2407 // Scroll the screen up one line. |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2408 msg_scroll_up(); |
7 | 2409 |
2410 msg_row = Rows - 2; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2411 if (msg_col >= Columns) // can happen after screen resize |
7 | 2412 msg_col = Columns - 1; |
2413 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2414 // Display char in last column before showing more-prompt. |
446 | 2415 if (*s >= ' ' |
2416 #ifdef FEAT_RIGHTLEFT | |
2417 && !cmdmsg_rl | |
2418 #endif | |
2419 ) | |
2420 { | |
2421 if (has_mbyte) | |
2422 { | |
2423 if (enc_utf8 && maxlen >= 0) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2424 // avoid including composing chars after the end |
474 | 2425 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s)); |
446 | 2426 else |
474 | 2427 l = (*mb_ptr2len)(s); |
446 | 2428 s = screen_puts_mbyte(s, l, attr); |
2429 } | |
2430 else | |
2431 msg_screen_putchar(*s++, attr); | |
1381 | 2432 did_last_char = TRUE; |
446 | 2433 } |
1381 | 2434 else |
2435 did_last_char = FALSE; | |
446 | 2436 |
2437 if (p_more) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2438 // store text for scrolling back |
446 | 2439 store_sb_text(&sb_str, s, attr, &sb_col, TRUE); |
2440 | |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2441 #ifdef HAS_MESSAGE_WINDOW |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2442 if (msg_win == NULL) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2443 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2444 #endif |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2445 inc_msg_scrolled(); |
29960
4fcf816aa806
patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
29954
diff
changeset
|
2446 need_wait_return = TRUE; // may need wait_return() in main() |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2447 redraw_cmdline = TRUE; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2448 if (cmdline_row > 0 && !exmode_active) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2449 --cmdline_row; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2450 |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2451 /* |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2452 * If screen is completely filled and 'more' is set then wait |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2453 * for a character. |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2454 */ |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2455 if (lines_left > 0) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2456 --lines_left; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2457 #ifdef HAS_MESSAGE_WINDOW |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2458 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2459 #endif |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
2460 if (p_more && lines_left == 0 && State != MODE_HITRETURN |
7 | 2461 && !msg_no_more && !exmode_active) |
2462 { | |
2463 #ifdef FEAT_CON_DIALOG | |
446 | 2464 if (do_more_prompt(NUL)) |
2465 s = confirm_msg_tail; | |
2466 #else | |
2467 (void)do_more_prompt(NUL); | |
7 | 2468 #endif |
2469 if (quit_more) | |
446 | 2470 return; |
7 | 2471 } |
539 | 2472 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2473 // When we displayed a char in last column need to check if there |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2474 // is still more. |
1381 | 2475 if (did_last_char) |
539 | 2476 continue; |
7 | 2477 } |
2478 | |
446 | 2479 wrap = *s == '\n' |
7 | 2480 || msg_col + t_col >= Columns |
2481 || (has_mbyte && (*mb_ptr2cells)(s) > 1 | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2482 && msg_col + t_col >= Columns - 1); |
446 | 2483 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b' |
2484 || *s == '\t' || *s == BELL)) | |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2485 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2486 // output any postponed text |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2487 #ifdef HAS_MESSAGE_WINDOW |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2488 if (msg_win != NULL) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2489 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2490 put_msg_win(msg_win, where, t_s, s, lnum); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2491 t_col = 0; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2492 where = PUT_BELOW; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2493 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2494 else |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2495 #endif |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2496 t_puts(&t_col, t_s, s, attr); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2497 } |
446 | 2498 |
2499 if (wrap && p_more && !recurse) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2500 // store text for scrolling back |
446 | 2501 store_sb_text(&sb_str, s, attr, &sb_col, TRUE); |
7 | 2502 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2503 if (*s == '\n') // go to next line |
7 | 2504 { |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2505 #ifdef HAS_MESSAGE_WINDOW |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2506 if (msg_win != NULL) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2507 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2508 // Ignore a NL when the buffer is empty, it is used to scroll |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2509 // up the text. |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2510 if ((msg_win->w_buffer->b_ml.ml_flags & ML_EMPTY) == 0) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2511 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2512 put_msg_win(msg_win, PUT_BELOW, t_s, t_s, lnum); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2513 ++lnum; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2514 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2515 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2516 else |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2517 #endif |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2518 msg_didout = FALSE; // remember that line is empty |
474 | 2519 #ifdef FEAT_RIGHTLEFT |
2520 if (cmdmsg_rl) | |
2521 msg_col = Columns - 1; | |
2522 else | |
2523 #endif | |
2524 msg_col = 0; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2525 if (++msg_row >= Rows) // safety check |
7 | 2526 msg_row = Rows - 1; |
2527 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2528 else if (*s == '\r') // go to column 0 |
7 | 2529 { |
2530 msg_col = 0; | |
29904
2516775e8134
patch 9.0.0290: compiler warning for variable set but not used
Bram Moolenaar <Bram@vim.org>
parents:
29902
diff
changeset
|
2531 #ifdef HAS_MESSAGE_WINDOW |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2532 where = PUT_TRUNC; |
29904
2516775e8134
patch 9.0.0290: compiler warning for variable set but not used
Bram Moolenaar <Bram@vim.org>
parents:
29902
diff
changeset
|
2533 #endif |
7 | 2534 } |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2535 else if (*s == '\b') // go to previous char |
7 | 2536 { |
2537 if (msg_col) | |
2538 --msg_col; | |
2539 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2540 else if (*s == TAB) // translate Tab into spaces |
7 | 2541 { |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2542 #ifdef HAS_MESSAGE_WINDOW |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2543 if (msg_win != NULL) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2544 msg_col = (msg_col + 7) % 8; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2545 else |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2546 #endif |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2547 do |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2548 msg_screen_putchar(' ', attr); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2549 while (msg_col & 7); |
7 | 2550 } |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2551 else if (*s == BELL) // beep (from ":sh") |
6949 | 2552 vim_beep(BO_SH); |
7 | 2553 else |
2554 { | |
2555 if (has_mbyte) | |
2556 { | |
2557 cw = (*mb_ptr2cells)(s); | |
2558 if (enc_utf8 && maxlen >= 0) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2559 // avoid including composing chars after the end |
474 | 2560 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s)); |
7 | 2561 else |
474 | 2562 l = (*mb_ptr2len)(s); |
7 | 2563 } |
2564 else | |
2565 { | |
2566 cw = 1; | |
2567 l = 1; | |
2568 } | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2569 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2570 // When drawing from right to left or when a double-wide character |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2571 // doesn't fit, draw a single character here. Otherwise collect |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2572 // characters and draw them all at once later. |
7 | 2573 if ( |
2574 # ifdef FEAT_RIGHTLEFT | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2575 cmdmsg_rl || |
7 | 2576 # endif |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2577 (cw > 1 && msg_col + t_col >= Columns - 1)) |
7 | 2578 { |
2579 if (l > 1) | |
2580 s = screen_puts_mbyte(s, l, attr) - 1; | |
2581 else | |
2582 msg_screen_putchar(*s, attr); | |
2583 } | |
2584 else | |
2585 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2586 // postpone this character until later |
7 | 2587 if (t_col == 0) |
2588 t_s = s; | |
2589 t_col += cw; | |
2590 s += l - 1; | |
2591 } | |
2592 } | |
2593 ++s; | |
2594 } | |
2595 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2596 // output any postponed text |
7 | 2597 if (t_col > 0) |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2598 { |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2599 #ifdef HAS_MESSAGE_WINDOW |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2600 if (msg_win != NULL) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2601 put_msg_win(msg_win, where, t_s, s, lnum); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2602 else |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2603 #endif |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2604 t_puts(&t_col, t_s, s, attr); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2605 } |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2606 |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2607 #ifdef HAS_MESSAGE_WINDOW |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2608 if (msg_win != NULL) |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2609 popup_show_message_win(); |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2610 #endif |
30519
4a88061200c2
patch 9.0.0595: extra newline in messages after a verbose shell message
Bram Moolenaar <Bram@vim.org>
parents:
30513
diff
changeset
|
2611 // Store the text for scroll back, unless it's a newline by itself. |
4a88061200c2
patch 9.0.0595: extra newline in messages after a verbose shell message
Bram Moolenaar <Bram@vim.org>
parents:
30513
diff
changeset
|
2612 if (p_more && !recurse && !(s == sb_str + 1 && *sb_str == '\n')) |
446 | 2613 store_sb_text(&sb_str, s, attr, &sb_col, FALSE); |
7 | 2614 |
2615 msg_check(); | |
2616 } | |
2617 | |
2618 /* | |
9941
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2619 * Return TRUE when ":filter pattern" was used and "msg" does not match |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2620 * "pattern". |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2621 */ |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2622 int |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2623 message_filtered(char_u *msg) |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2624 { |
9980
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9941
diff
changeset
|
2625 int match; |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9941
diff
changeset
|
2626 |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22592
diff
changeset
|
2627 if (cmdmod.cmod_filter_regmatch.regprog == NULL) |
9980
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9941
diff
changeset
|
2628 return FALSE; |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22592
diff
changeset
|
2629 match = vim_regexec(&cmdmod.cmod_filter_regmatch, msg, (colnr_T)0); |
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22592
diff
changeset
|
2630 return cmdmod.cmod_filter_force ? match : !match; |
9941
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2631 } |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2632 |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2633 /* |
446 | 2634 * Scroll the screen up one line for displaying the next message line. |
2635 */ | |
2636 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2637 msg_scroll_up(void) |
446 | 2638 { |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2639 #ifdef HAS_MESSAGE_WINDOW |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29982
diff
changeset
|
2640 if (in_echowindow) |
29900
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2641 return; |
a6721cafbc74
patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed
Bram Moolenaar <Bram@vim.org>
parents:
29812
diff
changeset
|
2642 #endif |
446 | 2643 #ifdef FEAT_GUI |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2644 // Remove the cursor before scrolling, ScreenLines[] is going |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2645 // to become invalid. |
446 | 2646 if (gui.in_use) |
2647 gui_undraw_cursor(); | |
2648 #endif | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2649 // scrolling up always works |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
2650 mch_disable_flush(); |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12015
diff
changeset
|
2651 screen_del_lines(0, 0, 1, (int)Rows, TRUE, 0, NULL); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
2652 mch_enable_flush(); |
446 | 2653 |
2654 if (!can_clear((char_u *)" ")) | |
2655 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2656 // Scrolling up doesn't result in the right background. Set the |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2657 // background here. It's not efficient, but avoids that we have to do |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2658 // it all over the code. |
446 | 2659 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); |
2660 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2661 // Also clear the last char of the last but one line if it was not |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2662 // cleared before to avoid a scroll-up. |
446 | 2663 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1) |
2664 screen_fill((int)Rows - 2, (int)Rows - 1, | |
2665 (int)Columns - 1, (int)Columns, ' ', ' ', 0); | |
2666 } | |
2667 } | |
2668 | |
2669 /* | |
539 | 2670 * Increment "msg_scrolled". |
2671 */ | |
2672 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2673 inc_msg_scrolled(void) |
539 | 2674 { |
2675 #ifdef FEAT_EVAL | |
2676 if (*get_vim_var_str(VV_SCROLLSTART) == NUL) | |
2677 { | |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2678 char_u *p = SOURCING_NAME; |
539 | 2679 char_u *tofree = NULL; |
2680 int len; | |
2681 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2682 // v:scrollstart is empty, set it to the script/function name and line |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2683 // number |
539 | 2684 if (p == NULL) |
2685 p = (char_u *)_("Unknown"); | |
2686 else | |
2687 { | |
835 | 2688 len = (int)STRLEN(p) + 40; |
539 | 2689 tofree = alloc(len); |
2690 if (tofree != NULL) | |
2691 { | |
2692 vim_snprintf((char *)tofree, len, _("%s line %ld"), | |
18991
847cc7932c42
patch 8.2.0056: execution stack is incomplete and inefficient
Bram Moolenaar <Bram@vim.org>
parents:
18949
diff
changeset
|
2693 p, (long)SOURCING_LNUM); |
539 | 2694 p = tofree; |
2695 } | |
2696 } | |
2697 set_vim_var_string(VV_SCROLLSTART, p, -1); | |
2698 vim_free(tofree); | |
2699 } | |
2700 #endif | |
2701 ++msg_scrolled; | |
29812
68ef14b21d01
patch 9.0.0245: mechanism to prevent recursive screen updating is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
29775
diff
changeset
|
2702 set_must_redraw(UPD_VALID); |
539 | 2703 } |
2704 | |
2705 /* | |
446 | 2706 * To be able to scroll back at the "more" and "hit-enter" prompts we need to |
2707 * store the displayed text and remember where screen lines start. | |
2708 */ | |
2709 typedef struct msgchunk_S msgchunk_T; | |
2710 struct msgchunk_S | |
2711 { | |
2712 msgchunk_T *sb_next; | |
2713 msgchunk_T *sb_prev; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2714 char sb_eol; // TRUE when line ends after this text |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2715 int sb_msg_col; // column in which text starts |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2716 int sb_attr; // text attributes |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2717 char_u sb_text[1]; // text to be displayed, actually longer |
446 | 2718 }; |
2719 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2720 static msgchunk_T *last_msgchunk = NULL; // last displayed text |
446 | 2721 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
2722 static msgchunk_T *msg_sb_start(msgchunk_T *mps); |
446 | 2723 |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2724 typedef enum { |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2725 SB_CLEAR_NONE = 0, |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2726 SB_CLEAR_ALL, |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2727 SB_CLEAR_CMDLINE_BUSY, |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2728 SB_CLEAR_CMDLINE_DONE |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2729 } sb_clear_T; |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2730 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2731 // When to clear text on next msg. |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2732 static sb_clear_T do_clear_sb_text = SB_CLEAR_NONE; |
447 | 2733 |
446 | 2734 /* |
2735 * Store part of a printed message for displaying when scrolling back. | |
2736 */ | |
2737 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2738 store_sb_text( |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2739 char_u **sb_str, // start of string |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2740 char_u *s, // just after string |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2741 int attr, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2742 int *sb_col, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2743 int finish) // line ends |
446 | 2744 { |
2745 msgchunk_T *mp; | |
2746 | |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2747 if (do_clear_sb_text == SB_CLEAR_ALL |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2748 || do_clear_sb_text == SB_CLEAR_CMDLINE_DONE) |
447 | 2749 { |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2750 clear_sb_text(do_clear_sb_text == SB_CLEAR_ALL); |
29515
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2751 msg_sb_eol(); // prevent messages from overlapping |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2752 do_clear_sb_text = SB_CLEAR_NONE; |
447 | 2753 } |
2754 | |
446 | 2755 if (s > *sb_str) |
2756 { | |
31877
9f28cca2410a
patch 9.0.1271: using sizeof() and subtract array size is tricky
Bram Moolenaar <Bram@vim.org>
parents:
31728
diff
changeset
|
2757 mp = alloc(offsetof(msgchunk_T, sb_text) + (s - *sb_str) + 1); |
446 | 2758 if (mp != NULL) |
2759 { | |
2760 mp->sb_eol = finish; | |
2761 mp->sb_msg_col = *sb_col; | |
2762 mp->sb_attr = attr; | |
2763 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str); | |
2764 | |
2765 if (last_msgchunk == NULL) | |
2766 { | |
2767 last_msgchunk = mp; | |
2768 mp->sb_prev = NULL; | |
2769 } | |
2770 else | |
2771 { | |
2772 mp->sb_prev = last_msgchunk; | |
2773 last_msgchunk->sb_next = mp; | |
2774 last_msgchunk = mp; | |
2775 } | |
2776 mp->sb_next = NULL; | |
2777 } | |
2778 } | |
2779 else if (finish && last_msgchunk != NULL) | |
2780 last_msgchunk->sb_eol = TRUE; | |
2781 | |
2782 *sb_str = s; | |
2783 *sb_col = 0; | |
2784 } | |
2785 | |
2786 /* | |
447 | 2787 * Finished showing messages, clear the scroll-back text on the next message. |
2788 */ | |
2789 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2790 may_clear_sb_text(void) |
447 | 2791 { |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2792 do_clear_sb_text = SB_CLEAR_ALL; |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2793 } |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2794 |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2795 /* |
29515
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2796 * Starting to edit the command line: do not clear messages now. |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2797 */ |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2798 void |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2799 sb_text_start_cmdline(void) |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2800 { |
29515
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2801 if (do_clear_sb_text == SB_CLEAR_CMDLINE_BUSY) |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2802 // Invoking command line recursively: the previous-level command line |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2803 // doesn't need to be remembered as it will be redrawn when returning |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2804 // to that level. |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2805 sb_text_restart_cmdline(); |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2806 else |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2807 { |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2808 msg_sb_eol(); |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2809 do_clear_sb_text = SB_CLEAR_CMDLINE_BUSY; |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2810 } |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2811 } |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2812 |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2813 /* |
29515
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2814 * Redrawing the command line: clear the last unfinished line. |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2815 */ |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2816 void |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2817 sb_text_restart_cmdline(void) |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2818 { |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2819 msgchunk_T *tofree; |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2820 |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2821 // Needed when returning from nested command line. |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2822 do_clear_sb_text = SB_CLEAR_CMDLINE_BUSY; |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2823 |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2824 if (last_msgchunk == NULL || last_msgchunk->sb_eol) |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2825 // No unfinished line: don't clear anything. |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2826 return; |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2827 |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2828 tofree = msg_sb_start(last_msgchunk); |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2829 last_msgchunk = tofree->sb_prev; |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2830 if (last_msgchunk != NULL) |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2831 last_msgchunk->sb_next = NULL; |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2832 while (tofree != NULL) |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2833 { |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2834 msgchunk_T *tofree_next = tofree->sb_next; |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2835 |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2836 vim_free(tofree); |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2837 tofree = tofree_next; |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2838 } |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2839 } |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2840 |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2841 /* |
e988bbf50e09
patch 9.0.0099: scrollback can be wrong after redrawing the command line
Bram Moolenaar <Bram@vim.org>
parents:
29459
diff
changeset
|
2842 * Ending to edit the command line: clear old lines but the last one later. |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2843 */ |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2844 void |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2845 sb_text_end_cmdline(void) |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2846 { |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2847 do_clear_sb_text = SB_CLEAR_CMDLINE_DONE; |
447 | 2848 } |
2849 | |
2850 /* | |
446 | 2851 * Clear any text remembered for scrolling back. |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2852 * When "all" is FALSE keep the last line. |
446 | 2853 * Called when redrawing the screen. |
2854 */ | |
2855 void | |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2856 clear_sb_text(int all) |
446 | 2857 { |
2858 msgchunk_T *mp; | |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2859 msgchunk_T **lastp; |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2860 |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2861 if (all) |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2862 lastp = &last_msgchunk; |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2863 else |
446 | 2864 { |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2865 if (last_msgchunk == NULL) |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2866 return; |
29459
7a2569ab418e
patch 9.0.0071: command overlaps with printed text in scrollback
Bram Moolenaar <Bram@vim.org>
parents:
29404
diff
changeset
|
2867 lastp = &msg_sb_start(last_msgchunk)->sb_prev; |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2868 } |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2869 |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2870 while (*lastp != NULL) |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2871 { |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2872 mp = (*lastp)->sb_prev; |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2873 vim_free(*lastp); |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2874 *lastp = mp; |
446 | 2875 } |
2876 } | |
2877 | |
2878 /* | |
447 | 2879 * "g<" command. |
2880 */ | |
2881 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2882 show_sb_text(void) |
447 | 2883 { |
2884 msgchunk_T *mp; | |
2885 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2886 // Only show something if there is more than one line, otherwise it looks |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2887 // weird, typing a command without output results in one line. |
447 | 2888 mp = msg_sb_start(last_msgchunk); |
2889 if (mp == NULL || mp->sb_prev == NULL) | |
6949 | 2890 vim_beep(BO_MESS); |
447 | 2891 else |
2892 { | |
2893 do_more_prompt('G'); | |
2894 wait_return(FALSE); | |
2895 } | |
2896 } | |
2897 | |
2898 /* | |
446 | 2899 * Move to the start of screen line in already displayed text. |
2900 */ | |
2901 static msgchunk_T * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2902 msg_sb_start(msgchunk_T *mps) |
446 | 2903 { |
2904 msgchunk_T *mp = mps; | |
2905 | |
2906 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol) | |
2907 mp = mp->sb_prev; | |
2908 return mp; | |
2909 } | |
2910 | |
2911 /* | |
3435 | 2912 * Mark the last message chunk as finishing the line. |
2913 */ | |
2914 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2915 msg_sb_eol(void) |
3435 | 2916 { |
2917 if (last_msgchunk != NULL) | |
2918 last_msgchunk->sb_eol = TRUE; | |
2919 } | |
2920 | |
2921 /* | |
446 | 2922 * Display a screen line from previously displayed text at row "row". |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
2923 * When "clear_to_eol" is set clear the rest of the screen line. |
446 | 2924 * Returns a pointer to the text for the next line (can be NULL). |
2925 */ | |
2926 static msgchunk_T * | |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
2927 disp_sb_line(int row, msgchunk_T *smp, int clear_to_eol) |
446 | 2928 { |
2929 msgchunk_T *mp = smp; | |
2930 char_u *p; | |
2931 | |
2932 for (;;) | |
2933 { | |
2934 msg_row = row; | |
2935 msg_col = mp->sb_msg_col; | |
2936 p = mp->sb_text; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2937 if (*p == '\n') // don't display the line break |
446 | 2938 ++p; |
2939 msg_puts_display(p, -1, mp->sb_attr, TRUE); | |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
2940 |
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
2941 // If clearing the screen did not work (e.g. because of a background |
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
2942 // color and t_ut isn't set) clear until the last column here. |
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
2943 if (clear_to_eol) |
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
2944 screen_fill(row, row + 1, msg_col, (int)Columns, ' ', ' ', 0); |
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
2945 |
446 | 2946 if (mp->sb_eol || mp->sb_next == NULL) |
2947 break; | |
2948 mp = mp->sb_next; | |
2949 } | |
2950 return mp->sb_next; | |
2951 } | |
2952 | |
2953 /* | |
7 | 2954 * Output any postponed text for msg_puts_attr_len(). |
2955 */ | |
2956 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2957 t_puts( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2958 int *t_col, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2959 char_u *t_s, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2960 char_u *s, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2961 int attr) |
7 | 2962 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2963 // output postponed text |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2964 msg_didout = TRUE; // remember that line is not empty |
7 | 2965 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr); |
446 | 2966 msg_col += *t_col; |
2967 *t_col = 0; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2968 // If the string starts with a composing character don't increment the |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
2969 // column position for it. |
7 | 2970 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s))) |
2971 --msg_col; | |
2972 if (msg_col >= Columns) | |
2973 { | |
2974 msg_col = 0; | |
2975 ++msg_row; | |
2976 } | |
2977 } | |
2978 | |
2979 /* | |
2980 * Returns TRUE when messages should be printed with mch_errmsg(). | |
2981 * This is used when there is no valid screen, so we can see error messages. | |
2982 * If termcap is not active, we may be writing in an alternate console | |
2983 * window, cursor positioning may not work correctly (window size may be | |
2984 * different, e.g. for Win32 console) or we just don't know where the | |
2985 * cursor is. | |
2986 */ | |
2987 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2988 msg_use_printf(void) |
7 | 2989 { |
2990 return (!msg_check_screen() | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
2991 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
2992 # ifdef VIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
2993 || (!gui.in_use && !termcap_active) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
2994 # else |
7 | 2995 || !termcap_active |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
2996 # endif |
7 | 2997 #endif |
2998 || (swapping_screen() && !termcap_active) | |
2999 ); | |
3000 } | |
3001 | |
446 | 3002 /* |
3003 * Print a message when there is no valid screen. | |
3004 */ | |
3005 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3006 msg_puts_printf(char_u *str, int maxlen) |
446 | 3007 { |
3008 char_u *s = str; | |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3009 char_u *buf = NULL; |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3010 char_u *p = s; |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3011 |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15840
diff
changeset
|
3012 #ifdef MSWIN |
446 | 3013 if (!(silent_mode && p_verbose == 0)) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3014 mch_settmode(TMODE_COOK); // handle CR and NL correctly |
446 | 3015 #endif |
10158
dd0531938cb6
commit https://github.com/vim/vim/commit/2321ca2a78286bc026fa7f407281ddbeb04114bb
Christian Brabandt <cb@256bit.org>
parents:
10141
diff
changeset
|
3016 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL) |
446 | 3017 { |
3018 if (!(silent_mode && p_verbose == 0)) | |
3019 { | |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3020 // NL --> CR NL translation (for Unix, not for "--version") |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3021 if (*s == NL) |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3022 { |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3023 int n = (int)(s - p); |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3024 |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3025 buf = alloc(n + 3); |
17797
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3026 if (buf != NULL) |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3027 { |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3028 memcpy(buf, p, n); |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3029 if (!info_message) |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3030 buf[n++] = CAR; |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3031 buf[n++] = NL; |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3032 buf[n++] = NUL; |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3033 if (info_message) // informative message, not an error |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3034 mch_msg((char *)buf); |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3035 else |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3036 mch_errmsg((char *)buf); |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3037 vim_free(buf); |
ec1717981acf
patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
3038 } |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3039 p = s + 1; |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3040 } |
446 | 3041 } |
3042 | |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3043 // primitive way to compute the current column |
446 | 3044 #ifdef FEAT_RIGHTLEFT |
3045 if (cmdmsg_rl) | |
3046 { | |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3047 if (*s == CAR || *s == NL) |
446 | 3048 msg_col = Columns - 1; |
3049 else | |
3050 --msg_col; | |
3051 } | |
3052 else | |
3053 #endif | |
3054 { | |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3055 if (*s == CAR || *s == NL) |
446 | 3056 msg_col = 0; |
3057 else | |
3058 ++msg_col; | |
3059 } | |
3060 ++s; | |
3061 } | |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3062 |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3063 if (*p != NUL && !(silent_mode && p_verbose == 0)) |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3064 { |
24938
ac0211a9fb6a
patch 8.2.3006: crash when echoing a value very early
Bram Moolenaar <Bram@vim.org>
parents:
24406
diff
changeset
|
3065 char_u *tofree = NULL; |
15926
ca0a0b64809c
patch 8.1.0969: message written during startup is truncated
Bram Moolenaar <Bram@vim.org>
parents:
15896
diff
changeset
|
3066 |
31624
d605a50e7623
patch 9.0.1144: reading beyond text
Bram Moolenaar <Bram@vim.org>
parents:
31289
diff
changeset
|
3067 if (maxlen > 0 && vim_strlen_maxlen((char *)p, (size_t)maxlen) |
d605a50e7623
patch 9.0.1144: reading beyond text
Bram Moolenaar <Bram@vim.org>
parents:
31289
diff
changeset
|
3068 >= (size_t)maxlen) |
15926
ca0a0b64809c
patch 8.1.0969: message written during startup is truncated
Bram Moolenaar <Bram@vim.org>
parents:
15896
diff
changeset
|
3069 { |
24938
ac0211a9fb6a
patch 8.2.3006: crash when echoing a value very early
Bram Moolenaar <Bram@vim.org>
parents:
24406
diff
changeset
|
3070 tofree = vim_strnsave(p, (size_t)maxlen); |
ac0211a9fb6a
patch 8.2.3006: crash when echoing a value very early
Bram Moolenaar <Bram@vim.org>
parents:
24406
diff
changeset
|
3071 p = tofree; |
15926
ca0a0b64809c
patch 8.1.0969: message written during startup is truncated
Bram Moolenaar <Bram@vim.org>
parents:
15896
diff
changeset
|
3072 } |
24938
ac0211a9fb6a
patch 8.2.3006: crash when echoing a value very early
Bram Moolenaar <Bram@vim.org>
parents:
24406
diff
changeset
|
3073 if (p != NULL) |
ac0211a9fb6a
patch 8.2.3006: crash when echoing a value very early
Bram Moolenaar <Bram@vim.org>
parents:
24406
diff
changeset
|
3074 { |
ac0211a9fb6a
patch 8.2.3006: crash when echoing a value very early
Bram Moolenaar <Bram@vim.org>
parents:
24406
diff
changeset
|
3075 if (info_message) |
ac0211a9fb6a
patch 8.2.3006: crash when echoing a value very early
Bram Moolenaar <Bram@vim.org>
parents:
24406
diff
changeset
|
3076 mch_msg((char *)p); |
ac0211a9fb6a
patch 8.2.3006: crash when echoing a value very early
Bram Moolenaar <Bram@vim.org>
parents:
24406
diff
changeset
|
3077 else |
ac0211a9fb6a
patch 8.2.3006: crash when echoing a value very early
Bram Moolenaar <Bram@vim.org>
parents:
24406
diff
changeset
|
3078 mch_errmsg((char *)p); |
ac0211a9fb6a
patch 8.2.3006: crash when echoing a value very early
Bram Moolenaar <Bram@vim.org>
parents:
24406
diff
changeset
|
3079 vim_free(tofree); |
ac0211a9fb6a
patch 8.2.3006: crash when echoing a value very early
Bram Moolenaar <Bram@vim.org>
parents:
24406
diff
changeset
|
3080 } |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3081 } |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3082 |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3083 msg_didout = TRUE; // assume that line is not empty |
446 | 3084 |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15840
diff
changeset
|
3085 #ifdef MSWIN |
446 | 3086 if (!(silent_mode && p_verbose == 0)) |
3087 mch_settmode(TMODE_RAW); | |
3088 #endif | |
3089 } | |
3090 | |
3091 /* | |
3092 * Show the more-prompt and handle the user response. | |
3093 * This takes care of scrolling back and displaying previously displayed text. | |
447 | 3094 * When at hit-enter prompt "typed_char" is the already typed character, |
3095 * otherwise it's NUL. | |
446 | 3096 * Returns TRUE when jumping ahead to "confirm_msg_tail". |
3097 */ | |
3098 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3099 do_more_prompt(int typed_char) |
446 | 3100 { |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
3101 static int entered = FALSE; |
446 | 3102 int used_typed_char = typed_char; |
3103 int oldState = State; | |
3104 int c; | |
3105 #ifdef FEAT_CON_DIALOG | |
3106 int retval = FALSE; | |
3107 #endif | |
3263 | 3108 int toscroll; |
446 | 3109 msgchunk_T *mp_last = NULL; |
3110 msgchunk_T *mp; | |
3111 int i; | |
3112 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3113 // We get called recursively when a timer callback outputs a message. In |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3114 // that case don't show another prompt. Also when at the hit-Enter prompt |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3115 // and nothing was typed. |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
3116 if (entered || (State == MODE_HITRETURN && typed_char == 0)) |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
3117 return FALSE; |
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
3118 entered = TRUE; |
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
3119 |
447 | 3120 if (typed_char == 'G') |
3121 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3122 // "g<": Find first line on the last page. |
447 | 3123 mp_last = msg_sb_start(last_msgchunk); |
3124 for (i = 0; i < Rows - 2 && mp_last != NULL | |
3125 && mp_last->sb_prev != NULL; ++i) | |
3126 mp_last = msg_sb_start(mp_last->sb_prev); | |
3127 } | |
3128 | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
3129 State = MODE_ASKMORE; |
446 | 3130 setmouse(); |
447 | 3131 if (typed_char == NUL) |
3132 msg_moremsg(FALSE); | |
446 | 3133 for (;;) |
3134 { | |
3135 /* | |
3136 * Get a typed character directly from the user. | |
3137 */ | |
3138 if (used_typed_char != NUL) | |
3139 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3140 c = used_typed_char; // was typed at hit-enter prompt |
446 | 3141 used_typed_char = NUL; |
3142 } | |
3143 else | |
3144 c = get_keystroke(); | |
3145 | |
3146 #if defined(FEAT_MENU) && defined(FEAT_GUI) | |
3147 if (c == K_MENU) | |
3148 { | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
3149 int idx = get_menu_index(current_menu, MODE_ASKMORE); |
446 | 3150 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3151 // Used a menu. If it starts with CTRL-Y, it must |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3152 // be a "Copy" for the clipboard. Otherwise |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3153 // assume that we end |
446 | 3154 if (idx == MENU_INDEX_INVALID) |
3155 continue; | |
3156 c = *current_menu->strings[idx]; | |
3157 if (c != NUL && current_menu->strings[idx][1] != NUL) | |
3158 ins_typebuf(current_menu->strings[idx] + 1, | |
3159 current_menu->noremap[idx], 0, TRUE, | |
3160 current_menu->silent[idx]); | |
3161 } | |
3162 #endif | |
3163 | |
3263 | 3164 toscroll = 0; |
446 | 3165 switch (c) |
3166 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3167 case BS: // scroll one line back |
446 | 3168 case K_BS: |
3169 case 'k': | |
3170 case K_UP: | |
3263 | 3171 toscroll = -1; |
446 | 3172 break; |
3173 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3174 case CAR: // one extra line |
446 | 3175 case NL: |
3176 case 'j': | |
3177 case K_DOWN: | |
3263 | 3178 toscroll = 1; |
446 | 3179 break; |
3180 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3181 case 'u': // Up half a page |
3263 | 3182 toscroll = -(Rows / 2); |
446 | 3183 break; |
3184 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3185 case 'd': // Down half a page |
3263 | 3186 toscroll = Rows / 2; |
446 | 3187 break; |
3188 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3189 case 'b': // one page back |
1820 | 3190 case K_PAGEUP: |
3263 | 3191 toscroll = -(Rows - 1); |
446 | 3192 break; |
3193 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3194 case ' ': // one extra page |
1820 | 3195 case 'f': |
446 | 3196 case K_PAGEDOWN: |
3197 case K_LEFTMOUSE: | |
3263 | 3198 toscroll = Rows - 1; |
446 | 3199 break; |
3200 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3201 case 'g': // all the way back to the start |
3263 | 3202 toscroll = -999999; |
447 | 3203 break; |
3204 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3205 case 'G': // all the way to the end |
3263 | 3206 toscroll = 999999; |
447 | 3207 lines_left = 999999; |
3208 break; | |
3209 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3210 case ':': // start new command line |
446 | 3211 #ifdef FEAT_CON_DIALOG |
3212 if (!confirm_msg_used) | |
3213 #endif | |
3214 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3215 // Since got_int is set all typeahead will be flushed, but we |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3216 // want to keep this ':', remember that in a special way. |
446 | 3217 typeahead_noflush(':'); |
14129
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
3218 #ifdef FEAT_TERMINAL |
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
3219 skip_term_loop = TRUE; |
cb731d098241
patch 8.1.0082: in terminal window, typing : at more prompt, inserts ':'
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
3220 #endif |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3221 cmdline_row = Rows - 1; // put ':' on this line |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3222 skip_redraw = TRUE; // skip redraw once |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3223 need_wait_return = FALSE; // don't wait in main() |
446 | 3224 } |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3225 // FALLTHROUGH |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3226 case 'q': // quit |
446 | 3227 case Ctrl_C: |
3228 case ESC: | |
3229 #ifdef FEAT_CON_DIALOG | |
3230 if (confirm_msg_used) | |
3231 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3232 // Jump to the choices of the dialog. |
446 | 3233 retval = TRUE; |
3234 } | |
3235 else | |
3236 #endif | |
3237 { | |
3238 got_int = TRUE; | |
3239 quit_more = TRUE; | |
3240 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3241 // When there is some more output (wrapping line) display that |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3242 // without another prompt. |
1829 | 3243 lines_left = Rows - 1; |
446 | 3244 break; |
3245 | |
3246 #ifdef FEAT_CLIPBOARD | |
3247 case Ctrl_Y: | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3248 // Strange way to allow copying (yanking) a modeless |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3249 // selection at the more prompt. Use CTRL-Y, |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3250 // because the same is used in Cmdline-mode and at the |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3251 // hit-enter prompt. However, scrolling one line up |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3252 // might be expected... |
446 | 3253 if (clip_star.state == SELECT_DONE) |
3254 clip_copy_modeless_selection(TRUE); | |
3255 continue; | |
3256 #endif | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3257 default: // no valid response |
446 | 3258 msg_moremsg(TRUE); |
3259 continue; | |
3260 } | |
3261 | |
3263 | 3262 if (toscroll != 0) |
446 | 3263 { |
3263 | 3264 if (toscroll < 0) |
446 | 3265 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3266 // go to start of last line |
446 | 3267 if (mp_last == NULL) |
3268 mp = msg_sb_start(last_msgchunk); | |
3269 else if (mp_last->sb_prev != NULL) | |
3270 mp = msg_sb_start(mp_last->sb_prev); | |
3271 else | |
3272 mp = NULL; | |
3273 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3274 // go to start of line at top of the screen |
446 | 3275 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL; |
3276 ++i) | |
3277 mp = msg_sb_start(mp->sb_prev); | |
3278 | |
3279 if (mp != NULL && mp->sb_prev != NULL) | |
3280 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3281 // Find line to be displayed at top. |
3263 | 3282 for (i = 0; i > toscroll; --i) |
446 | 3283 { |
3284 if (mp == NULL || mp->sb_prev == NULL) | |
3285 break; | |
3286 mp = msg_sb_start(mp->sb_prev); | |
3287 if (mp_last == NULL) | |
3288 mp_last = msg_sb_start(last_msgchunk); | |
3289 else | |
3290 mp_last = msg_sb_start(mp_last->sb_prev); | |
3291 } | |
3292 | |
3263 | 3293 if (toscroll == -1 && screen_ins_lines(0, 0, 1, |
12152
69af108df70e
patch 8.0.0956: scrolling in a terminal window has flicker
Christian Brabandt <cb@256bit.org>
parents:
12015
diff
changeset
|
3294 (int)Rows, 0, NULL) == OK) |
446 | 3295 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3296 // display line at top |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
3297 (void)disp_sb_line(0, mp, FALSE); |
446 | 3298 } |
3299 else | |
3300 { | |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
3301 int did_clear = screenclear(); |
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
3302 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3303 // redisplay all lines |
870 | 3304 for (i = 0; mp != NULL && i < Rows - 1; ++i) |
3305 { | |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
3306 mp = disp_sb_line(i, mp, !did_clear); |
870 | 3307 ++msg_scrolled; |
3308 } | |
446 | 3309 } |
3263 | 3310 toscroll = 0; |
446 | 3311 } |
3312 } | |
3313 else | |
3314 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3315 // First display any text that we scrolled back. |
3263 | 3316 while (toscroll > 0 && mp_last != NULL) |
446 | 3317 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3318 // scroll up, display line at bottom |
446 | 3319 msg_scroll_up(); |
539 | 3320 inc_msg_scrolled(); |
446 | 3321 screen_fill((int)Rows - 2, (int)Rows - 1, 0, |
3322 (int)Columns, ' ', ' ', 0); | |
30513
ea15dfc9c155
patch 9.0.0592: display not cleared when scrolling back in messages
Bram Moolenaar <Bram@vim.org>
parents:
30351
diff
changeset
|
3323 mp_last = disp_sb_line((int)Rows - 2, mp_last, FALSE); |
3263 | 3324 --toscroll; |
446 | 3325 } |
3326 } | |
3327 | |
3263 | 3328 if (toscroll <= 0) |
446 | 3329 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3330 // displayed the requested text, more prompt again |
447 | 3331 screen_fill((int)Rows - 1, (int)Rows, 0, |
3332 (int)Columns, ' ', ' ', 0); | |
446 | 3333 msg_moremsg(FALSE); |
3334 continue; | |
3335 } | |
3336 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3337 // display more text, return to caller |
3263 | 3338 lines_left = toscroll; |
446 | 3339 } |
3340 | |
3341 break; | |
3342 } | |
3343 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3344 // clear the --more-- message |
446 | 3345 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); |
3346 State = oldState; | |
3347 setmouse(); | |
3348 if (quit_more) | |
3349 { | |
3350 msg_row = Rows - 1; | |
3351 msg_col = 0; | |
3352 } | |
3353 #ifdef FEAT_RIGHTLEFT | |
3354 else if (cmdmsg_rl) | |
3355 msg_col = Columns - 1; | |
3356 #endif | |
3357 | |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
3358 entered = FALSE; |
446 | 3359 #ifdef FEAT_CON_DIALOG |
3360 return retval; | |
3361 #else | |
3362 return FALSE; | |
3363 #endif | |
3364 } | |
3365 | |
7 | 3366 #if defined(USE_MCH_ERRMSG) || defined(PROTO) |
3367 | |
3368 #ifdef mch_errmsg | |
3369 # undef mch_errmsg | |
3370 #endif | |
3371 #ifdef mch_msg | |
3372 # undef mch_msg | |
3373 #endif | |
3374 | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3375 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3376 static void |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3377 mch_errmsg_c(char *str) |
7 | 3378 { |
15824
6733b8b1caf3
patch 8.1.0919: compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
15822
diff
changeset
|
3379 int len = (int)STRLEN(str); |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3380 DWORD nwrite = 0; |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3381 DWORD mode = 0; |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3382 HANDLE h = GetStdHandle(STD_ERROR_HANDLE); |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3383 |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3384 if (GetConsoleMode(h, &mode) && enc_codepage >= 0 |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3385 && (int)GetConsoleCP() != enc_codepage) |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3386 { |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3387 WCHAR *w = enc_to_utf16((char_u *)str, &len); |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3388 |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3389 WriteConsoleW(h, w, len, &nwrite, NULL); |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3390 vim_free(w); |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3391 } |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3392 else |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3393 { |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3394 fprintf(stderr, "%s", str); |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3395 } |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3396 } |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3397 #endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3398 |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3399 /* |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3400 * Give an error message. To be used when the screen hasn't been initialized |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3401 * yet. When stderr can't be used, collect error messages until the GUI has |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3402 * started and they can be displayed in a message box. |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3403 */ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3404 void |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3405 mch_errmsg(char *str) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3406 { |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3407 #if !defined(MSWIN) || defined(FEAT_GUI_MSWIN) |
7 | 3408 int len; |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3409 #endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3410 |
16596
2f86ca0c1e6b
patch 8.1.1301: when compiled with VIMDLL some messages are not shown
Bram Moolenaar <Bram@vim.org>
parents:
16457
diff
changeset
|
3411 #if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3412 // On Unix use stderr if it's a tty. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3413 // When not going to start the GUI also use stderr. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3414 // On Mac, when started from Finder, stderr is the console. |
7 | 3415 if ( |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3416 # ifdef UNIX |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3417 # ifdef MACOS_X |
7 | 3418 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3419 # else |
7 | 3420 isatty(2) |
3421 # endif | |
3422 # ifdef FEAT_GUI | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3423 || |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3424 # endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3425 # endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3426 # ifdef FEAT_GUI |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3427 !(gui.in_use || gui.starting) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3428 # endif |
7 | 3429 ) |
3430 { | |
3431 fprintf(stderr, "%s", str); | |
3432 return; | |
3433 } | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3434 #endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3435 |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3436 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3437 # ifdef VIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3438 if (!(gui.in_use || gui.starting)) |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3439 # endif |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3440 { |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3441 mch_errmsg_c(str); |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3442 return; |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3443 } |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3444 #endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3445 |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3446 #if !defined(MSWIN) || defined(FEAT_GUI_MSWIN) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3447 // avoid a delay for a message that isn't there |
7 | 3448 emsg_on_display = FALSE; |
3449 | |
3450 len = (int)STRLEN(str) + 1; | |
3451 if (error_ga.ga_growsize == 0) | |
3452 { | |
3453 error_ga.ga_growsize = 80; | |
3454 error_ga.ga_itemsize = 1; | |
3455 } | |
3456 if (ga_grow(&error_ga, len) == OK) | |
3457 { | |
3458 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len, | |
3459 (char_u *)str, len); | |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3460 # ifdef UNIX |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3461 // remove CR characters, they are displayed |
7 | 3462 { |
3463 char_u *p; | |
3464 | |
3465 p = (char_u *)error_ga.ga_data + error_ga.ga_len; | |
3466 for (;;) | |
3467 { | |
3468 p = vim_strchr(p, '\r'); | |
3469 if (p == NULL) | |
3470 break; | |
3471 *p = ' '; | |
3472 } | |
3473 } | |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3474 # endif |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3475 --len; // don't count the NUL at the end |
7 | 3476 error_ga.ga_len += len; |
3477 } | |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3478 #endif |
7 | 3479 } |
3480 | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3481 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3482 static void |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3483 mch_msg_c(char *str) |
7 | 3484 { |
15824
6733b8b1caf3
patch 8.1.0919: compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
15822
diff
changeset
|
3485 int len = (int)STRLEN(str); |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3486 DWORD nwrite = 0; |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3487 DWORD mode; |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3488 HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE); |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3489 |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3490 |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3491 if (GetConsoleMode(h, &mode) && enc_codepage >= 0 |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3492 && (int)GetConsoleCP() != enc_codepage) |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3493 { |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3494 WCHAR *w = enc_to_utf16((char_u *)str, &len); |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3495 |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3496 WriteConsoleW(h, w, len, &nwrite, NULL); |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3497 vim_free(w); |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3498 } |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3499 else |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3500 { |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3501 printf("%s", str); |
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3502 } |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3503 } |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3504 #endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3505 |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3506 /* |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3507 * Give a message. To be used when the screen hasn't been initialized yet. |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3508 * When there is no tty, collect messages until the GUI has started and they |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3509 * can be displayed in a message box. |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3510 */ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3511 void |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3512 mch_msg(char *str) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3513 { |
16596
2f86ca0c1e6b
patch 8.1.1301: when compiled with VIMDLL some messages are not shown
Bram Moolenaar <Bram@vim.org>
parents:
16457
diff
changeset
|
3514 #if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) && !defined(VIMDLL) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3515 // On Unix use stdout if we have a tty. This allows "vim -h | more" and |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3516 // uses mch_errmsg() when started from the desktop. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3517 // When not going to start the GUI also use stdout. |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3518 // On Mac, when started from Finder, stderr is the console. |
7 | 3519 if ( |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3520 # ifdef UNIX |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3521 # ifdef MACOS_X |
7 | 3522 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3523 # else |
7 | 3524 isatty(2) |
16606
7e733046db1d
patch 8.1.1306: Borland support is outdated and doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
16596
diff
changeset
|
3525 # endif |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3526 # ifdef FEAT_GUI |
7 | 3527 || |
3528 # endif | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3529 # endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3530 # ifdef FEAT_GUI |
7 | 3531 !(gui.in_use || gui.starting) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3532 # endif |
7 | 3533 ) |
3534 { | |
3535 printf("%s", str); | |
3536 return; | |
3537 } | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3538 #endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3539 |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3540 #if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3541 # ifdef VIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3542 if (!(gui.in_use || gui.starting)) |
7 | 3543 # endif |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3544 { |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3545 mch_msg_c(str); |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3546 return; |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3547 } |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3548 #endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16393
diff
changeset
|
3549 #if !defined(MSWIN) || defined(FEAT_GUI_MSWIN) |
7 | 3550 mch_errmsg(str); |
15822
9745c25da3bc
patch 8.1.0918: MS-Windows: startup messages are not converted
Bram Moolenaar <Bram@vim.org>
parents:
15607
diff
changeset
|
3551 #endif |
7 | 3552 } |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3553 #endif // USE_MCH_ERRMSG |
7 | 3554 |
3555 /* | |
3556 * Put a character on the screen at the current message position and advance | |
3557 * to the next position. Only for printable ASCII! | |
3558 */ | |
3559 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3560 msg_screen_putchar(int c, int attr) |
7 | 3561 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3562 msg_didout = TRUE; // remember that line is not empty |
7 | 3563 screen_putchar(c, msg_row, msg_col, attr); |
3564 #ifdef FEAT_RIGHTLEFT | |
3565 if (cmdmsg_rl) | |
3566 { | |
3567 if (--msg_col == 0) | |
3568 { | |
3569 msg_col = Columns; | |
3570 ++msg_row; | |
3571 } | |
3572 } | |
3573 else | |
3574 #endif | |
3575 { | |
3576 if (++msg_col >= Columns) | |
3577 { | |
3578 msg_col = 0; | |
3579 ++msg_row; | |
3580 } | |
3581 } | |
3582 } | |
3583 | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
3584 static void |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3585 msg_moremsg(int full) |
7 | 3586 { |
446 | 3587 int attr; |
3588 char_u *s = (char_u *)_("-- More --"); | |
7 | 3589 |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3590 attr = HL_ATTR(HLF_M); |
446 | 3591 screen_puts(s, (int)Rows - 1, 0, attr); |
7 | 3592 if (full) |
446 | 3593 screen_puts((char_u *) |
3594 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "), | |
3595 (int)Rows - 1, vim_strsize(s), attr); | |
7 | 3596 } |
3597 | |
3598 /* | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
3599 * Repeat the message for the current mode: MODE_ASKMORE, MODE_EXTERNCMD, |
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
3600 * MODE_CONFIRM or exmode_active. |
7 | 3601 */ |
3602 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3603 repeat_message(void) |
7 | 3604 { |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
3605 if (State == MODE_ASKMORE) |
7 | 3606 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3607 msg_moremsg(TRUE); // display --more-- message again |
7 | 3608 msg_row = Rows - 1; |
3609 } | |
3610 #ifdef FEAT_CON_DIALOG | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
3611 else if (State == MODE_CONFIRM) |
7 | 3612 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3613 display_confirm_msg(); // display ":confirm" message again |
7 | 3614 msg_row = Rows - 1; |
3615 } | |
3616 #endif | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
3617 else if (State == MODE_EXTERNCMD) |
7 | 3618 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3619 windgoto(msg_row, msg_col); // put cursor back |
7 | 3620 } |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
3621 else if (State == MODE_HITRETURN || State == MODE_SETWSIZE) |
7 | 3622 { |
1445 | 3623 if (msg_row == Rows - 1) |
3624 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3625 // Avoid drawing the "hit-enter" prompt below the previous one, |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3626 // overwrite it. Esp. useful when regaining focus and a |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3627 // FocusGained autocmd exists but didn't draw anything. |
1445 | 3628 msg_didout = FALSE; |
3629 msg_col = 0; | |
3630 msg_clr_eos(); | |
3631 } | |
7 | 3632 hit_return_msg(); |
3633 msg_row = Rows - 1; | |
3634 } | |
3635 } | |
3636 | |
3637 /* | |
3638 * msg_check_screen - check if the screen is initialized. | |
3639 * Also check msg_row and msg_col, if they are too big it may cause a crash. | |
3640 * While starting the GUI the terminal codes will be set for the GUI, but the | |
3641 * output goes to the terminal. Don't use the terminal codes then. | |
3642 */ | |
3643 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3644 msg_check_screen(void) |
7 | 3645 { |
3646 if (!full_screen || !screen_valid(FALSE)) | |
3647 return FALSE; | |
3648 | |
3649 if (msg_row >= Rows) | |
3650 msg_row = Rows - 1; | |
3651 if (msg_col >= Columns) | |
3652 msg_col = Columns - 1; | |
3653 return TRUE; | |
3654 } | |
3655 | |
3656 /* | |
3657 * Clear from current message position to end of screen. | |
3658 * Skip this when ":silent" was used, no need to clear for redirection. | |
3659 */ | |
3660 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3661 msg_clr_eos(void) |
7 | 3662 { |
3663 if (msg_silent == 0) | |
3664 msg_clr_eos_force(); | |
3665 } | |
3666 | |
3667 /* | |
3668 * Clear from current message position to end of screen. | |
3669 * Note: msg_col is not updated, so we remember the end of the message | |
3670 * for msg_check(). | |
3671 */ | |
3672 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3673 msg_clr_eos_force(void) |
7 | 3674 { |
30029
d03ee646c9ec
patch 9.0.0352: using :echowindow in a timer clears part of message
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
3675 #ifdef HAS_MESSAGE_WINDOW |
d03ee646c9ec
patch 9.0.0352: using :echowindow in a timer clears part of message
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
3676 if (in_echowindow) |
d03ee646c9ec
patch 9.0.0352: using :echowindow in a timer clears part of message
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
3677 return; // messages go into a popup |
d03ee646c9ec
patch 9.0.0352: using :echowindow in a timer clears part of message
Bram Moolenaar <Bram@vim.org>
parents:
30005
diff
changeset
|
3678 #endif |
7 | 3679 if (msg_use_printf()) |
3680 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3681 if (full_screen) // only when termcap codes are valid |
7 | 3682 { |
3683 if (*T_CD) | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3684 out_str(T_CD); // clear to end of display |
7 | 3685 else if (*T_CE) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3686 out_str(T_CE); // clear to end of line |
7 | 3687 } |
3688 } | |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29982
diff
changeset
|
3689 else |
7 | 3690 { |
3691 #ifdef FEAT_RIGHTLEFT | |
3692 if (cmdmsg_rl) | |
3693 { | |
3694 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0); | |
3695 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); | |
3696 } | |
3697 else | |
3698 #endif | |
3699 { | |
3700 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns, | |
3701 ' ', ' ', 0); | |
3702 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); | |
3703 } | |
3704 } | |
3705 } | |
3706 | |
3707 /* | |
3708 * Clear the command line. | |
3709 */ | |
3710 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3711 msg_clr_cmdline(void) |
7 | 3712 { |
3713 msg_row = cmdline_row; | |
3714 msg_col = 0; | |
3715 msg_clr_eos_force(); | |
3716 } | |
3717 | |
3718 /* | |
3719 * end putting a message on the screen | |
29960
4fcf816aa806
patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
29954
diff
changeset
|
3720 * call wait_return() if the message does not fit in the available space |
4fcf816aa806
patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents:
29954
diff
changeset
|
3721 * return TRUE if wait_return() not called. |
7 | 3722 */ |
3723 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3724 msg_end(void) |
7 | 3725 { |
3726 /* | |
5245
8c6615a30951
updated for version 7.4a.047
Bram Moolenaar <bram@vim.org>
parents:
4793
diff
changeset
|
3727 * If the string is larger than the window, |
7 | 3728 * or the ruler option is set and we run into it, |
3729 * we have to redraw the window. | |
3730 * Do not do this if we are abandoning the file or editing the command line. | |
3731 */ | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
3732 if (!exiting && need_wait_return && !(State & MODE_CMDLINE)) |
7 | 3733 { |
3734 wait_return(FALSE); | |
3735 return FALSE; | |
3736 } | |
3737 out_flush(); | |
3738 return TRUE; | |
3739 } | |
3740 | |
3741 /* | |
3742 * If the written message runs into the shown command or ruler, we have to | |
3743 * wait for hit-return and redraw the window later. | |
3744 */ | |
3745 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3746 msg_check(void) |
7 | 3747 { |
29916
cf55d7e10bb1
patch 9.0.0296: message in popup is shortened unnecessary
Bram Moolenaar <Bram@vim.org>
parents:
29904
diff
changeset
|
3748 if (msg_row == Rows - 1 && msg_col >= sc_col |
cf55d7e10bb1
patch 9.0.0296: message in popup is shortened unnecessary
Bram Moolenaar <Bram@vim.org>
parents:
29904
diff
changeset
|
3749 #ifdef HAS_MESSAGE_WINDOW |
30005
bb0e525e1393
patch 9.0.0340: the 'cmdheight' zero support causes too much trouble
Bram Moolenaar <Bram@vim.org>
parents:
29982
diff
changeset
|
3750 && !in_echowindow |
29916
cf55d7e10bb1
patch 9.0.0296: message in popup is shortened unnecessary
Bram Moolenaar <Bram@vim.org>
parents:
29904
diff
changeset
|
3751 #endif |
cf55d7e10bb1
patch 9.0.0296: message in popup is shortened unnecessary
Bram Moolenaar <Bram@vim.org>
parents:
29904
diff
changeset
|
3752 ) |
7 | 3753 { |
3754 need_wait_return = TRUE; | |
3755 redraw_cmdline = TRUE; | |
3756 } | |
3757 } | |
3758 | |
3759 /* | |
3760 * May write a string to the redirection file. | |
3761 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes. | |
3762 */ | |
3763 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3764 redir_write(char_u *str, int maxlen) |
7 | 3765 { |
3766 char_u *s = str; | |
3767 static int cur_col = 0; | |
3768 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3769 // Don't do anything for displaying prompts and the like. |
291 | 3770 if (redir_off) |
3771 return; | |
3772 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3773 // If 'verbosefile' is set prepare for writing in that file. |
3072 | 3774 if (*p_vfile != NUL && verbose_fd == NULL) |
3775 verbose_open(); | |
291 | 3776 |
1854 | 3777 if (redirecting()) |
7 | 3778 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3779 // If the string doesn't start with CR or NL, go to msg_col |
7 | 3780 if (*s != '\n' && *s != '\r') |
3781 { | |
3782 while (cur_col < msg_col) | |
3783 { | |
3784 #ifdef FEAT_EVAL | |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3785 if (redir_execute) |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3786 execute_redir_str((char_u *)" ", -1); |
9436
f048e5a27253
commit https://github.com/vim/vim/commit/bc5d6dd1dd1dc3a06e4e655fc9479529db288365
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
3787 else if (redir_reg) |
7 | 3788 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE); |
167 | 3789 else if (redir_vname) |
3790 var_redir_str((char_u *)" ", -1); | |
3072 | 3791 else |
7 | 3792 #endif |
3072 | 3793 if (redir_fd != NULL) |
7 | 3794 fputs(" ", redir_fd); |
3072 | 3795 if (verbose_fd != NULL) |
3796 fputs(" ", verbose_fd); | |
7 | 3797 ++cur_col; |
3798 } | |
3799 } | |
3800 | |
3801 #ifdef FEAT_EVAL | |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3802 if (redir_execute) |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3803 execute_redir_str(s, maxlen); |
9436
f048e5a27253
commit https://github.com/vim/vim/commit/bc5d6dd1dd1dc3a06e4e655fc9479529db288365
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
3804 else if (redir_reg) |
7 | 3805 write_reg_contents(redir_reg, s, maxlen, TRUE); |
9436
f048e5a27253
commit https://github.com/vim/vim/commit/bc5d6dd1dd1dc3a06e4e655fc9479529db288365
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
3806 else if (redir_vname) |
167 | 3807 var_redir_str(s, maxlen); |
7 | 3808 #endif |
3809 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3810 // Write and adjust the current column. |
7 | 3811 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen)) |
3812 { | |
3813 #ifdef FEAT_EVAL | |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3814 if (!redir_reg && !redir_vname && !redir_execute) |
7 | 3815 #endif |
3072 | 3816 if (redir_fd != NULL) |
3817 putc(*s, redir_fd); | |
3818 if (verbose_fd != NULL) | |
3819 putc(*s, verbose_fd); | |
7 | 3820 if (*s == '\r' || *s == '\n') |
3821 cur_col = 0; | |
3822 else if (*s == '\t') | |
3823 cur_col += (8 - cur_col % 8); | |
3824 else | |
3825 ++cur_col; | |
3826 ++s; | |
3827 } | |
3828 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3829 if (msg_silent != 0) // should update msg_col |
7 | 3830 msg_col = cur_col; |
3831 } | |
3832 } | |
3833 | |
1854 | 3834 int |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3835 redirecting(void) |
1854 | 3836 { |
3072 | 3837 return redir_fd != NULL || *p_vfile != NUL |
1854 | 3838 #ifdef FEAT_EVAL |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3839 || redir_reg || redir_vname || redir_execute |
1854 | 3840 #endif |
3841 ; | |
3842 } | |
3843 | |
7 | 3844 /* |
1189 | 3845 * Before giving verbose message. |
291 | 3846 * Must always be called paired with verbose_leave()! |
3847 */ | |
3848 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3849 verbose_enter(void) |
291 | 3850 { |
3851 if (*p_vfile != NUL) | |
3852 ++msg_silent; | |
3853 } | |
3854 | |
3855 /* | |
3856 * After giving verbose message. | |
3857 * Must always be called paired with verbose_enter()! | |
3858 */ | |
3859 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3860 verbose_leave(void) |
291 | 3861 { |
3862 if (*p_vfile != NUL) | |
3863 if (--msg_silent < 0) | |
3864 msg_silent = 0; | |
3865 } | |
3866 | |
3867 /* | |
3868 * Like verbose_enter() and set msg_scroll when displaying the message. | |
3869 */ | |
3870 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3871 verbose_enter_scroll(void) |
291 | 3872 { |
3873 if (*p_vfile != NUL) | |
3874 ++msg_silent; | |
3875 else | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3876 // always scroll up, don't overwrite |
291 | 3877 msg_scroll = TRUE; |
3878 } | |
3879 | |
3880 /* | |
3881 * Like verbose_leave() and set cmdline_row when displaying the message. | |
3882 */ | |
3883 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3884 verbose_leave_scroll(void) |
291 | 3885 { |
3886 if (*p_vfile != NUL) | |
3887 { | |
3888 if (--msg_silent < 0) | |
3889 msg_silent = 0; | |
3890 } | |
3891 else | |
3892 cmdline_row = msg_row; | |
3893 } | |
3894 | |
3895 /* | |
3896 * Called when 'verbosefile' is set: stop writing to the file. | |
3897 */ | |
3898 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3899 verbose_stop(void) |
291 | 3900 { |
3901 if (verbose_fd != NULL) | |
3902 { | |
3903 fclose(verbose_fd); | |
3904 verbose_fd = NULL; | |
3905 } | |
3906 verbose_did_open = FALSE; | |
3907 } | |
3908 | |
3909 /* | |
3910 * Open the file 'verbosefile'. | |
3911 * Return FAIL or OK. | |
3912 */ | |
3913 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3914 verbose_open(void) |
291 | 3915 { |
3916 if (verbose_fd == NULL && !verbose_did_open) | |
3917 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3918 // Only give the error message once. |
291 | 3919 verbose_did_open = TRUE; |
3920 | |
531 | 3921 verbose_fd = mch_fopen((char *)p_vfile, "a"); |
291 | 3922 if (verbose_fd == NULL) |
3923 { | |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
3924 semsg(_(e_cant_open_file_str), p_vfile); |
291 | 3925 return FAIL; |
3926 } | |
3927 } | |
3928 return OK; | |
3929 } | |
3930 | |
3931 /* | |
7 | 3932 * Give a warning message (for searching). |
3933 * Use 'w' highlighting and may repeat the message after redrawing | |
3934 */ | |
3935 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3936 give_warning(char_u *message, int hl) |
7 | 3937 { |
25226
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3938 give_warning_with_source(message, hl, FALSE); |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3939 } |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3940 |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3941 void |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3942 give_warning_with_source(char_u *message, int hl, int with_source) |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3943 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3944 // Don't do this for ":silent". |
7 | 3945 if (msg_silent != 0) |
3946 return; | |
3947 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3948 // Don't want a hit-enter prompt here. |
7 | 3949 ++no_wait_return; |
8 | 3950 |
7 | 3951 #ifdef FEAT_EVAL |
3952 set_vim_var_string(VV_WARNINGMSG, message, -1); | |
3953 #endif | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13188
diff
changeset
|
3954 VIM_CLEAR(keep_msg); |
7 | 3955 if (hl) |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3956 keep_msg_attr = HL_ATTR(HLF_W); |
7 | 3957 else |
3958 keep_msg_attr = 0; | |
25226
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3959 |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3960 if (with_source) |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3961 { |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3962 // Do what msg() does, but with a column offset if the warning should |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3963 // be after the mode message. |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3964 msg_start(); |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3965 msg_source(HL_ATTR(HLF_W)); |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3966 msg_puts(" "); |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3967 msg_puts_attr((char *)message, HL_ATTR(HLF_W) | MSG_HIST); |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3968 msg_clr_eos(); |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3969 (void)msg_end(); |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3970 } |
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3971 else if (msg_attr((char *)message, keep_msg_attr) && msg_scrolled == 0) |
678 | 3972 set_keep_msg(message, keep_msg_attr); |
25226
a9ea83a3659a
patch 8.2.3149: some plugins have a problem with the error check
Bram Moolenaar <Bram@vim.org>
parents:
24938
diff
changeset
|
3973 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3974 msg_didout = FALSE; // overwrite this message |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
3975 msg_nowait = TRUE; // don't wait for this message |
7 | 3976 msg_col = 0; |
8 | 3977 |
7 | 3978 --no_wait_return; |
3979 } | |
3980 | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15551
diff
changeset
|
3981 #if defined(FEAT_EVAL) || defined(PROTO) |
11561
7ad79766365a
patch 8.0.0663: unexpected error message only when 'verbose' is set
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
3982 void |
7ad79766365a
patch 8.0.0663: unexpected error message only when 'verbose' is set
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
3983 give_warning2(char_u *message, char_u *a1, int hl) |
7ad79766365a
patch 8.0.0663: unexpected error message only when 'verbose' is set
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
3984 { |
18309
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
3985 if (IObuff == NULL) |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
3986 { |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
3987 // Very early in initialisation and already something wrong, just give |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
3988 // the raw message so the user at least gets a hint. |
27426
41e0dcf38521
patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents:
27255
diff
changeset
|
3989 give_warning(message, hl); |
18309
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
3990 } |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
3991 else |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
3992 { |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
3993 vim_snprintf((char *)IObuff, IOSIZE, (char *)message, a1); |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
3994 give_warning(IObuff, hl); |
2047cb93eb0c
patch 8.1.2149: crash when running out of memory very early
Bram Moolenaar <Bram@vim.org>
parents:
18293
diff
changeset
|
3995 } |
11561
7ad79766365a
patch 8.0.0663: unexpected error message only when 'verbose' is set
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
3996 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15551
diff
changeset
|
3997 #endif |
11561
7ad79766365a
patch 8.0.0663: unexpected error message only when 'verbose' is set
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
3998 |
7 | 3999 /* |
4000 * Advance msg cursor to column "col". | |
4001 */ | |
4002 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4003 msg_advance(int col) |
7 | 4004 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4005 if (msg_silent != 0) // nothing to advance to |
7 | 4006 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4007 msg_col = col; // for redirection, may fill it up later |
7 | 4008 return; |
4009 } | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4010 if (col >= Columns) // not enough room |
7 | 4011 col = Columns - 1; |
474 | 4012 #ifdef FEAT_RIGHTLEFT |
4013 if (cmdmsg_rl) | |
4014 while (msg_col > Columns - col) | |
4015 msg_putchar(' '); | |
4016 else | |
4017 #endif | |
4018 while (msg_col < col) | |
4019 msg_putchar(' '); | |
7 | 4020 } |
4021 | |
4022 #if defined(FEAT_CON_DIALOG) || defined(PROTO) | |
4023 /* | |
4024 * Used for "confirm()" function, and the :confirm command prefix. | |
4025 * Versions which haven't got flexible dialogs yet, and console | |
4026 * versions, get this generic handler which uses the command line. | |
4027 * | |
4028 * type = one of: | |
4029 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC | |
4030 * title = title string (can be NULL for default) | |
4031 * (neither used in console dialogs at the moment) | |
4032 * | |
4033 * Format of the "buttons" string: | |
4034 * "Button1Name\nButton2Name\nButton3Name" | |
4035 * The first button should normally be the default/accept | |
4036 * The second button should be the 'Cancel' button | |
4037 * Other buttons- use your imagination! | |
4038 * A '&' in a button name becomes a shortcut, so each '&' should be before a | |
4039 * different letter. | |
27635
6ca2d8f4cd32
patch 8.2.4343: when reloading not all properties are detected
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4040 * |
6ca2d8f4cd32
patch 8.2.4343: when reloading not all properties are detected
Bram Moolenaar <Bram@vim.org>
parents:
27426
diff
changeset
|
4041 * Returns 0 if cancelled, otherwise the nth button (1-indexed). |
7 | 4042 */ |
4043 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4044 do_dialog( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4045 int type UNUSED, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4046 char_u *title UNUSED, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4047 char_u *message, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4048 char_u *buttons, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4049 int dfltbutton, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4050 char_u *textfield UNUSED, // IObuff for inputdialog(), NULL |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4051 // otherwise |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4052 int ex_cmd) // when TRUE pressing : accepts default and starts |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4053 // Ex command |
7 | 4054 { |
4055 int oldState; | |
4056 int retval = 0; | |
4057 char_u *hotkeys; | |
4058 int c; | |
4059 int i; | |
21192
0016cba920ef
patch 8.2.1147: :confirm may happen in cooked mode
Bram Moolenaar <Bram@vim.org>
parents:
20782
diff
changeset
|
4060 tmode_T save_tmode; |
7 | 4061 |
4062 #ifndef NO_CONSOLE | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4063 // Don't output anything in silent mode ("ex -s") |
7 | 4064 if (silent_mode) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4065 return dfltbutton; // return default option |
7 | 4066 #endif |
4067 | |
4068 #ifdef FEAT_GUI_DIALOG | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4069 // When GUI is running and 'c' not in 'guioptions', use the GUI dialog |
7 | 4070 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL) |
4071 { | |
29128
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
29098
diff
changeset
|
4072 // --gui-dialog-file: write text to a file |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
29098
diff
changeset
|
4073 if (gui_dialog_log(title, message)) |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
29098
diff
changeset
|
4074 c = dfltbutton; |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
29098
diff
changeset
|
4075 else |
d8a962d7b008
patch 8.2.5084: when the GUI shows a dialog tests get stuck
Bram Moolenaar <Bram@vim.org>
parents:
29098
diff
changeset
|
4076 c = gui_mch_dialog(type, title, message, buttons, dfltbutton, |
2684 | 4077 textfield, ex_cmd); |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4078 // avoid a hit-enter prompt without clearing the cmdline |
1809 | 4079 need_wait_return = FALSE; |
4080 emsg_on_display = FALSE; | |
4081 cmdline_row = msg_row; | |
7 | 4082 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4083 // Flush output to avoid that further messages and redrawing is done |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4084 // in the wrong order. |
7 | 4085 out_flush(); |
4086 gui_mch_update(); | |
4087 | |
4088 return c; | |
4089 } | |
4090 #endif | |
4091 | |
4092 oldState = State; | |
28773
d770568e6c98
patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents:
28686
diff
changeset
|
4093 State = MODE_CONFIRM; |
7 | 4094 setmouse(); |
4095 | |
21192
0016cba920ef
patch 8.2.1147: :confirm may happen in cooked mode
Bram Moolenaar <Bram@vim.org>
parents:
20782
diff
changeset
|
4096 // Ensure raw mode here. |
0016cba920ef
patch 8.2.1147: :confirm may happen in cooked mode
Bram Moolenaar <Bram@vim.org>
parents:
20782
diff
changeset
|
4097 save_tmode = cur_tmode; |
0016cba920ef
patch 8.2.1147: :confirm may happen in cooked mode
Bram Moolenaar <Bram@vim.org>
parents:
20782
diff
changeset
|
4098 settmode(TMODE_RAW); |
0016cba920ef
patch 8.2.1147: :confirm may happen in cooked mode
Bram Moolenaar <Bram@vim.org>
parents:
20782
diff
changeset
|
4099 |
7 | 4100 /* |
4101 * Since we wait for a keypress, don't make the | |
4102 * user press RETURN as well afterwards. | |
4103 */ | |
4104 ++no_wait_return; | |
4105 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton); | |
4106 | |
4107 if (hotkeys != NULL) | |
4108 { | |
4109 for (;;) | |
4110 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4111 // Get a typed character directly from the user. |
7 | 4112 c = get_keystroke(); |
4113 switch (c) | |
4114 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4115 case CAR: // User accepts default option |
7 | 4116 case NL: |
4117 retval = dfltbutton; | |
4118 break; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4119 case Ctrl_C: // User aborts/cancels |
7 | 4120 case ESC: |
4121 retval = 0; | |
4122 break; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4123 default: // Could be a hotkey? |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4124 if (c < 0) // special keys are ignored here |
7 | 4125 continue; |
2684 | 4126 if (c == ':' && ex_cmd) |
4127 { | |
4128 retval = dfltbutton; | |
20571
5995db0fe84a
patch 8.2.0839: dropping modifier when putting a character back in typeahead
Bram Moolenaar <Bram@vim.org>
parents:
20162
diff
changeset
|
4129 ins_char_typebuf(':', 0); |
2684 | 4130 break; |
4131 } | |
4132 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4133 // Make the character lowercase, as chars in "hotkeys" are. |
7 | 4134 c = MB_TOLOWER(c); |
4135 retval = 1; | |
4136 for (i = 0; hotkeys[i]; ++i) | |
4137 { | |
4138 if (has_mbyte) | |
4139 { | |
4140 if ((*mb_ptr2char)(hotkeys + i) == c) | |
4141 break; | |
474 | 4142 i += (*mb_ptr2len)(hotkeys + i) - 1; |
7 | 4143 } |
4144 else | |
4145 if (hotkeys[i] == c) | |
4146 break; | |
4147 ++retval; | |
4148 } | |
4149 if (hotkeys[i]) | |
4150 break; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4151 // No hotkey match, so keep waiting |
7 | 4152 continue; |
4153 } | |
4154 break; | |
4155 } | |
4156 | |
4157 vim_free(hotkeys); | |
4158 } | |
4159 | |
21192
0016cba920ef
patch 8.2.1147: :confirm may happen in cooked mode
Bram Moolenaar <Bram@vim.org>
parents:
20782
diff
changeset
|
4160 settmode(save_tmode); |
7 | 4161 State = oldState; |
4162 setmouse(); | |
4163 --no_wait_return; | |
4164 msg_end_prompt(); | |
4165 | |
4166 return retval; | |
4167 } | |
4168 | |
4169 /* | |
4170 * Copy one character from "*from" to "*to", taking care of multi-byte | |
4171 * characters. Return the length of the character in bytes. | |
4172 */ | |
4173 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4174 copy_char( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4175 char_u *from, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4176 char_u *to, |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4177 int lowercase) // make character lower case |
7 | 4178 { |
4179 int len; | |
4180 int c; | |
4181 | |
4182 if (has_mbyte) | |
4183 { | |
4184 if (lowercase) | |
4185 { | |
4186 c = MB_TOLOWER((*mb_ptr2char)(from)); | |
4187 return (*mb_char2bytes)(c, to); | |
4188 } | |
4189 else | |
4190 { | |
474 | 4191 len = (*mb_ptr2len)(from); |
7 | 4192 mch_memmove(to, from, (size_t)len); |
4193 return len; | |
4194 } | |
4195 } | |
4196 else | |
4197 { | |
4198 if (lowercase) | |
4199 *to = (char_u)TOLOWER_LOC(*from); | |
4200 else | |
4201 *to = *from; | |
4202 return 1; | |
4203 } | |
4204 } | |
4205 | |
4206 /* | |
4207 * Format the dialog string, and display it at the bottom of | |
4208 * the screen. Return a string of hotkey chars (if defined) for | |
4209 * each 'button'. If a button has no hotkey defined, the first character of | |
4210 * the button is used. | |
4211 * The hotkeys can be multi-byte characters, but without combining chars. | |
4212 * | |
4213 * Returns an allocated string with hotkeys, or NULL for error. | |
4214 */ | |
4215 static char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4216 msg_show_console_dialog( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4217 char_u *message, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4218 char_u *buttons, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4219 int dfltbutton) |
7 | 4220 { |
4221 int len = 0; | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4222 #define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4223 int lenhotkey = HOTK_LEN; // count first button |
7 | 4224 char_u *hotk = NULL; |
4225 char_u *msgp = NULL; | |
4226 char_u *hotkp = NULL; | |
4227 char_u *r; | |
4228 int copy; | |
4229 #define HAS_HOTKEY_LEN 30 | |
4230 char_u has_hotkey[HAS_HOTKEY_LEN]; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4231 int first_hotkey = FALSE; // first char of button is hotkey |
7 | 4232 int idx; |
4233 | |
4234 has_hotkey[0] = FALSE; | |
4235 | |
4236 /* | |
4237 * First loop: compute the size of memory to allocate. | |
4238 * Second loop: copy to the allocated memory. | |
4239 */ | |
4240 for (copy = 0; copy <= 1; ++copy) | |
4241 { | |
4242 r = buttons; | |
4243 idx = 0; | |
4244 while (*r) | |
4245 { | |
4246 if (*r == DLG_BUTTON_SEP) | |
4247 { | |
4248 if (copy) | |
4249 { | |
4250 *msgp++ = ','; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4251 *msgp++ = ' '; // '\n' -> ', ' |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4252 |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4253 // advance to next hotkey and set default hotkey |
7 | 4254 if (has_mbyte) |
1306 | 4255 hotkp += STRLEN(hotkp); |
7 | 4256 else |
4257 ++hotkp; | |
1306 | 4258 hotkp[copy_char(r + 1, hotkp, TRUE)] = NUL; |
7 | 4259 if (dfltbutton) |
4260 --dfltbutton; | |
4261 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4262 // If no hotkey is specified first char is used. |
7 | 4263 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx]) |
4264 first_hotkey = TRUE; | |
4265 } | |
4266 else | |
4267 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4268 len += 3; // '\n' -> ', '; 'x' -> '(x)' |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4269 lenhotkey += HOTK_LEN; // each button needs a hotkey |
7 | 4270 if (idx < HAS_HOTKEY_LEN - 1) |
4271 has_hotkey[++idx] = FALSE; | |
4272 } | |
4273 } | |
4274 else if (*r == DLG_HOTKEY_CHAR || first_hotkey) | |
4275 { | |
4276 if (*r == DLG_HOTKEY_CHAR) | |
4277 ++r; | |
4278 first_hotkey = FALSE; | |
4279 if (copy) | |
4280 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4281 if (*r == DLG_HOTKEY_CHAR) // '&&a' -> '&a' |
7 | 4282 *msgp++ = *r; |
4283 else | |
4284 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4285 // '&a' -> '[a]' |
7 | 4286 *msgp++ = (dfltbutton == 1) ? '[' : '('; |
4287 msgp += copy_char(r, msgp, FALSE); | |
4288 *msgp++ = (dfltbutton == 1) ? ']' : ')'; | |
4289 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4290 // redefine hotkey |
1306 | 4291 hotkp[copy_char(r, hotkp, TRUE)] = NUL; |
7 | 4292 } |
4293 } | |
4294 else | |
4295 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4296 ++len; // '&a' -> '[a]' |
7 | 4297 if (idx < HAS_HOTKEY_LEN - 1) |
4298 has_hotkey[idx] = TRUE; | |
4299 } | |
4300 } | |
4301 else | |
4302 { | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4303 // everything else copy literally |
7 | 4304 if (copy) |
4305 msgp += copy_char(r, msgp, FALSE); | |
4306 } | |
4307 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4308 // advance to the next character |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11016
diff
changeset
|
4309 MB_PTR_ADV(r); |
7 | 4310 } |
4311 | |
4312 if (copy) | |
4313 { | |
4314 *msgp++ = ':'; | |
4315 *msgp++ = ' '; | |
4316 *msgp = NUL; | |
4317 } | |
4318 else | |
4319 { | |
835 | 4320 len += (int)(STRLEN(message) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4321 + 2 // for the NL's |
856 | 4322 + STRLEN(buttons) |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4323 + 3); // for the ": " and NUL |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4324 lenhotkey++; // for the NUL |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4325 |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4326 // If no hotkey is specified first char is used. |
7 | 4327 if (!has_hotkey[0]) |
4328 { | |
4329 first_hotkey = TRUE; | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4330 len += 2; // "x" -> "[x]" |
7 | 4331 } |
4332 | |
4333 /* | |
4334 * Now allocate and load the strings | |
4335 */ | |
4336 vim_free(confirm_msg); | |
4337 confirm_msg = alloc(len); | |
4338 if (confirm_msg == NULL) | |
4339 return NULL; | |
4340 *confirm_msg = NUL; | |
4341 hotk = alloc(lenhotkey); | |
4342 if (hotk == NULL) | |
4343 return NULL; | |
4344 | |
4345 *confirm_msg = '\n'; | |
4346 STRCPY(confirm_msg + 1, message); | |
4347 | |
4348 msgp = confirm_msg + 1 + STRLEN(message); | |
4349 hotkp = hotk; | |
4350 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4351 // Define first default hotkey. Keep the hotkey string NUL |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4352 // terminated to avoid reading past the end. |
1306 | 4353 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL; |
7 | 4354 |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4355 // Remember where the choices start, displaying starts here when |
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4356 // "hotkp" typed at the more prompt. |
7 | 4357 confirm_msg_tail = msgp; |
4358 *msgp++ = '\n'; | |
4359 } | |
4360 } | |
4361 | |
4362 display_confirm_msg(); | |
4363 return hotk; | |
4364 } | |
4365 | |
4366 /* | |
4367 * Display the ":confirm" message. Also called when screen resized. | |
4368 */ | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17262
diff
changeset
|
4369 static void |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4370 display_confirm_msg(void) |
7 | 4371 { |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4372 // avoid that 'q' at the more prompt truncates the message here |
7 | 4373 ++confirm_msg_used; |
4374 if (confirm_msg != NULL) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15502
diff
changeset
|
4375 msg_puts_attr((char *)confirm_msg, HL_ATTR(HLF_M)); |
7 | 4376 --confirm_msg_used; |
4377 } | |
4378 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4379 #endif // FEAT_CON_DIALOG |
7 | 4380 |
4381 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG) | |
4382 | |
4383 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4384 vim_dialog_yesno( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4385 int type, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4386 char_u *title, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4387 char_u *message, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4388 int dflt) |
7 | 4389 { |
4390 if (do_dialog(type, | |
4391 title == NULL ? (char_u *)_("Question") : title, | |
4392 message, | |
2684 | 4393 (char_u *)_("&Yes\n&No"), dflt, NULL, FALSE) == 1) |
7 | 4394 return VIM_YES; |
4395 return VIM_NO; | |
4396 } | |
4397 | |
4398 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4399 vim_dialog_yesnocancel( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4400 int type, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4401 char_u *title, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4402 char_u *message, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4403 int dflt) |
7 | 4404 { |
4405 switch (do_dialog(type, | |
4406 title == NULL ? (char_u *)_("Question") : title, | |
4407 message, | |
2684 | 4408 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL, FALSE)) |
7 | 4409 { |
4410 case 1: return VIM_YES; | |
4411 case 2: return VIM_NO; | |
4412 } | |
4413 return VIM_CANCEL; | |
4414 } | |
4415 | |
4416 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4417 vim_dialog_yesnoallcancel( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4418 int type, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4419 char_u *title, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4420 char_u *message, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4421 int dflt) |
7 | 4422 { |
4423 switch (do_dialog(type, | |
4424 title == NULL ? (char_u *)"Question" : title, | |
4425 message, | |
4426 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"), | |
2684 | 4427 dflt, NULL, FALSE)) |
7 | 4428 { |
4429 case 1: return VIM_YES; | |
4430 case 2: return VIM_NO; | |
4431 case 3: return VIM_ALL; | |
4432 case 4: return VIM_DISCARDALL; | |
4433 } | |
4434 return VIM_CANCEL; | |
4435 } | |
4436 | |
18931
80b40bd5ec1a
patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents:
18866
diff
changeset
|
4437 #endif // FEAT_GUI_DIALOG || FEAT_CON_DIALOG |