Mercurial > vim
annotate src/message.c @ 14202:51693b1a640e v8.1.0118
patch 8.1.0118: duplicate error message for put command
commit https://github.com/vim/vim/commit/f52f9ea8f5fb3df51a308c56f2bf66f735ef3ca7
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jun 27 20:49:44 2018 +0200
patch 8.1.0118: duplicate error message for put command
Problem: Duplicate error message for put command.
Solution: Check return value of u_save(). (Jason Franklin)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 27 Jun 2018 21:00:07 +0200 |
parents | 2ad722003b36 |
children | 1681178c4434 |
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 | |
14 #define MESSAGE_FILE /* don't include prototype for smsg() */ | |
9988
cafe247c949a
commit https://github.com/vim/vim/commit/44ca54aeb9a0eca41aea203786e33d82e69d0615
Christian Brabandt <cb@256bit.org>
parents:
9986
diff
changeset
|
15 #define USING_FLOAT_STUFF |
7 | 16 |
17 #include "vim.h" | |
18 | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
19 static int other_sourcing_name(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
20 static char_u *get_emsg_source(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
21 static char_u *get_emsg_lnum(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
22 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
|
23 static void hit_return_msg(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
24 static void msg_home_replace_attr(char_u *fname, int attr); |
7 | 25 #ifdef FEAT_MBYTE |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
26 static char_u *screen_puts_mbyte(char_u *s, int l, int attr); |
7 | 27 #endif |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
28 static void msg_puts_attr_len(char_u *str, int maxlen, int attr); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
29 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
|
30 static void msg_scroll_up(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
31 static void inc_msg_scrolled(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
32 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
|
33 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
|
34 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
|
35 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
|
36 static void msg_screen_putchar(int c, int attr); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
37 static int msg_check_screen(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
38 static void redir_write(char_u *s, int maxlen); |
7 | 39 #ifdef FEAT_CON_DIALOG |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
40 static char_u *msg_show_console_dialog(char_u *message, char_u *buttons, int dfltbutton); |
7 | 41 static int confirm_msg_used = FALSE; /* displaying confirm_msg */ |
42 static char_u *confirm_msg = NULL; /* ":confirm" message */ | |
43 static char_u *confirm_msg_tail; /* tail of confirm_msg */ | |
44 #endif | |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
45 #ifdef FEAT_JOB_CHANNEL |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
46 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
|
47 #endif |
7 | 48 |
49 struct msg_hist | |
50 { | |
51 struct msg_hist *next; | |
52 char_u *msg; | |
53 int attr; | |
54 }; | |
55 | |
56 static struct msg_hist *first_msg_hist = NULL; | |
57 static struct msg_hist *last_msg_hist = NULL; | |
58 static int msg_hist_len = 0; | |
59 | |
3072 | 60 static FILE *verbose_fd = NULL; |
61 static int verbose_did_open = FALSE; | |
62 | |
7 | 63 /* |
64 * When writing messages to the screen, there are many different situations. | |
65 * A number of variables is used to remember the current state: | |
66 * msg_didany TRUE when messages were written since the last time the | |
67 * user reacted to a prompt. | |
68 * Reset: After hitting a key for the hit-return prompt, | |
69 * hitting <CR> for the command line or input(). | |
70 * Set: When any message is written to the screen. | |
71 * msg_didout TRUE when something was written to the current line. | |
72 * Reset: When advancing to the next line, when the current | |
73 * text can be overwritten. | |
74 * Set: When any message is written to the screen. | |
75 * msg_nowait No extra delay for the last drawn message. | |
76 * Used in normal_cmd() before the mode message is drawn. | |
77 * emsg_on_display There was an error message recently. Indicates that there | |
78 * should be a delay before redrawing. | |
79 * msg_scroll The next message should not overwrite the current one. | |
80 * msg_scrolled How many lines the screen has been scrolled (because of | |
81 * messages). Used in update_screen() to scroll the screen | |
82 * back. Incremented each time the screen scrolls a line. | |
83 * msg_scrolled_ign TRUE when msg_scrolled is non-zero and msg_puts_attr() | |
84 * writes something without scrolling should not make | |
85 * need_wait_return to be set. This is a hack to make ":ts" | |
86 * work without an extra prompt. | |
87 * lines_left Number of lines available for messages before the | |
3240 | 88 * more-prompt is to be given. -1 when not set. |
7 | 89 * need_wait_return TRUE when the hit-return prompt is needed. |
90 * Reset: After giving the hit-return prompt, when the user | |
91 * has answered some other prompt. | |
92 * Set: When the ruler or typeahead display is overwritten, | |
93 * scrolling the screen for some message. | |
94 * keep_msg Message to be displayed after redrawing the screen, in | |
95 * main_loop(). | |
96 * This is an allocated string or NULL when not used. | |
97 */ | |
98 | |
99 /* | |
100 * msg(s) - displays the string 's' on the status line | |
101 * When terminal not initialized (yet) mch_errmsg(..) is used. | |
102 * return TRUE if wait_return not called | |
103 */ | |
104 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
105 msg(char_u *s) |
7 | 106 { |
107 return msg_attr_keep(s, 0, FALSE); | |
108 } | |
109 | |
291 | 110 #if defined(FEAT_EVAL) || defined(FEAT_X11) || defined(USE_XSMP) \ |
1924 | 111 || defined(FEAT_GUI_GTK) || defined(PROTO) |
291 | 112 /* |
113 * Like msg() but keep it silent when 'verbosefile' is set. | |
114 */ | |
115 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
116 verb_msg(char_u *s) |
291 | 117 { |
118 int n; | |
119 | |
120 verbose_enter(); | |
121 n = msg_attr_keep(s, 0, FALSE); | |
122 verbose_leave(); | |
123 | |
124 return n; | |
125 } | |
126 #endif | |
127 | |
7 | 128 int |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
129 msg_attr(char_u *s, int attr) |
7 | 130 { |
131 return msg_attr_keep(s, attr, FALSE); | |
132 } | |
133 | |
134 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
135 msg_attr_keep( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
136 char_u *s, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
137 int attr, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
138 int keep) /* TRUE: set keep_msg if it doesn't scroll */ |
7 | 139 { |
140 static int entered = 0; | |
141 int retval; | |
142 char_u *buf = NULL; | |
143 | |
9941
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
144 /* Skip messages not matching ":filter pattern". |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
145 * Don't filter when there is an error. */ |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
146 if (!emsg_on_display && message_filtered(s)) |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
147 return TRUE; |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
148 |
7 | 149 #ifdef FEAT_EVAL |
150 if (attr == 0) | |
151 set_vim_var_string(VV_STATUSMSG, s, -1); | |
152 #endif | |
153 | |
154 /* | |
155 * It is possible that displaying a messages causes a problem (e.g., | |
156 * when redrawing the window), which causes another message, etc.. To | |
157 * break this loop, limit the recursiveness to 3 levels. | |
158 */ | |
159 if (entered >= 3) | |
160 return TRUE; | |
161 ++entered; | |
162 | |
163 /* Add message to history (unless it's a repeated kept message or a | |
164 * truncated message) */ | |
165 if (s != keep_msg | |
166 || (*s != '<' | |
167 && last_msg_hist != NULL | |
168 && last_msg_hist->msg != NULL | |
169 && STRCMP(s, last_msg_hist->msg))) | |
170 add_msg_hist(s, -1, attr); | |
171 | |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
172 #ifdef FEAT_JOB_CHANNEL |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
173 if (emsg_to_channel_log) |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
174 /* Write message in the channel log. */ |
11937
c893d6c00497
patch 8.0.0848: using multiple ch_log functions is clumsy
Christian Brabandt <cb@256bit.org>
parents:
11653
diff
changeset
|
175 ch_log(NULL, "ERROR: %s", (char *)s); |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
176 #endif |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
177 |
7 | 178 /* When displaying keep_msg, don't let msg_start() free it, caller must do |
179 * that. */ | |
180 if (s == keep_msg) | |
181 keep_msg = NULL; | |
182 | |
183 /* Truncate the message if needed. */ | |
513 | 184 msg_start(); |
185 buf = msg_strtrunc(s, FALSE); | |
7 | 186 if (buf != NULL) |
187 s = buf; | |
188 | |
189 msg_outtrans_attr(s, attr); | |
190 msg_clr_eos(); | |
191 retval = msg_end(); | |
192 | |
193 if (keep && retval && vim_strsize(s) < (int)(Rows - cmdline_row - 1) | |
194 * Columns + sc_col) | |
678 | 195 set_keep_msg(s, 0); |
7 | 196 |
197 vim_free(buf); | |
198 --entered; | |
199 return retval; | |
200 } | |
201 | |
202 /* | |
203 * Truncate a string such that it can be printed without causing a scroll. | |
204 * Returns an allocated string or NULL when no truncating is done. | |
205 */ | |
206 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
207 msg_strtrunc( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
208 char_u *s, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
209 int force) /* always truncate */ |
7 | 210 { |
211 char_u *buf = NULL; | |
212 int len; | |
213 int room; | |
214 | |
215 /* May truncate message to avoid a hit-return prompt */ | |
513 | 216 if ((!msg_scroll && !need_wait_return && shortmess(SHM_TRUNCALL) |
217 && !exmode_active && msg_silent == 0) || force) | |
7 | 218 { |
219 len = vim_strsize(s); | |
539 | 220 if (msg_scrolled != 0) |
513 | 221 /* Use all the columns. */ |
222 room = (int)(Rows - msg_row) * Columns - 1; | |
223 else | |
224 /* Use up to 'showcmd' column. */ | |
225 room = (int)(Rows - msg_row - 1) * Columns + sc_col - 1; | |
7 | 226 if (len > room && room > 0) |
227 { | |
228 #ifdef FEAT_MBYTE | |
229 if (enc_utf8) | |
230 /* may have up to 18 bytes per cell (6 per char, up to two | |
231 * composing chars) */ | |
3277 | 232 len = (room + 2) * 18; |
7 | 233 else if (enc_dbcs == DBCS_JPNU) |
234 /* may have up to 2 bytes per cell for euc-jp */ | |
3277 | 235 len = (room + 2) * 2; |
7 | 236 else |
237 #endif | |
3277 | 238 len = room + 2; |
239 buf = alloc(len); | |
7 | 240 if (buf != NULL) |
3277 | 241 trunc_string(s, buf, room, len); |
7 | 242 } |
243 } | |
244 return buf; | |
245 } | |
246 | |
247 /* | |
248 * Truncate a string "s" to "buf" with cell width "room". | |
249 * "s" and "buf" may be equal. | |
250 */ | |
251 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
252 trunc_string( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
253 char_u *s, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
254 char_u *buf, |
9640
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
255 int room_in, |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
256 int buflen) |
7 | 257 { |
9640
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
258 size_t room = room_in - 3; /* "..." takes 3 chars */ |
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
259 size_t half; |
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
260 size_t len = 0; |
7 | 261 int e; |
262 int i; | |
263 int n; | |
264 | |
9640
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
265 if (room_in < 3) |
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
266 room = 0; |
7 | 267 half = room / 2; |
268 | |
269 /* First part: Start of the string. */ | |
3277 | 270 for (e = 0; len < half && e < buflen; ++e) |
7 | 271 { |
272 if (s[e] == NUL) | |
273 { | |
274 /* text fits without truncating! */ | |
275 buf[e] = NUL; | |
276 return; | |
277 } | |
278 n = ptr2cells(s + e); | |
9542
00ee8d8c2e0c
commit https://github.com/vim/vim/commit/502ae4ba63561c98ac69af26cd9883bfd18d225f
Christian Brabandt <cb@256bit.org>
parents:
9538
diff
changeset
|
279 if (len + n > half) |
7 | 280 break; |
281 len += n; | |
282 buf[e] = s[e]; | |
283 #ifdef FEAT_MBYTE | |
284 if (has_mbyte) | |
474 | 285 for (n = (*mb_ptr2len)(s + e); --n > 0; ) |
7 | 286 { |
3277 | 287 if (++e == buflen) |
288 break; | |
7 | 289 buf[e] = s[e]; |
290 } | |
291 #endif | |
292 } | |
293 | |
294 /* Last part: End of the string. */ | |
295 i = e; | |
296 #ifdef FEAT_MBYTE | |
297 if (enc_dbcs != 0) | |
298 { | |
299 /* For DBCS going backwards in a string is slow, but | |
300 * computing the cell width isn't too slow: go forward | |
301 * until the rest fits. */ | |
302 n = vim_strsize(s + i); | |
303 while (len + n > room) | |
304 { | |
305 n -= ptr2cells(s + i); | |
474 | 306 i += (*mb_ptr2len)(s + i); |
7 | 307 } |
308 } | |
309 else if (enc_utf8) | |
310 { | |
311 /* For UTF-8 we can go backwards easily. */ | |
714 | 312 half = i = (int)STRLEN(s); |
7 | 313 for (;;) |
314 { | |
714 | 315 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
|
316 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
|
317 while (half > 0 && utf_iscomposing(utf_ptr2char(s + half))); |
7 | 318 n = ptr2cells(s + half); |
9581
716382aaa0c0
commit https://github.com/vim/vim/commit/b9644433d2728e99fab874e5e33147ad95d23a31
Christian Brabandt <cb@256bit.org>
parents:
9542
diff
changeset
|
319 if (len + n > room || half == 0) |
7 | 320 break; |
321 len += n; | |
9698
a1b1405a33ca
commit https://github.com/vim/vim/commit/a5c0cc11330157c721748e317e8ff54b649610ca
Christian Brabandt <cb@256bit.org>
parents:
9640
diff
changeset
|
322 i = (int)half; |
7 | 323 } |
324 } | |
325 else | |
326 #endif | |
327 { | |
328 for (i = (int)STRLEN(s); len + (n = ptr2cells(s + i - 1)) <= room; --i) | |
329 len += n; | |
330 } | |
331 | |
9538
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 if (i <= e + 3) |
3277 | 334 { |
9538
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
335 /* text fits without truncating */ |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
336 if (s != buf) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
337 { |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
338 len = STRLEN(s); |
9640
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
339 if (len >= (size_t)buflen) |
9538
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
340 len = buflen - 1; |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
341 len = len - e + 1; |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
342 if (len < 1) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
343 buf[e - 1] = NUL; |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
344 else |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
345 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
|
346 } |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
347 } |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
348 else if (e + 3 < buflen) |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
349 { |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
350 /* set the middle and copy the last part */ |
3277 | 351 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
|
352 len = STRLEN(s + i) + 1; |
bc0a6d9a9a07
commit https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Christian Brabandt <cb@256bit.org>
parents:
9605
diff
changeset
|
353 if (len >= (size_t)buflen - e - 3) |
3277 | 354 len = buflen - e - 3 - 1; |
355 mch_memmove(buf + e + 3, s + i, len); | |
356 buf[e + 3 + len - 1] = NUL; | |
357 } | |
358 else | |
359 { | |
9538
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
360 /* can't fit in the "...", just truncate it */ |
26da1efa9e46
commit https://github.com/vim/vim/commit/f6acffbe83e622542d9fdf3066f51933e46e4954
Christian Brabandt <cb@256bit.org>
parents:
9497
diff
changeset
|
361 buf[e - 1] = NUL; |
3277 | 362 } |
7 | 363 } |
364 | |
365 /* | |
366 * Automatic prototype generation does not understand this function. | |
367 * Note: Caller of smgs() and smsg_attr() must check the resulting string is | |
368 * shorter than IOSIZE!!! | |
369 */ | |
370 #ifndef PROTO | |
371 | |
272 | 372 int vim_snprintf(char *str, size_t str_m, char *fmt, ...); |
373 | |
7 | 374 int |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
375 # ifdef __BORLANDC__ |
7 | 376 _RTLENTRYF |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
377 # endif |
7 | 378 smsg(char_u *s, ...) |
379 { | |
380 va_list arglist; | |
381 | |
382 va_start(arglist, s); | |
11653
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
383 vim_vsnprintf((char *)IObuff, IOSIZE, (char *)s, arglist); |
7 | 384 va_end(arglist); |
385 return msg(IObuff); | |
386 } | |
387 | |
388 int | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
389 # ifdef __BORLANDC__ |
7 | 390 _RTLENTRYF |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
391 # endif |
7 | 392 smsg_attr(int attr, char_u *s, ...) |
393 { | |
394 va_list arglist; | |
395 | |
396 va_start(arglist, s); | |
11653
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
397 vim_vsnprintf((char *)IObuff, IOSIZE, (char *)s, arglist); |
7 | 398 va_end(arglist); |
399 return msg_attr(IObuff, attr); | |
400 } | |
401 | |
402 #endif | |
403 | |
404 /* | |
405 * Remember the last sourcing name/lnum used in an error message, so that it | |
406 * isn't printed each time when it didn't change. | |
407 */ | |
408 static int last_sourcing_lnum = 0; | |
409 static char_u *last_sourcing_name = NULL; | |
410 | |
411 /* | |
412 * Reset the last used sourcing name/lnum. Makes sure it is displayed again | |
413 * for the next error message; | |
414 */ | |
360 | 415 void |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
416 reset_last_sourcing(void) |
7 | 417 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13188
diff
changeset
|
418 VIM_CLEAR(last_sourcing_name); |
7 | 419 last_sourcing_lnum = 0; |
420 } | |
421 | |
422 /* | |
16 | 423 * Return TRUE if "sourcing_name" differs from "last_sourcing_name". |
424 */ | |
425 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
426 other_sourcing_name(void) |
16 | 427 { |
428 if (sourcing_name != NULL) | |
429 { | |
430 if (last_sourcing_name != NULL) | |
431 return STRCMP(sourcing_name, last_sourcing_name) != 0; | |
432 return TRUE; | |
433 } | |
434 return FALSE; | |
435 } | |
436 | |
437 /* | |
7 | 438 * Get the message about the source, as used for an error message. |
439 * Returns an allocated string with room for one more character. | |
440 * Returns NULL when no message is to be given. | |
441 */ | |
442 static char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
443 get_emsg_source(void) |
7 | 444 { |
445 char_u *Buf, *p; | |
446 | |
16 | 447 if (sourcing_name != NULL && other_sourcing_name()) |
7 | 448 { |
449 p = (char_u *)_("Error detected while processing %s:"); | |
450 Buf = alloc((unsigned)(STRLEN(sourcing_name) + STRLEN(p))); | |
451 if (Buf != NULL) | |
452 sprintf((char *)Buf, (char *)p, sourcing_name); | |
453 return Buf; | |
454 } | |
455 return NULL; | |
456 } | |
457 | |
458 /* | |
459 * Get the message about the source lnum, 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_lnum(void) |
7 | 465 { |
466 char_u *Buf, *p; | |
467 | |
468 /* lnum is 0 when executing a command from the command line | |
469 * argument, we don't want a line number then */ | |
470 if (sourcing_name != NULL | |
16 | 471 && (other_sourcing_name() || sourcing_lnum != last_sourcing_lnum) |
7 | 472 && sourcing_lnum != 0) |
473 { | |
474 p = (char_u *)_("line %4ld:"); | |
475 Buf = alloc((unsigned)(STRLEN(p) + 20)); | |
476 if (Buf != NULL) | |
477 sprintf((char *)Buf, (char *)p, (long)sourcing_lnum); | |
478 return Buf; | |
479 } | |
480 return NULL; | |
481 } | |
482 | |
483 /* | |
16 | 484 * Display name and line number for the source of an error. |
485 * Remember the file name and line number, so that for the next error the info | |
486 * is only displayed if it changed. | |
487 */ | |
488 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
489 msg_source(int attr) |
16 | 490 { |
491 char_u *p; | |
492 | |
493 ++no_wait_return; | |
494 p = get_emsg_source(); | |
495 if (p != NULL) | |
496 { | |
497 msg_attr(p, attr); | |
498 vim_free(p); | |
499 } | |
500 p = get_emsg_lnum(); | |
501 if (p != NULL) | |
502 { | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
503 msg_attr(p, HL_ATTR(HLF_N)); |
16 | 504 vim_free(p); |
505 last_sourcing_lnum = sourcing_lnum; /* only once for each line */ | |
506 } | |
507 | |
508 /* remember the last sourcing name printed, also when it's empty */ | |
36 | 509 if (sourcing_name == NULL || other_sourcing_name()) |
16 | 510 { |
511 vim_free(last_sourcing_name); | |
512 if (sourcing_name == NULL) | |
513 last_sourcing_name = NULL; | |
514 else | |
515 last_sourcing_name = vim_strsave(sourcing_name); | |
516 } | |
517 --no_wait_return; | |
518 } | |
519 | |
520 /* | |
840 | 521 * Return TRUE if not giving error messages right now: |
522 * If "emsg_off" is set: no error messages at the moment. | |
523 * If "msg" is in 'debug': do error message but without side effects. | |
524 * If "emsg_skip" is set: never do error messages. | |
525 */ | |
526 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
527 emsg_not_now(void) |
840 | 528 { |
529 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL | |
530 && vim_strchr(p_debug, 't') == NULL) | |
531 #ifdef FEAT_EVAL | |
532 || emsg_skip > 0 | |
533 #endif | |
534 ) | |
535 return TRUE; | |
536 return FALSE; | |
537 } | |
538 | |
11016
4e7308525fe7
patch 8.0.0397: can't build with +viminfo but without +eval
Christian Brabandt <cb@256bit.org>
parents:
11012
diff
changeset
|
539 #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
|
540 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
|
541 |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
542 void |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
543 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
|
544 { |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
545 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
|
546 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
|
547 |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
548 ga_add_string(&ignore_error_list, error); |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
549 } |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
550 |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
551 static int |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
552 ignore_error(char_u *msg) |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
553 { |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
554 int i; |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
555 |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
556 for (i = 0; i < ignore_error_list.ga_len; ++i) |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
557 if (strstr((char *)msg, |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
558 (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
|
559 return TRUE; |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
560 return FALSE; |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
561 } |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
562 #endif |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
563 |
9605
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
564 #if !defined(HAVE_STRERROR) || defined(PROTO) |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
565 /* |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
566 * Replacement for perror() that behaves more or less like emsg() was called. |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
567 * v:errmsg will be set and called_emsg will be set. |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
568 */ |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
569 void |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
570 do_perror(char *msg) |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
571 { |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
572 perror(msg); |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
573 ++emsg_silent; |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
574 emsg((char_u *)msg); |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
575 --emsg_silent; |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
576 } |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
577 #endif |
846d4bad2df7
commit https://github.com/vim/vim/commit/b869c0da31716ff14bbfd63346d140d0a1d68af7
Christian Brabandt <cb@256bit.org>
parents:
9581
diff
changeset
|
578 |
840 | 579 /* |
7 | 580 * emsg() - display an error message |
581 * | |
582 * Rings the bell, if appropriate, and calls message() to do the real work | |
583 * When terminal not initialized (yet) mch_errmsg(..) is used. | |
584 * | |
585 * return TRUE if wait_return not called | |
586 */ | |
587 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
588 emsg(char_u *s) |
7 | 589 { |
590 int attr; | |
591 char_u *p; | |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
592 int r; |
7 | 593 #ifdef FEAT_EVAL |
594 int ignore = FALSE; | |
595 int severe; | |
596 #endif | |
597 | |
2679 | 598 /* Skip this if not giving error messages at the moment. */ |
599 if (emsg_not_now()) | |
600 return TRUE; | |
601 | |
11006
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
602 #ifdef FEAT_EVAL |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
603 /* When testing some errors are turned into a normal message. */ |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
604 if (ignore_error(s)) |
11012
ae2de10e8398
patch 8.0.0395: testing the + register fails with Motif
Christian Brabandt <cb@256bit.org>
parents:
11006
diff
changeset
|
605 /* don't call msg() if it results in a dialog */ |
ae2de10e8398
patch 8.0.0395: testing the + register fails with Motif
Christian Brabandt <cb@256bit.org>
parents:
11006
diff
changeset
|
606 return msg_use_printf() ? FALSE : msg(s); |
11006
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
607 #endif |
b3601a8eb679
patch 8.0.0392: GUI test fails with Athena and Motif
Christian Brabandt <cb@256bit.org>
parents:
10589
diff
changeset
|
608 |
7 | 609 called_emsg = TRUE; |
610 | |
611 #ifdef FEAT_EVAL | |
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
|
612 /* If "emsg_severe" is TRUE: When an error exception is to be thrown, |
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
|
613 * prefer this message over previous messages for the same command. */ |
7 | 614 severe = emsg_severe; |
615 emsg_severe = FALSE; | |
616 #endif | |
617 | |
839 | 618 if (!emsg_off || vim_strchr(p_debug, 't') != NULL) |
7 | 619 { |
620 #ifdef FEAT_EVAL | |
621 /* | |
622 * Cause a throw of an error exception if appropriate. Don't display | |
623 * the error message in this case. (If no matching catch clause will | |
624 * be found, the message will be displayed later on.) "ignore" is set | |
625 * when the message should be ignored completely (used for the | |
626 * interrupt message). | |
627 */ | |
628 if (cause_errthrow(s, severe, &ignore) == TRUE) | |
629 { | |
630 if (!ignore) | |
631 did_emsg = TRUE; | |
632 return TRUE; | |
633 } | |
634 | |
635 /* set "v:errmsg", also when using ":silent! cmd" */ | |
636 set_vim_var_string(VV_ERRMSG, s, -1); | |
637 #endif | |
638 | |
639 /* | |
1619 | 640 * When using ":silent! cmd" ignore error messages. |
7 | 641 * But do write it to the redirection file. |
642 */ | |
643 if (emsg_silent != 0) | |
644 { | |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
645 if (emsg_noredir == 0) |
7 | 646 { |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
647 msg_start(); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
648 p = get_emsg_source(); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
649 if (p != NULL) |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
650 { |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
651 STRCAT(p, "\n"); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
652 redir_write(p, -1); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
653 vim_free(p); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
654 } |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
655 p = get_emsg_lnum(); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
656 if (p != NULL) |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
657 { |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
658 STRCAT(p, "\n"); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
659 redir_write(p, -1); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
660 vim_free(p); |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
661 } |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
662 redir_write(s, -1); |
7 | 663 } |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
664 #ifdef FEAT_JOB_CHANNEL |
11937
c893d6c00497
patch 8.0.0848: using multiple ch_log functions is clumsy
Christian Brabandt <cb@256bit.org>
parents:
11653
diff
changeset
|
665 ch_log(NULL, "ERROR: %s", (char *)s); |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
666 #endif |
7 | 667 return TRUE; |
668 } | |
669 | |
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
|
670 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
|
671 |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
12375
diff
changeset
|
672 /* Reset msg_silent, an error causes messages to be switched back on. |
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
12375
diff
changeset
|
673 */ |
7 | 674 msg_silent = 0; |
675 cmd_silent = FALSE; | |
676 | |
677 if (global_busy) /* break :global command */ | |
678 ++global_busy; | |
679 | |
680 if (p_eb) | |
681 beep_flush(); /* also includes flush_buffers() */ | |
682 else | |
683 flush_buffers(FALSE); /* flush internal buffers */ | |
684 did_emsg = TRUE; /* 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
|
685 #ifdef FEAT_EVAL |
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
|
686 did_uncaught_emsg = TRUE; |
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
|
687 #endif |
7 | 688 } |
689 | |
690 emsg_on_display = TRUE; /* remember there is an error message */ | |
691 ++msg_scroll; /* don't overwrite a previous message */ | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
692 attr = HL_ATTR(HLF_E); /* set highlight mode for error messages */ |
539 | 693 if (msg_scrolled != 0) |
7 | 694 need_wait_return = TRUE; /* needed in case emsg() is called after |
695 * wait_return has reset need_wait_return | |
696 * and a redraw is expected because | |
697 * msg_scrolled is non-zero */ | |
698 | |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
699 #ifdef FEAT_JOB_CHANNEL |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
700 emsg_to_channel_log = TRUE; |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
701 #endif |
7 | 702 /* |
703 * Display name and line number for the source of the error. | |
704 */ | |
16 | 705 msg_source(attr); |
7 | 706 |
707 /* | |
708 * Display the error message itself. | |
709 */ | |
16 | 710 msg_nowait = FALSE; /* wait for this msg */ |
10426
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
711 r = msg_attr(s, attr); |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
712 |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
713 #ifdef FEAT_JOB_CHANNEL |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
714 emsg_to_channel_log = FALSE; |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
715 #endif |
acfc83aca8ee
commit https://github.com/vim/vim/commit/958dc6923d341390531888058495569d73c356c3
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
716 return r; |
7 | 717 } |
718 | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
719 |
7 | 720 /* |
721 * Print an error message with one "%s" and one string argument. | |
722 */ | |
723 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
724 emsg2(char_u *s, char_u *a1) |
7 | 725 { |
726 return emsg3(s, a1, NULL); | |
727 } | |
728 | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
729 /* |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
730 * Print an error message with one or two "%s" and one or two string arguments. |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
731 * This is not in message.c to avoid a warning for prototypes. |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
732 */ |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
733 int |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
734 emsg3(char_u *s, char_u *a1, char_u *a2) |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
735 { |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
736 if (emsg_not_now()) |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
737 return TRUE; /* no error messages at the moment */ |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
738 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2); |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
739 return emsg(IObuff); |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
740 } |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
741 |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
742 /* |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
743 * Print an error message with one "%ld" and one long int argument. |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
744 * This is not in message.c to avoid a warning for prototypes. |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
745 */ |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
746 int |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
747 emsgn(char_u *s, long n) |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
748 { |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
749 if (emsg_not_now()) |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
750 return TRUE; /* no error messages at the moment */ |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
751 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n); |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
752 return emsg(IObuff); |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
753 } |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
754 |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
755 /* |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
756 * 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
|
757 * 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
|
758 * detected when fuzzing vim. |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
759 */ |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
760 void |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
761 iemsg(char_u *s) |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
762 { |
13188
a49a5419a83f
patch 8.0.1468: illegal memory access in del_bytes()
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
763 emsg(s); |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
764 #ifdef ABORT_ON_INTERNAL_ERROR |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
765 abort(); |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
766 #endif |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
767 } |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
768 |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
769 |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
770 /* |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
771 * Same as emsg2(...) 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
|
772 * 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
|
773 * detected when fuzzing vim. |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
774 */ |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
775 void |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
776 iemsg2(char_u *s, char_u *a1) |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
777 { |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
778 emsg2(s, a1); |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
779 #ifdef ABORT_ON_INTERNAL_ERROR |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
780 abort(); |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
781 #endif |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
782 } |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
783 |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
784 /* |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
785 * Same as emsgn(...) 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
|
786 * 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
|
787 * detected when fuzzing vim. |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
788 */ |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
789 void |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
790 iemsgn(char_u *s, long n) |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
791 { |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
792 emsgn(s, n); |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
793 #ifdef ABORT_ON_INTERNAL_ERROR |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
794 abort(); |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
795 #endif |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
796 } |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
797 |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
798 /* |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
799 * Give an "Internal error" message. |
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 void |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
802 internal_error(char *where) |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
803 { |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
804 IEMSG2(_(e_intern2), where); |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
805 } |
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10158
diff
changeset
|
806 |
330 | 807 /* emsg3() and emsgn() are in misc2.c to avoid warnings for the prototypes. */ |
7 | 808 |
167 | 809 void |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
810 emsg_invreg(int name) |
167 | 811 { |
812 EMSG2(_("E354: Invalid register name: '%s'"), transchar(name)); | |
813 } | |
814 | |
7 | 815 /* |
816 * Like msg(), but truncate to a single line if p_shm contains 't', or when | |
817 * "force" is TRUE. This truncates in another way as for normal messages. | |
818 * Careful: The string may be changed by msg_may_trunc()! | |
819 * Returns a pointer to the printed message, if wait_return() not called. | |
820 */ | |
821 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
822 msg_trunc_attr(char_u *s, int force, int attr) |
7 | 823 { |
824 int n; | |
825 | |
826 /* Add message to history before truncating */ | |
827 add_msg_hist(s, -1, attr); | |
828 | |
829 s = msg_may_trunc(force, s); | |
830 | |
831 msg_hist_off = TRUE; | |
832 n = msg_attr(s, attr); | |
833 msg_hist_off = FALSE; | |
834 | |
835 if (n) | |
836 return s; | |
837 return NULL; | |
838 } | |
839 | |
840 /* | |
841 * Check if message "s" should be truncated at the start (for filenames). | |
842 * Return a pointer to where the truncated message starts. | |
843 * Note: May change the message by replacing a character with '<'. | |
844 */ | |
845 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
846 msg_may_trunc(int force, char_u *s) |
7 | 847 { |
848 int n; | |
849 int room; | |
850 | |
851 room = (int)(Rows - cmdline_row - 1) * Columns + sc_col - 1; | |
852 if ((force || (shortmess(SHM_TRUNC) && !exmode_active)) | |
853 && (n = (int)STRLEN(s) - room) > 0) | |
854 { | |
855 #ifdef FEAT_MBYTE | |
856 if (has_mbyte) | |
857 { | |
858 int size = vim_strsize(s); | |
859 | |
615 | 860 /* There may be room anyway when there are multibyte chars. */ |
861 if (size <= room) | |
862 return s; | |
863 | |
7 | 864 for (n = 0; size >= room; ) |
865 { | |
866 size -= (*mb_ptr2cells)(s + n); | |
474 | 867 n += (*mb_ptr2len)(s + n); |
7 | 868 } |
869 --n; | |
870 } | |
871 #endif | |
872 s += n; | |
873 *s = '<'; | |
874 } | |
875 return s; | |
876 } | |
877 | |
878 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
879 add_msg_hist( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
880 char_u *s, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
881 int len, /* -1 for undetermined length */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
882 int attr) |
7 | 883 { |
884 struct msg_hist *p; | |
885 | |
886 if (msg_hist_off || msg_silent != 0) | |
887 return; | |
888 | |
889 /* Don't let the message history get too big */ | |
625 | 890 while (msg_hist_len > MAX_MSG_HIST_LEN) |
355 | 891 (void)delete_first_msg(); |
892 | |
7 | 893 /* allocate an entry and add the message at the end of the history */ |
894 p = (struct msg_hist *)alloc((int)sizeof(struct msg_hist)); | |
895 if (p != NULL) | |
896 { | |
897 if (len < 0) | |
898 len = (int)STRLEN(s); | |
899 /* remove leading and trailing newlines */ | |
900 while (len > 0 && *s == '\n') | |
901 { | |
902 ++s; | |
903 --len; | |
904 } | |
905 while (len > 0 && s[len - 1] == '\n') | |
906 --len; | |
907 p->msg = vim_strnsave(s, len); | |
908 p->next = NULL; | |
909 p->attr = attr; | |
910 if (last_msg_hist != NULL) | |
911 last_msg_hist->next = p; | |
912 last_msg_hist = p; | |
913 if (first_msg_hist == NULL) | |
914 first_msg_hist = last_msg_hist; | |
915 ++msg_hist_len; | |
916 } | |
917 } | |
918 | |
919 /* | |
355 | 920 * Delete the first (oldest) message from the history. |
921 * Returns FAIL if there are no messages. | |
922 */ | |
923 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
924 delete_first_msg(void) |
355 | 925 { |
926 struct msg_hist *p; | |
927 | |
928 if (msg_hist_len <= 0) | |
929 return FAIL; | |
930 p = first_msg_hist; | |
931 first_msg_hist = p->next; | |
1619 | 932 if (first_msg_hist == NULL) |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
933 last_msg_hist = NULL; /* history is empty */ |
355 | 934 vim_free(p->msg); |
935 vim_free(p); | |
936 --msg_hist_len; | |
937 return OK; | |
938 } | |
939 | |
940 /* | |
7 | 941 * ":messages" command. |
942 */ | |
943 void | |
8901
b4dad96ade29
commit https://github.com/vim/vim/commit/52196b2dbe3b64b5054e1df3d3aa8fc65e30addc
Christian Brabandt <cb@256bit.org>
parents:
8897
diff
changeset
|
944 ex_messages(exarg_T *eap) |
7 | 945 { |
946 struct msg_hist *p; | |
947 char_u *s; | |
8897
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
948 int c = 0; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
949 |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
950 if (STRCMP(eap->arg, "clear") == 0) |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
951 { |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
952 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
|
953 |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
954 while (msg_hist_len > keep) |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
955 (void)delete_first_msg(); |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
956 return; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
957 } |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
958 |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
959 if (*eap->arg != NUL) |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
960 { |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
961 EMSG(_(e_invarg)); |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
962 return; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
963 } |
7 | 964 |
965 msg_hist_off = TRUE; | |
966 | |
8897
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
967 p = first_msg_hist; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
968 if (eap->addr_count != 0) |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
969 { |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
970 /* Count total messages */ |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
971 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
|
972 c++; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
973 |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
974 c -= eap->line2; |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
975 |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
976 /* Skip without number of messages specified */ |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
977 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
|
978 p = p->next, c--); |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
979 } |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
980 |
8905
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
981 if (p == first_msg_hist) |
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
982 { |
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
983 s = mch_getenv((char_u *)"LANG"); |
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
984 if (s != NULL && *s != NUL) |
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
985 msg_attr((char_u *) |
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
986 _("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
|
987 HL_ATTR(HLF_T)); |
8905
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
988 } |
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
989 |
8897
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
990 /* Display what was not skipped. */ |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
991 for (; p != NULL && !got_int; p = p->next) |
7 | 992 if (p->msg != NULL) |
993 msg_attr(p->msg, p->attr); | |
994 | |
995 msg_hist_off = FALSE; | |
996 } | |
997 | |
28 | 998 #if defined(FEAT_CON_DIALOG) || defined(FIND_REPLACE_DIALOG) || defined(PROTO) |
7 | 999 /* |
1000 * Call this after prompting the user. This will avoid a hit-return message | |
1001 * and a delay. | |
1002 */ | |
28 | 1003 void |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1004 msg_end_prompt(void) |
7 | 1005 { |
1006 need_wait_return = FALSE; | |
1007 emsg_on_display = FALSE; | |
1008 cmdline_row = msg_row; | |
1009 msg_col = 0; | |
1010 msg_clr_eos(); | |
3240 | 1011 lines_left = -1; |
7 | 1012 } |
1013 #endif | |
1014 | |
1015 /* | |
1016 * wait for the user to hit a key (normally a return) | |
1017 * if 'redraw' is TRUE, clear and redraw the screen | |
1018 * if 'redraw' is FALSE, just redraw the screen | |
1019 * if 'redraw' is -1, don't redraw at all | |
1020 */ | |
1021 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1022 wait_return(int redraw) |
7 | 1023 { |
1024 int c; | |
1025 int oldState; | |
1026 int tmpState; | |
1027 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
|
1028 int save_reg_recording; |
5430 | 1029 FILE *save_scriptout; |
7 | 1030 |
1031 if (redraw == TRUE) | |
1032 must_redraw = CLEAR; | |
1033 | |
1034 /* If using ":silent cmd", don't wait for a return. Also don't set | |
1035 * need_wait_return to do it later. */ | |
1036 if (msg_silent != 0) | |
1037 return; | |
1038 | |
2723 | 1039 /* |
1040 * When inside vgetc(), we can't wait for a typed character at all. | |
1041 * With the global command (and some others) we only need one return at | |
1042 * the end. Adjust cmdline_row to avoid the next message overwriting the | |
1043 * last one. | |
1044 */ | |
822 | 1045 if (vgetc_busy > 0) |
7 | 1046 return; |
2723 | 1047 need_wait_return = TRUE; |
7 | 1048 if (no_wait_return) |
1049 { | |
1050 if (!exmode_active) | |
1051 cmdline_row = msg_row; | |
1052 return; | |
1053 } | |
1054 | |
1055 redir_off = TRUE; /* don't redirect this message */ | |
1056 oldState = State; | |
1057 if (quit_more) | |
1058 { | |
1059 c = CAR; /* just pretend CR was hit */ | |
1060 quit_more = FALSE; | |
1061 got_int = FALSE; | |
1062 } | |
1063 else if (exmode_active) | |
1064 { | |
1065 MSG_PUTS(" "); /* make sure the cursor is on the right line */ | |
1066 c = CAR; /* no need for a return in ex mode */ | |
1067 got_int = FALSE; | |
1068 } | |
1069 else | |
1070 { | |
1071 /* Make sure the hit-return prompt is on screen when 'guioptions' was | |
1072 * just changed. */ | |
1073 screenalloc(FALSE); | |
1074 | |
1075 State = HITRETURN; | |
1076 #ifdef FEAT_MOUSE | |
1077 setmouse(); | |
1078 #endif | |
1079 #ifdef USE_ON_FLY_SCROLL | |
1080 dont_scroll = TRUE; /* disallow scrolling here */ | |
1081 #endif | |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
1082 cmdline_row = msg_row; |
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
1083 |
4325 | 1084 /* Avoid the sequence that the user types ":" at the hit-return prompt |
1085 * to start an Ex command, but the file-changed dialog gets in the | |
1086 * way. */ | |
1087 if (need_check_timestamps) | |
1088 check_timestamps(FALSE); | |
1089 | |
7 | 1090 hit_return_msg(); |
1091 | |
1092 do | |
1093 { | |
1094 /* Remember "got_int", if it is set vgetc() probably returns a | |
1095 * CTRL-C, but we need to loop then. */ | |
1096 had_got_int = got_int; | |
280 | 1097 |
1098 /* Don't do mappings here, we put the character back in the | |
1099 * typeahead buffer. */ | |
1100 ++no_mapping; | |
1101 ++allow_keys; | |
5430 | 1102 |
1103 /* Temporarily disable Recording. If Recording is active, the | |
1104 * character will be recorded later, since it will be added to the | |
1105 * 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
|
1106 save_reg_recording = reg_recording; |
5430 | 1107 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
|
1108 reg_recording = 0; |
5430 | 1109 scriptout = NULL; |
7 | 1110 c = safe_vgetc(); |
216 | 1111 if (had_got_int && !global_busy) |
7 | 1112 got_int = FALSE; |
280 | 1113 --no_mapping; |
1114 --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
|
1115 reg_recording = save_reg_recording; |
5430 | 1116 scriptout = save_scriptout; |
280 | 1117 |
7 | 1118 #ifdef FEAT_CLIPBOARD |
1119 /* Strange way to allow copying (yanking) a modeless selection at | |
1120 * the hit-enter prompt. Use CTRL-Y, because the same is used in | |
1121 * Cmdline-mode and it's harmless when there is no selection. */ | |
1122 if (c == Ctrl_Y && clip_star.state == SELECT_DONE) | |
1123 { | |
1124 clip_copy_modeless_selection(TRUE); | |
1125 c = K_IGNORE; | |
1126 } | |
1127 #endif | |
1381 | 1128 |
698 | 1129 /* |
1130 * Allow scrolling back in the messages. | |
1131 * Also accept scroll-down commands when messages fill the screen, | |
1132 * to avoid that typing one 'j' too many makes the messages | |
1133 * disappear. | |
1134 */ | |
1135 if (p_more && !p_cp) | |
446 | 1136 { |
4234 | 1137 if (c == 'b' || c == 'k' || c == 'u' || c == 'g' |
1138 || c == K_UP || c == K_PAGEUP) | |
446 | 1139 { |
4234 | 1140 if (msg_scrolled > Rows) |
1141 /* scroll back to show older messages */ | |
1142 do_more_prompt(c); | |
1143 else | |
1144 { | |
1145 msg_didout = FALSE; | |
1146 c = K_IGNORE; | |
1147 msg_col = | |
1148 #ifdef FEAT_RIGHTLEFT | |
1149 cmdmsg_rl ? Columns - 1 : | |
1150 #endif | |
1151 0; | |
1152 } | |
698 | 1153 if (quit_more) |
1154 { | |
1155 c = CAR; /* just pretend CR was hit */ | |
1156 quit_more = FALSE; | |
1157 got_int = FALSE; | |
1158 } | |
5290
059c8a4b103f
updated for version 7.4b.021
Bram Moolenaar <bram@vim.org>
parents:
5245
diff
changeset
|
1159 else if (c != K_IGNORE) |
698 | 1160 { |
1161 c = K_IGNORE; | |
1162 hit_return_msg(); | |
1163 } | |
446 | 1164 } |
698 | 1165 else if (msg_scrolled > Rows - 2 |
4234 | 1166 && (c == 'j' || c == 'd' || c == 'f' |
1167 || c == K_DOWN || c == K_PAGEDOWN)) | |
446 | 1168 c = K_IGNORE; |
1169 } | |
7 | 1170 } while ((had_got_int && c == Ctrl_C) |
1171 || c == K_IGNORE | |
1172 #ifdef FEAT_GUI | |
1173 || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR | |
1174 #endif | |
1175 #ifdef FEAT_MOUSE | |
1176 || c == K_LEFTDRAG || c == K_LEFTRELEASE | |
1177 || c == K_MIDDLEDRAG || c == K_MIDDLERELEASE | |
1178 || 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
|
1179 || c == K_MOUSELEFT || c == K_MOUSERIGHT |
7 | 1180 || 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
|
1181 || c == K_MOUSEMOVE |
7 | 1182 || (!mouse_has(MOUSE_RETURN) |
1183 && mouse_row < msg_row | |
1184 && (c == K_LEFTMOUSE | |
1185 || c == K_MIDDLEMOUSE | |
1186 || c == K_RIGHTMOUSE | |
1187 || c == K_X1MOUSE | |
1188 || c == K_X2MOUSE)) | |
1189 #endif | |
1190 ); | |
1191 ui_breakcheck(); | |
1192 #ifdef FEAT_MOUSE | |
1193 /* | |
1194 * Avoid that the mouse-up event causes visual mode to start. | |
1195 */ | |
1196 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE | |
1197 || c == K_X1MOUSE || c == K_X2MOUSE) | |
1198 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0); | |
1199 else | |
1200 #endif | |
1201 if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C) | |
1202 { | |
280 | 1203 /* Put the character back in the typeahead buffer. Don't use the |
1204 * stuff buffer, because lmaps wouldn't work. */ | |
852 | 1205 ins_char_typebuf(c); |
7 | 1206 do_redraw = TRUE; /* need a redraw even though there is |
280 | 1207 typeahead */ |
7 | 1208 } |
1209 } | |
1210 redir_off = FALSE; | |
1211 | |
1212 /* | |
1213 * If the user hits ':', '?' or '/' we get a command line from the next | |
1214 * line. | |
1215 */ | |
1216 if (c == ':' || c == '?' || c == '/') | |
1217 { | |
1218 if (!exmode_active) | |
1219 cmdline_row = msg_row; | |
1220 skip_redraw = TRUE; /* skip redraw once */ | |
1221 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
|
1222 #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
|
1223 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
|
1224 #endif |
7 | 1225 } |
1226 | |
1227 /* | |
1228 * If the window size changed set_shellsize() will redraw the screen. | |
1229 * Otherwise the screen is only redrawn if 'redraw' is set and no ':' | |
1230 * typed. | |
1231 */ | |
1232 tmpState = State; | |
1233 State = oldState; /* restore State before set_shellsize */ | |
1234 #ifdef FEAT_MOUSE | |
1235 setmouse(); | |
1236 #endif | |
1237 msg_check(); | |
1238 | |
1239 #if defined(UNIX) || defined(VMS) | |
1240 /* | |
1241 * When switching screens, we need to output an extra newline on exit. | |
1242 */ | |
1243 if (swapping_screen() && !termcap_active) | |
1244 newline_on_exit = TRUE; | |
1245 #endif | |
1246 | |
1247 need_wait_return = FALSE; | |
1248 did_wait_return = TRUE; | |
1249 emsg_on_display = FALSE; /* can delete error message now */ | |
1250 lines_left = -1; /* reset lines_left at next msg_start() */ | |
1251 reset_last_sourcing(); | |
1252 if (keep_msg != NULL && vim_strsize(keep_msg) >= | |
1253 (Rows - cmdline_row - 1) * Columns + sc_col) | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13188
diff
changeset
|
1254 VIM_CLEAR(keep_msg); /* don't redisplay message, it's too long */ |
7 | 1255 |
1256 if (tmpState == SETWSIZE) /* got resize event while in vgetc() */ | |
1257 { | |
1258 starttermcap(); /* start termcap before redrawing */ | |
1259 shell_resized(); | |
1260 } | |
1261 else if (!skip_redraw | |
1262 && (redraw == TRUE || (msg_scrolled != 0 && redraw != -1))) | |
1263 { | |
1264 starttermcap(); /* start termcap before redrawing */ | |
1265 redraw_later(VALID); | |
1266 } | |
1267 } | |
1268 | |
1269 /* | |
1270 * Write the hit-return prompt. | |
1271 */ | |
1272 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1273 hit_return_msg(void) |
7 | 1274 { |
446 | 1275 int save_p_more = p_more; |
1276 | |
1277 p_more = FALSE; /* don't want see this message when scrolling back */ | |
1278 if (msg_didout) /* start on a new line */ | |
7 | 1279 msg_putchar('\n'); |
1280 if (got_int) | |
1281 MSG_PUTS(_("Interrupt: ")); | |
1282 | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1283 MSG_PUTS_ATTR(_("Press ENTER or type command to continue"), HL_ATTR(HLF_R)); |
7 | 1284 if (!msg_use_printf()) |
1285 msg_clr_eos(); | |
446 | 1286 p_more = save_p_more; |
7 | 1287 } |
1288 | |
1289 /* | |
1290 * Set "keep_msg" to "s". Free the old value and check for NULL pointer. | |
1291 */ | |
1292 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1293 set_keep_msg(char_u *s, int attr) |
7 | 1294 { |
1295 vim_free(keep_msg); | |
1296 if (s != NULL && msg_silent == 0) | |
1297 keep_msg = vim_strsave(s); | |
1298 else | |
1299 keep_msg = NULL; | |
127 | 1300 keep_msg_more = FALSE; |
678 | 1301 keep_msg_attr = attr; |
7 | 1302 } |
1303 | |
678 | 1304 #if defined(FEAT_TERMRESPONSE) || defined(PROTO) |
1305 /* | |
1306 * If there currently is a message being displayed, set "keep_msg" to it, so | |
1307 * that it will be displayed again after redraw. | |
1308 */ | |
1309 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1310 set_keep_msg_from_hist(void) |
678 | 1311 { |
1312 if (keep_msg == NULL && last_msg_hist != NULL && msg_scrolled == 0 | |
1313 && (State & NORMAL)) | |
1314 set_keep_msg(last_msg_hist->msg, last_msg_hist->attr); | |
1315 } | |
1316 #endif | |
1317 | |
7 | 1318 /* |
1319 * Prepare for outputting characters in the command line. | |
1320 */ | |
1321 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1322 msg_start(void) |
7 | 1323 { |
1324 int did_return = FALSE; | |
1325 | |
2491
904cd1c26a1e
After entering a crypt key would need to hit return to continue.
Bram Moolenaar <bram@vim.org>
parents:
2409
diff
changeset
|
1326 if (!msg_silent) |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13188
diff
changeset
|
1327 VIM_CLEAR(keep_msg); |
1619 | 1328 |
1329 #ifdef FEAT_EVAL | |
1330 if (need_clr_eos) | |
1331 { | |
1332 /* Halfway an ":echo" command and getting an (error) message: clear | |
1333 * any text from the command. */ | |
1334 need_clr_eos = FALSE; | |
1335 msg_clr_eos(); | |
1336 } | |
1337 #endif | |
1338 | |
7 | 1339 if (!msg_scroll && full_screen) /* overwrite last message */ |
1340 { | |
1341 msg_row = cmdline_row; | |
1342 msg_col = | |
1343 #ifdef FEAT_RIGHTLEFT | |
1344 cmdmsg_rl ? Columns - 1 : | |
1345 #endif | |
1346 0; | |
1347 } | |
1348 else if (msg_didout) /* start message on next line */ | |
1349 { | |
1350 msg_putchar('\n'); | |
1351 did_return = TRUE; | |
1352 if (exmode_active != EXMODE_NORMAL) | |
1353 cmdline_row = msg_row; | |
1354 } | |
1355 if (!msg_didany || lines_left < 0) | |
1356 msg_starthere(); | |
1357 if (msg_silent == 0) | |
1358 { | |
1359 msg_didout = FALSE; /* no output on current line yet */ | |
1360 cursor_off(); | |
1361 } | |
1362 | |
1363 /* when redirecting, may need to start a new line. */ | |
1364 if (!did_return) | |
1365 redir_write((char_u *)"\n", -1); | |
1366 } | |
1367 | |
1368 /* | |
1369 * Note that the current msg position is where messages start. | |
1370 */ | |
1371 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1372 msg_starthere(void) |
7 | 1373 { |
1374 lines_left = cmdline_row; | |
1375 msg_didany = FALSE; | |
1376 } | |
1377 | |
1378 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1379 msg_putchar(int c) |
7 | 1380 { |
1381 msg_putchar_attr(c, 0); | |
1382 } | |
1383 | |
1384 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1385 msg_putchar_attr(int c, int attr) |
7 | 1386 { |
1387 #ifdef FEAT_MBYTE | |
1388 char_u buf[MB_MAXBYTES + 1]; | |
1389 #else | |
1390 char_u buf[4]; | |
1391 #endif | |
1392 | |
1393 if (IS_SPECIAL(c)) | |
1394 { | |
1395 buf[0] = K_SPECIAL; | |
1396 buf[1] = K_SECOND(c); | |
1397 buf[2] = K_THIRD(c); | |
1398 buf[3] = NUL; | |
1399 } | |
1400 else | |
1401 { | |
1402 #ifdef FEAT_MBYTE | |
1403 buf[(*mb_char2bytes)(c, buf)] = NUL; | |
1404 #else | |
1405 buf[0] = c; | |
1406 buf[1] = NUL; | |
1407 #endif | |
1408 } | |
1409 msg_puts_attr(buf, attr); | |
1410 } | |
1411 | |
1412 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1413 msg_outnum(long n) |
7 | 1414 { |
1415 char_u buf[20]; | |
1416 | |
1417 sprintf((char *)buf, "%ld", n); | |
1418 msg_puts(buf); | |
1419 } | |
1420 | |
1421 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1422 msg_home_replace(char_u *fname) |
7 | 1423 { |
1424 msg_home_replace_attr(fname, 0); | |
1425 } | |
1426 | |
1427 #if defined(FEAT_FIND_ID) || defined(PROTO) | |
1428 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1429 msg_home_replace_hl(char_u *fname) |
7 | 1430 { |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1431 msg_home_replace_attr(fname, HL_ATTR(HLF_D)); |
7 | 1432 } |
1433 #endif | |
1434 | |
1435 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1436 msg_home_replace_attr(char_u *fname, int attr) |
7 | 1437 { |
1438 char_u *name; | |
1439 | |
1440 name = home_replace_save(NULL, fname); | |
1441 if (name != NULL) | |
1442 msg_outtrans_attr(name, attr); | |
1443 vim_free(name); | |
1444 } | |
1445 | |
1446 /* | |
1447 * Output 'len' characters in 'str' (including NULs) with translation | |
1448 * if 'len' is -1, output upto a NUL character. | |
1449 * Use attributes 'attr'. | |
1450 * Return the number of characters it takes on the screen. | |
1451 */ | |
1452 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1453 msg_outtrans(char_u *str) |
7 | 1454 { |
1455 return msg_outtrans_attr(str, 0); | |
1456 } | |
1457 | |
1458 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1459 msg_outtrans_attr(char_u *str, int attr) |
7 | 1460 { |
1461 return msg_outtrans_len_attr(str, (int)STRLEN(str), attr); | |
1462 } | |
1463 | |
1464 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1465 msg_outtrans_len(char_u *str, int len) |
7 | 1466 { |
1467 return msg_outtrans_len_attr(str, len, 0); | |
1468 } | |
1469 | |
1470 /* | |
1471 * Output one character at "p". Return pointer to the next character. | |
1472 * Handles multi-byte characters. | |
1473 */ | |
1474 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1475 msg_outtrans_one(char_u *p, int attr) |
7 | 1476 { |
1477 #ifdef FEAT_MBYTE | |
1478 int l; | |
1479 | |
474 | 1480 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
7 | 1481 { |
1482 msg_outtrans_len_attr(p, l, attr); | |
1483 return p + l; | |
1484 } | |
1485 #endif | |
1486 msg_puts_attr(transchar_byte(*p), attr); | |
1487 return p + 1; | |
1488 } | |
1489 | |
1490 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1491 msg_outtrans_len_attr(char_u *msgstr, int len, int attr) |
7 | 1492 { |
1493 int retval = 0; | |
1494 char_u *str = msgstr; | |
1495 char_u *plain_start = msgstr; | |
1496 char_u *s; | |
1497 #ifdef FEAT_MBYTE | |
1498 int mb_l; | |
1499 int c; | |
1500 #endif | |
1501 | |
1502 /* if MSG_HIST flag set, add message to history */ | |
1503 if (attr & MSG_HIST) | |
1504 { | |
1505 add_msg_hist(str, len, attr); | |
1506 attr &= ~MSG_HIST; | |
1507 } | |
1508 | |
1509 #ifdef FEAT_MBYTE | |
1510 /* If the string starts with a composing character first draw a space on | |
1511 * which the composing char can be drawn. */ | |
1512 if (enc_utf8 && utf_iscomposing(utf_ptr2char(msgstr))) | |
1513 msg_puts_attr((char_u *)" ", attr); | |
1514 #endif | |
1515 | |
1516 /* | |
1517 * Go over the string. Special characters are translated and printed. | |
1518 * Normal characters are printed several at a time. | |
1519 */ | |
1520 while (--len >= 0) | |
1521 { | |
1522 #ifdef FEAT_MBYTE | |
1523 if (enc_utf8) | |
1524 /* Don't include composing chars after the end. */ | |
474 | 1525 mb_l = utfc_ptr2len_len(str, len + 1); |
7 | 1526 else if (has_mbyte) |
474 | 1527 mb_l = (*mb_ptr2len)(str); |
7 | 1528 else |
1529 mb_l = 1; | |
1530 if (has_mbyte && mb_l > 1) | |
1531 { | |
1532 c = (*mb_ptr2char)(str); | |
1533 if (vim_isprintc(c)) | |
1534 /* printable multi-byte char: count the cells. */ | |
1535 retval += (*mb_ptr2cells)(str); | |
1536 else | |
1537 { | |
1538 /* unprintable multi-byte char: print the printable chars so | |
1539 * far and the translation of the unprintable char. */ | |
1540 if (str > plain_start) | |
1541 msg_puts_attr_len(plain_start, (int)(str - plain_start), | |
1542 attr); | |
1543 plain_start = str + mb_l; | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1544 msg_puts_attr(transchar(c), attr == 0 ? HL_ATTR(HLF_8) : attr); |
7 | 1545 retval += char2cells(c); |
1546 } | |
1547 len -= mb_l - 1; | |
1548 str += mb_l; | |
1549 } | |
1550 else | |
1551 #endif | |
1552 { | |
1553 s = transchar_byte(*str); | |
1554 if (s[1] != NUL) | |
1555 { | |
1556 /* unprintable char: print the printable chars so far and the | |
1557 * translation of the unprintable char. */ | |
1558 if (str > plain_start) | |
1559 msg_puts_attr_len(plain_start, (int)(str - plain_start), | |
1560 attr); | |
1561 plain_start = str + 1; | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1562 msg_puts_attr(s, attr == 0 ? HL_ATTR(HLF_8) : attr); |
1668 | 1563 retval += (int)STRLEN(s); |
7 | 1564 } |
1663 | 1565 else |
1566 ++retval; | |
7 | 1567 ++str; |
1568 } | |
1569 } | |
1570 | |
1571 if (str > plain_start) | |
1572 /* print the printable chars at the end */ | |
1573 msg_puts_attr_len(plain_start, (int)(str - plain_start), attr); | |
1574 | |
1575 return retval; | |
1576 } | |
1577 | |
1578 #if defined(FEAT_QUICKFIX) || defined(PROTO) | |
1579 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1580 msg_make(char_u *arg) |
7 | 1581 { |
1582 int i; | |
1583 static char_u *str = (char_u *)"eeffoc", *rs = (char_u *)"Plon#dqg#vxjduB"; | |
1584 | |
1585 arg = skipwhite(arg); | |
1586 for (i = 5; *arg && i >= 0; --i) | |
1587 if (*arg++ != str[i]) | |
1588 break; | |
1589 if (i < 0) | |
1590 { | |
1591 msg_putchar('\n'); | |
1592 for (i = 0; rs[i]; ++i) | |
1593 msg_putchar(rs[i] - 3); | |
1594 } | |
1595 } | |
1596 #endif | |
1597 | |
1598 /* | |
1599 * Output the string 'str' upto a NUL character. | |
1600 * Return the number of characters it takes on the screen. | |
1601 * | |
1602 * If K_SPECIAL is encountered, then it is taken in conjunction with the | |
1603 * following character and shown as <F1>, <S-Up> etc. Any other character | |
1604 * which is not printable shown in <> form. | |
1605 * If 'from' is TRUE (lhs of a mapping), a space is shown as <Space>. | |
1606 * If a character is displayed in one of these special ways, is also | |
1607 * highlighted (its highlight name is '8' in the p_hl variable). | |
1608 * Otherwise characters are not highlighted. | |
1609 * This function is used to show mappings, where we want to see how to type | |
1610 * the character/string -- webb | |
1611 */ | |
1612 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1613 msg_outtrans_special( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1614 char_u *strstart, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1615 int from) /* TRUE for lhs of a mapping */ |
7 | 1616 { |
1617 char_u *str = strstart; | |
1618 int retval = 0; | |
1619 char_u *string; | |
1620 int attr; | |
1621 int len; | |
1622 | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1623 attr = HL_ATTR(HLF_8); |
7 | 1624 while (*str != NUL) |
1625 { | |
1626 /* Leading and trailing spaces need to be displayed in <> form. */ | |
1627 if ((str == strstart || str[1] == NUL) && *str == ' ') | |
1628 { | |
1629 string = (char_u *)"<Space>"; | |
1630 ++str; | |
1631 } | |
1632 else | |
1633 string = str2special(&str, from); | |
1634 len = vim_strsize(string); | |
1635 /* Highlight special keys */ | |
1636 msg_puts_attr(string, len > 1 | |
1637 #ifdef FEAT_MBYTE | |
474 | 1638 && (*mb_ptr2len)(string) <= 1 |
7 | 1639 #endif |
1640 ? attr : 0); | |
1641 retval += len; | |
1642 } | |
1643 return retval; | |
1644 } | |
1645 | |
2610 | 1646 #if defined(FEAT_EVAL) || defined(PROTO) |
1647 /* | |
1648 * Return the lhs or rhs of a mapping, with the key codes turned into printable | |
1649 * strings, in an allocated string. | |
1650 */ | |
1651 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1652 str2special_save( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1653 char_u *str, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1654 int is_lhs) /* TRUE for lhs, FALSE for rhs */ |
2610 | 1655 { |
1656 garray_T ga; | |
1657 char_u *p = str; | |
1658 | |
1659 ga_init2(&ga, 1, 40); | |
1660 while (*p != NUL) | |
1661 ga_concat(&ga, str2special(&p, is_lhs)); | |
1662 ga_append(&ga, NUL); | |
1663 return (char_u *)ga.ga_data; | |
1664 } | |
1665 #endif | |
1666 | |
7 | 1667 /* |
1668 * Return the printable string for the key codes at "*sp". | |
1669 * Used for translating the lhs or rhs of a mapping to printable chars. | |
1670 * Advances "sp" to the next code. | |
1671 */ | |
1672 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1673 str2special( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1674 char_u **sp, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1675 int from) /* TRUE for lhs of mapping */ |
7 | 1676 { |
1677 int c; | |
1678 static char_u buf[7]; | |
1679 char_u *str = *sp; | |
1680 int modifiers = 0; | |
1681 int special = FALSE; | |
1682 | |
1683 #ifdef FEAT_MBYTE | |
1684 if (has_mbyte) | |
1685 { | |
1686 char_u *p; | |
1687 | |
1688 /* Try to un-escape a multi-byte character. Return the un-escaped | |
1689 * string if it is a multi-byte character. */ | |
1690 p = mb_unescape(sp); | |
1691 if (p != NULL) | |
1692 return p; | |
1693 } | |
1694 #endif | |
1695 | |
1696 c = *str; | |
1697 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) | |
1698 { | |
1699 if (str[1] == KS_MODIFIER) | |
1700 { | |
1701 modifiers = str[2]; | |
1702 str += 3; | |
1703 c = *str; | |
1704 } | |
1705 if (c == K_SPECIAL && str[1] != NUL && str[2] != NUL) | |
1706 { | |
1707 c = TO_SPECIAL(str[1], str[2]); | |
1708 str += 2; | |
1709 } | |
1710 if (IS_SPECIAL(c) || modifiers) /* special key */ | |
1711 special = TRUE; | |
1712 } | |
1713 | |
1714 #ifdef FEAT_MBYTE | |
3024 | 1715 if (has_mbyte && !IS_SPECIAL(c)) |
7 | 1716 { |
3072 | 1717 int len = (*mb_ptr2len)(str); |
3024 | 1718 |
1719 /* For multi-byte characters check for an illegal byte. */ | |
1720 if (has_mbyte && MB_BYTE2LEN(*str) > len) | |
1721 { | |
1722 transchar_nonprint(buf, c); | |
1723 *sp = str + 1; | |
1724 return buf; | |
1725 } | |
3072 | 1726 /* Since 'special' is TRUE the multi-byte character 'c' will be |
1727 * processed by get_special_key_name() */ | |
1728 c = (*mb_ptr2char)(str); | |
1729 *sp = str + len; | |
7 | 1730 } |
3024 | 1731 else |
7 | 1732 #endif |
3024 | 1733 *sp = str + 1; |
7 | 1734 |
1735 /* Make unprintable characters in <> form, also <M-Space> and <Tab>. | |
1736 * Use <Space> only for lhs of a mapping. */ | |
1737 if (special || char2cells(c) > 1 || (from && c == ' ')) | |
1738 return get_special_key_name(c, modifiers); | |
1739 buf[0] = c; | |
1740 buf[1] = NUL; | |
1741 return buf; | |
1742 } | |
1743 | |
1744 /* | |
1745 * Translate a key sequence into special key names. | |
1746 */ | |
1747 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1748 str2specialbuf(char_u *sp, char_u *buf, int len) |
7 | 1749 { |
1750 char_u *s; | |
1751 | |
1752 *buf = NUL; | |
1753 while (*sp) | |
1754 { | |
1755 s = str2special(&sp, FALSE); | |
1756 if ((int)(STRLEN(s) + STRLEN(buf)) < len) | |
1757 STRCAT(buf, s); | |
1758 } | |
1759 } | |
1760 | |
1761 /* | |
1762 * print line for :print or :list command | |
1763 */ | |
1764 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1765 msg_prt_line(char_u *s, int list) |
7 | 1766 { |
1767 int c; | |
1768 int col = 0; | |
1769 int n_extra = 0; | |
1770 int c_extra = 0; | |
1771 char_u *p_extra = NULL; /* init to make SASC shut up */ | |
1772 int n; | |
1059 | 1773 int attr = 0; |
7 | 1774 char_u *trail = NULL; |
1775 #ifdef FEAT_MBYTE | |
1776 int l; | |
1777 char_u buf[MB_MAXBYTES + 1]; | |
1778 #endif | |
1779 | |
167 | 1780 if (curwin->w_p_list) |
1781 list = TRUE; | |
1782 | |
7 | 1783 /* find start of trailing whitespace */ |
167 | 1784 if (list && lcs_trail) |
7 | 1785 { |
1786 trail = s + STRLEN(s); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1787 while (trail > s && VIM_ISWHITE(trail[-1])) |
7 | 1788 --trail; |
1789 } | |
1790 | |
1791 /* output a space for an empty line, otherwise the line will be | |
1792 * overwritten */ | |
167 | 1793 if (*s == NUL && !(list && lcs_eol != NUL)) |
7 | 1794 msg_putchar(' '); |
1795 | |
446 | 1796 while (!got_int) |
7 | 1797 { |
1059 | 1798 if (n_extra > 0) |
7 | 1799 { |
1800 --n_extra; | |
1801 if (c_extra) | |
1802 c = c_extra; | |
1803 else | |
1804 c = *p_extra++; | |
1805 } | |
1806 #ifdef FEAT_MBYTE | |
474 | 1807 else if (has_mbyte && (l = (*mb_ptr2len)(s)) > 1) |
7 | 1808 { |
1809 col += (*mb_ptr2cells)(s); | |
6801 | 1810 if (lcs_nbsp != NUL && list |
1811 && (mb_ptr2char(s) == 160 | |
1812 || mb_ptr2char(s) == 0x202f)) | |
2692 | 1813 { |
1814 mb_char2bytes(lcs_nbsp, buf); | |
1815 buf[(*mb_ptr2len)(buf)] = NUL; | |
1816 } | |
1817 else | |
1818 { | |
1819 mch_memmove(buf, s, (size_t)l); | |
1820 buf[l] = NUL; | |
1821 } | |
1059 | 1822 msg_puts(buf); |
7 | 1823 s += l; |
1824 continue; | |
1825 } | |
1826 #endif | |
1827 else | |
1828 { | |
1829 attr = 0; | |
1830 c = *s++; | |
167 | 1831 if (c == TAB && (!list || lcs_tab1)) |
7 | 1832 { |
1833 /* 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
|
1834 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14129
diff
changeset
|
1835 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
|
1836 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
|
1837 #else |
7 | 1838 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
|
1839 #endif |
167 | 1840 if (!list) |
7 | 1841 { |
1842 c = ' '; | |
1843 c_extra = ' '; | |
1844 } | |
1845 else | |
1846 { | |
1847 c = lcs_tab1; | |
1848 c_extra = lcs_tab2; | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1849 attr = HL_ATTR(HLF_8); |
7 | 1850 } |
1851 } | |
2692 | 1852 else if (c == 160 && list && lcs_nbsp != NUL) |
1853 { | |
1854 c = lcs_nbsp; | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1855 attr = HL_ATTR(HLF_8); |
2692 | 1856 } |
167 | 1857 else if (c == NUL && list && lcs_eol != NUL) |
7 | 1858 { |
1859 p_extra = (char_u *)""; | |
1860 c_extra = NUL; | |
1861 n_extra = 1; | |
1862 c = lcs_eol; | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1863 attr = HL_ATTR(HLF_AT); |
7 | 1864 --s; |
1865 } | |
1866 else if (c != NUL && (n = byte2cells(c)) > 1) | |
1867 { | |
1868 n_extra = n - 1; | |
1869 p_extra = transchar_byte(c); | |
1870 c_extra = NUL; | |
1871 c = *p_extra++; | |
1059 | 1872 /* Use special coloring to be able to distinguish <hex> from |
1873 * 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
|
1874 attr = HL_ATTR(HLF_8); |
7 | 1875 } |
1876 else if (c == ' ' && trail != NULL && s > trail) | |
1877 { | |
1878 c = lcs_trail; | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1879 attr = HL_ATTR(HLF_8); |
7 | 1880 } |
6781 | 1881 else if (c == ' ' && list && lcs_space != NUL) |
1882 { | |
1883 c = lcs_space; | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1884 attr = HL_ATTR(HLF_8); |
6781 | 1885 } |
7 | 1886 } |
1887 | |
1888 if (c == NUL) | |
1889 break; | |
1890 | |
1891 msg_putchar_attr(c, attr); | |
1892 col++; | |
1893 } | |
1894 msg_clr_eos(); | |
1895 } | |
1896 | |
1897 #ifdef FEAT_MBYTE | |
1898 /* | |
1899 * Use screen_puts() to output one multi-byte character. | |
1900 * Return the pointer "s" advanced to the next character. | |
1901 */ | |
1902 static char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1903 screen_puts_mbyte(char_u *s, int l, int attr) |
7 | 1904 { |
1905 int cw; | |
1906 | |
1907 msg_didout = TRUE; /* remember that line is not empty */ | |
1908 cw = (*mb_ptr2cells)(s); | |
1909 if (cw > 1 && ( | |
1910 #ifdef FEAT_RIGHTLEFT | |
1911 cmdmsg_rl ? msg_col <= 1 : | |
1912 #endif | |
1913 msg_col == Columns - 1)) | |
1914 { | |
1915 /* 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
|
1916 msg_screen_putchar('>', HL_ATTR(HLF_AT)); |
7 | 1917 return s; |
1918 } | |
1919 | |
1920 screen_puts_len(s, l, msg_row, msg_col, attr); | |
1921 #ifdef FEAT_RIGHTLEFT | |
1922 if (cmdmsg_rl) | |
1923 { | |
1924 msg_col -= cw; | |
1925 if (msg_col == 0) | |
1926 { | |
1927 msg_col = Columns; | |
1928 ++msg_row; | |
1929 } | |
1930 } | |
1931 else | |
1932 #endif | |
1933 { | |
1934 msg_col += cw; | |
1935 if (msg_col >= Columns) | |
1936 { | |
1937 msg_col = 0; | |
1938 ++msg_row; | |
1939 } | |
1940 } | |
1941 return s + l; | |
1942 } | |
1943 #endif | |
1944 | |
1945 /* | |
1946 * Output a string to the screen at position msg_row, msg_col. | |
1947 * Update msg_row and msg_col for the next message. | |
1948 */ | |
1949 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1950 msg_puts(char_u *s) |
7 | 1951 { |
10141
b67088aae933
commit https://github.com/vim/vim/commit/aeac9006d5d14910f214f09df52c026a5936e737
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1952 msg_puts_attr(s, 0); |
7 | 1953 } |
1954 | |
1955 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1956 msg_puts_title( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1957 char_u *s) |
7 | 1958 { |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1959 msg_puts_attr(s, HL_ATTR(HLF_T)); |
7 | 1960 } |
1961 | |
1962 /* | |
1963 * Show a message in such a way that it always fits in the line. Cut out a | |
1964 * part in the middle and replace it with "..." when necessary. | |
1965 * Does not handle multi-byte characters! | |
1966 */ | |
1967 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1968 msg_puts_long_attr(char_u *longstr, int attr) |
7 | 1969 { |
714 | 1970 msg_puts_long_len_attr(longstr, (int)STRLEN(longstr), attr); |
7 | 1971 } |
1972 | |
1973 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1974 msg_puts_long_len_attr(char_u *longstr, int len, int attr) |
7 | 1975 { |
1976 int slen = len; | |
1977 int room; | |
1978 | |
1979 room = Columns - msg_col; | |
1980 if (len > room && room >= 20) | |
1981 { | |
1982 slen = (room - 3) / 2; | |
1983 msg_outtrans_len_attr(longstr, slen, attr); | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1984 msg_puts_attr((char_u *)"...", HL_ATTR(HLF_8)); |
7 | 1985 } |
1986 msg_outtrans_len_attr(longstr + len - slen, slen, attr); | |
1987 } | |
1988 | |
1989 /* | |
1990 * Basic function for writing a message with highlight attributes. | |
1991 */ | |
1992 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1993 msg_puts_attr(char_u *s, int attr) |
7 | 1994 { |
1995 msg_puts_attr_len(s, -1, attr); | |
1996 } | |
1997 | |
1998 /* | |
1999 * Like msg_puts_attr(), but with a maximum length "maxlen" (in bytes). | |
2000 * When "maxlen" is -1 there is no maximum length. | |
2001 * When "maxlen" is >= 0 the message is not put in the history. | |
2002 */ | |
2003 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2004 msg_puts_attr_len(char_u *str, int maxlen, int attr) |
7 | 2005 { |
2006 /* | |
2007 * If redirection is on, also write to the redirection file. | |
2008 */ | |
446 | 2009 redir_write(str, maxlen); |
7 | 2010 |
2011 /* | |
2012 * Don't print anything when using ":silent cmd". | |
2013 */ | |
2014 if (msg_silent != 0) | |
2015 return; | |
2016 | |
2017 /* if MSG_HIST flag set, add message to history */ | |
2018 if ((attr & MSG_HIST) && maxlen < 0) | |
2019 { | |
446 | 2020 add_msg_hist(str, -1, attr); |
7 | 2021 attr &= ~MSG_HIST; |
2022 } | |
2023 | |
2024 /* | |
2025 * When writing something to the screen after it has scrolled, requires a | |
2026 * wait-return prompt later. Needed when scrolling, resetting | |
2027 * need_wait_return after some prompt, and then outputting something | |
2028 * without scrolling | |
2029 */ | |
539 | 2030 if (msg_scrolled != 0 && !msg_scrolled_ign) |
7 | 2031 need_wait_return = TRUE; |
2032 msg_didany = TRUE; /* remember that something was outputted */ | |
2033 | |
2034 /* | |
2035 * If there is no valid screen, use fprintf so we can see error messages. | |
2036 * If termcap is not active, we may be writing in an alternate console | |
2037 * window, cursor positioning may not work correctly (window size may be | |
2038 * different, e.g. for Win32 console) or we just don't know where the | |
2039 * cursor is. | |
2040 */ | |
2041 if (msg_use_printf()) | |
446 | 2042 msg_puts_printf(str, maxlen); |
2043 else | |
2044 msg_puts_display(str, maxlen, attr, FALSE); | |
2045 } | |
2046 | |
2047 /* | |
2048 * The display part of msg_puts_attr_len(). | |
2049 * May be called recursively to display scroll-back text. | |
2050 */ | |
2051 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2052 msg_puts_display( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2053 char_u *str, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2054 int maxlen, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2055 int attr, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2056 int recurse) |
446 | 2057 { |
2058 char_u *s = str; | |
2059 char_u *t_s = str; /* string from "t_s" to "s" is still todo */ | |
2060 int t_col = 0; /* screen cells todo, 0 when "t_s" not used */ | |
2061 #ifdef FEAT_MBYTE | |
2062 int l; | |
2063 int cw; | |
7 | 2064 #endif |
446 | 2065 char_u *sb_str = str; |
2066 int sb_col = msg_col; | |
2067 int wrap; | |
1381 | 2068 int did_last_char; |
7 | 2069 |
2070 did_wait_return = FALSE; | |
1339 | 2071 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL) |
7 | 2072 { |
2073 /* | |
446 | 2074 * We are at the end of the screen line when: |
2075 * - When outputting a newline. | |
2076 * - When outputting a character in the last column. | |
7 | 2077 */ |
446 | 2078 if (!recurse && msg_row >= Rows - 1 && (*s == '\n' || ( |
7 | 2079 #ifdef FEAT_RIGHTLEFT |
2080 cmdmsg_rl | |
2081 ? ( | |
2082 msg_col <= 1 | |
2083 || (*s == TAB && msg_col <= 7) | |
2084 # ifdef FEAT_MBYTE | |
2085 || (has_mbyte && (*mb_ptr2cells)(s) > 1 && msg_col <= 2) | |
2086 # endif | |
2087 ) | |
2088 : | |
2089 #endif | |
2090 (msg_col + t_col >= Columns - 1 | |
2091 || (*s == TAB && msg_col + t_col >= ((Columns - 1) & ~7)) | |
2092 # ifdef FEAT_MBYTE | |
2093 || (has_mbyte && (*mb_ptr2cells)(s) > 1 | |
2094 && msg_col + t_col >= Columns - 2) | |
2095 # endif | |
2096 )))) | |
2097 { | |
446 | 2098 /* |
2099 * The screen is scrolled up when at the last row (some terminals | |
2100 * scroll automatically, some don't. To avoid problems we scroll | |
2101 * ourselves). | |
2102 */ | |
7 | 2103 if (t_col > 0) |
2104 /* output postponed text */ | |
446 | 2105 t_puts(&t_col, t_s, s, attr); |
7 | 2106 |
1342 | 2107 /* When no more prompt and no more room, truncate here */ |
7 | 2108 if (msg_no_more && lines_left == 0) |
2109 break; | |
446 | 2110 |
2111 /* Scroll the screen up one line. */ | |
2112 msg_scroll_up(); | |
7 | 2113 |
2114 msg_row = Rows - 2; | |
2115 if (msg_col >= Columns) /* can happen after screen resize */ | |
2116 msg_col = Columns - 1; | |
2117 | |
446 | 2118 /* Display char in last column before showing more-prompt. */ |
2119 if (*s >= ' ' | |
2120 #ifdef FEAT_RIGHTLEFT | |
2121 && !cmdmsg_rl | |
2122 #endif | |
2123 ) | |
2124 { | |
2125 #ifdef FEAT_MBYTE | |
2126 if (has_mbyte) | |
2127 { | |
2128 if (enc_utf8 && maxlen >= 0) | |
2129 /* avoid including composing chars after the end */ | |
474 | 2130 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s)); |
446 | 2131 else |
474 | 2132 l = (*mb_ptr2len)(s); |
446 | 2133 s = screen_puts_mbyte(s, l, attr); |
2134 } | |
2135 else | |
2136 #endif | |
2137 msg_screen_putchar(*s++, attr); | |
1381 | 2138 did_last_char = TRUE; |
446 | 2139 } |
1381 | 2140 else |
2141 did_last_char = FALSE; | |
446 | 2142 |
2143 if (p_more) | |
2144 /* store text for scrolling back */ | |
2145 store_sb_text(&sb_str, s, attr, &sb_col, TRUE); | |
2146 | |
539 | 2147 inc_msg_scrolled(); |
446 | 2148 need_wait_return = TRUE; /* may need wait_return in main() */ |
7 | 2149 redraw_cmdline = TRUE; |
2150 if (cmdline_row > 0 && !exmode_active) | |
2151 --cmdline_row; | |
2152 | |
2153 /* | |
446 | 2154 * If screen is completely filled and 'more' is set then wait |
2155 * for a character. | |
7 | 2156 */ |
1342 | 2157 if (lines_left > 0) |
2158 --lines_left; | |
957 | 2159 if (p_more && lines_left == 0 && State != HITRETURN |
7 | 2160 && !msg_no_more && !exmode_active) |
2161 { | |
2162 #ifdef FEAT_CON_DIALOG | |
446 | 2163 if (do_more_prompt(NUL)) |
2164 s = confirm_msg_tail; | |
2165 #else | |
2166 (void)do_more_prompt(NUL); | |
7 | 2167 #endif |
2168 if (quit_more) | |
446 | 2169 return; |
7 | 2170 } |
539 | 2171 |
2172 /* When we displayed a char in last column need to check if there | |
2173 * is still more. */ | |
1381 | 2174 if (did_last_char) |
539 | 2175 continue; |
7 | 2176 } |
2177 | |
446 | 2178 wrap = *s == '\n' |
7 | 2179 || msg_col + t_col >= Columns |
2180 #ifdef FEAT_MBYTE | |
2181 || (has_mbyte && (*mb_ptr2cells)(s) > 1 | |
2182 && msg_col + t_col >= Columns - 1) | |
2183 #endif | |
446 | 2184 ; |
2185 if (t_col > 0 && (wrap || *s == '\r' || *s == '\b' | |
2186 || *s == '\t' || *s == BELL)) | |
7 | 2187 /* output any postponed text */ |
446 | 2188 t_puts(&t_col, t_s, s, attr); |
2189 | |
2190 if (wrap && p_more && !recurse) | |
2191 /* store text for scrolling back */ | |
2192 store_sb_text(&sb_str, s, attr, &sb_col, TRUE); | |
7 | 2193 |
2194 if (*s == '\n') /* go to next line */ | |
2195 { | |
2196 msg_didout = FALSE; /* remember that line is empty */ | |
474 | 2197 #ifdef FEAT_RIGHTLEFT |
2198 if (cmdmsg_rl) | |
2199 msg_col = Columns - 1; | |
2200 else | |
2201 #endif | |
2202 msg_col = 0; | |
7 | 2203 if (++msg_row >= Rows) /* safety check */ |
2204 msg_row = Rows - 1; | |
2205 } | |
2206 else if (*s == '\r') /* go to column 0 */ | |
2207 { | |
2208 msg_col = 0; | |
2209 } | |
2210 else if (*s == '\b') /* go to previous char */ | |
2211 { | |
2212 if (msg_col) | |
2213 --msg_col; | |
2214 } | |
446 | 2215 else if (*s == TAB) /* translate Tab into spaces */ |
7 | 2216 { |
2217 do | |
2218 msg_screen_putchar(' ', attr); | |
2219 while (msg_col & 7); | |
2220 } | |
6949 | 2221 else if (*s == BELL) /* beep (from ":sh") */ |
2222 vim_beep(BO_SH); | |
7 | 2223 else |
2224 { | |
2225 #ifdef FEAT_MBYTE | |
2226 if (has_mbyte) | |
2227 { | |
2228 cw = (*mb_ptr2cells)(s); | |
2229 if (enc_utf8 && maxlen >= 0) | |
2230 /* avoid including composing chars after the end */ | |
474 | 2231 l = utfc_ptr2len_len(s, (int)((str + maxlen) - s)); |
7 | 2232 else |
474 | 2233 l = (*mb_ptr2len)(s); |
7 | 2234 } |
2235 else | |
2236 { | |
2237 cw = 1; | |
2238 l = 1; | |
2239 } | |
2240 #endif | |
2241 /* When drawing from right to left or when a double-wide character | |
2242 * doesn't fit, draw a single character here. Otherwise collect | |
2243 * characters and draw them all at once later. */ | |
2244 #if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE) | |
2245 if ( | |
2246 # ifdef FEAT_RIGHTLEFT | |
2247 cmdmsg_rl | |
2248 # ifdef FEAT_MBYTE | |
2249 || | |
2250 # endif | |
2251 # endif | |
2252 # ifdef FEAT_MBYTE | |
2253 (cw > 1 && msg_col + t_col >= Columns - 1) | |
2254 # endif | |
2255 ) | |
2256 { | |
2257 # ifdef FEAT_MBYTE | |
2258 if (l > 1) | |
2259 s = screen_puts_mbyte(s, l, attr) - 1; | |
2260 else | |
2261 # endif | |
2262 msg_screen_putchar(*s, attr); | |
2263 } | |
2264 else | |
2265 #endif | |
2266 { | |
2267 /* postpone this character until later */ | |
2268 if (t_col == 0) | |
2269 t_s = s; | |
2270 #ifdef FEAT_MBYTE | |
2271 t_col += cw; | |
2272 s += l - 1; | |
2273 #else | |
2274 ++t_col; | |
2275 #endif | |
2276 } | |
2277 } | |
2278 ++s; | |
2279 } | |
2280 | |
2281 /* output any postponed text */ | |
2282 if (t_col > 0) | |
446 | 2283 t_puts(&t_col, t_s, s, attr); |
2284 if (p_more && !recurse) | |
2285 store_sb_text(&sb_str, s, attr, &sb_col, FALSE); | |
7 | 2286 |
2287 msg_check(); | |
2288 } | |
2289 | |
2290 /* | |
9941
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2291 * 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
|
2292 * "pattern". |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2293 */ |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2294 int |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2295 message_filtered(char_u *msg) |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2296 { |
9980
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9941
diff
changeset
|
2297 int match; |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9941
diff
changeset
|
2298 |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9941
diff
changeset
|
2299 if (cmdmod.filter_regmatch.regprog == NULL) |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9941
diff
changeset
|
2300 return FALSE; |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9941
diff
changeset
|
2301 match = vim_regexec(&cmdmod.filter_regmatch, msg, (colnr_T)0); |
b222552cf0c4
commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents:
9941
diff
changeset
|
2302 return cmdmod.filter_force ? match : !match; |
9941
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2303 } |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2304 |
e975914c17e9
commit https://github.com/vim/vim/commit/7b668e83d0635d082b7ec90d7d2aa30a9d7d8928
Christian Brabandt <cb@256bit.org>
parents:
9894
diff
changeset
|
2305 /* |
446 | 2306 * Scroll the screen up one line for displaying the next message line. |
2307 */ | |
2308 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2309 msg_scroll_up(void) |
446 | 2310 { |
2311 #ifdef FEAT_GUI | |
2312 /* Remove the cursor before scrolling, ScreenLines[] is going | |
2313 * to become invalid. */ | |
2314 if (gui.in_use) | |
2315 gui_undraw_cursor(); | |
2316 #endif | |
2317 /* scrolling up always works */ | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12865
diff
changeset
|
2318 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
|
2319 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
|
2320 mch_enable_flush(); |
446 | 2321 |
2322 if (!can_clear((char_u *)" ")) | |
2323 { | |
2324 /* Scrolling up doesn't result in the right background. Set the | |
2325 * background here. It's not efficient, but avoids that we have to do | |
2326 * it all over the code. */ | |
2327 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); | |
2328 | |
2329 /* Also clear the last char of the last but one line if it was not | |
2330 * cleared before to avoid a scroll-up. */ | |
2331 if (ScreenAttrs[LineOffset[Rows - 2] + Columns - 1] == (sattr_T)-1) | |
2332 screen_fill((int)Rows - 2, (int)Rows - 1, | |
2333 (int)Columns - 1, (int)Columns, ' ', ' ', 0); | |
2334 } | |
2335 } | |
2336 | |
2337 /* | |
539 | 2338 * Increment "msg_scrolled". |
2339 */ | |
2340 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2341 inc_msg_scrolled(void) |
539 | 2342 { |
2343 #ifdef FEAT_EVAL | |
2344 if (*get_vim_var_str(VV_SCROLLSTART) == NUL) | |
2345 { | |
2346 char_u *p = sourcing_name; | |
2347 char_u *tofree = NULL; | |
2348 int len; | |
2349 | |
2350 /* v:scrollstart is empty, set it to the script/function name and line | |
2351 * number */ | |
2352 if (p == NULL) | |
2353 p = (char_u *)_("Unknown"); | |
2354 else | |
2355 { | |
835 | 2356 len = (int)STRLEN(p) + 40; |
539 | 2357 tofree = alloc(len); |
2358 if (tofree != NULL) | |
2359 { | |
2360 vim_snprintf((char *)tofree, len, _("%s line %ld"), | |
2361 p, (long)sourcing_lnum); | |
2362 p = tofree; | |
2363 } | |
2364 } | |
2365 set_vim_var_string(VV_SCROLLSTART, p, -1); | |
2366 vim_free(tofree); | |
2367 } | |
2368 #endif | |
2369 ++msg_scrolled; | |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2370 if (must_redraw < VALID) |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2371 must_redraw = VALID; |
539 | 2372 } |
2373 | |
2374 /* | |
446 | 2375 * To be able to scroll back at the "more" and "hit-enter" prompts we need to |
2376 * store the displayed text and remember where screen lines start. | |
2377 */ | |
2378 typedef struct msgchunk_S msgchunk_T; | |
2379 struct msgchunk_S | |
2380 { | |
2381 msgchunk_T *sb_next; | |
2382 msgchunk_T *sb_prev; | |
2383 char sb_eol; /* TRUE when line ends after this text */ | |
2384 int sb_msg_col; /* column in which text starts */ | |
2385 int sb_attr; /* text attributes */ | |
2386 char_u sb_text[1]; /* text to be displayed, actually longer */ | |
2387 }; | |
2388 | |
2389 static msgchunk_T *last_msgchunk = NULL; /* last displayed text */ | |
2390 | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
2391 static msgchunk_T *msg_sb_start(msgchunk_T *mps); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
2392 static msgchunk_T *disp_sb_line(int row, msgchunk_T *smp); |
446 | 2393 |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2394 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
|
2395 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
|
2396 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
|
2397 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
|
2398 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
|
2399 } 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
|
2400 |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2401 /* When to clear text on next msg. */ |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2402 static sb_clear_T do_clear_sb_text = SB_CLEAR_NONE; |
447 | 2403 |
446 | 2404 /* |
2405 * Store part of a printed message for displaying when scrolling back. | |
2406 */ | |
2407 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2408 store_sb_text( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2409 char_u **sb_str, /* start of string */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2410 char_u *s, /* just after string */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2411 int attr, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2412 int *sb_col, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2413 int finish) /* line ends */ |
446 | 2414 { |
2415 msgchunk_T *mp; | |
2416 | |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2417 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
|
2418 || do_clear_sb_text == SB_CLEAR_CMDLINE_DONE) |
447 | 2419 { |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2420 clear_sb_text(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
|
2421 do_clear_sb_text = SB_CLEAR_NONE; |
447 | 2422 } |
2423 | |
446 | 2424 if (s > *sb_str) |
2425 { | |
2426 mp = (msgchunk_T *)alloc((int)(sizeof(msgchunk_T) + (s - *sb_str))); | |
2427 if (mp != NULL) | |
2428 { | |
2429 mp->sb_eol = finish; | |
2430 mp->sb_msg_col = *sb_col; | |
2431 mp->sb_attr = attr; | |
2432 vim_strncpy(mp->sb_text, *sb_str, s - *sb_str); | |
2433 | |
2434 if (last_msgchunk == NULL) | |
2435 { | |
2436 last_msgchunk = mp; | |
2437 mp->sb_prev = NULL; | |
2438 } | |
2439 else | |
2440 { | |
2441 mp->sb_prev = last_msgchunk; | |
2442 last_msgchunk->sb_next = mp; | |
2443 last_msgchunk = mp; | |
2444 } | |
2445 mp->sb_next = NULL; | |
2446 } | |
2447 } | |
2448 else if (finish && last_msgchunk != NULL) | |
2449 last_msgchunk->sb_eol = TRUE; | |
2450 | |
2451 *sb_str = s; | |
2452 *sb_col = 0; | |
2453 } | |
2454 | |
2455 /* | |
447 | 2456 * Finished showing messages, clear the scroll-back text on the next message. |
2457 */ | |
2458 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2459 may_clear_sb_text(void) |
447 | 2460 { |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2461 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
|
2462 } |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2463 |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2464 /* |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2465 * Starting to edit the command line, do not clear messages now. |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2466 */ |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2467 void |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2468 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
|
2469 { |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2470 do_clear_sb_text = 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
|
2471 msg_sb_eol(); |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2472 } |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2473 |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2474 /* |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2475 * Ending to edit the command line. Clear old lines but the last one later. |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2476 */ |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2477 void |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2478 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
|
2479 { |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2480 do_clear_sb_text = SB_CLEAR_CMDLINE_DONE; |
447 | 2481 } |
2482 | |
2483 /* | |
446 | 2484 * 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
|
2485 * When "all" is FALSE keep the last line. |
446 | 2486 * Called when redrawing the screen. |
2487 */ | |
2488 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
|
2489 clear_sb_text(int all) |
446 | 2490 { |
2491 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
|
2492 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
|
2493 |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2494 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
|
2495 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
|
2496 else |
446 | 2497 { |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2498 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
|
2499 return; |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2500 lastp = &last_msgchunk->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
|
2501 } |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2502 |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2503 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
|
2504 { |
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2505 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
|
2506 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
|
2507 *lastp = mp; |
446 | 2508 } |
2509 } | |
2510 | |
2511 /* | |
447 | 2512 * "g<" command. |
2513 */ | |
2514 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2515 show_sb_text(void) |
447 | 2516 { |
2517 msgchunk_T *mp; | |
2518 | |
1342 | 2519 /* Only show something if there is more than one line, otherwise it looks |
447 | 2520 * weird, typing a command without output results in one line. */ |
2521 mp = msg_sb_start(last_msgchunk); | |
2522 if (mp == NULL || mp->sb_prev == NULL) | |
6949 | 2523 vim_beep(BO_MESS); |
447 | 2524 else |
2525 { | |
2526 do_more_prompt('G'); | |
2527 wait_return(FALSE); | |
2528 } | |
2529 } | |
2530 | |
2531 /* | |
446 | 2532 * Move to the start of screen line in already displayed text. |
2533 */ | |
2534 static msgchunk_T * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2535 msg_sb_start(msgchunk_T *mps) |
446 | 2536 { |
2537 msgchunk_T *mp = mps; | |
2538 | |
2539 while (mp != NULL && mp->sb_prev != NULL && !mp->sb_prev->sb_eol) | |
2540 mp = mp->sb_prev; | |
2541 return mp; | |
2542 } | |
2543 | |
2544 /* | |
3435 | 2545 * Mark the last message chunk as finishing the line. |
2546 */ | |
2547 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2548 msg_sb_eol(void) |
3435 | 2549 { |
2550 if (last_msgchunk != NULL) | |
2551 last_msgchunk->sb_eol = TRUE; | |
2552 } | |
2553 | |
2554 /* | |
446 | 2555 * Display a screen line from previously displayed text at row "row". |
2556 * Returns a pointer to the text for the next line (can be NULL). | |
2557 */ | |
2558 static msgchunk_T * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2559 disp_sb_line(int row, msgchunk_T *smp) |
446 | 2560 { |
2561 msgchunk_T *mp = smp; | |
2562 char_u *p; | |
2563 | |
2564 for (;;) | |
2565 { | |
2566 msg_row = row; | |
2567 msg_col = mp->sb_msg_col; | |
2568 p = mp->sb_text; | |
2569 if (*p == '\n') /* don't display the line break */ | |
2570 ++p; | |
2571 msg_puts_display(p, -1, mp->sb_attr, TRUE); | |
2572 if (mp->sb_eol || mp->sb_next == NULL) | |
2573 break; | |
2574 mp = mp->sb_next; | |
2575 } | |
2576 return mp->sb_next; | |
2577 } | |
2578 | |
2579 /* | |
7 | 2580 * Output any postponed text for msg_puts_attr_len(). |
2581 */ | |
2582 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2583 t_puts( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2584 int *t_col, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2585 char_u *t_s, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2586 char_u *s, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2587 int attr) |
7 | 2588 { |
2589 /* output postponed text */ | |
2590 msg_didout = TRUE; /* remember that line is not empty */ | |
2591 screen_puts_len(t_s, (int)(s - t_s), msg_row, msg_col, attr); | |
446 | 2592 msg_col += *t_col; |
2593 *t_col = 0; | |
7 | 2594 #ifdef FEAT_MBYTE |
2595 /* If the string starts with a composing character don't increment the | |
2596 * column position for it. */ | |
2597 if (enc_utf8 && utf_iscomposing(utf_ptr2char(t_s))) | |
2598 --msg_col; | |
2599 #endif | |
2600 if (msg_col >= Columns) | |
2601 { | |
2602 msg_col = 0; | |
2603 ++msg_row; | |
2604 } | |
2605 } | |
2606 | |
2607 /* | |
2608 * Returns TRUE when messages should be printed with mch_errmsg(). | |
2609 * This is used when there is no valid screen, so we can see error messages. | |
2610 * If termcap is not active, we may be writing in an alternate console | |
2611 * window, cursor positioning may not work correctly (window size may be | |
2612 * different, e.g. for Win32 console) or we just don't know where the | |
2613 * cursor is. | |
2614 */ | |
2615 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2616 msg_use_printf(void) |
7 | 2617 { |
2618 return (!msg_check_screen() | |
2619 #if defined(WIN3264) && !defined(FEAT_GUI_MSWIN) | |
2620 || !termcap_active | |
2621 #endif | |
2622 || (swapping_screen() && !termcap_active) | |
2623 ); | |
2624 } | |
2625 | |
446 | 2626 /* |
2627 * Print a message when there is no valid screen. | |
2628 */ | |
2629 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2630 msg_puts_printf(char_u *str, int maxlen) |
446 | 2631 { |
2632 char_u *s = str; | |
2633 char_u buf[4]; | |
2634 char_u *p; | |
2635 #ifdef WIN3264 | |
11941
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2636 # if defined(FEAT_MBYTE) && !defined(FEAT_GUI_MSWIN) |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2637 char_u *ccp = NULL; |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2638 |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2639 # endif |
446 | 2640 if (!(silent_mode && p_verbose == 0)) |
2641 mch_settmode(TMODE_COOK); /* handle '\r' and '\n' correctly */ | |
11941
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2642 |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2643 # if defined(FEAT_MBYTE) && !defined(FEAT_GUI_MSWIN) |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2644 if (enc_codepage >= 0 && (int)GetConsoleCP() != enc_codepage) |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2645 { |
12015
7e704d75a882
patch 8.0.0888: compiler warnings with 64 bit build
Christian Brabandt <cb@256bit.org>
parents:
11945
diff
changeset
|
2646 int inlen = (int)STRLEN(str); |
11945
f37815bb7417
patch 8.0.0852: MS-Windows: possible crash when giving a message on startup
Christian Brabandt <cb@256bit.org>
parents:
11941
diff
changeset
|
2647 int outlen; |
f37815bb7417
patch 8.0.0852: MS-Windows: possible crash when giving a message on startup
Christian Brabandt <cb@256bit.org>
parents:
11941
diff
changeset
|
2648 WCHAR *widestr = (WCHAR *)enc_to_utf16(str, &inlen); |
11941
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2649 |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2650 if (widestr != NULL) |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2651 { |
11945
f37815bb7417
patch 8.0.0852: MS-Windows: possible crash when giving a message on startup
Christian Brabandt <cb@256bit.org>
parents:
11941
diff
changeset
|
2652 WideCharToMultiByte_alloc(GetConsoleCP(), 0, widestr, inlen, |
f37815bb7417
patch 8.0.0852: MS-Windows: possible crash when giving a message on startup
Christian Brabandt <cb@256bit.org>
parents:
11941
diff
changeset
|
2653 (LPSTR *)&ccp, &outlen, 0, 0); |
11941
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2654 vim_free(widestr); |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2655 s = str = ccp; |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2656 } |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2657 } |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2658 # endif |
446 | 2659 #endif |
10158
dd0531938cb6
commit https://github.com/vim/vim/commit/2321ca2a78286bc026fa7f407281ddbeb04114bb
Christian Brabandt <cb@256bit.org>
parents:
10141
diff
changeset
|
2660 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL) |
446 | 2661 { |
2662 if (!(silent_mode && p_verbose == 0)) | |
2663 { | |
2664 /* NL --> CR NL translation (for Unix, not for "--version") */ | |
2665 p = &buf[0]; | |
2666 if (*s == '\n' && !info_message) | |
2667 *p++ = '\r'; | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
2668 #if defined(USE_CR) |
446 | 2669 else |
2670 #endif | |
2671 *p++ = *s; | |
2672 *p = '\0'; | |
2673 if (info_message) /* informative message, not an error */ | |
2674 mch_msg((char *)buf); | |
2675 else | |
2676 mch_errmsg((char *)buf); | |
2677 } | |
2678 | |
2679 /* primitive way to compute the current column */ | |
2680 #ifdef FEAT_RIGHTLEFT | |
2681 if (cmdmsg_rl) | |
2682 { | |
2683 if (*s == '\r' || *s == '\n') | |
2684 msg_col = Columns - 1; | |
2685 else | |
2686 --msg_col; | |
2687 } | |
2688 else | |
2689 #endif | |
2690 { | |
2691 if (*s == '\r' || *s == '\n') | |
2692 msg_col = 0; | |
2693 else | |
2694 ++msg_col; | |
2695 } | |
2696 ++s; | |
2697 } | |
2698 msg_didout = TRUE; /* assume that line is not empty */ | |
2699 | |
2700 #ifdef WIN3264 | |
11941
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2701 # if defined(FEAT_MBYTE) && !defined(FEAT_GUI_MSWIN) |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2702 vim_free(ccp); |
351d94dc8375
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Christian Brabandt <cb@256bit.org>
parents:
11937
diff
changeset
|
2703 # endif |
446 | 2704 if (!(silent_mode && p_verbose == 0)) |
2705 mch_settmode(TMODE_RAW); | |
2706 #endif | |
2707 } | |
2708 | |
2709 /* | |
2710 * Show the more-prompt and handle the user response. | |
2711 * This takes care of scrolling back and displaying previously displayed text. | |
447 | 2712 * When at hit-enter prompt "typed_char" is the already typed character, |
2713 * otherwise it's NUL. | |
446 | 2714 * Returns TRUE when jumping ahead to "confirm_msg_tail". |
2715 */ | |
2716 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2717 do_more_prompt(int typed_char) |
446 | 2718 { |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
2719 static int entered = FALSE; |
446 | 2720 int used_typed_char = typed_char; |
2721 int oldState = State; | |
2722 int c; | |
2723 #ifdef FEAT_CON_DIALOG | |
2724 int retval = FALSE; | |
2725 #endif | |
3263 | 2726 int toscroll; |
446 | 2727 msgchunk_T *mp_last = NULL; |
2728 msgchunk_T *mp; | |
2729 int i; | |
2730 | |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
2731 /* We get called recursively when a timer callback outputs a message. In |
9185
70d3337ff173
commit https://github.com/vim/vim/commit/a0055ad3a789b8eeb0c983d8a18d4bcaeaf456b8
Christian Brabandt <cb@256bit.org>
parents:
8905
diff
changeset
|
2732 * that case don't show another prompt. Also when at the hit-Enter prompt |
70d3337ff173
commit https://github.com/vim/vim/commit/a0055ad3a789b8eeb0c983d8a18d4bcaeaf456b8
Christian Brabandt <cb@256bit.org>
parents:
8905
diff
changeset
|
2733 * and nothing was typed. */ |
70d3337ff173
commit https://github.com/vim/vim/commit/a0055ad3a789b8eeb0c983d8a18d4bcaeaf456b8
Christian Brabandt <cb@256bit.org>
parents:
8905
diff
changeset
|
2734 if (entered || (State == HITRETURN && typed_char == 0)) |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
2735 return FALSE; |
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
2736 entered = TRUE; |
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
2737 |
447 | 2738 if (typed_char == 'G') |
2739 { | |
2740 /* "g<": Find first line on the last page. */ | |
2741 mp_last = msg_sb_start(last_msgchunk); | |
2742 for (i = 0; i < Rows - 2 && mp_last != NULL | |
2743 && mp_last->sb_prev != NULL; ++i) | |
2744 mp_last = msg_sb_start(mp_last->sb_prev); | |
2745 } | |
2746 | |
446 | 2747 State = ASKMORE; |
2748 #ifdef FEAT_MOUSE | |
2749 setmouse(); | |
2750 #endif | |
447 | 2751 if (typed_char == NUL) |
2752 msg_moremsg(FALSE); | |
446 | 2753 for (;;) |
2754 { | |
2755 /* | |
2756 * Get a typed character directly from the user. | |
2757 */ | |
2758 if (used_typed_char != NUL) | |
2759 { | |
2760 c = used_typed_char; /* was typed at hit-enter prompt */ | |
2761 used_typed_char = NUL; | |
2762 } | |
2763 else | |
2764 c = get_keystroke(); | |
2765 | |
2766 #if defined(FEAT_MENU) && defined(FEAT_GUI) | |
2767 if (c == K_MENU) | |
2768 { | |
2769 int idx = get_menu_index(current_menu, ASKMORE); | |
2770 | |
2771 /* Used a menu. If it starts with CTRL-Y, it must | |
2772 * be a "Copy" for the clipboard. Otherwise | |
2773 * assume that we end */ | |
2774 if (idx == MENU_INDEX_INVALID) | |
2775 continue; | |
2776 c = *current_menu->strings[idx]; | |
2777 if (c != NUL && current_menu->strings[idx][1] != NUL) | |
2778 ins_typebuf(current_menu->strings[idx] + 1, | |
2779 current_menu->noremap[idx], 0, TRUE, | |
2780 current_menu->silent[idx]); | |
2781 } | |
2782 #endif | |
2783 | |
3263 | 2784 toscroll = 0; |
446 | 2785 switch (c) |
2786 { | |
2787 case BS: /* scroll one line back */ | |
2788 case K_BS: | |
2789 case 'k': | |
2790 case K_UP: | |
3263 | 2791 toscroll = -1; |
446 | 2792 break; |
2793 | |
2794 case CAR: /* one extra line */ | |
2795 case NL: | |
2796 case 'j': | |
2797 case K_DOWN: | |
3263 | 2798 toscroll = 1; |
446 | 2799 break; |
2800 | |
2801 case 'u': /* Up half a page */ | |
3263 | 2802 toscroll = -(Rows / 2); |
446 | 2803 break; |
2804 | |
2805 case 'd': /* Down half a page */ | |
3263 | 2806 toscroll = Rows / 2; |
446 | 2807 break; |
2808 | |
2809 case 'b': /* one page back */ | |
1820 | 2810 case K_PAGEUP: |
3263 | 2811 toscroll = -(Rows - 1); |
446 | 2812 break; |
2813 | |
2814 case ' ': /* one extra page */ | |
1820 | 2815 case 'f': |
446 | 2816 case K_PAGEDOWN: |
2817 case K_LEFTMOUSE: | |
3263 | 2818 toscroll = Rows - 1; |
446 | 2819 break; |
2820 | |
447 | 2821 case 'g': /* all the way back to the start */ |
3263 | 2822 toscroll = -999999; |
447 | 2823 break; |
2824 | |
2825 case 'G': /* all the way to the end */ | |
3263 | 2826 toscroll = 999999; |
447 | 2827 lines_left = 999999; |
2828 break; | |
2829 | |
446 | 2830 case ':': /* start new command line */ |
2831 #ifdef FEAT_CON_DIALOG | |
2832 if (!confirm_msg_used) | |
2833 #endif | |
2834 { | |
2835 /* Since got_int is set all typeahead will be flushed, but we | |
2836 * want to keep this ':', remember that in a special way. */ | |
2837 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
|
2838 #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
|
2839 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
|
2840 #endif |
446 | 2841 cmdline_row = Rows - 1; /* put ':' on this line */ |
2842 skip_redraw = TRUE; /* skip redraw once */ | |
2843 need_wait_return = FALSE; /* don't wait in main() */ | |
2844 } | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
12375
diff
changeset
|
2845 /* FALLTHROUGH */ |
446 | 2846 case 'q': /* quit */ |
2847 case Ctrl_C: | |
2848 case ESC: | |
2849 #ifdef FEAT_CON_DIALOG | |
2850 if (confirm_msg_used) | |
2851 { | |
2852 /* Jump to the choices of the dialog. */ | |
2853 retval = TRUE; | |
2854 } | |
2855 else | |
2856 #endif | |
2857 { | |
2858 got_int = TRUE; | |
2859 quit_more = TRUE; | |
2860 } | |
1829 | 2861 /* When there is some more output (wrapping line) display that |
2862 * without another prompt. */ | |
2863 lines_left = Rows - 1; | |
446 | 2864 break; |
2865 | |
2866 #ifdef FEAT_CLIPBOARD | |
2867 case Ctrl_Y: | |
2868 /* Strange way to allow copying (yanking) a modeless | |
2869 * selection at the more prompt. Use CTRL-Y, | |
2870 * because the same is used in Cmdline-mode and at the | |
2871 * hit-enter prompt. However, scrolling one line up | |
2872 * might be expected... */ | |
2873 if (clip_star.state == SELECT_DONE) | |
2874 clip_copy_modeless_selection(TRUE); | |
2875 continue; | |
2876 #endif | |
2877 default: /* no valid response */ | |
2878 msg_moremsg(TRUE); | |
2879 continue; | |
2880 } | |
2881 | |
3263 | 2882 if (toscroll != 0) |
446 | 2883 { |
3263 | 2884 if (toscroll < 0) |
446 | 2885 { |
2886 /* go to start of last line */ | |
2887 if (mp_last == NULL) | |
2888 mp = msg_sb_start(last_msgchunk); | |
2889 else if (mp_last->sb_prev != NULL) | |
2890 mp = msg_sb_start(mp_last->sb_prev); | |
2891 else | |
2892 mp = NULL; | |
2893 | |
2894 /* go to start of line at top of the screen */ | |
2895 for (i = 0; i < Rows - 2 && mp != NULL && mp->sb_prev != NULL; | |
2896 ++i) | |
2897 mp = msg_sb_start(mp->sb_prev); | |
2898 | |
2899 if (mp != NULL && mp->sb_prev != NULL) | |
2900 { | |
2901 /* Find line to be displayed at top. */ | |
3263 | 2902 for (i = 0; i > toscroll; --i) |
446 | 2903 { |
2904 if (mp == NULL || mp->sb_prev == NULL) | |
2905 break; | |
2906 mp = msg_sb_start(mp->sb_prev); | |
2907 if (mp_last == NULL) | |
2908 mp_last = msg_sb_start(last_msgchunk); | |
2909 else | |
2910 mp_last = msg_sb_start(mp_last->sb_prev); | |
2911 } | |
2912 | |
3263 | 2913 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
|
2914 (int)Rows, 0, NULL) == OK) |
446 | 2915 { |
447 | 2916 /* display line at top */ |
446 | 2917 (void)disp_sb_line(0, mp); |
2918 } | |
2919 else | |
2920 { | |
447 | 2921 /* redisplay all lines */ |
446 | 2922 screenclear(); |
870 | 2923 for (i = 0; mp != NULL && i < Rows - 1; ++i) |
2924 { | |
446 | 2925 mp = disp_sb_line(i, mp); |
870 | 2926 ++msg_scrolled; |
2927 } | |
446 | 2928 } |
3263 | 2929 toscroll = 0; |
446 | 2930 } |
2931 } | |
2932 else | |
2933 { | |
2934 /* First display any text that we scrolled back. */ | |
3263 | 2935 while (toscroll > 0 && mp_last != NULL) |
446 | 2936 { |
2937 /* scroll up, display line at bottom */ | |
2938 msg_scroll_up(); | |
539 | 2939 inc_msg_scrolled(); |
446 | 2940 screen_fill((int)Rows - 2, (int)Rows - 1, 0, |
2941 (int)Columns, ' ', ' ', 0); | |
2942 mp_last = disp_sb_line((int)Rows - 2, mp_last); | |
3263 | 2943 --toscroll; |
446 | 2944 } |
2945 } | |
2946 | |
3263 | 2947 if (toscroll <= 0) |
446 | 2948 { |
2949 /* displayed the requested text, more prompt again */ | |
447 | 2950 screen_fill((int)Rows - 1, (int)Rows, 0, |
2951 (int)Columns, ' ', ' ', 0); | |
446 | 2952 msg_moremsg(FALSE); |
2953 continue; | |
2954 } | |
2955 | |
2956 /* display more text, return to caller */ | |
3263 | 2957 lines_left = toscroll; |
446 | 2958 } |
2959 | |
2960 break; | |
2961 } | |
2962 | |
2963 /* clear the --more-- message */ | |
2964 screen_fill((int)Rows - 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); | |
2965 State = oldState; | |
2966 #ifdef FEAT_MOUSE | |
2967 setmouse(); | |
2968 #endif | |
2969 if (quit_more) | |
2970 { | |
2971 msg_row = Rows - 1; | |
2972 msg_col = 0; | |
2973 } | |
2974 #ifdef FEAT_RIGHTLEFT | |
2975 else if (cmdmsg_rl) | |
2976 msg_col = Columns - 1; | |
2977 #endif | |
2978 | |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
2979 entered = FALSE; |
446 | 2980 #ifdef FEAT_CON_DIALOG |
2981 return retval; | |
2982 #else | |
2983 return FALSE; | |
2984 #endif | |
2985 } | |
2986 | |
7 | 2987 #if defined(USE_MCH_ERRMSG) || defined(PROTO) |
2988 | |
2989 #ifdef mch_errmsg | |
2990 # undef mch_errmsg | |
2991 #endif | |
2992 #ifdef mch_msg | |
2993 # undef mch_msg | |
2994 #endif | |
2995 | |
2996 /* | |
2997 * Give an error message. To be used when the screen hasn't been initialized | |
2998 * yet. When stderr can't be used, collect error messages until the GUI has | |
2999 * started and they can be displayed in a message box. | |
3000 */ | |
3001 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3002 mch_errmsg(char *str) |
7 | 3003 { |
3004 int len; | |
3005 | |
3006 #if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) | |
3007 /* On Unix use stderr if it's a tty. | |
3008 * When not going to start the GUI also use stderr. | |
3009 * On Mac, when started from Finder, stderr is the console. */ | |
3010 if ( | |
3011 # ifdef UNIX | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3012 # ifdef MACOS_X |
7 | 3013 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0) |
3014 # else | |
3015 isatty(2) | |
3016 # endif | |
3017 # ifdef FEAT_GUI | |
3018 || | |
3019 # endif | |
3020 # endif | |
3021 # ifdef FEAT_GUI | |
3022 !(gui.in_use || gui.starting) | |
3023 # endif | |
3024 ) | |
3025 { | |
3026 fprintf(stderr, "%s", str); | |
3027 return; | |
3028 } | |
3029 #endif | |
3030 | |
3031 /* avoid a delay for a message that isn't there */ | |
3032 emsg_on_display = FALSE; | |
3033 | |
3034 len = (int)STRLEN(str) + 1; | |
3035 if (error_ga.ga_growsize == 0) | |
3036 { | |
3037 error_ga.ga_growsize = 80; | |
3038 error_ga.ga_itemsize = 1; | |
3039 } | |
3040 if (ga_grow(&error_ga, len) == OK) | |
3041 { | |
3042 mch_memmove((char_u *)error_ga.ga_data + error_ga.ga_len, | |
3043 (char_u *)str, len); | |
3044 #ifdef UNIX | |
3045 /* remove CR characters, they are displayed */ | |
3046 { | |
3047 char_u *p; | |
3048 | |
3049 p = (char_u *)error_ga.ga_data + error_ga.ga_len; | |
3050 for (;;) | |
3051 { | |
3052 p = vim_strchr(p, '\r'); | |
3053 if (p == NULL) | |
3054 break; | |
3055 *p = ' '; | |
3056 } | |
3057 } | |
3058 #endif | |
3059 --len; /* don't count the NUL at the end */ | |
3060 error_ga.ga_len += len; | |
3061 } | |
3062 } | |
3063 | |
3064 /* | |
3065 * Give a message. To be used when the screen hasn't been initialized yet. | |
3066 * When there is no tty, collect messages until the GUI has started and they | |
3067 * can be displayed in a message box. | |
3068 */ | |
3069 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3070 mch_msg(char *str) |
7 | 3071 { |
3072 #if (defined(UNIX) || defined(FEAT_GUI)) && !defined(ALWAYS_USE_GUI) | |
3073 /* On Unix use stdout if we have a tty. This allows "vim -h | more" and | |
3074 * uses mch_errmsg() when started from the desktop. | |
3075 * When not going to start the GUI also use stdout. | |
3076 * On Mac, when started from Finder, stderr is the console. */ | |
3077 if ( | |
3078 # ifdef UNIX | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3079 # ifdef MACOS_X |
7 | 3080 (isatty(2) && strcmp("/dev/console", ttyname(2)) != 0) |
3081 # else | |
3082 isatty(2) | |
3083 # endif | |
3084 # ifdef FEAT_GUI | |
3085 || | |
3086 # endif | |
3087 # endif | |
3088 # ifdef FEAT_GUI | |
3089 !(gui.in_use || gui.starting) | |
3090 # endif | |
3091 ) | |
3092 { | |
3093 printf("%s", str); | |
3094 return; | |
3095 } | |
3096 # endif | |
3097 mch_errmsg(str); | |
3098 } | |
3099 #endif /* USE_MCH_ERRMSG */ | |
3100 | |
3101 /* | |
3102 * Put a character on the screen at the current message position and advance | |
3103 * to the next position. Only for printable ASCII! | |
3104 */ | |
3105 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3106 msg_screen_putchar(int c, int attr) |
7 | 3107 { |
3108 msg_didout = TRUE; /* remember that line is not empty */ | |
3109 screen_putchar(c, msg_row, msg_col, attr); | |
3110 #ifdef FEAT_RIGHTLEFT | |
3111 if (cmdmsg_rl) | |
3112 { | |
3113 if (--msg_col == 0) | |
3114 { | |
3115 msg_col = Columns; | |
3116 ++msg_row; | |
3117 } | |
3118 } | |
3119 else | |
3120 #endif | |
3121 { | |
3122 if (++msg_col >= Columns) | |
3123 { | |
3124 msg_col = 0; | |
3125 ++msg_row; | |
3126 } | |
3127 } | |
3128 } | |
3129 | |
3130 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3131 msg_moremsg(int full) |
7 | 3132 { |
446 | 3133 int attr; |
3134 char_u *s = (char_u *)_("-- More --"); | |
7 | 3135 |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3136 attr = HL_ATTR(HLF_M); |
446 | 3137 screen_puts(s, (int)Rows - 1, 0, attr); |
7 | 3138 if (full) |
446 | 3139 screen_puts((char_u *) |
3140 _(" SPACE/d/j: screen/page/line down, b/u/k: up, q: quit "), | |
3141 (int)Rows - 1, vim_strsize(s), attr); | |
7 | 3142 } |
3143 | |
3144 /* | |
3145 * Repeat the message for the current mode: ASKMORE, EXTERNCMD, CONFIRM or | |
3146 * exmode_active. | |
3147 */ | |
3148 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3149 repeat_message(void) |
7 | 3150 { |
3151 if (State == ASKMORE) | |
3152 { | |
3153 msg_moremsg(TRUE); /* display --more-- message again */ | |
3154 msg_row = Rows - 1; | |
3155 } | |
3156 #ifdef FEAT_CON_DIALOG | |
3157 else if (State == CONFIRM) | |
3158 { | |
3159 display_confirm_msg(); /* display ":confirm" message again */ | |
3160 msg_row = Rows - 1; | |
3161 } | |
3162 #endif | |
3163 else if (State == EXTERNCMD) | |
3164 { | |
3165 windgoto(msg_row, msg_col); /* put cursor back */ | |
3166 } | |
3167 else if (State == HITRETURN || State == SETWSIZE) | |
3168 { | |
1445 | 3169 if (msg_row == Rows - 1) |
3170 { | |
3171 /* Avoid drawing the "hit-enter" prompt below the previous one, | |
3172 * overwrite it. Esp. useful when regaining focus and a | |
3173 * FocusGained autocmd exists but didn't draw anything. */ | |
3174 msg_didout = FALSE; | |
3175 msg_col = 0; | |
3176 msg_clr_eos(); | |
3177 } | |
7 | 3178 hit_return_msg(); |
3179 msg_row = Rows - 1; | |
3180 } | |
3181 } | |
3182 | |
3183 /* | |
3184 * msg_check_screen - check if the screen is initialized. | |
3185 * Also check msg_row and msg_col, if they are too big it may cause a crash. | |
3186 * While starting the GUI the terminal codes will be set for the GUI, but the | |
3187 * output goes to the terminal. Don't use the terminal codes then. | |
3188 */ | |
3189 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3190 msg_check_screen(void) |
7 | 3191 { |
3192 if (!full_screen || !screen_valid(FALSE)) | |
3193 return FALSE; | |
3194 | |
3195 if (msg_row >= Rows) | |
3196 msg_row = Rows - 1; | |
3197 if (msg_col >= Columns) | |
3198 msg_col = Columns - 1; | |
3199 return TRUE; | |
3200 } | |
3201 | |
3202 /* | |
3203 * Clear from current message position to end of screen. | |
3204 * Skip this when ":silent" was used, no need to clear for redirection. | |
3205 */ | |
3206 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3207 msg_clr_eos(void) |
7 | 3208 { |
3209 if (msg_silent == 0) | |
3210 msg_clr_eos_force(); | |
3211 } | |
3212 | |
3213 /* | |
3214 * Clear from current message position to end of screen. | |
3215 * Note: msg_col is not updated, so we remember the end of the message | |
3216 * for msg_check(). | |
3217 */ | |
3218 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3219 msg_clr_eos_force(void) |
7 | 3220 { |
3221 if (msg_use_printf()) | |
3222 { | |
3223 if (full_screen) /* only when termcap codes are valid */ | |
3224 { | |
3225 if (*T_CD) | |
3226 out_str(T_CD); /* clear to end of display */ | |
3227 else if (*T_CE) | |
3228 out_str(T_CE); /* clear to end of line */ | |
3229 } | |
3230 } | |
3231 else | |
3232 { | |
3233 #ifdef FEAT_RIGHTLEFT | |
3234 if (cmdmsg_rl) | |
3235 { | |
3236 screen_fill(msg_row, msg_row + 1, 0, msg_col + 1, ' ', ' ', 0); | |
3237 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); | |
3238 } | |
3239 else | |
3240 #endif | |
3241 { | |
3242 screen_fill(msg_row, msg_row + 1, msg_col, (int)Columns, | |
3243 ' ', ' ', 0); | |
3244 screen_fill(msg_row + 1, (int)Rows, 0, (int)Columns, ' ', ' ', 0); | |
3245 } | |
3246 } | |
3247 } | |
3248 | |
3249 /* | |
3250 * Clear the command line. | |
3251 */ | |
3252 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3253 msg_clr_cmdline(void) |
7 | 3254 { |
3255 msg_row = cmdline_row; | |
3256 msg_col = 0; | |
3257 msg_clr_eos_force(); | |
3258 } | |
3259 | |
3260 /* | |
3261 * end putting a message on the screen | |
3262 * call wait_return if the message does not fit in the available space | |
3263 * return TRUE if wait_return not called. | |
3264 */ | |
3265 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3266 msg_end(void) |
7 | 3267 { |
3268 /* | |
5245
8c6615a30951
updated for version 7.4a.047
Bram Moolenaar <bram@vim.org>
parents:
4793
diff
changeset
|
3269 * If the string is larger than the window, |
7 | 3270 * or the ruler option is set and we run into it, |
3271 * we have to redraw the window. | |
3272 * Do not do this if we are abandoning the file or editing the command line. | |
3273 */ | |
3274 if (!exiting && need_wait_return && !(State & CMDLINE)) | |
3275 { | |
3276 wait_return(FALSE); | |
3277 return FALSE; | |
3278 } | |
3279 out_flush(); | |
3280 return TRUE; | |
3281 } | |
3282 | |
3283 /* | |
3284 * If the written message runs into the shown command or ruler, we have to | |
3285 * wait for hit-return and redraw the window later. | |
3286 */ | |
3287 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3288 msg_check(void) |
7 | 3289 { |
3290 if (msg_row == Rows - 1 && msg_col >= sc_col) | |
3291 { | |
3292 need_wait_return = TRUE; | |
3293 redraw_cmdline = TRUE; | |
3294 } | |
3295 } | |
3296 | |
3297 /* | |
3298 * May write a string to the redirection file. | |
3299 * When "maxlen" is -1 write the whole string, otherwise up to "maxlen" bytes. | |
3300 */ | |
3301 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3302 redir_write(char_u *str, int maxlen) |
7 | 3303 { |
3304 char_u *s = str; | |
3305 static int cur_col = 0; | |
3306 | |
291 | 3307 /* Don't do anything for displaying prompts and the like. */ |
3308 if (redir_off) | |
3309 return; | |
3310 | |
3072 | 3311 /* If 'verbosefile' is set prepare for writing in that file. */ |
3312 if (*p_vfile != NUL && verbose_fd == NULL) | |
3313 verbose_open(); | |
291 | 3314 |
1854 | 3315 if (redirecting()) |
7 | 3316 { |
3317 /* If the string doesn't start with CR or NL, go to msg_col */ | |
3318 if (*s != '\n' && *s != '\r') | |
3319 { | |
3320 while (cur_col < msg_col) | |
3321 { | |
3322 #ifdef FEAT_EVAL | |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3323 if (redir_execute) |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3324 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
|
3325 else if (redir_reg) |
7 | 3326 write_reg_contents(redir_reg, (char_u *)" ", -1, TRUE); |
167 | 3327 else if (redir_vname) |
3328 var_redir_str((char_u *)" ", -1); | |
3072 | 3329 else |
7 | 3330 #endif |
3072 | 3331 if (redir_fd != NULL) |
7 | 3332 fputs(" ", redir_fd); |
3072 | 3333 if (verbose_fd != NULL) |
3334 fputs(" ", verbose_fd); | |
7 | 3335 ++cur_col; |
3336 } | |
3337 } | |
3338 | |
3339 #ifdef FEAT_EVAL | |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3340 if (redir_execute) |
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3341 execute_redir_str(s, maxlen); |
9436
f048e5a27253
commit https://github.com/vim/vim/commit/bc5d6dd1dd1dc3a06e4e655fc9479529db288365
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
3342 else if (redir_reg) |
7 | 3343 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
|
3344 else if (redir_vname) |
167 | 3345 var_redir_str(s, maxlen); |
7 | 3346 #endif |
3347 | |
3072 | 3348 /* Write and adjust the current column. */ |
7 | 3349 while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen)) |
3350 { | |
3351 #ifdef FEAT_EVAL | |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3352 if (!redir_reg && !redir_vname && !redir_execute) |
7 | 3353 #endif |
3072 | 3354 if (redir_fd != NULL) |
3355 putc(*s, redir_fd); | |
3356 if (verbose_fd != NULL) | |
3357 putc(*s, verbose_fd); | |
7 | 3358 if (*s == '\r' || *s == '\n') |
3359 cur_col = 0; | |
3360 else if (*s == '\t') | |
3361 cur_col += (8 - cur_col % 8); | |
3362 else | |
3363 ++cur_col; | |
3364 ++s; | |
3365 } | |
3366 | |
3367 if (msg_silent != 0) /* should update msg_col */ | |
3368 msg_col = cur_col; | |
3369 } | |
3370 } | |
3371 | |
1854 | 3372 int |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3373 redirecting(void) |
1854 | 3374 { |
3072 | 3375 return redir_fd != NULL || *p_vfile != NUL |
1854 | 3376 #ifdef FEAT_EVAL |
9454
9da0cb39cbee
commit https://github.com/vim/vim/commit/79815f1ec77406f2f21a618c053e5793b597db7a
Christian Brabandt <cb@256bit.org>
parents:
9436
diff
changeset
|
3377 || redir_reg || redir_vname || redir_execute |
1854 | 3378 #endif |
3379 ; | |
3380 } | |
3381 | |
7 | 3382 /* |
1189 | 3383 * Before giving verbose message. |
291 | 3384 * Must always be called paired with verbose_leave()! |
3385 */ | |
3386 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3387 verbose_enter(void) |
291 | 3388 { |
3389 if (*p_vfile != NUL) | |
3390 ++msg_silent; | |
3391 } | |
3392 | |
3393 /* | |
3394 * After giving verbose message. | |
3395 * Must always be called paired with verbose_enter()! | |
3396 */ | |
3397 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3398 verbose_leave(void) |
291 | 3399 { |
3400 if (*p_vfile != NUL) | |
3401 if (--msg_silent < 0) | |
3402 msg_silent = 0; | |
3403 } | |
3404 | |
3405 /* | |
3406 * Like verbose_enter() and set msg_scroll when displaying the message. | |
3407 */ | |
3408 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3409 verbose_enter_scroll(void) |
291 | 3410 { |
3411 if (*p_vfile != NUL) | |
3412 ++msg_silent; | |
3413 else | |
3414 /* always scroll up, don't overwrite */ | |
3415 msg_scroll = TRUE; | |
3416 } | |
3417 | |
3418 /* | |
3419 * Like verbose_leave() and set cmdline_row when displaying the message. | |
3420 */ | |
3421 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3422 verbose_leave_scroll(void) |
291 | 3423 { |
3424 if (*p_vfile != NUL) | |
3425 { | |
3426 if (--msg_silent < 0) | |
3427 msg_silent = 0; | |
3428 } | |
3429 else | |
3430 cmdline_row = msg_row; | |
3431 } | |
3432 | |
3433 /* | |
3434 * Called when 'verbosefile' is set: stop writing to the file. | |
3435 */ | |
3436 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3437 verbose_stop(void) |
291 | 3438 { |
3439 if (verbose_fd != NULL) | |
3440 { | |
3441 fclose(verbose_fd); | |
3442 verbose_fd = NULL; | |
3443 } | |
3444 verbose_did_open = FALSE; | |
3445 } | |
3446 | |
3447 /* | |
3448 * Open the file 'verbosefile'. | |
3449 * Return FAIL or OK. | |
3450 */ | |
3451 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3452 verbose_open(void) |
291 | 3453 { |
3454 if (verbose_fd == NULL && !verbose_did_open) | |
3455 { | |
3456 /* Only give the error message once. */ | |
3457 verbose_did_open = TRUE; | |
3458 | |
531 | 3459 verbose_fd = mch_fopen((char *)p_vfile, "a"); |
291 | 3460 if (verbose_fd == NULL) |
3461 { | |
3462 EMSG2(_(e_notopen), p_vfile); | |
3463 return FAIL; | |
3464 } | |
3465 } | |
3466 return OK; | |
3467 } | |
3468 | |
3469 /* | |
7 | 3470 * Give a warning message (for searching). |
3471 * Use 'w' highlighting and may repeat the message after redrawing | |
3472 */ | |
3473 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3474 give_warning(char_u *message, int hl) |
7 | 3475 { |
3476 /* Don't do this for ":silent". */ | |
3477 if (msg_silent != 0) | |
3478 return; | |
3479 | |
3480 /* Don't want a hit-enter prompt here. */ | |
3481 ++no_wait_return; | |
8 | 3482 |
7 | 3483 #ifdef FEAT_EVAL |
3484 set_vim_var_string(VV_WARNINGMSG, message, -1); | |
3485 #endif | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13188
diff
changeset
|
3486 VIM_CLEAR(keep_msg); |
7 | 3487 if (hl) |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3488 keep_msg_attr = HL_ATTR(HLF_W); |
7 | 3489 else |
3490 keep_msg_attr = 0; | |
3491 if (msg_attr(message, keep_msg_attr) && msg_scrolled == 0) | |
678 | 3492 set_keep_msg(message, keep_msg_attr); |
7 | 3493 msg_didout = FALSE; /* overwrite this message */ |
3494 msg_nowait = TRUE; /* don't wait for this message */ | |
3495 msg_col = 0; | |
8 | 3496 |
7 | 3497 --no_wait_return; |
3498 } | |
3499 | |
11561
7ad79766365a
patch 8.0.0663: unexpected error message only when 'verbose' is set
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
3500 void |
7ad79766365a
patch 8.0.0663: unexpected error message only when 'verbose' is set
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
3501 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
|
3502 { |
7ad79766365a
patch 8.0.0663: unexpected error message only when 'verbose' is set
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
3503 vim_snprintf((char *)IObuff, IOSIZE, (char *)message, a1); |
7ad79766365a
patch 8.0.0663: unexpected error message only when 'verbose' is set
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
3504 give_warning(IObuff, hl); |
7ad79766365a
patch 8.0.0663: unexpected error message only when 'verbose' is set
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
3505 } |
7ad79766365a
patch 8.0.0663: unexpected error message only when 'verbose' is set
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
3506 |
7 | 3507 /* |
3508 * Advance msg cursor to column "col". | |
3509 */ | |
3510 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3511 msg_advance(int col) |
7 | 3512 { |
3513 if (msg_silent != 0) /* nothing to advance to */ | |
3514 { | |
3515 msg_col = col; /* for redirection, may fill it up later */ | |
3516 return; | |
3517 } | |
3518 if (col >= Columns) /* not enough room */ | |
3519 col = Columns - 1; | |
474 | 3520 #ifdef FEAT_RIGHTLEFT |
3521 if (cmdmsg_rl) | |
3522 while (msg_col > Columns - col) | |
3523 msg_putchar(' '); | |
3524 else | |
3525 #endif | |
3526 while (msg_col < col) | |
3527 msg_putchar(' '); | |
7 | 3528 } |
3529 | |
3530 #if defined(FEAT_CON_DIALOG) || defined(PROTO) | |
3531 /* | |
3532 * Used for "confirm()" function, and the :confirm command prefix. | |
3533 * Versions which haven't got flexible dialogs yet, and console | |
3534 * versions, get this generic handler which uses the command line. | |
3535 * | |
3536 * type = one of: | |
3537 * VIM_QUESTION, VIM_INFO, VIM_WARNING, VIM_ERROR or VIM_GENERIC | |
3538 * title = title string (can be NULL for default) | |
3539 * (neither used in console dialogs at the moment) | |
3540 * | |
3541 * Format of the "buttons" string: | |
3542 * "Button1Name\nButton2Name\nButton3Name" | |
3543 * The first button should normally be the default/accept | |
3544 * The second button should be the 'Cancel' button | |
3545 * Other buttons- use your imagination! | |
3546 * A '&' in a button name becomes a shortcut, so each '&' should be before a | |
3547 * different letter. | |
3548 */ | |
3549 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3550 do_dialog( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3551 int type UNUSED, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3552 char_u *title UNUSED, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3553 char_u *message, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3554 char_u *buttons, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3555 int dfltbutton, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3556 char_u *textfield UNUSED, /* IObuff for inputdialog(), NULL |
1883 | 3557 otherwise */ |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3558 int ex_cmd) /* when TRUE pressing : accepts default and starts |
2684 | 3559 Ex command */ |
7 | 3560 { |
3561 int oldState; | |
3562 int retval = 0; | |
3563 char_u *hotkeys; | |
3564 int c; | |
3565 int i; | |
3566 | |
3567 #ifndef NO_CONSOLE | |
3568 /* Don't output anything in silent mode ("ex -s") */ | |
3569 if (silent_mode) | |
3570 return dfltbutton; /* return default option */ | |
3571 #endif | |
3572 | |
3573 #ifdef FEAT_GUI_DIALOG | |
3574 /* When GUI is running and 'c' not in 'guioptions', use the GUI dialog */ | |
3575 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL) | |
3576 { | |
3577 c = gui_mch_dialog(type, title, message, buttons, dfltbutton, | |
2684 | 3578 textfield, ex_cmd); |
1809 | 3579 /* avoid a hit-enter prompt without clearing the cmdline */ |
3580 need_wait_return = FALSE; | |
3581 emsg_on_display = FALSE; | |
3582 cmdline_row = msg_row; | |
7 | 3583 |
3584 /* Flush output to avoid that further messages and redrawing is done | |
3585 * in the wrong order. */ | |
3586 out_flush(); | |
3587 gui_mch_update(); | |
3588 | |
3589 return c; | |
3590 } | |
3591 #endif | |
3592 | |
3593 oldState = State; | |
3594 State = CONFIRM; | |
3595 #ifdef FEAT_MOUSE | |
3596 setmouse(); | |
3597 #endif | |
3598 | |
3599 /* | |
3600 * Since we wait for a keypress, don't make the | |
3601 * user press RETURN as well afterwards. | |
3602 */ | |
3603 ++no_wait_return; | |
3604 hotkeys = msg_show_console_dialog(message, buttons, dfltbutton); | |
3605 | |
3606 if (hotkeys != NULL) | |
3607 { | |
3608 for (;;) | |
3609 { | |
3610 /* Get a typed character directly from the user. */ | |
3611 c = get_keystroke(); | |
3612 switch (c) | |
3613 { | |
3614 case CAR: /* User accepts default option */ | |
3615 case NL: | |
3616 retval = dfltbutton; | |
3617 break; | |
3618 case Ctrl_C: /* User aborts/cancels */ | |
3619 case ESC: | |
3620 retval = 0; | |
3621 break; | |
3622 default: /* Could be a hotkey? */ | |
3623 if (c < 0) /* special keys are ignored here */ | |
3624 continue; | |
2684 | 3625 if (c == ':' && ex_cmd) |
3626 { | |
3627 retval = dfltbutton; | |
3628 ins_char_typebuf(':'); | |
3629 break; | |
3630 } | |
3631 | |
7 | 3632 /* Make the character lowercase, as chars in "hotkeys" are. */ |
3633 c = MB_TOLOWER(c); | |
3634 retval = 1; | |
3635 for (i = 0; hotkeys[i]; ++i) | |
3636 { | |
3637 #ifdef FEAT_MBYTE | |
3638 if (has_mbyte) | |
3639 { | |
3640 if ((*mb_ptr2char)(hotkeys + i) == c) | |
3641 break; | |
474 | 3642 i += (*mb_ptr2len)(hotkeys + i) - 1; |
7 | 3643 } |
3644 else | |
3645 #endif | |
3646 if (hotkeys[i] == c) | |
3647 break; | |
3648 ++retval; | |
3649 } | |
3650 if (hotkeys[i]) | |
3651 break; | |
3652 /* No hotkey match, so keep waiting */ | |
3653 continue; | |
3654 } | |
3655 break; | |
3656 } | |
3657 | |
3658 vim_free(hotkeys); | |
3659 } | |
3660 | |
3661 State = oldState; | |
3662 #ifdef FEAT_MOUSE | |
3663 setmouse(); | |
3664 #endif | |
3665 --no_wait_return; | |
3666 msg_end_prompt(); | |
3667 | |
3668 return retval; | |
3669 } | |
3670 | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
3671 static int copy_char(char_u *from, char_u *to, int lowercase); |
7 | 3672 |
3673 /* | |
3674 * Copy one character from "*from" to "*to", taking care of multi-byte | |
3675 * characters. Return the length of the character in bytes. | |
3676 */ | |
3677 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3678 copy_char( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3679 char_u *from, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3680 char_u *to, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3681 int lowercase) /* make character lower case */ |
7 | 3682 { |
3683 #ifdef FEAT_MBYTE | |
3684 int len; | |
3685 int c; | |
3686 | |
3687 if (has_mbyte) | |
3688 { | |
3689 if (lowercase) | |
3690 { | |
3691 c = MB_TOLOWER((*mb_ptr2char)(from)); | |
3692 return (*mb_char2bytes)(c, to); | |
3693 } | |
3694 else | |
3695 { | |
474 | 3696 len = (*mb_ptr2len)(from); |
7 | 3697 mch_memmove(to, from, (size_t)len); |
3698 return len; | |
3699 } | |
3700 } | |
3701 else | |
3702 #endif | |
3703 { | |
3704 if (lowercase) | |
3705 *to = (char_u)TOLOWER_LOC(*from); | |
3706 else | |
3707 *to = *from; | |
3708 return 1; | |
3709 } | |
3710 } | |
3711 | |
3712 /* | |
3713 * Format the dialog string, and display it at the bottom of | |
3714 * the screen. Return a string of hotkey chars (if defined) for | |
3715 * each 'button'. If a button has no hotkey defined, the first character of | |
3716 * the button is used. | |
3717 * The hotkeys can be multi-byte characters, but without combining chars. | |
3718 * | |
3719 * Returns an allocated string with hotkeys, or NULL for error. | |
3720 */ | |
3721 static char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3722 msg_show_console_dialog( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3723 char_u *message, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3724 char_u *buttons, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3725 int dfltbutton) |
7 | 3726 { |
3727 int len = 0; | |
3728 #ifdef FEAT_MBYTE | |
3729 # define HOTK_LEN (has_mbyte ? MB_MAXBYTES : 1) | |
3730 #else | |
3731 # define HOTK_LEN 1 | |
3732 #endif | |
3733 int lenhotkey = HOTK_LEN; /* count first button */ | |
3734 char_u *hotk = NULL; | |
3735 char_u *msgp = NULL; | |
3736 char_u *hotkp = NULL; | |
3737 char_u *r; | |
3738 int copy; | |
3739 #define HAS_HOTKEY_LEN 30 | |
3740 char_u has_hotkey[HAS_HOTKEY_LEN]; | |
3741 int first_hotkey = FALSE; /* first char of button is hotkey */ | |
3742 int idx; | |
3743 | |
3744 has_hotkey[0] = FALSE; | |
3745 | |
3746 /* | |
3747 * First loop: compute the size of memory to allocate. | |
3748 * Second loop: copy to the allocated memory. | |
3749 */ | |
3750 for (copy = 0; copy <= 1; ++copy) | |
3751 { | |
3752 r = buttons; | |
3753 idx = 0; | |
3754 while (*r) | |
3755 { | |
3756 if (*r == DLG_BUTTON_SEP) | |
3757 { | |
3758 if (copy) | |
3759 { | |
3760 *msgp++ = ','; | |
3761 *msgp++ = ' '; /* '\n' -> ', ' */ | |
3762 | |
3763 /* advance to next hotkey and set default hotkey */ | |
3764 #ifdef FEAT_MBYTE | |
3765 if (has_mbyte) | |
1306 | 3766 hotkp += STRLEN(hotkp); |
7 | 3767 else |
3768 #endif | |
3769 ++hotkp; | |
1306 | 3770 hotkp[copy_char(r + 1, hotkp, TRUE)] = NUL; |
7 | 3771 if (dfltbutton) |
3772 --dfltbutton; | |
3773 | |
3774 /* If no hotkey is specified first char is used. */ | |
3775 if (idx < HAS_HOTKEY_LEN - 1 && !has_hotkey[++idx]) | |
3776 first_hotkey = TRUE; | |
3777 } | |
3778 else | |
3779 { | |
3780 len += 3; /* '\n' -> ', '; 'x' -> '(x)' */ | |
3781 lenhotkey += HOTK_LEN; /* each button needs a hotkey */ | |
3782 if (idx < HAS_HOTKEY_LEN - 1) | |
3783 has_hotkey[++idx] = FALSE; | |
3784 } | |
3785 } | |
3786 else if (*r == DLG_HOTKEY_CHAR || first_hotkey) | |
3787 { | |
3788 if (*r == DLG_HOTKEY_CHAR) | |
3789 ++r; | |
3790 first_hotkey = FALSE; | |
3791 if (copy) | |
3792 { | |
3793 if (*r == DLG_HOTKEY_CHAR) /* '&&a' -> '&a' */ | |
3794 *msgp++ = *r; | |
3795 else | |
3796 { | |
3797 /* '&a' -> '[a]' */ | |
3798 *msgp++ = (dfltbutton == 1) ? '[' : '('; | |
3799 msgp += copy_char(r, msgp, FALSE); | |
3800 *msgp++ = (dfltbutton == 1) ? ']' : ')'; | |
3801 | |
3802 /* redefine hotkey */ | |
1306 | 3803 hotkp[copy_char(r, hotkp, TRUE)] = NUL; |
7 | 3804 } |
3805 } | |
3806 else | |
3807 { | |
3808 ++len; /* '&a' -> '[a]' */ | |
3809 if (idx < HAS_HOTKEY_LEN - 1) | |
3810 has_hotkey[idx] = TRUE; | |
3811 } | |
3812 } | |
3813 else | |
3814 { | |
3815 /* everything else copy literally */ | |
3816 if (copy) | |
3817 msgp += copy_char(r, msgp, FALSE); | |
3818 } | |
3819 | |
3820 /* 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
|
3821 MB_PTR_ADV(r); |
7 | 3822 } |
3823 | |
3824 if (copy) | |
3825 { | |
3826 *msgp++ = ':'; | |
3827 *msgp++ = ' '; | |
3828 *msgp = NUL; | |
3829 } | |
3830 else | |
3831 { | |
835 | 3832 len += (int)(STRLEN(message) |
856 | 3833 + 2 /* for the NL's */ |
3834 + STRLEN(buttons) | |
3835 + 3); /* for the ": " and NUL */ | |
835 | 3836 lenhotkey++; /* for the NUL */ |
7 | 3837 |
3838 /* If no hotkey is specified first char is used. */ | |
3839 if (!has_hotkey[0]) | |
3840 { | |
3841 first_hotkey = TRUE; | |
3842 len += 2; /* "x" -> "[x]" */ | |
3843 } | |
3844 | |
3845 /* | |
3846 * Now allocate and load the strings | |
3847 */ | |
3848 vim_free(confirm_msg); | |
3849 confirm_msg = alloc(len); | |
3850 if (confirm_msg == NULL) | |
3851 return NULL; | |
3852 *confirm_msg = NUL; | |
3853 hotk = alloc(lenhotkey); | |
3854 if (hotk == NULL) | |
3855 return NULL; | |
3856 | |
3857 *confirm_msg = '\n'; | |
3858 STRCPY(confirm_msg + 1, message); | |
3859 | |
3860 msgp = confirm_msg + 1 + STRLEN(message); | |
3861 hotkp = hotk; | |
3862 | |
1306 | 3863 /* Define first default hotkey. Keep the hotkey string NUL |
3864 * terminated to avoid reading past the end. */ | |
3865 hotkp[copy_char(buttons, hotkp, TRUE)] = NUL; | |
7 | 3866 |
3867 /* Remember where the choices start, displaying starts here when | |
3868 * "hotkp" typed at the more prompt. */ | |
3869 confirm_msg_tail = msgp; | |
3870 *msgp++ = '\n'; | |
3871 } | |
3872 } | |
3873 | |
3874 display_confirm_msg(); | |
3875 return hotk; | |
3876 } | |
3877 | |
3878 /* | |
3879 * Display the ":confirm" message. Also called when screen resized. | |
3880 */ | |
3881 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3882 display_confirm_msg(void) |
7 | 3883 { |
3884 /* avoid that 'q' at the more prompt truncates the message here */ | |
3885 ++confirm_msg_used; | |
3886 if (confirm_msg != NULL) | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
3887 msg_puts_attr(confirm_msg, HL_ATTR(HLF_M)); |
7 | 3888 --confirm_msg_used; |
3889 } | |
3890 | |
3891 #endif /* FEAT_CON_DIALOG */ | |
3892 | |
3893 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG) | |
3894 | |
3895 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3896 vim_dialog_yesno( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3897 int type, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3898 char_u *title, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3899 char_u *message, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3900 int dflt) |
7 | 3901 { |
3902 if (do_dialog(type, | |
3903 title == NULL ? (char_u *)_("Question") : title, | |
3904 message, | |
2684 | 3905 (char_u *)_("&Yes\n&No"), dflt, NULL, FALSE) == 1) |
7 | 3906 return VIM_YES; |
3907 return VIM_NO; | |
3908 } | |
3909 | |
3910 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3911 vim_dialog_yesnocancel( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3912 int type, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3913 char_u *title, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3914 char_u *message, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3915 int dflt) |
7 | 3916 { |
3917 switch (do_dialog(type, | |
3918 title == NULL ? (char_u *)_("Question") : title, | |
3919 message, | |
2684 | 3920 (char_u *)_("&Yes\n&No\n&Cancel"), dflt, NULL, FALSE)) |
7 | 3921 { |
3922 case 1: return VIM_YES; | |
3923 case 2: return VIM_NO; | |
3924 } | |
3925 return VIM_CANCEL; | |
3926 } | |
3927 | |
3928 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3929 vim_dialog_yesnoallcancel( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3930 int type, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3931 char_u *title, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3932 char_u *message, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3933 int dflt) |
7 | 3934 { |
3935 switch (do_dialog(type, | |
3936 title == NULL ? (char_u *)"Question" : title, | |
3937 message, | |
3938 (char_u *)_("&Yes\n&No\nSave &All\n&Discard All\n&Cancel"), | |
2684 | 3939 dflt, NULL, FALSE)) |
7 | 3940 { |
3941 case 1: return VIM_YES; | |
3942 case 2: return VIM_NO; | |
3943 case 3: return VIM_ALL; | |
3944 case 4: return VIM_DISCARDALL; | |
3945 } | |
3946 return VIM_CANCEL; | |
3947 } | |
3948 | |
3949 #endif /* FEAT_GUI_DIALOG || FEAT_CON_DIALOG */ | |
3950 | |
3951 #if defined(FEAT_BROWSE) || defined(PROTO) | |
3952 /* | |
3953 * Generic browse function. Calls gui_mch_browse() when possible. | |
3954 * Later this may pop-up a non-GUI file selector (external command?). | |
3955 */ | |
3956 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3957 do_browse( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3958 int flags, /* BROWSE_SAVE and BROWSE_DIR */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3959 char_u *title, /* title for the window */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3960 char_u *dflt, /* default file name (may include directory) */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3961 char_u *ext, /* extension added */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3962 char_u *initdir, /* initial directory, NULL for current dir or |
7 | 3963 when using path from "dflt" */ |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3964 char_u *filter, /* file name filter */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3965 buf_T *buf) /* buffer to read/write for */ |
7 | 3966 { |
3967 char_u *fname; | |
3968 static char_u *last_dir = NULL; /* last used directory */ | |
3969 char_u *tofree = NULL; | |
3970 int save_browse = cmdmod.browse; | |
3971 | |
3972 /* Must turn off browse to avoid that autocommands will get the | |
3973 * flag too! */ | |
3974 cmdmod.browse = FALSE; | |
3975 | |
28 | 3976 if (title == NULL || *title == NUL) |
7 | 3977 { |
28 | 3978 if (flags & BROWSE_DIR) |
3979 title = (char_u *)_("Select Directory dialog"); | |
3980 else if (flags & BROWSE_SAVE) | |
7 | 3981 title = (char_u *)_("Save File dialog"); |
3982 else | |
3983 title = (char_u *)_("Open File dialog"); | |
3984 } | |
3985 | |
3986 /* When no directory specified, use default file name, default dir, buffer | |
3987 * dir, last dir or current dir */ | |
3988 if ((initdir == NULL || *initdir == NUL) && dflt != NULL && *dflt != NUL) | |
3989 { | |
3990 if (mch_isdir(dflt)) /* default file name is a directory */ | |
3991 { | |
3992 initdir = dflt; | |
3993 dflt = NULL; | |
3994 } | |
3995 else if (gettail(dflt) != dflt) /* default file name includes a path */ | |
3996 { | |
3997 tofree = vim_strsave(dflt); | |
3998 if (tofree != NULL) | |
3999 { | |
4000 initdir = tofree; | |
4001 *gettail(initdir) = NUL; | |
4002 dflt = gettail(dflt); | |
4003 } | |
4004 } | |
4005 } | |
4006 | |
4007 if (initdir == NULL || *initdir == NUL) | |
4008 { | |
4009 /* When 'browsedir' is a directory, use it */ | |
28 | 4010 if (STRCMP(p_bsdir, "last") != 0 |
4011 && STRCMP(p_bsdir, "buffer") != 0 | |
4012 && STRCMP(p_bsdir, "current") != 0 | |
4013 && mch_isdir(p_bsdir)) | |
7 | 4014 initdir = p_bsdir; |
4015 /* When saving or 'browsedir' is "buffer", use buffer fname */ | |
28 | 4016 else if (((flags & BROWSE_SAVE) || *p_bsdir == 'b') |
7 | 4017 && buf != NULL && buf->b_ffname != NULL) |
4018 { | |
4019 if (dflt == NULL || *dflt == NUL) | |
4020 dflt = gettail(curbuf->b_ffname); | |
4021 tofree = vim_strsave(curbuf->b_ffname); | |
4022 if (tofree != NULL) | |
4023 { | |
4024 initdir = tofree; | |
4025 *gettail(initdir) = NUL; | |
4026 } | |
4027 } | |
4028 /* When 'browsedir' is "last", use dir from last browse */ | |
4029 else if (*p_bsdir == 'l') | |
4030 initdir = last_dir; | |
4031 /* When 'browsedir is "current", use current directory. This is the | |
4032 * default already, leave initdir empty. */ | |
4033 } | |
4034 | |
4035 # ifdef FEAT_GUI | |
4036 if (gui.in_use) /* when this changes, also adjust f_has()! */ | |
4037 { | |
4038 if (filter == NULL | |
4039 # ifdef FEAT_EVAL | |
4040 && (filter = get_var_value((char_u *)"b:browsefilter")) == NULL | |
4041 && (filter = get_var_value((char_u *)"g:browsefilter")) == NULL | |
4042 # endif | |
4043 ) | |
4044 filter = BROWSE_FILTER_DEFAULT; | |
28 | 4045 if (flags & BROWSE_DIR) |
4046 { | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
1924
diff
changeset
|
4047 # if defined(FEAT_GUI_GTK) || defined(WIN3264) |
28 | 4048 /* For systems that have a directory dialog. */ |
4049 fname = gui_mch_browsedir(title, initdir); | |
4050 # else | |
4051 /* Generic solution for selecting a directory: select a file and | |
4052 * remove the file name. */ | |
4053 fname = gui_mch_browse(0, title, dflt, ext, initdir, (char_u *)""); | |
4054 # endif | |
2277
f42e0b5ff9e9
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Bram Moolenaar <bram@vim.org>
parents:
1924
diff
changeset
|
4055 # if !defined(FEAT_GUI_GTK) |
28 | 4056 /* Win32 adds a dummy file name, others return an arbitrary file |
4057 * name. GTK+ 2 returns only the directory, */ | |
4058 if (fname != NULL && *fname != NUL && !mch_isdir(fname)) | |
4059 { | |
4060 /* Remove the file name. */ | |
39 | 4061 char_u *tail = gettail_sep(fname); |
28 | 4062 |
4063 if (tail == fname) | |
4064 *tail++ = '.'; /* use current dir */ | |
4065 *tail = NUL; | |
4066 } | |
4067 # endif | |
4068 } | |
4069 else | |
4070 fname = gui_mch_browse(flags & BROWSE_SAVE, | |
13802
378f9f8e6d8f
patch 8.0.1773: dialog messages are not translated
Christian Brabandt <cb@256bit.org>
parents:
13712
diff
changeset
|
4071 title, dflt, ext, initdir, (char_u *)_(filter)); |
7 | 4072 |
4073 /* We hang around in the dialog for a while, the user might do some | |
4074 * things to our files. The Win32 dialog allows deleting or renaming | |
4075 * a file, check timestamps. */ | |
4076 need_check_timestamps = TRUE; | |
4077 did_check_timestamps = FALSE; | |
4078 } | |
4079 else | |
4080 # endif | |
4081 { | |
4082 /* TODO: non-GUI file selector here */ | |
4083 EMSG(_("E338: Sorry, no file browser in console mode")); | |
4084 fname = NULL; | |
4085 } | |
4086 | |
4087 /* keep the directory for next time */ | |
4088 if (fname != NULL) | |
4089 { | |
4090 vim_free(last_dir); | |
4091 last_dir = vim_strsave(fname); | |
28 | 4092 if (last_dir != NULL && !(flags & BROWSE_DIR)) |
7 | 4093 { |
4094 *gettail(last_dir) = NUL; | |
4095 if (*last_dir == NUL) | |
4096 { | |
4097 /* filename only returned, must be in current dir */ | |
4098 vim_free(last_dir); | |
4099 last_dir = alloc(MAXPATHL); | |
4100 if (last_dir != NULL) | |
4101 mch_dirname(last_dir, MAXPATHL); | |
4102 } | |
4103 } | |
4104 } | |
4105 | |
4106 vim_free(tofree); | |
4107 cmdmod.browse = save_browse; | |
4108 | |
4109 return fname; | |
4110 } | |
4111 #endif | |
272 | 4112 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4113 #if defined(FEAT_EVAL) |
449 | 4114 static char *e_printf = N_("E766: Insufficient arguments for printf()"); |
4115 | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4116 static varnumber_T tv_nr(typval_T *tvs, int *idxp); |
9892
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4117 static char *tv_str(typval_T *tvs, int *idxp, char_u **tofree); |
1619 | 4118 # ifdef FEAT_FLOAT |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4119 static double tv_float(typval_T *tvs, int *idxp); |
1619 | 4120 # endif |
449 | 4121 |
4122 /* | |
4123 * Get number argument from "idxp" entry in "tvs". First entry is 1. | |
4124 */ | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4125 static varnumber_T |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4126 tv_nr(typval_T *tvs, int *idxp) |
449 | 4127 { |
4128 int idx = *idxp - 1; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4129 varnumber_T n = 0; |
449 | 4130 int err = FALSE; |
4131 | |
4132 if (tvs[idx].v_type == VAR_UNKNOWN) | |
4133 EMSG(_(e_printf)); | |
4134 else | |
4135 { | |
4136 ++*idxp; | |
4137 n = get_tv_number_chk(&tvs[idx], &err); | |
4138 if (err) | |
4139 n = 0; | |
4140 } | |
4141 return n; | |
4142 } | |
4143 | |
4144 /* | |
4145 * Get string argument from "idxp" entry in "tvs". First entry is 1. | |
9892
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4146 * If "tofree" is NULL get_tv_string_chk() is used. Some types (e.g. List) |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4147 * are not converted to a string. |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4148 * If "tofree" is not NULL echo_string() is used. All types are converted to |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4149 * a string with the same format as ":echo". The caller must free "*tofree". |
532 | 4150 * Returns NULL for an error. |
449 | 4151 */ |
4152 static char * | |
9892
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4153 tv_str(typval_T *tvs, int *idxp, char_u **tofree) |
449 | 4154 { |
9892
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4155 int idx = *idxp - 1; |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4156 char *s = NULL; |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4157 static char_u numbuf[NUMBUFLEN]; |
449 | 4158 |
4159 if (tvs[idx].v_type == VAR_UNKNOWN) | |
4160 EMSG(_(e_printf)); | |
4161 else | |
4162 { | |
4163 ++*idxp; | |
9892
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4164 if (tofree != NULL) |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4165 s = (char *)echo_string(&tvs[idx], tofree, numbuf, get_copyID()); |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4166 else |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4167 s = (char *)get_tv_string_chk(&tvs[idx]); |
449 | 4168 } |
4169 return s; | |
4170 } | |
1619 | 4171 |
4172 # ifdef FEAT_FLOAT | |
4173 /* | |
4174 * Get float argument from "idxp" entry in "tvs". First entry is 1. | |
4175 */ | |
4176 static double | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4177 tv_float(typval_T *tvs, int *idxp) |
1619 | 4178 { |
4179 int idx = *idxp - 1; | |
4180 double f = 0; | |
4181 | |
4182 if (tvs[idx].v_type == VAR_UNKNOWN) | |
4183 EMSG(_(e_printf)); | |
4184 else | |
4185 { | |
4186 ++*idxp; | |
4187 if (tvs[idx].v_type == VAR_FLOAT) | |
4188 f = tvs[idx].vval.v_float; | |
1656 | 4189 else if (tvs[idx].v_type == VAR_NUMBER) |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4190 f = (double)tvs[idx].vval.v_number; |
1619 | 4191 else |
4192 EMSG(_("E807: Expected Float argument for printf()")); | |
4193 } | |
4194 return f; | |
4195 } | |
4196 # endif | |
449 | 4197 #endif |
4198 | |
10036
ab6320d74331
commit https://github.com/vim/vim/commit/7f7bd297d6d989254f71c694f1c72d07cbc5c306
Christian Brabandt <cb@256bit.org>
parents:
10015
diff
changeset
|
4199 #ifdef FEAT_FLOAT |
272 | 4200 /* |
10015
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4201 * Return the representation of infinity for printf() function: |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4202 * "-inf", "inf", "+inf", " inf", "-INF", "INF", "+INF" or " INF". |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4203 */ |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4204 static const char * |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4205 infinity_str(int positive, |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4206 char fmt_spec, |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4207 int force_sign, |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4208 int space_for_positive) |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4209 { |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4210 static const char *table[] = |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4211 { |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4212 "-inf", "inf", "+inf", " inf", |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4213 "-INF", "INF", "+INF", " INF" |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4214 }; |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4215 int idx = positive * (1 + force_sign + force_sign * space_for_positive); |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4216 |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4217 if (ASCII_ISUPPER(fmt_spec)) |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4218 idx += 4; |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4219 return table[idx]; |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4220 } |
10036
ab6320d74331
commit https://github.com/vim/vim/commit/7f7bd297d6d989254f71c694f1c72d07cbc5c306
Christian Brabandt <cb@256bit.org>
parents:
10015
diff
changeset
|
4221 #endif |
10015
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4222 |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4223 /* |
272 | 4224 * This code was included to provide a portable vsnprintf() and snprintf(). |
715 | 4225 * Some systems may provide their own, but we always use this one for |
272 | 4226 * consistency. |
4227 * | |
4228 * This code is based on snprintf.c - a portable implementation of snprintf | |
4229 * by Mark Martinec <mark.martinec@ijs.si>, Version 2.2, 2000-10-06. | |
1189 | 4230 * Included with permission. It was heavily modified to fit in Vim. |
272 | 4231 * The original code, including useful comments, can be found here: |
4232 * http://www.ijs.si/software/snprintf/ | |
4233 * | |
4234 * This snprintf() only supports the following conversion specifiers: | |
4235 * s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below) | |
4236 * with flags: '-', '+', ' ', '0' and '#'. | |
4237 * An asterisk is supported for field width as well as precision. | |
4238 * | |
10038
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
4239 * Limited support for floating point was added: 'f', 'F', 'e', 'E', 'g', 'G'. |
1619 | 4240 * |
10015
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4241 * Length modifiers 'h' (short int) and 'l' (long int) and 'll' (long long int) |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4242 * are supported. |
272 | 4243 * |
437 | 4244 * The locale is not used, the string is used as a byte string. This is only |
4245 * relevant for double-byte encodings where the second byte may be '%'. | |
4246 * | |
715 | 4247 * It is permitted for "str_m" to be zero, and it is permitted to specify NULL |
4248 * pointer for resulting string argument if "str_m" is zero (as per ISO C99). | |
272 | 4249 * |
4250 * The return value is the number of characters which would be generated | |
6448 | 4251 * for the given input, excluding the trailing NUL. If this value |
715 | 4252 * is greater or equal to "str_m", not all characters from the result |
4253 * have been stored in str, output bytes beyond the ("str_m"-1) -th character | |
4254 * are discarded. If "str_m" is greater than zero it is guaranteed | |
6448 | 4255 * the resulting string will be NUL-terminated. |
272 | 4256 */ |
4257 | |
4258 /* | |
4259 * When va_list is not supported we only define vim_snprintf(). | |
449 | 4260 * |
11653
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4261 * vim_vsnprintf_typval() can be invoked with either "va_list" or a list of |
482 | 4262 * "typval_T". When the latter is not used it must be NULL. |
272 | 4263 */ |
4264 | |
4265 /* When generating prototypes all of this is skipped, cproto doesn't | |
4266 * understand this. */ | |
4267 #ifndef PROTO | |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4268 |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4269 /* Like vim_vsnprintf() but append to the string. */ |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4270 int |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4271 vim_snprintf_add(char *str, size_t str_m, char *fmt, ...) |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4272 { |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4273 va_list ap; |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4274 int str_l; |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4275 size_t len = STRLEN(str); |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4276 size_t space; |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4277 |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4278 if (str_m <= len) |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4279 space = 0; |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4280 else |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4281 space = str_m - len; |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4282 va_start(ap, fmt); |
11653
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4283 str_l = vim_vsnprintf(str + len, space, fmt, ap); |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4284 va_end(ap); |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4285 return str_l; |
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
4286 } |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4287 |
272 | 4288 int |
4289 vim_snprintf(char *str, size_t str_m, char *fmt, ...) | |
4290 { | |
4291 va_list ap; | |
4292 int str_l; | |
4293 | |
4294 va_start(ap, fmt); | |
11653
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4295 str_l = vim_vsnprintf(str, str_m, fmt, ap); |
272 | 4296 va_end(ap); |
4297 return str_l; | |
4298 } | |
4299 | |
449 | 4300 int |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4301 vim_vsnprintf( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4302 char *str, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4303 size_t str_m, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4304 char *fmt, |
11653
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4305 va_list ap) |
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4306 { |
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4307 return vim_vsnprintf_typval(str, str_m, fmt, ap, NULL); |
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4308 } |
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4309 |
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4310 int |
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4311 vim_vsnprintf_typval( |
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4312 char *str, |
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4313 size_t str_m, |
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
11561
diff
changeset
|
4314 char *fmt, |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4315 va_list ap, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4316 typval_T *tvs) |
272 | 4317 { |
4318 size_t str_l = 0; | |
4319 char *p = fmt; | |
4320 int arg_idx = 1; | |
4321 | |
4322 if (p == NULL) | |
4323 p = ""; | |
4324 while (*p != NUL) | |
4325 { | |
4326 if (*p != '%') | |
4327 { | |
4328 char *q = strchr(p + 1, '%'); | |
1883 | 4329 size_t n = (q == NULL) ? STRLEN(p) : (size_t)(q - p); |
272 | 4330 |
437 | 4331 /* Copy up to the next '%' or NUL without any changes. */ |
272 | 4332 if (str_l < str_m) |
4333 { | |
4334 size_t avail = str_m - str_l; | |
4335 | |
4336 mch_memmove(str + str_l, p, n > avail ? avail : n); | |
4337 } | |
4338 p += n; | |
4339 str_l += n; | |
4340 } | |
4341 else | |
4342 { | |
4343 size_t min_field_width = 0, precision = 0; | |
4344 int zero_padding = 0, precision_specified = 0, justify_left = 0; | |
4345 int alternate_form = 0, force_sign = 0; | |
4346 | |
4347 /* If both the ' ' and '+' flags appear, the ' ' flag should be | |
4348 * ignored. */ | |
4349 int space_for_positive = 1; | |
4350 | |
4351 /* allowed values: \0, h, l, L */ | |
4352 char length_modifier = '\0'; | |
4353 | |
4354 /* temporary buffer for simple numeric->string conversion */ | |
9894
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4355 # if defined(FEAT_FLOAT) |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4356 # define TMP_LEN 350 /* On my system 1e308 is the biggest number possible. |
1619 | 4357 * That sounds reasonable to use as the maximum |
4358 * printable. */ | |
9894
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4359 # elif defined(FEAT_NUM64) |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4360 # define TMP_LEN 66 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4361 # else |
9894
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4362 # define TMP_LEN 34 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4363 # endif |
1619 | 4364 char tmp[TMP_LEN]; |
272 | 4365 |
4366 /* string address in case of string argument */ | |
4367 char *str_arg; | |
4368 | |
4369 /* natural field width of arg without padding and sign */ | |
4370 size_t str_arg_l; | |
4371 | |
4372 /* unsigned char argument value - only defined for c conversion. | |
4373 * N.B. standard explicitly states the char argument for the c | |
4374 * conversion is unsigned */ | |
4375 unsigned char uchar_arg; | |
4376 | |
4377 /* number of zeros to be inserted for numeric conversions as | |
4378 * required by the precision or minimal field width */ | |
4379 size_t number_of_zeros_to_pad = 0; | |
4380 | |
4381 /* index into tmp where zero padding is to be inserted */ | |
4382 size_t zero_padding_insertion_ind = 0; | |
4383 | |
4384 /* current conversion specifier character */ | |
4385 char fmt_spec = '\0'; | |
4386 | |
9892
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4387 /* buffer for 's' and 'S' specs */ |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4388 char_u *tofree = NULL; |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4389 |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4390 |
272 | 4391 str_arg = NULL; |
4392 p++; /* skip '%' */ | |
4393 | |
4394 /* parse flags */ | |
4395 while (*p == '0' || *p == '-' || *p == '+' || *p == ' ' | |
4396 || *p == '#' || *p == '\'') | |
4397 { | |
4398 switch (*p) | |
4399 { | |
4400 case '0': zero_padding = 1; break; | |
4401 case '-': justify_left = 1; break; | |
4402 case '+': force_sign = 1; space_for_positive = 0; break; | |
4403 case ' ': force_sign = 1; | |
4404 /* If both the ' ' and '+' flags appear, the ' ' | |
4405 * flag should be ignored */ | |
4406 break; | |
4407 case '#': alternate_form = 1; break; | |
4408 case '\'': break; | |
4409 } | |
4410 p++; | |
4411 } | |
4412 /* If the '0' and '-' flags both appear, the '0' flag should be | |
4413 * ignored. */ | |
4414 | |
4415 /* parse field width */ | |
4416 if (*p == '*') | |
4417 { | |
4418 int j; | |
4419 | |
4420 p++; | |
449 | 4421 j = |
4422 # if defined(FEAT_EVAL) | |
482 | 4423 tvs != NULL ? tv_nr(tvs, &arg_idx) : |
449 | 4424 # endif |
4425 va_arg(ap, int); | |
272 | 4426 if (j >= 0) |
4427 min_field_width = j; | |
4428 else | |
4429 { | |
4430 min_field_width = -j; | |
4431 justify_left = 1; | |
4432 } | |
4433 } | |
4434 else if (VIM_ISDIGIT((int)(*p))) | |
4435 { | |
4436 /* size_t could be wider than unsigned int; make sure we treat | |
4437 * argument like common implementations do */ | |
4438 unsigned int uj = *p++ - '0'; | |
4439 | |
4440 while (VIM_ISDIGIT((int)(*p))) | |
4441 uj = 10 * uj + (unsigned int)(*p++ - '0'); | |
4442 min_field_width = uj; | |
4443 } | |
4444 | |
4445 /* parse precision */ | |
4446 if (*p == '.') | |
4447 { | |
4448 p++; | |
4449 precision_specified = 1; | |
4450 if (*p == '*') | |
4451 { | |
4452 int j; | |
4453 | |
449 | 4454 j = |
4455 # if defined(FEAT_EVAL) | |
482 | 4456 tvs != NULL ? tv_nr(tvs, &arg_idx) : |
449 | 4457 # endif |
4458 va_arg(ap, int); | |
272 | 4459 p++; |
4460 if (j >= 0) | |
4461 precision = j; | |
4462 else | |
4463 { | |
4464 precision_specified = 0; | |
4465 precision = 0; | |
4466 } | |
4467 } | |
4468 else if (VIM_ISDIGIT((int)(*p))) | |
4469 { | |
4470 /* size_t could be wider than unsigned int; make sure we | |
4471 * treat argument like common implementations do */ | |
4472 unsigned int uj = *p++ - '0'; | |
4473 | |
4474 while (VIM_ISDIGIT((int)(*p))) | |
4475 uj = 10 * uj + (unsigned int)(*p++ - '0'); | |
4476 precision = uj; | |
4477 } | |
4478 } | |
4479 | |
4480 /* parse 'h', 'l' and 'll' length modifiers */ | |
4481 if (*p == 'h' || *p == 'l') | |
4482 { | |
4483 length_modifier = *p; | |
4484 p++; | |
4485 if (length_modifier == 'l' && *p == 'l') | |
4486 { | |
4487 /* double l = long long */ | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4488 # ifdef FEAT_NUM64 |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4489 length_modifier = 'L'; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4490 # else |
272 | 4491 length_modifier = 'l'; /* treat it as a single 'l' */ |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4492 # endif |
272 | 4493 p++; |
4494 } | |
4495 } | |
4496 fmt_spec = *p; | |
4497 | |
4498 /* common synonyms: */ | |
4499 switch (fmt_spec) | |
4500 { | |
4501 case 'i': fmt_spec = 'd'; break; | |
4502 case 'D': fmt_spec = 'd'; length_modifier = 'l'; break; | |
4503 case 'U': fmt_spec = 'u'; length_modifier = 'l'; break; | |
4504 case 'O': fmt_spec = 'o'; length_modifier = 'l'; break; | |
4505 default: break; | |
4506 } | |
4507 | |
9497
d18d71ae21e5
commit https://github.com/vim/vim/commit/38ee6b041e73ad31c3b6b99d56d20833b59b2b57
Christian Brabandt <cb@256bit.org>
parents:
9454
diff
changeset
|
4508 # if defined(FEAT_EVAL) && defined(FEAT_NUM64) |
d18d71ae21e5
commit https://github.com/vim/vim/commit/38ee6b041e73ad31c3b6b99d56d20833b59b2b57
Christian Brabandt <cb@256bit.org>
parents:
9454
diff
changeset
|
4509 switch (fmt_spec) |
d18d71ae21e5
commit https://github.com/vim/vim/commit/38ee6b041e73ad31c3b6b99d56d20833b59b2b57
Christian Brabandt <cb@256bit.org>
parents:
9454
diff
changeset
|
4510 { |
d18d71ae21e5
commit https://github.com/vim/vim/commit/38ee6b041e73ad31c3b6b99d56d20833b59b2b57
Christian Brabandt <cb@256bit.org>
parents:
9454
diff
changeset
|
4511 case 'd': case 'u': case 'o': case 'x': case 'X': |
d18d71ae21e5
commit https://github.com/vim/vim/commit/38ee6b041e73ad31c3b6b99d56d20833b59b2b57
Christian Brabandt <cb@256bit.org>
parents:
9454
diff
changeset
|
4512 if (tvs != NULL && length_modifier == '\0') |
d18d71ae21e5
commit https://github.com/vim/vim/commit/38ee6b041e73ad31c3b6b99d56d20833b59b2b57
Christian Brabandt <cb@256bit.org>
parents:
9454
diff
changeset
|
4513 length_modifier = 'L'; |
d18d71ae21e5
commit https://github.com/vim/vim/commit/38ee6b041e73ad31c3b6b99d56d20833b59b2b57
Christian Brabandt <cb@256bit.org>
parents:
9454
diff
changeset
|
4514 } |
d18d71ae21e5
commit https://github.com/vim/vim/commit/38ee6b041e73ad31c3b6b99d56d20833b59b2b57
Christian Brabandt <cb@256bit.org>
parents:
9454
diff
changeset
|
4515 # endif |
d18d71ae21e5
commit https://github.com/vim/vim/commit/38ee6b041e73ad31c3b6b99d56d20833b59b2b57
Christian Brabandt <cb@256bit.org>
parents:
9454
diff
changeset
|
4516 |
272 | 4517 /* get parameter value, do initial processing */ |
4518 switch (fmt_spec) | |
4519 { | |
4520 /* '%' and 'c' behave similar to 's' regarding flags and field | |
4521 * widths */ | |
4522 case '%': | |
4523 case 'c': | |
4524 case 's': | |
3914 | 4525 case 'S': |
272 | 4526 length_modifier = '\0'; |
4527 str_arg_l = 1; | |
4528 switch (fmt_spec) | |
4529 { | |
4530 case '%': | |
4531 str_arg = p; | |
4532 break; | |
4533 | |
4534 case 'c': | |
4535 { | |
4536 int j; | |
449 | 4537 |
4538 j = | |
4539 # if defined(FEAT_EVAL) | |
482 | 4540 tvs != NULL ? tv_nr(tvs, &arg_idx) : |
449 | 4541 # endif |
4542 va_arg(ap, int); | |
272 | 4543 /* standard demands unsigned char */ |
4544 uchar_arg = (unsigned char)j; | |
4545 str_arg = (char *)&uchar_arg; | |
4546 break; | |
4547 } | |
4548 | |
4549 case 's': | |
3914 | 4550 case 'S': |
449 | 4551 str_arg = |
4552 # if defined(FEAT_EVAL) | |
9892
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4553 tvs != NULL ? tv_str(tvs, &arg_idx, &tofree) : |
449 | 4554 # endif |
4555 va_arg(ap, char *); | |
272 | 4556 if (str_arg == NULL) |
4557 { | |
4558 str_arg = "[NULL]"; | |
4559 str_arg_l = 6; | |
4560 } | |
4561 /* make sure not to address string beyond the specified | |
4562 * precision !!! */ | |
4563 else if (!precision_specified) | |
4564 str_arg_l = strlen(str_arg); | |
4565 /* truncate string if necessary as requested by precision */ | |
4566 else if (precision == 0) | |
4567 str_arg_l = 0; | |
4568 else | |
4569 { | |
881 | 4570 /* Don't put the #if inside memchr(), it can be a |
4571 * macro. */ | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4572 # if VIM_SIZEOF_INT <= 2 |
881 | 4573 char *q = memchr(str_arg, '\0', precision); |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4574 # else |
272 | 4575 /* memchr on HP does not like n > 2^31 !!! */ |
4576 char *q = memchr(str_arg, '\0', | |
881 | 4577 precision <= (size_t)0x7fffffffL ? precision |
4578 : (size_t)0x7fffffffL); | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4579 # endif |
1883 | 4580 str_arg_l = (q == NULL) ? precision |
4581 : (size_t)(q - str_arg); | |
272 | 4582 } |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4583 # ifdef FEAT_MBYTE |
3914 | 4584 if (fmt_spec == 'S') |
4585 { | |
4586 if (min_field_width != 0) | |
4587 min_field_width += STRLEN(str_arg) | |
4588 - mb_string2cells((char_u *)str_arg, -1); | |
4589 if (precision) | |
4590 { | |
4591 char_u *p1 = (char_u *)str_arg; | |
4592 size_t i; | |
4593 | |
4594 for (i = 0; i < precision && *p1; i++) | |
4595 p1 += mb_ptr2len(p1); | |
4596 | |
4597 str_arg_l = precision = p1 - (char_u *)str_arg; | |
4598 } | |
4599 } | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4600 # endif |
272 | 4601 break; |
4602 | |
4603 default: | |
4604 break; | |
4605 } | |
4606 break; | |
4607 | |
9894
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4608 case 'd': case 'u': |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4609 case 'b': case 'B': |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4610 case 'o': |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4611 case 'x': case 'X': |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4612 case 'p': |
272 | 4613 { |
9894
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4614 /* NOTE: the u, b, o, x, X and p conversion specifiers |
272 | 4615 * imply the value is unsigned; d implies a signed |
4616 * value */ | |
4617 | |
4618 /* 0 if numeric argument is zero (or if pointer is | |
4619 * NULL for 'p'), +1 if greater than zero (or nonzero | |
4620 * for unsigned arguments), -1 if negative (unsigned | |
4621 * argument is never negative) */ | |
4622 int arg_sign = 0; | |
4623 | |
4624 /* only defined for length modifier h, or for no | |
4625 * length modifiers */ | |
4626 int int_arg = 0; | |
4627 unsigned int uint_arg = 0; | |
4628 | |
4629 /* only defined for length modifier l */ | |
4630 long int long_arg = 0; | |
4631 unsigned long int ulong_arg = 0; | |
4632 | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4633 # ifdef FEAT_NUM64 |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4634 /* only defined for length modifier ll */ |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4635 varnumber_T llong_arg = 0; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4636 uvarnumber_T ullong_arg = 0; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4637 # endif |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4638 |
10015
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4639 /* only defined for b conversion */ |
9894
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4640 uvarnumber_T bin_arg = 0; |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4641 |
272 | 4642 /* pointer argument value -only defined for p |
4643 * conversion */ | |
4644 void *ptr_arg = NULL; | |
4645 | |
4646 if (fmt_spec == 'p') | |
4647 { | |
4648 length_modifier = '\0'; | |
449 | 4649 ptr_arg = |
4650 # if defined(FEAT_EVAL) | |
9892
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4651 tvs != NULL ? (void *)tv_str(tvs, &arg_idx, |
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
4652 NULL) : |
449 | 4653 # endif |
4654 va_arg(ap, void *); | |
272 | 4655 if (ptr_arg != NULL) |
4656 arg_sign = 1; | |
4657 } | |
9894
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4658 else if (fmt_spec == 'b' || fmt_spec == 'B') |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4659 { |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4660 bin_arg = |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4661 # if defined(FEAT_EVAL) |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4662 tvs != NULL ? |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4663 (uvarnumber_T)tv_nr(tvs, &arg_idx) : |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4664 # endif |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4665 va_arg(ap, uvarnumber_T); |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4666 if (bin_arg != 0) |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4667 arg_sign = 1; |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4668 } |
272 | 4669 else if (fmt_spec == 'd') |
4670 { | |
4671 /* signed */ | |
4672 switch (length_modifier) | |
4673 { | |
4674 case '\0': | |
4675 case 'h': | |
449 | 4676 /* char and short arguments are passed as int. */ |
4677 int_arg = | |
4678 # if defined(FEAT_EVAL) | |
482 | 4679 tvs != NULL ? tv_nr(tvs, &arg_idx) : |
449 | 4680 # endif |
4681 va_arg(ap, int); | |
272 | 4682 if (int_arg > 0) |
4683 arg_sign = 1; | |
4684 else if (int_arg < 0) | |
4685 arg_sign = -1; | |
4686 break; | |
4687 case 'l': | |
449 | 4688 long_arg = |
4689 # if defined(FEAT_EVAL) | |
482 | 4690 tvs != NULL ? tv_nr(tvs, &arg_idx) : |
449 | 4691 # endif |
4692 va_arg(ap, long int); | |
272 | 4693 if (long_arg > 0) |
4694 arg_sign = 1; | |
4695 else if (long_arg < 0) | |
4696 arg_sign = -1; | |
4697 break; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4698 # ifdef FEAT_NUM64 |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4699 case 'L': |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4700 llong_arg = |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4701 # if defined(FEAT_EVAL) |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4702 tvs != NULL ? tv_nr(tvs, &arg_idx) : |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4703 # endif |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4704 va_arg(ap, varnumber_T); |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4705 if (llong_arg > 0) |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4706 arg_sign = 1; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4707 else if (llong_arg < 0) |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4708 arg_sign = -1; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4709 break; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4710 # endif |
272 | 4711 } |
4712 } | |
4713 else | |
4714 { | |
4715 /* unsigned */ | |
4716 switch (length_modifier) | |
4717 { | |
4718 case '\0': | |
4719 case 'h': | |
449 | 4720 uint_arg = |
4721 # if defined(FEAT_EVAL) | |
1883 | 4722 tvs != NULL ? (unsigned) |
4723 tv_nr(tvs, &arg_idx) : | |
449 | 4724 # endif |
4725 va_arg(ap, unsigned int); | |
272 | 4726 if (uint_arg != 0) |
4727 arg_sign = 1; | |
4728 break; | |
4729 case 'l': | |
449 | 4730 ulong_arg = |
4731 # if defined(FEAT_EVAL) | |
1883 | 4732 tvs != NULL ? (unsigned long) |
4733 tv_nr(tvs, &arg_idx) : | |
449 | 4734 # endif |
4735 va_arg(ap, unsigned long int); | |
272 | 4736 if (ulong_arg != 0) |
4737 arg_sign = 1; | |
4738 break; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4739 # ifdef FEAT_NUM64 |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4740 case 'L': |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4741 ullong_arg = |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4742 # if defined(FEAT_EVAL) |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4743 tvs != NULL ? (uvarnumber_T) |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4744 tv_nr(tvs, &arg_idx) : |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4745 # endif |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4746 va_arg(ap, uvarnumber_T); |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4747 if (ullong_arg != 0) |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4748 arg_sign = 1; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4749 break; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4750 # endif |
272 | 4751 } |
4752 } | |
4753 | |
4754 str_arg = tmp; | |
4755 str_arg_l = 0; | |
4756 | |
4757 /* NOTE: | |
4758 * For d, i, u, o, x, and X conversions, if precision is | |
4759 * specified, the '0' flag should be ignored. This is so | |
4760 * with Solaris 2.6, Digital UNIX 4.0, HPUX 10, Linux, | |
4761 * FreeBSD, NetBSD; but not with Perl. | |
4762 */ | |
4763 if (precision_specified) | |
4764 zero_padding = 0; | |
4765 if (fmt_spec == 'd') | |
4766 { | |
4767 if (force_sign && arg_sign >= 0) | |
4768 tmp[str_arg_l++] = space_for_positive ? ' ' : '+'; | |
4769 /* leave negative numbers for sprintf to handle, to | |
4770 * avoid handling tricky cases like (short int)-32768 */ | |
4771 } | |
4772 else if (alternate_form) | |
4773 { | |
4774 if (arg_sign != 0 | |
9894
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4775 && (fmt_spec == 'b' || fmt_spec == 'B' |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4776 || fmt_spec == 'x' || fmt_spec == 'X') ) |
272 | 4777 { |
4778 tmp[str_arg_l++] = '0'; | |
4779 tmp[str_arg_l++] = fmt_spec; | |
4780 } | |
4781 /* alternate form should have no effect for p | |
4782 * conversion, but ... */ | |
4783 } | |
4784 | |
4785 zero_padding_insertion_ind = str_arg_l; | |
4786 if (!precision_specified) | |
4787 precision = 1; /* default precision is 1 */ | |
4788 if (precision == 0 && arg_sign == 0) | |
4789 { | |
4790 /* When zero value is formatted with an explicit | |
4791 * precision 0, the resulting formatted string is | |
9894
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4792 * empty (d, i, u, b, B, o, x, X, p). */ |
272 | 4793 } |
4794 else | |
4795 { | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4796 char f[6]; |
272 | 4797 int f_l = 0; |
4798 | |
4799 /* construct a simple format string for sprintf */ | |
4800 f[f_l++] = '%'; | |
4801 if (!length_modifier) | |
4802 ; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4803 else if (length_modifier == 'L') |
272 | 4804 { |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4805 # ifdef FEAT_NUM64 |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4806 # ifdef WIN3264 |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4807 f[f_l++] = 'I'; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4808 f[f_l++] = '6'; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4809 f[f_l++] = '4'; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4810 # else |
272 | 4811 f[f_l++] = 'l'; |
4812 f[f_l++] = 'l'; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4813 # endif |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4814 # else |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4815 f[f_l++] = 'l'; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4816 # endif |
272 | 4817 } |
4818 else | |
4819 f[f_l++] = length_modifier; | |
4820 f[f_l++] = fmt_spec; | |
4821 f[f_l++] = '\0'; | |
4822 | |
4823 if (fmt_spec == 'p') | |
4824 str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg); | |
9894
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4825 else if (fmt_spec == 'b' || fmt_spec == 'B') |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4826 { |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4827 char b[8 * sizeof(uvarnumber_T)]; |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4828 size_t b_l = 0; |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4829 uvarnumber_T bn = bin_arg; |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4830 |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4831 do |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4832 { |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4833 b[sizeof(b) - ++b_l] = '0' + (bn & 0x1); |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4834 bn >>= 1; |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4835 } |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4836 while (bn != 0); |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4837 |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4838 memcpy(tmp + str_arg_l, b + sizeof(b) - b_l, b_l); |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4839 str_arg_l += b_l; |
b01afb4e8f66
commit https://github.com/vim/vim/commit/91984b9034d3b698459622be277d963e0c6df60e
Christian Brabandt <cb@256bit.org>
parents:
9892
diff
changeset
|
4840 } |
272 | 4841 else if (fmt_spec == 'd') |
4842 { | |
4843 /* signed */ | |
4844 switch (length_modifier) | |
4845 { | |
4846 case '\0': | |
4847 case 'h': str_arg_l += sprintf( | |
4848 tmp + str_arg_l, f, int_arg); | |
4849 break; | |
4850 case 'l': str_arg_l += sprintf( | |
4851 tmp + str_arg_l, f, long_arg); | |
4852 break; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4853 # ifdef FEAT_NUM64 |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4854 case 'L': str_arg_l += sprintf( |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4855 tmp + str_arg_l, f, llong_arg); |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4856 break; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4857 # endif |
272 | 4858 } |
4859 } | |
4860 else | |
4861 { | |
4862 /* unsigned */ | |
4863 switch (length_modifier) | |
4864 { | |
4865 case '\0': | |
4866 case 'h': str_arg_l += sprintf( | |
4867 tmp + str_arg_l, f, uint_arg); | |
4868 break; | |
4869 case 'l': str_arg_l += sprintf( | |
4870 tmp + str_arg_l, f, ulong_arg); | |
4871 break; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4872 # ifdef FEAT_NUM64 |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4873 case 'L': str_arg_l += sprintf( |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4874 tmp + str_arg_l, f, ullong_arg); |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4875 break; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
4876 # endif |
272 | 4877 } |
4878 } | |
4879 | |
4880 /* include the optional minus sign and possible | |
4881 * "0x" in the region before the zero padding | |
4882 * insertion point */ | |
4883 if (zero_padding_insertion_ind < str_arg_l | |
4884 && tmp[zero_padding_insertion_ind] == '-') | |
4885 zero_padding_insertion_ind++; | |
4886 if (zero_padding_insertion_ind + 1 < str_arg_l | |
4887 && tmp[zero_padding_insertion_ind] == '0' | |
4888 && (tmp[zero_padding_insertion_ind + 1] == 'x' | |
4889 || tmp[zero_padding_insertion_ind + 1] == 'X')) | |
4890 zero_padding_insertion_ind += 2; | |
4891 } | |
4892 | |
4893 { | |
4894 size_t num_of_digits = str_arg_l | |
4895 - zero_padding_insertion_ind; | |
4896 | |
4897 if (alternate_form && fmt_spec == 'o' | |
4898 /* unless zero is already the first | |
4899 * character */ | |
4900 && !(zero_padding_insertion_ind < str_arg_l | |
4901 && tmp[zero_padding_insertion_ind] == '0')) | |
4902 { | |
4903 /* assure leading zero for alternate-form | |
4904 * octal numbers */ | |
4905 if (!precision_specified | |
4906 || precision < num_of_digits + 1) | |
4907 { | |
4908 /* precision is increased to force the | |
4909 * first character to be zero, except if a | |
4910 * zero value is formatted with an | |
4911 * explicit precision of zero */ | |
4912 precision = num_of_digits + 1; | |
4913 precision_specified = 1; | |
4914 } | |
4915 } | |
4916 /* zero padding to specified precision? */ | |
4917 if (num_of_digits < precision) | |
4918 number_of_zeros_to_pad = precision - num_of_digits; | |
4919 } | |
4920 /* zero padding to specified minimal field width? */ | |
4921 if (!justify_left && zero_padding) | |
4922 { | |
835 | 4923 int n = (int)(min_field_width - (str_arg_l |
4924 + number_of_zeros_to_pad)); | |
272 | 4925 if (n > 0) |
4926 number_of_zeros_to_pad += n; | |
4927 } | |
4928 break; | |
4929 } | |
4930 | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4931 # ifdef FEAT_FLOAT |
1619 | 4932 case 'f': |
10038
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
4933 case 'F': |
1619 | 4934 case 'e': |
4935 case 'E': | |
4936 case 'g': | |
4937 case 'G': | |
4938 { | |
4939 /* Floating point. */ | |
4940 double f; | |
4941 double abs_f; | |
4942 char format[40]; | |
4943 int l; | |
4944 int remove_trailing_zeroes = FALSE; | |
4945 | |
4946 f = | |
4947 # if defined(FEAT_EVAL) | |
4948 tvs != NULL ? tv_float(tvs, &arg_idx) : | |
4949 # endif | |
4950 va_arg(ap, double); | |
4951 abs_f = f < 0 ? -f : f; | |
4952 | |
4953 if (fmt_spec == 'g' || fmt_spec == 'G') | |
4954 { | |
4955 /* Would be nice to use %g directly, but it prints | |
4956 * "1.0" as "1", we don't want that. */ | |
4957 if ((abs_f >= 0.001 && abs_f < 10000000.0) | |
4958 || abs_f == 0.0) | |
10038
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
4959 fmt_spec = ASCII_ISUPPER(fmt_spec) ? 'F' : 'f'; |
1619 | 4960 else |
4961 fmt_spec = fmt_spec == 'g' ? 'e' : 'E'; | |
4962 remove_trailing_zeroes = TRUE; | |
4963 } | |
4964 | |
10038
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
4965 if ((fmt_spec == 'f' || fmt_spec == 'F') && |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4966 # ifdef VAX |
1783 | 4967 abs_f > 1.0e38 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4968 # else |
1783 | 4969 abs_f > 1.0e307 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
4970 # endif |
1783 | 4971 ) |
1619 | 4972 { |
4973 /* Avoid a buffer overflow */ | |
10015
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4974 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec, |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4975 force_sign, space_for_positive)); |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4976 str_arg_l = STRLEN(tmp); |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4977 zero_padding = 0; |
1619 | 4978 } |
4979 else | |
4980 { | |
10015
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4981 if (isnan(f)) |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4982 { |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4983 /* Not a number: nan or NAN */ |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4984 STRCPY(tmp, ASCII_ISUPPER(fmt_spec) ? "NAN" |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4985 : "nan"); |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4986 str_arg_l = 3; |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4987 zero_padding = 0; |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4988 } |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4989 else if (isinf(f)) |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4990 { |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4991 STRCPY(tmp, infinity_str(f > 0.0, fmt_spec, |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4992 force_sign, space_for_positive)); |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4993 str_arg_l = STRLEN(tmp); |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4994 zero_padding = 0; |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4995 } |
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4996 else |
13188
a49a5419a83f
patch 8.0.1468: illegal memory access in del_bytes()
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
4997 { |
10015
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
4998 /* Regular float number */ |
10038
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
4999 format[0] = '%'; |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5000 l = 1; |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5001 if (force_sign) |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5002 format[l++] = space_for_positive ? ' ' : '+'; |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5003 if (precision_specified) |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5004 { |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5005 size_t max_prec = TMP_LEN - 10; |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5006 |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5007 /* Make sure we don't get more digits than we |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5008 * have room for. */ |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5009 if ((fmt_spec == 'f' || fmt_spec == 'F') |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5010 && abs_f > 1.0) |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5011 max_prec -= (size_t)log10(abs_f); |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5012 if (precision > max_prec) |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5013 precision = max_prec; |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5014 l += sprintf(format + l, ".%d", (int)precision); |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5015 } |
10040
48f70e0c696a
commit https://github.com/vim/vim/commit/965ed14973fd3f1b2aace7bae4d4722b71ca04f9
Christian Brabandt <cb@256bit.org>
parents:
10038
diff
changeset
|
5016 format[l] = fmt_spec == 'F' ? 'f' : fmt_spec; |
10038
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5017 format[l + 1] = NUL; |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5018 |
10015
5ac2dd61ca8f
commit https://github.com/vim/vim/commit/e999782e369999539a1783a7ebe4eadcc6da28a8
Christian Brabandt <cb@256bit.org>
parents:
9988
diff
changeset
|
5019 str_arg_l = sprintf(tmp, format, f); |
13188
a49a5419a83f
patch 8.0.1468: illegal memory access in del_bytes()
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
5020 } |
9986
9bef7b5d02cb
commit https://github.com/vim/vim/commit/9992237a3e791fbc0c1ebf743ece1b75e1488410
Christian Brabandt <cb@256bit.org>
parents:
9980
diff
changeset
|
5021 |
1619 | 5022 if (remove_trailing_zeroes) |
5023 { | |
5024 int i; | |
1757 | 5025 char *tp; |
1619 | 5026 |
5027 /* Using %g or %G: remove superfluous zeroes. */ | |
10038
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5028 if (fmt_spec == 'f' || fmt_spec == 'F') |
1757 | 5029 tp = tmp + str_arg_l - 1; |
1619 | 5030 else |
5031 { | |
1757 | 5032 tp = (char *)vim_strchr((char_u *)tmp, |
1619 | 5033 fmt_spec == 'e' ? 'e' : 'E'); |
1757 | 5034 if (tp != NULL) |
1619 | 5035 { |
5036 /* Remove superfluous '+' and leading | |
5037 * zeroes from the exponent. */ | |
1757 | 5038 if (tp[1] == '+') |
1619 | 5039 { |
5040 /* Change "1.0e+07" to "1.0e07" */ | |
1757 | 5041 STRMOVE(tp + 1, tp + 2); |
1619 | 5042 --str_arg_l; |
5043 } | |
1757 | 5044 i = (tp[1] == '-') ? 2 : 1; |
5045 while (tp[i] == '0') | |
1619 | 5046 { |
5047 /* Change "1.0e07" to "1.0e7" */ | |
1757 | 5048 STRMOVE(tp + i, tp + i + 1); |
1619 | 5049 --str_arg_l; |
5050 } | |
1757 | 5051 --tp; |
1619 | 5052 } |
5053 } | |
5054 | |
1757 | 5055 if (tp != NULL && !precision_specified) |
1619 | 5056 /* Remove trailing zeroes, but keep the one |
5057 * just after a dot. */ | |
1757 | 5058 while (tp > tmp + 2 && *tp == '0' |
5059 && tp[-1] != '.') | |
1619 | 5060 { |
1757 | 5061 STRMOVE(tp, tp + 1); |
5062 --tp; | |
1619 | 5063 --str_arg_l; |
5064 } | |
5065 } | |
5066 else | |
5067 { | |
1757 | 5068 char *tp; |
1619 | 5069 |
5070 /* Be consistent: some printf("%e") use 1.0e+12 | |
5071 * and some 1.0e+012. Remove one zero in the last | |
5072 * case. */ | |
1757 | 5073 tp = (char *)vim_strchr((char_u *)tmp, |
1619 | 5074 fmt_spec == 'e' ? 'e' : 'E'); |
1757 | 5075 if (tp != NULL && (tp[1] == '+' || tp[1] == '-') |
5076 && tp[2] == '0' | |
5077 && vim_isdigit(tp[3]) | |
5078 && vim_isdigit(tp[4])) | |
1619 | 5079 { |
1757 | 5080 STRMOVE(tp + 2, tp + 3); |
1619 | 5081 --str_arg_l; |
5082 } | |
5083 } | |
5084 } | |
10038
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5085 if (zero_padding && min_field_width > str_arg_l |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5086 && (tmp[0] == '-' || force_sign)) |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5087 { |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5088 /* padding 0's should be inserted after the sign */ |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5089 number_of_zeros_to_pad = min_field_width - str_arg_l; |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5090 zero_padding_insertion_ind = 1; |
7cf4e210cf3c
commit https://github.com/vim/vim/commit/04186095346daa60e82e981dad114de2b641d672
Christian Brabandt <cb@256bit.org>
parents:
10036
diff
changeset
|
5091 } |
1619 | 5092 str_arg = tmp; |
5093 break; | |
5094 } | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
6949
diff
changeset
|
5095 # endif |
1619 | 5096 |
272 | 5097 default: |
5098 /* unrecognized conversion specifier, keep format string | |
5099 * as-is */ | |
5100 zero_padding = 0; /* turn zero padding off for non-numeric | |
1189 | 5101 conversion */ |
272 | 5102 justify_left = 1; |
856 | 5103 min_field_width = 0; /* reset flags */ |
272 | 5104 |
5105 /* discard the unrecognized conversion, just keep * | |
856 | 5106 * the unrecognized conversion character */ |
272 | 5107 str_arg = p; |
5108 str_arg_l = 0; | |
5109 if (*p != NUL) | |
5110 str_arg_l++; /* include invalid conversion specifier | |
5111 unchanged if not at end-of-string */ | |
5112 break; | |
5113 } | |
5114 | |
5115 if (*p != NUL) | |
5116 p++; /* step over the just processed conversion specifier */ | |
5117 | |
5118 /* insert padding to the left as requested by min_field_width; | |
5119 * this does not include the zero padding in case of numerical | |
5120 * conversions*/ | |
5121 if (!justify_left) | |
5122 { | |
5123 /* left padding with blank or zero */ | |
835 | 5124 int pn = (int)(min_field_width - (str_arg_l + number_of_zeros_to_pad)); |
275 | 5125 |
5126 if (pn > 0) | |
272 | 5127 { |
5128 if (str_l < str_m) | |
5129 { | |
5130 size_t avail = str_m - str_l; | |
5131 | |
5132 vim_memset(str + str_l, zero_padding ? '0' : ' ', | |
1883 | 5133 (size_t)pn > avail ? avail |
5134 : (size_t)pn); | |
272 | 5135 } |
275 | 5136 str_l += pn; |
272 | 5137 } |
5138 } | |
5139 | |
5140 /* zero padding as requested by the precision or by the minimal | |
5141 * field width for numeric conversions required? */ | |
330 | 5142 if (number_of_zeros_to_pad == 0) |
272 | 5143 { |
5144 /* will not copy first part of numeric right now, * | |
5145 * force it to be copied later in its entirety */ | |
5146 zero_padding_insertion_ind = 0; | |
5147 } | |
5148 else | |
5149 { | |
5150 /* insert first part of numerics (sign or '0x') before zero | |
5151 * padding */ | |
835 | 5152 int zn = (int)zero_padding_insertion_ind; |
275 | 5153 |
5154 if (zn > 0) | |
272 | 5155 { |
5156 if (str_l < str_m) | |
5157 { | |
5158 size_t avail = str_m - str_l; | |
5159 | |
5160 mch_memmove(str + str_l, str_arg, | |
1883 | 5161 (size_t)zn > avail ? avail |
5162 : (size_t)zn); | |
272 | 5163 } |
275 | 5164 str_l += zn; |
272 | 5165 } |
5166 | |
5167 /* insert zero padding as requested by the precision or min | |
5168 * field width */ | |
835 | 5169 zn = (int)number_of_zeros_to_pad; |
275 | 5170 if (zn > 0) |
272 | 5171 { |
5172 if (str_l < str_m) | |
5173 { | |
11937
c893d6c00497
patch 8.0.0848: using multiple ch_log functions is clumsy
Christian Brabandt <cb@256bit.org>
parents:
11653
diff
changeset
|
5174 size_t avail = str_m - str_l; |
272 | 5175 |
275 | 5176 vim_memset(str + str_l, '0', |
1883 | 5177 (size_t)zn > avail ? avail |
5178 : (size_t)zn); | |
272 | 5179 } |
275 | 5180 str_l += zn; |
272 | 5181 } |
5182 } | |
5183 | |
5184 /* insert formatted string | |
5185 * (or as-is conversion specifier for unknown conversions) */ | |
5186 { | |
835 | 5187 int sn = (int)(str_arg_l - zero_padding_insertion_ind); |
275 | 5188 |
5189 if (sn > 0) | |
272 | 5190 { |
5191 if (str_l < str_m) | |
5192 { | |
5193 size_t avail = str_m - str_l; | |
5194 | |
5195 mch_memmove(str + str_l, | |
5196 str_arg + zero_padding_insertion_ind, | |
1883 | 5197 (size_t)sn > avail ? avail : (size_t)sn); |
272 | 5198 } |
275 | 5199 str_l += sn; |
272 | 5200 } |
5201 } | |
5202 | |
5203 /* insert right padding */ | |
5204 if (justify_left) | |
5205 { | |
5206 /* right blank padding to the field width */ | |
1619 | 5207 int pn = (int)(min_field_width |
5208 - (str_arg_l + number_of_zeros_to_pad)); | |
275 | 5209 |
5210 if (pn > 0) | |
272 | 5211 { |
5212 if (str_l < str_m) | |
5213 { | |
5214 size_t avail = str_m - str_l; | |
5215 | |
275 | 5216 vim_memset(str + str_l, ' ', |
1883 | 5217 (size_t)pn > avail ? avail |
5218 : (size_t)pn); | |
272 | 5219 } |
275 | 5220 str_l += pn; |
272 | 5221 } |
5222 } | |
9892
41c5d59e7e10
commit https://github.com/vim/vim/commit/e5a8f35b4286135f3469f3b00a6c2220553d9658
Christian Brabandt <cb@256bit.org>
parents:
9698
diff
changeset
|
5223 vim_free(tofree); |
272 | 5224 } |
5225 } | |
5226 | |
5227 if (str_m > 0) | |
5228 { | |
437 | 5229 /* make sure the string is nul-terminated even at the expense of |
272 | 5230 * overwriting the last character (shouldn't happen, but just in case) |
5231 * */ | |
5232 str[str_l <= str_m - 1 ? str_l : str_m - 1] = '\0'; | |
5233 } | |
5234 | |
482 | 5235 if (tvs != NULL && tvs[arg_idx - 1].v_type != VAR_UNKNOWN) |
449 | 5236 EMSG(_("E767: Too many arguments to printf()")); |
5237 | |
437 | 5238 /* Return the number of characters formatted (excluding trailing nul |
272 | 5239 * character), that is, the number of characters that would have been |
5240 * written to the buffer if it were large enough. */ | |
5241 return (int)str_l; | |
5242 } | |
5243 | |
5244 #endif /* PROTO */ |