Mercurial > vim
annotate src/ex_getln.c @ 7825:7898da204b98 v7.4.1209
commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 30 18:13:55 2016 +0100
patch 7.4.1209
Problem: Can't build with Athena.
Solution: Fix function declarations.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 30 Jan 2016 18:15:04 +0100 |
parents | f86adafb28d4 |
children | 10f17a228661 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * ex_getln.c: Functions for entering and editing an Ex command line. | |
12 */ | |
13 | |
14 #include "vim.h" | |
15 | |
16 /* | |
17 * Variables shared between getcmdline(), redrawcmdline() and others. | |
18 * These need to be saved when using CTRL-R |, that's why they are in a | |
19 * structure. | |
20 */ | |
21 struct cmdline_info | |
22 { | |
23 char_u *cmdbuff; /* pointer to command line buffer */ | |
24 int cmdbufflen; /* length of cmdbuff */ | |
25 int cmdlen; /* number of chars in command line */ | |
26 int cmdpos; /* current cursor position */ | |
27 int cmdspos; /* cursor column on screen */ | |
3503 | 28 int cmdfirstc; /* ':', '/', '?', '=', '>' or NUL */ |
7 | 29 int cmdindent; /* number of spaces before cmdline */ |
30 char_u *cmdprompt; /* message in front of cmdline */ | |
31 int cmdattr; /* attributes for prompt */ | |
32 int overstrike; /* Typing mode on the command line. Shared by | |
33 getcmdline() and put_on_cmdline(). */ | |
1718 | 34 expand_T *xpc; /* struct being used for expansion, xp_pattern |
35 may point into cmdbuff */ | |
531 | 36 int xp_context; /* type of expansion */ |
37 # ifdef FEAT_EVAL | |
38 char_u *xp_arg; /* user-defined expansion arg */ | |
1039 | 39 int input_fn; /* when TRUE Invoked for input() function */ |
531 | 40 # endif |
7 | 41 }; |
42 | |
1718 | 43 /* The current cmdline_info. It is initialized in getcmdline() and after that |
44 * used by other functions. When invoking getcmdline() recursively it needs | |
45 * to be saved with save_cmdline() and restored with restore_cmdline(). | |
46 * TODO: make it local to getcmdline() and pass it around. */ | |
47 static struct cmdline_info ccline; | |
7 | 48 |
49 static int cmd_showtail; /* Only show path tail in lists ? */ | |
50 | |
51 #ifdef FEAT_EVAL | |
52 static int new_cmdpos; /* position set by set_cmdline_pos() */ | |
53 #endif | |
54 | |
55 #ifdef FEAT_CMDHIST | |
56 typedef struct hist_entry | |
57 { | |
58 int hisnum; /* identifying number */ | |
4258 | 59 int viminfo; /* when TRUE hisstr comes from viminfo */ |
7 | 60 char_u *hisstr; /* actual entry, separator char after the NUL */ |
61 } histentry_T; | |
62 | |
63 static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL}; | |
64 static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */ | |
65 static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0}; | |
66 /* identifying (unique) number of newest history entry */ | |
67 static int hislen = 0; /* actual length of history tables */ | |
68 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
69 static int hist_char2type(int c); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
70 |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
71 static int in_history(int, char_u *, int, int, int); |
7 | 72 # ifdef FEAT_EVAL |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
73 static int calc_hist_idx(int histype, int num); |
7 | 74 # endif |
75 #endif | |
76 | |
77 #ifdef FEAT_RIGHTLEFT | |
78 static int cmd_hkmap = 0; /* Hebrew mapping during command line */ | |
79 #endif | |
80 | |
81 #ifdef FEAT_FKMAP | |
82 static int cmd_fkmap = 0; /* Farsi mapping during command line */ | |
83 #endif | |
84 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
85 static int cmdline_charsize(int idx); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
86 static void set_cmdspos(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
87 static void set_cmdspos_cursor(void); |
7 | 88 #ifdef FEAT_MBYTE |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
89 static void correct_cmdspos(int idx, int cells); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
90 #endif |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
91 static void alloc_cmdbuff(int len); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
92 static int realloc_cmdbuff(int len); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
93 static void draw_cmdline(int start, int len); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
94 static void save_cmdline(struct cmdline_info *ccp); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
95 static void restore_cmdline(struct cmdline_info *ccp); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
96 static int cmdline_paste(int regname, int literally, int remcr); |
7 | 97 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
98 static void redrawcmd_preedit(void); |
7 | 99 #endif |
100 #ifdef FEAT_WILDMENU | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
101 static void cmdline_del(int from); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
102 #endif |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
103 static void redrawcmdprompt(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
104 static void cursorcmd(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
105 static int ccheck_abbr(int); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
106 static int nextwild(expand_T *xp, int type, int options, int escape); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
107 static void escape_fname(char_u **pp); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
108 static int showmatches(expand_T *xp, int wildmenu); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
109 static void set_expand_context(expand_T *xp); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
110 static int ExpandFromContext(expand_T *xp, char_u *, int *, char_u ***, int); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
111 static int expand_showtail(expand_T *xp); |
7 | 112 #ifdef FEAT_CMDL_COMPL |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
113 static int expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int flagsarg); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
114 static int ExpandRTDir(char_u *pat, int *num_file, char_u ***file, char *dirname[]); |
3503 | 115 # ifdef FEAT_CMDHIST |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
116 static char_u *get_history_arg(expand_T *xp, int idx); |
3503 | 117 # endif |
7 | 118 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
119 static int ExpandUserDefined(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
120 static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file); |
7 | 121 # endif |
122 #endif | |
4265 | 123 #ifdef FEAT_CMDHIST |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
124 static void clear_hist_entry(histentry_T *hisptr); |
4265 | 125 #endif |
7 | 126 |
127 #ifdef FEAT_CMDWIN | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
128 static int ex_window(void); |
7 | 129 #endif |
130 | |
3164 | 131 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
132 static int | |
133 #ifdef __BORLANDC__ | |
134 _RTLENTRYF | |
135 #endif | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
136 sort_func_compare(const void *s1, const void *s2); |
3164 | 137 #endif |
138 | |
7 | 139 /* |
140 * getcmdline() - accept a command line starting with firstc. | |
141 * | |
142 * firstc == ':' get ":" command line. | |
143 * firstc == '/' or '?' get search pattern | |
144 * firstc == '=' get expression | |
145 * firstc == '@' get text for input() function | |
146 * firstc == '>' get text for debug mode | |
147 * firstc == NUL get text for :insert command | |
148 * firstc == -1 like NUL, and break on CTRL-C | |
149 * | |
150 * The line is collected in ccline.cmdbuff, which is reallocated to fit the | |
151 * command line. | |
152 * | |
153 * Careful: getcmdline() can be called recursively! | |
154 * | |
155 * Return pointer to allocated string if there is a commandline, NULL | |
156 * otherwise. | |
157 */ | |
158 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
159 getcmdline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
160 int firstc, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
161 long count UNUSED, /* only used for incremental search */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
162 int indent) /* indent for inside conditionals */ |
7 | 163 { |
164 int c; | |
165 int i; | |
166 int j; | |
167 int gotesc = FALSE; /* TRUE when <ESC> just typed */ | |
168 int do_abbr; /* when TRUE check for abbr. */ | |
169 #ifdef FEAT_CMDHIST | |
170 char_u *lookfor = NULL; /* string to match */ | |
171 int hiscnt; /* current history line in use */ | |
172 int histype; /* history type to be used */ | |
173 #endif | |
174 #ifdef FEAT_SEARCH_EXTRA | |
175 pos_T old_cursor; | |
176 colnr_T old_curswant; | |
177 colnr_T old_leftcol; | |
178 linenr_T old_topline; | |
179 # ifdef FEAT_DIFF | |
180 int old_topfill; | |
181 # endif | |
182 linenr_T old_botline; | |
183 int did_incsearch = FALSE; | |
184 int incsearch_postponed = FALSE; | |
185 #endif | |
186 int did_wild_list = FALSE; /* did wild_list() recently */ | |
187 int wim_index = 0; /* index in wim_flags[] */ | |
188 int res; | |
189 int save_msg_scroll = msg_scroll; | |
190 int save_State = State; /* remember State when called */ | |
191 int some_key_typed = FALSE; /* one of the keys was typed */ | |
192 #ifdef FEAT_MOUSE | |
193 /* mouse drag and release events are ignored, unless they are | |
194 * preceded with a mouse down event */ | |
195 int ignore_drag_release = TRUE; | |
196 #endif | |
197 #ifdef FEAT_EVAL | |
198 int break_ctrl_c = FALSE; | |
199 #endif | |
200 expand_T xpc; | |
201 long *b_im_ptr = NULL; | |
195 | 202 #if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA) |
203 /* Everything that may work recursively should save and restore the | |
204 * current command line in save_ccline. That includes update_screen(), a | |
205 * custom status line may invoke ":normal". */ | |
206 struct cmdline_info save_ccline; | |
207 #endif | |
7 | 208 |
209 #ifdef FEAT_SNIFF | |
210 want_sniff_request = 0; | |
211 #endif | |
212 #ifdef FEAT_EVAL | |
213 if (firstc == -1) | |
214 { | |
215 firstc = NUL; | |
216 break_ctrl_c = TRUE; | |
217 } | |
218 #endif | |
219 #ifdef FEAT_RIGHTLEFT | |
220 /* start without Hebrew mapping for a command line */ | |
221 if (firstc == ':' || firstc == '=' || firstc == '>') | |
222 cmd_hkmap = 0; | |
223 #endif | |
224 | |
225 ccline.overstrike = FALSE; /* always start in insert mode */ | |
226 #ifdef FEAT_SEARCH_EXTRA | |
227 old_cursor = curwin->w_cursor; /* needs to be restored later */ | |
228 old_curswant = curwin->w_curswant; | |
229 old_leftcol = curwin->w_leftcol; | |
230 old_topline = curwin->w_topline; | |
231 # ifdef FEAT_DIFF | |
232 old_topfill = curwin->w_topfill; | |
233 # endif | |
234 old_botline = curwin->w_botline; | |
235 #endif | |
236 | |
237 /* | |
238 * set some variables for redrawcmd() | |
239 */ | |
240 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc); | |
164 | 241 ccline.cmdindent = (firstc > 0 ? indent : 0); |
242 | |
243 /* alloc initial ccline.cmdbuff */ | |
244 alloc_cmdbuff(exmode_active ? 250 : indent + 1); | |
7 | 245 if (ccline.cmdbuff == NULL) |
246 return NULL; /* out of memory */ | |
247 ccline.cmdlen = ccline.cmdpos = 0; | |
248 ccline.cmdbuff[0] = NUL; | |
249 | |
164 | 250 /* autoindent for :insert and :append */ |
251 if (firstc <= 0) | |
252 { | |
6929 | 253 vim_memset(ccline.cmdbuff, ' ', indent); |
164 | 254 ccline.cmdbuff[indent] = NUL; |
255 ccline.cmdpos = indent; | |
256 ccline.cmdspos = indent; | |
257 ccline.cmdlen = indent; | |
258 } | |
259 | |
7 | 260 ExpandInit(&xpc); |
1718 | 261 ccline.xpc = &xpc; |
7 | 262 |
263 #ifdef FEAT_RIGHTLEFT | |
264 if (curwin->w_p_rl && *curwin->w_p_rlc == 's' | |
265 && (firstc == '/' || firstc == '?')) | |
266 cmdmsg_rl = TRUE; | |
267 else | |
268 cmdmsg_rl = FALSE; | |
269 #endif | |
270 | |
271 redir_off = TRUE; /* don't redirect the typed command */ | |
272 if (!cmd_silent) | |
273 { | |
274 i = msg_scrolled; | |
275 msg_scrolled = 0; /* avoid wait_return message */ | |
276 gotocmdline(TRUE); | |
277 msg_scrolled += i; | |
278 redrawcmdprompt(); /* draw prompt or indent */ | |
279 set_cmdspos(); | |
280 } | |
281 xpc.xp_context = EXPAND_NOTHING; | |
282 xpc.xp_backslash = XP_BS_NONE; | |
632 | 283 #ifndef BACKSLASH_IN_FILENAME |
284 xpc.xp_shell = FALSE; | |
285 #endif | |
7 | 286 |
531 | 287 #if defined(FEAT_EVAL) |
288 if (ccline.input_fn) | |
289 { | |
290 xpc.xp_context = ccline.xp_context; | |
291 xpc.xp_pattern = ccline.cmdbuff; | |
1322 | 292 # if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL) |
531 | 293 xpc.xp_arg = ccline.xp_arg; |
1322 | 294 # endif |
531 | 295 } |
296 #endif | |
297 | |
7 | 298 /* |
299 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when | |
300 * doing ":@0" when register 0 doesn't contain a CR. | |
301 */ | |
302 msg_scroll = FALSE; | |
303 | |
304 State = CMDLINE; | |
305 | |
306 if (firstc == '/' || firstc == '?' || firstc == '@') | |
307 { | |
308 /* Use ":lmap" mappings for search pattern and input(). */ | |
309 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT) | |
310 b_im_ptr = &curbuf->b_p_iminsert; | |
311 else | |
312 b_im_ptr = &curbuf->b_p_imsearch; | |
313 if (*b_im_ptr == B_IMODE_LMAP) | |
314 State |= LANGMAP; | |
315 #ifdef USE_IM_CONTROL | |
316 im_set_active(*b_im_ptr == B_IMODE_IM); | |
317 #endif | |
318 } | |
319 #ifdef USE_IM_CONTROL | |
320 else if (p_imcmdline) | |
321 im_set_active(TRUE); | |
322 #endif | |
323 | |
324 #ifdef FEAT_MOUSE | |
325 setmouse(); | |
326 #endif | |
327 #ifdef CURSOR_SHAPE | |
328 ui_cursor_shape(); /* may show different cursor shape */ | |
329 #endif | |
330 | |
571 | 331 /* When inside an autocommand for writing "exiting" may be set and |
332 * terminal mode set to cooked. Need to set raw mode here then. */ | |
333 settmode(TMODE_RAW); | |
334 | |
7 | 335 #ifdef FEAT_CMDHIST |
336 init_history(); | |
337 hiscnt = hislen; /* set hiscnt to impossible history value */ | |
338 histype = hist_char2type(firstc); | |
339 #endif | |
340 | |
341 #ifdef FEAT_DIGRAPHS | |
1868 | 342 do_digraph(-1); /* init digraph typeahead */ |
7 | 343 #endif |
344 | |
5993 | 345 /* If something above caused an error, reset the flags, we do want to type |
346 * and execute commands. Display may be messed up a bit. */ | |
347 if (did_emsg) | |
348 redrawcmd(); | |
349 did_emsg = FALSE; | |
350 got_int = FALSE; | |
351 | |
7 | 352 /* |
353 * Collect the command string, handling editing keys. | |
354 */ | |
355 for (;;) | |
356 { | |
972 | 357 redir_off = TRUE; /* Don't redirect the typed command. |
358 Repeated, because a ":redir" inside | |
359 completion may switch it on. */ | |
7 | 360 #ifdef USE_ON_FLY_SCROLL |
361 dont_scroll = FALSE; /* allow scrolling here */ | |
362 #endif | |
363 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */ | |
364 | |
365 cursorcmd(); /* set the cursor on the right spot */ | |
1472 | 366 |
367 /* Get a character. Ignore K_IGNORE, it should not do anything, such | |
368 * as stop completion. */ | |
369 do | |
370 { | |
371 c = safe_vgetc(); | |
372 } while (c == K_IGNORE); | |
373 | |
7 | 374 if (KeyTyped) |
375 { | |
376 some_key_typed = TRUE; | |
377 #ifdef FEAT_RIGHTLEFT | |
378 if (cmd_hkmap) | |
379 c = hkmap(c); | |
380 # ifdef FEAT_FKMAP | |
381 if (cmd_fkmap) | |
382 c = cmdl_fkmap(c); | |
383 # endif | |
384 if (cmdmsg_rl && !KeyStuffed) | |
385 { | |
386 /* Invert horizontal movements and operations. Only when | |
387 * typed by the user directly, not when the result of a | |
388 * mapping. */ | |
389 switch (c) | |
390 { | |
391 case K_RIGHT: c = K_LEFT; break; | |
392 case K_S_RIGHT: c = K_S_LEFT; break; | |
393 case K_C_RIGHT: c = K_C_LEFT; break; | |
394 case K_LEFT: c = K_RIGHT; break; | |
395 case K_S_LEFT: c = K_S_RIGHT; break; | |
396 case K_C_LEFT: c = K_C_RIGHT; break; | |
397 } | |
398 } | |
399 #endif | |
400 } | |
401 | |
402 /* | |
403 * Ignore got_int when CTRL-C was typed here. | |
404 * Don't ignore it in :global, we really need to break then, e.g., for | |
405 * ":g/pat/normal /pat" (without the <CR>). | |
406 * Don't ignore it for the input() function. | |
407 */ | |
408 if ((c == Ctrl_C | |
409 #ifdef UNIX | |
410 || c == intr_char | |
411 #endif | |
412 ) | |
413 #if defined(FEAT_EVAL) || defined(FEAT_CRYPT) | |
414 && firstc != '@' | |
415 #endif | |
416 #ifdef FEAT_EVAL | |
417 && !break_ctrl_c | |
418 #endif | |
419 && !global_busy) | |
420 got_int = FALSE; | |
421 | |
422 #ifdef FEAT_CMDHIST | |
423 /* free old command line when finished moving around in the history | |
424 * list */ | |
425 if (lookfor != NULL | |
180 | 426 && c != K_S_DOWN && c != K_S_UP |
230 | 427 && c != K_DOWN && c != K_UP |
7 | 428 && c != K_PAGEDOWN && c != K_PAGEUP |
429 && c != K_KPAGEDOWN && c != K_KPAGEUP | |
230 | 430 && c != K_LEFT && c != K_RIGHT |
7 | 431 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N))) |
432 { | |
433 vim_free(lookfor); | |
434 lookfor = NULL; | |
435 } | |
436 #endif | |
437 | |
438 /* | |
1718 | 439 * When there are matching completions to select <S-Tab> works like |
440 * CTRL-P (unless 'wc' is <S-Tab>). | |
7 | 441 */ |
1718 | 442 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0) |
7 | 443 c = Ctrl_P; |
444 | |
445 #ifdef FEAT_WILDMENU | |
446 /* Special translations for 'wildmenu' */ | |
447 if (did_wild_list && p_wmnu) | |
448 { | |
230 | 449 if (c == K_LEFT) |
7 | 450 c = Ctrl_P; |
230 | 451 else if (c == K_RIGHT) |
7 | 452 c = Ctrl_N; |
453 } | |
454 /* Hitting CR after "emenu Name.": complete submenu */ | |
455 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu | |
456 && ccline.cmdpos > 1 | |
457 && ccline.cmdbuff[ccline.cmdpos - 1] == '.' | |
458 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\' | |
459 && (c == '\n' || c == '\r' || c == K_KENTER)) | |
460 c = K_DOWN; | |
461 #endif | |
462 | |
463 /* free expanded names when finished walking through matches */ | |
464 if (xpc.xp_numfiles != -1 | |
465 && !(c == p_wc && KeyTyped) && c != p_wcm | |
466 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A | |
467 && c != Ctrl_L) | |
468 { | |
469 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE); | |
470 did_wild_list = FALSE; | |
471 #ifdef FEAT_WILDMENU | |
230 | 472 if (!p_wmnu || (c != K_UP && c != K_DOWN)) |
7 | 473 #endif |
474 xpc.xp_context = EXPAND_NOTHING; | |
475 wim_index = 0; | |
476 #ifdef FEAT_WILDMENU | |
477 if (p_wmnu && wild_menu_showing != 0) | |
478 { | |
479 int skt = KeyTyped; | |
532 | 480 int old_RedrawingDisabled = RedrawingDisabled; |
531 | 481 |
482 if (ccline.input_fn) | |
483 RedrawingDisabled = 0; | |
7 | 484 |
485 if (wild_menu_showing == WM_SCROLLED) | |
486 { | |
487 /* Entered command line, move it up */ | |
488 cmdline_row--; | |
489 redrawcmd(); | |
490 } | |
491 else if (save_p_ls != -1) | |
492 { | |
493 /* restore 'laststatus' and 'winminheight' */ | |
494 p_ls = save_p_ls; | |
495 p_wmh = save_p_wmh; | |
496 last_status(FALSE); | |
195 | 497 save_cmdline(&save_ccline); |
7 | 498 update_screen(VALID); /* redraw the screen NOW */ |
195 | 499 restore_cmdline(&save_ccline); |
7 | 500 redrawcmd(); |
501 save_p_ls = -1; | |
502 } | |
503 else | |
504 { | |
505 # ifdef FEAT_VERTSPLIT | |
506 win_redraw_last_status(topframe); | |
507 # else | |
508 lastwin->w_redr_status = TRUE; | |
509 # endif | |
510 redraw_statuslines(); | |
511 } | |
532 | 512 KeyTyped = skt; |
513 wild_menu_showing = 0; | |
531 | 514 if (ccline.input_fn) |
515 RedrawingDisabled = old_RedrawingDisabled; | |
7 | 516 } |
517 #endif | |
518 } | |
519 | |
520 #ifdef FEAT_WILDMENU | |
521 /* Special translations for 'wildmenu' */ | |
522 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu) | |
523 { | |
524 /* Hitting <Down> after "emenu Name.": complete submenu */ | |
1318 | 525 if (c == K_DOWN && ccline.cmdpos > 0 |
526 && ccline.cmdbuff[ccline.cmdpos - 1] == '.') | |
7 | 527 c = p_wc; |
230 | 528 else if (c == K_UP) |
7 | 529 { |
530 /* Hitting <Up>: Remove one submenu name in front of the | |
531 * cursor */ | |
532 int found = FALSE; | |
533 | |
534 j = (int)(xpc.xp_pattern - ccline.cmdbuff); | |
535 i = 0; | |
536 while (--j > 0) | |
537 { | |
538 /* check for start of menu name */ | |
539 if (ccline.cmdbuff[j] == ' ' | |
540 && ccline.cmdbuff[j - 1] != '\\') | |
541 { | |
542 i = j + 1; | |
543 break; | |
544 } | |
545 /* check for start of submenu name */ | |
546 if (ccline.cmdbuff[j] == '.' | |
547 && ccline.cmdbuff[j - 1] != '\\') | |
548 { | |
549 if (found) | |
550 { | |
551 i = j + 1; | |
552 break; | |
553 } | |
554 else | |
555 found = TRUE; | |
556 } | |
557 } | |
558 if (i > 0) | |
559 cmdline_del(i); | |
560 c = p_wc; | |
561 xpc.xp_context = EXPAND_NOTHING; | |
562 } | |
563 } | |
714 | 564 if ((xpc.xp_context == EXPAND_FILES |
1621 | 565 || xpc.xp_context == EXPAND_DIRECTORIES |
714 | 566 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu) |
7 | 567 { |
568 char_u upseg[5]; | |
569 | |
570 upseg[0] = PATHSEP; | |
571 upseg[1] = '.'; | |
572 upseg[2] = '.'; | |
573 upseg[3] = PATHSEP; | |
574 upseg[4] = NUL; | |
575 | |
1318 | 576 if (c == K_DOWN |
577 && ccline.cmdpos > 0 | |
578 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP | |
579 && (ccline.cmdpos < 3 | |
580 || ccline.cmdbuff[ccline.cmdpos - 2] != '.' | |
7 | 581 || ccline.cmdbuff[ccline.cmdpos - 3] != '.')) |
582 { | |
583 /* go down a directory */ | |
584 c = p_wc; | |
585 } | |
230 | 586 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN) |
7 | 587 { |
588 /* If in a direct ancestor, strip off one ../ to go down */ | |
589 int found = FALSE; | |
590 | |
591 j = ccline.cmdpos; | |
592 i = (int)(xpc.xp_pattern - ccline.cmdbuff); | |
593 while (--j > i) | |
594 { | |
39 | 595 #ifdef FEAT_MBYTE |
596 if (has_mbyte) | |
597 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j); | |
598 #endif | |
7 | 599 if (vim_ispathsep(ccline.cmdbuff[j])) |
600 { | |
601 found = TRUE; | |
602 break; | |
603 } | |
604 } | |
605 if (found | |
606 && ccline.cmdbuff[j - 1] == '.' | |
607 && ccline.cmdbuff[j - 2] == '.' | |
608 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2)) | |
609 { | |
610 cmdline_del(j - 2); | |
611 c = p_wc; | |
612 } | |
613 } | |
230 | 614 else if (c == K_UP) |
7 | 615 { |
616 /* go up a directory */ | |
617 int found = FALSE; | |
618 | |
619 j = ccline.cmdpos - 1; | |
620 i = (int)(xpc.xp_pattern - ccline.cmdbuff); | |
621 while (--j > i) | |
622 { | |
623 #ifdef FEAT_MBYTE | |
624 if (has_mbyte) | |
625 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j); | |
626 #endif | |
627 if (vim_ispathsep(ccline.cmdbuff[j]) | |
628 #ifdef BACKSLASH_IN_FILENAME | |
629 && vim_strchr(" *?[{`$%#", ccline.cmdbuff[j + 1]) | |
630 == NULL | |
631 #endif | |
632 ) | |
633 { | |
634 if (found) | |
635 { | |
636 i = j + 1; | |
637 break; | |
638 } | |
639 else | |
640 found = TRUE; | |
641 } | |
642 } | |
643 | |
644 if (!found) | |
645 j = i; | |
646 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0) | |
647 j += 4; | |
648 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0 | |
649 && j == i) | |
650 j += 3; | |
651 else | |
652 j = 0; | |
653 if (j > 0) | |
654 { | |
655 /* TODO this is only for DOS/UNIX systems - need to put in | |
656 * machine-specific stuff here and in upseg init */ | |
657 cmdline_del(j); | |
658 put_on_cmdline(upseg + 1, 3, FALSE); | |
659 } | |
660 else if (ccline.cmdpos > i) | |
661 cmdline_del(i); | |
3204 | 662 |
663 /* Now complete in the new directory. Set KeyTyped in case the | |
664 * Up key came from a mapping. */ | |
7 | 665 c = p_wc; |
3204 | 666 KeyTyped = TRUE; |
7 | 667 } |
668 } | |
669 | |
670 #endif /* FEAT_WILDMENU */ | |
671 | |
672 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert | |
673 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */ | |
674 if (c == Ctrl_BSL) | |
675 { | |
676 ++no_mapping; | |
677 ++allow_keys; | |
1389 | 678 c = plain_vgetc(); |
7 | 679 --no_mapping; |
680 --allow_keys; | |
3859 | 681 /* CTRL-\ e doesn't work when obtaining an expression, unless it |
682 * is in a mapping. */ | |
683 if (c != Ctrl_N && c != Ctrl_G && (c != 'e' | |
684 || (ccline.cmdfirstc == '=' && KeyTyped))) | |
7 | 685 { |
686 vungetc(c); | |
687 c = Ctrl_BSL; | |
688 } | |
689 #ifdef FEAT_EVAL | |
690 else if (c == 'e') | |
691 { | |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
692 char_u *p = NULL; |
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
693 int len; |
7 | 694 |
695 /* | |
696 * Replace the command line with the result of an expression. | |
625 | 697 * Need to save and restore the current command line, to be |
698 * able to enter a new one... | |
7 | 699 */ |
700 if (ccline.cmdpos == ccline.cmdlen) | |
701 new_cmdpos = 99999; /* keep it at the end */ | |
702 else | |
703 new_cmdpos = ccline.cmdpos; | |
95 | 704 |
705 save_cmdline(&save_ccline); | |
7 | 706 c = get_expr_register(); |
95 | 707 restore_cmdline(&save_ccline); |
7 | 708 if (c == '=') |
709 { | |
634 | 710 /* Need to save and restore ccline. And set "textlock" |
632 | 711 * to avoid nasty things like going to another buffer when |
712 * evaluating an expression. */ | |
95 | 713 save_cmdline(&save_ccline); |
634 | 714 ++textlock; |
7 | 715 p = get_expr_line(); |
634 | 716 --textlock; |
95 | 717 restore_cmdline(&save_ccline); |
2617 | 718 |
719 if (p != NULL) | |
7 | 720 { |
2617 | 721 len = (int)STRLEN(p); |
722 if (realloc_cmdbuff(len + 1) == OK) | |
723 { | |
724 ccline.cmdlen = len; | |
725 STRCPY(ccline.cmdbuff, p); | |
726 vim_free(p); | |
727 | |
728 /* Restore the cursor or use the position set with | |
729 * set_cmdline_pos(). */ | |
730 if (new_cmdpos > ccline.cmdlen) | |
731 ccline.cmdpos = ccline.cmdlen; | |
732 else | |
733 ccline.cmdpos = new_cmdpos; | |
734 | |
735 KeyTyped = FALSE; /* Don't do p_wc completion. */ | |
736 redrawcmd(); | |
737 goto cmdline_changed; | |
738 } | |
7 | 739 } |
740 } | |
741 beep_flush(); | |
2636 | 742 got_int = FALSE; /* don't abandon the command line */ |
743 did_emsg = FALSE; | |
744 emsg_on_display = FALSE; | |
745 redrawcmd(); | |
746 goto cmdline_not_changed; | |
7 | 747 } |
748 #endif | |
749 else | |
750 { | |
751 if (c == Ctrl_G && p_im && restart_edit == 0) | |
752 restart_edit = 'a'; | |
753 gotesc = TRUE; /* will free ccline.cmdbuff after putting it | |
754 in history */ | |
755 goto returncmd; /* back to Normal mode */ | |
756 } | |
757 } | |
758 | |
759 #ifdef FEAT_CMDWIN | |
760 if (c == cedit_key || c == K_CMDWIN) | |
761 { | |
6211 | 762 if (ex_normal_busy == 0 && got_int == FALSE) |
763 { | |
764 /* | |
765 * Open a window to edit the command line (and history). | |
766 */ | |
767 c = ex_window(); | |
768 some_key_typed = TRUE; | |
769 } | |
7 | 770 } |
771 # ifdef FEAT_DIGRAPHS | |
772 else | |
773 # endif | |
774 #endif | |
775 #ifdef FEAT_DIGRAPHS | |
776 c = do_digraph(c); | |
777 #endif | |
778 | |
779 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC | |
780 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL))) | |
781 { | |
168 | 782 /* In Ex mode a backslash escapes a newline. */ |
783 if (exmode_active | |
784 && c != ESC | |
1318 | 785 && ccline.cmdpos == ccline.cmdlen |
168 | 786 && ccline.cmdpos > 0 |
787 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\') | |
788 { | |
789 if (c == K_KENTER) | |
790 c = '\n'; | |
791 } | |
792 else | |
7 | 793 { |
168 | 794 gotesc = FALSE; /* Might have typed ESC previously, don't |
795 truncate the cmdline now. */ | |
796 if (ccheck_abbr(c + ABBR_OFF)) | |
797 goto cmdline_changed; | |
798 if (!cmd_silent) | |
799 { | |
800 windgoto(msg_row, 0); | |
801 out_flush(); | |
802 } | |
803 break; | |
7 | 804 } |
805 } | |
806 | |
807 /* | |
808 * Completion for 'wildchar' or 'wildcharm' key. | |
809 * - hitting <ESC> twice means: abandon command line. | |
810 * - wildcard expansion is only done when the 'wildchar' key is really | |
811 * typed, not when it comes from a macro | |
812 */ | |
813 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm) | |
814 { | |
815 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */ | |
816 { | |
817 /* if 'wildmode' contains "list" may still need to list */ | |
818 if (xpc.xp_numfiles > 1 | |
819 && !did_wild_list | |
820 && (wim_flags[wim_index] & WIM_LIST)) | |
821 { | |
822 (void)showmatches(&xpc, FALSE); | |
823 redrawcmd(); | |
824 did_wild_list = TRUE; | |
825 } | |
826 if (wim_flags[wim_index] & WIM_LONGEST) | |
3961 | 827 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
828 firstc != '@'); | |
7 | 829 else if (wim_flags[wim_index] & WIM_FULL) |
3961 | 830 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP, |
831 firstc != '@'); | |
7 | 832 else |
833 res = OK; /* don't insert 'wildchar' now */ | |
834 } | |
835 else /* typed p_wc first time */ | |
836 { | |
837 wim_index = 0; | |
838 j = ccline.cmdpos; | |
839 /* if 'wildmode' first contains "longest", get longest | |
840 * common part */ | |
841 if (wim_flags[0] & WIM_LONGEST) | |
3961 | 842 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
843 firstc != '@'); | |
7 | 844 else |
3961 | 845 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP, |
846 firstc != '@'); | |
7 | 847 |
848 /* if interrupted while completing, behave like it failed */ | |
849 if (got_int) | |
850 { | |
851 (void)vpeekc(); /* remove <C-C> from input stream */ | |
852 got_int = FALSE; /* don't abandon the command line */ | |
853 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE); | |
854 #ifdef FEAT_WILDMENU | |
855 xpc.xp_context = EXPAND_NOTHING; | |
856 #endif | |
857 goto cmdline_changed; | |
858 } | |
859 | |
860 /* when more than one match, and 'wildmode' first contains | |
861 * "list", or no change and 'wildmode' contains "longest,list", | |
862 * list all matches */ | |
863 if (res == OK && xpc.xp_numfiles > 1) | |
864 { | |
865 /* a "longest" that didn't do anything is skipped (but not | |
866 * "list:longest") */ | |
867 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j) | |
868 wim_index = 1; | |
869 if ((wim_flags[wim_index] & WIM_LIST) | |
870 #ifdef FEAT_WILDMENU | |
871 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0) | |
872 #endif | |
873 ) | |
874 { | |
875 if (!(wim_flags[0] & WIM_LONGEST)) | |
876 { | |
877 #ifdef FEAT_WILDMENU | |
878 int p_wmnu_save = p_wmnu; | |
879 p_wmnu = 0; | |
880 #endif | |
3961 | 881 /* remove match */ |
882 nextwild(&xpc, WILD_PREV, 0, firstc != '@'); | |
7 | 883 #ifdef FEAT_WILDMENU |
884 p_wmnu = p_wmnu_save; | |
885 #endif | |
886 } | |
887 #ifdef FEAT_WILDMENU | |
888 (void)showmatches(&xpc, p_wmnu | |
889 && ((wim_flags[wim_index] & WIM_LIST) == 0)); | |
890 #else | |
891 (void)showmatches(&xpc, FALSE); | |
892 #endif | |
893 redrawcmd(); | |
894 did_wild_list = TRUE; | |
895 if (wim_flags[wim_index] & WIM_LONGEST) | |
3961 | 896 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
897 firstc != '@'); | |
7 | 898 else if (wim_flags[wim_index] & WIM_FULL) |
3961 | 899 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP, |
900 firstc != '@'); | |
7 | 901 } |
902 else | |
6949 | 903 vim_beep(BO_WILD); |
7 | 904 } |
905 #ifdef FEAT_WILDMENU | |
906 else if (xpc.xp_numfiles == -1) | |
907 xpc.xp_context = EXPAND_NOTHING; | |
908 #endif | |
909 } | |
910 if (wim_index < 3) | |
911 ++wim_index; | |
912 if (c == ESC) | |
913 gotesc = TRUE; | |
914 if (res == OK) | |
915 goto cmdline_changed; | |
916 } | |
917 | |
918 gotesc = FALSE; | |
919 | |
920 /* <S-Tab> goes to last match, in a clumsy way */ | |
921 if (c == K_S_TAB && KeyTyped) | |
922 { | |
3961 | 923 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK |
924 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK | |
925 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK) | |
7 | 926 goto cmdline_changed; |
927 } | |
928 | |
929 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */ | |
930 c = NL; | |
931 | |
932 do_abbr = TRUE; /* default: check for abbreviation */ | |
933 | |
934 /* | |
935 * Big switch for a typed command line character. | |
936 */ | |
937 switch (c) | |
938 { | |
939 case K_BS: | |
940 case Ctrl_H: | |
941 case K_DEL: | |
942 case K_KDEL: | |
943 case Ctrl_W: | |
944 #ifdef FEAT_FKMAP | |
945 if (cmd_fkmap && c == K_BS) | |
946 c = K_DEL; | |
947 #endif | |
948 if (c == K_KDEL) | |
949 c = K_DEL; | |
950 | |
951 /* | |
952 * delete current character is the same as backspace on next | |
953 * character, except at end of line | |
954 */ | |
955 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen) | |
956 ++ccline.cmdpos; | |
957 #ifdef FEAT_MBYTE | |
958 if (has_mbyte && c == K_DEL) | |
959 ccline.cmdpos += mb_off_next(ccline.cmdbuff, | |
960 ccline.cmdbuff + ccline.cmdpos); | |
961 #endif | |
962 if (ccline.cmdpos > 0) | |
963 { | |
964 char_u *p; | |
965 | |
966 j = ccline.cmdpos; | |
967 p = ccline.cmdbuff + j; | |
968 #ifdef FEAT_MBYTE | |
969 if (has_mbyte) | |
970 { | |
971 p = mb_prevptr(ccline.cmdbuff, p); | |
972 if (c == Ctrl_W) | |
973 { | |
974 while (p > ccline.cmdbuff && vim_isspace(*p)) | |
975 p = mb_prevptr(ccline.cmdbuff, p); | |
976 i = mb_get_class(p); | |
977 while (p > ccline.cmdbuff && mb_get_class(p) == i) | |
978 p = mb_prevptr(ccline.cmdbuff, p); | |
979 if (mb_get_class(p) != i) | |
474 | 980 p += (*mb_ptr2len)(p); |
7 | 981 } |
982 } | |
983 else | |
984 #endif | |
985 if (c == Ctrl_W) | |
986 { | |
987 while (p > ccline.cmdbuff && vim_isspace(p[-1])) | |
988 --p; | |
989 i = vim_iswordc(p[-1]); | |
990 while (p > ccline.cmdbuff && !vim_isspace(p[-1]) | |
991 && vim_iswordc(p[-1]) == i) | |
992 --p; | |
993 } | |
994 else | |
995 --p; | |
996 ccline.cmdpos = (int)(p - ccline.cmdbuff); | |
997 ccline.cmdlen -= j - ccline.cmdpos; | |
998 i = ccline.cmdpos; | |
999 while (i < ccline.cmdlen) | |
1000 ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; | |
1001 | |
1002 /* Truncate at the end, required for multi-byte chars. */ | |
1003 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
1004 redrawcmd(); | |
1005 } | |
1006 else if (ccline.cmdlen == 0 && c != Ctrl_W | |
1007 && ccline.cmdprompt == NULL && indent == 0) | |
1008 { | |
1009 /* In ex and debug mode it doesn't make sense to return. */ | |
1010 if (exmode_active | |
1011 #ifdef FEAT_EVAL | |
1012 || ccline.cmdfirstc == '>' | |
1013 #endif | |
1014 ) | |
1015 goto cmdline_not_changed; | |
1016 | |
1017 vim_free(ccline.cmdbuff); /* no commandline to return */ | |
1018 ccline.cmdbuff = NULL; | |
1019 if (!cmd_silent) | |
1020 { | |
1021 #ifdef FEAT_RIGHTLEFT | |
1022 if (cmdmsg_rl) | |
1023 msg_col = Columns; | |
1024 else | |
1025 #endif | |
1026 msg_col = 0; | |
1027 msg_putchar(' '); /* delete ':' */ | |
1028 } | |
1029 redraw_cmdline = TRUE; | |
1030 goto returncmd; /* back to cmd mode */ | |
1031 } | |
1032 goto cmdline_changed; | |
1033 | |
1034 case K_INS: | |
1035 case K_KINS: | |
1036 #ifdef FEAT_FKMAP | |
1037 /* if Farsi mode set, we are in reverse insert mode - | |
1038 Do not change the mode */ | |
1039 if (cmd_fkmap) | |
1040 beep_flush(); | |
1041 else | |
1042 #endif | |
1043 ccline.overstrike = !ccline.overstrike; | |
1044 #ifdef CURSOR_SHAPE | |
1045 ui_cursor_shape(); /* may show different cursor shape */ | |
1046 #endif | |
1047 goto cmdline_not_changed; | |
1048 | |
1049 case Ctrl_HAT: | |
782 | 1050 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE)) |
7 | 1051 { |
1052 /* ":lmap" mappings exists, toggle use of mappings. */ | |
1053 State ^= LANGMAP; | |
1054 #ifdef USE_IM_CONTROL | |
1055 im_set_active(FALSE); /* Disable input method */ | |
1056 #endif | |
1057 if (b_im_ptr != NULL) | |
1058 { | |
1059 if (State & LANGMAP) | |
1060 *b_im_ptr = B_IMODE_LMAP; | |
1061 else | |
1062 *b_im_ptr = B_IMODE_NONE; | |
1063 } | |
1064 } | |
1065 #ifdef USE_IM_CONTROL | |
1066 else | |
1067 { | |
1068 /* There are no ":lmap" mappings, toggle IM. When | |
1069 * 'imdisable' is set don't try getting the status, it's | |
1070 * always off. */ | |
1071 if ((p_imdisable && b_im_ptr != NULL) | |
1072 ? *b_im_ptr == B_IMODE_IM : im_get_status()) | |
1073 { | |
1074 im_set_active(FALSE); /* Disable input method */ | |
1075 if (b_im_ptr != NULL) | |
1076 *b_im_ptr = B_IMODE_NONE; | |
1077 } | |
1078 else | |
1079 { | |
1080 im_set_active(TRUE); /* Enable input method */ | |
1081 if (b_im_ptr != NULL) | |
1082 *b_im_ptr = B_IMODE_IM; | |
1083 } | |
1084 } | |
1085 #endif | |
1086 if (b_im_ptr != NULL) | |
1087 { | |
1088 if (b_im_ptr == &curbuf->b_p_iminsert) | |
1089 set_iminsert_global(); | |
1090 else | |
1091 set_imsearch_global(); | |
1092 } | |
1093 #ifdef CURSOR_SHAPE | |
1094 ui_cursor_shape(); /* may show different cursor shape */ | |
1095 #endif | |
1096 #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP) | |
1097 /* Show/unshow value of 'keymap' in status lines later. */ | |
1098 status_redraw_curbuf(); | |
1099 #endif | |
1100 goto cmdline_not_changed; | |
1101 | |
1102 /* case '@': only in very old vi */ | |
1103 case Ctrl_U: | |
1104 /* delete all characters left of the cursor */ | |
1105 j = ccline.cmdpos; | |
1106 ccline.cmdlen -= j; | |
1107 i = ccline.cmdpos = 0; | |
1108 while (i < ccline.cmdlen) | |
1109 ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; | |
1110 /* Truncate at the end, required for multi-byte chars. */ | |
1111 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
1112 redrawcmd(); | |
1113 goto cmdline_changed; | |
1114 | |
1115 #ifdef FEAT_CLIPBOARD | |
1116 case Ctrl_Y: | |
1117 /* Copy the modeless selection, if there is one. */ | |
1118 if (clip_star.state != SELECT_CLEARED) | |
1119 { | |
1120 if (clip_star.state == SELECT_DONE) | |
1121 clip_copy_modeless_selection(TRUE); | |
1122 goto cmdline_not_changed; | |
1123 } | |
1124 break; | |
1125 #endif | |
1126 | |
1127 case ESC: /* get here if p_wc != ESC or when ESC typed twice */ | |
1128 case Ctrl_C: | |
571 | 1129 /* In exmode it doesn't make sense to return. Except when |
161 | 1130 * ":normal" runs out of characters. */ |
1131 if (exmode_active | |
1132 #ifdef FEAT_EX_EXTRA | |
1133 && (ex_normal_busy == 0 || typebuf.tb_len > 0) | |
1134 #endif | |
1135 ) | |
7 | 1136 goto cmdline_not_changed; |
1137 | |
1138 gotesc = TRUE; /* will free ccline.cmdbuff after | |
1139 putting it in history */ | |
1140 goto returncmd; /* back to cmd mode */ | |
1141 | |
1142 case Ctrl_R: /* insert register */ | |
1143 #ifdef USE_ON_FLY_SCROLL | |
1144 dont_scroll = TRUE; /* disallow scrolling here */ | |
1145 #endif | |
1146 putcmdline('"', TRUE); | |
1147 ++no_mapping; | |
1389 | 1148 i = c = plain_vgetc(); /* CTRL-R <char> */ |
7 | 1149 if (i == Ctrl_O) |
1150 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */ | |
1151 if (i == Ctrl_R) | |
1389 | 1152 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */ |
7 | 1153 --no_mapping; |
1154 #ifdef FEAT_EVAL | |
1155 /* | |
1156 * Insert the result of an expression. | |
1157 * Need to save the current command line, to be able to enter | |
1158 * a new one... | |
1159 */ | |
1160 new_cmdpos = -1; | |
1161 if (c == '=') | |
1162 { | |
1163 if (ccline.cmdfirstc == '=')/* can't do this recursively */ | |
1164 { | |
1165 beep_flush(); | |
1166 c = ESC; | |
1167 } | |
1168 else | |
1169 { | |
95 | 1170 save_cmdline(&save_ccline); |
7 | 1171 c = get_expr_register(); |
95 | 1172 restore_cmdline(&save_ccline); |
7 | 1173 } |
1174 } | |
1175 #endif | |
1176 if (c != ESC) /* use ESC to cancel inserting register */ | |
1177 { | |
1015 | 1178 cmdline_paste(c, i == Ctrl_R, FALSE); |
606 | 1179 |
613 | 1180 #ifdef FEAT_EVAL |
606 | 1181 /* When there was a serious error abort getting the |
1182 * command line. */ | |
1183 if (aborting()) | |
1184 { | |
1185 gotesc = TRUE; /* will free ccline.cmdbuff after | |
1186 putting it in history */ | |
1187 goto returncmd; /* back to cmd mode */ | |
1188 } | |
613 | 1189 #endif |
7 | 1190 KeyTyped = FALSE; /* Don't do p_wc completion. */ |
1191 #ifdef FEAT_EVAL | |
1192 if (new_cmdpos >= 0) | |
1193 { | |
1194 /* set_cmdline_pos() was used */ | |
1195 if (new_cmdpos > ccline.cmdlen) | |
1196 ccline.cmdpos = ccline.cmdlen; | |
1197 else | |
1198 ccline.cmdpos = new_cmdpos; | |
1199 } | |
1200 #endif | |
1201 } | |
1202 redrawcmd(); | |
1203 goto cmdline_changed; | |
1204 | |
1205 case Ctrl_D: | |
1206 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING) | |
1207 break; /* Use ^D as normal char instead */ | |
1208 | |
1209 redrawcmd(); | |
1210 continue; /* don't do incremental search now */ | |
1211 | |
1212 case K_RIGHT: | |
1213 case K_S_RIGHT: | |
1214 case K_C_RIGHT: | |
1215 do | |
1216 { | |
1217 if (ccline.cmdpos >= ccline.cmdlen) | |
1218 break; | |
1219 i = cmdline_charsize(ccline.cmdpos); | |
1220 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows) | |
1221 break; | |
1222 ccline.cmdspos += i; | |
1223 #ifdef FEAT_MBYTE | |
1224 if (has_mbyte) | |
474 | 1225 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
7 | 1226 + ccline.cmdpos); |
1227 else | |
1228 #endif | |
1229 ++ccline.cmdpos; | |
1230 } | |
180 | 1231 while ((c == K_S_RIGHT || c == K_C_RIGHT |
1232 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) | |
7 | 1233 && ccline.cmdbuff[ccline.cmdpos] != ' '); |
1234 #ifdef FEAT_MBYTE | |
1235 if (has_mbyte) | |
1236 set_cmdspos_cursor(); | |
1237 #endif | |
1238 goto cmdline_not_changed; | |
1239 | |
1240 case K_LEFT: | |
1241 case K_S_LEFT: | |
1242 case K_C_LEFT: | |
1456 | 1243 if (ccline.cmdpos == 0) |
1244 goto cmdline_not_changed; | |
7 | 1245 do |
1246 { | |
1247 --ccline.cmdpos; | |
1248 #ifdef FEAT_MBYTE | |
1249 if (has_mbyte) /* move to first byte of char */ | |
1250 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff, | |
1251 ccline.cmdbuff + ccline.cmdpos); | |
1252 #endif | |
1253 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos); | |
1254 } | |
1456 | 1255 while (ccline.cmdpos > 0 |
1256 && (c == K_S_LEFT || c == K_C_LEFT | |
180 | 1257 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) |
7 | 1258 && ccline.cmdbuff[ccline.cmdpos - 1] != ' '); |
1259 #ifdef FEAT_MBYTE | |
1260 if (has_mbyte) | |
1261 set_cmdspos_cursor(); | |
1262 #endif | |
1263 goto cmdline_not_changed; | |
1264 | |
1265 case K_IGNORE: | |
1472 | 1266 /* Ignore mouse event or ex_window() result. */ |
1267 goto cmdline_not_changed; | |
7 | 1268 |
625 | 1269 #ifdef FEAT_GUI_W32 |
1270 /* On Win32 ignore <M-F4>, we get it when closing the window was | |
1271 * cancelled. */ | |
1272 case K_F4: | |
1273 if (mod_mask == MOD_MASK_ALT) | |
1274 { | |
1275 redrawcmd(); /* somehow the cmdline is cleared */ | |
1276 goto cmdline_not_changed; | |
1277 } | |
1278 break; | |
1279 #endif | |
1280 | |
7 | 1281 #ifdef FEAT_MOUSE |
1282 case K_MIDDLEDRAG: | |
1283 case K_MIDDLERELEASE: | |
1284 goto cmdline_not_changed; /* Ignore mouse */ | |
1285 | |
1286 case K_MIDDLEMOUSE: | |
1287 # ifdef FEAT_GUI | |
1288 /* When GUI is active, also paste when 'mouse' is empty */ | |
1289 if (!gui.in_use) | |
1290 # endif | |
1291 if (!mouse_has(MOUSE_COMMAND)) | |
1292 goto cmdline_not_changed; /* Ignore mouse */ | |
692 | 1293 # ifdef FEAT_CLIPBOARD |
7 | 1294 if (clip_star.available) |
1015 | 1295 cmdline_paste('*', TRUE, TRUE); |
7 | 1296 else |
692 | 1297 # endif |
1015 | 1298 cmdline_paste(0, TRUE, TRUE); |
7 | 1299 redrawcmd(); |
1300 goto cmdline_changed; | |
1301 | |
692 | 1302 # ifdef FEAT_DND |
7 | 1303 case K_DROP: |
1015 | 1304 cmdline_paste('~', TRUE, FALSE); |
7 | 1305 redrawcmd(); |
1306 goto cmdline_changed; | |
692 | 1307 # endif |
7 | 1308 |
1309 case K_LEFTDRAG: | |
1310 case K_LEFTRELEASE: | |
1311 case K_RIGHTDRAG: | |
1312 case K_RIGHTRELEASE: | |
1313 /* Ignore drag and release events when the button-down wasn't | |
1314 * seen before. */ | |
1315 if (ignore_drag_release) | |
1316 goto cmdline_not_changed; | |
1317 /* FALLTHROUGH */ | |
1318 case K_LEFTMOUSE: | |
1319 case K_RIGHTMOUSE: | |
1320 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE) | |
1321 ignore_drag_release = TRUE; | |
1322 else | |
1323 ignore_drag_release = FALSE; | |
1324 # ifdef FEAT_GUI | |
1325 /* When GUI is active, also move when 'mouse' is empty */ | |
1326 if (!gui.in_use) | |
1327 # endif | |
1328 if (!mouse_has(MOUSE_COMMAND)) | |
1329 goto cmdline_not_changed; /* Ignore mouse */ | |
1330 # ifdef FEAT_CLIPBOARD | |
1331 if (mouse_row < cmdline_row && clip_star.available) | |
1332 { | |
1333 int button, is_click, is_drag; | |
1334 | |
1335 /* | |
1336 * Handle modeless selection. | |
1337 */ | |
1338 button = get_mouse_button(KEY2TERMCAP1(c), | |
1339 &is_click, &is_drag); | |
1340 if (mouse_model_popup() && button == MOUSE_LEFT | |
1341 && (mod_mask & MOD_MASK_SHIFT)) | |
1342 { | |
1343 /* Translate shift-left to right button. */ | |
1344 button = MOUSE_RIGHT; | |
1345 mod_mask &= ~MOD_MASK_SHIFT; | |
1346 } | |
1347 clip_modeless(button, is_click, is_drag); | |
1348 goto cmdline_not_changed; | |
1349 } | |
1350 # endif | |
1351 | |
1352 set_cmdspos(); | |
1353 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen; | |
1354 ++ccline.cmdpos) | |
1355 { | |
1356 i = cmdline_charsize(ccline.cmdpos); | |
1357 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns | |
1358 && mouse_col < ccline.cmdspos % Columns + i) | |
1359 break; | |
692 | 1360 # ifdef FEAT_MBYTE |
7 | 1361 if (has_mbyte) |
1362 { | |
1363 /* Count ">" for double-wide char that doesn't fit. */ | |
1364 correct_cmdspos(ccline.cmdpos, i); | |
474 | 1365 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
7 | 1366 + ccline.cmdpos) - 1; |
1367 } | |
692 | 1368 # endif |
7 | 1369 ccline.cmdspos += i; |
1370 } | |
1371 goto cmdline_not_changed; | |
1372 | |
1373 /* Mouse scroll wheel: ignored here */ | |
1374 case K_MOUSEDOWN: | |
1375 case K_MOUSEUP: | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1376 case K_MOUSELEFT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1377 case K_MOUSERIGHT: |
7 | 1378 /* Alternate buttons ignored here */ |
1379 case K_X1MOUSE: | |
1380 case K_X1DRAG: | |
1381 case K_X1RELEASE: | |
1382 case K_X2MOUSE: | |
1383 case K_X2DRAG: | |
1384 case K_X2RELEASE: | |
1385 goto cmdline_not_changed; | |
1386 | |
1387 #endif /* FEAT_MOUSE */ | |
1388 | |
1389 #ifdef FEAT_GUI | |
1390 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */ | |
1391 case K_LEFTRELEASE_NM: | |
1392 goto cmdline_not_changed; | |
1393 | |
1394 case K_VER_SCROLLBAR: | |
540 | 1395 if (msg_scrolled == 0) |
7 | 1396 { |
1397 gui_do_scroll(); | |
1398 redrawcmd(); | |
1399 } | |
1400 goto cmdline_not_changed; | |
1401 | |
1402 case K_HOR_SCROLLBAR: | |
540 | 1403 if (msg_scrolled == 0) |
7 | 1404 { |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1405 gui_do_horiz_scroll(scrollbar_value, FALSE); |
7 | 1406 redrawcmd(); |
1407 } | |
1408 goto cmdline_not_changed; | |
1409 #endif | |
692 | 1410 #ifdef FEAT_GUI_TABLINE |
1411 case K_TABLINE: | |
1412 case K_TABMENU: | |
1413 /* Don't want to change any tabs here. Make sure the same tab | |
1414 * is still selected. */ | |
1415 if (gui_use_tabline()) | |
1416 gui_mch_set_curtab(tabpage_index(curtab)); | |
1417 goto cmdline_not_changed; | |
1418 #endif | |
1419 | |
7 | 1420 case K_SELECT: /* end of Select mode mapping - ignore */ |
1421 goto cmdline_not_changed; | |
1422 | |
1423 case Ctrl_B: /* begin of command line */ | |
1424 case K_HOME: | |
1425 case K_KHOME: | |
1426 case K_S_HOME: | |
1427 case K_C_HOME: | |
1428 ccline.cmdpos = 0; | |
1429 set_cmdspos(); | |
1430 goto cmdline_not_changed; | |
1431 | |
1432 case Ctrl_E: /* end of command line */ | |
1433 case K_END: | |
1434 case K_KEND: | |
1435 case K_S_END: | |
1436 case K_C_END: | |
1437 ccline.cmdpos = ccline.cmdlen; | |
1438 set_cmdspos_cursor(); | |
1439 goto cmdline_not_changed; | |
1440 | |
1441 case Ctrl_A: /* all matches */ | |
3961 | 1442 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL) |
7 | 1443 break; |
1444 goto cmdline_changed; | |
1445 | |
772 | 1446 case Ctrl_L: |
1447 #ifdef FEAT_SEARCH_EXTRA | |
1448 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?')) | |
1449 { | |
1450 /* Add a character from under the cursor for 'incsearch' */ | |
1451 if (did_incsearch | |
1452 && !equalpos(curwin->w_cursor, old_cursor)) | |
1453 { | |
1454 c = gchar_cursor(); | |
2302
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2268
diff
changeset
|
1455 /* If 'ignorecase' and 'smartcase' are set and the |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2268
diff
changeset
|
1456 * command line has no uppercase characters, convert |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2268
diff
changeset
|
1457 * the character to lowercase */ |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2268
diff
changeset
|
1458 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff)) |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2268
diff
changeset
|
1459 c = MB_TOLOWER(c); |
772 | 1460 if (c != NUL) |
1039 | 1461 { |
1462 if (c == firstc || vim_strchr((char_u *)( | |
1463 p_magic ? "\\^$.*[" : "\\^$"), c) | |
1464 != NULL) | |
1465 { | |
1466 /* put a backslash before special characters */ | |
1467 stuffcharReadbuff(c); | |
1468 c = '\\'; | |
1469 } | |
772 | 1470 break; |
1039 | 1471 } |
772 | 1472 } |
1473 goto cmdline_not_changed; | |
1474 } | |
1475 #endif | |
1476 | |
1477 /* completion: longest common part */ | |
3961 | 1478 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL) |
7 | 1479 break; |
1480 goto cmdline_changed; | |
1481 | |
1482 case Ctrl_N: /* next match */ | |
1483 case Ctrl_P: /* previous match */ | |
1484 if (xpc.xp_numfiles > 0) | |
1485 { | |
3961 | 1486 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, |
1487 0, firstc != '@') == FAIL) | |
7 | 1488 break; |
1489 goto cmdline_changed; | |
1490 } | |
1491 | |
1492 #ifdef FEAT_CMDHIST | |
1493 case K_UP: | |
1494 case K_DOWN: | |
1495 case K_S_UP: | |
1496 case K_S_DOWN: | |
1497 case K_PAGEUP: | |
1498 case K_KPAGEUP: | |
1499 case K_PAGEDOWN: | |
1500 case K_KPAGEDOWN: | |
1501 if (hislen == 0 || firstc == NUL) /* no history */ | |
1502 goto cmdline_not_changed; | |
1503 | |
1504 i = hiscnt; | |
1505 | |
1506 /* save current command string so it can be restored later */ | |
1507 if (lookfor == NULL) | |
1508 { | |
1509 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL) | |
1510 goto cmdline_not_changed; | |
1511 lookfor[ccline.cmdpos] = NUL; | |
1512 } | |
1513 | |
1514 j = (int)STRLEN(lookfor); | |
1515 for (;;) | |
1516 { | |
1517 /* one step backwards */ | |
230 | 1518 if (c == K_UP|| c == K_S_UP || c == Ctrl_P |
180 | 1519 || c == K_PAGEUP || c == K_KPAGEUP) |
7 | 1520 { |
1521 if (hiscnt == hislen) /* first time */ | |
1522 hiscnt = hisidx[histype]; | |
1523 else if (hiscnt == 0 && hisidx[histype] != hislen - 1) | |
1524 hiscnt = hislen - 1; | |
1525 else if (hiscnt != hisidx[histype] + 1) | |
1526 --hiscnt; | |
1527 else /* at top of list */ | |
1528 { | |
1529 hiscnt = i; | |
1530 break; | |
1531 } | |
1532 } | |
1533 else /* one step forwards */ | |
1534 { | |
1535 /* on last entry, clear the line */ | |
1536 if (hiscnt == hisidx[histype]) | |
1537 { | |
1538 hiscnt = hislen; | |
1539 break; | |
1540 } | |
1541 | |
1542 /* not on a history line, nothing to do */ | |
1543 if (hiscnt == hislen) | |
1544 break; | |
1545 if (hiscnt == hislen - 1) /* wrap around */ | |
1546 hiscnt = 0; | |
1547 else | |
1548 ++hiscnt; | |
1549 } | |
1550 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL) | |
1551 { | |
1552 hiscnt = i; | |
1553 break; | |
1554 } | |
230 | 1555 if ((c != K_UP && c != K_DOWN) |
180 | 1556 || hiscnt == i |
7 | 1557 || STRNCMP(history[histype][hiscnt].hisstr, |
1558 lookfor, (size_t)j) == 0) | |
1559 break; | |
1560 } | |
1561 | |
1562 if (hiscnt != i) /* jumped to other entry */ | |
1563 { | |
1564 char_u *p; | |
1565 int len; | |
1566 int old_firstc; | |
1567 | |
1568 vim_free(ccline.cmdbuff); | |
1718 | 1569 xpc.xp_context = EXPAND_NOTHING; |
7 | 1570 if (hiscnt == hislen) |
1571 p = lookfor; /* back to the old one */ | |
1572 else | |
1573 p = history[histype][hiscnt].hisstr; | |
1574 | |
1575 if (histype == HIST_SEARCH | |
1576 && p != lookfor | |
1577 && (old_firstc = p[STRLEN(p) + 1]) != firstc) | |
1578 { | |
1579 /* Correct for the separator character used when | |
1580 * adding the history entry vs the one used now. | |
1581 * First loop: count length. | |
1582 * Second loop: copy the characters. */ | |
1583 for (i = 0; i <= 1; ++i) | |
1584 { | |
1585 len = 0; | |
1586 for (j = 0; p[j] != NUL; ++j) | |
1587 { | |
1588 /* Replace old sep with new sep, unless it is | |
1589 * escaped. */ | |
1590 if (p[j] == old_firstc | |
1591 && (j == 0 || p[j - 1] != '\\')) | |
1592 { | |
1593 if (i > 0) | |
1594 ccline.cmdbuff[len] = firstc; | |
1595 } | |
1596 else | |
1597 { | |
1598 /* Escape new sep, unless it is already | |
1599 * escaped. */ | |
1600 if (p[j] == firstc | |
1601 && (j == 0 || p[j - 1] != '\\')) | |
1602 { | |
1603 if (i > 0) | |
1604 ccline.cmdbuff[len] = '\\'; | |
1605 ++len; | |
1606 } | |
1607 if (i > 0) | |
1608 ccline.cmdbuff[len] = p[j]; | |
1609 } | |
1610 ++len; | |
1611 } | |
1612 if (i == 0) | |
1613 { | |
1614 alloc_cmdbuff(len); | |
1615 if (ccline.cmdbuff == NULL) | |
1616 goto returncmd; | |
1617 } | |
1618 } | |
1619 ccline.cmdbuff[len] = NUL; | |
1620 } | |
1621 else | |
1622 { | |
1623 alloc_cmdbuff((int)STRLEN(p)); | |
1624 if (ccline.cmdbuff == NULL) | |
1625 goto returncmd; | |
1626 STRCPY(ccline.cmdbuff, p); | |
1627 } | |
1628 | |
1629 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); | |
1630 redrawcmd(); | |
1631 goto cmdline_changed; | |
1632 } | |
1633 beep_flush(); | |
1634 goto cmdline_not_changed; | |
1635 #endif | |
1636 | |
1637 case Ctrl_V: | |
1638 case Ctrl_Q: | |
1639 #ifdef FEAT_MOUSE | |
1640 ignore_drag_release = TRUE; | |
1641 #endif | |
1642 putcmdline('^', TRUE); | |
1643 c = get_literal(); /* get next (two) character(s) */ | |
1644 do_abbr = FALSE; /* don't do abbreviation now */ | |
1645 #ifdef FEAT_MBYTE | |
1646 /* may need to remove ^ when composing char was typed */ | |
1647 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent) | |
1648 { | |
1649 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); | |
1650 msg_putchar(' '); | |
1651 cursorcmd(); | |
1652 } | |
1653 #endif | |
1654 break; | |
1655 | |
1656 #ifdef FEAT_DIGRAPHS | |
1657 case Ctrl_K: | |
1658 #ifdef FEAT_MOUSE | |
1659 ignore_drag_release = TRUE; | |
1660 #endif | |
1661 putcmdline('?', TRUE); | |
1662 #ifdef USE_ON_FLY_SCROLL | |
1663 dont_scroll = TRUE; /* disallow scrolling here */ | |
1664 #endif | |
1665 c = get_digraph(TRUE); | |
1666 if (c != NUL) | |
1667 break; | |
1668 | |
1669 redrawcmd(); | |
1670 goto cmdline_not_changed; | |
1671 #endif /* FEAT_DIGRAPHS */ | |
1672 | |
1673 #ifdef FEAT_RIGHTLEFT | |
1674 case Ctrl__: /* CTRL-_: switch language mode */ | |
1675 if (!p_ari) | |
1676 break; | |
1677 #ifdef FEAT_FKMAP | |
1678 if (p_altkeymap) | |
1679 { | |
1680 cmd_fkmap = !cmd_fkmap; | |
1681 if (cmd_fkmap) /* in Farsi always in Insert mode */ | |
1682 ccline.overstrike = FALSE; | |
1683 } | |
1684 else /* Hebrew is default */ | |
1685 #endif | |
1686 cmd_hkmap = !cmd_hkmap; | |
1687 goto cmdline_not_changed; | |
1688 #endif | |
1689 | |
1690 default: | |
1691 #ifdef UNIX | |
1692 if (c == intr_char) | |
1693 { | |
1694 gotesc = TRUE; /* will free ccline.cmdbuff after | |
1695 putting it in history */ | |
1696 goto returncmd; /* back to Normal mode */ | |
1697 } | |
1698 #endif | |
1699 /* | |
1700 * Normal character with no special meaning. Just set mod_mask | |
1701 * to 0x0 so that typing Shift-Space in the GUI doesn't enter | |
1702 * the string <S-Space>. This should only happen after ^V. | |
1703 */ | |
1704 if (!IS_SPECIAL(c)) | |
1705 mod_mask = 0x0; | |
1706 break; | |
1707 } | |
1708 /* | |
1709 * End of switch on command line character. | |
1710 * We come here if we have a normal character. | |
1711 */ | |
1712 | |
4980
9ae0fe467776
updated for version 7.3.1235
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
1713 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr( |
7 | 1714 #ifdef FEAT_MBYTE |
1715 /* Add ABBR_OFF for characters above 0x100, this is | |
1716 * what check_abbr() expects. */ | |
1717 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : | |
1718 #endif | |
4980
9ae0fe467776
updated for version 7.3.1235
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
1719 c) || c == Ctrl_RSB)) |
7 | 1720 goto cmdline_changed; |
1721 | |
1722 /* | |
1723 * put the character in the command line | |
1724 */ | |
1725 if (IS_SPECIAL(c) || mod_mask != 0) | |
1726 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE); | |
1727 else | |
1728 { | |
1729 #ifdef FEAT_MBYTE | |
1730 if (has_mbyte) | |
1731 { | |
1732 j = (*mb_char2bytes)(c, IObuff); | |
1733 IObuff[j] = NUL; /* exclude composing chars */ | |
1734 put_on_cmdline(IObuff, j, TRUE); | |
1735 } | |
1736 else | |
1737 #endif | |
1738 { | |
1739 IObuff[0] = c; | |
1740 put_on_cmdline(IObuff, 1, TRUE); | |
1741 } | |
1742 } | |
1743 goto cmdline_changed; | |
1744 | |
1745 /* | |
1746 * This part implements incremental searches for "/" and "?" | |
1747 * Jump to cmdline_not_changed when a character has been read but the command | |
1748 * line did not change. Then we only search and redraw if something changed in | |
1749 * the past. | |
1750 * Jump to cmdline_changed when the command line did change. | |
1751 * (Sorry for the goto's, I know it is ugly). | |
1752 */ | |
1753 cmdline_not_changed: | |
1754 #ifdef FEAT_SEARCH_EXTRA | |
1755 if (!incsearch_postponed) | |
1756 continue; | |
1757 #endif | |
1758 | |
1759 cmdline_changed: | |
1760 #ifdef FEAT_SEARCH_EXTRA | |
1761 /* | |
1762 * 'incsearch' highlighting. | |
1763 */ | |
1764 if (p_is && !cmd_silent && (firstc == '/' || firstc == '?')) | |
1765 { | |
772 | 1766 pos_T end_pos; |
1521 | 1767 #ifdef FEAT_RELTIME |
1768 proftime_T tm; | |
1769 #endif | |
772 | 1770 |
7 | 1771 /* if there is a character waiting, search and redraw later */ |
1772 if (char_avail()) | |
1773 { | |
1774 incsearch_postponed = TRUE; | |
1775 continue; | |
1776 } | |
1777 incsearch_postponed = FALSE; | |
1778 curwin->w_cursor = old_cursor; /* start at old position */ | |
1779 | |
1780 /* If there is no command line, don't do anything */ | |
1781 if (ccline.cmdlen == 0) | |
1782 i = 0; | |
1783 else | |
1784 { | |
1785 cursor_off(); /* so the user knows we're busy */ | |
1786 out_flush(); | |
1787 ++emsg_off; /* So it doesn't beep if bad expr */ | |
1521 | 1788 #ifdef FEAT_RELTIME |
1789 /* Set the time limit to half a second. */ | |
1790 profile_setlimit(500L, &tm); | |
1791 #endif | |
7 | 1792 i = do_search(NULL, firstc, ccline.cmdbuff, count, |
1521 | 1793 SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK, |
1794 #ifdef FEAT_RELTIME | |
1795 &tm | |
1796 #else | |
1797 NULL | |
1798 #endif | |
1799 ); | |
7 | 1800 --emsg_off; |
1801 /* if interrupted while searching, behave like it failed */ | |
1802 if (got_int) | |
1803 { | |
1804 (void)vpeekc(); /* remove <C-C> from input stream */ | |
1805 got_int = FALSE; /* don't abandon the command line */ | |
1806 i = 0; | |
1807 } | |
1808 else if (char_avail()) | |
1809 /* cancelled searching because a char was typed */ | |
1810 incsearch_postponed = TRUE; | |
1811 } | |
772 | 1812 if (i != 0) |
7 | 1813 highlight_match = TRUE; /* highlight position */ |
1814 else | |
1815 highlight_match = FALSE; /* remove highlight */ | |
1816 | |
1817 /* first restore the old curwin values, so the screen is | |
1818 * positioned in the same way as the actual search command */ | |
1819 curwin->w_leftcol = old_leftcol; | |
1820 curwin->w_topline = old_topline; | |
1821 # ifdef FEAT_DIFF | |
1822 curwin->w_topfill = old_topfill; | |
1823 # endif | |
1824 curwin->w_botline = old_botline; | |
1825 changed_cline_bef_curs(); | |
1826 update_topline(); | |
1827 | |
1828 if (i != 0) | |
1829 { | |
481 | 1830 pos_T save_pos = curwin->w_cursor; |
1831 | |
7 | 1832 /* |
772 | 1833 * First move cursor to end of match, then to the start. This |
7 | 1834 * moves the whole match onto the screen when 'nowrap' is set. |
1835 */ | |
1836 curwin->w_cursor.lnum += search_match_lines; | |
1837 curwin->w_cursor.col = search_match_endcol; | |
481 | 1838 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) |
1839 { | |
1840 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
1841 coladvance((colnr_T)MAXCOL); | |
1842 } | |
7 | 1843 validate_cursor(); |
772 | 1844 end_pos = curwin->w_cursor; |
481 | 1845 curwin->w_cursor = save_pos; |
7 | 1846 } |
798 | 1847 else |
1848 end_pos = curwin->w_cursor; /* shutup gcc 4 */ | |
772 | 1849 |
7 | 1850 validate_cursor(); |
979 | 1851 # ifdef FEAT_WINDOWS |
1852 /* May redraw the status line to show the cursor position. */ | |
1853 if (p_ru && curwin->w_status_height > 0) | |
1854 curwin->w_redr_status = TRUE; | |
1855 # endif | |
7 | 1856 |
195 | 1857 save_cmdline(&save_ccline); |
743 | 1858 update_screen(SOME_VALID); |
195 | 1859 restore_cmdline(&save_ccline); |
1860 | |
772 | 1861 /* Leave it at the end to make CTRL-R CTRL-W work. */ |
1862 if (i != 0) | |
1863 curwin->w_cursor = end_pos; | |
1864 | |
7 | 1865 msg_starthere(); |
1866 redrawcmdline(); | |
1867 did_incsearch = TRUE; | |
1868 } | |
1869 #else /* FEAT_SEARCH_EXTRA */ | |
1870 ; | |
1871 #endif | |
1872 | |
1873 #ifdef FEAT_RIGHTLEFT | |
1874 if (cmdmsg_rl | |
1875 # ifdef FEAT_ARABIC | |
534 | 1876 || (p_arshape && !p_tbidi && enc_utf8) |
7 | 1877 # endif |
1878 ) | |
1879 /* Always redraw the whole command line to fix shaping and | |
3374 | 1880 * right-left typing. Not efficient, but it works. |
1881 * Do it only when there are no characters left to read | |
1882 * to avoid useless intermediate redraws. */ | |
1883 if (vpeekc() == NUL) | |
1884 redrawcmd(); | |
7 | 1885 #endif |
1886 } | |
1887 | |
1888 returncmd: | |
1889 | |
1890 #ifdef FEAT_RIGHTLEFT | |
1891 cmdmsg_rl = FALSE; | |
1892 #endif | |
1893 | |
1894 #ifdef FEAT_FKMAP | |
1895 cmd_fkmap = 0; | |
1896 #endif | |
1897 | |
1898 ExpandCleanup(&xpc); | |
1718 | 1899 ccline.xpc = NULL; |
7 | 1900 |
1901 #ifdef FEAT_SEARCH_EXTRA | |
1902 if (did_incsearch) | |
1903 { | |
1904 curwin->w_cursor = old_cursor; | |
1905 curwin->w_curswant = old_curswant; | |
1906 curwin->w_leftcol = old_leftcol; | |
1907 curwin->w_topline = old_topline; | |
1908 # ifdef FEAT_DIFF | |
1909 curwin->w_topfill = old_topfill; | |
1910 # endif | |
1911 curwin->w_botline = old_botline; | |
1912 highlight_match = FALSE; | |
1913 validate_cursor(); /* needed for TAB */ | |
743 | 1914 redraw_later(SOME_VALID); |
7 | 1915 } |
1916 #endif | |
1917 | |
1918 if (ccline.cmdbuff != NULL) | |
1919 { | |
1920 /* | |
1921 * Put line in history buffer (":" and "=" only when it was typed). | |
1922 */ | |
1923 #ifdef FEAT_CMDHIST | |
1924 if (ccline.cmdlen && firstc != NUL | |
1925 && (some_key_typed || histype == HIST_SEARCH)) | |
1926 { | |
1927 add_to_history(histype, ccline.cmdbuff, TRUE, | |
1928 histype == HIST_SEARCH ? firstc : NUL); | |
1929 if (firstc == ':') | |
1930 { | |
1931 vim_free(new_last_cmdline); | |
1932 new_last_cmdline = vim_strsave(ccline.cmdbuff); | |
1933 } | |
1934 } | |
1935 #endif | |
1936 | |
1937 if (gotesc) /* abandon command line */ | |
1938 { | |
1939 vim_free(ccline.cmdbuff); | |
1940 ccline.cmdbuff = NULL; | |
1941 if (msg_scrolled == 0) | |
1942 compute_cmdrow(); | |
1943 MSG(""); | |
1944 redraw_cmdline = TRUE; | |
1945 } | |
1946 } | |
1947 | |
1948 /* | |
1949 * If the screen was shifted up, redraw the whole screen (later). | |
1950 * If the line is too long, clear it, so ruler and shown command do | |
1951 * not get printed in the middle of it. | |
1952 */ | |
1953 msg_check(); | |
1954 msg_scroll = save_msg_scroll; | |
1955 redir_off = FALSE; | |
1956 | |
1957 /* When the command line was typed, no need for a wait-return prompt. */ | |
1958 if (some_key_typed) | |
1959 need_wait_return = FALSE; | |
1960 | |
1961 State = save_State; | |
1962 #ifdef USE_IM_CONTROL | |
1963 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP) | |
1964 im_save_status(b_im_ptr); | |
1965 im_set_active(FALSE); | |
1966 #endif | |
1967 #ifdef FEAT_MOUSE | |
1968 setmouse(); | |
1969 #endif | |
1970 #ifdef CURSOR_SHAPE | |
1971 ui_cursor_shape(); /* may show different cursor shape */ | |
1972 #endif | |
1973 | |
95 | 1974 { |
1975 char_u *p = ccline.cmdbuff; | |
1976 | |
1977 /* Make ccline empty, getcmdline() may try to use it. */ | |
1978 ccline.cmdbuff = NULL; | |
1979 return p; | |
1980 } | |
7 | 1981 } |
1982 | |
1983 #if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO) | |
1984 /* | |
1985 * Get a command line with a prompt. | |
1986 * This is prepared to be called recursively from getcmdline() (e.g. by | |
1987 * f_input() when evaluating an expression from CTRL-R =). | |
1988 * Returns the command line in allocated memory, or NULL. | |
1989 */ | |
1990 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1991 getcmdline_prompt( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1992 int firstc, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1993 char_u *prompt, /* command line prompt */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1994 int attr, /* attributes for prompt */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1995 int xp_context, /* type of expansion */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1996 char_u *xp_arg) /* user-defined expansion argument */ |
7 | 1997 { |
1998 char_u *s; | |
1999 struct cmdline_info save_ccline; | |
2000 int msg_col_save = msg_col; | |
2001 | |
95 | 2002 save_cmdline(&save_ccline); |
7 | 2003 ccline.cmdprompt = prompt; |
2004 ccline.cmdattr = attr; | |
531 | 2005 # ifdef FEAT_EVAL |
2006 ccline.xp_context = xp_context; | |
2007 ccline.xp_arg = xp_arg; | |
2008 ccline.input_fn = (firstc == '@'); | |
2009 # endif | |
7 | 2010 s = getcmdline(firstc, 1L, 0); |
95 | 2011 restore_cmdline(&save_ccline); |
3020 | 2012 /* Restore msg_col, the prompt from input() may have changed it. |
2013 * But only if called recursively and the commandline is therefore being | |
2014 * restored to an old one; if not, the input() prompt stays on the screen, | |
2015 * so we need its modified msg_col left intact. */ | |
2016 if (ccline.cmdbuff != NULL) | |
2017 msg_col = msg_col_save; | |
7 | 2018 |
2019 return s; | |
2020 } | |
2021 #endif | |
2022 | |
632 | 2023 /* |
634 | 2024 * Return TRUE when the text must not be changed and we can't switch to |
2025 * another window or buffer. Used when editing the command line, evaluating | |
2026 * 'balloonexpr', etc. | |
632 | 2027 */ |
2028 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2029 text_locked(void) |
632 | 2030 { |
2031 #ifdef FEAT_CMDWIN | |
2032 if (cmdwin_type != 0) | |
2033 return TRUE; | |
2034 #endif | |
634 | 2035 return textlock != 0; |
632 | 2036 } |
2037 | |
2038 /* | |
2039 * Give an error message for a command that isn't allowed while the cmdline | |
2040 * window is open or editing the cmdline in another way. | |
2041 */ | |
2042 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2043 text_locked_msg(void) |
632 | 2044 { |
2045 #ifdef FEAT_CMDWIN | |
2046 if (cmdwin_type != 0) | |
2047 EMSG(_(e_cmdwin)); | |
2048 else | |
2049 #endif | |
2050 EMSG(_(e_secure)); | |
2051 } | |
2052 | |
819 | 2053 #if defined(FEAT_AUTOCMD) || defined(PROTO) |
2054 /* | |
1834 | 2055 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is |
2056 * and give an error message. | |
819 | 2057 */ |
2058 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2059 curbuf_locked(void) |
819 | 2060 { |
2061 if (curbuf_lock > 0) | |
2062 { | |
2063 EMSG(_("E788: Not allowed to edit another buffer now")); | |
2064 return TRUE; | |
2065 } | |
1834 | 2066 return allbuf_locked(); |
2067 } | |
2068 | |
2069 /* | |
2070 * Check if "allbuf_lock" is set and return TRUE when it is and give an error | |
2071 * message. | |
2072 */ | |
2073 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2074 allbuf_locked(void) |
1834 | 2075 { |
2076 if (allbuf_lock > 0) | |
2077 { | |
2078 EMSG(_("E811: Not allowed to change buffer information now")); | |
2079 return TRUE; | |
2080 } | |
819 | 2081 return FALSE; |
2082 } | |
2083 #endif | |
2084 | |
7 | 2085 static int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2086 cmdline_charsize(int idx) |
7 | 2087 { |
2088 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
2089 if (cmdline_star > 0) /* showing '*', always 1 position */ | |
2090 return 1; | |
2091 #endif | |
2092 return ptr2cells(ccline.cmdbuff + idx); | |
2093 } | |
2094 | |
2095 /* | |
2096 * Compute the offset of the cursor on the command line for the prompt and | |
2097 * indent. | |
2098 */ | |
2099 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2100 set_cmdspos(void) |
7 | 2101 { |
531 | 2102 if (ccline.cmdfirstc != NUL) |
7 | 2103 ccline.cmdspos = 1 + ccline.cmdindent; |
2104 else | |
2105 ccline.cmdspos = 0 + ccline.cmdindent; | |
2106 } | |
2107 | |
2108 /* | |
2109 * Compute the screen position for the cursor on the command line. | |
2110 */ | |
2111 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2112 set_cmdspos_cursor(void) |
7 | 2113 { |
2114 int i, m, c; | |
2115 | |
2116 set_cmdspos(); | |
2117 if (KeyTyped) | |
534 | 2118 { |
7 | 2119 m = Columns * Rows; |
534 | 2120 if (m < 0) /* overflow, Columns or Rows at weird value */ |
2121 m = MAXCOL; | |
2122 } | |
7 | 2123 else |
2124 m = MAXCOL; | |
2125 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i) | |
2126 { | |
2127 c = cmdline_charsize(i); | |
2128 #ifdef FEAT_MBYTE | |
2129 /* Count ">" for double-wide multi-byte char that doesn't fit. */ | |
2130 if (has_mbyte) | |
2131 correct_cmdspos(i, c); | |
2132 #endif | |
1612 | 2133 /* If the cmdline doesn't fit, show cursor on last visible char. |
2134 * Don't move the cursor itself, so we can still append. */ | |
7 | 2135 if ((ccline.cmdspos += c) >= m) |
2136 { | |
2137 ccline.cmdspos -= c; | |
2138 break; | |
2139 } | |
2140 #ifdef FEAT_MBYTE | |
2141 if (has_mbyte) | |
474 | 2142 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1; |
7 | 2143 #endif |
2144 } | |
2145 } | |
2146 | |
2147 #ifdef FEAT_MBYTE | |
2148 /* | |
2149 * Check if the character at "idx", which is "cells" wide, is a multi-byte | |
2150 * character that doesn't fit, so that a ">" must be displayed. | |
2151 */ | |
2152 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2153 correct_cmdspos(int idx, int cells) |
7 | 2154 { |
474 | 2155 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1 |
7 | 2156 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1 |
2157 && ccline.cmdspos % Columns + cells > Columns) | |
2158 ccline.cmdspos++; | |
2159 } | |
2160 #endif | |
2161 | |
2162 /* | |
2163 * Get an Ex command line for the ":" command. | |
2164 */ | |
2165 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2166 getexline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2167 int c, /* normally ':', NUL for ":append" */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2168 void *cookie UNUSED, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2169 int indent) /* indent for inside conditionals */ |
7 | 2170 { |
2171 /* When executing a register, remove ':' that's in front of each line. */ | |
2172 if (exec_from_reg && vpeekc() == ':') | |
2173 (void)vgetc(); | |
2174 return getcmdline(c, 1L, indent); | |
2175 } | |
2176 | |
2177 /* | |
2178 * Get an Ex command line for Ex mode. | |
2179 * In Ex mode we only use the OS supplied line editing features and no | |
2180 * mappings or abbreviations. | |
168 | 2181 * Returns a string in allocated memory or NULL. |
7 | 2182 */ |
2183 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2184 getexmodeline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2185 int promptc, /* normally ':', NUL for ":append" and '?' for |
168 | 2186 :s prompt */ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2187 void *cookie UNUSED, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2188 int indent) /* indent for inside conditionals */ |
7 | 2189 { |
168 | 2190 garray_T line_ga; |
2191 char_u *pend; | |
2192 int startcol = 0; | |
1329 | 2193 int c1 = 0; |
168 | 2194 int escaped = FALSE; /* CTRL-V typed */ |
2195 int vcol = 0; | |
2196 char_u *p; | |
1329 | 2197 int prev_char; |
5966 | 2198 int len; |
7 | 2199 |
2200 /* Switch cursor on now. This avoids that it happens after the "\n", which | |
2201 * confuses the system function that computes tabstops. */ | |
2202 cursor_on(); | |
2203 | |
2204 /* always start in column 0; write a newline if necessary */ | |
2205 compute_cmdrow(); | |
168 | 2206 if ((msg_col || msg_didout) && promptc != '?') |
7 | 2207 msg_putchar('\n'); |
168 | 2208 if (promptc == ':') |
7 | 2209 { |
164 | 2210 /* indent that is only displayed, not in the line itself */ |
168 | 2211 if (p_prompt) |
2212 msg_putchar(':'); | |
7 | 2213 while (indent-- > 0) |
2214 msg_putchar(' '); | |
2215 startcol = msg_col; | |
2216 } | |
2217 | |
2218 ga_init2(&line_ga, 1, 30); | |
2219 | |
164 | 2220 /* autoindent for :insert and :append is in the line itself */ |
168 | 2221 if (promptc <= 0) |
164 | 2222 { |
2223 vcol = indent; | |
2224 while (indent >= 8) | |
2225 { | |
2226 ga_append(&line_ga, TAB); | |
2227 msg_puts((char_u *)" "); | |
2228 indent -= 8; | |
2229 } | |
2230 while (indent-- > 0) | |
2231 { | |
2232 ga_append(&line_ga, ' '); | |
2233 msg_putchar(' '); | |
2234 } | |
2235 } | |
168 | 2236 ++no_mapping; |
2237 ++allow_keys; | |
164 | 2238 |
7 | 2239 /* |
2240 * Get the line, one character at a time. | |
2241 */ | |
2242 got_int = FALSE; | |
168 | 2243 while (!got_int) |
7 | 2244 { |
6733
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2245 long sw; |
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2246 char_u *s; |
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2247 |
7 | 2248 if (ga_grow(&line_ga, 40) == FAIL) |
2249 break; | |
2250 | |
168 | 2251 /* Get one character at a time. Don't use inchar(), it can't handle |
2252 * special characters. */ | |
1329 | 2253 prev_char = c1; |
168 | 2254 c1 = vgetc(); |
7 | 2255 |
2256 /* | |
168 | 2257 * Handle line editing. |
2258 * Previously this was left to the system, putting the terminal in | |
2259 * cooked mode, but then CTRL-D and CTRL-T can't be used properly. | |
7 | 2260 */ |
168 | 2261 if (got_int) |
2262 { | |
2263 msg_putchar('\n'); | |
2264 break; | |
2265 } | |
2266 | |
2267 if (!escaped) | |
7 | 2268 { |
168 | 2269 /* CR typed means "enter", which is NL */ |
2270 if (c1 == '\r') | |
2271 c1 = '\n'; | |
2272 | |
2273 if (c1 == BS || c1 == K_BS | |
2274 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL) | |
7 | 2275 { |
168 | 2276 if (line_ga.ga_len > 0) |
2277 { | |
5966 | 2278 #ifdef FEAT_MBYTE |
2279 if (has_mbyte) | |
2280 { | |
2281 p = (char_u *)line_ga.ga_data; | |
2282 p[line_ga.ga_len] = NUL; | |
2283 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1; | |
2284 line_ga.ga_len -= len; | |
2285 } | |
2286 else | |
2287 #endif | |
2288 --line_ga.ga_len; | |
168 | 2289 goto redraw; |
2290 } | |
2291 continue; | |
7 | 2292 } |
2293 | |
168 | 2294 if (c1 == Ctrl_U) |
7 | 2295 { |
168 | 2296 msg_col = startcol; |
2297 msg_clr_eos(); | |
2298 line_ga.ga_len = 0; | |
6733
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2299 goto redraw; |
168 | 2300 } |
2301 | |
2302 if (c1 == Ctrl_T) | |
2303 { | |
6733
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2304 sw = get_sw_value(curbuf); |
168 | 2305 p = (char_u *)line_ga.ga_data; |
2306 p[line_ga.ga_len] = NUL; | |
5995 | 2307 indent = get_indent_str(p, 8, FALSE); |
3740 | 2308 indent += sw - indent % sw; |
168 | 2309 add_indent: |
5995 | 2310 while (get_indent_str(p, 8, FALSE) < indent) |
7 | 2311 { |
7009 | 2312 (void)ga_grow(&line_ga, 2); /* one more for the NUL */ |
6733
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2313 p = (char_u *)line_ga.ga_data; |
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2314 s = skipwhite(p); |
168 | 2315 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1); |
2316 *s = ' '; | |
2317 ++line_ga.ga_len; | |
7 | 2318 } |
168 | 2319 redraw: |
2320 /* redraw the line */ | |
2321 msg_col = startcol; | |
2322 vcol = 0; | |
5966 | 2323 p = (char_u *)line_ga.ga_data; |
2324 p[line_ga.ga_len] = NUL; | |
2325 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len) | |
7 | 2326 { |
168 | 2327 if (*p == TAB) |
7 | 2328 { |
168 | 2329 do |
7 | 2330 { |
168 | 2331 msg_putchar(' '); |
2332 } while (++vcol % 8); | |
5966 | 2333 ++p; |
7 | 2334 } |
168 | 2335 else |
164 | 2336 { |
5966 | 2337 len = MB_PTR2LEN(p); |
2338 msg_outtrans_len(p, len); | |
2339 vcol += ptr2cells(p); | |
2340 p += len; | |
7 | 2341 } |
2342 } | |
168 | 2343 msg_clr_eos(); |
1329 | 2344 windgoto(msg_row, msg_col); |
168 | 2345 continue; |
2346 } | |
2347 | |
2348 if (c1 == Ctrl_D) | |
2349 { | |
2350 /* Delete one shiftwidth. */ | |
2351 p = (char_u *)line_ga.ga_data; | |
2352 if (prev_char == '0' || prev_char == '^') | |
7 | 2353 { |
168 | 2354 if (prev_char == '^') |
2355 ex_keep_indent = TRUE; | |
2356 indent = 0; | |
2357 p[--line_ga.ga_len] = NUL; | |
7 | 2358 } |
2359 else | |
2360 { | |
168 | 2361 p[line_ga.ga_len] = NUL; |
5995 | 2362 indent = get_indent_str(p, 8, FALSE); |
6733
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2363 if (indent > 0) |
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2364 { |
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2365 --indent; |
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2366 indent -= indent % get_sw_value(curbuf); |
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2367 } |
168 | 2368 } |
5995 | 2369 while (get_indent_str(p, 8, FALSE) > indent) |
168 | 2370 { |
6733
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6695
diff
changeset
|
2371 s = skipwhite(p); |
168 | 2372 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1); |
2373 --line_ga.ga_len; | |
7 | 2374 } |
168 | 2375 goto add_indent; |
2376 } | |
2377 | |
2378 if (c1 == Ctrl_V || c1 == Ctrl_Q) | |
2379 { | |
2380 escaped = TRUE; | |
2381 continue; | |
7 | 2382 } |
168 | 2383 |
2384 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */ | |
2385 if (IS_SPECIAL(c1)) | |
2386 continue; | |
7 | 2387 } |
168 | 2388 |
2389 if (IS_SPECIAL(c1)) | |
2390 c1 = '?'; | |
5966 | 2391 #ifdef FEAT_MBYTE |
2392 if (has_mbyte) | |
2393 len = (*mb_char2bytes)(c1, | |
2394 (char_u *)line_ga.ga_data + line_ga.ga_len); | |
2395 else | |
2396 #endif | |
2397 { | |
2398 len = 1; | |
2399 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1; | |
2400 } | |
168 | 2401 if (c1 == '\n') |
2402 msg_putchar('\n'); | |
2403 else if (c1 == TAB) | |
2404 { | |
2405 /* Don't use chartabsize(), 'ts' can be different */ | |
2406 do | |
2407 { | |
2408 msg_putchar(' '); | |
2409 } while (++vcol % 8); | |
2410 } | |
7 | 2411 else |
2412 { | |
168 | 2413 msg_outtrans_len( |
5966 | 2414 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len); |
168 | 2415 vcol += char2cells(c1); |
7 | 2416 } |
5966 | 2417 line_ga.ga_len += len; |
168 | 2418 escaped = FALSE; |
2419 | |
2420 windgoto(msg_row, msg_col); | |
164 | 2421 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len; |
168 | 2422 |
2590 | 2423 /* We are done when a NL is entered, but not when it comes after an |
2424 * odd number of backslashes, that results in a NUL. */ | |
2425 if (line_ga.ga_len > 0 && pend[-1] == '\n') | |
7 | 2426 { |
2590 | 2427 int bcount = 0; |
2428 | |
2429 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\') | |
2430 ++bcount; | |
2431 | |
2432 if (bcount > 0) | |
2433 { | |
2434 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" -> | |
2435 * "\NL", etc. */ | |
2436 line_ga.ga_len -= (bcount + 1) / 2; | |
2437 pend -= (bcount + 1) / 2; | |
2438 pend[-1] = '\n'; | |
2439 } | |
2440 | |
2441 if ((bcount & 1) == 0) | |
2442 { | |
2443 --line_ga.ga_len; | |
2444 --pend; | |
2445 *pend = NUL; | |
2446 break; | |
2447 } | |
7 | 2448 } |
2449 } | |
2450 | |
168 | 2451 --no_mapping; |
2452 --allow_keys; | |
2453 | |
7 | 2454 /* make following messages go to the next line */ |
2455 msg_didout = FALSE; | |
2456 msg_col = 0; | |
2457 if (msg_row < Rows - 1) | |
2458 ++msg_row; | |
2459 emsg_on_display = FALSE; /* don't want ui_delay() */ | |
2460 | |
2461 if (got_int) | |
2462 ga_clear(&line_ga); | |
2463 | |
2464 return (char_u *)line_ga.ga_data; | |
2465 } | |
2466 | |
502 | 2467 # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \ |
2468 || defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
7 | 2469 /* |
2470 * Return TRUE if ccline.overstrike is on. | |
2471 */ | |
2472 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2473 cmdline_overstrike(void) |
7 | 2474 { |
2475 return ccline.overstrike; | |
2476 } | |
2477 | |
2478 /* | |
2479 * Return TRUE if the cursor is at the end of the cmdline. | |
2480 */ | |
2481 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2482 cmdline_at_end(void) |
7 | 2483 { |
2484 return (ccline.cmdpos >= ccline.cmdlen); | |
2485 } | |
2486 #endif | |
2487 | |
574 | 2488 #if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO) |
7 | 2489 /* |
2490 * Return the virtual column number at the current cursor position. | |
2491 * This is used by the IM code to obtain the start of the preedit string. | |
2492 */ | |
2493 colnr_T | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2494 cmdline_getvcol_cursor(void) |
7 | 2495 { |
2496 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen) | |
2497 return MAXCOL; | |
2498 | |
2499 # ifdef FEAT_MBYTE | |
2500 if (has_mbyte) | |
2501 { | |
2502 colnr_T col; | |
2503 int i = 0; | |
2504 | |
2505 for (col = 0; i < ccline.cmdpos; ++col) | |
474 | 2506 i += (*mb_ptr2len)(ccline.cmdbuff + i); |
7 | 2507 |
2508 return col; | |
2509 } | |
2510 else | |
2511 # endif | |
2512 return ccline.cmdpos; | |
2513 } | |
2514 #endif | |
2515 | |
2516 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) | |
2517 /* | |
2518 * If part of the command line is an IM preedit string, redraw it with | |
2519 * IM feedback attributes. The cursor position is restored after drawing. | |
2520 */ | |
2521 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2522 redrawcmd_preedit(void) |
7 | 2523 { |
2524 if ((State & CMDLINE) | |
2525 && xic != NULL | |
976 | 2526 /* && im_get_status() doesn't work when using SCIM */ |
7 | 2527 && !p_imdisable |
2528 && im_is_preediting()) | |
2529 { | |
2530 int cmdpos = 0; | |
2531 int cmdspos; | |
2532 int old_row; | |
2533 int old_col; | |
2534 colnr_T col; | |
2535 | |
2536 old_row = msg_row; | |
2537 old_col = msg_col; | |
531 | 2538 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent; |
7 | 2539 |
2540 # ifdef FEAT_MBYTE | |
2541 if (has_mbyte) | |
2542 { | |
2543 for (col = 0; col < preedit_start_col | |
2544 && cmdpos < ccline.cmdlen; ++col) | |
2545 { | |
2546 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos); | |
474 | 2547 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
7 | 2548 } |
2549 } | |
2550 else | |
2551 # endif | |
2552 { | |
2553 cmdspos += preedit_start_col; | |
2554 cmdpos += preedit_start_col; | |
2555 } | |
2556 | |
2557 msg_row = cmdline_row + (cmdspos / (int)Columns); | |
2558 msg_col = cmdspos % (int)Columns; | |
2559 if (msg_row >= Rows) | |
2560 msg_row = Rows - 1; | |
2561 | |
2562 for (col = 0; cmdpos < ccline.cmdlen; ++col) | |
2563 { | |
2564 int char_len; | |
2565 int char_attr; | |
2566 | |
2567 char_attr = im_get_feedback_attr(col); | |
2568 if (char_attr < 0) | |
2569 break; /* end of preedit string */ | |
2570 | |
2571 # ifdef FEAT_MBYTE | |
2572 if (has_mbyte) | |
474 | 2573 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
7 | 2574 else |
2575 # endif | |
2576 char_len = 1; | |
2577 | |
2578 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr); | |
2579 cmdpos += char_len; | |
2580 } | |
2581 | |
2582 msg_row = old_row; | |
2583 msg_col = old_col; | |
2584 } | |
2585 } | |
2586 #endif /* FEAT_XIM && FEAT_GUI_GTK */ | |
2587 | |
2588 /* | |
2589 * Allocate a new command line buffer. | |
2590 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen. | |
2591 * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen. | |
2592 */ | |
2593 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2594 alloc_cmdbuff(int len) |
7 | 2595 { |
2596 /* | |
2597 * give some extra space to avoid having to allocate all the time | |
2598 */ | |
2599 if (len < 80) | |
2600 len = 100; | |
2601 else | |
2602 len += 20; | |
2603 | |
2604 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */ | |
2605 ccline.cmdbufflen = len; | |
2606 } | |
2607 | |
2608 /* | |
2609 * Re-allocate the command line to length len + something extra. | |
2610 * return FAIL for failure, OK otherwise | |
2611 */ | |
2612 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2613 realloc_cmdbuff(int len) |
7 | 2614 { |
2615 char_u *p; | |
2616 | |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
2617 if (len < ccline.cmdbufflen) |
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
2618 return OK; /* no need to resize */ |
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
2619 |
7 | 2620 p = ccline.cmdbuff; |
2621 alloc_cmdbuff(len); /* will get some more */ | |
2622 if (ccline.cmdbuff == NULL) /* out of memory */ | |
2623 { | |
2624 ccline.cmdbuff = p; /* keep the old one */ | |
2625 return FAIL; | |
2626 } | |
2556
e065501c703a
Fix illegal memory access when using expressions in the command line.
Bram Moolenaar <bram@vim.org>
parents:
2534
diff
changeset
|
2627 /* There isn't always a NUL after the command, but it may need to be |
e065501c703a
Fix illegal memory access when using expressions in the command line.
Bram Moolenaar <bram@vim.org>
parents:
2534
diff
changeset
|
2628 * there, thus copy up to the NUL and add a NUL. */ |
e065501c703a
Fix illegal memory access when using expressions in the command line.
Bram Moolenaar <bram@vim.org>
parents:
2534
diff
changeset
|
2629 mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen); |
e065501c703a
Fix illegal memory access when using expressions in the command line.
Bram Moolenaar <bram@vim.org>
parents:
2534
diff
changeset
|
2630 ccline.cmdbuff[ccline.cmdlen] = NUL; |
7 | 2631 vim_free(p); |
1718 | 2632 |
2633 if (ccline.xpc != NULL | |
2634 && ccline.xpc->xp_pattern != NULL | |
2635 && ccline.xpc->xp_context != EXPAND_NOTHING | |
2636 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL) | |
2637 { | |
1754 | 2638 int i = (int)(ccline.xpc->xp_pattern - p); |
1718 | 2639 |
2640 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted | |
2641 * to point into the newly allocated memory. */ | |
2642 if (i >= 0 && i <= ccline.cmdlen) | |
2643 ccline.xpc->xp_pattern = ccline.cmdbuff + i; | |
2644 } | |
2645 | |
7 | 2646 return OK; |
2647 } | |
2648 | |
359 | 2649 #if defined(FEAT_ARABIC) || defined(PROTO) |
2650 static char_u *arshape_buf = NULL; | |
2651 | |
2652 # if defined(EXITFREE) || defined(PROTO) | |
2653 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2654 free_cmdline_buf(void) |
359 | 2655 { |
2656 vim_free(arshape_buf); | |
2657 } | |
2658 # endif | |
2659 #endif | |
2660 | |
7 | 2661 /* |
2662 * Draw part of the cmdline at the current cursor position. But draw stars | |
2663 * when cmdline_star is TRUE. | |
2664 */ | |
2665 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2666 draw_cmdline(int start, int len) |
7 | 2667 { |
2668 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
2669 int i; | |
2670 | |
2671 if (cmdline_star > 0) | |
2672 for (i = 0; i < len; ++i) | |
2673 { | |
2674 msg_putchar('*'); | |
2675 # ifdef FEAT_MBYTE | |
2676 if (has_mbyte) | |
474 | 2677 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1; |
7 | 2678 # endif |
2679 } | |
2680 else | |
2681 #endif | |
2682 #ifdef FEAT_ARABIC | |
2683 if (p_arshape && !p_tbidi && enc_utf8 && len > 0) | |
2684 { | |
2685 static int buflen = 0; | |
2686 char_u *p; | |
2687 int j; | |
2688 int newlen = 0; | |
2689 int mb_l; | |
719 | 2690 int pc, pc1 = 0; |
7 | 2691 int prev_c = 0; |
2692 int prev_c1 = 0; | |
714 | 2693 int u8c; |
2694 int u8cc[MAX_MCO]; | |
7 | 2695 int nc = 0; |
2696 | |
2697 /* | |
2698 * Do arabic shaping into a temporary buffer. This is very | |
2699 * inefficient! | |
2700 */ | |
507 | 2701 if (len * 2 + 2 > buflen) |
7 | 2702 { |
2703 /* Re-allocate the buffer. We keep it around to avoid a lot of | |
2704 * alloc()/free() calls. */ | |
359 | 2705 vim_free(arshape_buf); |
507 | 2706 buflen = len * 2 + 2; |
359 | 2707 arshape_buf = alloc(buflen); |
2708 if (arshape_buf == NULL) | |
7 | 2709 return; /* out of memory */ |
2710 } | |
2711 | |
507 | 2712 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start))) |
2713 { | |
2714 /* Prepend a space to draw the leading composing char on. */ | |
2715 arshape_buf[0] = ' '; | |
2716 newlen = 1; | |
2717 } | |
2718 | |
7 | 2719 for (j = start; j < start + len; j += mb_l) |
2720 { | |
2721 p = ccline.cmdbuff + j; | |
714 | 2722 u8c = utfc_ptr2char_len(p, u8cc, start + len - j); |
474 | 2723 mb_l = utfc_ptr2len_len(p, start + len - j); |
7 | 2724 if (ARABIC_CHAR(u8c)) |
2725 { | |
2726 /* Do Arabic shaping. */ | |
2727 if (cmdmsg_rl) | |
2728 { | |
2729 /* displaying from right to left */ | |
2730 pc = prev_c; | |
2731 pc1 = prev_c1; | |
714 | 2732 prev_c1 = u8cc[0]; |
7 | 2733 if (j + mb_l >= start + len) |
2734 nc = NUL; | |
2735 else | |
2736 nc = utf_ptr2char(p + mb_l); | |
2737 } | |
2738 else | |
2739 { | |
2740 /* displaying from left to right */ | |
2741 if (j + mb_l >= start + len) | |
2742 pc = NUL; | |
2743 else | |
714 | 2744 { |
2745 int pcc[MAX_MCO]; | |
2746 | |
2747 pc = utfc_ptr2char_len(p + mb_l, pcc, | |
7 | 2748 start + len - j - mb_l); |
714 | 2749 pc1 = pcc[0]; |
2750 } | |
7 | 2751 nc = prev_c; |
2752 } | |
2753 prev_c = u8c; | |
2754 | |
714 | 2755 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc); |
7 | 2756 |
359 | 2757 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen); |
714 | 2758 if (u8cc[0] != 0) |
7 | 2759 { |
714 | 2760 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen); |
2761 if (u8cc[1] != 0) | |
2762 newlen += (*mb_char2bytes)(u8cc[1], | |
359 | 2763 arshape_buf + newlen); |
7 | 2764 } |
2765 } | |
2766 else | |
2767 { | |
2768 prev_c = u8c; | |
359 | 2769 mch_memmove(arshape_buf + newlen, p, mb_l); |
7 | 2770 newlen += mb_l; |
2771 } | |
2772 } | |
2773 | |
359 | 2774 msg_outtrans_len(arshape_buf, newlen); |
7 | 2775 } |
2776 else | |
2777 #endif | |
2778 msg_outtrans_len(ccline.cmdbuff + start, len); | |
2779 } | |
2780 | |
2781 /* | |
2782 * Put a character on the command line. Shifts the following text to the | |
2783 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc. | |
2784 * "c" must be printable (fit in one display cell)! | |
2785 */ | |
2786 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2787 putcmdline(int c, int shift) |
7 | 2788 { |
2789 if (cmd_silent) | |
2790 return; | |
2791 msg_no_more = TRUE; | |
2792 msg_putchar(c); | |
2793 if (shift) | |
2794 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); | |
2795 msg_no_more = FALSE; | |
2796 cursorcmd(); | |
2797 } | |
2798 | |
2799 /* | |
2800 * Undo a putcmdline(c, FALSE). | |
2801 */ | |
2802 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2803 unputcmdline(void) |
7 | 2804 { |
2805 if (cmd_silent) | |
2806 return; | |
2807 msg_no_more = TRUE; | |
2808 if (ccline.cmdlen == ccline.cmdpos) | |
2809 msg_putchar(' '); | |
3558 | 2810 #ifdef FEAT_MBYTE |
2811 else if (has_mbyte) | |
2812 draw_cmdline(ccline.cmdpos, | |
2813 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos)); | |
2814 #endif | |
7 | 2815 else |
2816 draw_cmdline(ccline.cmdpos, 1); | |
2817 msg_no_more = FALSE; | |
2818 cursorcmd(); | |
2819 } | |
2820 | |
2821 /* | |
2822 * Put the given string, of the given length, onto the command line. | |
2823 * If len is -1, then STRLEN() is used to calculate the length. | |
2824 * If 'redraw' is TRUE then the new part of the command line, and the remaining | |
2825 * part will be redrawn, otherwise it will not. If this function is called | |
2826 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be | |
2827 * called afterwards. | |
2828 */ | |
2829 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2830 put_on_cmdline(char_u *str, int len, int redraw) |
7 | 2831 { |
2832 int retval; | |
2833 int i; | |
2834 int m; | |
2835 int c; | |
2836 | |
2837 if (len < 0) | |
2838 len = (int)STRLEN(str); | |
2839 | |
2840 /* Check if ccline.cmdbuff needs to be longer */ | |
2841 if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen) | |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
2842 retval = realloc_cmdbuff(ccline.cmdlen + len + 1); |
7 | 2843 else |
2844 retval = OK; | |
2845 if (retval == OK) | |
2846 { | |
2847 if (!ccline.overstrike) | |
2848 { | |
2849 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, | |
2850 ccline.cmdbuff + ccline.cmdpos, | |
2851 (size_t)(ccline.cmdlen - ccline.cmdpos)); | |
2852 ccline.cmdlen += len; | |
2853 } | |
2854 else | |
2855 { | |
2856 #ifdef FEAT_MBYTE | |
2857 if (has_mbyte) | |
2858 { | |
2859 /* Count nr of characters in the new string. */ | |
2860 m = 0; | |
474 | 2861 for (i = 0; i < len; i += (*mb_ptr2len)(str + i)) |
7 | 2862 ++m; |
2863 /* Count nr of bytes in cmdline that are overwritten by these | |
2864 * characters. */ | |
2865 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0; | |
474 | 2866 i += (*mb_ptr2len)(ccline.cmdbuff + i)) |
7 | 2867 --m; |
2868 if (i < ccline.cmdlen) | |
2869 { | |
2870 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, | |
2871 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i)); | |
2872 ccline.cmdlen += ccline.cmdpos + len - i; | |
2873 } | |
2874 else | |
2875 ccline.cmdlen = ccline.cmdpos + len; | |
2876 } | |
2877 else | |
2878 #endif | |
2879 if (ccline.cmdpos + len > ccline.cmdlen) | |
2880 ccline.cmdlen = ccline.cmdpos + len; | |
2881 } | |
2882 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len); | |
2883 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
2884 | |
2885 #ifdef FEAT_MBYTE | |
2886 if (enc_utf8) | |
2887 { | |
2888 /* When the inserted text starts with a composing character, | |
2889 * backup to the character before it. There could be two of them. | |
2890 */ | |
2891 i = 0; | |
2892 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); | |
2893 while (ccline.cmdpos > 0 && utf_iscomposing(c)) | |
2894 { | |
2895 i = (*mb_head_off)(ccline.cmdbuff, | |
2896 ccline.cmdbuff + ccline.cmdpos - 1) + 1; | |
2897 ccline.cmdpos -= i; | |
2898 len += i; | |
2899 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); | |
2900 } | |
2901 # ifdef FEAT_ARABIC | |
2902 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c)) | |
2903 { | |
2904 /* Check the previous character for Arabic combining pair. */ | |
2905 i = (*mb_head_off)(ccline.cmdbuff, | |
2906 ccline.cmdbuff + ccline.cmdpos - 1) + 1; | |
2907 if (arabic_combine(utf_ptr2char(ccline.cmdbuff | |
2908 + ccline.cmdpos - i), c)) | |
2909 { | |
2910 ccline.cmdpos -= i; | |
2911 len += i; | |
2912 } | |
2913 else | |
2914 i = 0; | |
2915 } | |
2916 # endif | |
2917 if (i != 0) | |
2918 { | |
2919 /* Also backup the cursor position. */ | |
2920 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos); | |
2921 ccline.cmdspos -= i; | |
2922 msg_col -= i; | |
2923 if (msg_col < 0) | |
2924 { | |
2925 msg_col += Columns; | |
2926 --msg_row; | |
2927 } | |
2928 } | |
2929 } | |
2930 #endif | |
2931 | |
2932 if (redraw && !cmd_silent) | |
2933 { | |
2934 msg_no_more = TRUE; | |
2935 i = cmdline_row; | |
3114 | 2936 cursorcmd(); |
7 | 2937 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); |
2938 /* Avoid clearing the rest of the line too often. */ | |
2939 if (cmdline_row != i || ccline.overstrike) | |
2940 msg_clr_eos(); | |
2941 msg_no_more = FALSE; | |
2942 } | |
2943 #ifdef FEAT_FKMAP | |
2944 /* | |
2945 * If we are in Farsi command mode, the character input must be in | |
2946 * Insert mode. So do not advance the cmdpos. | |
2947 */ | |
2948 if (!cmd_fkmap) | |
2949 #endif | |
2950 { | |
2951 if (KeyTyped) | |
534 | 2952 { |
7 | 2953 m = Columns * Rows; |
534 | 2954 if (m < 0) /* overflow, Columns or Rows at weird value */ |
2955 m = MAXCOL; | |
2956 } | |
7 | 2957 else |
2958 m = MAXCOL; | |
2959 for (i = 0; i < len; ++i) | |
2960 { | |
2961 c = cmdline_charsize(ccline.cmdpos); | |
2962 #ifdef FEAT_MBYTE | |
2963 /* count ">" for a double-wide char that doesn't fit. */ | |
2964 if (has_mbyte) | |
2965 correct_cmdspos(ccline.cmdpos, c); | |
2966 #endif | |
1612 | 2967 /* Stop cursor at the end of the screen, but do increment the |
2968 * insert position, so that entering a very long command | |
2969 * works, even though you can't see it. */ | |
2970 if (ccline.cmdspos + c < m) | |
2971 ccline.cmdspos += c; | |
7 | 2972 #ifdef FEAT_MBYTE |
2973 if (has_mbyte) | |
2974 { | |
474 | 2975 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1; |
7 | 2976 if (c > len - i - 1) |
2977 c = len - i - 1; | |
2978 ccline.cmdpos += c; | |
2979 i += c; | |
2980 } | |
2981 #endif | |
2982 ++ccline.cmdpos; | |
2983 } | |
2984 } | |
2985 } | |
2986 if (redraw) | |
2987 msg_check(); | |
2988 return retval; | |
2989 } | |
2990 | |
95 | 2991 static struct cmdline_info prev_ccline; |
2992 static int prev_ccline_used = FALSE; | |
2993 | |
2994 /* | |
2995 * Save ccline, because obtaining the "=" register may execute "normal :cmd" | |
2996 * and overwrite it. But get_cmdline_str() may need it, thus make it | |
2997 * available globally in prev_ccline. | |
2998 */ | |
2999 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3000 save_cmdline(struct cmdline_info *ccp) |
95 | 3001 { |
3002 if (!prev_ccline_used) | |
3003 { | |
3004 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info)); | |
3005 prev_ccline_used = TRUE; | |
3006 } | |
3007 *ccp = prev_ccline; | |
3008 prev_ccline = ccline; | |
3009 ccline.cmdbuff = NULL; | |
3010 ccline.cmdprompt = NULL; | |
1718 | 3011 ccline.xpc = NULL; |
95 | 3012 } |
3013 | |
3014 /* | |
1214 | 3015 * Restore ccline after it has been saved with save_cmdline(). |
95 | 3016 */ |
3017 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3018 restore_cmdline(struct cmdline_info *ccp) |
95 | 3019 { |
3020 ccline = prev_ccline; | |
3021 prev_ccline = *ccp; | |
3022 } | |
3023 | |
849 | 3024 #if defined(FEAT_EVAL) || defined(PROTO) |
3025 /* | |
3026 * Save the command line into allocated memory. Returns a pointer to be | |
3027 * passed to restore_cmdline_alloc() later. | |
3028 * Returns NULL when failed. | |
3029 */ | |
3030 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3031 save_cmdline_alloc(void) |
849 | 3032 { |
3033 struct cmdline_info *p; | |
3034 | |
3035 p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info)); | |
3036 if (p != NULL) | |
3037 save_cmdline(p); | |
3038 return (char_u *)p; | |
3039 } | |
3040 | |
3041 /* | |
3042 * Restore the command line from the return value of save_cmdline_alloc(). | |
3043 */ | |
3044 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3045 restore_cmdline_alloc(char_u *p) |
849 | 3046 { |
3047 if (p != NULL) | |
3048 { | |
3049 restore_cmdline((struct cmdline_info *)p); | |
3050 vim_free(p); | |
3051 } | |
3052 } | |
3053 #endif | |
3054 | |
15 | 3055 /* |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
3056 * Paste a yank register into the command line. |
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
3057 * Used by CTRL-R command in command-line mode. |
15 | 3058 * insert_reg() can't be used here, because special characters from the |
3059 * register contents will be interpreted as commands. | |
3060 * | |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
3061 * Return FAIL for failure, OK otherwise. |
15 | 3062 */ |
3063 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3064 cmdline_paste( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3065 int regname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3066 int literally, /* Insert text literally instead of "as typed" */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3067 int remcr) /* remove trailing CR */ |
15 | 3068 { |
3069 long i; | |
3070 char_u *arg; | |
772 | 3071 char_u *p; |
15 | 3072 int allocated; |
3073 struct cmdline_info save_ccline; | |
3074 | |
3075 /* check for valid regname; also accept special characters for CTRL-R in | |
3076 * the command line */ | |
3077 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W | |
3078 && regname != Ctrl_A && !valid_yank_reg(regname, FALSE)) | |
3079 return FAIL; | |
3080 | |
3081 /* A register containing CTRL-R can cause an endless loop. Allow using | |
3082 * CTRL-C to break the loop. */ | |
3083 line_breakcheck(); | |
3084 if (got_int) | |
3085 return FAIL; | |
3086 | |
3087 #ifdef FEAT_CLIPBOARD | |
3088 regname = may_get_selection(regname); | |
3089 #endif | |
3090 | |
634 | 3091 /* Need to save and restore ccline. And set "textlock" to avoid nasty |
632 | 3092 * things like going to another buffer when evaluating an expression. */ |
95 | 3093 save_cmdline(&save_ccline); |
634 | 3094 ++textlock; |
15 | 3095 i = get_spec_reg(regname, &arg, &allocated, TRUE); |
634 | 3096 --textlock; |
95 | 3097 restore_cmdline(&save_ccline); |
15 | 3098 |
3099 if (i) | |
3100 { | |
3101 /* Got the value of a special register in "arg". */ | |
3102 if (arg == NULL) | |
3103 return FAIL; | |
772 | 3104 |
3105 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate | |
3106 * part of the word. */ | |
3107 p = arg; | |
3108 if (p_is && regname == Ctrl_W) | |
3109 { | |
3110 char_u *w; | |
3111 int len; | |
3112 | |
3113 /* Locate start of last word in the cmd buffer. */ | |
2937 | 3114 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; ) |
772 | 3115 { |
3116 #ifdef FEAT_MBYTE | |
3117 if (has_mbyte) | |
3118 { | |
3119 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1; | |
3120 if (!vim_iswordc(mb_ptr2char(w - len))) | |
3121 break; | |
3122 w -= len; | |
3123 } | |
3124 else | |
3125 #endif | |
3126 { | |
3127 if (!vim_iswordc(w[-1])) | |
3128 break; | |
3129 --w; | |
3130 } | |
3131 } | |
2937 | 3132 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w); |
772 | 3133 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0) |
3134 p += len; | |
3135 } | |
3136 | |
3137 cmdline_paste_str(p, literally); | |
15 | 3138 if (allocated) |
3139 vim_free(arg); | |
3140 return OK; | |
3141 } | |
3142 | |
1015 | 3143 return cmdline_paste_reg(regname, literally, remcr); |
15 | 3144 } |
3145 | |
3146 /* | |
3147 * Put a string on the command line. | |
3148 * When "literally" is TRUE, insert literally. | |
3149 * When "literally" is FALSE, insert as typed, but don't leave the command | |
3150 * line. | |
3151 */ | |
3152 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3153 cmdline_paste_str(char_u *s, int literally) |
15 | 3154 { |
3155 int c, cv; | |
3156 | |
3157 if (literally) | |
3158 put_on_cmdline(s, -1, TRUE); | |
3159 else | |
3160 while (*s != NUL) | |
3161 { | |
3162 cv = *s; | |
3163 if (cv == Ctrl_V && s[1]) | |
3164 ++s; | |
3165 #ifdef FEAT_MBYTE | |
3166 if (has_mbyte) | |
1606 | 3167 c = mb_cptr2char_adv(&s); |
15 | 3168 else |
3169 #endif | |
3170 c = *s++; | |
3628 | 3171 if (cv == Ctrl_V || c == ESC || c == Ctrl_C |
3172 || c == CAR || c == NL || c == Ctrl_L | |
15 | 3173 #ifdef UNIX |
3174 || c == intr_char | |
3175 #endif | |
3176 || (c == Ctrl_BSL && *s == Ctrl_N)) | |
3177 stuffcharReadbuff(Ctrl_V); | |
3178 stuffcharReadbuff(c); | |
3179 } | |
3180 } | |
3181 | |
7 | 3182 #ifdef FEAT_WILDMENU |
3183 /* | |
3184 * Delete characters on the command line, from "from" to the current | |
3185 * position. | |
3186 */ | |
3187 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3188 cmdline_del(int from) |
7 | 3189 { |
3190 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos, | |
3191 (size_t)(ccline.cmdlen - ccline.cmdpos + 1)); | |
3192 ccline.cmdlen -= ccline.cmdpos - from; | |
3193 ccline.cmdpos = from; | |
3194 } | |
3195 #endif | |
3196 | |
3197 /* | |
1214 | 3198 * this function is called when the screen size changes and with incremental |
7 | 3199 * search |
3200 */ | |
3201 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3202 redrawcmdline(void) |
7 | 3203 { |
3204 if (cmd_silent) | |
3205 return; | |
3206 need_wait_return = FALSE; | |
3207 compute_cmdrow(); | |
3208 redrawcmd(); | |
3209 cursorcmd(); | |
3210 } | |
3211 | |
3212 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3213 redrawcmdprompt(void) |
7 | 3214 { |
3215 int i; | |
3216 | |
3217 if (cmd_silent) | |
3218 return; | |
531 | 3219 if (ccline.cmdfirstc != NUL) |
7 | 3220 msg_putchar(ccline.cmdfirstc); |
3221 if (ccline.cmdprompt != NULL) | |
3222 { | |
3223 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr); | |
3224 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns; | |
3225 /* do the reverse of set_cmdspos() */ | |
531 | 3226 if (ccline.cmdfirstc != NUL) |
7 | 3227 --ccline.cmdindent; |
3228 } | |
3229 else | |
3230 for (i = ccline.cmdindent; i > 0; --i) | |
3231 msg_putchar(' '); | |
3232 } | |
3233 | |
3234 /* | |
3235 * Redraw what is currently on the command line. | |
3236 */ | |
3237 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3238 redrawcmd(void) |
7 | 3239 { |
3240 if (cmd_silent) | |
3241 return; | |
3242 | |
683 | 3243 /* when 'incsearch' is set there may be no command line while redrawing */ |
3244 if (ccline.cmdbuff == NULL) | |
3245 { | |
3246 windgoto(cmdline_row, 0); | |
3247 msg_clr_eos(); | |
3248 return; | |
3249 } | |
3250 | |
7 | 3251 msg_start(); |
3252 redrawcmdprompt(); | |
3253 | |
3254 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */ | |
3255 msg_no_more = TRUE; | |
3256 draw_cmdline(0, ccline.cmdlen); | |
3257 msg_clr_eos(); | |
3258 msg_no_more = FALSE; | |
3259 | |
3260 set_cmdspos_cursor(); | |
3261 | |
3262 /* | |
3263 * An emsg() before may have set msg_scroll. This is used in normal mode, | |
3264 * in cmdline mode we can reset them now. | |
3265 */ | |
3266 msg_scroll = FALSE; /* next message overwrites cmdline */ | |
3267 | |
3268 /* Typing ':' at the more prompt may set skip_redraw. We don't want this | |
3269 * in cmdline mode */ | |
3270 skip_redraw = FALSE; | |
3271 } | |
3272 | |
3273 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3274 compute_cmdrow(void) |
7 | 3275 { |
540 | 3276 if (exmode_active || msg_scrolled != 0) |
7 | 3277 cmdline_row = Rows - 1; |
3278 else | |
3279 cmdline_row = W_WINROW(lastwin) + lastwin->w_height | |
3280 + W_STATUS_HEIGHT(lastwin); | |
3281 } | |
3282 | |
3283 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3284 cursorcmd(void) |
7 | 3285 { |
3286 if (cmd_silent) | |
3287 return; | |
3288 | |
3289 #ifdef FEAT_RIGHTLEFT | |
3290 if (cmdmsg_rl) | |
3291 { | |
3292 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1)); | |
3293 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1; | |
3294 if (msg_row <= 0) | |
3295 msg_row = Rows - 1; | |
3296 } | |
3297 else | |
3298 #endif | |
3299 { | |
3300 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns); | |
3301 msg_col = ccline.cmdspos % (int)Columns; | |
3302 if (msg_row >= Rows) | |
3303 msg_row = Rows - 1; | |
3304 } | |
3305 | |
3306 windgoto(msg_row, msg_col); | |
3307 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) | |
3308 redrawcmd_preedit(); | |
3309 #endif | |
3310 #ifdef MCH_CURSOR_SHAPE | |
3311 mch_update_cursor(); | |
3312 #endif | |
3313 } | |
3314 | |
3315 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3316 gotocmdline(int clr) |
7 | 3317 { |
3318 msg_start(); | |
3319 #ifdef FEAT_RIGHTLEFT | |
3320 if (cmdmsg_rl) | |
3321 msg_col = Columns - 1; | |
3322 else | |
3323 #endif | |
3324 msg_col = 0; /* always start in column 0 */ | |
3325 if (clr) /* clear the bottom line(s) */ | |
3326 msg_clr_eos(); /* will reset clear_cmdline */ | |
3327 windgoto(cmdline_row, 0); | |
3328 } | |
3329 | |
3330 /* | |
3331 * Check the word in front of the cursor for an abbreviation. | |
3332 * Called when the non-id character "c" has been entered. | |
3333 * When an abbreviation is recognized it is removed from the text with | |
3334 * backspaces and the replacement string is inserted, followed by "c". | |
3335 */ | |
3336 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3337 ccheck_abbr(int c) |
7 | 3338 { |
3339 if (p_paste || no_abbr) /* no abbreviations or in paste mode */ | |
3340 return FALSE; | |
3341 | |
3342 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0); | |
3343 } | |
3344 | |
3164 | 3345 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
3346 static int | |
3347 #ifdef __BORLANDC__ | |
3348 _RTLENTRYF | |
3349 #endif | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3350 sort_func_compare(const void *s1, const void *s2) |
3164 | 3351 { |
3352 char_u *p1 = *(char_u **)s1; | |
3353 char_u *p2 = *(char_u **)s2; | |
3354 | |
3355 if (*p1 != '<' && *p2 == '<') return -1; | |
3356 if (*p1 == '<' && *p2 != '<') return 1; | |
3357 return STRCMP(p1, p2); | |
3358 } | |
3359 #endif | |
3360 | |
7 | 3361 /* |
3362 * Return FAIL if this is not an appropriate context in which to do | |
3363 * completion of anything, return OK if it is (even if there are no matches). | |
3364 * For the caller, this means that the character is just passed through like a | |
3365 * normal character (instead of being expanded). This allows :s/^I^D etc. | |
3366 */ | |
3367 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3368 nextwild( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3369 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3370 int type, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3371 int options, /* extra options for ExpandOne() */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3372 int escape) /* if TRUE, escape the returned matches */ |
7 | 3373 { |
3374 int i, j; | |
3375 char_u *p1; | |
3376 char_u *p2; | |
3377 int difflen; | |
3378 int v; | |
3379 | |
3380 if (xp->xp_numfiles == -1) | |
3381 { | |
3382 set_expand_context(xp); | |
3383 cmd_showtail = expand_showtail(xp); | |
3384 } | |
3385 | |
3386 if (xp->xp_context == EXPAND_UNSUCCESSFUL) | |
3387 { | |
3388 beep_flush(); | |
3389 return OK; /* Something illegal on command line */ | |
3390 } | |
3391 if (xp->xp_context == EXPAND_NOTHING) | |
3392 { | |
3393 /* Caller can use the character as a normal char instead */ | |
3394 return FAIL; | |
3395 } | |
3396 | |
3397 MSG_PUTS("..."); /* show that we are busy */ | |
3398 out_flush(); | |
3399 | |
3400 i = (int)(xp->xp_pattern - ccline.cmdbuff); | |
1965 | 3401 xp->xp_pattern_len = ccline.cmdpos - i; |
7 | 3402 |
3403 if (type == WILD_NEXT || type == WILD_PREV) | |
3404 { | |
3405 /* | |
3406 * Get next/previous match for a previous expanded pattern. | |
3407 */ | |
3408 p2 = ExpandOne(xp, NULL, NULL, 0, type); | |
3409 } | |
3410 else | |
3411 { | |
3412 /* | |
3413 * Translate string into pattern and expand it. | |
3414 */ | |
1965 | 3415 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len, |
3416 xp->xp_context)) == NULL) | |
7 | 3417 p2 = NULL; |
3418 else | |
3419 { | |
2652 | 3420 int use_options = options | |
3961 | 3421 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT; |
3422 if (escape) | |
3423 use_options |= WILD_ESCAPE; | |
2652 | 3424 |
3425 if (p_wic) | |
3426 use_options += WILD_ICASE; | |
1965 | 3427 p2 = ExpandOne(xp, p1, |
3428 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len), | |
2652 | 3429 use_options, type); |
7 | 3430 vim_free(p1); |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
2016
diff
changeset
|
3431 /* longest match: make sure it is not shorter, happens with :help */ |
7 | 3432 if (p2 != NULL && type == WILD_LONGEST) |
3433 { | |
1965 | 3434 for (j = 0; j < xp->xp_pattern_len; ++j) |
7 | 3435 if (ccline.cmdbuff[i + j] == '*' |
3436 || ccline.cmdbuff[i + j] == '?') | |
3437 break; | |
3438 if ((int)STRLEN(p2) < j) | |
3439 { | |
3440 vim_free(p2); | |
3441 p2 = NULL; | |
3442 } | |
3443 } | |
3444 } | |
3445 } | |
3446 | |
3447 if (p2 != NULL && !got_int) | |
3448 { | |
1965 | 3449 difflen = (int)STRLEN(p2) - xp->xp_pattern_len; |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
3450 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen) |
7 | 3451 { |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
3452 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4); |
7 | 3453 xp->xp_pattern = ccline.cmdbuff + i; |
3454 } | |
3455 else | |
3456 v = OK; | |
3457 if (v == OK) | |
3458 { | |
323 | 3459 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen], |
3460 &ccline.cmdbuff[ccline.cmdpos], | |
3461 (size_t)(ccline.cmdlen - ccline.cmdpos + 1)); | |
3462 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2)); | |
7 | 3463 ccline.cmdlen += difflen; |
3464 ccline.cmdpos += difflen; | |
3465 } | |
3466 } | |
3467 vim_free(p2); | |
3468 | |
3469 redrawcmd(); | |
33 | 3470 cursorcmd(); |
7 | 3471 |
3472 /* When expanding a ":map" command and no matches are found, assume that | |
3473 * the key is supposed to be inserted literally */ | |
3474 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL) | |
3475 return FAIL; | |
3476 | |
3477 if (xp->xp_numfiles <= 0 && p2 == NULL) | |
3478 beep_flush(); | |
3479 else if (xp->xp_numfiles == 1) | |
3480 /* free expanded pattern */ | |
3481 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE); | |
3482 | |
3483 return OK; | |
3484 } | |
3485 | |
3486 /* | |
3487 * Do wildcard expansion on the string 'str'. | |
3488 * Chars that should not be expanded must be preceded with a backslash. | |
1612 | 3489 * Return a pointer to allocated memory containing the new string. |
7 | 3490 * Return NULL for failure. |
3491 * | |
1412 | 3492 * "orig" is the originally expanded string, copied to allocated memory. It |
3493 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or | |
3494 * WILD_PREV "orig" should be NULL. | |
3495 * | |
838 | 3496 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode" |
3497 * is WILD_EXPAND_FREE or WILD_ALL. | |
7 | 3498 * |
3499 * mode = WILD_FREE: just free previously expanded matches | |
3500 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches | |
3501 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches | |
3502 * mode = WILD_NEXT: use next match in multiple match, wrap to first | |
3503 * mode = WILD_PREV: use previous match in multiple match, wrap to first | |
3504 * mode = WILD_ALL: return all matches concatenated | |
3505 * mode = WILD_LONGEST: return longest matched part | |
3398 | 3506 * mode = WILD_ALL_KEEP: get all matches, keep matches |
7 | 3507 * |
3508 * options = WILD_LIST_NOTFOUND: list entries without a match | |
3509 * options = WILD_HOME_REPLACE: do home_replace() for buffer names | |
3510 * options = WILD_USE_NL: Use '\n' for WILD_ALL | |
3511 * options = WILD_NO_BEEP: Don't beep for multiple matches | |
3512 * options = WILD_ADD_SLASH: add a slash after directory names | |
3513 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries | |
3514 * options = WILD_SILENT: don't print warning messages | |
3515 * options = WILD_ESCAPE: put backslash before special chars | |
2652 | 3516 * options = WILD_ICASE: ignore case for files |
7 | 3517 * |
3518 * The variables xp->xp_context and xp->xp_backslash must have been set! | |
3519 */ | |
3520 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3521 ExpandOne( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3522 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3523 char_u *str, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3524 char_u *orig, /* allocated copy of original of expanded string */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3525 int options, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3526 int mode) |
7 | 3527 { |
3528 char_u *ss = NULL; | |
3529 static int findex; | |
3530 static char_u *orig_save = NULL; /* kept value of orig */ | |
1432 | 3531 int orig_saved = FALSE; |
7 | 3532 int i; |
3533 long_u len; | |
3534 int non_suf_match; /* number without matching suffix */ | |
3535 | |
3536 /* | |
3537 * first handle the case of using an old match | |
3538 */ | |
3539 if (mode == WILD_NEXT || mode == WILD_PREV) | |
3540 { | |
3541 if (xp->xp_numfiles > 0) | |
3542 { | |
3543 if (mode == WILD_PREV) | |
3544 { | |
3545 if (findex == -1) | |
3546 findex = xp->xp_numfiles; | |
3547 --findex; | |
3548 } | |
3549 else /* mode == WILD_NEXT */ | |
3550 ++findex; | |
3551 | |
3552 /* | |
3553 * When wrapping around, return the original string, set findex to | |
3554 * -1. | |
3555 */ | |
3556 if (findex < 0) | |
3557 { | |
3558 if (orig_save == NULL) | |
3559 findex = xp->xp_numfiles - 1; | |
3560 else | |
3561 findex = -1; | |
3562 } | |
3563 if (findex >= xp->xp_numfiles) | |
3564 { | |
3565 if (orig_save == NULL) | |
3566 findex = 0; | |
3567 else | |
3568 findex = -1; | |
3569 } | |
3570 #ifdef FEAT_WILDMENU | |
3571 if (p_wmnu) | |
3572 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files, | |
3573 findex, cmd_showtail); | |
3574 #endif | |
3575 if (findex == -1) | |
3576 return vim_strsave(orig_save); | |
3577 return vim_strsave(xp->xp_files[findex]); | |
3578 } | |
3579 else | |
3580 return NULL; | |
3581 } | |
3582 | |
1412 | 3583 /* free old names */ |
7 | 3584 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST) |
3585 { | |
3586 FreeWild(xp->xp_numfiles, xp->xp_files); | |
3587 xp->xp_numfiles = -1; | |
3588 vim_free(orig_save); | |
3589 orig_save = NULL; | |
3590 } | |
3591 findex = 0; | |
3592 | |
3593 if (mode == WILD_FREE) /* only release file name */ | |
3594 return NULL; | |
3595 | |
3596 if (xp->xp_numfiles == -1) | |
3597 { | |
3598 vim_free(orig_save); | |
3599 orig_save = orig; | |
1432 | 3600 orig_saved = TRUE; |
7 | 3601 |
3602 /* | |
3603 * Do the expansion. | |
3604 */ | |
3605 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files, | |
3606 options) == FAIL) | |
3607 { | |
3608 #ifdef FNAME_ILLEGAL | |
3609 /* Illegal file name has been silently skipped. But when there | |
3610 * are wildcards, the real problem is that there was no match, | |
3611 * causing the pattern to be added, which has illegal characters. | |
3612 */ | |
3613 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND)) | |
3614 EMSG2(_(e_nomatch2), str); | |
3615 #endif | |
3616 } | |
3617 else if (xp->xp_numfiles == 0) | |
3618 { | |
3619 if (!(options & WILD_SILENT)) | |
3620 EMSG2(_(e_nomatch2), str); | |
3621 } | |
3622 else | |
3623 { | |
3624 /* Escape the matches for use on the command line. */ | |
3625 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options); | |
3626 | |
3627 /* | |
3628 * Check for matching suffixes in file names. | |
3629 */ | |
3398 | 3630 if (mode != WILD_ALL && mode != WILD_ALL_KEEP |
3631 && mode != WILD_LONGEST) | |
7 | 3632 { |
3633 if (xp->xp_numfiles) | |
3634 non_suf_match = xp->xp_numfiles; | |
3635 else | |
3636 non_suf_match = 1; | |
3637 if ((xp->xp_context == EXPAND_FILES | |
3638 || xp->xp_context == EXPAND_DIRECTORIES) | |
3639 && xp->xp_numfiles > 1) | |
3640 { | |
3641 /* | |
3642 * More than one match; check suffix. | |
3643 * The files will have been sorted on matching suffix in | |
3644 * expand_wildcards, only need to check the first two. | |
3645 */ | |
3646 non_suf_match = 0; | |
3647 for (i = 0; i < 2; ++i) | |
3648 if (match_suffix(xp->xp_files[i])) | |
3649 ++non_suf_match; | |
3650 } | |
3651 if (non_suf_match != 1) | |
3652 { | |
3653 /* Can we ever get here unless it's while expanding | |
3654 * interactively? If not, we can get rid of this all | |
3655 * together. Don't really want to wait for this message | |
3656 * (and possibly have to hit return to continue!). | |
3657 */ | |
3658 if (!(options & WILD_SILENT)) | |
3659 EMSG(_(e_toomany)); | |
3660 else if (!(options & WILD_NO_BEEP)) | |
3661 beep_flush(); | |
3662 } | |
3663 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE)) | |
3664 ss = vim_strsave(xp->xp_files[0]); | |
3665 } | |
3666 } | |
3667 } | |
3668 | |
3669 /* Find longest common part */ | |
3670 if (mode == WILD_LONGEST && xp->xp_numfiles > 0) | |
3671 { | |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3672 int mb_len = 1; |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3673 int c0, ci; |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3674 |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3675 for (len = 0; xp->xp_files[0][len]; len += mb_len) |
7 | 3676 { |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3677 #ifdef FEAT_MBYTE |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3678 if (has_mbyte) |
7 | 3679 { |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3680 mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]); |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3681 c0 =(* mb_ptr2char)(&xp->xp_files[0][len]); |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3682 } |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3683 else |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3684 #endif |
7250
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
3685 c0 = xp->xp_files[0][len]; |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3686 for (i = 1; i < xp->xp_numfiles; ++i) |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3687 { |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3688 #ifdef FEAT_MBYTE |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3689 if (has_mbyte) |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3690 ci =(* mb_ptr2char)(&xp->xp_files[i][len]); |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3691 else |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3692 #endif |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3693 ci = xp->xp_files[i][len]; |
4242 | 3694 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES |
7 | 3695 || xp->xp_context == EXPAND_FILES |
714 | 3696 || xp->xp_context == EXPAND_SHELLCMD |
4242 | 3697 || xp->xp_context == EXPAND_BUFFERS)) |
7 | 3698 { |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3699 if (MB_TOLOWER(c0) != MB_TOLOWER(ci)) |
7 | 3700 break; |
3701 } | |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3702 else if (c0 != ci) |
7 | 3703 break; |
3704 } | |
3705 if (i < xp->xp_numfiles) | |
3706 { | |
3707 if (!(options & WILD_NO_BEEP)) | |
6949 | 3708 vim_beep(BO_WILD); |
7 | 3709 break; |
3710 } | |
3711 } | |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3712 |
7 | 3713 ss = alloc((unsigned)len + 1); |
3714 if (ss) | |
419 | 3715 vim_strncpy(ss, xp->xp_files[0], (size_t)len); |
7 | 3716 findex = -1; /* next p_wc gets first one */ |
3717 } | |
3718 | |
3719 /* Concatenate all matching names */ | |
3720 if (mode == WILD_ALL && xp->xp_numfiles > 0) | |
3721 { | |
3722 len = 0; | |
3723 for (i = 0; i < xp->xp_numfiles; ++i) | |
3724 len += (long_u)STRLEN(xp->xp_files[i]) + 1; | |
3725 ss = lalloc(len, TRUE); | |
3726 if (ss != NULL) | |
3727 { | |
3728 *ss = NUL; | |
3729 for (i = 0; i < xp->xp_numfiles; ++i) | |
3730 { | |
3731 STRCAT(ss, xp->xp_files[i]); | |
3732 if (i != xp->xp_numfiles - 1) | |
3733 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " "); | |
3734 } | |
3735 } | |
3736 } | |
3737 | |
3738 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL) | |
3739 ExpandCleanup(xp); | |
3740 | |
1412 | 3741 /* Free "orig" if it wasn't stored in "orig_save". */ |
1432 | 3742 if (!orig_saved) |
1412 | 3743 vim_free(orig); |
3744 | |
7 | 3745 return ss; |
3746 } | |
3747 | |
3748 /* | |
3749 * Prepare an expand structure for use. | |
3750 */ | |
3751 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3752 ExpandInit(expand_T *xp) |
7 | 3753 { |
1718 | 3754 xp->xp_pattern = NULL; |
1965 | 3755 xp->xp_pattern_len = 0; |
7 | 3756 xp->xp_backslash = XP_BS_NONE; |
632 | 3757 #ifndef BACKSLASH_IN_FILENAME |
3758 xp->xp_shell = FALSE; | |
3759 #endif | |
7 | 3760 xp->xp_numfiles = -1; |
3761 xp->xp_files = NULL; | |
632 | 3762 #if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL) |
3763 xp->xp_arg = NULL; | |
3764 #endif | |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
3765 xp->xp_line = NULL; |
7 | 3766 } |
3767 | |
3768 /* | |
3769 * Cleanup an expand structure after use. | |
3770 */ | |
3771 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3772 ExpandCleanup(expand_T *xp) |
7 | 3773 { |
3774 if (xp->xp_numfiles >= 0) | |
3775 { | |
3776 FreeWild(xp->xp_numfiles, xp->xp_files); | |
3777 xp->xp_numfiles = -1; | |
3778 } | |
3779 } | |
3780 | |
3781 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3782 ExpandEscape( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3783 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3784 char_u *str, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3785 int numfiles, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3786 char_u **files, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3787 int options) |
7 | 3788 { |
3789 int i; | |
3790 char_u *p; | |
3791 | |
3792 /* | |
3793 * May change home directory back to "~" | |
3794 */ | |
3795 if (options & WILD_HOME_REPLACE) | |
3796 tilde_replace(str, numfiles, files); | |
3797 | |
3798 if (options & WILD_ESCAPE) | |
3799 { | |
3800 if (xp->xp_context == EXPAND_FILES | |
2778 | 3801 || xp->xp_context == EXPAND_FILES_IN_PATH |
714 | 3802 || xp->xp_context == EXPAND_SHELLCMD |
7 | 3803 || xp->xp_context == EXPAND_BUFFERS |
3804 || xp->xp_context == EXPAND_DIRECTORIES) | |
3805 { | |
3806 /* | |
3807 * Insert a backslash into a file name before a space, \, %, # | |
3808 * and wildmatch characters, except '~'. | |
3809 */ | |
3810 for (i = 0; i < numfiles; ++i) | |
3811 { | |
3812 /* for ":set path=" we need to escape spaces twice */ | |
3813 if (xp->xp_backslash == XP_BS_THREE) | |
3814 { | |
3815 p = vim_strsave_escaped(files[i], (char_u *)" "); | |
3816 if (p != NULL) | |
3817 { | |
3818 vim_free(files[i]); | |
3819 files[i] = p; | |
719 | 3820 #if defined(BACKSLASH_IN_FILENAME) |
7 | 3821 p = vim_strsave_escaped(files[i], (char_u *)" "); |
3822 if (p != NULL) | |
3823 { | |
3824 vim_free(files[i]); | |
3825 files[i] = p; | |
3826 } | |
3827 #endif | |
3828 } | |
3829 } | |
1589 | 3830 #ifdef BACKSLASH_IN_FILENAME |
3831 p = vim_strsave_fnameescape(files[i], FALSE); | |
3832 #else | |
1586 | 3833 p = vim_strsave_fnameescape(files[i], xp->xp_shell); |
1589 | 3834 #endif |
7 | 3835 if (p != NULL) |
3836 { | |
3837 vim_free(files[i]); | |
3838 files[i] = p; | |
3839 } | |
3840 | |
3841 /* If 'str' starts with "\~", replace "~" at start of | |
3842 * files[i] with "\~". */ | |
3843 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~') | |
435 | 3844 escape_fname(&files[i]); |
7 | 3845 } |
3846 xp->xp_backslash = XP_BS_NONE; | |
435 | 3847 |
3848 /* If the first file starts with a '+' escape it. Otherwise it | |
3849 * could be seen as "+cmd". */ | |
3850 if (*files[0] == '+') | |
3851 escape_fname(&files[0]); | |
7 | 3852 } |
3853 else if (xp->xp_context == EXPAND_TAGS) | |
3854 { | |
3855 /* | |
3856 * Insert a backslash before characters in a tag name that | |
3857 * would terminate the ":tag" command. | |
3858 */ | |
3859 for (i = 0; i < numfiles; ++i) | |
3860 { | |
3861 p = vim_strsave_escaped(files[i], (char_u *)"\\|\""); | |
3862 if (p != NULL) | |
3863 { | |
3864 vim_free(files[i]); | |
3865 files[i] = p; | |
3866 } | |
3867 } | |
3868 } | |
3869 } | |
3870 } | |
3871 | |
3872 /* | |
1586 | 3873 * Escape special characters in "fname" for when used as a file name argument |
3874 * after a Vim command, or, when "shell" is non-zero, a shell command. | |
3875 * Returns the result in allocated memory. | |
3876 */ | |
3877 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3878 vim_strsave_fnameescape(char_u *fname, int shell) |
1586 | 3879 { |
1685 | 3880 char_u *p; |
1586 | 3881 #ifdef BACKSLASH_IN_FILENAME |
3882 char_u buf[20]; | |
3883 int j = 0; | |
3884 | |
5481 | 3885 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */ |
1586 | 3886 for (p = PATH_ESC_CHARS; *p != NUL; ++p) |
5481 | 3887 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p)) |
1586 | 3888 buf[j++] = *p; |
3889 buf[j] = NUL; | |
1700 | 3890 p = vim_strsave_escaped(fname, buf); |
1586 | 3891 #else |
1685 | 3892 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS); |
3893 if (shell && csh_like_shell() && p != NULL) | |
3894 { | |
3895 char_u *s; | |
3896 | |
3897 /* For csh and similar shells need to put two backslashes before '!'. | |
3898 * One is taken by Vim, one by the shell. */ | |
3899 s = vim_strsave_escaped(p, (char_u *)"!"); | |
3900 vim_free(p); | |
3901 p = s; | |
3902 } | |
1700 | 3903 #endif |
3904 | |
3905 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and | |
3906 * ":write". "cd -" has a special meaning. */ | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2433
diff
changeset
|
3907 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL))) |
1700 | 3908 escape_fname(&p); |
3909 | |
1685 | 3910 return p; |
1586 | 3911 } |
3912 | |
3913 /* | |
435 | 3914 * Put a backslash before the file name in "pp", which is in allocated memory. |
3915 */ | |
3916 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3917 escape_fname(char_u **pp) |
435 | 3918 { |
3919 char_u *p; | |
3920 | |
3921 p = alloc((unsigned)(STRLEN(*pp) + 2)); | |
3922 if (p != NULL) | |
3923 { | |
3924 p[0] = '\\'; | |
3925 STRCPY(p + 1, *pp); | |
3926 vim_free(*pp); | |
3927 *pp = p; | |
3928 } | |
3929 } | |
3930 | |
3931 /* | |
7 | 3932 * For each file name in files[num_files]: |
3933 * If 'orig_pat' starts with "~/", replace the home directory with "~". | |
3934 */ | |
3935 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3936 tilde_replace( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3937 char_u *orig_pat, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3938 int num_files, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3939 char_u **files) |
7 | 3940 { |
3941 int i; | |
3942 char_u *p; | |
3943 | |
3944 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1])) | |
3945 { | |
3946 for (i = 0; i < num_files; ++i) | |
3947 { | |
3948 p = home_replace_save(NULL, files[i]); | |
3949 if (p != NULL) | |
3950 { | |
3951 vim_free(files[i]); | |
3952 files[i] = p; | |
3953 } | |
3954 } | |
3955 } | |
3956 } | |
3957 | |
3958 /* | |
3959 * Show all matches for completion on the command line. | |
3960 * Returns EXPAND_NOTHING when the character that triggered expansion should | |
3961 * be inserted like a normal character. | |
3962 */ | |
3963 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3964 showmatches(expand_T *xp, int wildmenu UNUSED) |
7 | 3965 { |
3966 #define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m]) | |
3967 int num_files; | |
3968 char_u **files_found; | |
3969 int i, j, k; | |
3970 int maxlen; | |
3971 int lines; | |
3972 int columns; | |
3973 char_u *p; | |
3974 int lastlen; | |
3975 int attr; | |
3976 int showtail; | |
3977 | |
3978 if (xp->xp_numfiles == -1) | |
3979 { | |
3980 set_expand_context(xp); | |
3981 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos, | |
3982 &num_files, &files_found); | |
3983 showtail = expand_showtail(xp); | |
3984 if (i != EXPAND_OK) | |
3985 return i; | |
3986 | |
3987 } | |
3988 else | |
3989 { | |
3990 num_files = xp->xp_numfiles; | |
3991 files_found = xp->xp_files; | |
3992 showtail = cmd_showtail; | |
3993 } | |
3994 | |
3995 #ifdef FEAT_WILDMENU | |
3996 if (!wildmenu) | |
3997 { | |
3998 #endif | |
3999 msg_didany = FALSE; /* lines_left will be set */ | |
4000 msg_start(); /* prepare for paging */ | |
4001 msg_putchar('\n'); | |
4002 out_flush(); | |
4003 cmdline_row = msg_row; | |
4004 msg_didany = FALSE; /* lines_left will be set again */ | |
4005 msg_start(); /* prepare for paging */ | |
4006 #ifdef FEAT_WILDMENU | |
4007 } | |
4008 #endif | |
4009 | |
4010 if (got_int) | |
4011 got_int = FALSE; /* only int. the completion, not the cmd line */ | |
4012 #ifdef FEAT_WILDMENU | |
4013 else if (wildmenu) | |
4014 win_redr_status_matches(xp, num_files, files_found, 0, showtail); | |
4015 #endif | |
4016 else | |
4017 { | |
4018 /* find the length of the longest file name */ | |
4019 maxlen = 0; | |
4020 for (i = 0; i < num_files; ++i) | |
4021 { | |
4022 if (!showtail && (xp->xp_context == EXPAND_FILES | |
714 | 4023 || xp->xp_context == EXPAND_SHELLCMD |
7 | 4024 || xp->xp_context == EXPAND_BUFFERS)) |
4025 { | |
4026 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE); | |
4027 j = vim_strsize(NameBuff); | |
4028 } | |
4029 else | |
4030 j = vim_strsize(L_SHOWFILE(i)); | |
4031 if (j > maxlen) | |
4032 maxlen = j; | |
4033 } | |
4034 | |
4035 if (xp->xp_context == EXPAND_TAGS_LISTFILES) | |
4036 lines = num_files; | |
4037 else | |
4038 { | |
4039 /* compute the number of columns and lines for the listing */ | |
4040 maxlen += 2; /* two spaces between file names */ | |
4041 columns = ((int)Columns + 2) / maxlen; | |
4042 if (columns < 1) | |
4043 columns = 1; | |
4044 lines = (num_files + columns - 1) / columns; | |
4045 } | |
4046 | |
4047 attr = hl_attr(HLF_D); /* find out highlighting for directories */ | |
4048 | |
4049 if (xp->xp_context == EXPAND_TAGS_LISTFILES) | |
4050 { | |
4051 MSG_PUTS_ATTR(_("tagname"), hl_attr(HLF_T)); | |
4052 msg_clr_eos(); | |
4053 msg_advance(maxlen - 3); | |
4054 MSG_PUTS_ATTR(_(" kind file\n"), hl_attr(HLF_T)); | |
4055 } | |
4056 | |
4057 /* list the files line by line */ | |
4058 for (i = 0; i < lines; ++i) | |
4059 { | |
4060 lastlen = 999; | |
4061 for (k = i; k < num_files; k += lines) | |
4062 { | |
4063 if (xp->xp_context == EXPAND_TAGS_LISTFILES) | |
4064 { | |
4065 msg_outtrans_attr(files_found[k], hl_attr(HLF_D)); | |
4066 p = files_found[k] + STRLEN(files_found[k]) + 1; | |
4067 msg_advance(maxlen + 1); | |
4068 msg_puts(p); | |
4069 msg_advance(maxlen + 3); | |
4070 msg_puts_long_attr(p + 2, hl_attr(HLF_D)); | |
4071 break; | |
4072 } | |
4073 for (j = maxlen - lastlen; --j >= 0; ) | |
4074 msg_putchar(' '); | |
4075 if (xp->xp_context == EXPAND_FILES | |
714 | 4076 || xp->xp_context == EXPAND_SHELLCMD |
7 | 4077 || xp->xp_context == EXPAND_BUFFERS) |
4078 { | |
2118
63bf37c1e7a2
updated for version 7.2.401
Bram Moolenaar <bram@zimbu.org>
parents:
2099
diff
changeset
|
4079 /* highlight directories */ |
2128
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4080 if (xp->xp_numfiles != -1) |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4081 { |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4082 char_u *halved_slash; |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4083 char_u *exp_path; |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4084 |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4085 /* Expansion was done before and special characters |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4086 * were escaped, need to halve backslashes. Also |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4087 * $HOME has been replaced with ~/. */ |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4088 exp_path = expand_env_save_opt(files_found[k], TRUE); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4089 halved_slash = backslash_halve_save( |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4090 exp_path != NULL ? exp_path : files_found[k]); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4091 j = mch_isdir(halved_slash != NULL ? halved_slash |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4092 : files_found[k]); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4093 vim_free(exp_path); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4094 vim_free(halved_slash); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4095 } |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4096 else |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4097 /* Expansion was done here, file names are literal. */ |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4098 j = mch_isdir(files_found[k]); |
7 | 4099 if (showtail) |
4100 p = L_SHOWFILE(k); | |
4101 else | |
4102 { | |
4103 home_replace(NULL, files_found[k], NameBuff, MAXPATHL, | |
4104 TRUE); | |
4105 p = NameBuff; | |
4106 } | |
4107 } | |
4108 else | |
4109 { | |
4110 j = FALSE; | |
4111 p = L_SHOWFILE(k); | |
4112 } | |
4113 lastlen = msg_outtrans_attr(p, j ? attr : 0); | |
4114 } | |
4115 if (msg_col > 0) /* when not wrapped around */ | |
4116 { | |
4117 msg_clr_eos(); | |
4118 msg_putchar('\n'); | |
4119 } | |
4120 out_flush(); /* show one line at a time */ | |
4121 if (got_int) | |
4122 { | |
4123 got_int = FALSE; | |
4124 break; | |
4125 } | |
4126 } | |
4127 | |
4128 /* | |
4129 * we redraw the command below the lines that we have just listed | |
4130 * This is a bit tricky, but it saves a lot of screen updating. | |
4131 */ | |
4132 cmdline_row = msg_row; /* will put it back later */ | |
4133 } | |
4134 | |
4135 if (xp->xp_numfiles == -1) | |
4136 FreeWild(num_files, files_found); | |
4137 | |
4138 return EXPAND_OK; | |
4139 } | |
4140 | |
4141 /* | |
4142 * Private gettail for showmatches() (and win_redr_status_matches()): | |
4143 * Find tail of file name path, but ignore trailing "/". | |
4144 */ | |
4145 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4146 sm_gettail(char_u *s) |
7 | 4147 { |
4148 char_u *p; | |
4149 char_u *t = s; | |
4150 int had_sep = FALSE; | |
4151 | |
4152 for (p = s; *p != NUL; ) | |
4153 { | |
4154 if (vim_ispathsep(*p) | |
4155 #ifdef BACKSLASH_IN_FILENAME | |
4156 && !rem_backslash(p) | |
4157 #endif | |
4158 ) | |
4159 had_sep = TRUE; | |
4160 else if (had_sep) | |
4161 { | |
4162 t = p; | |
4163 had_sep = FALSE; | |
4164 } | |
39 | 4165 mb_ptr_adv(p); |
7 | 4166 } |
4167 return t; | |
4168 } | |
4169 | |
4170 /* | |
4171 * Return TRUE if we only need to show the tail of completion matches. | |
4172 * When not completing file names or there is a wildcard in the path FALSE is | |
4173 * returned. | |
4174 */ | |
4175 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4176 expand_showtail(expand_T *xp) |
7 | 4177 { |
4178 char_u *s; | |
4179 char_u *end; | |
4180 | |
4181 /* When not completing file names a "/" may mean something different. */ | |
714 | 4182 if (xp->xp_context != EXPAND_FILES |
4183 && xp->xp_context != EXPAND_SHELLCMD | |
4184 && xp->xp_context != EXPAND_DIRECTORIES) | |
7 | 4185 return FALSE; |
4186 | |
4187 end = gettail(xp->xp_pattern); | |
4188 if (end == xp->xp_pattern) /* there is no path separator */ | |
4189 return FALSE; | |
4190 | |
4191 for (s = xp->xp_pattern; s < end; s++) | |
4192 { | |
4193 /* Skip escaped wildcards. Only when the backslash is not a path | |
4194 * separator, on DOS the '*' "path\*\file" must not be skipped. */ | |
4195 if (rem_backslash(s)) | |
4196 ++s; | |
4197 else if (vim_strchr((char_u *)"*?[", *s) != NULL) | |
4198 return FALSE; | |
4199 } | |
4200 return TRUE; | |
4201 } | |
4202 | |
4203 /* | |
4204 * Prepare a string for expansion. | |
4205 * When expanding file names: The string will be used with expand_wildcards(). | |
5438 | 4206 * Copy "fname[len]" into allocated memory and add a '*' at the end. |
7 | 4207 * When expanding other names: The string will be used with regcomp(). Copy |
4208 * the name into allocated memory and prepend "^". | |
4209 */ | |
4210 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4211 addstar( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4212 char_u *fname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4213 int len, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4214 int context) /* EXPAND_FILES etc. */ |
7 | 4215 { |
4216 char_u *retval; | |
4217 int i, j; | |
4218 int new_len; | |
4219 char_u *tail; | |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4220 int ends_in_star; |
7 | 4221 |
714 | 4222 if (context != EXPAND_FILES |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
4223 && context != EXPAND_FILES_IN_PATH |
714 | 4224 && context != EXPAND_SHELLCMD |
4225 && context != EXPAND_DIRECTORIES) | |
7 | 4226 { |
4227 /* | |
4228 * Matching will be done internally (on something other than files). | |
4229 * So we convert the file-matching-type wildcards into our kind for | |
4230 * use with vim_regcomp(). First work out how long it will be: | |
4231 */ | |
4232 | |
4233 /* For help tags the translation is done in find_help_tags(). | |
4234 * For a tag pattern starting with "/" no translation is needed. */ | |
4235 if (context == EXPAND_HELP | |
4236 || context == EXPAND_COLORS | |
4237 || context == EXPAND_COMPILER | |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
4238 || context == EXPAND_OWNSYNTAX |
2268
aafed4a4866f
Command line completion for :ownsyntax. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
4239 || context == EXPAND_FILETYPE |
7 | 4240 || (context == EXPAND_TAGS && fname[0] == '/')) |
4241 retval = vim_strnsave(fname, len); | |
4242 else | |
4243 { | |
4244 new_len = len + 2; /* +2 for '^' at start, NUL at end */ | |
4245 for (i = 0; i < len; i++) | |
4246 { | |
4247 if (fname[i] == '*' || fname[i] == '~') | |
4248 new_len++; /* '*' needs to be replaced by ".*" | |
4249 '~' needs to be replaced by "\~" */ | |
4250 | |
4251 /* Buffer names are like file names. "." should be literal */ | |
4252 if (context == EXPAND_BUFFERS && fname[i] == '.') | |
4253 new_len++; /* "." becomes "\." */ | |
4254 | |
4255 /* Custom expansion takes care of special things, match | |
4256 * backslashes literally (perhaps also for other types?) */ | |
634 | 4257 if ((context == EXPAND_USER_DEFINED |
4258 || context == EXPAND_USER_LIST) && fname[i] == '\\') | |
7 | 4259 new_len++; /* '\' becomes "\\" */ |
4260 } | |
4261 retval = alloc(new_len); | |
4262 if (retval != NULL) | |
4263 { | |
4264 retval[0] = '^'; | |
4265 j = 1; | |
4266 for (i = 0; i < len; i++, j++) | |
4267 { | |
4268 /* Skip backslash. But why? At least keep it for custom | |
4269 * expansion. */ | |
4270 if (context != EXPAND_USER_DEFINED | |
407 | 4271 && context != EXPAND_USER_LIST |
4272 && fname[i] == '\\' | |
4273 && ++i == len) | |
7 | 4274 break; |
4275 | |
4276 switch (fname[i]) | |
4277 { | |
4278 case '*': retval[j++] = '.'; | |
4279 break; | |
4280 case '~': retval[j++] = '\\'; | |
4281 break; | |
4282 case '?': retval[j] = '.'; | |
4283 continue; | |
4284 case '.': if (context == EXPAND_BUFFERS) | |
4285 retval[j++] = '\\'; | |
4286 break; | |
407 | 4287 case '\\': if (context == EXPAND_USER_DEFINED |
4288 || context == EXPAND_USER_LIST) | |
7 | 4289 retval[j++] = '\\'; |
4290 break; | |
4291 } | |
4292 retval[j] = fname[i]; | |
4293 } | |
4294 retval[j] = NUL; | |
4295 } | |
4296 } | |
4297 } | |
4298 else | |
4299 { | |
4300 retval = alloc(len + 4); | |
4301 if (retval != NULL) | |
4302 { | |
419 | 4303 vim_strncpy(retval, fname, len); |
7 | 4304 |
4305 /* | |
831 | 4306 * Don't add a star to *, ~, ~user, $var or `cmd`. |
4307 * * would become **, which walks the whole tree. | |
7 | 4308 * ~ would be at the start of the file name, but not the tail. |
4309 * $ could be anywhere in the tail. | |
4310 * ` could be anywhere in the file name. | |
1484 | 4311 * When the name ends in '$' don't add a star, remove the '$'. |
7 | 4312 */ |
4313 tail = gettail(retval); | |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4314 ends_in_star = (len > 0 && retval[len - 1] == '*'); |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4315 #ifndef BACKSLASH_IN_FILENAME |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4316 for (i = len - 2; i >= 0; --i) |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4317 { |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4318 if (retval[i] != '\\') |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4319 break; |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4320 ends_in_star = !ends_in_star; |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4321 } |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4322 #endif |
7 | 4323 if ((*retval != '~' || tail != retval) |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4324 && !ends_in_star |
7 | 4325 && vim_strchr(tail, '$') == NULL |
4326 && vim_strchr(retval, '`') == NULL) | |
4327 retval[len++] = '*'; | |
1484 | 4328 else if (len > 0 && retval[len - 1] == '$') |
4329 --len; | |
7 | 4330 retval[len] = NUL; |
4331 } | |
4332 } | |
4333 return retval; | |
4334 } | |
4335 | |
4336 /* | |
4337 * Must parse the command line so far to work out what context we are in. | |
4338 * Completion can then be done based on that context. | |
4339 * This routine sets the variables: | |
4340 * xp->xp_pattern The start of the pattern to be expanded within | |
4341 * the command line (ends at the cursor). | |
4342 * xp->xp_context The type of thing to expand. Will be one of: | |
4343 * | |
4344 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on | |
4345 * the command line, like an unknown command. Caller | |
4346 * should beep. | |
4347 * EXPAND_NOTHING Unrecognised context for completion, use char like | |
4348 * a normal char, rather than for completion. eg | |
4349 * :s/^I/ | |
4350 * EXPAND_COMMANDS Cursor is still touching the command, so complete | |
4351 * it. | |
4352 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands. | |
4353 * EXPAND_FILES After command with XFILE set, or after setting | |
4354 * with P_EXPAND set. eg :e ^I, :w>>^I | |
4355 * EXPAND_DIRECTORIES In some cases this is used instead of the latter | |
4356 * when we know only directories are of interest. eg | |
4357 * :set dir=^I | |
714 | 4358 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd". |
7 | 4359 * EXPAND_SETTINGS Complete variable names. eg :set d^I |
4360 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I | |
4361 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I | |
4362 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect | |
4363 * EXPAND_HELP Complete tags from the file 'helpfile'/tags | |
4364 * EXPAND_EVENTS Complete event names | |
4365 * EXPAND_SYNTAX Complete :syntax command arguments | |
4366 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names | |
4367 * EXPAND_AUGROUP Complete autocommand group names | |
4368 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I | |
4369 * EXPAND_MAPPINGS Complete mapping and abbreviation names, | |
4370 * eg :unmap a^I , :cunab x^I | |
4371 * EXPAND_FUNCTIONS Complete internal or user defined function names, | |
4372 * eg :call sub^I | |
4373 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I | |
4374 * EXPAND_EXPRESSION Complete internal or user defined function/variable | |
4375 * names in expressions, eg :while s^I | |
4376 * EXPAND_ENV_VARS Complete environment variable names | |
3744 | 4377 * EXPAND_USER Complete user names |
7 | 4378 */ |
4379 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4380 set_expand_context(expand_T *xp) |
7 | 4381 { |
168 | 4382 /* only expansion for ':', '>' and '=' command-lines */ |
7 | 4383 if (ccline.cmdfirstc != ':' |
4384 #ifdef FEAT_EVAL | |
168 | 4385 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '=' |
531 | 4386 && !ccline.input_fn |
7 | 4387 #endif |
4388 ) | |
4389 { | |
4390 xp->xp_context = EXPAND_NOTHING; | |
4391 return; | |
4392 } | |
4393 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos); | |
4394 } | |
4395 | |
4396 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4397 set_cmd_context( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4398 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4399 char_u *str, /* start of command line */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4400 int len, /* length of command line (excl. NUL) */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4401 int col) /* position of cursor */ |
7 | 4402 { |
4403 int old_char = NUL; | |
4404 char_u *nextcomm; | |
4405 | |
4406 /* | |
4407 * Avoid a UMR warning from Purify, only save the character if it has been | |
4408 * written before. | |
4409 */ | |
4410 if (col < len) | |
4411 old_char = str[col]; | |
4412 str[col] = NUL; | |
4413 nextcomm = str; | |
168 | 4414 |
4415 #ifdef FEAT_EVAL | |
4416 if (ccline.cmdfirstc == '=') | |
1322 | 4417 { |
4418 # ifdef FEAT_CMDL_COMPL | |
168 | 4419 /* pass CMD_SIZE because there is no real command */ |
4420 set_context_for_expression(xp, str, CMD_SIZE); | |
1322 | 4421 # endif |
4422 } | |
531 | 4423 else if (ccline.input_fn) |
4424 { | |
4425 xp->xp_context = ccline.xp_context; | |
4426 xp->xp_pattern = ccline.cmdbuff; | |
1322 | 4427 # if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL) |
531 | 4428 xp->xp_arg = ccline.xp_arg; |
1322 | 4429 # endif |
531 | 4430 } |
168 | 4431 else |
4432 #endif | |
4433 while (nextcomm != NULL) | |
4434 nextcomm = set_one_cmd_context(xp, nextcomm); | |
4435 | |
5056
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
4436 /* Store the string here so that call_user_expand_func() can get to them |
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
4437 * easily. */ |
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
4438 xp->xp_line = str; |
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
4439 xp->xp_col = col; |
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
4440 |
7 | 4441 str[col] = old_char; |
4442 } | |
4443 | |
4444 /* | |
4445 * Expand the command line "str" from context "xp". | |
4446 * "xp" must have been set by set_cmd_context(). | |
4447 * xp->xp_pattern points into "str", to where the text that is to be expanded | |
4448 * starts. | |
4449 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the | |
4450 * cursor. | |
4451 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the | |
4452 * key that triggered expansion literally. | |
4453 * Returns EXPAND_OK otherwise. | |
4454 */ | |
4455 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4456 expand_cmdline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4457 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4458 char_u *str, /* start of command line */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4459 int col, /* position of cursor */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4460 int *matchcount, /* return: nr of matches */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4461 char_u ***matches) /* return: array of pointers to matches */ |
7 | 4462 { |
4463 char_u *file_str = NULL; | |
2652 | 4464 int options = WILD_ADD_SLASH|WILD_SILENT; |
7 | 4465 |
4466 if (xp->xp_context == EXPAND_UNSUCCESSFUL) | |
4467 { | |
4468 beep_flush(); | |
4469 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */ | |
4470 } | |
4471 if (xp->xp_context == EXPAND_NOTHING) | |
4472 { | |
4473 /* Caller can use the character as a normal char instead */ | |
4474 return EXPAND_NOTHING; | |
4475 } | |
4476 | |
4477 /* add star to file name, or convert to regexp if not exp. files. */ | |
1965 | 4478 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern); |
4479 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context); | |
7 | 4480 if (file_str == NULL) |
4481 return EXPAND_UNSUCCESSFUL; | |
4482 | |
2652 | 4483 if (p_wic) |
4484 options += WILD_ICASE; | |
4485 | |
7 | 4486 /* find all files that match the description */ |
2652 | 4487 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL) |
7 | 4488 { |
4489 *matchcount = 0; | |
4490 *matches = NULL; | |
4491 } | |
4492 vim_free(file_str); | |
4493 | |
4494 return EXPAND_OK; | |
4495 } | |
4496 | |
4497 #ifdef FEAT_MULTI_LANG | |
4498 /* | |
4499 * Cleanup matches for help tags: remove "@en" if "en" is the only language. | |
4500 */ | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
4501 static void cleanup_help_tags(int num_file, char_u **file); |
7 | 4502 |
4503 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4504 cleanup_help_tags(int num_file, char_u **file) |
7 | 4505 { |
4506 int i, j; | |
4507 int len; | |
4508 | |
4509 for (i = 0; i < num_file; ++i) | |
4510 { | |
4511 len = (int)STRLEN(file[i]) - 3; | |
4512 if (len > 0 && STRCMP(file[i] + len, "@en") == 0) | |
4513 { | |
4514 /* Sorting on priority means the same item in another language may | |
4515 * be anywhere. Search all items for a match up to the "@en". */ | |
4516 for (j = 0; j < num_file; ++j) | |
4517 if (j != i | |
4518 && (int)STRLEN(file[j]) == len + 3 | |
4519 && STRNCMP(file[i], file[j], len + 1) == 0) | |
4520 break; | |
4521 if (j == num_file) | |
4522 file[i][len] = NUL; | |
4523 } | |
4524 } | |
4525 } | |
4526 #endif | |
4527 | |
4528 /* | |
4529 * Do the expansion based on xp->xp_context and "pat". | |
4530 */ | |
4531 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4532 ExpandFromContext( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4533 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4534 char_u *pat, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4535 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4536 char_u ***file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4537 int options) /* EW_ flags */ |
7 | 4538 { |
4539 #ifdef FEAT_CMDL_COMPL | |
4540 regmatch_T regmatch; | |
4541 #endif | |
4542 int ret; | |
4543 int flags; | |
4544 | |
4545 flags = EW_DIR; /* include directories */ | |
4546 if (options & WILD_LIST_NOTFOUND) | |
4547 flags |= EW_NOTFOUND; | |
4548 if (options & WILD_ADD_SLASH) | |
4549 flags |= EW_ADDSLASH; | |
4550 if (options & WILD_KEEP_ALL) | |
4551 flags |= EW_KEEPALL; | |
4552 if (options & WILD_SILENT) | |
4553 flags |= EW_SILENT; | |
6659 | 4554 if (options & WILD_ALLLINKS) |
4555 flags |= EW_ALLLINKS; | |
7 | 4556 |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
4557 if (xp->xp_context == EXPAND_FILES |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
4558 || xp->xp_context == EXPAND_DIRECTORIES |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
4559 || xp->xp_context == EXPAND_FILES_IN_PATH) |
7 | 4560 { |
4561 /* | |
4562 * Expand file or directory names. | |
4563 */ | |
4564 int free_pat = FALSE; | |
4565 int i; | |
4566 | |
4567 /* for ":set path=" and ":set tags=" halve backslashes for escaped | |
4568 * space */ | |
4569 if (xp->xp_backslash != XP_BS_NONE) | |
4570 { | |
4571 free_pat = TRUE; | |
4572 pat = vim_strsave(pat); | |
4573 for (i = 0; pat[i]; ++i) | |
4574 if (pat[i] == '\\') | |
4575 { | |
4576 if (xp->xp_backslash == XP_BS_THREE | |
4577 && pat[i + 1] == '\\' | |
4578 && pat[i + 2] == '\\' | |
4579 && pat[i + 3] == ' ') | |
1621 | 4580 STRMOVE(pat + i, pat + i + 3); |
7 | 4581 if (xp->xp_backslash == XP_BS_ONE |
4582 && pat[i + 1] == ' ') | |
1621 | 4583 STRMOVE(pat + i, pat + i + 1); |
7 | 4584 } |
4585 } | |
4586 | |
4587 if (xp->xp_context == EXPAND_FILES) | |
4588 flags |= EW_FILE; | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
4589 else if (xp->xp_context == EXPAND_FILES_IN_PATH) |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
4590 flags |= (EW_FILE | EW_PATH); |
7 | 4591 else |
4592 flags = (flags | EW_DIR) & ~EW_FILE; | |
2652 | 4593 if (options & WILD_ICASE) |
4594 flags |= EW_ICASE; | |
4595 | |
2016 | 4596 /* Expand wildcards, supporting %:h and the like. */ |
4597 ret = expand_wildcards_eval(&pat, num_file, file, flags); | |
7 | 4598 if (free_pat) |
4599 vim_free(pat); | |
4600 return ret; | |
4601 } | |
4602 | |
4603 *file = (char_u **)""; | |
4604 *num_file = 0; | |
4605 if (xp->xp_context == EXPAND_HELP) | |
4606 { | |
1696 | 4607 /* With an empty argument we would get all the help tags, which is |
4608 * very slow. Get matches for "help" instead. */ | |
4609 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat, | |
4610 num_file, file, FALSE) == OK) | |
7 | 4611 { |
4612 #ifdef FEAT_MULTI_LANG | |
4613 cleanup_help_tags(*num_file, *file); | |
4614 #endif | |
4615 return OK; | |
4616 } | |
4617 return FAIL; | |
4618 } | |
4619 | |
4620 #ifndef FEAT_CMDL_COMPL | |
4621 return FAIL; | |
4622 #else | |
716 | 4623 if (xp->xp_context == EXPAND_SHELLCMD) |
4624 return expand_shellcmd(pat, num_file, file, flags); | |
7 | 4625 if (xp->xp_context == EXPAND_OLD_SETTING) |
4626 return ExpandOldSetting(num_file, file); | |
4627 if (xp->xp_context == EXPAND_BUFFERS) | |
4628 return ExpandBufnames(pat, num_file, file, options); | |
4629 if (xp->xp_context == EXPAND_TAGS | |
4630 || xp->xp_context == EXPAND_TAGS_LISTFILES) | |
4631 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file); | |
4632 if (xp->xp_context == EXPAND_COLORS) | |
2929 | 4633 { |
4634 char *directories[] = {"colors", NULL}; | |
4635 return ExpandRTDir(pat, num_file, file, directories); | |
4636 } | |
7 | 4637 if (xp->xp_context == EXPAND_COMPILER) |
2929 | 4638 { |
3106 | 4639 char *directories[] = {"compiler", NULL}; |
2929 | 4640 return ExpandRTDir(pat, num_file, file, directories); |
4641 } | |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
4642 if (xp->xp_context == EXPAND_OWNSYNTAX) |
2929 | 4643 { |
4644 char *directories[] = {"syntax", NULL}; | |
4645 return ExpandRTDir(pat, num_file, file, directories); | |
4646 } | |
2268
aafed4a4866f
Command line completion for :ownsyntax. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
4647 if (xp->xp_context == EXPAND_FILETYPE) |
2929 | 4648 { |
4649 char *directories[] = {"syntax", "indent", "ftplugin", NULL}; | |
4650 return ExpandRTDir(pat, num_file, file, directories); | |
4651 } | |
407 | 4652 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
4653 if (xp->xp_context == EXPAND_USER_LIST) | |
856 | 4654 return ExpandUserList(xp, num_file, file); |
407 | 4655 # endif |
7 | 4656 |
4657 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0); | |
4658 if (regmatch.regprog == NULL) | |
4659 return FAIL; | |
4660 | |
4661 /* set ignore-case according to p_ic, p_scs and pat */ | |
4662 regmatch.rm_ic = ignorecase(pat); | |
4663 | |
4664 if (xp->xp_context == EXPAND_SETTINGS | |
4665 || xp->xp_context == EXPAND_BOOL_SETTINGS) | |
4666 ret = ExpandSettings(xp, ®match, num_file, file); | |
4667 else if (xp->xp_context == EXPAND_MAPPINGS) | |
4668 ret = ExpandMappings(®match, num_file, file); | |
4669 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) | |
4670 else if (xp->xp_context == EXPAND_USER_DEFINED) | |
4671 ret = ExpandUserDefined(xp, ®match, num_file, file); | |
4672 # endif | |
4673 else | |
4674 { | |
4675 static struct expgen | |
4676 { | |
4677 int context; | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
4678 char_u *((*func)(expand_T *, int)); |
7 | 4679 int ic; |
2849 | 4680 int escaped; |
7 | 4681 } tab[] = |
4682 { | |
2849 | 4683 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE}, |
4684 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE}, | |
3503 | 4685 #ifdef FEAT_CMDHIST |
4686 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE}, | |
4687 #endif | |
7 | 4688 #ifdef FEAT_USR_CMDS |
2849 | 4689 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE}, |
6424 | 4690 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE}, |
2849 | 4691 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE}, |
4692 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE}, | |
4693 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE}, | |
7 | 4694 #endif |
4695 #ifdef FEAT_EVAL | |
2849 | 4696 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE}, |
4697 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE}, | |
4698 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE}, | |
4699 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE}, | |
7 | 4700 #endif |
4701 #ifdef FEAT_MENU | |
2849 | 4702 {EXPAND_MENUS, get_menu_name, FALSE, TRUE}, |
4703 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE}, | |
7 | 4704 #endif |
4705 #ifdef FEAT_SYN_HL | |
2849 | 4706 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE}, |
4707 #endif | |
4803
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4327
diff
changeset
|
4708 #ifdef FEAT_PROFILE |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4327
diff
changeset
|
4709 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE}, |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4327
diff
changeset
|
4710 #endif |
2849 | 4711 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE}, |
7 | 4712 #ifdef FEAT_AUTOCMD |
2849 | 4713 {EXPAND_EVENTS, get_event_name, TRUE, TRUE}, |
4714 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE}, | |
7 | 4715 #endif |
1845 | 4716 #ifdef FEAT_CSCOPE |
2849 | 4717 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE}, |
1845 | 4718 #endif |
1868 | 4719 #ifdef FEAT_SIGNS |
2849 | 4720 {EXPAND_SIGN, get_sign_name, TRUE, TRUE}, |
1868 | 4721 #endif |
2068
98a2a6e6b966
updated for version 7.2.353
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
4722 #ifdef FEAT_PROFILE |
2849 | 4723 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE}, |
2068
98a2a6e6b966
updated for version 7.2.353
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
4724 #endif |
7 | 4725 #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \ |
4726 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)) | |
2849 | 4727 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE}, |
4728 {EXPAND_LOCALES, get_locales, TRUE, FALSE}, | |
4729 #endif | |
4730 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE}, | |
3744 | 4731 {EXPAND_USER, get_users, TRUE, FALSE}, |
7 | 4732 }; |
4733 int i; | |
4734 | |
4735 /* | |
4736 * Find a context in the table and call the ExpandGeneric() with the | |
4737 * right function to do the expansion. | |
4738 */ | |
4739 ret = FAIL; | |
1880 | 4740 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i) |
7 | 4741 if (xp->xp_context == tab[i].context) |
4742 { | |
4743 if (tab[i].ic) | |
4744 regmatch.rm_ic = TRUE; | |
2849 | 4745 ret = ExpandGeneric(xp, ®match, num_file, file, |
3628 | 4746 tab[i].func, tab[i].escaped); |
7 | 4747 break; |
4748 } | |
4749 } | |
4750 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
4751 vim_regfree(regmatch.regprog); |
7 | 4752 |
4753 return ret; | |
4754 #endif /* FEAT_CMDL_COMPL */ | |
4755 } | |
4756 | |
4757 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) | |
4758 /* | |
4759 * Expand a list of names. | |
4760 * | |
4761 * Generic function for command line completion. It calls a function to | |
4762 * obtain strings, one by one. The strings are matched against a regexp | |
4763 * program. Matching strings are copied into an array, which is returned. | |
4764 * | |
4765 * Returns OK when no problems encountered, FAIL for error (out of memory). | |
4766 */ | |
4767 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4768 ExpandGeneric( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4769 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4770 regmatch_T *regmatch, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4771 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4772 char_u ***file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4773 char_u *((*func)(expand_T *, int)), |
7 | 4774 /* returns a string from the list */ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4775 int escaped) |
7 | 4776 { |
4777 int i; | |
4778 int count = 0; | |
480 | 4779 int round; |
7 | 4780 char_u *str; |
4781 | |
4782 /* do this loop twice: | |
480 | 4783 * round == 0: count the number of matching names |
4784 * round == 1: copy the matching names into allocated memory | |
7 | 4785 */ |
480 | 4786 for (round = 0; round <= 1; ++round) |
7 | 4787 { |
4788 for (i = 0; ; ++i) | |
4789 { | |
4790 str = (*func)(xp, i); | |
4791 if (str == NULL) /* end of list */ | |
4792 break; | |
4793 if (*str == NUL) /* skip empty strings */ | |
4794 continue; | |
4795 | |
4796 if (vim_regexec(regmatch, str, (colnr_T)0)) | |
4797 { | |
480 | 4798 if (round) |
7 | 4799 { |
2849 | 4800 if (escaped) |
4801 str = vim_strsave_escaped(str, (char_u *)" \t\\."); | |
4802 else | |
4803 str = vim_strsave(str); | |
7 | 4804 (*file)[count] = str; |
4805 #ifdef FEAT_MENU | |
4806 if (func == get_menu_names && str != NULL) | |
4807 { | |
4808 /* test for separator added by get_menu_names() */ | |
4809 str += STRLEN(str) - 1; | |
4810 if (*str == '\001') | |
4811 *str = '.'; | |
4812 } | |
4813 #endif | |
4814 } | |
4815 ++count; | |
4816 } | |
4817 } | |
480 | 4818 if (round == 0) |
7 | 4819 { |
4820 if (count == 0) | |
4821 return OK; | |
4822 *num_file = count; | |
4823 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *))); | |
4824 if (*file == NULL) | |
4825 { | |
4826 *file = (char_u **)""; | |
4827 return FAIL; | |
4828 } | |
4829 count = 0; | |
4830 } | |
4831 } | |
480 | 4832 |
828 | 4833 /* Sort the results. Keep menu's in the specified order. */ |
4834 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS) | |
3164 | 4835 { |
4836 if (xp->xp_context == EXPAND_EXPRESSION | |
4837 || xp->xp_context == EXPAND_FUNCTIONS | |
4838 || xp->xp_context == EXPAND_USER_FUNC) | |
4839 /* <SNR> functions should be sorted to the end. */ | |
4840 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *), | |
4841 sort_func_compare); | |
4842 else | |
4843 sort_strings(*file, *num_file); | |
4844 } | |
480 | 4845 |
1322 | 4846 #ifdef FEAT_CMDL_COMPL |
4847 /* Reset the variables used for special highlight names expansion, so that | |
4848 * they don't show up when getting normal highlight names by ID. */ | |
4849 reset_expand_highlight(); | |
4850 #endif | |
4851 | |
7 | 4852 return OK; |
4853 } | |
4854 | |
716 | 4855 /* |
4856 * Complete a shell command. | |
4857 * Returns FAIL or OK; | |
4858 */ | |
4859 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4860 expand_shellcmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4861 char_u *filepat, /* pattern to match with command names */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4862 int *num_file, /* return: number of matches */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4863 char_u ***file, /* return: array with matches */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4864 int flagsarg) /* EW_ flags */ |
716 | 4865 { |
4866 char_u *pat; | |
4867 int i; | |
4868 char_u *path; | |
4869 int mustfree = FALSE; | |
4870 garray_T ga; | |
4871 char_u *buf = alloc(MAXPATHL); | |
4872 size_t l; | |
4873 char_u *s, *e; | |
4874 int flags = flagsarg; | |
4875 int ret; | |
6695 | 4876 int did_curdir = FALSE; |
716 | 4877 |
4878 if (buf == NULL) | |
4879 return FAIL; | |
4880 | |
4881 /* for ":set path=" and ":set tags=" halve backslashes for escaped | |
4882 * space */ | |
4883 pat = vim_strsave(filepat); | |
4884 for (i = 0; pat[i]; ++i) | |
4885 if (pat[i] == '\\' && pat[i + 1] == ' ') | |
1621 | 4886 STRMOVE(pat + i, pat + i + 1); |
716 | 4887 |
6695 | 4888 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD; |
716 | 4889 |
4890 /* For an absolute name we don't use $PATH. */ | |
955 | 4891 if (mch_isFullName(pat)) |
4892 path = (char_u *)" "; | |
4893 else if ((pat[0] == '.' && (vim_ispathsep(pat[1]) | |
716 | 4894 || (pat[1] == '.' && vim_ispathsep(pat[2]))))) |
4895 path = (char_u *)"."; | |
4896 else | |
2630 | 4897 { |
716 | 4898 path = vim_getenv((char_u *)"PATH", &mustfree); |
2630 | 4899 if (path == NULL) |
4900 path = (char_u *)""; | |
4901 } | |
716 | 4902 |
4903 /* | |
4904 * Go over all directories in $PATH. Expand matches in that directory and | |
6695 | 4905 * collect them in "ga". When "." is not in $PATH also expand for the |
4906 * current directory, to find "subdir/cmd". | |
716 | 4907 */ |
4908 ga_init2(&ga, (int)sizeof(char *), 10); | |
6695 | 4909 for (s = path; ; s = e) |
716 | 4910 { |
6695 | 4911 if (*s == NUL) |
4912 { | |
4913 if (did_curdir) | |
4914 break; | |
4915 /* Find directories in the current directory, path is empty. */ | |
4916 did_curdir = TRUE; | |
4917 } | |
4918 else if (*s == '.') | |
4919 did_curdir = TRUE; | |
4920 | |
955 | 4921 if (*s == ' ') |
4922 ++s; /* Skip space used for absolute path name. */ | |
4923 | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
4924 #if defined(MSDOS) || defined(MSWIN) |
716 | 4925 e = vim_strchr(s, ';'); |
4926 #else | |
4927 e = vim_strchr(s, ':'); | |
4928 #endif | |
4929 if (e == NULL) | |
4930 e = s + STRLEN(s); | |
4931 | |
4932 l = e - s; | |
4933 if (l > MAXPATHL - 5) | |
4934 break; | |
4935 vim_strncpy(buf, s, l); | |
4936 add_pathsep(buf); | |
4937 l = STRLEN(buf); | |
4938 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l); | |
4939 | |
4940 /* Expand matches in one directory of $PATH. */ | |
4941 ret = expand_wildcards(1, &buf, num_file, file, flags); | |
4942 if (ret == OK) | |
4943 { | |
4944 if (ga_grow(&ga, *num_file) == FAIL) | |
4945 FreeWild(*num_file, *file); | |
4946 else | |
4947 { | |
4948 for (i = 0; i < *num_file; ++i) | |
4949 { | |
4950 s = (*file)[i]; | |
4951 if (STRLEN(s) > l) | |
4952 { | |
4953 /* Remove the path again. */ | |
1621 | 4954 STRMOVE(s, s + l); |
716 | 4955 ((char_u **)ga.ga_data)[ga.ga_len++] = s; |
4956 } | |
4957 else | |
4958 vim_free(s); | |
4959 } | |
4960 vim_free(*file); | |
4961 } | |
4962 } | |
4963 if (*e != NUL) | |
4964 ++e; | |
4965 } | |
4966 *file = ga.ga_data; | |
4967 *num_file = ga.ga_len; | |
4968 | |
4969 vim_free(buf); | |
4970 vim_free(pat); | |
4971 if (mustfree) | |
4972 vim_free(path); | |
4973 return OK; | |
4974 } | |
4975 | |
4976 | |
7 | 4977 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
4978 static void * call_user_expand_func(void *(*user_expand_func)(char_u *, int, char_u **, int), expand_T *xp, int *num_file, char_u ***file); |
410 | 4979 |
7 | 4980 /* |
1518 | 4981 * Call "user_expand_func()" to invoke a user defined VimL function and return |
407 | 4982 * the result (either a string or a List). |
7 | 4983 */ |
407 | 4984 static void * |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4985 call_user_expand_func( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4986 void *(*user_expand_func)(char_u *, int, char_u **, int), |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4987 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4988 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4989 char_u ***file) |
7 | 4990 { |
5072
cca600e60928
updated for version 7.3.1279
Bram Moolenaar <bram@vim.org>
parents:
5056
diff
changeset
|
4991 int keep = 0; |
407 | 4992 char_u num[50]; |
7 | 4993 char_u *args[3]; |
4994 int save_current_SID = current_SID; | |
407 | 4995 void *ret; |
13 | 4996 struct cmdline_info save_ccline; |
7 | 4997 |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
4998 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL) |
407 | 4999 return NULL; |
7 | 5000 *num_file = 0; |
5001 *file = NULL; | |
5002 | |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
5003 if (ccline.cmdbuff != NULL) |
1518 | 5004 { |
5005 keep = ccline.cmdbuff[ccline.cmdlen]; | |
5006 ccline.cmdbuff[ccline.cmdlen] = 0; | |
5007 } | |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
5008 |
1965 | 5009 args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len); |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
5010 args[1] = xp->xp_line; |
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
5011 sprintf((char *)num, "%d", xp->xp_col); |
7 | 5012 args[2] = num; |
5013 | |
13 | 5014 /* Save the cmdline, we don't know what the function may do. */ |
5015 save_ccline = ccline; | |
5016 ccline.cmdbuff = NULL; | |
5017 ccline.cmdprompt = NULL; | |
7 | 5018 current_SID = xp->xp_scriptID; |
13 | 5019 |
407 | 5020 ret = user_expand_func(xp->xp_arg, 3, args, FALSE); |
13 | 5021 |
5022 ccline = save_ccline; | |
7 | 5023 current_SID = save_current_SID; |
1518 | 5024 if (ccline.cmdbuff != NULL) |
5025 ccline.cmdbuff[ccline.cmdlen] = keep; | |
407 | 5026 |
1965 | 5027 vim_free(args[0]); |
407 | 5028 return ret; |
5029 } | |
5030 | |
5031 /* | |
5032 * Expand names with a function defined by the user. | |
5033 */ | |
5034 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5035 ExpandUserDefined( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5036 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5037 regmatch_T *regmatch, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5038 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5039 char_u ***file) |
407 | 5040 { |
5041 char_u *retstr; | |
5042 char_u *s; | |
5043 char_u *e; | |
5044 char_u keep; | |
5045 garray_T ga; | |
5046 | |
5047 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file); | |
5048 if (retstr == NULL) | |
7 | 5049 return FAIL; |
5050 | |
5051 ga_init2(&ga, (int)sizeof(char *), 3); | |
407 | 5052 for (s = retstr; *s != NUL; s = e) |
7 | 5053 { |
5054 e = vim_strchr(s, '\n'); | |
5055 if (e == NULL) | |
5056 e = s + STRLEN(s); | |
5057 keep = *e; | |
5058 *e = 0; | |
5059 | |
5060 if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0) | |
5061 { | |
5062 *e = keep; | |
5063 if (*e != NUL) | |
5064 ++e; | |
5065 continue; | |
5066 } | |
5067 | |
5068 if (ga_grow(&ga, 1) == FAIL) | |
5069 break; | |
5070 | |
5071 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s)); | |
5072 ++ga.ga_len; | |
5073 | |
5074 *e = keep; | |
5075 if (*e != NUL) | |
5076 ++e; | |
5077 } | |
407 | 5078 vim_free(retstr); |
5079 *file = ga.ga_data; | |
5080 *num_file = ga.ga_len; | |
5081 return OK; | |
5082 } | |
5083 | |
5084 /* | |
5085 * Expand names with a list returned by a function defined by the user. | |
5086 */ | |
5087 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5088 ExpandUserList( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5089 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5090 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5091 char_u ***file) |
407 | 5092 { |
5093 list_T *retlist; | |
5094 listitem_T *li; | |
5095 garray_T ga; | |
5096 | |
5097 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file); | |
5098 if (retlist == NULL) | |
5099 return FAIL; | |
5100 | |
5101 ga_init2(&ga, (int)sizeof(char *), 3); | |
5102 /* Loop over the items in the list. */ | |
5103 for (li = retlist->lv_first; li != NULL; li = li->li_next) | |
5104 { | |
1917 | 5105 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL) |
5106 continue; /* Skip non-string items and empty strings */ | |
407 | 5107 |
5108 if (ga_grow(&ga, 1) == FAIL) | |
5109 break; | |
5110 | |
5111 ((char_u **)ga.ga_data)[ga.ga_len] = | |
1917 | 5112 vim_strsave(li->li_tv.vval.v_string); |
407 | 5113 ++ga.ga_len; |
5114 } | |
5115 list_unref(retlist); | |
5116 | |
7 | 5117 *file = ga.ga_data; |
5118 *num_file = ga.ga_len; | |
5119 return OK; | |
5120 } | |
5121 #endif | |
5122 | |
5123 /* | |
2268
aafed4a4866f
Command line completion for :ownsyntax. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
5124 * Expand color scheme, compiler or filetype names: |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5125 * 'runtimepath'/{dirnames}/{pat}.vim |
2929 | 5126 * "dirnames" is an array with one or more directory names. |
7 | 5127 */ |
5128 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5129 ExpandRTDir( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5130 char_u *pat, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5131 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5132 char_u ***file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5133 char *dirnames[]) |
7 | 5134 { |
5135 char_u *s; | |
5136 char_u *e; | |
5873 | 5137 char_u *match; |
7 | 5138 garray_T ga; |
2929 | 5139 int i; |
5140 int pat_len; | |
7 | 5141 |
5142 *num_file = 0; | |
5143 *file = NULL; | |
2931 | 5144 pat_len = (int)STRLEN(pat); |
2929 | 5145 ga_init2(&ga, (int)sizeof(char *), 10); |
5146 | |
5147 for (i = 0; dirnames[i] != NULL; ++i) | |
7 | 5148 { |
2929 | 5149 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7)); |
5150 if (s == NULL) | |
5151 { | |
5152 ga_clear_strings(&ga); | |
5153 return FAIL; | |
5154 } | |
5155 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat); | |
5873 | 5156 globpath(p_rtp, s, &ga, 0); |
2929 | 5157 vim_free(s); |
5873 | 5158 } |
5159 | |
5160 for (i = 0; i < ga.ga_len; ++i) | |
5161 { | |
5162 match = ((char_u **)ga.ga_data)[i]; | |
5163 s = match; | |
5164 e = s + STRLEN(s); | |
5165 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0) | |
7 | 5166 { |
5873 | 5167 e -= 4; |
5168 for (s = e; s > match; mb_ptr_back(match, s)) | |
5169 if (s < match || vim_ispathsep(*s)) | |
5170 break; | |
5171 ++s; | |
5172 *e = NUL; | |
5173 mch_memmove(match, s, e - s + 1); | |
7 | 5174 } |
5175 } | |
5873 | 5176 |
2929 | 5177 if (ga.ga_len == 0) |
3628 | 5178 return FAIL; |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5179 |
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5180 /* Sort and remove duplicates which can happen when specifying multiple |
2929 | 5181 * directories in dirnames. */ |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5182 remove_duplicates(&ga); |
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5183 |
7 | 5184 *file = ga.ga_data; |
5185 *num_file = ga.ga_len; | |
5186 return OK; | |
5187 } | |
5188 | |
5189 #endif | |
5190 | |
5191 #if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO) | |
5192 /* | |
5193 * Expand "file" for all comma-separated directories in "path". | |
5873 | 5194 * Adds the matches to "ga". Caller must init "ga". |
7 | 5195 */ |
5873 | 5196 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5197 globpath( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5198 char_u *path, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5199 char_u *file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5200 garray_T *ga, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5201 int expand_options) |
7 | 5202 { |
5203 expand_T xpc; | |
5204 char_u *buf; | |
5205 int i; | |
5206 int num_p; | |
5207 char_u **p; | |
5208 | |
5209 buf = alloc(MAXPATHL); | |
5210 if (buf == NULL) | |
5873 | 5211 return; |
7 | 5212 |
632 | 5213 ExpandInit(&xpc); |
7 | 5214 xpc.xp_context = EXPAND_FILES; |
632 | 5215 |
7 | 5216 /* Loop over all entries in {path}. */ |
5217 while (*path != NUL) | |
5218 { | |
5219 /* Copy one item of the path to buf[] and concatenate the file name. */ | |
5220 copy_option_part(&path, buf, MAXPATHL, ","); | |
5221 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL) | |
5222 { | |
2534
e27def2ed69b
Make :find completion work better with the DJGPP build. (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
5223 # if defined(MSWIN) || defined(MSDOS) |
2495
a847363bf06e
Fix a few problems for :find completion. Test much more. (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
5224 /* Using the platform's path separator (\) makes vim incorrectly |
a847363bf06e
Fix a few problems for :find completion. Test much more. (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
5225 * treat it as an escape character, use '/' instead. */ |
a847363bf06e
Fix a few problems for :find completion. Test much more. (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
5226 if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf))) |
a847363bf06e
Fix a few problems for :find completion. Test much more. (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
5227 STRCAT(buf, "/"); |
a847363bf06e
Fix a few problems for :find completion. Test much more. (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
5228 # else |
7 | 5229 add_pathsep(buf); |
2495
a847363bf06e
Fix a few problems for :find completion. Test much more. (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
5230 # endif |
7 | 5231 STRCAT(buf, file); |
1754 | 5232 if (ExpandFromContext(&xpc, buf, &num_p, &p, |
5233 WILD_SILENT|expand_options) != FAIL && num_p > 0) | |
7 | 5234 { |
1754 | 5235 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options); |
5873 | 5236 |
5237 if (ga_grow(ga, num_p) == OK) | |
7 | 5238 { |
5239 for (i = 0; i < num_p; ++i) | |
5240 { | |
5873 | 5241 ((char_u **)ga->ga_data)[ga->ga_len] = |
5950 | 5242 vim_strnsave(p[i], (int)STRLEN(p[i])); |
5873 | 5243 ++ga->ga_len; |
7 | 5244 } |
5245 } | |
5873 | 5246 |
7 | 5247 FreeWild(num_p, p); |
5248 } | |
5249 } | |
5250 } | |
5251 | |
5252 vim_free(buf); | |
5253 } | |
5254 | |
5255 #endif | |
5256 | |
5257 #if defined(FEAT_CMDHIST) || defined(PROTO) | |
5258 | |
5259 /********************************* | |
5260 * Command line history stuff * | |
5261 *********************************/ | |
5262 | |
5263 /* | |
5264 * Translate a history character to the associated type number. | |
5265 */ | |
5266 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5267 hist_char2type(int c) |
7 | 5268 { |
5269 if (c == ':') | |
5270 return HIST_CMD; | |
5271 if (c == '=') | |
5272 return HIST_EXPR; | |
5273 if (c == '@') | |
5274 return HIST_INPUT; | |
5275 if (c == '>') | |
5276 return HIST_DEBUG; | |
5277 return HIST_SEARCH; /* must be '?' or '/' */ | |
5278 } | |
5279 | |
5280 /* | |
5281 * Table of history names. | |
5282 * These names are used in :history and various hist...() functions. | |
5283 * It is sufficient to give the significant prefix of a history name. | |
5284 */ | |
5285 | |
5286 static char *(history_names[]) = | |
5287 { | |
5288 "cmd", | |
5289 "search", | |
5290 "expr", | |
5291 "input", | |
5292 "debug", | |
5293 NULL | |
5294 }; | |
5295 | |
3503 | 5296 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
5297 /* | |
5298 * Function given to ExpandGeneric() to obtain the possible first | |
5299 * arguments of the ":history command. | |
5300 */ | |
5301 static char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5302 get_history_arg(expand_T *xp UNUSED, int idx) |
3503 | 5303 { |
5304 static char_u compl[2] = { NUL, NUL }; | |
5305 char *short_names = ":=@>?/"; | |
3529 | 5306 int short_names_count = (int)STRLEN(short_names); |
3503 | 5307 int history_name_count = sizeof(history_names) / sizeof(char *) - 1; |
5308 | |
5309 if (idx < short_names_count) | |
5310 { | |
5311 compl[0] = (char_u)short_names[idx]; | |
5312 return compl; | |
5313 } | |
5314 if (idx < short_names_count + history_name_count) | |
5315 return (char_u *)history_names[idx - short_names_count]; | |
5316 if (idx == short_names_count + history_name_count) | |
5317 return (char_u *)"all"; | |
5318 return NULL; | |
5319 } | |
5320 #endif | |
5321 | |
7 | 5322 /* |
5323 * init_history() - Initialize the command line history. | |
5324 * Also used to re-allocate the history when the size changes. | |
5325 */ | |
356 | 5326 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5327 init_history(void) |
7 | 5328 { |
5329 int newlen; /* new length of history table */ | |
5330 histentry_T *temp; | |
5331 int i; | |
5332 int j; | |
5333 int type; | |
5334 | |
5335 /* | |
5336 * If size of history table changed, reallocate it | |
5337 */ | |
5338 newlen = (int)p_hi; | |
5339 if (newlen != hislen) /* history length changed */ | |
5340 { | |
5341 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */ | |
5342 { | |
5343 if (newlen) | |
5344 { | |
5345 temp = (histentry_T *)lalloc( | |
5346 (long_u)(newlen * sizeof(histentry_T)), TRUE); | |
5347 if (temp == NULL) /* out of memory! */ | |
5348 { | |
5349 if (type == 0) /* first one: just keep the old length */ | |
5350 { | |
5351 newlen = hislen; | |
5352 break; | |
5353 } | |
5354 /* Already changed one table, now we can only have zero | |
5355 * length for all tables. */ | |
5356 newlen = 0; | |
5357 type = -1; | |
5358 continue; | |
5359 } | |
5360 } | |
5361 else | |
5362 temp = NULL; | |
5363 if (newlen == 0 || temp != NULL) | |
5364 { | |
5365 if (hisidx[type] < 0) /* there are no entries yet */ | |
5366 { | |
5367 for (i = 0; i < newlen; ++i) | |
4258 | 5368 clear_hist_entry(&temp[i]); |
7 | 5369 } |
5370 else if (newlen > hislen) /* array becomes bigger */ | |
5371 { | |
5372 for (i = 0; i <= hisidx[type]; ++i) | |
5373 temp[i] = history[type][i]; | |
5374 j = i; | |
5375 for ( ; i <= newlen - (hislen - hisidx[type]); ++i) | |
4258 | 5376 clear_hist_entry(&temp[i]); |
7 | 5377 for ( ; j < hislen; ++i, ++j) |
5378 temp[i] = history[type][j]; | |
5379 } | |
5380 else /* array becomes smaller or 0 */ | |
5381 { | |
5382 j = hisidx[type]; | |
5383 for (i = newlen - 1; ; --i) | |
5384 { | |
5385 if (i >= 0) /* copy newest entries */ | |
5386 temp[i] = history[type][j]; | |
5387 else /* remove older entries */ | |
5388 vim_free(history[type][j].hisstr); | |
5389 if (--j < 0) | |
5390 j = hislen - 1; | |
5391 if (j == hisidx[type]) | |
5392 break; | |
5393 } | |
5394 hisidx[type] = newlen - 1; | |
5395 } | |
5396 vim_free(history[type]); | |
5397 history[type] = temp; | |
5398 } | |
5399 } | |
5400 hislen = newlen; | |
5401 } | |
5402 } | |
5403 | |
4258 | 5404 static void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5405 clear_hist_entry(histentry_T *hisptr) |
4258 | 5406 { |
5407 hisptr->hisnum = 0; | |
5408 hisptr->viminfo = FALSE; | |
5409 hisptr->hisstr = NULL; | |
5410 } | |
5411 | |
7 | 5412 /* |
5413 * Check if command line 'str' is already in history. | |
5414 * If 'move_to_front' is TRUE, matching entry is moved to end of history. | |
5415 */ | |
5416 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5417 in_history( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5418 int type, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5419 char_u *str, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5420 int move_to_front, /* Move the entry to the front if it exists */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5421 int sep, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5422 int writing) /* ignore entries read from viminfo */ |
7 | 5423 { |
5424 int i; | |
5425 int last_i = -1; | |
2986 | 5426 char_u *p; |
7 | 5427 |
5428 if (hisidx[type] < 0) | |
5429 return FALSE; | |
5430 i = hisidx[type]; | |
5431 do | |
5432 { | |
5433 if (history[type][i].hisstr == NULL) | |
5434 return FALSE; | |
2986 | 5435 |
5436 /* For search history, check that the separator character matches as | |
5437 * well. */ | |
5438 p = history[type][i].hisstr; | |
5439 if (STRCMP(str, p) == 0 | |
4285 | 5440 && !(writing && history[type][i].viminfo) |
2986 | 5441 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1])) |
7 | 5442 { |
5443 if (!move_to_front) | |
5444 return TRUE; | |
5445 last_i = i; | |
5446 break; | |
5447 } | |
5448 if (--i < 0) | |
5449 i = hislen - 1; | |
5450 } while (i != hisidx[type]); | |
5451 | |
5452 if (last_i >= 0) | |
5453 { | |
5454 str = history[type][i].hisstr; | |
5455 while (i != hisidx[type]) | |
5456 { | |
5457 if (++i >= hislen) | |
5458 i = 0; | |
5459 history[type][last_i] = history[type][i]; | |
5460 last_i = i; | |
5461 } | |
4258 | 5462 history[type][i].hisnum = ++hisnum[type]; |
5463 history[type][i].viminfo = FALSE; | |
7 | 5464 history[type][i].hisstr = str; |
5465 return TRUE; | |
5466 } | |
5467 return FALSE; | |
5468 } | |
5469 | |
5470 /* | |
5471 * Convert history name (from table above) to its HIST_ equivalent. | |
5472 * When "name" is empty, return "cmd" history. | |
5473 * Returns -1 for unknown history name. | |
5474 */ | |
5475 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5476 get_histtype(char_u *name) |
7 | 5477 { |
5478 int i; | |
5479 int len = (int)STRLEN(name); | |
5480 | |
5481 /* No argument: use current history. */ | |
5482 if (len == 0) | |
5483 return hist_char2type(ccline.cmdfirstc); | |
5484 | |
5485 for (i = 0; history_names[i] != NULL; ++i) | |
5486 if (STRNICMP(name, history_names[i], len) == 0) | |
5487 return i; | |
5488 | |
5489 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL) | |
5490 return hist_char2type(name[0]); | |
5491 | |
5492 return -1; | |
5493 } | |
5494 | |
5495 static int last_maptick = -1; /* last seen maptick */ | |
5496 | |
5497 /* | |
5498 * Add the given string to the given history. If the string is already in the | |
5499 * history then it is moved to the front. "histype" may be one of he HIST_ | |
5500 * values. | |
5501 */ | |
5502 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5503 add_to_history( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5504 int histype, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5505 char_u *new_entry, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5506 int in_map, /* consider maptick when inside a mapping */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5507 int sep) /* separator character used (search hist) */ |
7 | 5508 { |
5509 histentry_T *hisptr; | |
5510 int len; | |
5511 | |
5512 if (hislen == 0) /* no history */ | |
5513 return; | |
5514 | |
5467 | 5515 if (cmdmod.keeppatterns && histype == HIST_SEARCH) |
5516 return; | |
5517 | |
7 | 5518 /* |
5519 * Searches inside the same mapping overwrite each other, so that only | |
5520 * the last line is kept. Be careful not to remove a line that was moved | |
5521 * down, only lines that were added. | |
5522 */ | |
5523 if (histype == HIST_SEARCH && in_map) | |
5524 { | |
5525 if (maptick == last_maptick) | |
5526 { | |
5527 /* Current line is from the same mapping, remove it */ | |
5528 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]]; | |
5529 vim_free(hisptr->hisstr); | |
4258 | 5530 clear_hist_entry(hisptr); |
7 | 5531 --hisnum[histype]; |
5532 if (--hisidx[HIST_SEARCH] < 0) | |
5533 hisidx[HIST_SEARCH] = hislen - 1; | |
5534 } | |
5535 last_maptick = -1; | |
5536 } | |
4285 | 5537 if (!in_history(histype, new_entry, TRUE, sep, FALSE)) |
7 | 5538 { |
5539 if (++hisidx[histype] == hislen) | |
5540 hisidx[histype] = 0; | |
5541 hisptr = &history[histype][hisidx[histype]]; | |
5542 vim_free(hisptr->hisstr); | |
5543 | |
5544 /* Store the separator after the NUL of the string. */ | |
835 | 5545 len = (int)STRLEN(new_entry); |
7 | 5546 hisptr->hisstr = vim_strnsave(new_entry, len + 2); |
5547 if (hisptr->hisstr != NULL) | |
5548 hisptr->hisstr[len + 1] = sep; | |
5549 | |
5550 hisptr->hisnum = ++hisnum[histype]; | |
4258 | 5551 hisptr->viminfo = FALSE; |
7 | 5552 if (histype == HIST_SEARCH && in_map) |
5553 last_maptick = maptick; | |
5554 } | |
5555 } | |
5556 | |
5557 #if defined(FEAT_EVAL) || defined(PROTO) | |
5558 | |
5559 /* | |
5560 * Get identifier of newest history entry. | |
5561 * "histype" may be one of the HIST_ values. | |
5562 */ | |
5563 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5564 get_history_idx(int histype) |
7 | 5565 { |
5566 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT | |
5567 || hisidx[histype] < 0) | |
5568 return -1; | |
5569 | |
5570 return history[histype][hisidx[histype]].hisnum; | |
5571 } | |
5572 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
5573 static struct cmdline_info *get_ccline_ptr(void); |
95 | 5574 |
5575 /* | |
5576 * Get pointer to the command line info to use. cmdline_paste() may clear | |
5577 * ccline and put the previous value in prev_ccline. | |
5578 */ | |
5579 static struct cmdline_info * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5580 get_ccline_ptr(void) |
95 | 5581 { |
5582 if ((State & CMDLINE) == 0) | |
5583 return NULL; | |
5584 if (ccline.cmdbuff != NULL) | |
5585 return &ccline; | |
5586 if (prev_ccline_used && prev_ccline.cmdbuff != NULL) | |
5587 return &prev_ccline; | |
5588 return NULL; | |
5589 } | |
5590 | |
7 | 5591 /* |
5592 * Get the current command line in allocated memory. | |
5593 * Only works when the command line is being edited. | |
5594 * Returns NULL when something is wrong. | |
5595 */ | |
5596 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5597 get_cmdline_str(void) |
7 | 5598 { |
95 | 5599 struct cmdline_info *p = get_ccline_ptr(); |
5600 | |
5601 if (p == NULL) | |
7 | 5602 return NULL; |
95 | 5603 return vim_strnsave(p->cmdbuff, p->cmdlen); |
7 | 5604 } |
5605 | |
5606 /* | |
5607 * Get the current command line position, counted in bytes. | |
5608 * Zero is the first position. | |
5609 * Only works when the command line is being edited. | |
5610 * Returns -1 when something is wrong. | |
5611 */ | |
5612 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5613 get_cmdline_pos(void) |
7 | 5614 { |
95 | 5615 struct cmdline_info *p = get_ccline_ptr(); |
5616 | |
5617 if (p == NULL) | |
7 | 5618 return -1; |
95 | 5619 return p->cmdpos; |
7 | 5620 } |
5621 | |
5622 /* | |
5623 * Set the command line byte position to "pos". Zero is the first position. | |
5624 * Only works when the command line is being edited. | |
5625 * Returns 1 when failed, 0 when OK. | |
5626 */ | |
5627 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5628 set_cmdline_pos( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5629 int pos) |
7 | 5630 { |
95 | 5631 struct cmdline_info *p = get_ccline_ptr(); |
5632 | |
5633 if (p == NULL) | |
7 | 5634 return 1; |
5635 | |
5636 /* The position is not set directly but after CTRL-\ e or CTRL-R = has | |
5637 * changed the command line. */ | |
5638 if (pos < 0) | |
5639 new_cmdpos = 0; | |
5640 else | |
5641 new_cmdpos = pos; | |
5642 return 0; | |
5643 } | |
5644 | |
5645 /* | |
531 | 5646 * Get the current command-line type. |
532 | 5647 * Returns ':' or '/' or '?' or '@' or '>' or '-' |
531 | 5648 * Only works when the command line is being edited. |
5649 * Returns NUL when something is wrong. | |
5650 */ | |
5651 int | |
5652 get_cmdline_type() | |
5653 { | |
5654 struct cmdline_info *p = get_ccline_ptr(); | |
5655 | |
5656 if (p == NULL) | |
5657 return NUL; | |
532 | 5658 if (p->cmdfirstc == NUL) |
5659 return (p->input_fn) ? '@' : '-'; | |
531 | 5660 return p->cmdfirstc; |
5661 } | |
5662 | |
5663 /* | |
7 | 5664 * Calculate history index from a number: |
5665 * num > 0: seen as identifying number of a history entry | |
5666 * num < 0: relative position in history wrt newest entry | |
5667 * "histype" may be one of the HIST_ values. | |
5668 */ | |
5669 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5670 calc_hist_idx(int histype, int num) |
7 | 5671 { |
5672 int i; | |
5673 histentry_T *hist; | |
5674 int wrapped = FALSE; | |
5675 | |
5676 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT | |
5677 || (i = hisidx[histype]) < 0 || num == 0) | |
5678 return -1; | |
5679 | |
5680 hist = history[histype]; | |
5681 if (num > 0) | |
5682 { | |
5683 while (hist[i].hisnum > num) | |
5684 if (--i < 0) | |
5685 { | |
5686 if (wrapped) | |
5687 break; | |
5688 i += hislen; | |
5689 wrapped = TRUE; | |
5690 } | |
5691 if (hist[i].hisnum == num && hist[i].hisstr != NULL) | |
5692 return i; | |
5693 } | |
5694 else if (-num <= hislen) | |
5695 { | |
5696 i += num + 1; | |
5697 if (i < 0) | |
5698 i += hislen; | |
5699 if (hist[i].hisstr != NULL) | |
5700 return i; | |
5701 } | |
5702 return -1; | |
5703 } | |
5704 | |
5705 /* | |
5706 * Get a history entry by its index. | |
5707 * "histype" may be one of the HIST_ values. | |
5708 */ | |
5709 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5710 get_history_entry(int histype, int idx) |
7 | 5711 { |
5712 idx = calc_hist_idx(histype, idx); | |
5713 if (idx >= 0) | |
5714 return history[histype][idx].hisstr; | |
5715 else | |
5716 return (char_u *)""; | |
5717 } | |
5718 | |
5719 /* | |
5720 * Clear all entries of a history. | |
5721 * "histype" may be one of the HIST_ values. | |
5722 */ | |
5723 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5724 clr_history(int histype) |
7 | 5725 { |
5726 int i; | |
5727 histentry_T *hisptr; | |
5728 | |
5729 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT) | |
5730 { | |
5731 hisptr = history[histype]; | |
5732 for (i = hislen; i--;) | |
5733 { | |
5734 vim_free(hisptr->hisstr); | |
4258 | 5735 clear_hist_entry(hisptr); |
7 | 5736 } |
5737 hisidx[histype] = -1; /* mark history as cleared */ | |
5738 hisnum[histype] = 0; /* reset identifier counter */ | |
5739 return OK; | |
5740 } | |
5741 return FAIL; | |
5742 } | |
5743 | |
5744 /* | |
5745 * Remove all entries matching {str} from a history. | |
5746 * "histype" may be one of the HIST_ values. | |
5747 */ | |
5748 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5749 del_history_entry(int histype, char_u *str) |
7 | 5750 { |
5751 regmatch_T regmatch; | |
5752 histentry_T *hisptr; | |
5753 int idx; | |
5754 int i; | |
5755 int last; | |
5756 int found = FALSE; | |
5757 | |
5758 regmatch.regprog = NULL; | |
5759 regmatch.rm_ic = FALSE; /* always match case */ | |
5760 if (hislen != 0 | |
5761 && histype >= 0 | |
5762 && histype < HIST_COUNT | |
5763 && *str != NUL | |
5764 && (idx = hisidx[histype]) >= 0 | |
5765 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING)) | |
5766 != NULL) | |
5767 { | |
5768 i = last = idx; | |
5769 do | |
5770 { | |
5771 hisptr = &history[histype][i]; | |
5772 if (hisptr->hisstr == NULL) | |
5773 break; | |
5774 if (vim_regexec(®match, hisptr->hisstr, (colnr_T)0)) | |
5775 { | |
5776 found = TRUE; | |
5777 vim_free(hisptr->hisstr); | |
4258 | 5778 clear_hist_entry(hisptr); |
7 | 5779 } |
5780 else | |
5781 { | |
5782 if (i != last) | |
5783 { | |
5784 history[histype][last] = *hisptr; | |
4258 | 5785 clear_hist_entry(hisptr); |
7 | 5786 } |
5787 if (--last < 0) | |
5788 last += hislen; | |
5789 } | |
5790 if (--i < 0) | |
5791 i += hislen; | |
5792 } while (i != idx); | |
5793 if (history[histype][idx].hisstr == NULL) | |
5794 hisidx[histype] = -1; | |
5795 } | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
5796 vim_regfree(regmatch.regprog); |
7 | 5797 return found; |
5798 } | |
5799 | |
5800 /* | |
5801 * Remove an indexed entry from a history. | |
5802 * "histype" may be one of the HIST_ values. | |
5803 */ | |
5804 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5805 del_history_idx(int histype, int idx) |
7 | 5806 { |
5807 int i, j; | |
5808 | |
5809 i = calc_hist_idx(histype, idx); | |
5810 if (i < 0) | |
5811 return FALSE; | |
5812 idx = hisidx[histype]; | |
5813 vim_free(history[histype][i].hisstr); | |
5814 | |
5815 /* When deleting the last added search string in a mapping, reset | |
5816 * last_maptick, so that the last added search string isn't deleted again. | |
5817 */ | |
5818 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx) | |
5819 last_maptick = -1; | |
5820 | |
5821 while (i != idx) | |
5822 { | |
5823 j = (i + 1) % hislen; | |
5824 history[histype][i] = history[histype][j]; | |
5825 i = j; | |
5826 } | |
4258 | 5827 clear_hist_entry(&history[histype][i]); |
7 | 5828 if (--i < 0) |
5829 i += hislen; | |
5830 hisidx[histype] = i; | |
5831 return TRUE; | |
5832 } | |
5833 | |
5834 #endif /* FEAT_EVAL */ | |
5835 | |
5836 #if defined(FEAT_CRYPT) || defined(PROTO) | |
5837 /* | |
5838 * Very specific function to remove the value in ":set key=val" from the | |
5839 * history. | |
5840 */ | |
5841 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5842 remove_key_from_history(void) |
7 | 5843 { |
5844 char_u *p; | |
5845 int i; | |
5846 | |
5847 i = hisidx[HIST_CMD]; | |
5848 if (i < 0) | |
5849 return; | |
5850 p = history[HIST_CMD][i].hisstr; | |
5851 if (p != NULL) | |
5852 for ( ; *p; ++p) | |
5853 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3])) | |
5854 { | |
5855 p = vim_strchr(p + 3, '='); | |
5856 if (p == NULL) | |
5857 break; | |
5858 ++p; | |
5859 for (i = 0; p[i] && !vim_iswhite(p[i]); ++i) | |
5860 if (p[i] == '\\' && p[i + 1]) | |
5861 ++i; | |
1621 | 5862 STRMOVE(p, p + i); |
7 | 5863 --p; |
5864 } | |
5865 } | |
5866 #endif | |
5867 | |
5868 #endif /* FEAT_CMDHIST */ | |
5869 | |
5870 #if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO) | |
5871 /* | |
5872 * Get indices "num1,num2" that specify a range within a list (not a range of | |
5873 * text lines in a buffer!) from a string. Used for ":history" and ":clist". | |
5874 * Returns OK if parsed successfully, otherwise FAIL. | |
5875 */ | |
5876 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5877 get_list_range(char_u **str, int *num1, int *num2) |
7 | 5878 { |
5879 int len; | |
5880 int first = FALSE; | |
5881 long num; | |
5882 | |
5883 *str = skipwhite(*str); | |
5884 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */ | |
5885 { | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
5886 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0); |
7 | 5887 *str += len; |
5888 *num1 = (int)num; | |
5889 first = TRUE; | |
5890 } | |
5891 *str = skipwhite(*str); | |
5892 if (**str == ',') /* parse "to" part of range */ | |
5893 { | |
5894 *str = skipwhite(*str + 1); | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
5895 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0); |
7 | 5896 if (len > 0) |
5897 { | |
5898 *num2 = (int)num; | |
5899 *str = skipwhite(*str + len); | |
5900 } | |
5901 else if (!first) /* no number given at all */ | |
5902 return FAIL; | |
5903 } | |
5904 else if (first) /* only one number given */ | |
5905 *num2 = *num1; | |
5906 return OK; | |
5907 } | |
5908 #endif | |
5909 | |
5910 #if defined(FEAT_CMDHIST) || defined(PROTO) | |
5911 /* | |
5912 * :history command - print a history | |
5913 */ | |
5914 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5915 ex_history(exarg_T *eap) |
7 | 5916 { |
5917 histentry_T *hist; | |
5918 int histype1 = HIST_CMD; | |
5919 int histype2 = HIST_CMD; | |
5920 int hisidx1 = 1; | |
5921 int hisidx2 = -1; | |
5922 int idx; | |
5923 int i, j, k; | |
5924 char_u *end; | |
5925 char_u *arg = eap->arg; | |
5926 | |
5927 if (hislen == 0) | |
5928 { | |
5929 MSG(_("'history' option is zero")); | |
5930 return; | |
5931 } | |
5932 | |
5933 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ',')) | |
5934 { | |
5935 end = arg; | |
5936 while (ASCII_ISALPHA(*end) | |
5937 || vim_strchr((char_u *)":=@>/?", *end) != NULL) | |
5938 end++; | |
5939 i = *end; | |
5940 *end = NUL; | |
5941 histype1 = get_histtype(arg); | |
5942 if (histype1 == -1) | |
5943 { | |
1853 | 5944 if (STRNICMP(arg, "all", STRLEN(arg)) == 0) |
7 | 5945 { |
5946 histype1 = 0; | |
5947 histype2 = HIST_COUNT-1; | |
5948 } | |
5949 else | |
5950 { | |
5951 *end = i; | |
5952 EMSG(_(e_trailing)); | |
5953 return; | |
5954 } | |
5955 } | |
5956 else | |
5957 histype2 = histype1; | |
5958 *end = i; | |
5959 } | |
5960 else | |
5961 end = arg; | |
5962 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL) | |
5963 { | |
5964 EMSG(_(e_trailing)); | |
5965 return; | |
5966 } | |
5967 | |
5968 for (; !got_int && histype1 <= histype2; ++histype1) | |
5969 { | |
5970 STRCPY(IObuff, "\n # "); | |
5971 STRCAT(STRCAT(IObuff, history_names[histype1]), " history"); | |
5972 MSG_PUTS_TITLE(IObuff); | |
5973 idx = hisidx[histype1]; | |
5974 hist = history[histype1]; | |
5975 j = hisidx1; | |
5976 k = hisidx2; | |
5977 if (j < 0) | |
5978 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum; | |
5979 if (k < 0) | |
5980 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum; | |
5981 if (idx >= 0 && j <= k) | |
5982 for (i = idx + 1; !got_int; ++i) | |
5983 { | |
5984 if (i == hislen) | |
5985 i = 0; | |
5986 if (hist[i].hisstr != NULL | |
5987 && hist[i].hisnum >= j && hist[i].hisnum <= k) | |
5988 { | |
5989 msg_putchar('\n'); | |
5990 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ', | |
5991 hist[i].hisnum); | |
5992 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10) | |
5993 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff), | |
3290 | 5994 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff)); |
7 | 5995 else |
5996 STRCAT(IObuff, hist[i].hisstr); | |
5997 msg_outtrans(IObuff); | |
5998 out_flush(); | |
5999 } | |
6000 if (i == idx) | |
6001 break; | |
6002 } | |
6003 } | |
6004 } | |
6005 #endif | |
6006 | |
6007 #if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO) | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6008 /* |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6009 * Buffers for history read from a viminfo file. Only valid while reading. |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6010 */ |
7 | 6011 static char_u **viminfo_history[HIST_COUNT] = {NULL, NULL, NULL, NULL}; |
6012 static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0}; | |
6013 static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0}; | |
6014 static int viminfo_add_at_front = FALSE; | |
6015 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
6016 static int hist_type2char(int type, int use_question); |
7 | 6017 |
6018 /* | |
6019 * Translate a history type number to the associated character. | |
6020 */ | |
6021 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6022 hist_type2char( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6023 int type, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6024 int use_question) /* use '?' instead of '/' */ |
7 | 6025 { |
6026 if (type == HIST_CMD) | |
6027 return ':'; | |
6028 if (type == HIST_SEARCH) | |
6029 { | |
6030 if (use_question) | |
6031 return '?'; | |
6032 else | |
6033 return '/'; | |
6034 } | |
6035 if (type == HIST_EXPR) | |
6036 return '='; | |
6037 return '@'; | |
6038 } | |
6039 | |
6040 /* | |
6041 * Prepare for reading the history from the viminfo file. | |
6042 * This allocates history arrays to store the read history lines. | |
6043 */ | |
6044 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6045 prepare_viminfo_history(int asklen, int writing) |
7 | 6046 { |
6047 int i; | |
6048 int num; | |
6049 int type; | |
6050 int len; | |
6051 | |
6052 init_history(); | |
4285 | 6053 viminfo_add_at_front = (asklen != 0 && !writing); |
7 | 6054 if (asklen > hislen) |
6055 asklen = hislen; | |
6056 | |
6057 for (type = 0; type < HIST_COUNT; ++type) | |
6058 { | |
4258 | 6059 /* Count the number of empty spaces in the history list. Entries read |
6060 * from viminfo previously are also considered empty. If there are | |
6061 * more spaces available than we request, then fill them up. */ | |
7 | 6062 for (i = 0, num = 0; i < hislen; i++) |
4258 | 6063 if (history[type][i].hisstr == NULL || history[type][i].viminfo) |
7 | 6064 num++; |
6065 len = asklen; | |
6066 if (num > len) | |
6067 len = num; | |
6068 if (len <= 0) | |
6069 viminfo_history[type] = NULL; | |
6070 else | |
6071 viminfo_history[type] = | |
6072 (char_u **)lalloc((long_u)(len * sizeof(char_u *)), FALSE); | |
6073 if (viminfo_history[type] == NULL) | |
6074 len = 0; | |
6075 viminfo_hislen[type] = len; | |
6076 viminfo_hisidx[type] = 0; | |
6077 } | |
6078 } | |
6079 | |
6080 /* | |
6081 * Accept a line from the viminfo, store it in the history array when it's | |
6082 * new. | |
6083 */ | |
6084 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6085 read_viminfo_history(vir_T *virp, int writing) |
7 | 6086 { |
6087 int type; | |
6088 long_u len; | |
6089 char_u *val; | |
6090 char_u *p; | |
6091 | |
6092 type = hist_char2type(virp->vir_line[0]); | |
6093 if (viminfo_hisidx[type] < viminfo_hislen[type]) | |
6094 { | |
6095 val = viminfo_readstring(virp, 1, TRUE); | |
6096 if (val != NULL && *val != NUL) | |
6097 { | |
3316 | 6098 int sep = (*val == ' ' ? NUL : *val); |
6099 | |
7 | 6100 if (!in_history(type, val + (type == HIST_SEARCH), |
4285 | 6101 viminfo_add_at_front, sep, writing)) |
7 | 6102 { |
6103 /* Need to re-allocate to append the separator byte. */ | |
6104 len = STRLEN(val); | |
6105 p = lalloc(len + 2, TRUE); | |
6106 if (p != NULL) | |
6107 { | |
6108 if (type == HIST_SEARCH) | |
6109 { | |
6110 /* Search entry: Move the separator from the first | |
6111 * column to after the NUL. */ | |
6112 mch_memmove(p, val + 1, (size_t)len); | |
3316 | 6113 p[len] = sep; |
7 | 6114 } |
6115 else | |
6116 { | |
6117 /* Not a search entry: No separator in the viminfo | |
6118 * file, add a NUL separator. */ | |
6119 mch_memmove(p, val, (size_t)len + 1); | |
6120 p[len + 1] = NUL; | |
6121 } | |
6122 viminfo_history[type][viminfo_hisidx[type]++] = p; | |
6123 } | |
6124 } | |
6125 } | |
6126 vim_free(val); | |
6127 } | |
6128 return viminfo_readline(virp); | |
6129 } | |
6130 | |
4285 | 6131 /* |
6132 * Finish reading history lines from viminfo. Not used when writing viminfo. | |
6133 */ | |
7 | 6134 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6135 finish_viminfo_history(void) |
7 | 6136 { |
6137 int idx; | |
6138 int i; | |
6139 int type; | |
6140 | |
6141 for (type = 0; type < HIST_COUNT; ++type) | |
6142 { | |
6143 if (history[type] == NULL) | |
4283 | 6144 continue; |
7 | 6145 idx = hisidx[type] + viminfo_hisidx[type]; |
6146 if (idx >= hislen) | |
6147 idx -= hislen; | |
6148 else if (idx < 0) | |
6149 idx = hislen - 1; | |
6150 if (viminfo_add_at_front) | |
6151 hisidx[type] = idx; | |
6152 else | |
6153 { | |
6154 if (hisidx[type] == -1) | |
6155 hisidx[type] = hislen - 1; | |
6156 do | |
6157 { | |
4258 | 6158 if (history[type][idx].hisstr != NULL |
6159 || history[type][idx].viminfo) | |
7 | 6160 break; |
6161 if (++idx == hislen) | |
6162 idx = 0; | |
6163 } while (idx != hisidx[type]); | |
6164 if (idx != hisidx[type] && --idx < 0) | |
6165 idx = hislen - 1; | |
6166 } | |
6167 for (i = 0; i < viminfo_hisidx[type]; i++) | |
6168 { | |
6169 vim_free(history[type][idx].hisstr); | |
6170 history[type][idx].hisstr = viminfo_history[type][i]; | |
4258 | 6171 history[type][idx].viminfo = TRUE; |
7 | 6172 if (--idx < 0) |
6173 idx = hislen - 1; | |
6174 } | |
6175 idx += 1; | |
6176 idx %= hislen; | |
6177 for (i = 0; i < viminfo_hisidx[type]; i++) | |
6178 { | |
6179 history[type][idx++].hisnum = ++hisnum[type]; | |
6180 idx %= hislen; | |
6181 } | |
6182 vim_free(viminfo_history[type]); | |
6183 viminfo_history[type] = NULL; | |
4327 | 6184 viminfo_hisidx[type] = 0; |
7 | 6185 } |
6186 } | |
6187 | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6188 /* |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6189 * Write history to viminfo file in "fp". |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6190 * When "merge" is TRUE merge history lines with a previously read viminfo |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6191 * file, data is in viminfo_history[]. |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6192 * When "merge" is FALSE just write all history lines. Used for ":wviminfo!". |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6193 */ |
7 | 6194 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6195 write_viminfo_history( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6196 FILE *fp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6197 int merge) |
7 | 6198 { |
6199 int i; | |
6200 int type; | |
6201 int num_saved; | |
6202 char_u *p; | |
6203 int c; | |
4283 | 6204 int round; |
7 | 6205 |
6206 init_history(); | |
6207 if (hislen == 0) | |
6208 return; | |
6209 for (type = 0; type < HIST_COUNT; ++type) | |
6210 { | |
6211 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE)); | |
6212 if (num_saved == 0) | |
6213 continue; | |
6214 if (num_saved < 0) /* Use default */ | |
6215 num_saved = hislen; | |
6216 fprintf(fp, _("\n# %s History (newest to oldest):\n"), | |
6217 type == HIST_CMD ? _("Command Line") : | |
6218 type == HIST_SEARCH ? _("Search String") : | |
6219 type == HIST_EXPR ? _("Expression") : | |
6220 _("Input Line")); | |
6221 if (num_saved > hislen) | |
6222 num_saved = hislen; | |
4283 | 6223 |
6224 /* | |
6225 * Merge typed and viminfo history: | |
6226 * round 1: history of typed commands. | |
6227 * round 2: history from recently read viminfo. | |
6228 */ | |
6229 for (round = 1; round <= 2; ++round) | |
6230 { | |
4307 | 6231 if (round == 1) |
6232 /* start at newest entry, somewhere in the list */ | |
6233 i = hisidx[type]; | |
6234 else if (viminfo_hisidx[type] > 0) | |
6235 /* start at newest entry, first in the list */ | |
6236 i = 0; | |
6237 else | |
6238 /* empty list */ | |
6239 i = -1; | |
4283 | 6240 if (i >= 0) |
6241 while (num_saved > 0 | |
6242 && !(round == 2 && i >= viminfo_hisidx[type])) | |
7 | 6243 { |
4283 | 6244 p = round == 1 ? history[type][i].hisstr |
4327 | 6245 : viminfo_history[type] == NULL ? NULL |
4283 | 6246 : viminfo_history[type][i]; |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6247 if (p != NULL && (round == 2 |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6248 || !merge |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6249 || !history[type][i].viminfo)) |
7 | 6250 { |
4283 | 6251 --num_saved; |
6252 fputc(hist_type2char(type, TRUE), fp); | |
6253 /* For the search history: put the separator in the | |
6254 * second column; use a space if there isn't one. */ | |
6255 if (type == HIST_SEARCH) | |
6256 { | |
6257 c = p[STRLEN(p) + 1]; | |
6258 putc(c == NUL ? ' ' : c, fp); | |
6259 } | |
6260 viminfo_writestring(fp, p); | |
7 | 6261 } |
4283 | 6262 if (round == 1) |
6263 { | |
6264 /* Decrement index, loop around and stop when back at | |
6265 * the start. */ | |
6266 if (--i < 0) | |
6267 i = hislen - 1; | |
6268 if (i == hisidx[type]) | |
6269 break; | |
6270 } | |
6271 else | |
6272 { | |
6273 /* Increment index. Stop at the end in the while. */ | |
6274 ++i; | |
6275 } | |
7 | 6276 } |
4283 | 6277 } |
4285 | 6278 for (i = 0; i < viminfo_hisidx[type]; ++i) |
4327 | 6279 if (viminfo_history[type] != NULL) |
6280 vim_free(viminfo_history[type][i]); | |
4285 | 6281 vim_free(viminfo_history[type]); |
6282 viminfo_history[type] = NULL; | |
4311 | 6283 viminfo_hisidx[type] = 0; |
7 | 6284 } |
6285 } | |
6286 #endif /* FEAT_VIMINFO */ | |
6287 | |
6288 #if defined(FEAT_FKMAP) || defined(PROTO) | |
6289 /* | |
6290 * Write a character at the current cursor+offset position. | |
6291 * It is directly written into the command buffer block. | |
6292 */ | |
6293 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6294 cmd_pchar(int c, int offset) |
7 | 6295 { |
6296 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0) | |
6297 { | |
6298 EMSG(_("E198: cmd_pchar beyond the command length")); | |
6299 return; | |
6300 } | |
6301 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c; | |
6302 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
6303 } | |
6304 | |
6305 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6306 cmd_gchar(int offset) |
7 | 6307 { |
6308 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0) | |
6309 { | |
6310 /* EMSG(_("cmd_gchar beyond the command length")); */ | |
6311 return NUL; | |
6312 } | |
6313 return (int)ccline.cmdbuff[ccline.cmdpos + offset]; | |
6314 } | |
6315 #endif | |
6316 | |
6317 #if defined(FEAT_CMDWIN) || defined(PROTO) | |
6318 /* | |
6319 * Open a window on the current command line and history. Allow editing in | |
6320 * the window. Returns when the window is closed. | |
6321 * Returns: | |
6322 * CR if the command is to be executed | |
6323 * Ctrl_C if it is to be abandoned | |
6324 * K_IGNORE if editing continues | |
6325 */ | |
6326 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6327 ex_window(void) |
7 | 6328 { |
6329 struct cmdline_info save_ccline; | |
6330 buf_T *old_curbuf = curbuf; | |
6331 win_T *old_curwin = curwin; | |
6332 buf_T *bp; | |
6333 win_T *wp; | |
6334 int i; | |
6335 linenr_T lnum; | |
6336 int histtype; | |
6337 garray_T winsizes; | |
1685 | 6338 #ifdef FEAT_AUTOCMD |
7 | 6339 char_u typestr[2]; |
1685 | 6340 #endif |
7 | 6341 int save_restart_edit = restart_edit; |
6342 int save_State = State; | |
6343 int save_exmode = exmode_active; | |
510 | 6344 #ifdef FEAT_RIGHTLEFT |
6345 int save_cmdmsg_rl = cmdmsg_rl; | |
6346 #endif | |
6145 | 6347 #ifdef FEAT_FOLDING |
6348 int save_KeyTyped; | |
6349 #endif | |
7 | 6350 |
6351 /* Can't do this recursively. Can't do it when typing a password. */ | |
6352 if (cmdwin_type != 0 | |
6353 # if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
6354 || cmdline_star > 0 | |
6355 # endif | |
6356 ) | |
6357 { | |
6358 beep_flush(); | |
6359 return K_IGNORE; | |
6360 } | |
6361 | |
6362 /* Save current window sizes. */ | |
6363 win_size_save(&winsizes); | |
6364 | |
6365 # ifdef FEAT_AUTOCMD | |
6366 /* Don't execute autocommands while creating the window. */ | |
1410 | 6367 block_autocmds(); |
7 | 6368 # endif |
683 | 6369 /* don't use a new tab page */ |
6370 cmdmod.tab = 0; | |
6371 | |
7 | 6372 /* Create a window for the command-line buffer. */ |
6373 if (win_split((int)p_cwh, WSP_BOT) == FAIL) | |
6374 { | |
6375 beep_flush(); | |
1410 | 6376 # ifdef FEAT_AUTOCMD |
6377 unblock_autocmds(); | |
6378 # endif | |
7 | 6379 return K_IGNORE; |
6380 } | |
1831 | 6381 cmdwin_type = get_cmdline_type(); |
7 | 6382 |
6383 /* Create the command-line buffer empty. */ | |
1743 | 6384 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL); |
1621 | 6385 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE); |
7 | 6386 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL); |
6387 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL); | |
6388 curbuf->b_p_ma = TRUE; | |
1865 | 6389 #ifdef FEAT_FOLDING |
6390 curwin->w_p_fen = FALSE; | |
6391 #endif | |
7 | 6392 # ifdef FEAT_RIGHTLEFT |
510 | 6393 curwin->w_p_rl = cmdmsg_rl; |
6394 cmdmsg_rl = FALSE; | |
7 | 6395 # endif |
2583 | 6396 RESET_BINDING(curwin); |
7 | 6397 |
6398 # ifdef FEAT_AUTOCMD | |
6399 /* Do execute autocommands for setting the filetype (load syntax). */ | |
1410 | 6400 unblock_autocmds(); |
7 | 6401 # endif |
6402 | |
510 | 6403 /* Showing the prompt may have set need_wait_return, reset it. */ |
6404 need_wait_return = FALSE; | |
6405 | |
1831 | 6406 histtype = hist_char2type(cmdwin_type); |
7 | 6407 if (histtype == HIST_CMD || histtype == HIST_DEBUG) |
6408 { | |
6409 if (p_wc == TAB) | |
6410 { | |
6411 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT); | |
6412 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL); | |
6413 } | |
6414 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL); | |
6415 } | |
6416 | |
10 | 6417 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin |
6418 * sets 'textwidth' to 78). */ | |
6419 curbuf->b_p_tw = 0; | |
6420 | |
7 | 6421 /* Fill the buffer with the history. */ |
6422 init_history(); | |
6423 if (hislen > 0) | |
6424 { | |
6425 i = hisidx[histtype]; | |
6426 if (i >= 0) | |
6427 { | |
6428 lnum = 0; | |
6429 do | |
6430 { | |
6431 if (++i == hislen) | |
6432 i = 0; | |
6433 if (history[histtype][i].hisstr != NULL) | |
6434 ml_append(lnum++, history[histtype][i].hisstr, | |
6435 (colnr_T)0, FALSE); | |
6436 } | |
6437 while (i != hisidx[histtype]); | |
6438 } | |
6439 } | |
6440 | |
6441 /* Replace the empty last line with the current command-line and put the | |
6442 * cursor there. */ | |
6443 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE); | |
6444 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
6445 curwin->w_cursor.col = ccline.cmdpos; | |
510 | 6446 changed_line_abv_curs(); |
6447 invalidate_botline(); | |
743 | 6448 redraw_later(SOME_VALID); |
7 | 6449 |
6450 /* Save the command line info, can be used recursively. */ | |
6451 save_ccline = ccline; | |
6452 ccline.cmdbuff = NULL; | |
6453 ccline.cmdprompt = NULL; | |
6454 | |
6455 /* No Ex mode here! */ | |
6456 exmode_active = 0; | |
6457 | |
6458 State = NORMAL; | |
6459 # ifdef FEAT_MOUSE | |
6460 setmouse(); | |
6461 # endif | |
6462 | |
6463 # ifdef FEAT_AUTOCMD | |
6464 /* Trigger CmdwinEnter autocommands. */ | |
6465 typestr[0] = cmdwin_type; | |
6466 typestr[1] = NUL; | |
6467 apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf); | |
929 | 6468 if (restart_edit != 0) /* autocmd with ":startinsert" */ |
6469 stuffcharReadbuff(K_NOP); | |
7 | 6470 # endif |
6471 | |
6472 i = RedrawingDisabled; | |
6473 RedrawingDisabled = 0; | |
6474 | |
6475 /* | |
6476 * Call the main loop until <CR> or CTRL-C is typed. | |
6477 */ | |
6478 cmdwin_result = 0; | |
168 | 6479 main_loop(TRUE, FALSE); |
7 | 6480 |
6481 RedrawingDisabled = i; | |
6482 | |
6483 # ifdef FEAT_AUTOCMD | |
6145 | 6484 |
6485 # ifdef FEAT_FOLDING | |
6486 save_KeyTyped = KeyTyped; | |
6487 # endif | |
6488 | |
7 | 6489 /* Trigger CmdwinLeave autocommands. */ |
6490 apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf); | |
6145 | 6491 |
6492 # ifdef FEAT_FOLDING | |
6493 /* Restore KeyTyped in case it is modified by autocommands */ | |
6494 KeyTyped = save_KeyTyped; | |
6495 # endif | |
6496 | |
7 | 6497 # endif |
6498 | |
1214 | 6499 /* Restore the command line info. */ |
7 | 6500 ccline = save_ccline; |
6501 cmdwin_type = 0; | |
6502 | |
6503 exmode_active = save_exmode; | |
6504 | |
1612 | 6505 /* Safety check: The old window or buffer was deleted: It's a bug when |
7 | 6506 * this happens! */ |
6507 if (!win_valid(old_curwin) || !buf_valid(old_curbuf)) | |
6508 { | |
6509 cmdwin_result = Ctrl_C; | |
6510 EMSG(_("E199: Active window or buffer deleted")); | |
6511 } | |
6512 else | |
6513 { | |
6514 # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
6515 /* autocmds may abort script processing */ | |
6516 if (aborting() && cmdwin_result != K_IGNORE) | |
6517 cmdwin_result = Ctrl_C; | |
6518 # endif | |
6519 /* Set the new command line from the cmdline buffer. */ | |
6520 vim_free(ccline.cmdbuff); | |
510 | 6521 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */ |
7 | 6522 { |
510 | 6523 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!"; |
6524 | |
6525 if (histtype == HIST_CMD) | |
6526 { | |
6527 /* Execute the command directly. */ | |
6528 ccline.cmdbuff = vim_strsave((char_u *)p); | |
6529 cmdwin_result = CAR; | |
6530 } | |
6531 else | |
6532 { | |
6533 /* First need to cancel what we were doing. */ | |
6534 ccline.cmdbuff = NULL; | |
6535 stuffcharReadbuff(':'); | |
6536 stuffReadbuff((char_u *)p); | |
6537 stuffcharReadbuff(CAR); | |
6538 } | |
7 | 6539 } |
6540 else if (cmdwin_result == K_XF2) /* :qa typed */ | |
6541 { | |
6542 ccline.cmdbuff = vim_strsave((char_u *)"qa"); | |
6543 cmdwin_result = CAR; | |
6544 } | |
2839 | 6545 else if (cmdwin_result == Ctrl_C) |
6546 { | |
6547 /* :q or :close, don't execute any command | |
6548 * and don't modify the cmd window. */ | |
6549 ccline.cmdbuff = NULL; | |
6550 } | |
7 | 6551 else |
6552 ccline.cmdbuff = vim_strsave(ml_get_curline()); | |
6553 if (ccline.cmdbuff == NULL) | |
6554 cmdwin_result = Ctrl_C; | |
6555 else | |
6556 { | |
6557 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); | |
6558 ccline.cmdbufflen = ccline.cmdlen + 1; | |
6559 ccline.cmdpos = curwin->w_cursor.col; | |
6560 if (ccline.cmdpos > ccline.cmdlen) | |
6561 ccline.cmdpos = ccline.cmdlen; | |
6562 if (cmdwin_result == K_IGNORE) | |
6563 { | |
6564 set_cmdspos_cursor(); | |
6565 redrawcmd(); | |
6566 } | |
6567 } | |
6568 | |
6569 # ifdef FEAT_AUTOCMD | |
6570 /* Don't execute autocommands while deleting the window. */ | |
1410 | 6571 block_autocmds(); |
7 | 6572 # endif |
6876 | 6573 # ifdef FEAT_CONCEAL |
6574 /* Avoid command-line window first character being concealed. */ | |
6575 curwin->w_p_cole = 0; | |
6576 # endif | |
7 | 6577 wp = curwin; |
6578 bp = curbuf; | |
6579 win_goto(old_curwin); | |
6580 win_close(wp, TRUE); | |
2099
c1f67ce5740a
updated for version 7.2.382
Bram Moolenaar <bram@zimbu.org>
parents:
2097
diff
changeset
|
6581 |
c1f67ce5740a
updated for version 7.2.382
Bram Moolenaar <bram@zimbu.org>
parents:
2097
diff
changeset
|
6582 /* win_close() may have already wiped the buffer when 'bh' is |
c1f67ce5740a
updated for version 7.2.382
Bram Moolenaar <bram@zimbu.org>
parents:
2097
diff
changeset
|
6583 * set to 'wipe' */ |
c1f67ce5740a
updated for version 7.2.382
Bram Moolenaar <bram@zimbu.org>
parents:
2097
diff
changeset
|
6584 if (buf_valid(bp)) |
3365 | 6585 close_buffer(NULL, bp, DOBUF_WIPE, FALSE); |
7 | 6586 |
6587 /* Restore window sizes. */ | |
6588 win_size_restore(&winsizes); | |
6589 | |
6590 # ifdef FEAT_AUTOCMD | |
1410 | 6591 unblock_autocmds(); |
7 | 6592 # endif |
6593 } | |
6594 | |
6595 ga_clear(&winsizes); | |
6596 restart_edit = save_restart_edit; | |
510 | 6597 # ifdef FEAT_RIGHTLEFT |
6598 cmdmsg_rl = save_cmdmsg_rl; | |
6599 # endif | |
7 | 6600 |
6601 State = save_State; | |
6602 # ifdef FEAT_MOUSE | |
6603 setmouse(); | |
6604 # endif | |
6605 | |
6606 return cmdwin_result; | |
6607 } | |
6608 #endif /* FEAT_CMDWIN */ | |
6609 | |
6610 /* | |
6611 * Used for commands that either take a simple command string argument, or: | |
6612 * cmd << endmarker | |
6613 * {script} | |
6614 * endmarker | |
6615 * Returns a pointer to allocated memory with {script} or NULL. | |
6616 */ | |
6617 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6618 script_get(exarg_T *eap, char_u *cmd) |
7 | 6619 { |
6620 char_u *theline; | |
6621 char *end_pattern = NULL; | |
6622 char dot[] = "."; | |
6623 garray_T ga; | |
6624 | |
6625 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL) | |
6626 return NULL; | |
6627 | |
6628 ga_init2(&ga, 1, 0x400); | |
6629 | |
6630 if (cmd[2] != NUL) | |
6631 end_pattern = (char *)skipwhite(cmd + 2); | |
6632 else | |
6633 end_pattern = dot; | |
6634 | |
6635 for (;;) | |
6636 { | |
6637 theline = eap->getline( | |
6638 #ifdef FEAT_EVAL | |
75 | 6639 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 6640 #endif |
6641 NUL, eap->cookie, 0); | |
6642 | |
6643 if (theline == NULL || STRCMP(end_pattern, theline) == 0) | |
1694 | 6644 { |
6645 vim_free(theline); | |
7 | 6646 break; |
1694 | 6647 } |
7 | 6648 |
6649 ga_concat(&ga, theline); | |
6650 ga_append(&ga, '\n'); | |
6651 vim_free(theline); | |
6652 } | |
21 | 6653 ga_append(&ga, NUL); |
7 | 6654 |
6655 return (char_u *)ga.ga_data; | |
6656 } |