Mercurial > vim
annotate src/ex_getln.c @ 15450:bb421f682528 v8.1.0733
patch 8.1.0733: too many #ifdefs for the multi-byte feature
commit https://github.com/vim/vim/commit/2be7cb73f66cf69659195d9a8ad4beaa359f2865
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 12 16:10:51 2019 +0100
patch 8.1.0733: too many #ifdefs for the multi-byte feature
Problem: Too many #ifdefs for the multi-byte feature.
Solution: Tentatively always enable the multi-byte feature. If you have a
problem with this, please discuss on the Vim maillist.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 12 Jan 2019 16:15:04 +0100 |
parents | db5d2429bda3 |
children | 55ccc2d353bd |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9990
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * ex_getln.c: Functions for entering and editing an Ex command line. | |
12 */ | |
13 | |
14 #include "vim.h" | |
15 | |
14548
806e1a2648c6
patch 8.1.0287: MAX is not defined everywhere
Christian Brabandt <cb@256bit.org>
parents:
14546
diff
changeset
|
16 #ifndef MAX |
806e1a2648c6
patch 8.1.0287: MAX is not defined everywhere
Christian Brabandt <cb@256bit.org>
parents:
14546
diff
changeset
|
17 # define MAX(x,y) ((x) > (y) ? (x) : (y)) |
806e1a2648c6
patch 8.1.0287: MAX is not defined everywhere
Christian Brabandt <cb@256bit.org>
parents:
14546
diff
changeset
|
18 #endif |
806e1a2648c6
patch 8.1.0287: MAX is not defined everywhere
Christian Brabandt <cb@256bit.org>
parents:
14546
diff
changeset
|
19 |
7 | 20 /* |
21 * Variables shared between getcmdline(), redrawcmdline() and others. | |
22 * These need to be saved when using CTRL-R |, that's why they are in a | |
23 * structure. | |
24 */ | |
25 struct cmdline_info | |
26 { | |
27 char_u *cmdbuff; /* pointer to command line buffer */ | |
28 int cmdbufflen; /* length of cmdbuff */ | |
29 int cmdlen; /* number of chars in command line */ | |
30 int cmdpos; /* current cursor position */ | |
31 int cmdspos; /* cursor column on screen */ | |
3503 | 32 int cmdfirstc; /* ':', '/', '?', '=', '>' or NUL */ |
7 | 33 int cmdindent; /* number of spaces before cmdline */ |
34 char_u *cmdprompt; /* message in front of cmdline */ | |
35 int cmdattr; /* attributes for prompt */ | |
36 int overstrike; /* Typing mode on the command line. Shared by | |
37 getcmdline() and put_on_cmdline(). */ | |
1718 | 38 expand_T *xpc; /* struct being used for expansion, xp_pattern |
39 may point into cmdbuff */ | |
531 | 40 int xp_context; /* type of expansion */ |
41 # ifdef FEAT_EVAL | |
42 char_u *xp_arg; /* user-defined expansion arg */ | |
1039 | 43 int input_fn; /* when TRUE Invoked for input() function */ |
531 | 44 # endif |
7 | 45 }; |
46 | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
47 // The current cmdline_info. It is initialized in getcmdline() and after that |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
48 // used by other functions. When invoking getcmdline() recursively it needs |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
49 // to be saved with save_cmdline() and restored with restore_cmdline(). |
1718 | 50 static struct cmdline_info ccline; |
7 | 51 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
52 static int cmd_showtail; /* Only show path tail in lists ? */ |
7 | 53 |
54 #ifdef FEAT_EVAL | |
55 static int new_cmdpos; /* position set by set_cmdline_pos() */ | |
56 #endif | |
57 | |
11664
e3bfe624ba0a
patch 8.0.0714: when a timer causes a command line redraw " goes missing
Christian Brabandt <cb@256bit.org>
parents:
11647
diff
changeset
|
58 static int extra_char = NUL; /* extra character to display when redrawing |
e3bfe624ba0a
patch 8.0.0714: when a timer causes a command line redraw " goes missing
Christian Brabandt <cb@256bit.org>
parents:
11647
diff
changeset
|
59 * the command line */ |
11674
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
60 static int extra_char_shift; |
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
61 |
7 | 62 #ifdef FEAT_CMDHIST |
63 typedef struct hist_entry | |
64 { | |
65 int hisnum; /* identifying number */ | |
4258 | 66 int viminfo; /* when TRUE hisstr comes from viminfo */ |
7 | 67 char_u *hisstr; /* actual entry, separator char after the NUL */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
68 time_t time_set; /* when it was typed, zero if unknown */ |
7 | 69 } histentry_T; |
70 | |
71 static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL}; | |
72 static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */ | |
73 static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0}; | |
74 /* identifying (unique) number of newest history entry */ | |
75 static int hislen = 0; /* actual length of history tables */ | |
76 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
77 static int hist_char2type(int c); |
7 | 78 #endif |
79 | |
80 #ifdef FEAT_RIGHTLEFT | |
81 static int cmd_hkmap = 0; /* Hebrew mapping during command line */ | |
82 #endif | |
83 | |
84 #ifdef FEAT_FKMAP | |
85 static int cmd_fkmap = 0; /* Farsi mapping during command line */ | |
86 #endif | |
87 | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
88 static char_u *getcmdline_int(int firstc, long count, int indent, int init_ccline); |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
89 static int cmdline_charsize(int idx); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
90 static void set_cmdspos(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
91 static void set_cmdspos_cursor(void); |
7 | 92 #ifdef FEAT_MBYTE |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
93 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
|
94 #endif |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
95 static void alloc_cmdbuff(int len); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
96 static int realloc_cmdbuff(int len); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
97 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
|
98 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
|
99 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
|
100 static int cmdline_paste(int regname, int literally, int remcr); |
7 | 101 #ifdef FEAT_WILDMENU |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
102 static void cmdline_del(int from); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
103 #endif |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
104 static void redrawcmdprompt(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
105 static void cursorcmd(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
106 static int ccheck_abbr(int); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
107 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
|
108 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
|
109 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
|
110 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
|
111 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
|
112 static int expand_showtail(expand_T *xp); |
7 | 113 #ifdef FEAT_CMDL_COMPL |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
114 static int expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int flagsarg); |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
115 static int ExpandRTDir(char_u *pat, int flags, int *num_file, char_u ***file, char *dirname[]); |
8402
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
116 static int ExpandPackAddDir(char_u *pat, int *num_file, char_u ***file); |
3503 | 117 # ifdef FEAT_CMDHIST |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
118 static char_u *get_history_arg(expand_T *xp, int idx); |
3503 | 119 # endif |
7 | 120 # 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
|
121 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
|
122 static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file); |
7 | 123 # endif |
124 #endif | |
4265 | 125 #ifdef FEAT_CMDHIST |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
126 static void clear_hist_entry(histentry_T *hisptr); |
4265 | 127 #endif |
7 | 128 |
129 #ifdef FEAT_CMDWIN | |
11321
f57dce6b934b
patch 8.0.0546: swap file exists briefly when opening the command window
Christian Brabandt <cb@256bit.org>
parents:
11285
diff
changeset
|
130 static int open_cmdwin(void); |
7 | 131 #endif |
132 | |
3164 | 133 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
134 static int | |
135 #ifdef __BORLANDC__ | |
136 _RTLENTRYF | |
137 #endif | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
138 sort_func_compare(const void *s1, const void *s2); |
3164 | 139 #endif |
140 | |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
141 |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
142 static void |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
143 trigger_cmd_autocmd(int typechar, int evt) |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
144 { |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
145 char_u typestr[2]; |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
146 |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
147 typestr[0] = typechar; |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
148 typestr[1] = NUL; |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
149 apply_autocmds(evt, typestr, typestr, FALSE, curbuf); |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
150 } |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
151 |
7 | 152 /* |
12664
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
153 * Abandon the command line. |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
154 */ |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
155 static void |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
156 abandon_cmdline(void) |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
157 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
158 VIM_CLEAR(ccline.cmdbuff); |
12664
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
159 if (msg_scrolled == 0) |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
160 compute_cmdrow(); |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
161 MSG(""); |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
162 redraw_cmdline = TRUE; |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
163 } |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
164 |
13047
669c4f75a69e
patch 8.0.1399: warnings and errors when building tiny version
Christian Brabandt <cb@256bit.org>
parents:
13041
diff
changeset
|
165 #ifdef FEAT_SEARCH_EXTRA |
12664
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
166 /* |
13035
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
167 * Guess that the pattern matches everything. Only finds specific cases, such |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
168 * as a trailing \|, which can happen while typing a pattern. |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
169 */ |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
170 static int |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
171 empty_pattern(char_u *p) |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
172 { |
13107
fe7d576a3d3f
patch 8.0.1428: compiler warning on 64 bit MS-Windows system
Christian Brabandt <cb@256bit.org>
parents:
13047
diff
changeset
|
173 size_t n = STRLEN(p); |
13035
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
174 |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
175 /* remove trailing \v and the like */ |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
176 while (n >= 2 && p[n - 2] == '\\' |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
177 && vim_strchr((char_u *)"mMvVcCZ", p[n - 1]) != NULL) |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
178 n -= 2; |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
179 return n == 0 || (n >= 2 && p[n - 2] == '\\' && p[n - 1] == '|'); |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
180 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
181 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
182 // Struct to store the viewstate during 'incsearch' highlighting. |
13794
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
183 typedef struct { |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
184 colnr_T vs_curswant; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
185 colnr_T vs_leftcol; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
186 linenr_T vs_topline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
187 # ifdef FEAT_DIFF |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
188 int vs_topfill; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
189 # endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
190 linenr_T vs_botline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
191 linenr_T vs_empty_rows; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
192 } viewstate_T; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
193 |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
194 static void |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
195 save_viewstate(viewstate_T *vs) |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
196 { |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
197 vs->vs_curswant = curwin->w_curswant; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
198 vs->vs_leftcol = curwin->w_leftcol; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
199 vs->vs_topline = curwin->w_topline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
200 # ifdef FEAT_DIFF |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
201 vs->vs_topfill = curwin->w_topfill; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
202 # endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
203 vs->vs_botline = curwin->w_botline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
204 vs->vs_empty_rows = curwin->w_empty_rows; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
205 } |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
206 |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
207 static void |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
208 restore_viewstate(viewstate_T *vs) |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
209 { |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
210 curwin->w_curswant = vs->vs_curswant; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
211 curwin->w_leftcol = vs->vs_leftcol; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
212 curwin->w_topline = vs->vs_topline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
213 # ifdef FEAT_DIFF |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
214 curwin->w_topfill = vs->vs_topfill; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
215 # endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
216 curwin->w_botline = vs->vs_botline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
217 curwin->w_empty_rows = vs->vs_empty_rows; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
218 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
219 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
220 // Struct to store the state of 'incsearch' highlighting. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
221 typedef struct { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
222 pos_T search_start; // where 'incsearch' starts searching |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
223 pos_T save_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
224 viewstate_T init_viewstate; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
225 viewstate_T old_viewstate; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
226 pos_T match_start; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
227 pos_T match_end; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
228 int did_incsearch; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
229 int incsearch_postponed; |
14546
35e7ead872db
patch 8.1.0286: 'incsearch' does not apply to :smagic and :snomagic
Christian Brabandt <cb@256bit.org>
parents:
14544
diff
changeset
|
230 int magic_save; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
231 } incsearch_state_T; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
232 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
233 static void |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
234 init_incsearch_state(incsearch_state_T *is_state) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
235 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
236 is_state->match_start = curwin->w_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
237 is_state->did_incsearch = FALSE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
238 is_state->incsearch_postponed = FALSE; |
14546
35e7ead872db
patch 8.1.0286: 'incsearch' does not apply to :smagic and :snomagic
Christian Brabandt <cb@256bit.org>
parents:
14544
diff
changeset
|
239 is_state->magic_save = p_magic; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
240 CLEAR_POS(&is_state->match_end); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
241 is_state->save_cursor = curwin->w_cursor; // may be restored later |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
242 is_state->search_start = curwin->w_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
243 save_viewstate(&is_state->init_viewstate); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
244 save_viewstate(&is_state->old_viewstate); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
245 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
246 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
247 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
248 * First move cursor to end of match, then to the start. This |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
249 * moves the whole match onto the screen when 'nowrap' is set. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
250 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
251 static void |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
252 set_search_match(pos_T *t) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
253 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
254 t->lnum += search_match_lines; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
255 t->col = search_match_endcol; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
256 if (t->lnum > curbuf->b_ml.ml_line_count) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
257 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
258 t->lnum = curbuf->b_ml.ml_line_count; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
259 coladvance((colnr_T)MAXCOL); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
260 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
261 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
262 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
263 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
264 * Return TRUE when 'incsearch' highlighting is to be done. |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
265 * Sets search_first_line and search_last_line to the address range. |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
266 * May change the last search pattern. |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
267 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
268 static int |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
269 do_incsearch_highlighting(int firstc, incsearch_state_T *is_state, |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
270 int *skiplen, int *patlen) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
271 { |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
272 char_u *cmd; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
273 cmdmod_T save_cmdmod = cmdmod; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
274 char_u *p; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
275 int delim_optional = FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
276 int delim; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
277 char_u *end; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
278 char_u *dummy; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
279 exarg_T ea; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
280 pos_T save_cursor; |
14613
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
281 int use_last_pat; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
282 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
283 *skiplen = 0; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
284 *patlen = ccline.cmdlen; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
285 |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
286 if (!p_is || cmd_silent) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
287 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
288 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
289 // by default search all lines |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
290 search_first_line = 0; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
291 search_last_line = MAXLNUM; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
292 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
293 if (firstc == '/' || firstc == '?') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
294 return TRUE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
295 if (firstc != ':') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
296 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
297 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
298 vim_memset(&ea, 0, sizeof(ea)); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
299 ea.line1 = 1; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
300 ea.line2 = 1; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
301 ea.cmd = ccline.cmdbuff; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
302 ea.addr_type = ADDR_LINES; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
303 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
304 parse_command_modifiers(&ea, &dummy, TRUE); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
305 cmdmod = save_cmdmod; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
306 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
307 cmd = skip_range(ea.cmd, NULL); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
308 if (vim_strchr((char_u *)"sgvl", *cmd) == NULL) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
309 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
310 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
311 // Skip over "substitute" to find the pattern separator. |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
312 for (p = cmd; ASCII_ISALPHA(*p); ++p) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
313 ; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
314 if (*skipwhite(p) == NUL) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
315 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
316 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
317 if (STRNCMP(cmd, "substitute", p - cmd) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
318 || STRNCMP(cmd, "smagic", p - cmd) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
319 || STRNCMP(cmd, "snomagic", MAX(p - cmd, 3)) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
320 || STRNCMP(cmd, "vglobal", p - cmd) == 0) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
321 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
322 if (*cmd == 's' && cmd[1] == 'm') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
323 p_magic = TRUE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
324 else if (*cmd == 's' && cmd[1] == 'n') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
325 p_magic = FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
326 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
327 else if (STRNCMP(cmd, "sort", MAX(p - cmd, 3)) == 0) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
328 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
329 // skip over flags |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
330 while (ASCII_ISALPHA(*(p = skipwhite(p)))) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
331 ++p; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
332 if (*p == NUL) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
333 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
334 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
335 else if (STRNCMP(cmd, "vimgrep", MAX(p - cmd, 3)) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
336 || STRNCMP(cmd, "vimgrepadd", MAX(p - cmd, 8)) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
337 || STRNCMP(cmd, "lvimgrep", MAX(p - cmd, 2)) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
338 || STRNCMP(cmd, "lvimgrepadd", MAX(p - cmd, 9)) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
339 || STRNCMP(cmd, "global", p - cmd) == 0) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
340 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
341 // skip over "!" |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
342 if (*p == '!') |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
343 { |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
344 p++; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
345 if (*skipwhite(p) == NUL) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
346 return FALSE; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
347 } |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
348 if (*cmd != 'g') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
349 delim_optional = TRUE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
350 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
351 else |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
352 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
353 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
354 p = skipwhite(p); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
355 delim = (delim_optional && vim_isIDc(*p)) ? ' ' : *p++; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
356 end = skip_regexp(p, delim, p_magic, NULL); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
357 |
14613
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
358 use_last_pat = end == p && *end == delim; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
359 |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
360 if (end == p && !use_last_pat) |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
361 return FALSE; |
14613
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
362 |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
363 // Don't do 'hlsearch' highlighting if the pattern matches everything. |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
364 if (!use_last_pat) |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
365 { |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
366 char c = *end; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
367 int empty; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
368 |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
369 *end = NUL; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
370 empty = empty_pattern(p); |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
371 *end = c; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
372 if (empty) |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
373 return FALSE; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
374 } |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
375 |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
376 // found a non-empty pattern or // |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
377 *skiplen = (int)(p - ccline.cmdbuff); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
378 *patlen = (int)(end - p); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
379 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
380 // parse the address range |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
381 save_cursor = curwin->w_cursor; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
382 curwin->w_cursor = is_state->search_start; |
14760
fd69edd2c67e
patch 8.1.0392: error while typing :/foo/s// with 'incsearch' enabled
Christian Brabandt <cb@256bit.org>
parents:
14700
diff
changeset
|
383 parse_cmd_address(&ea, &dummy, TRUE); |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
384 if (ea.addr_count > 0) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
385 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
386 // Allow for reverse match. |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
387 if (ea.line2 < ea.line1) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
388 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
389 search_first_line = ea.line2; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
390 search_last_line = ea.line1; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
391 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
392 else |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
393 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
394 search_first_line = ea.line1; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
395 search_last_line = ea.line2; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
396 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
397 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
398 else if (cmd[0] == 's' && cmd[1] != 'o') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
399 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
400 // :s defaults to the current line |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
401 search_first_line = curwin->w_cursor.lnum; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
402 search_last_line = curwin->w_cursor.lnum; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
403 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
404 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
405 curwin->w_cursor = save_cursor; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
406 return TRUE; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
407 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
408 |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
409 static void |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
410 finish_incsearch_highlighting( |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
411 int gotesc, |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
412 incsearch_state_T *is_state, |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
413 int call_update_screen) |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
414 { |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
415 if (is_state->did_incsearch) |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
416 { |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
417 is_state->did_incsearch = FALSE; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
418 if (gotesc) |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
419 curwin->w_cursor = is_state->save_cursor; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
420 else |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
421 { |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
422 if (!EQUAL_POS(is_state->save_cursor, is_state->search_start)) |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
423 { |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
424 // put the '" mark at the original position |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
425 curwin->w_cursor = is_state->save_cursor; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
426 setpcmark(); |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
427 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
428 curwin->w_cursor = is_state->search_start; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
429 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
430 restore_viewstate(&is_state->old_viewstate); |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
431 highlight_match = FALSE; |
14652
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
432 |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
433 // by default search all lines |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
434 search_first_line = 0; |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
435 search_last_line = MAXLNUM; |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
436 |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
437 p_magic = is_state->magic_save; |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
438 |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
439 validate_cursor(); /* needed for TAB */ |
14774
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
440 redraw_all_later(SOME_VALID); |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
441 if (call_update_screen) |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
442 update_screen(SOME_VALID); |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
443 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
444 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
445 |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
446 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
447 * Do 'incsearch' highlighting if desired. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
448 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
449 static void |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
450 may_do_incsearch_highlighting( |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
451 int firstc, |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
452 long count, |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
453 incsearch_state_T *is_state) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
454 { |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
455 int skiplen, patlen; |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
456 int found; // do_search() result |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
457 pos_T end_pos; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
458 #ifdef FEAT_RELTIME |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
459 proftime_T tm; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
460 #endif |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
461 int next_char; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
462 int use_last_pat; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
463 |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
464 // Parsing range may already set the last search pattern. |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15064
diff
changeset
|
465 // NOTE: must call restore_last_search_pattern() before returning! |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
466 save_last_search_pattern(); |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
467 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
468 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen)) |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
469 { |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
470 restore_last_search_pattern(); |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
471 finish_incsearch_highlighting(FALSE, is_state, TRUE); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
472 return; |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
473 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
474 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
475 // If there is a character waiting, search and redraw later. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
476 if (char_avail()) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
477 { |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
478 restore_last_search_pattern(); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
479 is_state->incsearch_postponed = TRUE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
480 return; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
481 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
482 is_state->incsearch_postponed = FALSE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
483 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
484 if (search_first_line == 0) |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
485 // start at the original cursor position |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
486 curwin->w_cursor = is_state->search_start; |
14976
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
487 else if (search_first_line > curbuf->b_ml.ml_line_count) |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
488 { |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
489 // start after the last line |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
490 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
491 curwin->w_cursor.col = MAXCOL; |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
492 } |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
493 else |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
494 { |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
495 // start at the first line in the range |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
496 curwin->w_cursor.lnum = search_first_line; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
497 curwin->w_cursor.col = 0; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
498 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
499 |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
500 // Use the previous pattern for ":s//". |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
501 next_char = ccline.cmdbuff[skiplen + patlen]; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
502 use_last_pat = patlen == 0 && skiplen > 0 |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
503 && ccline.cmdbuff[skiplen - 1] == next_char; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
504 |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
505 // If there is no pattern, don't do anything. |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
506 if (patlen == 0 && !use_last_pat) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
507 { |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
508 found = 0; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
509 set_no_hlsearch(TRUE); // turn off previous highlight |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
510 redraw_all_later(SOME_VALID); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
511 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
512 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
513 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
514 int search_flags = SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
515 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
516 cursor_off(); // so the user knows we're busy |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
517 out_flush(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
518 ++emsg_off; // so it doesn't beep if bad expr |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
519 #ifdef FEAT_RELTIME |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
520 // Set the time limit to half a second. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
521 profile_setlimit(500L, &tm); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
522 #endif |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
523 if (!p_hls) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
524 search_flags += SEARCH_KEEP; |
14524
e36d6e01708c
patch 8.1.0275: 'incsearch' with :s doesn't start at cursor line
Christian Brabandt <cb@256bit.org>
parents:
14522
diff
changeset
|
525 if (search_first_line != 0) |
e36d6e01708c
patch 8.1.0275: 'incsearch' with :s doesn't start at cursor line
Christian Brabandt <cb@256bit.org>
parents:
14522
diff
changeset
|
526 search_flags += SEARCH_START; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
527 ccline.cmdbuff[skiplen + patlen] = NUL; |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
528 found = do_search(NULL, firstc == ':' ? '/' : firstc, |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
529 ccline.cmdbuff + skiplen, count, search_flags, |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
530 #ifdef FEAT_RELTIME |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
531 &tm, NULL |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
532 #else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
533 NULL, NULL |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
534 #endif |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
535 ); |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
536 ccline.cmdbuff[skiplen + patlen] = next_char; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
537 --emsg_off; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
538 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
539 if (curwin->w_cursor.lnum < search_first_line |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
540 || curwin->w_cursor.lnum > search_last_line) |
14542
116a01c73fd8
patch 8.1.0284: 'cursorline' highlighting wrong with 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14538
diff
changeset
|
541 { |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
542 // match outside of address range |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
543 found = 0; |
14542
116a01c73fd8
patch 8.1.0284: 'cursorline' highlighting wrong with 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14538
diff
changeset
|
544 curwin->w_cursor = is_state->search_start; |
116a01c73fd8
patch 8.1.0284: 'cursorline' highlighting wrong with 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14538
diff
changeset
|
545 } |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
546 |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
547 // if interrupted while searching, behave like it failed |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
548 if (got_int) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
549 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
550 (void)vpeekc(); // remove <C-C> from input stream |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
551 got_int = FALSE; // don't abandon the command line |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
552 found = 0; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
553 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
554 else if (char_avail()) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
555 // cancelled searching because a char was typed |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
556 is_state->incsearch_postponed = TRUE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
557 } |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
558 if (found != 0) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
559 highlight_match = TRUE; // highlight position |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
560 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
561 highlight_match = FALSE; // remove highlight |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
562 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
563 // First restore the old curwin values, so the screen is positioned in the |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
564 // same way as the actual search command. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
565 restore_viewstate(&is_state->old_viewstate); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
566 changed_cline_bef_curs(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
567 update_topline(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
568 |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
569 if (found != 0) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
570 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
571 pos_T save_pos = curwin->w_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
572 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
573 is_state->match_start = curwin->w_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
574 set_search_match(&curwin->w_cursor); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
575 validate_cursor(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
576 end_pos = curwin->w_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
577 is_state->match_end = end_pos; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
578 curwin->w_cursor = save_pos; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
579 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
580 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
581 end_pos = curwin->w_cursor; // shutup gcc 4 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
582 |
14615
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
583 // Disable 'hlsearch' highlighting if the pattern matches everything. |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
584 // Avoids a flash when typing "foo\|". |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
585 if (!use_last_pat) |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
586 { |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
587 next_char = ccline.cmdbuff[skiplen + patlen]; |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
588 ccline.cmdbuff[skiplen + patlen] = NUL; |
14774
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
589 if (empty_pattern(ccline.cmdbuff) && !no_hlsearch) |
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
590 { |
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
591 redraw_all_later(SOME_VALID); |
14615
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
592 set_no_hlsearch(TRUE); |
14774
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
593 } |
14615
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
594 ccline.cmdbuff[skiplen + patlen] = next_char; |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
595 } |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
596 |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
597 validate_cursor(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
598 // May redraw the status line to show the cursor position. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
599 if (p_ru && curwin->w_status_height > 0) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
600 curwin->w_redr_status = TRUE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
601 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
602 update_screen(SOME_VALID); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
603 restore_last_search_pattern(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
604 |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
605 // Leave it at the end to make CTRL-R CTRL-W work. But not when beyond the |
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
606 // end of the pattern, e.g. for ":s/pat/". |
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
607 if (ccline.cmdbuff[skiplen + patlen] != NUL) |
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
608 curwin->w_cursor = is_state->search_start; |
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
609 else if (found != 0) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
610 curwin->w_cursor = end_pos; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
611 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
612 msg_starthere(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
613 redrawcmdline(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
614 is_state->did_incsearch = TRUE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
615 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
616 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
617 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
618 * May adjust 'incsearch' highlighting for typing CTRL-G and CTRL-T, go to next |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
619 * or previous match. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
620 * Returns FAIL when jumping to cmdline_not_changed; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
621 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
622 static int |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
623 may_adjust_incsearch_highlighting( |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
624 int firstc, |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
625 long count, |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
626 incsearch_state_T *is_state, |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
627 int c) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
628 { |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
629 int skiplen, patlen; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
630 pos_T t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
631 char_u *pat; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
632 int search_flags = SEARCH_NOOF; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
633 int i; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
634 int save; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
635 |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
636 // Parsing range may already set the last search pattern. |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15064
diff
changeset
|
637 // NOTE: must call restore_last_search_pattern() before returning! |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
638 save_last_search_pattern(); |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
639 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
640 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen)) |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
641 { |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
642 restore_last_search_pattern(); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
643 return OK; |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
644 } |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
645 if (patlen == 0 && ccline.cmdbuff[skiplen] == NUL) |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
646 { |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
647 restore_last_search_pattern(); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
648 return FAIL; |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
649 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
650 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
651 if (firstc == ccline.cmdbuff[skiplen]) |
14520
20866abc790b
patch 8.1.0273: invalid memory access when using 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14515
diff
changeset
|
652 { |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
653 pat = last_search_pattern(); |
14520
20866abc790b
patch 8.1.0273: invalid memory access when using 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14515
diff
changeset
|
654 skiplen = 0; |
14544
2b2d7ae42fb8
patch 8.1.0285: compiler warning for conversion
Christian Brabandt <cb@256bit.org>
parents:
14542
diff
changeset
|
655 patlen = (int)STRLEN(pat); |
14520
20866abc790b
patch 8.1.0273: invalid memory access when using 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14515
diff
changeset
|
656 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
657 else |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
658 pat = ccline.cmdbuff + skiplen; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
659 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
660 cursor_off(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
661 out_flush(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
662 if (c == Ctrl_G) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
663 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
664 t = is_state->match_end; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
665 if (LT_POS(is_state->match_start, is_state->match_end)) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
666 // Start searching at the end of the match not at the beginning of |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
667 // the next column. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
668 (void)decl(&t); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
669 search_flags += SEARCH_COL; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
670 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
671 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
672 t = is_state->match_start; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
673 if (!p_hls) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
674 search_flags += SEARCH_KEEP; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
675 ++emsg_off; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
676 save = pat[patlen]; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
677 pat[patlen] = NUL; |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15138
diff
changeset
|
678 i = searchit(curwin, curbuf, &t, NULL, |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
679 c == Ctrl_G ? FORWARD : BACKWARD, |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
680 pat, count, search_flags, |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
681 RE_SEARCH, 0, NULL, NULL); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
682 --emsg_off; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
683 pat[patlen] = save; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
684 if (i) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
685 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
686 is_state->search_start = is_state->match_start; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
687 is_state->match_end = t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
688 is_state->match_start = t; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
689 if (c == Ctrl_T && firstc != '?') |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
690 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
691 // Move just before the current match, so that when nv_search |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
692 // finishes the cursor will be put back on the match. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
693 is_state->search_start = t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
694 (void)decl(&is_state->search_start); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
695 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
696 else if (c == Ctrl_G && firstc == '?') |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
697 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
698 // Move just after the current match, so that when nv_search |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
699 // finishes the cursor will be put back on the match. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
700 is_state->search_start = t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
701 (void)incl(&is_state->search_start); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
702 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
703 if (LT_POS(t, is_state->search_start) && c == Ctrl_G) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
704 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
705 // wrap around |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
706 is_state->search_start = t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
707 if (firstc == '?') |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
708 (void)incl(&is_state->search_start); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
709 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
710 (void)decl(&is_state->search_start); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
711 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
712 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
713 set_search_match(&is_state->match_end); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
714 curwin->w_cursor = is_state->match_start; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
715 changed_cline_bef_curs(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
716 update_topline(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
717 validate_cursor(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
718 highlight_match = TRUE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
719 save_viewstate(&is_state->old_viewstate); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
720 update_screen(NOT_VALID); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
721 redrawcmdline(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
722 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
723 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
724 vim_beep(BO_ERROR); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
725 restore_last_search_pattern(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
726 return FAIL; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
727 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
728 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
729 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
730 * When CTRL-L typed: add character from the match to the pattern. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
731 * May set "*c" to the added character. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
732 * Return OK when jumping to cmdline_not_changed. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
733 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
734 static int |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
735 may_add_char_to_search(int firstc, int *c, incsearch_state_T *is_state) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
736 { |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
737 int skiplen, patlen; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
738 |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
739 // Parsing range may already set the last search pattern. |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15064
diff
changeset
|
740 // NOTE: must call restore_last_search_pattern() before returning! |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
741 save_last_search_pattern(); |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
742 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
743 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen)) |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
744 { |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
745 restore_last_search_pattern(); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
746 return FAIL; |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
747 } |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15064
diff
changeset
|
748 restore_last_search_pattern(); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
749 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
750 // Add a character from under the cursor for 'incsearch'. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
751 if (is_state->did_incsearch) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
752 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
753 curwin->w_cursor = is_state->match_end; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
754 if (!EQUAL_POS(curwin->w_cursor, is_state->search_start)) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
755 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
756 *c = gchar_cursor(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
757 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
758 // If 'ignorecase' and 'smartcase' are set and the |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
759 // command line has no uppercase characters, convert |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
760 // the character to lowercase. |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
761 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff + skiplen)) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
762 *c = MB_TOLOWER(*c); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
763 if (*c != NUL) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
764 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
765 if (*c == firstc || vim_strchr((char_u *)( |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
766 p_magic ? "\\~^$.*[" : "\\^$"), *c) != NULL) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
767 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
768 // put a backslash before special characters |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
769 stuffcharReadbuff(*c); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
770 *c = '\\'; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
771 } |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
772 #ifdef FEAT_MBYTE |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
773 // add any composing characters |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
774 if (mb_char2len(*c) != mb_ptr2len(ml_get_cursor())) |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
775 { |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
776 int save_c = *c; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
777 |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
778 while (mb_char2len(*c) != mb_ptr2len(ml_get_cursor())) |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
779 { |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
780 curwin->w_cursor.col += mb_char2len(*c); |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
781 *c = gchar_cursor(); |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
782 stuffcharReadbuff(*c); |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
783 } |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
784 *c = save_c; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
785 } |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
786 #endif |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
787 return FAIL; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
788 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
789 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
790 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
791 return OK; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
792 } |
13794
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
793 #endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
794 |
14858
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
795 void |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
796 cmdline_init(void) |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
797 { |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
798 vim_memset(&ccline, 0, sizeof(struct cmdline_info)); |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
799 } |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
800 |
13035
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
801 /* |
7 | 802 * getcmdline() - accept a command line starting with firstc. |
803 * | |
804 * firstc == ':' get ":" command line. | |
805 * firstc == '/' or '?' get search pattern | |
806 * firstc == '=' get expression | |
807 * firstc == '@' get text for input() function | |
808 * firstc == '>' get text for debug mode | |
809 * firstc == NUL get text for :insert command | |
810 * firstc == -1 like NUL, and break on CTRL-C | |
811 * | |
812 * The line is collected in ccline.cmdbuff, which is reallocated to fit the | |
813 * command line. | |
814 * | |
815 * Careful: getcmdline() can be called recursively! | |
816 * | |
817 * Return pointer to allocated string if there is a commandline, NULL | |
818 * otherwise. | |
819 */ | |
820 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
821 getcmdline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
822 int firstc, |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
823 long count, // only used for incremental search |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
824 int indent) // indent for inside conditionals |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
825 { |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
826 return getcmdline_int(firstc, count, indent, TRUE); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
827 } |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
828 |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
829 static char_u * |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
830 getcmdline_int( |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
831 int firstc, |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
832 long count UNUSED, // only used for incremental search |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
833 int indent, // indent for inside conditionals |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
834 int init_ccline) // clear ccline first |
7 | 835 { |
836 int c; | |
837 int i; | |
838 int j; | |
839 int gotesc = FALSE; /* TRUE when <ESC> just typed */ | |
840 int do_abbr; /* when TRUE check for abbr. */ | |
841 #ifdef FEAT_CMDHIST | |
842 char_u *lookfor = NULL; /* string to match */ | |
843 int hiscnt; /* current history line in use */ | |
844 int histype; /* history type to be used */ | |
845 #endif | |
846 #ifdef FEAT_SEARCH_EXTRA | |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
847 incsearch_state_T is_state; |
7 | 848 #endif |
849 int did_wild_list = FALSE; /* did wild_list() recently */ | |
850 int wim_index = 0; /* index in wim_flags[] */ | |
851 int res; | |
852 int save_msg_scroll = msg_scroll; | |
853 int save_State = State; /* remember State when called */ | |
854 int some_key_typed = FALSE; /* one of the keys was typed */ | |
855 #ifdef FEAT_MOUSE | |
856 /* mouse drag and release events are ignored, unless they are | |
857 * preceded with a mouse down event */ | |
858 int ignore_drag_release = TRUE; | |
859 #endif | |
860 #ifdef FEAT_EVAL | |
861 int break_ctrl_c = FALSE; | |
862 #endif | |
863 expand_T xpc; | |
864 long *b_im_ptr = NULL; | |
195 | 865 struct cmdline_info save_ccline; |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
866 int did_save_ccline = FALSE; |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
867 int cmdline_type; |
7 | 868 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
869 if (ccline.cmdbuff != NULL) |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
870 { |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
871 // Being called recursively. Since ccline is global, we need to save |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
872 // the current buffer and restore it when returning. |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
873 save_cmdline(&save_ccline); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
874 did_save_ccline = TRUE; |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
875 } |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
876 if (init_ccline) |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
877 vim_memset(&ccline, 0, sizeof(struct cmdline_info)); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
878 |
7 | 879 #ifdef FEAT_EVAL |
880 if (firstc == -1) | |
881 { | |
882 firstc = NUL; | |
883 break_ctrl_c = TRUE; | |
884 } | |
885 #endif | |
886 #ifdef FEAT_RIGHTLEFT | |
887 /* start without Hebrew mapping for a command line */ | |
888 if (firstc == ':' || firstc == '=' || firstc == '>') | |
889 cmd_hkmap = 0; | |
890 #endif | |
891 | |
892 ccline.overstrike = FALSE; /* always start in insert mode */ | |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
893 |
7 | 894 #ifdef FEAT_SEARCH_EXTRA |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
895 init_incsearch_state(&is_state); |
7 | 896 #endif |
897 | |
898 /* | |
899 * set some variables for redrawcmd() | |
900 */ | |
901 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc); | |
164 | 902 ccline.cmdindent = (firstc > 0 ? indent : 0); |
903 | |
904 /* alloc initial ccline.cmdbuff */ | |
905 alloc_cmdbuff(exmode_active ? 250 : indent + 1); | |
7 | 906 if (ccline.cmdbuff == NULL) |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
907 goto theend; // out of memory |
7 | 908 ccline.cmdlen = ccline.cmdpos = 0; |
909 ccline.cmdbuff[0] = NUL; | |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
910 sb_text_start_cmdline(); |
7 | 911 |
164 | 912 /* autoindent for :insert and :append */ |
913 if (firstc <= 0) | |
914 { | |
6929 | 915 vim_memset(ccline.cmdbuff, ' ', indent); |
164 | 916 ccline.cmdbuff[indent] = NUL; |
917 ccline.cmdpos = indent; | |
918 ccline.cmdspos = indent; | |
919 ccline.cmdlen = indent; | |
920 } | |
921 | |
7 | 922 ExpandInit(&xpc); |
1718 | 923 ccline.xpc = &xpc; |
7 | 924 |
925 #ifdef FEAT_RIGHTLEFT | |
926 if (curwin->w_p_rl && *curwin->w_p_rlc == 's' | |
927 && (firstc == '/' || firstc == '?')) | |
928 cmdmsg_rl = TRUE; | |
929 else | |
930 cmdmsg_rl = FALSE; | |
931 #endif | |
932 | |
933 redir_off = TRUE; /* don't redirect the typed command */ | |
934 if (!cmd_silent) | |
935 { | |
936 i = msg_scrolled; | |
937 msg_scrolled = 0; /* avoid wait_return message */ | |
938 gotocmdline(TRUE); | |
939 msg_scrolled += i; | |
940 redrawcmdprompt(); /* draw prompt or indent */ | |
941 set_cmdspos(); | |
942 } | |
943 xpc.xp_context = EXPAND_NOTHING; | |
944 xpc.xp_backslash = XP_BS_NONE; | |
632 | 945 #ifndef BACKSLASH_IN_FILENAME |
946 xpc.xp_shell = FALSE; | |
947 #endif | |
7 | 948 |
531 | 949 #if defined(FEAT_EVAL) |
950 if (ccline.input_fn) | |
951 { | |
952 xpc.xp_context = ccline.xp_context; | |
953 xpc.xp_pattern = ccline.cmdbuff; | |
1322 | 954 # if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL) |
531 | 955 xpc.xp_arg = ccline.xp_arg; |
1322 | 956 # endif |
531 | 957 } |
958 #endif | |
959 | |
7 | 960 /* |
961 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when | |
962 * doing ":@0" when register 0 doesn't contain a CR. | |
963 */ | |
964 msg_scroll = FALSE; | |
965 | |
966 State = CMDLINE; | |
967 | |
968 if (firstc == '/' || firstc == '?' || firstc == '@') | |
969 { | |
970 /* Use ":lmap" mappings for search pattern and input(). */ | |
971 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT) | |
972 b_im_ptr = &curbuf->b_p_iminsert; | |
973 else | |
974 b_im_ptr = &curbuf->b_p_imsearch; | |
975 if (*b_im_ptr == B_IMODE_LMAP) | |
976 State |= LANGMAP; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
977 #ifdef HAVE_INPUT_METHOD |
7 | 978 im_set_active(*b_im_ptr == B_IMODE_IM); |
979 #endif | |
980 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
981 #ifdef HAVE_INPUT_METHOD |
7 | 982 else if (p_imcmdline) |
983 im_set_active(TRUE); | |
984 #endif | |
985 | |
986 #ifdef FEAT_MOUSE | |
987 setmouse(); | |
988 #endif | |
989 #ifdef CURSOR_SHAPE | |
990 ui_cursor_shape(); /* may show different cursor shape */ | |
991 #endif | |
992 | |
571 | 993 /* When inside an autocommand for writing "exiting" may be set and |
994 * terminal mode set to cooked. Need to set raw mode here then. */ | |
995 settmode(TMODE_RAW); | |
996 | |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
997 /* Trigger CmdlineEnter autocommands. */ |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
998 cmdline_type = firstc == NUL ? '-' : firstc; |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
999 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINEENTER); |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
1000 |
7 | 1001 #ifdef FEAT_CMDHIST |
1002 init_history(); | |
1003 hiscnt = hislen; /* set hiscnt to impossible history value */ | |
1004 histype = hist_char2type(firstc); | |
1005 #endif | |
1006 | |
1007 #ifdef FEAT_DIGRAPHS | |
1868 | 1008 do_digraph(-1); /* init digraph typeahead */ |
7 | 1009 #endif |
1010 | |
5993 | 1011 /* If something above caused an error, reset the flags, we do want to type |
1012 * and execute commands. Display may be messed up a bit. */ | |
1013 if (did_emsg) | |
1014 redrawcmd(); | |
1015 did_emsg = FALSE; | |
1016 got_int = FALSE; | |
1017 | |
7 | 1018 /* |
1019 * Collect the command string, handling editing keys. | |
1020 */ | |
1021 for (;;) | |
1022 { | |
972 | 1023 redir_off = TRUE; /* Don't redirect the typed command. |
1024 Repeated, because a ":redir" inside | |
1025 completion may switch it on. */ | |
7 | 1026 #ifdef USE_ON_FLY_SCROLL |
1027 dont_scroll = FALSE; /* allow scrolling here */ | |
1028 #endif | |
1029 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */ | |
1030 | |
13600
75e35ebdb7a4
patch 8.0.1672: error during completion causes command to be cancelled
Christian Brabandt <cb@256bit.org>
parents:
13551
diff
changeset
|
1031 did_emsg = FALSE; /* There can't really be a reason why an error |
75e35ebdb7a4
patch 8.0.1672: error during completion causes command to be cancelled
Christian Brabandt <cb@256bit.org>
parents:
13551
diff
changeset
|
1032 that occurs while typing a command should |
75e35ebdb7a4
patch 8.0.1672: error during completion causes command to be cancelled
Christian Brabandt <cb@256bit.org>
parents:
13551
diff
changeset
|
1033 cause the command not to be executed. */ |
75e35ebdb7a4
patch 8.0.1672: error during completion causes command to be cancelled
Christian Brabandt <cb@256bit.org>
parents:
13551
diff
changeset
|
1034 |
7 | 1035 cursorcmd(); /* set the cursor on the right spot */ |
1472 | 1036 |
12960
004bc78c88e6
patch 8.0.1356: using simalt in a GUIEnter autocommand inserts characters
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
1037 /* Get a character. Ignore K_IGNORE and K_NOP, they should not do |
004bc78c88e6
patch 8.0.1356: using simalt in a GUIEnter autocommand inserts characters
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
1038 * anything, such as stop completion. */ |
1472 | 1039 do |
1040 { | |
1041 c = safe_vgetc(); | |
12960
004bc78c88e6
patch 8.0.1356: using simalt in a GUIEnter autocommand inserts characters
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
1042 } while (c == K_IGNORE || c == K_NOP); |
1472 | 1043 |
7 | 1044 if (KeyTyped) |
1045 { | |
1046 some_key_typed = TRUE; | |
1047 #ifdef FEAT_RIGHTLEFT | |
1048 if (cmd_hkmap) | |
1049 c = hkmap(c); | |
1050 # ifdef FEAT_FKMAP | |
1051 if (cmd_fkmap) | |
1052 c = cmdl_fkmap(c); | |
1053 # endif | |
1054 if (cmdmsg_rl && !KeyStuffed) | |
1055 { | |
1056 /* Invert horizontal movements and operations. Only when | |
1057 * typed by the user directly, not when the result of a | |
1058 * mapping. */ | |
1059 switch (c) | |
1060 { | |
1061 case K_RIGHT: c = K_LEFT; break; | |
1062 case K_S_RIGHT: c = K_S_LEFT; break; | |
1063 case K_C_RIGHT: c = K_C_LEFT; break; | |
1064 case K_LEFT: c = K_RIGHT; break; | |
1065 case K_S_LEFT: c = K_S_RIGHT; break; | |
1066 case K_C_LEFT: c = K_C_RIGHT; break; | |
1067 } | |
1068 } | |
1069 #endif | |
1070 } | |
1071 | |
1072 /* | |
1073 * Ignore got_int when CTRL-C was typed here. | |
1074 * Don't ignore it in :global, we really need to break then, e.g., for | |
1075 * ":g/pat/normal /pat" (without the <CR>). | |
1076 * Don't ignore it for the input() function. | |
1077 */ | |
1078 if ((c == Ctrl_C | |
1079 #ifdef UNIX | |
1080 || c == intr_char | |
1081 #endif | |
1082 ) | |
1083 #if defined(FEAT_EVAL) || defined(FEAT_CRYPT) | |
1084 && firstc != '@' | |
1085 #endif | |
1086 #ifdef FEAT_EVAL | |
1087 && !break_ctrl_c | |
1088 #endif | |
1089 && !global_busy) | |
1090 got_int = FALSE; | |
1091 | |
1092 #ifdef FEAT_CMDHIST | |
1093 /* free old command line when finished moving around in the history | |
1094 * list */ | |
1095 if (lookfor != NULL | |
180 | 1096 && c != K_S_DOWN && c != K_S_UP |
230 | 1097 && c != K_DOWN && c != K_UP |
7 | 1098 && c != K_PAGEDOWN && c != K_PAGEUP |
1099 && c != K_KPAGEDOWN && c != K_KPAGEUP | |
230 | 1100 && c != K_LEFT && c != K_RIGHT |
7 | 1101 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N))) |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
1102 VIM_CLEAR(lookfor); |
7 | 1103 #endif |
1104 | |
1105 /* | |
1718 | 1106 * When there are matching completions to select <S-Tab> works like |
1107 * CTRL-P (unless 'wc' is <S-Tab>). | |
7 | 1108 */ |
1718 | 1109 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0) |
7 | 1110 c = Ctrl_P; |
1111 | |
1112 #ifdef FEAT_WILDMENU | |
1113 /* Special translations for 'wildmenu' */ | |
1114 if (did_wild_list && p_wmnu) | |
1115 { | |
230 | 1116 if (c == K_LEFT) |
7 | 1117 c = Ctrl_P; |
230 | 1118 else if (c == K_RIGHT) |
7 | 1119 c = Ctrl_N; |
1120 } | |
1121 /* Hitting CR after "emenu Name.": complete submenu */ | |
1122 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu | |
1123 && ccline.cmdpos > 1 | |
1124 && ccline.cmdbuff[ccline.cmdpos - 1] == '.' | |
1125 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\' | |
1126 && (c == '\n' || c == '\r' || c == K_KENTER)) | |
1127 c = K_DOWN; | |
1128 #endif | |
1129 | |
1130 /* free expanded names when finished walking through matches */ | |
1131 if (xpc.xp_numfiles != -1 | |
1132 && !(c == p_wc && KeyTyped) && c != p_wcm | |
1133 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A | |
1134 && c != Ctrl_L) | |
1135 { | |
1136 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE); | |
1137 did_wild_list = FALSE; | |
1138 #ifdef FEAT_WILDMENU | |
230 | 1139 if (!p_wmnu || (c != K_UP && c != K_DOWN)) |
7 | 1140 #endif |
1141 xpc.xp_context = EXPAND_NOTHING; | |
1142 wim_index = 0; | |
1143 #ifdef FEAT_WILDMENU | |
1144 if (p_wmnu && wild_menu_showing != 0) | |
1145 { | |
1146 int skt = KeyTyped; | |
532 | 1147 int old_RedrawingDisabled = RedrawingDisabled; |
531 | 1148 |
1149 if (ccline.input_fn) | |
1150 RedrawingDisabled = 0; | |
7 | 1151 |
1152 if (wild_menu_showing == WM_SCROLLED) | |
1153 { | |
1154 /* Entered command line, move it up */ | |
1155 cmdline_row--; | |
1156 redrawcmd(); | |
1157 } | |
1158 else if (save_p_ls != -1) | |
1159 { | |
1160 /* restore 'laststatus' and 'winminheight' */ | |
1161 p_ls = save_p_ls; | |
1162 p_wmh = save_p_wmh; | |
1163 last_status(FALSE); | |
1164 update_screen(VALID); /* redraw the screen NOW */ | |
1165 redrawcmd(); | |
1166 save_p_ls = -1; | |
1167 } | |
1168 else | |
1169 { | |
1170 win_redraw_last_status(topframe); | |
1171 redraw_statuslines(); | |
1172 } | |
532 | 1173 KeyTyped = skt; |
1174 wild_menu_showing = 0; | |
531 | 1175 if (ccline.input_fn) |
1176 RedrawingDisabled = old_RedrawingDisabled; | |
7 | 1177 } |
1178 #endif | |
1179 } | |
1180 | |
1181 #ifdef FEAT_WILDMENU | |
1182 /* Special translations for 'wildmenu' */ | |
1183 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu) | |
1184 { | |
1185 /* Hitting <Down> after "emenu Name.": complete submenu */ | |
1318 | 1186 if (c == K_DOWN && ccline.cmdpos > 0 |
1187 && ccline.cmdbuff[ccline.cmdpos - 1] == '.') | |
7 | 1188 c = p_wc; |
230 | 1189 else if (c == K_UP) |
7 | 1190 { |
1191 /* Hitting <Up>: Remove one submenu name in front of the | |
1192 * cursor */ | |
1193 int found = FALSE; | |
1194 | |
1195 j = (int)(xpc.xp_pattern - ccline.cmdbuff); | |
1196 i = 0; | |
1197 while (--j > 0) | |
1198 { | |
1199 /* check for start of menu name */ | |
1200 if (ccline.cmdbuff[j] == ' ' | |
1201 && ccline.cmdbuff[j - 1] != '\\') | |
1202 { | |
1203 i = j + 1; | |
1204 break; | |
1205 } | |
1206 /* check for start of submenu name */ | |
1207 if (ccline.cmdbuff[j] == '.' | |
1208 && ccline.cmdbuff[j - 1] != '\\') | |
1209 { | |
1210 if (found) | |
1211 { | |
1212 i = j + 1; | |
1213 break; | |
1214 } | |
1215 else | |
1216 found = TRUE; | |
1217 } | |
1218 } | |
1219 if (i > 0) | |
1220 cmdline_del(i); | |
1221 c = p_wc; | |
1222 xpc.xp_context = EXPAND_NOTHING; | |
1223 } | |
1224 } | |
714 | 1225 if ((xpc.xp_context == EXPAND_FILES |
1621 | 1226 || xpc.xp_context == EXPAND_DIRECTORIES |
714 | 1227 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu) |
7 | 1228 { |
1229 char_u upseg[5]; | |
1230 | |
1231 upseg[0] = PATHSEP; | |
1232 upseg[1] = '.'; | |
1233 upseg[2] = '.'; | |
1234 upseg[3] = PATHSEP; | |
1235 upseg[4] = NUL; | |
1236 | |
1318 | 1237 if (c == K_DOWN |
1238 && ccline.cmdpos > 0 | |
1239 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP | |
1240 && (ccline.cmdpos < 3 | |
1241 || ccline.cmdbuff[ccline.cmdpos - 2] != '.' | |
7 | 1242 || ccline.cmdbuff[ccline.cmdpos - 3] != '.')) |
1243 { | |
1244 /* go down a directory */ | |
1245 c = p_wc; | |
1246 } | |
230 | 1247 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN) |
7 | 1248 { |
1249 /* If in a direct ancestor, strip off one ../ to go down */ | |
1250 int found = FALSE; | |
1251 | |
1252 j = ccline.cmdpos; | |
1253 i = (int)(xpc.xp_pattern - ccline.cmdbuff); | |
1254 while (--j > i) | |
1255 { | |
39 | 1256 #ifdef FEAT_MBYTE |
1257 if (has_mbyte) | |
1258 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j); | |
1259 #endif | |
7 | 1260 if (vim_ispathsep(ccline.cmdbuff[j])) |
1261 { | |
1262 found = TRUE; | |
1263 break; | |
1264 } | |
1265 } | |
1266 if (found | |
1267 && ccline.cmdbuff[j - 1] == '.' | |
1268 && ccline.cmdbuff[j - 2] == '.' | |
1269 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2)) | |
1270 { | |
1271 cmdline_del(j - 2); | |
1272 c = p_wc; | |
1273 } | |
1274 } | |
230 | 1275 else if (c == K_UP) |
7 | 1276 { |
1277 /* go up a directory */ | |
1278 int found = FALSE; | |
1279 | |
1280 j = ccline.cmdpos - 1; | |
1281 i = (int)(xpc.xp_pattern - ccline.cmdbuff); | |
1282 while (--j > i) | |
1283 { | |
1284 #ifdef FEAT_MBYTE | |
1285 if (has_mbyte) | |
1286 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j); | |
1287 #endif | |
1288 if (vim_ispathsep(ccline.cmdbuff[j]) | |
1289 #ifdef BACKSLASH_IN_FILENAME | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1290 && vim_strchr((char_u *)" *?[{`$%#", |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1291 ccline.cmdbuff[j + 1]) == NULL |
7 | 1292 #endif |
1293 ) | |
1294 { | |
1295 if (found) | |
1296 { | |
1297 i = j + 1; | |
1298 break; | |
1299 } | |
1300 else | |
1301 found = TRUE; | |
1302 } | |
1303 } | |
1304 | |
1305 if (!found) | |
1306 j = i; | |
1307 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0) | |
1308 j += 4; | |
1309 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0 | |
1310 && j == i) | |
1311 j += 3; | |
1312 else | |
1313 j = 0; | |
1314 if (j > 0) | |
1315 { | |
1316 /* TODO this is only for DOS/UNIX systems - need to put in | |
1317 * machine-specific stuff here and in upseg init */ | |
1318 cmdline_del(j); | |
1319 put_on_cmdline(upseg + 1, 3, FALSE); | |
1320 } | |
1321 else if (ccline.cmdpos > i) | |
1322 cmdline_del(i); | |
3204 | 1323 |
1324 /* Now complete in the new directory. Set KeyTyped in case the | |
1325 * Up key came from a mapping. */ | |
7 | 1326 c = p_wc; |
3204 | 1327 KeyTyped = TRUE; |
7 | 1328 } |
1329 } | |
1330 | |
1331 #endif /* FEAT_WILDMENU */ | |
1332 | |
1333 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert | |
1334 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */ | |
1335 if (c == Ctrl_BSL) | |
1336 { | |
1337 ++no_mapping; | |
1338 ++allow_keys; | |
1389 | 1339 c = plain_vgetc(); |
7 | 1340 --no_mapping; |
1341 --allow_keys; | |
3859 | 1342 /* CTRL-\ e doesn't work when obtaining an expression, unless it |
1343 * is in a mapping. */ | |
1344 if (c != Ctrl_N && c != Ctrl_G && (c != 'e' | |
14842
7379bc1c3498
patch 8.1.0433: mapping can obtain text from inputsecret()
Christian Brabandt <cb@256bit.org>
parents:
14774
diff
changeset
|
1345 || (ccline.cmdfirstc == '=' && KeyTyped) |
7379bc1c3498
patch 8.1.0433: mapping can obtain text from inputsecret()
Christian Brabandt <cb@256bit.org>
parents:
14774
diff
changeset
|
1346 #ifdef FEAT_EVAL |
14848
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
1347 || cmdline_star > 0 |
14842
7379bc1c3498
patch 8.1.0433: mapping can obtain text from inputsecret()
Christian Brabandt <cb@256bit.org>
parents:
14774
diff
changeset
|
1348 #endif |
7379bc1c3498
patch 8.1.0433: mapping can obtain text from inputsecret()
Christian Brabandt <cb@256bit.org>
parents:
14774
diff
changeset
|
1349 )) |
7 | 1350 { |
1351 vungetc(c); | |
1352 c = Ctrl_BSL; | |
1353 } | |
1354 #ifdef FEAT_EVAL | |
1355 else if (c == 'e') | |
1356 { | |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
1357 char_u *p = NULL; |
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
1358 int len; |
7 | 1359 |
1360 /* | |
1361 * Replace the command line with the result of an expression. | |
625 | 1362 * Need to save and restore the current command line, to be |
1363 * able to enter a new one... | |
7 | 1364 */ |
1365 if (ccline.cmdpos == ccline.cmdlen) | |
1366 new_cmdpos = 99999; /* keep it at the end */ | |
1367 else | |
1368 new_cmdpos = ccline.cmdpos; | |
95 | 1369 |
7 | 1370 c = get_expr_register(); |
1371 if (c == '=') | |
1372 { | |
634 | 1373 /* Need to save and restore ccline. And set "textlock" |
632 | 1374 * to avoid nasty things like going to another buffer when |
1375 * evaluating an expression. */ | |
634 | 1376 ++textlock; |
7 | 1377 p = get_expr_line(); |
634 | 1378 --textlock; |
2617 | 1379 |
1380 if (p != NULL) | |
7 | 1381 { |
2617 | 1382 len = (int)STRLEN(p); |
1383 if (realloc_cmdbuff(len + 1) == OK) | |
1384 { | |
1385 ccline.cmdlen = len; | |
1386 STRCPY(ccline.cmdbuff, p); | |
1387 vim_free(p); | |
1388 | |
1389 /* Restore the cursor or use the position set with | |
1390 * set_cmdline_pos(). */ | |
1391 if (new_cmdpos > ccline.cmdlen) | |
1392 ccline.cmdpos = ccline.cmdlen; | |
1393 else | |
1394 ccline.cmdpos = new_cmdpos; | |
1395 | |
1396 KeyTyped = FALSE; /* Don't do p_wc completion. */ | |
1397 redrawcmd(); | |
1398 goto cmdline_changed; | |
1399 } | |
15064
7b2dcca9e0c1
patch 8.1.0543: Coverity warns for leaking memory and using wrong struct
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
1400 vim_free(p); |
7 | 1401 } |
1402 } | |
1403 beep_flush(); | |
2636 | 1404 got_int = FALSE; /* don't abandon the command line */ |
1405 did_emsg = FALSE; | |
1406 emsg_on_display = FALSE; | |
1407 redrawcmd(); | |
1408 goto cmdline_not_changed; | |
7 | 1409 } |
1410 #endif | |
1411 else | |
1412 { | |
1413 if (c == Ctrl_G && p_im && restart_edit == 0) | |
1414 restart_edit = 'a'; | |
1415 gotesc = TRUE; /* will free ccline.cmdbuff after putting it | |
1416 in history */ | |
1417 goto returncmd; /* back to Normal mode */ | |
1418 } | |
1419 } | |
1420 | |
1421 #ifdef FEAT_CMDWIN | |
1422 if (c == cedit_key || c == K_CMDWIN) | |
1423 { | |
6211 | 1424 if (ex_normal_busy == 0 && got_int == FALSE) |
1425 { | |
1426 /* | |
1427 * Open a window to edit the command line (and history). | |
1428 */ | |
11321
f57dce6b934b
patch 8.0.0546: swap file exists briefly when opening the command window
Christian Brabandt <cb@256bit.org>
parents:
11285
diff
changeset
|
1429 c = open_cmdwin(); |
6211 | 1430 some_key_typed = TRUE; |
1431 } | |
7 | 1432 } |
1433 # ifdef FEAT_DIGRAPHS | |
1434 else | |
1435 # endif | |
1436 #endif | |
1437 #ifdef FEAT_DIGRAPHS | |
1438 c = do_digraph(c); | |
1439 #endif | |
1440 | |
1441 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC | |
1442 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL))) | |
1443 { | |
168 | 1444 /* In Ex mode a backslash escapes a newline. */ |
1445 if (exmode_active | |
1446 && c != ESC | |
1318 | 1447 && ccline.cmdpos == ccline.cmdlen |
168 | 1448 && ccline.cmdpos > 0 |
1449 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\') | |
1450 { | |
1451 if (c == K_KENTER) | |
1452 c = '\n'; | |
1453 } | |
1454 else | |
7 | 1455 { |
168 | 1456 gotesc = FALSE; /* Might have typed ESC previously, don't |
1457 truncate the cmdline now. */ | |
1458 if (ccheck_abbr(c + ABBR_OFF)) | |
1459 goto cmdline_changed; | |
1460 if (!cmd_silent) | |
1461 { | |
1462 windgoto(msg_row, 0); | |
1463 out_flush(); | |
1464 } | |
1465 break; | |
7 | 1466 } |
1467 } | |
1468 | |
1469 /* | |
1470 * Completion for 'wildchar' or 'wildcharm' key. | |
1471 * - hitting <ESC> twice means: abandon command line. | |
1472 * - wildcard expansion is only done when the 'wildchar' key is really | |
1473 * typed, not when it comes from a macro | |
1474 */ | |
1475 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm) | |
1476 { | |
1477 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */ | |
1478 { | |
1479 /* if 'wildmode' contains "list" may still need to list */ | |
1480 if (xpc.xp_numfiles > 1 | |
1481 && !did_wild_list | |
1482 && (wim_flags[wim_index] & WIM_LIST)) | |
1483 { | |
1484 (void)showmatches(&xpc, FALSE); | |
1485 redrawcmd(); | |
1486 did_wild_list = TRUE; | |
1487 } | |
1488 if (wim_flags[wim_index] & WIM_LONGEST) | |
3961 | 1489 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
1490 firstc != '@'); | |
7 | 1491 else if (wim_flags[wim_index] & WIM_FULL) |
3961 | 1492 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP, |
1493 firstc != '@'); | |
7 | 1494 else |
1495 res = OK; /* don't insert 'wildchar' now */ | |
1496 } | |
1497 else /* typed p_wc first time */ | |
1498 { | |
1499 wim_index = 0; | |
1500 j = ccline.cmdpos; | |
1501 /* if 'wildmode' first contains "longest", get longest | |
1502 * common part */ | |
1503 if (wim_flags[0] & WIM_LONGEST) | |
3961 | 1504 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
1505 firstc != '@'); | |
7 | 1506 else |
3961 | 1507 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP, |
1508 firstc != '@'); | |
7 | 1509 |
1510 /* if interrupted while completing, behave like it failed */ | |
1511 if (got_int) | |
1512 { | |
1513 (void)vpeekc(); /* remove <C-C> from input stream */ | |
1514 got_int = FALSE; /* don't abandon the command line */ | |
1515 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE); | |
1516 #ifdef FEAT_WILDMENU | |
1517 xpc.xp_context = EXPAND_NOTHING; | |
1518 #endif | |
1519 goto cmdline_changed; | |
1520 } | |
1521 | |
1522 /* when more than one match, and 'wildmode' first contains | |
1523 * "list", or no change and 'wildmode' contains "longest,list", | |
1524 * list all matches */ | |
1525 if (res == OK && xpc.xp_numfiles > 1) | |
1526 { | |
1527 /* a "longest" that didn't do anything is skipped (but not | |
1528 * "list:longest") */ | |
1529 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j) | |
1530 wim_index = 1; | |
1531 if ((wim_flags[wim_index] & WIM_LIST) | |
1532 #ifdef FEAT_WILDMENU | |
1533 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0) | |
1534 #endif | |
1535 ) | |
1536 { | |
1537 if (!(wim_flags[0] & WIM_LONGEST)) | |
1538 { | |
1539 #ifdef FEAT_WILDMENU | |
1540 int p_wmnu_save = p_wmnu; | |
1541 p_wmnu = 0; | |
1542 #endif | |
3961 | 1543 /* remove match */ |
1544 nextwild(&xpc, WILD_PREV, 0, firstc != '@'); | |
7 | 1545 #ifdef FEAT_WILDMENU |
1546 p_wmnu = p_wmnu_save; | |
1547 #endif | |
1548 } | |
1549 #ifdef FEAT_WILDMENU | |
1550 (void)showmatches(&xpc, p_wmnu | |
1551 && ((wim_flags[wim_index] & WIM_LIST) == 0)); | |
1552 #else | |
1553 (void)showmatches(&xpc, FALSE); | |
1554 #endif | |
1555 redrawcmd(); | |
1556 did_wild_list = TRUE; | |
1557 if (wim_flags[wim_index] & WIM_LONGEST) | |
3961 | 1558 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
1559 firstc != '@'); | |
7 | 1560 else if (wim_flags[wim_index] & WIM_FULL) |
3961 | 1561 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP, |
1562 firstc != '@'); | |
7 | 1563 } |
1564 else | |
6949 | 1565 vim_beep(BO_WILD); |
7 | 1566 } |
1567 #ifdef FEAT_WILDMENU | |
1568 else if (xpc.xp_numfiles == -1) | |
1569 xpc.xp_context = EXPAND_NOTHING; | |
1570 #endif | |
1571 } | |
1572 if (wim_index < 3) | |
1573 ++wim_index; | |
1574 if (c == ESC) | |
1575 gotesc = TRUE; | |
1576 if (res == OK) | |
1577 goto cmdline_changed; | |
1578 } | |
1579 | |
1580 gotesc = FALSE; | |
1581 | |
1582 /* <S-Tab> goes to last match, in a clumsy way */ | |
1583 if (c == K_S_TAB && KeyTyped) | |
1584 { | |
3961 | 1585 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK |
1586 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK | |
1587 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK) | |
7 | 1588 goto cmdline_changed; |
1589 } | |
1590 | |
1591 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */ | |
1592 c = NL; | |
1593 | |
1594 do_abbr = TRUE; /* default: check for abbreviation */ | |
1595 | |
1596 /* | |
1597 * Big switch for a typed command line character. | |
1598 */ | |
1599 switch (c) | |
1600 { | |
1601 case K_BS: | |
1602 case Ctrl_H: | |
1603 case K_DEL: | |
1604 case K_KDEL: | |
1605 case Ctrl_W: | |
1606 #ifdef FEAT_FKMAP | |
1607 if (cmd_fkmap && c == K_BS) | |
1608 c = K_DEL; | |
1609 #endif | |
1610 if (c == K_KDEL) | |
1611 c = K_DEL; | |
1612 | |
1613 /* | |
1614 * delete current character is the same as backspace on next | |
1615 * character, except at end of line | |
1616 */ | |
1617 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen) | |
1618 ++ccline.cmdpos; | |
1619 #ifdef FEAT_MBYTE | |
1620 if (has_mbyte && c == K_DEL) | |
1621 ccline.cmdpos += mb_off_next(ccline.cmdbuff, | |
1622 ccline.cmdbuff + ccline.cmdpos); | |
1623 #endif | |
1624 if (ccline.cmdpos > 0) | |
1625 { | |
1626 char_u *p; | |
1627 | |
1628 j = ccline.cmdpos; | |
1629 p = ccline.cmdbuff + j; | |
1630 #ifdef FEAT_MBYTE | |
1631 if (has_mbyte) | |
1632 { | |
1633 p = mb_prevptr(ccline.cmdbuff, p); | |
1634 if (c == Ctrl_W) | |
1635 { | |
1636 while (p > ccline.cmdbuff && vim_isspace(*p)) | |
1637 p = mb_prevptr(ccline.cmdbuff, p); | |
1638 i = mb_get_class(p); | |
1639 while (p > ccline.cmdbuff && mb_get_class(p) == i) | |
1640 p = mb_prevptr(ccline.cmdbuff, p); | |
1641 if (mb_get_class(p) != i) | |
474 | 1642 p += (*mb_ptr2len)(p); |
7 | 1643 } |
1644 } | |
1645 else | |
1646 #endif | |
1647 if (c == Ctrl_W) | |
1648 { | |
1649 while (p > ccline.cmdbuff && vim_isspace(p[-1])) | |
1650 --p; | |
1651 i = vim_iswordc(p[-1]); | |
1652 while (p > ccline.cmdbuff && !vim_isspace(p[-1]) | |
1653 && vim_iswordc(p[-1]) == i) | |
1654 --p; | |
1655 } | |
1656 else | |
1657 --p; | |
1658 ccline.cmdpos = (int)(p - ccline.cmdbuff); | |
1659 ccline.cmdlen -= j - ccline.cmdpos; | |
1660 i = ccline.cmdpos; | |
1661 while (i < ccline.cmdlen) | |
1662 ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; | |
1663 | |
1664 /* Truncate at the end, required for multi-byte chars. */ | |
1665 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1666 #ifdef FEAT_SEARCH_EXTRA |
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1667 if (ccline.cmdlen == 0) |
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1668 { |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
1669 is_state.search_start = is_state.save_cursor; |
10098
72e4b7f90465
commit https://github.com/vim/vim/commit/dda933d06c06c2792bd686d059f6ad19191ad30b
Christian Brabandt <cb@256bit.org>
parents:
10094
diff
changeset
|
1670 /* save view settings, so that the screen |
72e4b7f90465
commit https://github.com/vim/vim/commit/dda933d06c06c2792bd686d059f6ad19191ad30b
Christian Brabandt <cb@256bit.org>
parents:
10094
diff
changeset
|
1671 * won't be restored at the wrong position */ |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
1672 is_state.old_viewstate = is_state.init_viewstate; |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1673 } |
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1674 #endif |
7 | 1675 redrawcmd(); |
1676 } | |
1677 else if (ccline.cmdlen == 0 && c != Ctrl_W | |
1678 && ccline.cmdprompt == NULL && indent == 0) | |
1679 { | |
1680 /* In ex and debug mode it doesn't make sense to return. */ | |
1681 if (exmode_active | |
1682 #ifdef FEAT_EVAL | |
1683 || ccline.cmdfirstc == '>' | |
1684 #endif | |
1685 ) | |
1686 goto cmdline_not_changed; | |
1687 | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
1688 VIM_CLEAR(ccline.cmdbuff); /* no commandline to return */ |
7 | 1689 if (!cmd_silent) |
1690 { | |
1691 #ifdef FEAT_RIGHTLEFT | |
1692 if (cmdmsg_rl) | |
1693 msg_col = Columns; | |
1694 else | |
1695 #endif | |
1696 msg_col = 0; | |
1697 msg_putchar(' '); /* delete ':' */ | |
1698 } | |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1699 #ifdef FEAT_SEARCH_EXTRA |
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1700 if (ccline.cmdlen == 0) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
1701 is_state.search_start = is_state.save_cursor; |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1702 #endif |
7 | 1703 redraw_cmdline = TRUE; |
1704 goto returncmd; /* back to cmd mode */ | |
1705 } | |
1706 goto cmdline_changed; | |
1707 | |
1708 case K_INS: | |
1709 case K_KINS: | |
1710 #ifdef FEAT_FKMAP | |
1711 /* if Farsi mode set, we are in reverse insert mode - | |
1712 Do not change the mode */ | |
1713 if (cmd_fkmap) | |
1714 beep_flush(); | |
1715 else | |
1716 #endif | |
1717 ccline.overstrike = !ccline.overstrike; | |
1718 #ifdef CURSOR_SHAPE | |
1719 ui_cursor_shape(); /* may show different cursor shape */ | |
1720 #endif | |
1721 goto cmdline_not_changed; | |
1722 | |
1723 case Ctrl_HAT: | |
782 | 1724 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE)) |
7 | 1725 { |
1726 /* ":lmap" mappings exists, toggle use of mappings. */ | |
1727 State ^= LANGMAP; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
1728 #ifdef HAVE_INPUT_METHOD |
7 | 1729 im_set_active(FALSE); /* Disable input method */ |
1730 #endif | |
1731 if (b_im_ptr != NULL) | |
1732 { | |
1733 if (State & LANGMAP) | |
1734 *b_im_ptr = B_IMODE_LMAP; | |
1735 else | |
1736 *b_im_ptr = B_IMODE_NONE; | |
1737 } | |
1738 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
1739 #ifdef HAVE_INPUT_METHOD |
7 | 1740 else |
1741 { | |
1742 /* There are no ":lmap" mappings, toggle IM. When | |
1743 * 'imdisable' is set don't try getting the status, it's | |
1744 * always off. */ | |
1745 if ((p_imdisable && b_im_ptr != NULL) | |
1746 ? *b_im_ptr == B_IMODE_IM : im_get_status()) | |
1747 { | |
1748 im_set_active(FALSE); /* Disable input method */ | |
1749 if (b_im_ptr != NULL) | |
1750 *b_im_ptr = B_IMODE_NONE; | |
1751 } | |
1752 else | |
1753 { | |
1754 im_set_active(TRUE); /* Enable input method */ | |
1755 if (b_im_ptr != NULL) | |
1756 *b_im_ptr = B_IMODE_IM; | |
1757 } | |
1758 } | |
1759 #endif | |
1760 if (b_im_ptr != NULL) | |
1761 { | |
1762 if (b_im_ptr == &curbuf->b_p_iminsert) | |
1763 set_iminsert_global(); | |
1764 else | |
1765 set_imsearch_global(); | |
1766 } | |
1767 #ifdef CURSOR_SHAPE | |
1768 ui_cursor_shape(); /* may show different cursor shape */ | |
1769 #endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12293
diff
changeset
|
1770 #if defined(FEAT_KEYMAP) |
7 | 1771 /* Show/unshow value of 'keymap' in status lines later. */ |
1772 status_redraw_curbuf(); | |
1773 #endif | |
1774 goto cmdline_not_changed; | |
1775 | |
1776 /* case '@': only in very old vi */ | |
1777 case Ctrl_U: | |
1778 /* delete all characters left of the cursor */ | |
1779 j = ccline.cmdpos; | |
1780 ccline.cmdlen -= j; | |
1781 i = ccline.cmdpos = 0; | |
1782 while (i < ccline.cmdlen) | |
1783 ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; | |
1784 /* Truncate at the end, required for multi-byte chars. */ | |
1785 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1786 #ifdef FEAT_SEARCH_EXTRA |
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1787 if (ccline.cmdlen == 0) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
1788 is_state.search_start = is_state.save_cursor; |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1789 #endif |
7 | 1790 redrawcmd(); |
1791 goto cmdline_changed; | |
1792 | |
1793 #ifdef FEAT_CLIPBOARD | |
1794 case Ctrl_Y: | |
1795 /* Copy the modeless selection, if there is one. */ | |
1796 if (clip_star.state != SELECT_CLEARED) | |
1797 { | |
1798 if (clip_star.state == SELECT_DONE) | |
1799 clip_copy_modeless_selection(TRUE); | |
1800 goto cmdline_not_changed; | |
1801 } | |
1802 break; | |
1803 #endif | |
1804 | |
1805 case ESC: /* get here if p_wc != ESC or when ESC typed twice */ | |
1806 case Ctrl_C: | |
571 | 1807 /* In exmode it doesn't make sense to return. Except when |
161 | 1808 * ":normal" runs out of characters. */ |
1809 if (exmode_active | |
7850
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
1810 && (ex_normal_busy == 0 || typebuf.tb_len > 0)) |
7 | 1811 goto cmdline_not_changed; |
1812 | |
1813 gotesc = TRUE; /* will free ccline.cmdbuff after | |
1814 putting it in history */ | |
1815 goto returncmd; /* back to cmd mode */ | |
1816 | |
1817 case Ctrl_R: /* insert register */ | |
1818 #ifdef USE_ON_FLY_SCROLL | |
1819 dont_scroll = TRUE; /* disallow scrolling here */ | |
1820 #endif | |
1821 putcmdline('"', TRUE); | |
1822 ++no_mapping; | |
1389 | 1823 i = c = plain_vgetc(); /* CTRL-R <char> */ |
7 | 1824 if (i == Ctrl_O) |
1825 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */ | |
1826 if (i == Ctrl_R) | |
1389 | 1827 c = plain_vgetc(); /* CTRL-R CTRL-R <char> */ |
11664
e3bfe624ba0a
patch 8.0.0714: when a timer causes a command line redraw " goes missing
Christian Brabandt <cb@256bit.org>
parents:
11647
diff
changeset
|
1828 extra_char = NUL; |
7 | 1829 --no_mapping; |
1830 #ifdef FEAT_EVAL | |
1831 /* | |
1832 * Insert the result of an expression. | |
1833 * Need to save the current command line, to be able to enter | |
1834 * a new one... | |
1835 */ | |
1836 new_cmdpos = -1; | |
1837 if (c == '=') | |
1838 { | |
14848
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
1839 if (ccline.cmdfirstc == '=' // can't do this recursively |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
1840 || cmdline_star > 0) // or when typing a password |
7 | 1841 { |
1842 beep_flush(); | |
1843 c = ESC; | |
1844 } | |
1845 else | |
1846 c = get_expr_register(); | |
1847 } | |
1848 #endif | |
1849 if (c != ESC) /* use ESC to cancel inserting register */ | |
1850 { | |
1015 | 1851 cmdline_paste(c, i == Ctrl_R, FALSE); |
606 | 1852 |
613 | 1853 #ifdef FEAT_EVAL |
606 | 1854 /* When there was a serious error abort getting the |
1855 * command line. */ | |
1856 if (aborting()) | |
1857 { | |
1858 gotesc = TRUE; /* will free ccline.cmdbuff after | |
1859 putting it in history */ | |
1860 goto returncmd; /* back to cmd mode */ | |
1861 } | |
613 | 1862 #endif |
7 | 1863 KeyTyped = FALSE; /* Don't do p_wc completion. */ |
1864 #ifdef FEAT_EVAL | |
1865 if (new_cmdpos >= 0) | |
1866 { | |
1867 /* set_cmdline_pos() was used */ | |
1868 if (new_cmdpos > ccline.cmdlen) | |
1869 ccline.cmdpos = ccline.cmdlen; | |
1870 else | |
1871 ccline.cmdpos = new_cmdpos; | |
1872 } | |
1873 #endif | |
1874 } | |
1875 redrawcmd(); | |
1876 goto cmdline_changed; | |
1877 | |
1878 case Ctrl_D: | |
1879 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING) | |
1880 break; /* Use ^D as normal char instead */ | |
1881 | |
1882 redrawcmd(); | |
1883 continue; /* don't do incremental search now */ | |
1884 | |
1885 case K_RIGHT: | |
1886 case K_S_RIGHT: | |
1887 case K_C_RIGHT: | |
1888 do | |
1889 { | |
1890 if (ccline.cmdpos >= ccline.cmdlen) | |
1891 break; | |
1892 i = cmdline_charsize(ccline.cmdpos); | |
1893 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows) | |
1894 break; | |
1895 ccline.cmdspos += i; | |
1896 #ifdef FEAT_MBYTE | |
1897 if (has_mbyte) | |
474 | 1898 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
7 | 1899 + ccline.cmdpos); |
1900 else | |
1901 #endif | |
1902 ++ccline.cmdpos; | |
1903 } | |
180 | 1904 while ((c == K_S_RIGHT || c == K_C_RIGHT |
1905 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) | |
7 | 1906 && ccline.cmdbuff[ccline.cmdpos] != ' '); |
1907 #ifdef FEAT_MBYTE | |
1908 if (has_mbyte) | |
1909 set_cmdspos_cursor(); | |
1910 #endif | |
1911 goto cmdline_not_changed; | |
1912 | |
1913 case K_LEFT: | |
1914 case K_S_LEFT: | |
1915 case K_C_LEFT: | |
1456 | 1916 if (ccline.cmdpos == 0) |
1917 goto cmdline_not_changed; | |
7 | 1918 do |
1919 { | |
1920 --ccline.cmdpos; | |
1921 #ifdef FEAT_MBYTE | |
1922 if (has_mbyte) /* move to first byte of char */ | |
1923 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff, | |
1924 ccline.cmdbuff + ccline.cmdpos); | |
1925 #endif | |
1926 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos); | |
1927 } | |
1456 | 1928 while (ccline.cmdpos > 0 |
1929 && (c == K_S_LEFT || c == K_C_LEFT | |
180 | 1930 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) |
7 | 1931 && ccline.cmdbuff[ccline.cmdpos - 1] != ' '); |
1932 #ifdef FEAT_MBYTE | |
1933 if (has_mbyte) | |
1934 set_cmdspos_cursor(); | |
1935 #endif | |
1936 goto cmdline_not_changed; | |
1937 | |
1938 case K_IGNORE: | |
11321
f57dce6b934b
patch 8.0.0546: swap file exists briefly when opening the command window
Christian Brabandt <cb@256bit.org>
parents:
11285
diff
changeset
|
1939 /* Ignore mouse event or open_cmdwin() result. */ |
1472 | 1940 goto cmdline_not_changed; |
7 | 1941 |
625 | 1942 #ifdef FEAT_GUI_W32 |
1943 /* On Win32 ignore <M-F4>, we get it when closing the window was | |
1944 * cancelled. */ | |
1945 case K_F4: | |
1946 if (mod_mask == MOD_MASK_ALT) | |
1947 { | |
1948 redrawcmd(); /* somehow the cmdline is cleared */ | |
1949 goto cmdline_not_changed; | |
1950 } | |
1951 break; | |
1952 #endif | |
1953 | |
7 | 1954 #ifdef FEAT_MOUSE |
1955 case K_MIDDLEDRAG: | |
1956 case K_MIDDLERELEASE: | |
1957 goto cmdline_not_changed; /* Ignore mouse */ | |
1958 | |
1959 case K_MIDDLEMOUSE: | |
1960 # ifdef FEAT_GUI | |
1961 /* When GUI is active, also paste when 'mouse' is empty */ | |
1962 if (!gui.in_use) | |
1963 # endif | |
1964 if (!mouse_has(MOUSE_COMMAND)) | |
1965 goto cmdline_not_changed; /* Ignore mouse */ | |
692 | 1966 # ifdef FEAT_CLIPBOARD |
7 | 1967 if (clip_star.available) |
1015 | 1968 cmdline_paste('*', TRUE, TRUE); |
7 | 1969 else |
692 | 1970 # endif |
1015 | 1971 cmdline_paste(0, TRUE, TRUE); |
7 | 1972 redrawcmd(); |
1973 goto cmdline_changed; | |
1974 | |
692 | 1975 # ifdef FEAT_DND |
7 | 1976 case K_DROP: |
1015 | 1977 cmdline_paste('~', TRUE, FALSE); |
7 | 1978 redrawcmd(); |
1979 goto cmdline_changed; | |
692 | 1980 # endif |
7 | 1981 |
1982 case K_LEFTDRAG: | |
1983 case K_LEFTRELEASE: | |
1984 case K_RIGHTDRAG: | |
1985 case K_RIGHTRELEASE: | |
1986 /* Ignore drag and release events when the button-down wasn't | |
1987 * seen before. */ | |
1988 if (ignore_drag_release) | |
1989 goto cmdline_not_changed; | |
1990 /* FALLTHROUGH */ | |
1991 case K_LEFTMOUSE: | |
1992 case K_RIGHTMOUSE: | |
1993 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE) | |
1994 ignore_drag_release = TRUE; | |
1995 else | |
1996 ignore_drag_release = FALSE; | |
1997 # ifdef FEAT_GUI | |
1998 /* When GUI is active, also move when 'mouse' is empty */ | |
1999 if (!gui.in_use) | |
2000 # endif | |
2001 if (!mouse_has(MOUSE_COMMAND)) | |
2002 goto cmdline_not_changed; /* Ignore mouse */ | |
2003 # ifdef FEAT_CLIPBOARD | |
2004 if (mouse_row < cmdline_row && clip_star.available) | |
2005 { | |
2006 int button, is_click, is_drag; | |
2007 | |
2008 /* | |
2009 * Handle modeless selection. | |
2010 */ | |
2011 button = get_mouse_button(KEY2TERMCAP1(c), | |
2012 &is_click, &is_drag); | |
2013 if (mouse_model_popup() && button == MOUSE_LEFT | |
2014 && (mod_mask & MOD_MASK_SHIFT)) | |
2015 { | |
2016 /* Translate shift-left to right button. */ | |
2017 button = MOUSE_RIGHT; | |
2018 mod_mask &= ~MOD_MASK_SHIFT; | |
2019 } | |
2020 clip_modeless(button, is_click, is_drag); | |
2021 goto cmdline_not_changed; | |
2022 } | |
2023 # endif | |
2024 | |
2025 set_cmdspos(); | |
2026 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen; | |
2027 ++ccline.cmdpos) | |
2028 { | |
2029 i = cmdline_charsize(ccline.cmdpos); | |
2030 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns | |
2031 && mouse_col < ccline.cmdspos % Columns + i) | |
2032 break; | |
692 | 2033 # ifdef FEAT_MBYTE |
7 | 2034 if (has_mbyte) |
2035 { | |
2036 /* Count ">" for double-wide char that doesn't fit. */ | |
2037 correct_cmdspos(ccline.cmdpos, i); | |
474 | 2038 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
7 | 2039 + ccline.cmdpos) - 1; |
2040 } | |
692 | 2041 # endif |
7 | 2042 ccline.cmdspos += i; |
2043 } | |
2044 goto cmdline_not_changed; | |
2045 | |
2046 /* Mouse scroll wheel: ignored here */ | |
2047 case K_MOUSEDOWN: | |
2048 case K_MOUSEUP: | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2049 case K_MOUSELEFT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2050 case K_MOUSERIGHT: |
7 | 2051 /* Alternate buttons ignored here */ |
2052 case K_X1MOUSE: | |
2053 case K_X1DRAG: | |
2054 case K_X1RELEASE: | |
2055 case K_X2MOUSE: | |
2056 case K_X2DRAG: | |
2057 case K_X2RELEASE: | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12855
diff
changeset
|
2058 case K_MOUSEMOVE: |
7 | 2059 goto cmdline_not_changed; |
2060 | |
2061 #endif /* FEAT_MOUSE */ | |
2062 | |
2063 #ifdef FEAT_GUI | |
2064 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */ | |
2065 case K_LEFTRELEASE_NM: | |
2066 goto cmdline_not_changed; | |
2067 | |
2068 case K_VER_SCROLLBAR: | |
540 | 2069 if (msg_scrolled == 0) |
7 | 2070 { |
2071 gui_do_scroll(); | |
2072 redrawcmd(); | |
2073 } | |
2074 goto cmdline_not_changed; | |
2075 | |
2076 case K_HOR_SCROLLBAR: | |
540 | 2077 if (msg_scrolled == 0) |
7 | 2078 { |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2079 gui_do_horiz_scroll(scrollbar_value, FALSE); |
7 | 2080 redrawcmd(); |
2081 } | |
2082 goto cmdline_not_changed; | |
2083 #endif | |
692 | 2084 #ifdef FEAT_GUI_TABLINE |
2085 case K_TABLINE: | |
2086 case K_TABMENU: | |
2087 /* Don't want to change any tabs here. Make sure the same tab | |
2088 * is still selected. */ | |
2089 if (gui_use_tabline()) | |
2090 gui_mch_set_curtab(tabpage_index(curtab)); | |
2091 goto cmdline_not_changed; | |
2092 #endif | |
2093 | |
7 | 2094 case K_SELECT: /* end of Select mode mapping - ignore */ |
2095 goto cmdline_not_changed; | |
2096 | |
2097 case Ctrl_B: /* begin of command line */ | |
2098 case K_HOME: | |
2099 case K_KHOME: | |
2100 case K_S_HOME: | |
2101 case K_C_HOME: | |
2102 ccline.cmdpos = 0; | |
2103 set_cmdspos(); | |
2104 goto cmdline_not_changed; | |
2105 | |
2106 case Ctrl_E: /* end of command line */ | |
2107 case K_END: | |
2108 case K_KEND: | |
2109 case K_S_END: | |
2110 case K_C_END: | |
2111 ccline.cmdpos = ccline.cmdlen; | |
2112 set_cmdspos_cursor(); | |
2113 goto cmdline_not_changed; | |
2114 | |
2115 case Ctrl_A: /* all matches */ | |
3961 | 2116 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL) |
7 | 2117 break; |
2118 goto cmdline_changed; | |
2119 | |
772 | 2120 case Ctrl_L: |
2121 #ifdef FEAT_SEARCH_EXTRA | |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
2122 if (may_add_char_to_search(firstc, &c, &is_state) == OK) |
772 | 2123 goto cmdline_not_changed; |
2124 #endif | |
2125 | |
2126 /* completion: longest common part */ | |
3961 | 2127 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL) |
7 | 2128 break; |
2129 goto cmdline_changed; | |
2130 | |
2131 case Ctrl_N: /* next match */ | |
2132 case Ctrl_P: /* previous match */ | |
9976
e448370630b2
commit https://github.com/vim/vim/commit/7df0f6313a46b80d760c9a80241922544333351c
Christian Brabandt <cb@256bit.org>
parents:
9971
diff
changeset
|
2133 if (xpc.xp_numfiles > 0) |
7 | 2134 { |
3961 | 2135 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, |
2136 0, firstc != '@') == FAIL) | |
7 | 2137 break; |
9990
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2138 goto cmdline_not_changed; |
7 | 2139 } |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
12664
diff
changeset
|
2140 #ifdef FEAT_CMDHIST |
9990
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2141 /* FALLTHROUGH */ |
7 | 2142 case K_UP: |
2143 case K_DOWN: | |
2144 case K_S_UP: | |
2145 case K_S_DOWN: | |
2146 case K_PAGEUP: | |
2147 case K_KPAGEUP: | |
2148 case K_PAGEDOWN: | |
2149 case K_KPAGEDOWN: | |
2150 if (hislen == 0 || firstc == NUL) /* no history */ | |
2151 goto cmdline_not_changed; | |
2152 | |
2153 i = hiscnt; | |
2154 | |
2155 /* save current command string so it can be restored later */ | |
2156 if (lookfor == NULL) | |
2157 { | |
2158 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL) | |
2159 goto cmdline_not_changed; | |
2160 lookfor[ccline.cmdpos] = NUL; | |
2161 } | |
2162 | |
2163 j = (int)STRLEN(lookfor); | |
2164 for (;;) | |
2165 { | |
2166 /* one step backwards */ | |
230 | 2167 if (c == K_UP|| c == K_S_UP || c == Ctrl_P |
180 | 2168 || c == K_PAGEUP || c == K_KPAGEUP) |
7 | 2169 { |
2170 if (hiscnt == hislen) /* first time */ | |
2171 hiscnt = hisidx[histype]; | |
2172 else if (hiscnt == 0 && hisidx[histype] != hislen - 1) | |
2173 hiscnt = hislen - 1; | |
2174 else if (hiscnt != hisidx[histype] + 1) | |
2175 --hiscnt; | |
2176 else /* at top of list */ | |
2177 { | |
2178 hiscnt = i; | |
2179 break; | |
2180 } | |
2181 } | |
2182 else /* one step forwards */ | |
2183 { | |
2184 /* on last entry, clear the line */ | |
2185 if (hiscnt == hisidx[histype]) | |
2186 { | |
2187 hiscnt = hislen; | |
2188 break; | |
2189 } | |
2190 | |
2191 /* not on a history line, nothing to do */ | |
2192 if (hiscnt == hislen) | |
2193 break; | |
2194 if (hiscnt == hislen - 1) /* wrap around */ | |
2195 hiscnt = 0; | |
2196 else | |
2197 ++hiscnt; | |
2198 } | |
2199 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL) | |
2200 { | |
2201 hiscnt = i; | |
2202 break; | |
2203 } | |
230 | 2204 if ((c != K_UP && c != K_DOWN) |
180 | 2205 || hiscnt == i |
7 | 2206 || STRNCMP(history[histype][hiscnt].hisstr, |
2207 lookfor, (size_t)j) == 0) | |
2208 break; | |
2209 } | |
2210 | |
2211 if (hiscnt != i) /* jumped to other entry */ | |
2212 { | |
2213 char_u *p; | |
2214 int len; | |
2215 int old_firstc; | |
2216 | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2217 VIM_CLEAR(ccline.cmdbuff); |
1718 | 2218 xpc.xp_context = EXPAND_NOTHING; |
7 | 2219 if (hiscnt == hislen) |
2220 p = lookfor; /* back to the old one */ | |
2221 else | |
2222 p = history[histype][hiscnt].hisstr; | |
2223 | |
2224 if (histype == HIST_SEARCH | |
2225 && p != lookfor | |
2226 && (old_firstc = p[STRLEN(p) + 1]) != firstc) | |
2227 { | |
2228 /* Correct for the separator character used when | |
2229 * adding the history entry vs the one used now. | |
2230 * First loop: count length. | |
2231 * Second loop: copy the characters. */ | |
2232 for (i = 0; i <= 1; ++i) | |
2233 { | |
2234 len = 0; | |
2235 for (j = 0; p[j] != NUL; ++j) | |
2236 { | |
2237 /* Replace old sep with new sep, unless it is | |
2238 * escaped. */ | |
2239 if (p[j] == old_firstc | |
2240 && (j == 0 || p[j - 1] != '\\')) | |
2241 { | |
2242 if (i > 0) | |
2243 ccline.cmdbuff[len] = firstc; | |
2244 } | |
2245 else | |
2246 { | |
2247 /* Escape new sep, unless it is already | |
2248 * escaped. */ | |
2249 if (p[j] == firstc | |
2250 && (j == 0 || p[j - 1] != '\\')) | |
2251 { | |
2252 if (i > 0) | |
2253 ccline.cmdbuff[len] = '\\'; | |
2254 ++len; | |
2255 } | |
2256 if (i > 0) | |
2257 ccline.cmdbuff[len] = p[j]; | |
2258 } | |
2259 ++len; | |
2260 } | |
2261 if (i == 0) | |
2262 { | |
2263 alloc_cmdbuff(len); | |
2264 if (ccline.cmdbuff == NULL) | |
2265 goto returncmd; | |
2266 } | |
2267 } | |
2268 ccline.cmdbuff[len] = NUL; | |
2269 } | |
2270 else | |
2271 { | |
2272 alloc_cmdbuff((int)STRLEN(p)); | |
2273 if (ccline.cmdbuff == NULL) | |
2274 goto returncmd; | |
2275 STRCPY(ccline.cmdbuff, p); | |
2276 } | |
2277 | |
2278 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); | |
2279 redrawcmd(); | |
2280 goto cmdline_changed; | |
2281 } | |
2282 beep_flush(); | |
9990
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2283 #endif |
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2284 goto cmdline_not_changed; |
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2285 |
10094
61dc69646af6
commit https://github.com/vim/vim/commit/349e7d94e6bbb253bb87adad9039f095128ab543
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2286 #ifdef FEAT_SEARCH_EXTRA |
9990
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2287 case Ctrl_G: /* next match */ |
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2288 case Ctrl_T: /* previous match */ |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
2289 if (may_adjust_incsearch_highlighting( |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
2290 firstc, count, &is_state, c) == FAIL) |
10094
61dc69646af6
commit https://github.com/vim/vim/commit/349e7d94e6bbb253bb87adad9039f095128ab543
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2291 goto cmdline_not_changed; |
61dc69646af6
commit https://github.com/vim/vim/commit/349e7d94e6bbb253bb87adad9039f095128ab543
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2292 break; |
7 | 2293 #endif |
2294 | |
2295 case Ctrl_V: | |
2296 case Ctrl_Q: | |
2297 #ifdef FEAT_MOUSE | |
2298 ignore_drag_release = TRUE; | |
2299 #endif | |
2300 putcmdline('^', TRUE); | |
2301 c = get_literal(); /* get next (two) character(s) */ | |
2302 do_abbr = FALSE; /* don't do abbreviation now */ | |
11664
e3bfe624ba0a
patch 8.0.0714: when a timer causes a command line redraw " goes missing
Christian Brabandt <cb@256bit.org>
parents:
11647
diff
changeset
|
2303 extra_char = NUL; |
7 | 2304 #ifdef FEAT_MBYTE |
2305 /* may need to remove ^ when composing char was typed */ | |
2306 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent) | |
2307 { | |
2308 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); | |
2309 msg_putchar(' '); | |
2310 cursorcmd(); | |
2311 } | |
2312 #endif | |
2313 break; | |
2314 | |
2315 #ifdef FEAT_DIGRAPHS | |
2316 case Ctrl_K: | |
2317 #ifdef FEAT_MOUSE | |
2318 ignore_drag_release = TRUE; | |
2319 #endif | |
2320 putcmdline('?', TRUE); | |
2321 #ifdef USE_ON_FLY_SCROLL | |
2322 dont_scroll = TRUE; /* disallow scrolling here */ | |
2323 #endif | |
2324 c = get_digraph(TRUE); | |
11664
e3bfe624ba0a
patch 8.0.0714: when a timer causes a command line redraw " goes missing
Christian Brabandt <cb@256bit.org>
parents:
11647
diff
changeset
|
2325 extra_char = NUL; |
7 | 2326 if (c != NUL) |
2327 break; | |
2328 | |
2329 redrawcmd(); | |
2330 goto cmdline_not_changed; | |
2331 #endif /* FEAT_DIGRAPHS */ | |
2332 | |
2333 #ifdef FEAT_RIGHTLEFT | |
2334 case Ctrl__: /* CTRL-_: switch language mode */ | |
2335 if (!p_ari) | |
2336 break; | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2337 # ifdef FEAT_FKMAP |
7 | 2338 if (p_altkeymap) |
2339 { | |
2340 cmd_fkmap = !cmd_fkmap; | |
2341 if (cmd_fkmap) /* in Farsi always in Insert mode */ | |
2342 ccline.overstrike = FALSE; | |
2343 } | |
2344 else /* Hebrew is default */ | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2345 # endif |
7 | 2346 cmd_hkmap = !cmd_hkmap; |
2347 goto cmdline_not_changed; | |
2348 #endif | |
2349 | |
10676
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2350 case K_PS: |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2351 bracketed_paste(PASTE_CMDLINE, FALSE, NULL); |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2352 goto cmdline_changed; |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2353 |
7 | 2354 default: |
2355 #ifdef UNIX | |
2356 if (c == intr_char) | |
2357 { | |
2358 gotesc = TRUE; /* will free ccline.cmdbuff after | |
2359 putting it in history */ | |
2360 goto returncmd; /* back to Normal mode */ | |
2361 } | |
2362 #endif | |
2363 /* | |
2364 * Normal character with no special meaning. Just set mod_mask | |
2365 * to 0x0 so that typing Shift-Space in the GUI doesn't enter | |
2366 * the string <S-Space>. This should only happen after ^V. | |
2367 */ | |
2368 if (!IS_SPECIAL(c)) | |
2369 mod_mask = 0x0; | |
2370 break; | |
2371 } | |
2372 /* | |
2373 * End of switch on command line character. | |
2374 * We come here if we have a normal character. | |
2375 */ | |
2376 | |
4980
9ae0fe467776
updated for version 7.3.1235
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2377 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr( |
7 | 2378 #ifdef FEAT_MBYTE |
2379 /* Add ABBR_OFF for characters above 0x100, this is | |
2380 * what check_abbr() expects. */ | |
2381 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : | |
2382 #endif | |
4980
9ae0fe467776
updated for version 7.3.1235
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
2383 c) || c == Ctrl_RSB)) |
7 | 2384 goto cmdline_changed; |
2385 | |
2386 /* | |
2387 * put the character in the command line | |
2388 */ | |
2389 if (IS_SPECIAL(c) || mod_mask != 0) | |
2390 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE); | |
2391 else | |
2392 { | |
2393 #ifdef FEAT_MBYTE | |
2394 if (has_mbyte) | |
2395 { | |
2396 j = (*mb_char2bytes)(c, IObuff); | |
2397 IObuff[j] = NUL; /* exclude composing chars */ | |
2398 put_on_cmdline(IObuff, j, TRUE); | |
2399 } | |
2400 else | |
2401 #endif | |
2402 { | |
2403 IObuff[0] = c; | |
2404 put_on_cmdline(IObuff, 1, TRUE); | |
2405 } | |
2406 } | |
2407 goto cmdline_changed; | |
2408 | |
2409 /* | |
2410 * This part implements incremental searches for "/" and "?" | |
2411 * Jump to cmdline_not_changed when a character has been read but the command | |
2412 * line did not change. Then we only search and redraw if something changed in | |
2413 * the past. | |
2414 * Jump to cmdline_changed when the command line did change. | |
2415 * (Sorry for the goto's, I know it is ugly). | |
2416 */ | |
2417 cmdline_not_changed: | |
2418 #ifdef FEAT_SEARCH_EXTRA | |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
2419 if (!is_state.incsearch_postponed) |
7 | 2420 continue; |
2421 #endif | |
2422 | |
2423 cmdline_changed: | |
13142
59a16624400a
patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents:
13107
diff
changeset
|
2424 /* Trigger CmdlineChanged autocommands. */ |
59a16624400a
patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents:
13107
diff
changeset
|
2425 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINECHANGED); |
59a16624400a
patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents:
13107
diff
changeset
|
2426 |
7 | 2427 #ifdef FEAT_SEARCH_EXTRA |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
2428 may_do_incsearch_highlighting(firstc, count, &is_state); |
7 | 2429 #endif |
2430 | |
2431 #ifdef FEAT_RIGHTLEFT | |
2432 if (cmdmsg_rl | |
2433 # ifdef FEAT_ARABIC | |
534 | 2434 || (p_arshape && !p_tbidi && enc_utf8) |
7 | 2435 # endif |
2436 ) | |
2437 /* Always redraw the whole command line to fix shaping and | |
3374 | 2438 * right-left typing. Not efficient, but it works. |
2439 * Do it only when there are no characters left to read | |
2440 * to avoid useless intermediate redraws. */ | |
2441 if (vpeekc() == NUL) | |
2442 redrawcmd(); | |
7 | 2443 #endif |
2444 } | |
2445 | |
2446 returncmd: | |
2447 | |
2448 #ifdef FEAT_RIGHTLEFT | |
2449 cmdmsg_rl = FALSE; | |
2450 #endif | |
2451 | |
2452 #ifdef FEAT_FKMAP | |
2453 cmd_fkmap = 0; | |
2454 #endif | |
2455 | |
2456 ExpandCleanup(&xpc); | |
1718 | 2457 ccline.xpc = NULL; |
7 | 2458 |
2459 #ifdef FEAT_SEARCH_EXTRA | |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
2460 finish_incsearch_highlighting(gotesc, &is_state, FALSE); |
7 | 2461 #endif |
2462 | |
2463 if (ccline.cmdbuff != NULL) | |
2464 { | |
2465 /* | |
2466 * Put line in history buffer (":" and "=" only when it was typed). | |
2467 */ | |
2468 #ifdef FEAT_CMDHIST | |
2469 if (ccline.cmdlen && firstc != NUL | |
2470 && (some_key_typed || histype == HIST_SEARCH)) | |
2471 { | |
2472 add_to_history(histype, ccline.cmdbuff, TRUE, | |
2473 histype == HIST_SEARCH ? firstc : NUL); | |
2474 if (firstc == ':') | |
2475 { | |
2476 vim_free(new_last_cmdline); | |
2477 new_last_cmdline = vim_strsave(ccline.cmdbuff); | |
2478 } | |
2479 } | |
2480 #endif | |
2481 | |
12664
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
2482 if (gotesc) |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
2483 abandon_cmdline(); |
7 | 2484 } |
2485 | |
2486 /* | |
2487 * If the screen was shifted up, redraw the whole screen (later). | |
2488 * If the line is too long, clear it, so ruler and shown command do | |
2489 * not get printed in the middle of it. | |
2490 */ | |
2491 msg_check(); | |
2492 msg_scroll = save_msg_scroll; | |
2493 redir_off = FALSE; | |
2494 | |
2495 /* When the command line was typed, no need for a wait-return prompt. */ | |
2496 if (some_key_typed) | |
2497 need_wait_return = FALSE; | |
2498 | |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2499 /* Trigger CmdlineLeave autocommands. */ |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2500 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINELEAVE); |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2501 |
7 | 2502 State = save_State; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
2503 #ifdef HAVE_INPUT_METHOD |
7 | 2504 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP) |
2505 im_save_status(b_im_ptr); | |
2506 im_set_active(FALSE); | |
2507 #endif | |
2508 #ifdef FEAT_MOUSE | |
2509 setmouse(); | |
2510 #endif | |
2511 #ifdef CURSOR_SHAPE | |
2512 ui_cursor_shape(); /* may show different cursor shape */ | |
2513 #endif | |
11163
f4d1fad4ac00
patch 8.0.0468: after aborting an Ex command g< does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
2514 sb_text_end_cmdline(); |
7 | 2515 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2516 theend: |
95 | 2517 { |
2518 char_u *p = ccline.cmdbuff; | |
2519 | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2520 if (did_save_ccline) |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2521 restore_cmdline(&save_ccline); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2522 else |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2523 ccline.cmdbuff = NULL; |
95 | 2524 return p; |
2525 } | |
7 | 2526 } |
2527 | |
2528 #if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO) | |
2529 /* | |
2530 * Get a command line with a prompt. | |
2531 * This is prepared to be called recursively from getcmdline() (e.g. by | |
2532 * f_input() when evaluating an expression from CTRL-R =). | |
2533 * Returns the command line in allocated memory, or NULL. | |
2534 */ | |
2535 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2536 getcmdline_prompt( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2537 int firstc, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2538 char_u *prompt, /* command line prompt */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2539 int attr, /* attributes for prompt */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2540 int xp_context, /* type of expansion */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2541 char_u *xp_arg) /* user-defined expansion argument */ |
7 | 2542 { |
2543 char_u *s; | |
2544 struct cmdline_info save_ccline; | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2545 int did_save_ccline = FALSE; |
7 | 2546 int msg_col_save = msg_col; |
8694
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
2547 int msg_silent_save = msg_silent; |
7 | 2548 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2549 if (ccline.cmdbuff != NULL) |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2550 { |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2551 // Save the values of the current cmdline and restore them below. |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2552 save_cmdline(&save_ccline); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2553 did_save_ccline = TRUE; |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2554 } |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2555 |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2556 vim_memset(&ccline, 0, sizeof(struct cmdline_info)); |
7 | 2557 ccline.cmdprompt = prompt; |
2558 ccline.cmdattr = attr; | |
531 | 2559 # ifdef FEAT_EVAL |
2560 ccline.xp_context = xp_context; | |
2561 ccline.xp_arg = xp_arg; | |
2562 ccline.input_fn = (firstc == '@'); | |
2563 # endif | |
8694
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
2564 msg_silent = 0; |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2565 s = getcmdline_int(firstc, 1L, 0, FALSE); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2566 |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2567 if (did_save_ccline) |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2568 restore_cmdline(&save_ccline); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2569 |
8694
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
2570 msg_silent = msg_silent_save; |
3020 | 2571 /* Restore msg_col, the prompt from input() may have changed it. |
2572 * But only if called recursively and the commandline is therefore being | |
2573 * restored to an old one; if not, the input() prompt stays on the screen, | |
2574 * so we need its modified msg_col left intact. */ | |
2575 if (ccline.cmdbuff != NULL) | |
2576 msg_col = msg_col_save; | |
7 | 2577 |
2578 return s; | |
2579 } | |
2580 #endif | |
2581 | |
632 | 2582 /* |
634 | 2583 * Return TRUE when the text must not be changed and we can't switch to |
2584 * another window or buffer. Used when editing the command line, evaluating | |
2585 * 'balloonexpr', etc. | |
632 | 2586 */ |
2587 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2588 text_locked(void) |
632 | 2589 { |
2590 #ifdef FEAT_CMDWIN | |
2591 if (cmdwin_type != 0) | |
2592 return TRUE; | |
2593 #endif | |
634 | 2594 return textlock != 0; |
632 | 2595 } |
2596 | |
2597 /* | |
2598 * Give an error message for a command that isn't allowed while the cmdline | |
2599 * window is open or editing the cmdline in another way. | |
2600 */ | |
2601 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2602 text_locked_msg(void) |
632 | 2603 { |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2604 EMSG(_(get_text_locked_msg())); |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2605 } |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2606 |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2607 char_u * |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2608 get_text_locked_msg(void) |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2609 { |
632 | 2610 #ifdef FEAT_CMDWIN |
2611 if (cmdwin_type != 0) | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2612 return e_cmdwin; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2613 #endif |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2614 return e_secure; |
632 | 2615 } |
2616 | |
819 | 2617 /* |
1834 | 2618 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is |
2619 * and give an error message. | |
819 | 2620 */ |
2621 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2622 curbuf_locked(void) |
819 | 2623 { |
2624 if (curbuf_lock > 0) | |
2625 { | |
2626 EMSG(_("E788: Not allowed to edit another buffer now")); | |
2627 return TRUE; | |
2628 } | |
1834 | 2629 return allbuf_locked(); |
2630 } | |
2631 | |
2632 /* | |
2633 * Check if "allbuf_lock" is set and return TRUE when it is and give an error | |
2634 * message. | |
2635 */ | |
2636 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2637 allbuf_locked(void) |
1834 | 2638 { |
2639 if (allbuf_lock > 0) | |
2640 { | |
2641 EMSG(_("E811: Not allowed to change buffer information now")); | |
2642 return TRUE; | |
2643 } | |
819 | 2644 return FALSE; |
2645 } | |
2646 | |
7 | 2647 static int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2648 cmdline_charsize(int idx) |
7 | 2649 { |
2650 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
2651 if (cmdline_star > 0) /* showing '*', always 1 position */ | |
2652 return 1; | |
2653 #endif | |
2654 return ptr2cells(ccline.cmdbuff + idx); | |
2655 } | |
2656 | |
2657 /* | |
2658 * Compute the offset of the cursor on the command line for the prompt and | |
2659 * indent. | |
2660 */ | |
2661 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2662 set_cmdspos(void) |
7 | 2663 { |
531 | 2664 if (ccline.cmdfirstc != NUL) |
7 | 2665 ccline.cmdspos = 1 + ccline.cmdindent; |
2666 else | |
2667 ccline.cmdspos = 0 + ccline.cmdindent; | |
2668 } | |
2669 | |
2670 /* | |
2671 * Compute the screen position for the cursor on the command line. | |
2672 */ | |
2673 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2674 set_cmdspos_cursor(void) |
7 | 2675 { |
2676 int i, m, c; | |
2677 | |
2678 set_cmdspos(); | |
2679 if (KeyTyped) | |
534 | 2680 { |
7 | 2681 m = Columns * Rows; |
534 | 2682 if (m < 0) /* overflow, Columns or Rows at weird value */ |
2683 m = MAXCOL; | |
2684 } | |
7 | 2685 else |
2686 m = MAXCOL; | |
2687 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i) | |
2688 { | |
2689 c = cmdline_charsize(i); | |
2690 #ifdef FEAT_MBYTE | |
2691 /* Count ">" for double-wide multi-byte char that doesn't fit. */ | |
2692 if (has_mbyte) | |
2693 correct_cmdspos(i, c); | |
2694 #endif | |
1612 | 2695 /* If the cmdline doesn't fit, show cursor on last visible char. |
2696 * Don't move the cursor itself, so we can still append. */ | |
7 | 2697 if ((ccline.cmdspos += c) >= m) |
2698 { | |
2699 ccline.cmdspos -= c; | |
2700 break; | |
2701 } | |
2702 #ifdef FEAT_MBYTE | |
2703 if (has_mbyte) | |
474 | 2704 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1; |
7 | 2705 #endif |
2706 } | |
2707 } | |
2708 | |
2709 #ifdef FEAT_MBYTE | |
2710 /* | |
2711 * Check if the character at "idx", which is "cells" wide, is a multi-byte | |
2712 * character that doesn't fit, so that a ">" must be displayed. | |
2713 */ | |
2714 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2715 correct_cmdspos(int idx, int cells) |
7 | 2716 { |
474 | 2717 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1 |
7 | 2718 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1 |
2719 && ccline.cmdspos % Columns + cells > Columns) | |
2720 ccline.cmdspos++; | |
2721 } | |
2722 #endif | |
2723 | |
2724 /* | |
2725 * Get an Ex command line for the ":" command. | |
2726 */ | |
2727 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2728 getexline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2729 int c, /* normally ':', NUL for ":append" */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2730 void *cookie UNUSED, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2731 int indent) /* indent for inside conditionals */ |
7 | 2732 { |
2733 /* When executing a register, remove ':' that's in front of each line. */ | |
2734 if (exec_from_reg && vpeekc() == ':') | |
2735 (void)vgetc(); | |
2736 return getcmdline(c, 1L, indent); | |
2737 } | |
2738 | |
2739 /* | |
2740 * Get an Ex command line for Ex mode. | |
2741 * In Ex mode we only use the OS supplied line editing features and no | |
2742 * mappings or abbreviations. | |
168 | 2743 * Returns a string in allocated memory or NULL. |
7 | 2744 */ |
2745 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2746 getexmodeline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2747 int promptc, /* normally ':', NUL for ":append" and '?' for |
168 | 2748 :s prompt */ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2749 void *cookie UNUSED, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2750 int indent) /* indent for inside conditionals */ |
7 | 2751 { |
168 | 2752 garray_T line_ga; |
2753 char_u *pend; | |
2754 int startcol = 0; | |
1329 | 2755 int c1 = 0; |
168 | 2756 int escaped = FALSE; /* CTRL-V typed */ |
2757 int vcol = 0; | |
2758 char_u *p; | |
1329 | 2759 int prev_char; |
5966 | 2760 int len; |
7 | 2761 |
2762 /* Switch cursor on now. This avoids that it happens after the "\n", which | |
2763 * confuses the system function that computes tabstops. */ | |
2764 cursor_on(); | |
2765 | |
2766 /* always start in column 0; write a newline if necessary */ | |
2767 compute_cmdrow(); | |
168 | 2768 if ((msg_col || msg_didout) && promptc != '?') |
7 | 2769 msg_putchar('\n'); |
168 | 2770 if (promptc == ':') |
7 | 2771 { |
164 | 2772 /* indent that is only displayed, not in the line itself */ |
168 | 2773 if (p_prompt) |
2774 msg_putchar(':'); | |
7 | 2775 while (indent-- > 0) |
2776 msg_putchar(' '); | |
2777 startcol = msg_col; | |
2778 } | |
2779 | |
2780 ga_init2(&line_ga, 1, 30); | |
2781 | |
164 | 2782 /* autoindent for :insert and :append is in the line itself */ |
168 | 2783 if (promptc <= 0) |
164 | 2784 { |
2785 vcol = indent; | |
2786 while (indent >= 8) | |
2787 { | |
2788 ga_append(&line_ga, TAB); | |
2789 msg_puts((char_u *)" "); | |
2790 indent -= 8; | |
2791 } | |
2792 while (indent-- > 0) | |
2793 { | |
2794 ga_append(&line_ga, ' '); | |
2795 msg_putchar(' '); | |
2796 } | |
2797 } | |
168 | 2798 ++no_mapping; |
2799 ++allow_keys; | |
164 | 2800 |
7 | 2801 /* |
2802 * Get the line, one character at a time. | |
2803 */ | |
2804 got_int = FALSE; | |
168 | 2805 while (!got_int) |
7 | 2806 { |
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
|
2807 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
|
2808 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
|
2809 |
7 | 2810 if (ga_grow(&line_ga, 40) == FAIL) |
2811 break; | |
2812 | |
10970
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2813 /* |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2814 * Get one character at a time. |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2815 */ |
1329 | 2816 prev_char = c1; |
10970
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2817 |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2818 /* Check for a ":normal" command and no more characters left. */ |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2819 if (ex_normal_busy > 0 && typebuf.tb_len == 0) |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2820 c1 = '\n'; |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2821 else |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2822 c1 = vgetc(); |
7 | 2823 |
2824 /* | |
168 | 2825 * Handle line editing. |
2826 * Previously this was left to the system, putting the terminal in | |
2827 * cooked mode, but then CTRL-D and CTRL-T can't be used properly. | |
7 | 2828 */ |
168 | 2829 if (got_int) |
2830 { | |
2831 msg_putchar('\n'); | |
2832 break; | |
2833 } | |
2834 | |
10676
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2835 if (c1 == K_PS) |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2836 { |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2837 bracketed_paste(PASTE_EX, FALSE, &line_ga); |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2838 goto redraw; |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2839 } |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2840 |
168 | 2841 if (!escaped) |
7 | 2842 { |
168 | 2843 /* CR typed means "enter", which is NL */ |
2844 if (c1 == '\r') | |
2845 c1 = '\n'; | |
2846 | |
2847 if (c1 == BS || c1 == K_BS | |
2848 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL) | |
7 | 2849 { |
168 | 2850 if (line_ga.ga_len > 0) |
2851 { | |
5966 | 2852 #ifdef FEAT_MBYTE |
2853 if (has_mbyte) | |
2854 { | |
2855 p = (char_u *)line_ga.ga_data; | |
2856 p[line_ga.ga_len] = NUL; | |
2857 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1; | |
2858 line_ga.ga_len -= len; | |
2859 } | |
2860 else | |
2861 #endif | |
2862 --line_ga.ga_len; | |
168 | 2863 goto redraw; |
2864 } | |
2865 continue; | |
7 | 2866 } |
2867 | |
168 | 2868 if (c1 == Ctrl_U) |
7 | 2869 { |
168 | 2870 msg_col = startcol; |
2871 msg_clr_eos(); | |
2872 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
|
2873 goto redraw; |
168 | 2874 } |
2875 | |
2876 if (c1 == Ctrl_T) | |
2877 { | |
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
|
2878 sw = get_sw_value(curbuf); |
168 | 2879 p = (char_u *)line_ga.ga_data; |
2880 p[line_ga.ga_len] = NUL; | |
5995 | 2881 indent = get_indent_str(p, 8, FALSE); |
3740 | 2882 indent += sw - indent % sw; |
168 | 2883 add_indent: |
5995 | 2884 while (get_indent_str(p, 8, FALSE) < indent) |
7 | 2885 { |
7009 | 2886 (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
|
2887 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
|
2888 s = skipwhite(p); |
168 | 2889 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1); |
2890 *s = ' '; | |
2891 ++line_ga.ga_len; | |
7 | 2892 } |
168 | 2893 redraw: |
2894 /* redraw the line */ | |
2895 msg_col = startcol; | |
2896 vcol = 0; | |
5966 | 2897 p = (char_u *)line_ga.ga_data; |
2898 p[line_ga.ga_len] = NUL; | |
2899 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len) | |
7 | 2900 { |
168 | 2901 if (*p == TAB) |
7 | 2902 { |
168 | 2903 do |
7 | 2904 { |
168 | 2905 msg_putchar(' '); |
2906 } while (++vcol % 8); | |
5966 | 2907 ++p; |
7 | 2908 } |
168 | 2909 else |
164 | 2910 { |
5966 | 2911 len = MB_PTR2LEN(p); |
2912 msg_outtrans_len(p, len); | |
2913 vcol += ptr2cells(p); | |
2914 p += len; | |
7 | 2915 } |
2916 } | |
168 | 2917 msg_clr_eos(); |
1329 | 2918 windgoto(msg_row, msg_col); |
168 | 2919 continue; |
2920 } | |
2921 | |
2922 if (c1 == Ctrl_D) | |
2923 { | |
2924 /* Delete one shiftwidth. */ | |
2925 p = (char_u *)line_ga.ga_data; | |
2926 if (prev_char == '0' || prev_char == '^') | |
7 | 2927 { |
168 | 2928 if (prev_char == '^') |
2929 ex_keep_indent = TRUE; | |
2930 indent = 0; | |
2931 p[--line_ga.ga_len] = NUL; | |
7 | 2932 } |
2933 else | |
2934 { | |
168 | 2935 p[line_ga.ga_len] = NUL; |
5995 | 2936 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
|
2937 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
|
2938 { |
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
|
2939 --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
|
2940 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
|
2941 } |
168 | 2942 } |
5995 | 2943 while (get_indent_str(p, 8, FALSE) > indent) |
168 | 2944 { |
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
|
2945 s = skipwhite(p); |
168 | 2946 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1); |
2947 --line_ga.ga_len; | |
7 | 2948 } |
168 | 2949 goto add_indent; |
2950 } | |
2951 | |
2952 if (c1 == Ctrl_V || c1 == Ctrl_Q) | |
2953 { | |
2954 escaped = TRUE; | |
2955 continue; | |
7 | 2956 } |
168 | 2957 |
2958 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */ | |
2959 if (IS_SPECIAL(c1)) | |
2960 continue; | |
7 | 2961 } |
168 | 2962 |
2963 if (IS_SPECIAL(c1)) | |
2964 c1 = '?'; | |
5966 | 2965 #ifdef FEAT_MBYTE |
2966 if (has_mbyte) | |
2967 len = (*mb_char2bytes)(c1, | |
2968 (char_u *)line_ga.ga_data + line_ga.ga_len); | |
2969 else | |
2970 #endif | |
2971 { | |
2972 len = 1; | |
2973 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1; | |
2974 } | |
168 | 2975 if (c1 == '\n') |
2976 msg_putchar('\n'); | |
2977 else if (c1 == TAB) | |
2978 { | |
2979 /* Don't use chartabsize(), 'ts' can be different */ | |
2980 do | |
2981 { | |
2982 msg_putchar(' '); | |
2983 } while (++vcol % 8); | |
2984 } | |
7 | 2985 else |
2986 { | |
168 | 2987 msg_outtrans_len( |
5966 | 2988 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len); |
168 | 2989 vcol += char2cells(c1); |
7 | 2990 } |
5966 | 2991 line_ga.ga_len += len; |
168 | 2992 escaped = FALSE; |
2993 | |
2994 windgoto(msg_row, msg_col); | |
164 | 2995 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len; |
168 | 2996 |
2590 | 2997 /* We are done when a NL is entered, but not when it comes after an |
2998 * odd number of backslashes, that results in a NUL. */ | |
2999 if (line_ga.ga_len > 0 && pend[-1] == '\n') | |
7 | 3000 { |
2590 | 3001 int bcount = 0; |
3002 | |
3003 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\') | |
3004 ++bcount; | |
3005 | |
3006 if (bcount > 0) | |
3007 { | |
3008 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" -> | |
3009 * "\NL", etc. */ | |
3010 line_ga.ga_len -= (bcount + 1) / 2; | |
3011 pend -= (bcount + 1) / 2; | |
3012 pend[-1] = '\n'; | |
3013 } | |
3014 | |
3015 if ((bcount & 1) == 0) | |
3016 { | |
3017 --line_ga.ga_len; | |
3018 --pend; | |
3019 *pend = NUL; | |
3020 break; | |
3021 } | |
7 | 3022 } |
3023 } | |
3024 | |
168 | 3025 --no_mapping; |
3026 --allow_keys; | |
3027 | |
7 | 3028 /* make following messages go to the next line */ |
3029 msg_didout = FALSE; | |
3030 msg_col = 0; | |
3031 if (msg_row < Rows - 1) | |
3032 ++msg_row; | |
3033 emsg_on_display = FALSE; /* don't want ui_delay() */ | |
3034 | |
3035 if (got_int) | |
3036 ga_clear(&line_ga); | |
3037 | |
3038 return (char_u *)line_ga.ga_data; | |
3039 } | |
3040 | |
502 | 3041 # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \ |
3042 || defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
7 | 3043 /* |
3044 * Return TRUE if ccline.overstrike is on. | |
3045 */ | |
3046 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3047 cmdline_overstrike(void) |
7 | 3048 { |
3049 return ccline.overstrike; | |
3050 } | |
3051 | |
3052 /* | |
3053 * Return TRUE if the cursor is at the end of the cmdline. | |
3054 */ | |
3055 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3056 cmdline_at_end(void) |
7 | 3057 { |
3058 return (ccline.cmdpos >= ccline.cmdlen); | |
3059 } | |
3060 #endif | |
3061 | |
574 | 3062 #if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO) |
7 | 3063 /* |
3064 * Return the virtual column number at the current cursor position. | |
3065 * This is used by the IM code to obtain the start of the preedit string. | |
3066 */ | |
3067 colnr_T | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3068 cmdline_getvcol_cursor(void) |
7 | 3069 { |
3070 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen) | |
3071 return MAXCOL; | |
3072 | |
3073 # ifdef FEAT_MBYTE | |
3074 if (has_mbyte) | |
3075 { | |
3076 colnr_T col; | |
3077 int i = 0; | |
3078 | |
3079 for (col = 0; i < ccline.cmdpos; ++col) | |
474 | 3080 i += (*mb_ptr2len)(ccline.cmdbuff + i); |
7 | 3081 |
3082 return col; | |
3083 } | |
3084 else | |
3085 # endif | |
3086 return ccline.cmdpos; | |
3087 } | |
3088 #endif | |
3089 | |
3090 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) | |
3091 /* | |
3092 * If part of the command line is an IM preedit string, redraw it with | |
3093 * IM feedback attributes. The cursor position is restored after drawing. | |
3094 */ | |
3095 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3096 redrawcmd_preedit(void) |
7 | 3097 { |
3098 if ((State & CMDLINE) | |
3099 && xic != NULL | |
976 | 3100 /* && im_get_status() doesn't work when using SCIM */ |
7 | 3101 && !p_imdisable |
3102 && im_is_preediting()) | |
3103 { | |
3104 int cmdpos = 0; | |
3105 int cmdspos; | |
3106 int old_row; | |
3107 int old_col; | |
3108 colnr_T col; | |
3109 | |
3110 old_row = msg_row; | |
3111 old_col = msg_col; | |
531 | 3112 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent; |
7 | 3113 |
3114 # ifdef FEAT_MBYTE | |
3115 if (has_mbyte) | |
3116 { | |
3117 for (col = 0; col < preedit_start_col | |
3118 && cmdpos < ccline.cmdlen; ++col) | |
3119 { | |
3120 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos); | |
474 | 3121 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
7 | 3122 } |
3123 } | |
3124 else | |
3125 # endif | |
3126 { | |
3127 cmdspos += preedit_start_col; | |
3128 cmdpos += preedit_start_col; | |
3129 } | |
3130 | |
3131 msg_row = cmdline_row + (cmdspos / (int)Columns); | |
3132 msg_col = cmdspos % (int)Columns; | |
3133 if (msg_row >= Rows) | |
3134 msg_row = Rows - 1; | |
3135 | |
3136 for (col = 0; cmdpos < ccline.cmdlen; ++col) | |
3137 { | |
3138 int char_len; | |
3139 int char_attr; | |
3140 | |
3141 char_attr = im_get_feedback_attr(col); | |
3142 if (char_attr < 0) | |
3143 break; /* end of preedit string */ | |
3144 | |
3145 # ifdef FEAT_MBYTE | |
3146 if (has_mbyte) | |
474 | 3147 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
7 | 3148 else |
3149 # endif | |
3150 char_len = 1; | |
3151 | |
3152 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr); | |
3153 cmdpos += char_len; | |
3154 } | |
3155 | |
3156 msg_row = old_row; | |
3157 msg_col = old_col; | |
3158 } | |
3159 } | |
3160 #endif /* FEAT_XIM && FEAT_GUI_GTK */ | |
3161 | |
3162 /* | |
3163 * Allocate a new command line buffer. | |
3164 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen. | |
3165 */ | |
3166 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3167 alloc_cmdbuff(int len) |
7 | 3168 { |
3169 /* | |
3170 * give some extra space to avoid having to allocate all the time | |
3171 */ | |
3172 if (len < 80) | |
3173 len = 100; | |
3174 else | |
3175 len += 20; | |
3176 | |
3177 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */ | |
3178 ccline.cmdbufflen = len; | |
3179 } | |
3180 | |
3181 /* | |
3182 * Re-allocate the command line to length len + something extra. | |
3183 * return FAIL for failure, OK otherwise | |
3184 */ | |
3185 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3186 realloc_cmdbuff(int len) |
7 | 3187 { |
3188 char_u *p; | |
3189 | |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
3190 if (len < ccline.cmdbufflen) |
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
3191 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
|
3192 |
7 | 3193 p = ccline.cmdbuff; |
3194 alloc_cmdbuff(len); /* will get some more */ | |
3195 if (ccline.cmdbuff == NULL) /* out of memory */ | |
3196 { | |
3197 ccline.cmdbuff = p; /* keep the old one */ | |
3198 return FAIL; | |
3199 } | |
2556
e065501c703a
Fix illegal memory access when using expressions in the command line.
Bram Moolenaar <bram@vim.org>
parents:
2534
diff
changeset
|
3200 /* 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
|
3201 * 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
|
3202 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
|
3203 ccline.cmdbuff[ccline.cmdlen] = NUL; |
7 | 3204 vim_free(p); |
1718 | 3205 |
3206 if (ccline.xpc != NULL | |
3207 && ccline.xpc->xp_pattern != NULL | |
3208 && ccline.xpc->xp_context != EXPAND_NOTHING | |
3209 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL) | |
3210 { | |
1754 | 3211 int i = (int)(ccline.xpc->xp_pattern - p); |
1718 | 3212 |
3213 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted | |
3214 * to point into the newly allocated memory. */ | |
3215 if (i >= 0 && i <= ccline.cmdlen) | |
3216 ccline.xpc->xp_pattern = ccline.cmdbuff + i; | |
3217 } | |
3218 | |
7 | 3219 return OK; |
3220 } | |
3221 | |
359 | 3222 #if defined(FEAT_ARABIC) || defined(PROTO) |
3223 static char_u *arshape_buf = NULL; | |
3224 | |
3225 # if defined(EXITFREE) || defined(PROTO) | |
3226 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3227 free_cmdline_buf(void) |
359 | 3228 { |
3229 vim_free(arshape_buf); | |
3230 } | |
3231 # endif | |
3232 #endif | |
3233 | |
7 | 3234 /* |
3235 * Draw part of the cmdline at the current cursor position. But draw stars | |
3236 * when cmdline_star is TRUE. | |
3237 */ | |
3238 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3239 draw_cmdline(int start, int len) |
7 | 3240 { |
3241 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
3242 int i; | |
3243 | |
3244 if (cmdline_star > 0) | |
3245 for (i = 0; i < len; ++i) | |
3246 { | |
3247 msg_putchar('*'); | |
3248 # ifdef FEAT_MBYTE | |
3249 if (has_mbyte) | |
474 | 3250 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1; |
7 | 3251 # endif |
3252 } | |
3253 else | |
3254 #endif | |
3255 #ifdef FEAT_ARABIC | |
3256 if (p_arshape && !p_tbidi && enc_utf8 && len > 0) | |
3257 { | |
3258 static int buflen = 0; | |
3259 char_u *p; | |
3260 int j; | |
3261 int newlen = 0; | |
3262 int mb_l; | |
719 | 3263 int pc, pc1 = 0; |
7 | 3264 int prev_c = 0; |
3265 int prev_c1 = 0; | |
714 | 3266 int u8c; |
3267 int u8cc[MAX_MCO]; | |
7 | 3268 int nc = 0; |
3269 | |
3270 /* | |
3271 * Do arabic shaping into a temporary buffer. This is very | |
3272 * inefficient! | |
3273 */ | |
507 | 3274 if (len * 2 + 2 > buflen) |
7 | 3275 { |
3276 /* Re-allocate the buffer. We keep it around to avoid a lot of | |
3277 * alloc()/free() calls. */ | |
359 | 3278 vim_free(arshape_buf); |
507 | 3279 buflen = len * 2 + 2; |
359 | 3280 arshape_buf = alloc(buflen); |
3281 if (arshape_buf == NULL) | |
7 | 3282 return; /* out of memory */ |
3283 } | |
3284 | |
507 | 3285 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start))) |
3286 { | |
3287 /* Prepend a space to draw the leading composing char on. */ | |
3288 arshape_buf[0] = ' '; | |
3289 newlen = 1; | |
3290 } | |
3291 | |
7 | 3292 for (j = start; j < start + len; j += mb_l) |
3293 { | |
3294 p = ccline.cmdbuff + j; | |
714 | 3295 u8c = utfc_ptr2char_len(p, u8cc, start + len - j); |
474 | 3296 mb_l = utfc_ptr2len_len(p, start + len - j); |
7 | 3297 if (ARABIC_CHAR(u8c)) |
3298 { | |
3299 /* Do Arabic shaping. */ | |
3300 if (cmdmsg_rl) | |
3301 { | |
3302 /* displaying from right to left */ | |
3303 pc = prev_c; | |
3304 pc1 = prev_c1; | |
714 | 3305 prev_c1 = u8cc[0]; |
7 | 3306 if (j + mb_l >= start + len) |
3307 nc = NUL; | |
3308 else | |
3309 nc = utf_ptr2char(p + mb_l); | |
3310 } | |
3311 else | |
3312 { | |
3313 /* displaying from left to right */ | |
3314 if (j + mb_l >= start + len) | |
3315 pc = NUL; | |
3316 else | |
714 | 3317 { |
3318 int pcc[MAX_MCO]; | |
3319 | |
3320 pc = utfc_ptr2char_len(p + mb_l, pcc, | |
7 | 3321 start + len - j - mb_l); |
714 | 3322 pc1 = pcc[0]; |
3323 } | |
7 | 3324 nc = prev_c; |
3325 } | |
3326 prev_c = u8c; | |
3327 | |
714 | 3328 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc); |
7 | 3329 |
359 | 3330 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen); |
714 | 3331 if (u8cc[0] != 0) |
7 | 3332 { |
714 | 3333 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen); |
3334 if (u8cc[1] != 0) | |
3335 newlen += (*mb_char2bytes)(u8cc[1], | |
359 | 3336 arshape_buf + newlen); |
7 | 3337 } |
3338 } | |
3339 else | |
3340 { | |
3341 prev_c = u8c; | |
359 | 3342 mch_memmove(arshape_buf + newlen, p, mb_l); |
7 | 3343 newlen += mb_l; |
3344 } | |
3345 } | |
3346 | |
359 | 3347 msg_outtrans_len(arshape_buf, newlen); |
7 | 3348 } |
3349 else | |
3350 #endif | |
3351 msg_outtrans_len(ccline.cmdbuff + start, len); | |
3352 } | |
3353 | |
3354 /* | |
3355 * Put a character on the command line. Shifts the following text to the | |
3356 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc. | |
3357 * "c" must be printable (fit in one display cell)! | |
3358 */ | |
3359 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3360 putcmdline(int c, int shift) |
7 | 3361 { |
3362 if (cmd_silent) | |
3363 return; | |
3364 msg_no_more = TRUE; | |
3365 msg_putchar(c); | |
3366 if (shift) | |
3367 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); | |
3368 msg_no_more = FALSE; | |
3369 cursorcmd(); | |
11674
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
3370 extra_char = c; |
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
3371 extra_char_shift = shift; |
7 | 3372 } |
3373 | |
3374 /* | |
3375 * Undo a putcmdline(c, FALSE). | |
3376 */ | |
3377 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3378 unputcmdline(void) |
7 | 3379 { |
3380 if (cmd_silent) | |
3381 return; | |
3382 msg_no_more = TRUE; | |
3383 if (ccline.cmdlen == ccline.cmdpos) | |
3384 msg_putchar(' '); | |
3558 | 3385 #ifdef FEAT_MBYTE |
3386 else if (has_mbyte) | |
3387 draw_cmdline(ccline.cmdpos, | |
3388 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos)); | |
3389 #endif | |
7 | 3390 else |
3391 draw_cmdline(ccline.cmdpos, 1); | |
3392 msg_no_more = FALSE; | |
3393 cursorcmd(); | |
11674
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
3394 extra_char = NUL; |
7 | 3395 } |
3396 | |
3397 /* | |
3398 * Put the given string, of the given length, onto the command line. | |
3399 * If len is -1, then STRLEN() is used to calculate the length. | |
3400 * If 'redraw' is TRUE then the new part of the command line, and the remaining | |
3401 * part will be redrawn, otherwise it will not. If this function is called | |
3402 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be | |
3403 * called afterwards. | |
3404 */ | |
3405 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3406 put_on_cmdline(char_u *str, int len, int redraw) |
7 | 3407 { |
3408 int retval; | |
3409 int i; | |
3410 int m; | |
3411 int c; | |
3412 | |
3413 if (len < 0) | |
3414 len = (int)STRLEN(str); | |
3415 | |
3416 /* Check if ccline.cmdbuff needs to be longer */ | |
3417 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
|
3418 retval = realloc_cmdbuff(ccline.cmdlen + len + 1); |
7 | 3419 else |
3420 retval = OK; | |
3421 if (retval == OK) | |
3422 { | |
3423 if (!ccline.overstrike) | |
3424 { | |
3425 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, | |
3426 ccline.cmdbuff + ccline.cmdpos, | |
3427 (size_t)(ccline.cmdlen - ccline.cmdpos)); | |
3428 ccline.cmdlen += len; | |
3429 } | |
3430 else | |
3431 { | |
3432 #ifdef FEAT_MBYTE | |
3433 if (has_mbyte) | |
3434 { | |
3435 /* Count nr of characters in the new string. */ | |
3436 m = 0; | |
474 | 3437 for (i = 0; i < len; i += (*mb_ptr2len)(str + i)) |
7 | 3438 ++m; |
3439 /* Count nr of bytes in cmdline that are overwritten by these | |
3440 * characters. */ | |
3441 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0; | |
474 | 3442 i += (*mb_ptr2len)(ccline.cmdbuff + i)) |
7 | 3443 --m; |
3444 if (i < ccline.cmdlen) | |
3445 { | |
3446 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, | |
3447 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i)); | |
3448 ccline.cmdlen += ccline.cmdpos + len - i; | |
3449 } | |
3450 else | |
3451 ccline.cmdlen = ccline.cmdpos + len; | |
3452 } | |
3453 else | |
3454 #endif | |
3455 if (ccline.cmdpos + len > ccline.cmdlen) | |
3456 ccline.cmdlen = ccline.cmdpos + len; | |
3457 } | |
3458 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len); | |
3459 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
3460 | |
3461 #ifdef FEAT_MBYTE | |
3462 if (enc_utf8) | |
3463 { | |
3464 /* When the inserted text starts with a composing character, | |
3465 * backup to the character before it. There could be two of them. | |
3466 */ | |
3467 i = 0; | |
3468 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); | |
3469 while (ccline.cmdpos > 0 && utf_iscomposing(c)) | |
3470 { | |
3471 i = (*mb_head_off)(ccline.cmdbuff, | |
3472 ccline.cmdbuff + ccline.cmdpos - 1) + 1; | |
3473 ccline.cmdpos -= i; | |
3474 len += i; | |
3475 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); | |
3476 } | |
3477 # ifdef FEAT_ARABIC | |
3478 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c)) | |
3479 { | |
3480 /* Check the previous character for Arabic combining pair. */ | |
3481 i = (*mb_head_off)(ccline.cmdbuff, | |
3482 ccline.cmdbuff + ccline.cmdpos - 1) + 1; | |
3483 if (arabic_combine(utf_ptr2char(ccline.cmdbuff | |
3484 + ccline.cmdpos - i), c)) | |
3485 { | |
3486 ccline.cmdpos -= i; | |
3487 len += i; | |
3488 } | |
3489 else | |
3490 i = 0; | |
3491 } | |
3492 # endif | |
3493 if (i != 0) | |
3494 { | |
3495 /* Also backup the cursor position. */ | |
3496 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos); | |
3497 ccline.cmdspos -= i; | |
3498 msg_col -= i; | |
3499 if (msg_col < 0) | |
3500 { | |
3501 msg_col += Columns; | |
3502 --msg_row; | |
3503 } | |
3504 } | |
3505 } | |
3506 #endif | |
3507 | |
3508 if (redraw && !cmd_silent) | |
3509 { | |
3510 msg_no_more = TRUE; | |
3511 i = cmdline_row; | |
3114 | 3512 cursorcmd(); |
7 | 3513 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); |
3514 /* Avoid clearing the rest of the line too often. */ | |
3515 if (cmdline_row != i || ccline.overstrike) | |
3516 msg_clr_eos(); | |
3517 msg_no_more = FALSE; | |
3518 } | |
3519 #ifdef FEAT_FKMAP | |
3520 /* | |
3521 * If we are in Farsi command mode, the character input must be in | |
3522 * Insert mode. So do not advance the cmdpos. | |
3523 */ | |
3524 if (!cmd_fkmap) | |
3525 #endif | |
3526 { | |
3527 if (KeyTyped) | |
534 | 3528 { |
7 | 3529 m = Columns * Rows; |
534 | 3530 if (m < 0) /* overflow, Columns or Rows at weird value */ |
3531 m = MAXCOL; | |
3532 } | |
7 | 3533 else |
3534 m = MAXCOL; | |
3535 for (i = 0; i < len; ++i) | |
3536 { | |
3537 c = cmdline_charsize(ccline.cmdpos); | |
3538 #ifdef FEAT_MBYTE | |
3539 /* count ">" for a double-wide char that doesn't fit. */ | |
3540 if (has_mbyte) | |
3541 correct_cmdspos(ccline.cmdpos, c); | |
3542 #endif | |
1612 | 3543 /* Stop cursor at the end of the screen, but do increment the |
3544 * insert position, so that entering a very long command | |
3545 * works, even though you can't see it. */ | |
3546 if (ccline.cmdspos + c < m) | |
3547 ccline.cmdspos += c; | |
7 | 3548 #ifdef FEAT_MBYTE |
3549 if (has_mbyte) | |
3550 { | |
474 | 3551 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1; |
7 | 3552 if (c > len - i - 1) |
3553 c = len - i - 1; | |
3554 ccline.cmdpos += c; | |
3555 i += c; | |
3556 } | |
3557 #endif | |
3558 ++ccline.cmdpos; | |
3559 } | |
3560 } | |
3561 } | |
3562 if (redraw) | |
3563 msg_check(); | |
3564 return retval; | |
3565 } | |
3566 | |
95 | 3567 static struct cmdline_info prev_ccline; |
3568 static int prev_ccline_used = FALSE; | |
3569 | |
3570 /* | |
3571 * Save ccline, because obtaining the "=" register may execute "normal :cmd" | |
3572 * and overwrite it. But get_cmdline_str() may need it, thus make it | |
3573 * available globally in prev_ccline. | |
3574 */ | |
3575 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3576 save_cmdline(struct cmdline_info *ccp) |
95 | 3577 { |
3578 if (!prev_ccline_used) | |
3579 { | |
3580 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info)); | |
3581 prev_ccline_used = TRUE; | |
3582 } | |
3583 *ccp = prev_ccline; | |
3584 prev_ccline = ccline; | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
3585 ccline.cmdbuff = NULL; // signal that ccline is not in use |
95 | 3586 } |
3587 | |
3588 /* | |
1214 | 3589 * Restore ccline after it has been saved with save_cmdline(). |
95 | 3590 */ |
3591 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3592 restore_cmdline(struct cmdline_info *ccp) |
95 | 3593 { |
3594 ccline = prev_ccline; | |
3595 prev_ccline = *ccp; | |
3596 } | |
3597 | |
15 | 3598 /* |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
3599 * 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
|
3600 * Used by CTRL-R command in command-line mode. |
15 | 3601 * insert_reg() can't be used here, because special characters from the |
3602 * register contents will be interpreted as commands. | |
3603 * | |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
3604 * Return FAIL for failure, OK otherwise. |
15 | 3605 */ |
3606 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3607 cmdline_paste( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3608 int regname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3609 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
|
3610 int remcr) /* remove trailing CR */ |
15 | 3611 { |
3612 long i; | |
3613 char_u *arg; | |
772 | 3614 char_u *p; |
15 | 3615 int allocated; |
3616 | |
3617 /* check for valid regname; also accept special characters for CTRL-R in | |
3618 * the command line */ | |
3619 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W | |
13831
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13794
diff
changeset
|
3620 && regname != Ctrl_A && regname != Ctrl_L |
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13794
diff
changeset
|
3621 && !valid_yank_reg(regname, FALSE)) |
15 | 3622 return FAIL; |
3623 | |
3624 /* A register containing CTRL-R can cause an endless loop. Allow using | |
3625 * CTRL-C to break the loop. */ | |
3626 line_breakcheck(); | |
3627 if (got_int) | |
3628 return FAIL; | |
3629 | |
3630 #ifdef FEAT_CLIPBOARD | |
3631 regname = may_get_selection(regname); | |
3632 #endif | |
3633 | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
3634 // Need to set "textlock" to avoid nasty things like going to another |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
3635 // buffer when evaluating an expression. |
634 | 3636 ++textlock; |
15 | 3637 i = get_spec_reg(regname, &arg, &allocated, TRUE); |
634 | 3638 --textlock; |
15 | 3639 |
3640 if (i) | |
3641 { | |
3642 /* Got the value of a special register in "arg". */ | |
3643 if (arg == NULL) | |
3644 return FAIL; | |
772 | 3645 |
3646 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate | |
3647 * part of the word. */ | |
3648 p = arg; | |
3649 if (p_is && regname == Ctrl_W) | |
3650 { | |
3651 char_u *w; | |
3652 int len; | |
3653 | |
3654 /* Locate start of last word in the cmd buffer. */ | |
2937 | 3655 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; ) |
772 | 3656 { |
3657 #ifdef FEAT_MBYTE | |
3658 if (has_mbyte) | |
3659 { | |
3660 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1; | |
3661 if (!vim_iswordc(mb_ptr2char(w - len))) | |
3662 break; | |
3663 w -= len; | |
3664 } | |
3665 else | |
3666 #endif | |
3667 { | |
3668 if (!vim_iswordc(w[-1])) | |
3669 break; | |
3670 --w; | |
3671 } | |
3672 } | |
2937 | 3673 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w); |
772 | 3674 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0) |
3675 p += len; | |
3676 } | |
3677 | |
3678 cmdline_paste_str(p, literally); | |
15 | 3679 if (allocated) |
3680 vim_free(arg); | |
3681 return OK; | |
3682 } | |
3683 | |
1015 | 3684 return cmdline_paste_reg(regname, literally, remcr); |
15 | 3685 } |
3686 | |
3687 /* | |
3688 * Put a string on the command line. | |
3689 * When "literally" is TRUE, insert literally. | |
3690 * When "literally" is FALSE, insert as typed, but don't leave the command | |
3691 * line. | |
3692 */ | |
3693 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3694 cmdline_paste_str(char_u *s, int literally) |
15 | 3695 { |
3696 int c, cv; | |
3697 | |
3698 if (literally) | |
3699 put_on_cmdline(s, -1, TRUE); | |
3700 else | |
3701 while (*s != NUL) | |
3702 { | |
3703 cv = *s; | |
3704 if (cv == Ctrl_V && s[1]) | |
3705 ++s; | |
3706 #ifdef FEAT_MBYTE | |
3707 if (has_mbyte) | |
1606 | 3708 c = mb_cptr2char_adv(&s); |
15 | 3709 else |
3710 #endif | |
3711 c = *s++; | |
3628 | 3712 if (cv == Ctrl_V || c == ESC || c == Ctrl_C |
3713 || c == CAR || c == NL || c == Ctrl_L | |
15 | 3714 #ifdef UNIX |
3715 || c == intr_char | |
3716 #endif | |
3717 || (c == Ctrl_BSL && *s == Ctrl_N)) | |
3718 stuffcharReadbuff(Ctrl_V); | |
3719 stuffcharReadbuff(c); | |
3720 } | |
3721 } | |
3722 | |
7 | 3723 #ifdef FEAT_WILDMENU |
3724 /* | |
3725 * Delete characters on the command line, from "from" to the current | |
3726 * position. | |
3727 */ | |
3728 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3729 cmdline_del(int from) |
7 | 3730 { |
3731 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos, | |
3732 (size_t)(ccline.cmdlen - ccline.cmdpos + 1)); | |
3733 ccline.cmdlen -= ccline.cmdpos - from; | |
3734 ccline.cmdpos = from; | |
3735 } | |
3736 #endif | |
3737 | |
3738 /* | |
9066
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
3739 * This function is called when the screen size changes and with incremental |
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
3740 * search and in other situations where the command line may have been |
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
3741 * overwritten. |
7 | 3742 */ |
3743 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3744 redrawcmdline(void) |
7 | 3745 { |
11416
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11321
diff
changeset
|
3746 redrawcmdline_ex(TRUE); |
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11321
diff
changeset
|
3747 } |
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11321
diff
changeset
|
3748 |
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11321
diff
changeset
|
3749 void |
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11321
diff
changeset
|
3750 redrawcmdline_ex(int do_compute_cmdrow) |
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11321
diff
changeset
|
3751 { |
7 | 3752 if (cmd_silent) |
3753 return; | |
3754 need_wait_return = FALSE; | |
11416
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11321
diff
changeset
|
3755 if (do_compute_cmdrow) |
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11321
diff
changeset
|
3756 compute_cmdrow(); |
7 | 3757 redrawcmd(); |
3758 cursorcmd(); | |
3759 } | |
3760 | |
3761 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3762 redrawcmdprompt(void) |
7 | 3763 { |
3764 int i; | |
3765 | |
3766 if (cmd_silent) | |
3767 return; | |
531 | 3768 if (ccline.cmdfirstc != NUL) |
7 | 3769 msg_putchar(ccline.cmdfirstc); |
3770 if (ccline.cmdprompt != NULL) | |
3771 { | |
3772 msg_puts_attr(ccline.cmdprompt, ccline.cmdattr); | |
3773 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns; | |
3774 /* do the reverse of set_cmdspos() */ | |
531 | 3775 if (ccline.cmdfirstc != NUL) |
7 | 3776 --ccline.cmdindent; |
3777 } | |
3778 else | |
3779 for (i = ccline.cmdindent; i > 0; --i) | |
3780 msg_putchar(' '); | |
3781 } | |
3782 | |
3783 /* | |
3784 * Redraw what is currently on the command line. | |
3785 */ | |
3786 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3787 redrawcmd(void) |
7 | 3788 { |
3789 if (cmd_silent) | |
3790 return; | |
3791 | |
683 | 3792 /* when 'incsearch' is set there may be no command line while redrawing */ |
3793 if (ccline.cmdbuff == NULL) | |
3794 { | |
3795 windgoto(cmdline_row, 0); | |
3796 msg_clr_eos(); | |
3797 return; | |
3798 } | |
3799 | |
7 | 3800 msg_start(); |
3801 redrawcmdprompt(); | |
3802 | |
3803 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */ | |
3804 msg_no_more = TRUE; | |
3805 draw_cmdline(0, ccline.cmdlen); | |
3806 msg_clr_eos(); | |
3807 msg_no_more = FALSE; | |
3808 | |
3809 set_cmdspos_cursor(); | |
11664
e3bfe624ba0a
patch 8.0.0714: when a timer causes a command line redraw " goes missing
Christian Brabandt <cb@256bit.org>
parents:
11647
diff
changeset
|
3810 if (extra_char != NUL) |
11674
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
3811 putcmdline(extra_char, extra_char_shift); |
7 | 3812 |
3813 /* | |
3814 * An emsg() before may have set msg_scroll. This is used in normal mode, | |
3815 * in cmdline mode we can reset them now. | |
3816 */ | |
3817 msg_scroll = FALSE; /* next message overwrites cmdline */ | |
3818 | |
3819 /* Typing ':' at the more prompt may set skip_redraw. We don't want this | |
3820 * in cmdline mode */ | |
3821 skip_redraw = FALSE; | |
3822 } | |
3823 | |
3824 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3825 compute_cmdrow(void) |
7 | 3826 { |
540 | 3827 if (exmode_active || msg_scrolled != 0) |
7 | 3828 cmdline_row = Rows - 1; |
3829 else | |
3830 cmdline_row = W_WINROW(lastwin) + lastwin->w_height | |
12529
158917d728b4
patch 8.0.1143: macros always expand to the same thing
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3831 + lastwin->w_status_height; |
7 | 3832 } |
3833 | |
3834 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3835 cursorcmd(void) |
7 | 3836 { |
3837 if (cmd_silent) | |
3838 return; | |
3839 | |
3840 #ifdef FEAT_RIGHTLEFT | |
3841 if (cmdmsg_rl) | |
3842 { | |
3843 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1)); | |
3844 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1; | |
3845 if (msg_row <= 0) | |
3846 msg_row = Rows - 1; | |
3847 } | |
3848 else | |
3849 #endif | |
3850 { | |
3851 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns); | |
3852 msg_col = ccline.cmdspos % (int)Columns; | |
3853 if (msg_row >= Rows) | |
3854 msg_row = Rows - 1; | |
3855 } | |
3856 | |
3857 windgoto(msg_row, msg_col); | |
3858 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) | |
12293
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
11995
diff
changeset
|
3859 if (p_imst == IM_ON_THE_SPOT) |
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
11995
diff
changeset
|
3860 redrawcmd_preedit(); |
7 | 3861 #endif |
3862 #ifdef MCH_CURSOR_SHAPE | |
3863 mch_update_cursor(); | |
3864 #endif | |
3865 } | |
3866 | |
3867 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3868 gotocmdline(int clr) |
7 | 3869 { |
3870 msg_start(); | |
3871 #ifdef FEAT_RIGHTLEFT | |
3872 if (cmdmsg_rl) | |
3873 msg_col = Columns - 1; | |
3874 else | |
3875 #endif | |
3876 msg_col = 0; /* always start in column 0 */ | |
3877 if (clr) /* clear the bottom line(s) */ | |
3878 msg_clr_eos(); /* will reset clear_cmdline */ | |
3879 windgoto(cmdline_row, 0); | |
3880 } | |
3881 | |
3882 /* | |
3883 * Check the word in front of the cursor for an abbreviation. | |
3884 * Called when the non-id character "c" has been entered. | |
3885 * When an abbreviation is recognized it is removed from the text with | |
3886 * backspaces and the replacement string is inserted, followed by "c". | |
3887 */ | |
3888 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3889 ccheck_abbr(int c) |
7 | 3890 { |
13933
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3891 int spos = 0; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3892 |
7 | 3893 if (p_paste || no_abbr) /* no abbreviations or in paste mode */ |
3894 return FALSE; | |
3895 | |
13933
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3896 /* Do not consider '<,'> be part of the mapping, skip leading whitespace. |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3897 * Actually accepts any mark. */ |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3898 while (VIM_ISWHITE(ccline.cmdbuff[spos]) && spos < ccline.cmdlen) |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3899 spos++; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3900 if (ccline.cmdlen - spos > 5 |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3901 && ccline.cmdbuff[spos] == '\'' |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3902 && ccline.cmdbuff[spos + 2] == ',' |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3903 && ccline.cmdbuff[spos + 3] == '\'') |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3904 spos += 5; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3905 else |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3906 /* check abbreviation from the beginning of the commandline */ |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3907 spos = 0; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3908 |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3909 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, spos); |
7 | 3910 } |
3911 | |
3164 | 3912 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
3913 static int | |
3914 #ifdef __BORLANDC__ | |
3915 _RTLENTRYF | |
3916 #endif | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3917 sort_func_compare(const void *s1, const void *s2) |
3164 | 3918 { |
3919 char_u *p1 = *(char_u **)s1; | |
3920 char_u *p2 = *(char_u **)s2; | |
3921 | |
3922 if (*p1 != '<' && *p2 == '<') return -1; | |
3923 if (*p1 == '<' && *p2 != '<') return 1; | |
3924 return STRCMP(p1, p2); | |
3925 } | |
3926 #endif | |
3927 | |
7 | 3928 /* |
3929 * Return FAIL if this is not an appropriate context in which to do | |
3930 * completion of anything, return OK if it is (even if there are no matches). | |
3931 * For the caller, this means that the character is just passed through like a | |
3932 * normal character (instead of being expanded). This allows :s/^I^D etc. | |
3933 */ | |
3934 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3935 nextwild( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3936 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3937 int type, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3938 int options, /* extra options for ExpandOne() */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3939 int escape) /* if TRUE, escape the returned matches */ |
7 | 3940 { |
3941 int i, j; | |
3942 char_u *p1; | |
3943 char_u *p2; | |
3944 int difflen; | |
3945 int v; | |
3946 | |
3947 if (xp->xp_numfiles == -1) | |
3948 { | |
3949 set_expand_context(xp); | |
3950 cmd_showtail = expand_showtail(xp); | |
3951 } | |
3952 | |
3953 if (xp->xp_context == EXPAND_UNSUCCESSFUL) | |
3954 { | |
3955 beep_flush(); | |
3956 return OK; /* Something illegal on command line */ | |
3957 } | |
3958 if (xp->xp_context == EXPAND_NOTHING) | |
3959 { | |
3960 /* Caller can use the character as a normal char instead */ | |
3961 return FAIL; | |
3962 } | |
3963 | |
3964 MSG_PUTS("..."); /* show that we are busy */ | |
3965 out_flush(); | |
3966 | |
3967 i = (int)(xp->xp_pattern - ccline.cmdbuff); | |
1965 | 3968 xp->xp_pattern_len = ccline.cmdpos - i; |
7 | 3969 |
3970 if (type == WILD_NEXT || type == WILD_PREV) | |
3971 { | |
3972 /* | |
3973 * Get next/previous match for a previous expanded pattern. | |
3974 */ | |
3975 p2 = ExpandOne(xp, NULL, NULL, 0, type); | |
3976 } | |
3977 else | |
3978 { | |
3979 /* | |
3980 * Translate string into pattern and expand it. | |
3981 */ | |
1965 | 3982 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len, |
3983 xp->xp_context)) == NULL) | |
7 | 3984 p2 = NULL; |
3985 else | |
3986 { | |
2652 | 3987 int use_options = options | |
3961 | 3988 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT; |
3989 if (escape) | |
3990 use_options |= WILD_ESCAPE; | |
2652 | 3991 |
3992 if (p_wic) | |
3993 use_options += WILD_ICASE; | |
1965 | 3994 p2 = ExpandOne(xp, p1, |
3995 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len), | |
2652 | 3996 use_options, type); |
7 | 3997 vim_free(p1); |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
2016
diff
changeset
|
3998 /* longest match: make sure it is not shorter, happens with :help */ |
7 | 3999 if (p2 != NULL && type == WILD_LONGEST) |
4000 { | |
1965 | 4001 for (j = 0; j < xp->xp_pattern_len; ++j) |
7 | 4002 if (ccline.cmdbuff[i + j] == '*' |
4003 || ccline.cmdbuff[i + j] == '?') | |
4004 break; | |
4005 if ((int)STRLEN(p2) < j) | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
4006 VIM_CLEAR(p2); |
7 | 4007 } |
4008 } | |
4009 } | |
4010 | |
4011 if (p2 != NULL && !got_int) | |
4012 { | |
1965 | 4013 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
|
4014 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen) |
7 | 4015 { |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
4016 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4); |
7 | 4017 xp->xp_pattern = ccline.cmdbuff + i; |
4018 } | |
4019 else | |
4020 v = OK; | |
4021 if (v == OK) | |
4022 { | |
323 | 4023 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen], |
4024 &ccline.cmdbuff[ccline.cmdpos], | |
4025 (size_t)(ccline.cmdlen - ccline.cmdpos + 1)); | |
4026 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2)); | |
7 | 4027 ccline.cmdlen += difflen; |
4028 ccline.cmdpos += difflen; | |
4029 } | |
4030 } | |
4031 vim_free(p2); | |
4032 | |
4033 redrawcmd(); | |
33 | 4034 cursorcmd(); |
7 | 4035 |
4036 /* When expanding a ":map" command and no matches are found, assume that | |
4037 * the key is supposed to be inserted literally */ | |
4038 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL) | |
4039 return FAIL; | |
4040 | |
4041 if (xp->xp_numfiles <= 0 && p2 == NULL) | |
4042 beep_flush(); | |
4043 else if (xp->xp_numfiles == 1) | |
4044 /* free expanded pattern */ | |
4045 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE); | |
4046 | |
4047 return OK; | |
4048 } | |
4049 | |
4050 /* | |
4051 * Do wildcard expansion on the string 'str'. | |
4052 * Chars that should not be expanded must be preceded with a backslash. | |
1612 | 4053 * Return a pointer to allocated memory containing the new string. |
7 | 4054 * Return NULL for failure. |
4055 * | |
1412 | 4056 * "orig" is the originally expanded string, copied to allocated memory. It |
4057 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or | |
4058 * WILD_PREV "orig" should be NULL. | |
4059 * | |
838 | 4060 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode" |
4061 * is WILD_EXPAND_FREE or WILD_ALL. | |
7 | 4062 * |
4063 * mode = WILD_FREE: just free previously expanded matches | |
4064 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches | |
4065 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches | |
4066 * mode = WILD_NEXT: use next match in multiple match, wrap to first | |
4067 * mode = WILD_PREV: use previous match in multiple match, wrap to first | |
4068 * mode = WILD_ALL: return all matches concatenated | |
4069 * mode = WILD_LONGEST: return longest matched part | |
3398 | 4070 * mode = WILD_ALL_KEEP: get all matches, keep matches |
7 | 4071 * |
4072 * options = WILD_LIST_NOTFOUND: list entries without a match | |
4073 * options = WILD_HOME_REPLACE: do home_replace() for buffer names | |
4074 * options = WILD_USE_NL: Use '\n' for WILD_ALL | |
4075 * options = WILD_NO_BEEP: Don't beep for multiple matches | |
4076 * options = WILD_ADD_SLASH: add a slash after directory names | |
4077 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries | |
4078 * options = WILD_SILENT: don't print warning messages | |
4079 * options = WILD_ESCAPE: put backslash before special chars | |
2652 | 4080 * options = WILD_ICASE: ignore case for files |
7 | 4081 * |
4082 * The variables xp->xp_context and xp->xp_backslash must have been set! | |
4083 */ | |
4084 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4085 ExpandOne( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4086 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4087 char_u *str, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4088 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
|
4089 int options, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4090 int mode) |
7 | 4091 { |
4092 char_u *ss = NULL; | |
4093 static int findex; | |
4094 static char_u *orig_save = NULL; /* kept value of orig */ | |
1432 | 4095 int orig_saved = FALSE; |
7 | 4096 int i; |
4097 long_u len; | |
4098 int non_suf_match; /* number without matching suffix */ | |
4099 | |
4100 /* | |
4101 * first handle the case of using an old match | |
4102 */ | |
4103 if (mode == WILD_NEXT || mode == WILD_PREV) | |
4104 { | |
4105 if (xp->xp_numfiles > 0) | |
4106 { | |
4107 if (mode == WILD_PREV) | |
4108 { | |
4109 if (findex == -1) | |
4110 findex = xp->xp_numfiles; | |
4111 --findex; | |
4112 } | |
4113 else /* mode == WILD_NEXT */ | |
4114 ++findex; | |
4115 | |
4116 /* | |
4117 * When wrapping around, return the original string, set findex to | |
4118 * -1. | |
4119 */ | |
4120 if (findex < 0) | |
4121 { | |
4122 if (orig_save == NULL) | |
4123 findex = xp->xp_numfiles - 1; | |
4124 else | |
4125 findex = -1; | |
4126 } | |
4127 if (findex >= xp->xp_numfiles) | |
4128 { | |
4129 if (orig_save == NULL) | |
4130 findex = 0; | |
4131 else | |
4132 findex = -1; | |
4133 } | |
4134 #ifdef FEAT_WILDMENU | |
4135 if (p_wmnu) | |
4136 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files, | |
4137 findex, cmd_showtail); | |
4138 #endif | |
4139 if (findex == -1) | |
4140 return vim_strsave(orig_save); | |
4141 return vim_strsave(xp->xp_files[findex]); | |
4142 } | |
4143 else | |
4144 return NULL; | |
4145 } | |
4146 | |
1412 | 4147 /* free old names */ |
7 | 4148 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST) |
4149 { | |
4150 FreeWild(xp->xp_numfiles, xp->xp_files); | |
4151 xp->xp_numfiles = -1; | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
4152 VIM_CLEAR(orig_save); |
7 | 4153 } |
4154 findex = 0; | |
4155 | |
4156 if (mode == WILD_FREE) /* only release file name */ | |
4157 return NULL; | |
4158 | |
4159 if (xp->xp_numfiles == -1) | |
4160 { | |
4161 vim_free(orig_save); | |
4162 orig_save = orig; | |
1432 | 4163 orig_saved = TRUE; |
7 | 4164 |
4165 /* | |
4166 * Do the expansion. | |
4167 */ | |
4168 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files, | |
4169 options) == FAIL) | |
4170 { | |
4171 #ifdef FNAME_ILLEGAL | |
4172 /* Illegal file name has been silently skipped. But when there | |
4173 * are wildcards, the real problem is that there was no match, | |
4174 * causing the pattern to be added, which has illegal characters. | |
4175 */ | |
4176 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND)) | |
4177 EMSG2(_(e_nomatch2), str); | |
4178 #endif | |
4179 } | |
4180 else if (xp->xp_numfiles == 0) | |
4181 { | |
4182 if (!(options & WILD_SILENT)) | |
4183 EMSG2(_(e_nomatch2), str); | |
4184 } | |
4185 else | |
4186 { | |
4187 /* Escape the matches for use on the command line. */ | |
4188 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options); | |
4189 | |
4190 /* | |
4191 * Check for matching suffixes in file names. | |
4192 */ | |
3398 | 4193 if (mode != WILD_ALL && mode != WILD_ALL_KEEP |
4194 && mode != WILD_LONGEST) | |
7 | 4195 { |
4196 if (xp->xp_numfiles) | |
4197 non_suf_match = xp->xp_numfiles; | |
4198 else | |
4199 non_suf_match = 1; | |
4200 if ((xp->xp_context == EXPAND_FILES | |
4201 || xp->xp_context == EXPAND_DIRECTORIES) | |
4202 && xp->xp_numfiles > 1) | |
4203 { | |
4204 /* | |
4205 * More than one match; check suffix. | |
4206 * The files will have been sorted on matching suffix in | |
4207 * expand_wildcards, only need to check the first two. | |
4208 */ | |
4209 non_suf_match = 0; | |
4210 for (i = 0; i < 2; ++i) | |
4211 if (match_suffix(xp->xp_files[i])) | |
4212 ++non_suf_match; | |
4213 } | |
4214 if (non_suf_match != 1) | |
4215 { | |
4216 /* Can we ever get here unless it's while expanding | |
4217 * interactively? If not, we can get rid of this all | |
4218 * together. Don't really want to wait for this message | |
4219 * (and possibly have to hit return to continue!). | |
4220 */ | |
4221 if (!(options & WILD_SILENT)) | |
4222 EMSG(_(e_toomany)); | |
4223 else if (!(options & WILD_NO_BEEP)) | |
4224 beep_flush(); | |
4225 } | |
4226 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE)) | |
4227 ss = vim_strsave(xp->xp_files[0]); | |
4228 } | |
4229 } | |
4230 } | |
4231 | |
4232 /* Find longest common part */ | |
4233 if (mode == WILD_LONGEST && xp->xp_numfiles > 0) | |
4234 { | |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4235 int mb_len = 1; |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4236 int c0, ci; |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4237 |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4238 for (len = 0; xp->xp_files[0][len]; len += mb_len) |
7 | 4239 { |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4240 #ifdef FEAT_MBYTE |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4241 if (has_mbyte) |
7 | 4242 { |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4243 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
|
4244 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
|
4245 } |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4246 else |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4247 #endif |
7250
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
4248 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
|
4249 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
|
4250 { |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4251 #ifdef FEAT_MBYTE |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4252 if (has_mbyte) |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4253 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
|
4254 else |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4255 #endif |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4256 ci = xp->xp_files[i][len]; |
4242 | 4257 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES |
7 | 4258 || xp->xp_context == EXPAND_FILES |
714 | 4259 || xp->xp_context == EXPAND_SHELLCMD |
4242 | 4260 || xp->xp_context == EXPAND_BUFFERS)) |
7 | 4261 { |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4262 if (MB_TOLOWER(c0) != MB_TOLOWER(ci)) |
7 | 4263 break; |
4264 } | |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4265 else if (c0 != ci) |
7 | 4266 break; |
4267 } | |
4268 if (i < xp->xp_numfiles) | |
4269 { | |
4270 if (!(options & WILD_NO_BEEP)) | |
6949 | 4271 vim_beep(BO_WILD); |
7 | 4272 break; |
4273 } | |
4274 } | |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4275 |
7 | 4276 ss = alloc((unsigned)len + 1); |
4277 if (ss) | |
419 | 4278 vim_strncpy(ss, xp->xp_files[0], (size_t)len); |
7 | 4279 findex = -1; /* next p_wc gets first one */ |
4280 } | |
4281 | |
4282 /* Concatenate all matching names */ | |
4283 if (mode == WILD_ALL && xp->xp_numfiles > 0) | |
4284 { | |
4285 len = 0; | |
4286 for (i = 0; i < xp->xp_numfiles; ++i) | |
4287 len += (long_u)STRLEN(xp->xp_files[i]) + 1; | |
4288 ss = lalloc(len, TRUE); | |
4289 if (ss != NULL) | |
4290 { | |
4291 *ss = NUL; | |
4292 for (i = 0; i < xp->xp_numfiles; ++i) | |
4293 { | |
4294 STRCAT(ss, xp->xp_files[i]); | |
4295 if (i != xp->xp_numfiles - 1) | |
4296 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " "); | |
4297 } | |
4298 } | |
4299 } | |
4300 | |
4301 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL) | |
4302 ExpandCleanup(xp); | |
4303 | |
1412 | 4304 /* Free "orig" if it wasn't stored in "orig_save". */ |
1432 | 4305 if (!orig_saved) |
1412 | 4306 vim_free(orig); |
4307 | |
7 | 4308 return ss; |
4309 } | |
4310 | |
4311 /* | |
4312 * Prepare an expand structure for use. | |
4313 */ | |
4314 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4315 ExpandInit(expand_T *xp) |
7 | 4316 { |
1718 | 4317 xp->xp_pattern = NULL; |
1965 | 4318 xp->xp_pattern_len = 0; |
7 | 4319 xp->xp_backslash = XP_BS_NONE; |
632 | 4320 #ifndef BACKSLASH_IN_FILENAME |
4321 xp->xp_shell = FALSE; | |
4322 #endif | |
7 | 4323 xp->xp_numfiles = -1; |
4324 xp->xp_files = NULL; | |
632 | 4325 #if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL) |
4326 xp->xp_arg = NULL; | |
4327 #endif | |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
4328 xp->xp_line = NULL; |
7 | 4329 } |
4330 | |
4331 /* | |
4332 * Cleanup an expand structure after use. | |
4333 */ | |
4334 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4335 ExpandCleanup(expand_T *xp) |
7 | 4336 { |
4337 if (xp->xp_numfiles >= 0) | |
4338 { | |
4339 FreeWild(xp->xp_numfiles, xp->xp_files); | |
4340 xp->xp_numfiles = -1; | |
4341 } | |
4342 } | |
4343 | |
4344 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4345 ExpandEscape( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4346 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4347 char_u *str, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4348 int numfiles, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4349 char_u **files, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4350 int options) |
7 | 4351 { |
4352 int i; | |
4353 char_u *p; | |
4354 | |
4355 /* | |
4356 * May change home directory back to "~" | |
4357 */ | |
4358 if (options & WILD_HOME_REPLACE) | |
4359 tilde_replace(str, numfiles, files); | |
4360 | |
4361 if (options & WILD_ESCAPE) | |
4362 { | |
4363 if (xp->xp_context == EXPAND_FILES | |
2778 | 4364 || xp->xp_context == EXPAND_FILES_IN_PATH |
714 | 4365 || xp->xp_context == EXPAND_SHELLCMD |
7 | 4366 || xp->xp_context == EXPAND_BUFFERS |
4367 || xp->xp_context == EXPAND_DIRECTORIES) | |
4368 { | |
4369 /* | |
4370 * Insert a backslash into a file name before a space, \, %, # | |
4371 * and wildmatch characters, except '~'. | |
4372 */ | |
4373 for (i = 0; i < numfiles; ++i) | |
4374 { | |
4375 /* for ":set path=" we need to escape spaces twice */ | |
4376 if (xp->xp_backslash == XP_BS_THREE) | |
4377 { | |
4378 p = vim_strsave_escaped(files[i], (char_u *)" "); | |
4379 if (p != NULL) | |
4380 { | |
4381 vim_free(files[i]); | |
4382 files[i] = p; | |
719 | 4383 #if defined(BACKSLASH_IN_FILENAME) |
7 | 4384 p = vim_strsave_escaped(files[i], (char_u *)" "); |
4385 if (p != NULL) | |
4386 { | |
4387 vim_free(files[i]); | |
4388 files[i] = p; | |
4389 } | |
4390 #endif | |
4391 } | |
4392 } | |
1589 | 4393 #ifdef BACKSLASH_IN_FILENAME |
4394 p = vim_strsave_fnameescape(files[i], FALSE); | |
4395 #else | |
1586 | 4396 p = vim_strsave_fnameescape(files[i], xp->xp_shell); |
1589 | 4397 #endif |
7 | 4398 if (p != NULL) |
4399 { | |
4400 vim_free(files[i]); | |
4401 files[i] = p; | |
4402 } | |
4403 | |
4404 /* If 'str' starts with "\~", replace "~" at start of | |
4405 * files[i] with "\~". */ | |
4406 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~') | |
435 | 4407 escape_fname(&files[i]); |
7 | 4408 } |
4409 xp->xp_backslash = XP_BS_NONE; | |
435 | 4410 |
4411 /* If the first file starts with a '+' escape it. Otherwise it | |
4412 * could be seen as "+cmd". */ | |
4413 if (*files[0] == '+') | |
4414 escape_fname(&files[0]); | |
7 | 4415 } |
4416 else if (xp->xp_context == EXPAND_TAGS) | |
4417 { | |
4418 /* | |
4419 * Insert a backslash before characters in a tag name that | |
4420 * would terminate the ":tag" command. | |
4421 */ | |
4422 for (i = 0; i < numfiles; ++i) | |
4423 { | |
4424 p = vim_strsave_escaped(files[i], (char_u *)"\\|\""); | |
4425 if (p != NULL) | |
4426 { | |
4427 vim_free(files[i]); | |
4428 files[i] = p; | |
4429 } | |
4430 } | |
4431 } | |
4432 } | |
4433 } | |
4434 | |
4435 /* | |
1586 | 4436 * Escape special characters in "fname" for when used as a file name argument |
4437 * after a Vim command, or, when "shell" is non-zero, a shell command. | |
4438 * Returns the result in allocated memory. | |
4439 */ | |
4440 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4441 vim_strsave_fnameescape(char_u *fname, int shell) |
1586 | 4442 { |
1685 | 4443 char_u *p; |
1586 | 4444 #ifdef BACKSLASH_IN_FILENAME |
4445 char_u buf[20]; | |
4446 int j = 0; | |
4447 | |
5481 | 4448 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */ |
1586 | 4449 for (p = PATH_ESC_CHARS; *p != NUL; ++p) |
5481 | 4450 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p)) |
1586 | 4451 buf[j++] = *p; |
4452 buf[j] = NUL; | |
1700 | 4453 p = vim_strsave_escaped(fname, buf); |
1586 | 4454 #else |
1685 | 4455 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS); |
4456 if (shell && csh_like_shell() && p != NULL) | |
4457 { | |
4458 char_u *s; | |
4459 | |
4460 /* For csh and similar shells need to put two backslashes before '!'. | |
4461 * One is taken by Vim, one by the shell. */ | |
4462 s = vim_strsave_escaped(p, (char_u *)"!"); | |
4463 vim_free(p); | |
4464 p = s; | |
4465 } | |
1700 | 4466 #endif |
4467 | |
4468 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and | |
4469 * ":write". "cd -" has a special meaning. */ | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2433
diff
changeset
|
4470 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL))) |
1700 | 4471 escape_fname(&p); |
4472 | |
1685 | 4473 return p; |
1586 | 4474 } |
4475 | |
4476 /* | |
435 | 4477 * Put a backslash before the file name in "pp", which is in allocated memory. |
4478 */ | |
4479 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4480 escape_fname(char_u **pp) |
435 | 4481 { |
4482 char_u *p; | |
4483 | |
4484 p = alloc((unsigned)(STRLEN(*pp) + 2)); | |
4485 if (p != NULL) | |
4486 { | |
4487 p[0] = '\\'; | |
4488 STRCPY(p + 1, *pp); | |
4489 vim_free(*pp); | |
4490 *pp = p; | |
4491 } | |
4492 } | |
4493 | |
4494 /* | |
7 | 4495 * For each file name in files[num_files]: |
4496 * If 'orig_pat' starts with "~/", replace the home directory with "~". | |
4497 */ | |
4498 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4499 tilde_replace( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4500 char_u *orig_pat, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4501 int num_files, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4502 char_u **files) |
7 | 4503 { |
4504 int i; | |
4505 char_u *p; | |
4506 | |
4507 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1])) | |
4508 { | |
4509 for (i = 0; i < num_files; ++i) | |
4510 { | |
4511 p = home_replace_save(NULL, files[i]); | |
4512 if (p != NULL) | |
4513 { | |
4514 vim_free(files[i]); | |
4515 files[i] = p; | |
4516 } | |
4517 } | |
4518 } | |
4519 } | |
4520 | |
4521 /* | |
4522 * Show all matches for completion on the command line. | |
4523 * Returns EXPAND_NOTHING when the character that triggered expansion should | |
4524 * be inserted like a normal character. | |
4525 */ | |
4526 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4527 showmatches(expand_T *xp, int wildmenu UNUSED) |
7 | 4528 { |
4529 #define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m]) | |
4530 int num_files; | |
4531 char_u **files_found; | |
4532 int i, j, k; | |
4533 int maxlen; | |
4534 int lines; | |
4535 int columns; | |
4536 char_u *p; | |
4537 int lastlen; | |
4538 int attr; | |
4539 int showtail; | |
4540 | |
4541 if (xp->xp_numfiles == -1) | |
4542 { | |
4543 set_expand_context(xp); | |
4544 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos, | |
4545 &num_files, &files_found); | |
4546 showtail = expand_showtail(xp); | |
4547 if (i != EXPAND_OK) | |
4548 return i; | |
4549 | |
4550 } | |
4551 else | |
4552 { | |
4553 num_files = xp->xp_numfiles; | |
4554 files_found = xp->xp_files; | |
4555 showtail = cmd_showtail; | |
4556 } | |
4557 | |
4558 #ifdef FEAT_WILDMENU | |
4559 if (!wildmenu) | |
4560 { | |
4561 #endif | |
4562 msg_didany = FALSE; /* lines_left will be set */ | |
4563 msg_start(); /* prepare for paging */ | |
4564 msg_putchar('\n'); | |
4565 out_flush(); | |
4566 cmdline_row = msg_row; | |
4567 msg_didany = FALSE; /* lines_left will be set again */ | |
4568 msg_start(); /* prepare for paging */ | |
4569 #ifdef FEAT_WILDMENU | |
4570 } | |
4571 #endif | |
4572 | |
4573 if (got_int) | |
4574 got_int = FALSE; /* only int. the completion, not the cmd line */ | |
4575 #ifdef FEAT_WILDMENU | |
4576 else if (wildmenu) | |
11285
0b4adcfb7b25
patch 8.0.0528: highlight wrong text when 'wim' includes "longest"
Christian Brabandt <cb@256bit.org>
parents:
11163
diff
changeset
|
4577 win_redr_status_matches(xp, num_files, files_found, -1, showtail); |
7 | 4578 #endif |
4579 else | |
4580 { | |
4581 /* find the length of the longest file name */ | |
4582 maxlen = 0; | |
4583 for (i = 0; i < num_files; ++i) | |
4584 { | |
4585 if (!showtail && (xp->xp_context == EXPAND_FILES | |
714 | 4586 || xp->xp_context == EXPAND_SHELLCMD |
7 | 4587 || xp->xp_context == EXPAND_BUFFERS)) |
4588 { | |
4589 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE); | |
4590 j = vim_strsize(NameBuff); | |
4591 } | |
4592 else | |
4593 j = vim_strsize(L_SHOWFILE(i)); | |
4594 if (j > maxlen) | |
4595 maxlen = j; | |
4596 } | |
4597 | |
4598 if (xp->xp_context == EXPAND_TAGS_LISTFILES) | |
4599 lines = num_files; | |
4600 else | |
4601 { | |
4602 /* compute the number of columns and lines for the listing */ | |
4603 maxlen += 2; /* two spaces between file names */ | |
4604 columns = ((int)Columns + 2) / maxlen; | |
4605 if (columns < 1) | |
4606 columns = 1; | |
4607 lines = (num_files + columns - 1) / columns; | |
4608 } | |
4609 | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4610 attr = HL_ATTR(HLF_D); /* find out highlighting for directories */ |
7 | 4611 |
4612 if (xp->xp_context == EXPAND_TAGS_LISTFILES) | |
4613 { | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4614 MSG_PUTS_ATTR(_("tagname"), HL_ATTR(HLF_T)); |
7 | 4615 msg_clr_eos(); |
4616 msg_advance(maxlen - 3); | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4617 MSG_PUTS_ATTR(_(" kind file\n"), HL_ATTR(HLF_T)); |
7 | 4618 } |
4619 | |
4620 /* list the files line by line */ | |
4621 for (i = 0; i < lines; ++i) | |
4622 { | |
4623 lastlen = 999; | |
4624 for (k = i; k < num_files; k += lines) | |
4625 { | |
4626 if (xp->xp_context == EXPAND_TAGS_LISTFILES) | |
4627 { | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4628 msg_outtrans_attr(files_found[k], HL_ATTR(HLF_D)); |
7 | 4629 p = files_found[k] + STRLEN(files_found[k]) + 1; |
4630 msg_advance(maxlen + 1); | |
4631 msg_puts(p); | |
4632 msg_advance(maxlen + 3); | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4633 msg_puts_long_attr(p + 2, HL_ATTR(HLF_D)); |
7 | 4634 break; |
4635 } | |
4636 for (j = maxlen - lastlen; --j >= 0; ) | |
4637 msg_putchar(' '); | |
4638 if (xp->xp_context == EXPAND_FILES | |
714 | 4639 || xp->xp_context == EXPAND_SHELLCMD |
7 | 4640 || xp->xp_context == EXPAND_BUFFERS) |
4641 { | |
2118
63bf37c1e7a2
updated for version 7.2.401
Bram Moolenaar <bram@zimbu.org>
parents:
2099
diff
changeset
|
4642 /* highlight directories */ |
2128
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4643 if (xp->xp_numfiles != -1) |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4644 { |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4645 char_u *halved_slash; |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4646 char_u *exp_path; |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4647 |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4648 /* Expansion was done before and special characters |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4649 * were escaped, need to halve backslashes. Also |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4650 * $HOME has been replaced with ~/. */ |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4651 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
|
4652 halved_slash = backslash_halve_save( |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4653 exp_path != NULL ? exp_path : files_found[k]); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4654 j = mch_isdir(halved_slash != NULL ? halved_slash |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4655 : files_found[k]); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4656 vim_free(exp_path); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4657 vim_free(halved_slash); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4658 } |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4659 else |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4660 /* Expansion was done here, file names are literal. */ |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4661 j = mch_isdir(files_found[k]); |
7 | 4662 if (showtail) |
4663 p = L_SHOWFILE(k); | |
4664 else | |
4665 { | |
4666 home_replace(NULL, files_found[k], NameBuff, MAXPATHL, | |
4667 TRUE); | |
4668 p = NameBuff; | |
4669 } | |
4670 } | |
4671 else | |
4672 { | |
4673 j = FALSE; | |
4674 p = L_SHOWFILE(k); | |
4675 } | |
4676 lastlen = msg_outtrans_attr(p, j ? attr : 0); | |
4677 } | |
4678 if (msg_col > 0) /* when not wrapped around */ | |
4679 { | |
4680 msg_clr_eos(); | |
4681 msg_putchar('\n'); | |
4682 } | |
4683 out_flush(); /* show one line at a time */ | |
4684 if (got_int) | |
4685 { | |
4686 got_int = FALSE; | |
4687 break; | |
4688 } | |
4689 } | |
4690 | |
4691 /* | |
4692 * we redraw the command below the lines that we have just listed | |
4693 * This is a bit tricky, but it saves a lot of screen updating. | |
4694 */ | |
4695 cmdline_row = msg_row; /* will put it back later */ | |
4696 } | |
4697 | |
4698 if (xp->xp_numfiles == -1) | |
4699 FreeWild(num_files, files_found); | |
4700 | |
4701 return EXPAND_OK; | |
4702 } | |
4703 | |
4704 /* | |
4705 * Private gettail for showmatches() (and win_redr_status_matches()): | |
4706 * Find tail of file name path, but ignore trailing "/". | |
4707 */ | |
4708 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4709 sm_gettail(char_u *s) |
7 | 4710 { |
4711 char_u *p; | |
4712 char_u *t = s; | |
4713 int had_sep = FALSE; | |
4714 | |
4715 for (p = s; *p != NUL; ) | |
4716 { | |
4717 if (vim_ispathsep(*p) | |
4718 #ifdef BACKSLASH_IN_FILENAME | |
4719 && !rem_backslash(p) | |
4720 #endif | |
4721 ) | |
4722 had_sep = TRUE; | |
4723 else if (had_sep) | |
4724 { | |
4725 t = p; | |
4726 had_sep = FALSE; | |
4727 } | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
4728 MB_PTR_ADV(p); |
7 | 4729 } |
4730 return t; | |
4731 } | |
4732 | |
4733 /* | |
4734 * Return TRUE if we only need to show the tail of completion matches. | |
4735 * When not completing file names or there is a wildcard in the path FALSE is | |
4736 * returned. | |
4737 */ | |
4738 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4739 expand_showtail(expand_T *xp) |
7 | 4740 { |
4741 char_u *s; | |
4742 char_u *end; | |
4743 | |
4744 /* When not completing file names a "/" may mean something different. */ | |
714 | 4745 if (xp->xp_context != EXPAND_FILES |
4746 && xp->xp_context != EXPAND_SHELLCMD | |
4747 && xp->xp_context != EXPAND_DIRECTORIES) | |
7 | 4748 return FALSE; |
4749 | |
4750 end = gettail(xp->xp_pattern); | |
4751 if (end == xp->xp_pattern) /* there is no path separator */ | |
4752 return FALSE; | |
4753 | |
4754 for (s = xp->xp_pattern; s < end; s++) | |
4755 { | |
4756 /* Skip escaped wildcards. Only when the backslash is not a path | |
4757 * separator, on DOS the '*' "path\*\file" must not be skipped. */ | |
4758 if (rem_backslash(s)) | |
4759 ++s; | |
4760 else if (vim_strchr((char_u *)"*?[", *s) != NULL) | |
4761 return FALSE; | |
4762 } | |
4763 return TRUE; | |
4764 } | |
4765 | |
4766 /* | |
4767 * Prepare a string for expansion. | |
4768 * When expanding file names: The string will be used with expand_wildcards(). | |
5438 | 4769 * Copy "fname[len]" into allocated memory and add a '*' at the end. |
7 | 4770 * When expanding other names: The string will be used with regcomp(). Copy |
4771 * the name into allocated memory and prepend "^". | |
4772 */ | |
4773 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4774 addstar( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4775 char_u *fname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4776 int len, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4777 int context) /* EXPAND_FILES etc. */ |
7 | 4778 { |
4779 char_u *retval; | |
4780 int i, j; | |
4781 int new_len; | |
4782 char_u *tail; | |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4783 int ends_in_star; |
7 | 4784 |
714 | 4785 if (context != EXPAND_FILES |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
4786 && context != EXPAND_FILES_IN_PATH |
714 | 4787 && context != EXPAND_SHELLCMD |
4788 && context != EXPAND_DIRECTORIES) | |
7 | 4789 { |
4790 /* | |
4791 * Matching will be done internally (on something other than files). | |
4792 * So we convert the file-matching-type wildcards into our kind for | |
4793 * use with vim_regcomp(). First work out how long it will be: | |
4794 */ | |
4795 | |
4796 /* For help tags the translation is done in find_help_tags(). | |
4797 * For a tag pattern starting with "/" no translation is needed. */ | |
4798 if (context == EXPAND_HELP | |
4799 || context == EXPAND_COLORS | |
4800 || context == EXPAND_COMPILER | |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
4801 || context == EXPAND_OWNSYNTAX |
2268
aafed4a4866f
Command line completion for :ownsyntax. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
4802 || context == EXPAND_FILETYPE |
8402
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
4803 || context == EXPAND_PACKADD |
10694
fa6c4825a1c4
patch 8.0.0237: when 'wildoptions' is "tagfile" completion may not work
Christian Brabandt <cb@256bit.org>
parents:
10676
diff
changeset
|
4804 || ((context == EXPAND_TAGS_LISTFILES |
fa6c4825a1c4
patch 8.0.0237: when 'wildoptions' is "tagfile" completion may not work
Christian Brabandt <cb@256bit.org>
parents:
10676
diff
changeset
|
4805 || context == EXPAND_TAGS) |
fa6c4825a1c4
patch 8.0.0237: when 'wildoptions' is "tagfile" completion may not work
Christian Brabandt <cb@256bit.org>
parents:
10676
diff
changeset
|
4806 && fname[0] == '/')) |
7 | 4807 retval = vim_strnsave(fname, len); |
4808 else | |
4809 { | |
4810 new_len = len + 2; /* +2 for '^' at start, NUL at end */ | |
4811 for (i = 0; i < len; i++) | |
4812 { | |
4813 if (fname[i] == '*' || fname[i] == '~') | |
4814 new_len++; /* '*' needs to be replaced by ".*" | |
4815 '~' needs to be replaced by "\~" */ | |
4816 | |
4817 /* Buffer names are like file names. "." should be literal */ | |
4818 if (context == EXPAND_BUFFERS && fname[i] == '.') | |
4819 new_len++; /* "." becomes "\." */ | |
4820 | |
4821 /* Custom expansion takes care of special things, match | |
4822 * backslashes literally (perhaps also for other types?) */ | |
634 | 4823 if ((context == EXPAND_USER_DEFINED |
4824 || context == EXPAND_USER_LIST) && fname[i] == '\\') | |
7 | 4825 new_len++; /* '\' becomes "\\" */ |
4826 } | |
4827 retval = alloc(new_len); | |
4828 if (retval != NULL) | |
4829 { | |
4830 retval[0] = '^'; | |
4831 j = 1; | |
4832 for (i = 0; i < len; i++, j++) | |
4833 { | |
4834 /* Skip backslash. But why? At least keep it for custom | |
4835 * expansion. */ | |
4836 if (context != EXPAND_USER_DEFINED | |
407 | 4837 && context != EXPAND_USER_LIST |
4838 && fname[i] == '\\' | |
4839 && ++i == len) | |
7 | 4840 break; |
4841 | |
4842 switch (fname[i]) | |
4843 { | |
4844 case '*': retval[j++] = '.'; | |
4845 break; | |
4846 case '~': retval[j++] = '\\'; | |
4847 break; | |
4848 case '?': retval[j] = '.'; | |
4849 continue; | |
4850 case '.': if (context == EXPAND_BUFFERS) | |
4851 retval[j++] = '\\'; | |
4852 break; | |
407 | 4853 case '\\': if (context == EXPAND_USER_DEFINED |
4854 || context == EXPAND_USER_LIST) | |
7 | 4855 retval[j++] = '\\'; |
4856 break; | |
4857 } | |
4858 retval[j] = fname[i]; | |
4859 } | |
4860 retval[j] = NUL; | |
4861 } | |
4862 } | |
4863 } | |
4864 else | |
4865 { | |
4866 retval = alloc(len + 4); | |
4867 if (retval != NULL) | |
4868 { | |
419 | 4869 vim_strncpy(retval, fname, len); |
7 | 4870 |
4871 /* | |
831 | 4872 * Don't add a star to *, ~, ~user, $var or `cmd`. |
4873 * * would become **, which walks the whole tree. | |
7 | 4874 * ~ would be at the start of the file name, but not the tail. |
4875 * $ could be anywhere in the tail. | |
4876 * ` could be anywhere in the file name. | |
1484 | 4877 * When the name ends in '$' don't add a star, remove the '$'. |
7 | 4878 */ |
4879 tail = gettail(retval); | |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4880 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
|
4881 #ifndef BACKSLASH_IN_FILENAME |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4882 for (i = len - 2; i >= 0; --i) |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4883 { |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4884 if (retval[i] != '\\') |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4885 break; |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4886 ends_in_star = !ends_in_star; |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4887 } |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4888 #endif |
7 | 4889 if ((*retval != '~' || tail != retval) |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4890 && !ends_in_star |
7 | 4891 && vim_strchr(tail, '$') == NULL |
4892 && vim_strchr(retval, '`') == NULL) | |
4893 retval[len++] = '*'; | |
1484 | 4894 else if (len > 0 && retval[len - 1] == '$') |
4895 --len; | |
7 | 4896 retval[len] = NUL; |
4897 } | |
4898 } | |
4899 return retval; | |
4900 } | |
4901 | |
4902 /* | |
4903 * Must parse the command line so far to work out what context we are in. | |
4904 * Completion can then be done based on that context. | |
4905 * This routine sets the variables: | |
4906 * xp->xp_pattern The start of the pattern to be expanded within | |
4907 * the command line (ends at the cursor). | |
4908 * xp->xp_context The type of thing to expand. Will be one of: | |
4909 * | |
4910 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on | |
4911 * the command line, like an unknown command. Caller | |
4912 * should beep. | |
4913 * EXPAND_NOTHING Unrecognised context for completion, use char like | |
4914 * a normal char, rather than for completion. eg | |
4915 * :s/^I/ | |
4916 * EXPAND_COMMANDS Cursor is still touching the command, so complete | |
4917 * it. | |
4918 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands. | |
4919 * EXPAND_FILES After command with XFILE set, or after setting | |
4920 * with P_EXPAND set. eg :e ^I, :w>>^I | |
4921 * EXPAND_DIRECTORIES In some cases this is used instead of the latter | |
4922 * when we know only directories are of interest. eg | |
4923 * :set dir=^I | |
714 | 4924 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd". |
7 | 4925 * EXPAND_SETTINGS Complete variable names. eg :set d^I |
4926 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I | |
4927 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I | |
4928 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect | |
4929 * EXPAND_HELP Complete tags from the file 'helpfile'/tags | |
4930 * EXPAND_EVENTS Complete event names | |
4931 * EXPAND_SYNTAX Complete :syntax command arguments | |
4932 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names | |
4933 * EXPAND_AUGROUP Complete autocommand group names | |
4934 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I | |
4935 * EXPAND_MAPPINGS Complete mapping and abbreviation names, | |
4936 * eg :unmap a^I , :cunab x^I | |
4937 * EXPAND_FUNCTIONS Complete internal or user defined function names, | |
4938 * eg :call sub^I | |
4939 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I | |
4940 * EXPAND_EXPRESSION Complete internal or user defined function/variable | |
4941 * names in expressions, eg :while s^I | |
4942 * EXPAND_ENV_VARS Complete environment variable names | |
3744 | 4943 * EXPAND_USER Complete user names |
7 | 4944 */ |
4945 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4946 set_expand_context(expand_T *xp) |
7 | 4947 { |
168 | 4948 /* only expansion for ':', '>' and '=' command-lines */ |
7 | 4949 if (ccline.cmdfirstc != ':' |
4950 #ifdef FEAT_EVAL | |
168 | 4951 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '=' |
531 | 4952 && !ccline.input_fn |
7 | 4953 #endif |
4954 ) | |
4955 { | |
4956 xp->xp_context = EXPAND_NOTHING; | |
4957 return; | |
4958 } | |
10120
fb040c9d8ce9
commit https://github.com/vim/vim/commit/33a80eeb859a78ba93432da6fa585786cfd77249
Christian Brabandt <cb@256bit.org>
parents:
10098
diff
changeset
|
4959 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE); |
7 | 4960 } |
4961 | |
4962 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4963 set_cmd_context( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4964 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4965 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
|
4966 int len, /* length of command line (excl. NUL) */ |
10120
fb040c9d8ce9
commit https://github.com/vim/vim/commit/33a80eeb859a78ba93432da6fa585786cfd77249
Christian Brabandt <cb@256bit.org>
parents:
10098
diff
changeset
|
4967 int col, /* position of cursor */ |
fb040c9d8ce9
commit https://github.com/vim/vim/commit/33a80eeb859a78ba93432da6fa585786cfd77249
Christian Brabandt <cb@256bit.org>
parents:
10098
diff
changeset
|
4968 int use_ccline UNUSED) /* use ccline for info */ |
7 | 4969 { |
4970 int old_char = NUL; | |
4971 char_u *nextcomm; | |
4972 | |
4973 /* | |
4974 * Avoid a UMR warning from Purify, only save the character if it has been | |
4975 * written before. | |
4976 */ | |
4977 if (col < len) | |
4978 old_char = str[col]; | |
4979 str[col] = NUL; | |
4980 nextcomm = str; | |
168 | 4981 |
4982 #ifdef FEAT_EVAL | |
10120
fb040c9d8ce9
commit https://github.com/vim/vim/commit/33a80eeb859a78ba93432da6fa585786cfd77249
Christian Brabandt <cb@256bit.org>
parents:
10098
diff
changeset
|
4983 if (use_ccline && ccline.cmdfirstc == '=') |
1322 | 4984 { |
4985 # ifdef FEAT_CMDL_COMPL | |
168 | 4986 /* pass CMD_SIZE because there is no real command */ |
4987 set_context_for_expression(xp, str, CMD_SIZE); | |
1322 | 4988 # endif |
4989 } | |
10120
fb040c9d8ce9
commit https://github.com/vim/vim/commit/33a80eeb859a78ba93432da6fa585786cfd77249
Christian Brabandt <cb@256bit.org>
parents:
10098
diff
changeset
|
4990 else if (use_ccline && ccline.input_fn) |
531 | 4991 { |
4992 xp->xp_context = ccline.xp_context; | |
4993 xp->xp_pattern = ccline.cmdbuff; | |
1322 | 4994 # if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL) |
531 | 4995 xp->xp_arg = ccline.xp_arg; |
1322 | 4996 # endif |
531 | 4997 } |
168 | 4998 else |
4999 #endif | |
5000 while (nextcomm != NULL) | |
5001 nextcomm = set_one_cmd_context(xp, nextcomm); | |
5002 | |
5056
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
5003 /* 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
|
5004 * easily. */ |
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
5005 xp->xp_line = str; |
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
5006 xp->xp_col = col; |
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
5007 |
7 | 5008 str[col] = old_char; |
5009 } | |
5010 | |
5011 /* | |
5012 * Expand the command line "str" from context "xp". | |
5013 * "xp" must have been set by set_cmd_context(). | |
5014 * xp->xp_pattern points into "str", to where the text that is to be expanded | |
5015 * starts. | |
5016 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the | |
5017 * cursor. | |
5018 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the | |
5019 * key that triggered expansion literally. | |
5020 * Returns EXPAND_OK otherwise. | |
5021 */ | |
5022 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5023 expand_cmdline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5024 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5025 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
|
5026 int col, /* position of cursor */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5027 int *matchcount, /* return: nr of matches */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5028 char_u ***matches) /* return: array of pointers to matches */ |
7 | 5029 { |
5030 char_u *file_str = NULL; | |
2652 | 5031 int options = WILD_ADD_SLASH|WILD_SILENT; |
7 | 5032 |
5033 if (xp->xp_context == EXPAND_UNSUCCESSFUL) | |
5034 { | |
5035 beep_flush(); | |
5036 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */ | |
5037 } | |
5038 if (xp->xp_context == EXPAND_NOTHING) | |
5039 { | |
5040 /* Caller can use the character as a normal char instead */ | |
5041 return EXPAND_NOTHING; | |
5042 } | |
5043 | |
5044 /* add star to file name, or convert to regexp if not exp. files. */ | |
1965 | 5045 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern); |
5046 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context); | |
7 | 5047 if (file_str == NULL) |
5048 return EXPAND_UNSUCCESSFUL; | |
5049 | |
2652 | 5050 if (p_wic) |
5051 options += WILD_ICASE; | |
5052 | |
7 | 5053 /* find all files that match the description */ |
2652 | 5054 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL) |
7 | 5055 { |
5056 *matchcount = 0; | |
5057 *matches = NULL; | |
5058 } | |
5059 vim_free(file_str); | |
5060 | |
5061 return EXPAND_OK; | |
5062 } | |
5063 | |
5064 #ifdef FEAT_MULTI_LANG | |
5065 /* | |
8765
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5066 * Cleanup matches for help tags: |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5067 * Remove "@ab" if the top of 'helplang' is "ab" and the language of the first |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5068 * tag matches it. Otherwise remove "@en" if "en" is the only language. |
7 | 5069 */ |
5070 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5071 cleanup_help_tags(int num_file, char_u **file) |
7 | 5072 { |
5073 int i, j; | |
5074 int len; | |
8765
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5075 char_u buf[4]; |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5076 char_u *p = buf; |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5077 |
9066
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
5078 if (p_hlg[0] != NUL && (p_hlg[0] != 'e' || p_hlg[1] != 'n')) |
8765
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5079 { |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5080 *p++ = '@'; |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5081 *p++ = p_hlg[0]; |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5082 *p++ = p_hlg[1]; |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5083 } |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5084 *p = NUL; |
7 | 5085 |
5086 for (i = 0; i < num_file; ++i) | |
5087 { | |
5088 len = (int)STRLEN(file[i]) - 3; | |
8765
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5089 if (len <= 0) |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
5090 continue; |
9070
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5091 if (STRCMP(file[i] + len, "@en") == 0) |
7 | 5092 { |
5093 /* Sorting on priority means the same item in another language may | |
5094 * be anywhere. Search all items for a match up to the "@en". */ | |
5095 for (j = 0; j < num_file; ++j) | |
9070
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5096 if (j != i && (int)STRLEN(file[j]) == len + 3 |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5097 && STRNCMP(file[i], file[j], len + 1) == 0) |
7 | 5098 break; |
5099 if (j == num_file) | |
9066
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
5100 /* item only exists with @en, remove it */ |
7 | 5101 file[i][len] = NUL; |
5102 } | |
5103 } | |
9070
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5104 |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5105 if (*buf != NUL) |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5106 for (i = 0; i < num_file; ++i) |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5107 { |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5108 len = (int)STRLEN(file[i]) - 3; |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5109 if (len <= 0) |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5110 continue; |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5111 if (STRCMP(file[i] + len, buf) == 0) |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5112 { |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5113 /* remove the default language */ |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5114 file[i][len] = NUL; |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5115 } |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
5116 } |
7 | 5117 } |
5118 #endif | |
5119 | |
5120 /* | |
5121 * Do the expansion based on xp->xp_context and "pat". | |
5122 */ | |
5123 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5124 ExpandFromContext( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5125 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5126 char_u *pat, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5127 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5128 char_u ***file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5129 int options) /* EW_ flags */ |
7 | 5130 { |
5131 #ifdef FEAT_CMDL_COMPL | |
5132 regmatch_T regmatch; | |
5133 #endif | |
5134 int ret; | |
5135 int flags; | |
5136 | |
5137 flags = EW_DIR; /* include directories */ | |
5138 if (options & WILD_LIST_NOTFOUND) | |
5139 flags |= EW_NOTFOUND; | |
5140 if (options & WILD_ADD_SLASH) | |
5141 flags |= EW_ADDSLASH; | |
5142 if (options & WILD_KEEP_ALL) | |
5143 flags |= EW_KEEPALL; | |
5144 if (options & WILD_SILENT) | |
5145 flags |= EW_SILENT; | |
6659 | 5146 if (options & WILD_ALLLINKS) |
5147 flags |= EW_ALLLINKS; | |
7 | 5148 |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
5149 if (xp->xp_context == EXPAND_FILES |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
5150 || xp->xp_context == EXPAND_DIRECTORIES |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
5151 || xp->xp_context == EXPAND_FILES_IN_PATH) |
7 | 5152 { |
5153 /* | |
5154 * Expand file or directory names. | |
5155 */ | |
5156 int free_pat = FALSE; | |
5157 int i; | |
5158 | |
5159 /* for ":set path=" and ":set tags=" halve backslashes for escaped | |
5160 * space */ | |
5161 if (xp->xp_backslash != XP_BS_NONE) | |
5162 { | |
5163 free_pat = TRUE; | |
5164 pat = vim_strsave(pat); | |
5165 for (i = 0; pat[i]; ++i) | |
5166 if (pat[i] == '\\') | |
5167 { | |
5168 if (xp->xp_backslash == XP_BS_THREE | |
5169 && pat[i + 1] == '\\' | |
5170 && pat[i + 2] == '\\' | |
5171 && pat[i + 3] == ' ') | |
1621 | 5172 STRMOVE(pat + i, pat + i + 3); |
7 | 5173 if (xp->xp_backslash == XP_BS_ONE |
5174 && pat[i + 1] == ' ') | |
1621 | 5175 STRMOVE(pat + i, pat + i + 1); |
7 | 5176 } |
5177 } | |
5178 | |
5179 if (xp->xp_context == EXPAND_FILES) | |
5180 flags |= EW_FILE; | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
5181 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
|
5182 flags |= (EW_FILE | EW_PATH); |
7 | 5183 else |
5184 flags = (flags | EW_DIR) & ~EW_FILE; | |
2652 | 5185 if (options & WILD_ICASE) |
5186 flags |= EW_ICASE; | |
5187 | |
2016 | 5188 /* Expand wildcards, supporting %:h and the like. */ |
5189 ret = expand_wildcards_eval(&pat, num_file, file, flags); | |
7 | 5190 if (free_pat) |
5191 vim_free(pat); | |
5192 return ret; | |
5193 } | |
5194 | |
5195 *file = (char_u **)""; | |
5196 *num_file = 0; | |
5197 if (xp->xp_context == EXPAND_HELP) | |
5198 { | |
1696 | 5199 /* With an empty argument we would get all the help tags, which is |
5200 * very slow. Get matches for "help" instead. */ | |
5201 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat, | |
5202 num_file, file, FALSE) == OK) | |
7 | 5203 { |
5204 #ifdef FEAT_MULTI_LANG | |
5205 cleanup_help_tags(*num_file, *file); | |
5206 #endif | |
5207 return OK; | |
5208 } | |
5209 return FAIL; | |
5210 } | |
5211 | |
5212 #ifndef FEAT_CMDL_COMPL | |
5213 return FAIL; | |
5214 #else | |
716 | 5215 if (xp->xp_context == EXPAND_SHELLCMD) |
5216 return expand_shellcmd(pat, num_file, file, flags); | |
7 | 5217 if (xp->xp_context == EXPAND_OLD_SETTING) |
5218 return ExpandOldSetting(num_file, file); | |
5219 if (xp->xp_context == EXPAND_BUFFERS) | |
5220 return ExpandBufnames(pat, num_file, file, options); | |
5221 if (xp->xp_context == EXPAND_TAGS | |
5222 || xp->xp_context == EXPAND_TAGS_LISTFILES) | |
5223 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file); | |
5224 if (xp->xp_context == EXPAND_COLORS) | |
2929 | 5225 { |
5226 char *directories[] = {"colors", NULL}; | |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5227 return ExpandRTDir(pat, DIP_START + DIP_OPT, num_file, file, |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5228 directories); |
2929 | 5229 } |
7 | 5230 if (xp->xp_context == EXPAND_COMPILER) |
2929 | 5231 { |
3106 | 5232 char *directories[] = {"compiler", NULL}; |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5233 return ExpandRTDir(pat, 0, num_file, file, directories); |
2929 | 5234 } |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5235 if (xp->xp_context == EXPAND_OWNSYNTAX) |
2929 | 5236 { |
5237 char *directories[] = {"syntax", NULL}; | |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5238 return ExpandRTDir(pat, 0, num_file, file, directories); |
2929 | 5239 } |
2268
aafed4a4866f
Command line completion for :ownsyntax. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
5240 if (xp->xp_context == EXPAND_FILETYPE) |
2929 | 5241 { |
5242 char *directories[] = {"syntax", "indent", "ftplugin", NULL}; | |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5243 return ExpandRTDir(pat, 0, num_file, file, directories); |
2929 | 5244 } |
407 | 5245 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
5246 if (xp->xp_context == EXPAND_USER_LIST) | |
856 | 5247 return ExpandUserList(xp, num_file, file); |
407 | 5248 # endif |
8402
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5249 if (xp->xp_context == EXPAND_PACKADD) |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5250 return ExpandPackAddDir(pat, num_file, file); |
7 | 5251 |
5252 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0); | |
5253 if (regmatch.regprog == NULL) | |
5254 return FAIL; | |
5255 | |
5256 /* set ignore-case according to p_ic, p_scs and pat */ | |
5257 regmatch.rm_ic = ignorecase(pat); | |
5258 | |
5259 if (xp->xp_context == EXPAND_SETTINGS | |
5260 || xp->xp_context == EXPAND_BOOL_SETTINGS) | |
5261 ret = ExpandSettings(xp, ®match, num_file, file); | |
5262 else if (xp->xp_context == EXPAND_MAPPINGS) | |
5263 ret = ExpandMappings(®match, num_file, file); | |
5264 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) | |
5265 else if (xp->xp_context == EXPAND_USER_DEFINED) | |
5266 ret = ExpandUserDefined(xp, ®match, num_file, file); | |
5267 # endif | |
5268 else | |
5269 { | |
5270 static struct expgen | |
5271 { | |
5272 int context; | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5273 char_u *((*func)(expand_T *, int)); |
7 | 5274 int ic; |
2849 | 5275 int escaped; |
7 | 5276 } tab[] = |
5277 { | |
2849 | 5278 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE}, |
5279 {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE}, | |
11995
7df3dd3c0ac1
patch 8.0.0878: no completion for :mapclear
Christian Brabandt <cb@256bit.org>
parents:
11674
diff
changeset
|
5280 {EXPAND_MAPCLEAR, get_mapclear_arg, TRUE, TRUE}, |
10275
6d8b2da002e9
commit https://github.com/vim/vim/commit/9e507ca8a3e1535e62de4bd86374b0fcd18ef5b8
Christian Brabandt <cb@256bit.org>
parents:
10174
diff
changeset
|
5281 {EXPAND_MESSAGES, get_messages_arg, TRUE, TRUE}, |
3503 | 5282 #ifdef FEAT_CMDHIST |
5283 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE}, | |
5284 #endif | |
7 | 5285 #ifdef FEAT_USR_CMDS |
2849 | 5286 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE}, |
6424 | 5287 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE}, |
2849 | 5288 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE}, |
5289 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE}, | |
5290 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE}, | |
7 | 5291 #endif |
5292 #ifdef FEAT_EVAL | |
2849 | 5293 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE}, |
5294 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE}, | |
5295 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE}, | |
5296 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE}, | |
7 | 5297 #endif |
5298 #ifdef FEAT_MENU | |
2849 | 5299 {EXPAND_MENUS, get_menu_name, FALSE, TRUE}, |
5300 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE}, | |
7 | 5301 #endif |
5302 #ifdef FEAT_SYN_HL | |
2849 | 5303 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE}, |
5304 #endif | |
4803
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4327
diff
changeset
|
5305 #ifdef FEAT_PROFILE |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4327
diff
changeset
|
5306 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE}, |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4327
diff
changeset
|
5307 #endif |
2849 | 5308 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE}, |
5309 {EXPAND_EVENTS, get_event_name, TRUE, TRUE}, | |
5310 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE}, | |
1845 | 5311 #ifdef FEAT_CSCOPE |
2849 | 5312 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE}, |
1845 | 5313 #endif |
1868 | 5314 #ifdef FEAT_SIGNS |
2849 | 5315 {EXPAND_SIGN, get_sign_name, TRUE, TRUE}, |
1868 | 5316 #endif |
2068
98a2a6e6b966
updated for version 7.2.353
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
5317 #ifdef FEAT_PROFILE |
2849 | 5318 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE}, |
2068
98a2a6e6b966
updated for version 7.2.353
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
5319 #endif |
7 | 5320 #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \ |
5321 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)) | |
2849 | 5322 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE}, |
5323 {EXPAND_LOCALES, get_locales, TRUE, FALSE}, | |
5324 #endif | |
5325 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE}, | |
3744 | 5326 {EXPAND_USER, get_users, TRUE, FALSE}, |
13551
1fd0f8392946
patch 8.0.1649: no completion for argument list commands
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
5327 {EXPAND_ARGLIST, get_arglist_name, TRUE, FALSE}, |
7 | 5328 }; |
5329 int i; | |
5330 | |
5331 /* | |
5332 * Find a context in the table and call the ExpandGeneric() with the | |
5333 * right function to do the expansion. | |
5334 */ | |
5335 ret = FAIL; | |
1880 | 5336 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i) |
7 | 5337 if (xp->xp_context == tab[i].context) |
5338 { | |
5339 if (tab[i].ic) | |
5340 regmatch.rm_ic = TRUE; | |
2849 | 5341 ret = ExpandGeneric(xp, ®match, num_file, file, |
3628 | 5342 tab[i].func, tab[i].escaped); |
7 | 5343 break; |
5344 } | |
5345 } | |
5346 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
5347 vim_regfree(regmatch.regprog); |
7 | 5348 |
5349 return ret; | |
5350 #endif /* FEAT_CMDL_COMPL */ | |
5351 } | |
5352 | |
5353 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) | |
5354 /* | |
5355 * Expand a list of names. | |
5356 * | |
5357 * Generic function for command line completion. It calls a function to | |
5358 * obtain strings, one by one. The strings are matched against a regexp | |
5359 * program. Matching strings are copied into an array, which is returned. | |
5360 * | |
5361 * Returns OK when no problems encountered, FAIL for error (out of memory). | |
5362 */ | |
5363 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5364 ExpandGeneric( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5365 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5366 regmatch_T *regmatch, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5367 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5368 char_u ***file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5369 char_u *((*func)(expand_T *, int)), |
7 | 5370 /* 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
|
5371 int escaped) |
7 | 5372 { |
5373 int i; | |
5374 int count = 0; | |
480 | 5375 int round; |
7 | 5376 char_u *str; |
5377 | |
5378 /* do this loop twice: | |
480 | 5379 * round == 0: count the number of matching names |
5380 * round == 1: copy the matching names into allocated memory | |
7 | 5381 */ |
480 | 5382 for (round = 0; round <= 1; ++round) |
7 | 5383 { |
5384 for (i = 0; ; ++i) | |
5385 { | |
5386 str = (*func)(xp, i); | |
5387 if (str == NULL) /* end of list */ | |
5388 break; | |
5389 if (*str == NUL) /* skip empty strings */ | |
5390 continue; | |
5391 | |
5392 if (vim_regexec(regmatch, str, (colnr_T)0)) | |
5393 { | |
480 | 5394 if (round) |
7 | 5395 { |
2849 | 5396 if (escaped) |
5397 str = vim_strsave_escaped(str, (char_u *)" \t\\."); | |
5398 else | |
5399 str = vim_strsave(str); | |
7 | 5400 (*file)[count] = str; |
5401 #ifdef FEAT_MENU | |
5402 if (func == get_menu_names && str != NULL) | |
5403 { | |
5404 /* test for separator added by get_menu_names() */ | |
5405 str += STRLEN(str) - 1; | |
5406 if (*str == '\001') | |
5407 *str = '.'; | |
5408 } | |
5409 #endif | |
5410 } | |
5411 ++count; | |
5412 } | |
5413 } | |
480 | 5414 if (round == 0) |
7 | 5415 { |
5416 if (count == 0) | |
5417 return OK; | |
5418 *num_file = count; | |
5419 *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *))); | |
5420 if (*file == NULL) | |
5421 { | |
5422 *file = (char_u **)""; | |
5423 return FAIL; | |
5424 } | |
5425 count = 0; | |
5426 } | |
5427 } | |
480 | 5428 |
828 | 5429 /* Sort the results. Keep menu's in the specified order. */ |
5430 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS) | |
3164 | 5431 { |
5432 if (xp->xp_context == EXPAND_EXPRESSION | |
5433 || xp->xp_context == EXPAND_FUNCTIONS | |
5434 || xp->xp_context == EXPAND_USER_FUNC) | |
5435 /* <SNR> functions should be sorted to the end. */ | |
5436 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *), | |
5437 sort_func_compare); | |
5438 else | |
5439 sort_strings(*file, *num_file); | |
5440 } | |
480 | 5441 |
1322 | 5442 #ifdef FEAT_CMDL_COMPL |
5443 /* Reset the variables used for special highlight names expansion, so that | |
5444 * they don't show up when getting normal highlight names by ID. */ | |
5445 reset_expand_highlight(); | |
5446 #endif | |
5447 | |
7 | 5448 return OK; |
5449 } | |
5450 | |
716 | 5451 /* |
5452 * Complete a shell command. | |
5453 * Returns FAIL or OK; | |
5454 */ | |
5455 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5456 expand_shellcmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5457 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
|
5458 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
|
5459 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
|
5460 int flagsarg) /* EW_ flags */ |
716 | 5461 { |
5462 char_u *pat; | |
5463 int i; | |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5464 char_u *path = NULL; |
716 | 5465 int mustfree = FALSE; |
5466 garray_T ga; | |
5467 char_u *buf = alloc(MAXPATHL); | |
5468 size_t l; | |
5469 char_u *s, *e; | |
5470 int flags = flagsarg; | |
5471 int ret; | |
6695 | 5472 int did_curdir = FALSE; |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5473 hashtab_T found_ht; |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5474 hashitem_T *hi; |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5475 hash_T hash; |
716 | 5476 |
5477 if (buf == NULL) | |
5478 return FAIL; | |
5479 | |
5480 /* for ":set path=" and ":set tags=" halve backslashes for escaped | |
5481 * space */ | |
5482 pat = vim_strsave(filepat); | |
5483 for (i = 0; pat[i]; ++i) | |
5484 if (pat[i] == '\\' && pat[i + 1] == ' ') | |
1621 | 5485 STRMOVE(pat + i, pat + i + 1); |
716 | 5486 |
6695 | 5487 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD; |
716 | 5488 |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5489 if (pat[0] == '.' && (vim_ispathsep(pat[1]) |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5490 || (pat[1] == '.' && vim_ispathsep(pat[2])))) |
716 | 5491 path = (char_u *)"."; |
5492 else | |
2630 | 5493 { |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5494 /* For an absolute name we don't use $PATH. */ |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5495 if (!mch_isFullName(pat)) |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5496 path = vim_getenv((char_u *)"PATH", &mustfree); |
2630 | 5497 if (path == NULL) |
5498 path = (char_u *)""; | |
5499 } | |
716 | 5500 |
5501 /* | |
5502 * Go over all directories in $PATH. Expand matches in that directory and | |
6695 | 5503 * collect them in "ga". When "." is not in $PATH also expand for the |
5504 * current directory, to find "subdir/cmd". | |
716 | 5505 */ |
5506 ga_init2(&ga, (int)sizeof(char *), 10); | |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5507 hash_init(&found_ht); |
6695 | 5508 for (s = path; ; s = e) |
716 | 5509 { |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
5510 #if defined(MSWIN) |
716 | 5511 e = vim_strchr(s, ';'); |
5512 #else | |
5513 e = vim_strchr(s, ':'); | |
5514 #endif | |
5515 if (e == NULL) | |
5516 e = s + STRLEN(s); | |
5517 | |
14417
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5518 if (*s == NUL) |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5519 { |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5520 if (did_curdir) |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5521 break; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5522 // Find directories in the current directory, path is empty. |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5523 did_curdir = TRUE; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5524 flags |= EW_DIR; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5525 } |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5526 else if (STRNCMP(s, ".", (int)(e - s)) == 0) |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5527 { |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5528 did_curdir = TRUE; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5529 flags |= EW_DIR; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5530 } |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5531 else |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5532 // Do not match directories inside a $PATH item. |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5533 flags &= ~EW_DIR; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5534 |
716 | 5535 l = e - s; |
5536 if (l > MAXPATHL - 5) | |
5537 break; | |
5538 vim_strncpy(buf, s, l); | |
5539 add_pathsep(buf); | |
5540 l = STRLEN(buf); | |
5541 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l); | |
5542 | |
5543 /* Expand matches in one directory of $PATH. */ | |
5544 ret = expand_wildcards(1, &buf, num_file, file, flags); | |
5545 if (ret == OK) | |
5546 { | |
5547 if (ga_grow(&ga, *num_file) == FAIL) | |
5548 FreeWild(*num_file, *file); | |
5549 else | |
5550 { | |
5551 for (i = 0; i < *num_file; ++i) | |
5552 { | |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5553 char_u *name = (*file)[i]; |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5554 |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5555 if (STRLEN(name) > l) |
716 | 5556 { |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5557 // Check if this name was already found. |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5558 hash = hash_hash(name + l); |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5559 hi = hash_lookup(&found_ht, name + l, hash); |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5560 if (HASHITEM_EMPTY(hi)) |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5561 { |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5562 // Remove the path that was prepended. |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5563 STRMOVE(name, name + l); |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5564 ((char_u **)ga.ga_data)[ga.ga_len++] = name; |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5565 hash_add_item(&found_ht, hi, name, hash); |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5566 name = NULL; |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5567 } |
716 | 5568 } |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5569 vim_free(name); |
716 | 5570 } |
5571 vim_free(*file); | |
5572 } | |
5573 } | |
5574 if (*e != NUL) | |
5575 ++e; | |
5576 } | |
5577 *file = ga.ga_data; | |
5578 *num_file = ga.ga_len; | |
5579 | |
5580 vim_free(buf); | |
5581 vim_free(pat); | |
5582 if (mustfree) | |
5583 vim_free(path); | |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5584 hash_clear(&found_ht); |
716 | 5585 return OK; |
5586 } | |
5587 | |
5588 | |
7 | 5589 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
5590 /* | |
10942
e05695e59f6d
patch 8.0.0360: sometimes VimL is used instead of "Vim script"
Christian Brabandt <cb@256bit.org>
parents:
10861
diff
changeset
|
5591 * Call "user_expand_func()" to invoke a user defined Vim script function and |
e05695e59f6d
patch 8.0.0360: sometimes VimL is used instead of "Vim script"
Christian Brabandt <cb@256bit.org>
parents:
10861
diff
changeset
|
5592 * return the result (either a string or a List). |
7 | 5593 */ |
407 | 5594 static void * |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5595 call_user_expand_func( |
14439
e4c553e9132b
patch 8.1.0233: "safe" argument of call_vim_function() is always FALSE
Christian Brabandt <cb@256bit.org>
parents:
14417
diff
changeset
|
5596 void *(*user_expand_func)(char_u *, int, typval_T *), |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5597 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5598 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5599 char_u ***file) |
7 | 5600 { |
5072
cca600e60928
updated for version 7.3.1279
Bram Moolenaar <bram@vim.org>
parents:
5056
diff
changeset
|
5601 int keep = 0; |
14071
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5602 typval_T args[4]; |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14687
diff
changeset
|
5603 sctx_T save_current_sctx = current_sctx; |
14071
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5604 char_u *pat = NULL; |
407 | 5605 void *ret; |
7 | 5606 |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
5607 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL) |
407 | 5608 return NULL; |
7 | 5609 *num_file = 0; |
5610 *file = NULL; | |
5611 | |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
5612 if (ccline.cmdbuff != NULL) |
1518 | 5613 { |
5614 keep = ccline.cmdbuff[ccline.cmdlen]; | |
5615 ccline.cmdbuff[ccline.cmdlen] = 0; | |
5616 } | |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
5617 |
14071
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5618 pat = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len); |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5619 |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5620 args[0].v_type = VAR_STRING; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5621 args[0].vval.v_string = pat; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5622 args[1].v_type = VAR_STRING; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5623 args[1].vval.v_string = xp->xp_line; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5624 args[2].v_type = VAR_NUMBER; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5625 args[2].vval.v_number = xp->xp_col; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5626 args[3].v_type = VAR_UNKNOWN; |
7 | 5627 |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14687
diff
changeset
|
5628 current_sctx = xp->xp_script_ctx; |
13 | 5629 |
14439
e4c553e9132b
patch 8.1.0233: "safe" argument of call_vim_function() is always FALSE
Christian Brabandt <cb@256bit.org>
parents:
14417
diff
changeset
|
5630 ret = user_expand_func(xp->xp_arg, 3, args); |
13 | 5631 |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14687
diff
changeset
|
5632 current_sctx = save_current_sctx; |
1518 | 5633 if (ccline.cmdbuff != NULL) |
5634 ccline.cmdbuff[ccline.cmdlen] = keep; | |
407 | 5635 |
14071
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5636 vim_free(pat); |
407 | 5637 return ret; |
5638 } | |
5639 | |
5640 /* | |
5641 * Expand names with a function defined by the user. | |
5642 */ | |
5643 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5644 ExpandUserDefined( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5645 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5646 regmatch_T *regmatch, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5647 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5648 char_u ***file) |
407 | 5649 { |
5650 char_u *retstr; | |
5651 char_u *s; | |
5652 char_u *e; | |
13256
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5653 int keep; |
407 | 5654 garray_T ga; |
13256
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5655 int skip; |
407 | 5656 |
5657 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file); | |
5658 if (retstr == NULL) | |
7 | 5659 return FAIL; |
5660 | |
5661 ga_init2(&ga, (int)sizeof(char *), 3); | |
407 | 5662 for (s = retstr; *s != NUL; s = e) |
7 | 5663 { |
5664 e = vim_strchr(s, '\n'); | |
5665 if (e == NULL) | |
5666 e = s + STRLEN(s); | |
5667 keep = *e; | |
13256
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5668 *e = NUL; |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5669 |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5670 skip = xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0; |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5671 *e = keep; |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5672 |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5673 if (!skip) |
7 | 5674 { |
13256
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5675 if (ga_grow(&ga, 1) == FAIL) |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5676 break; |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5677 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s)); |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5678 ++ga.ga_len; |
7 | 5679 } |
5680 | |
5681 if (*e != NUL) | |
5682 ++e; | |
5683 } | |
407 | 5684 vim_free(retstr); |
5685 *file = ga.ga_data; | |
5686 *num_file = ga.ga_len; | |
5687 return OK; | |
5688 } | |
5689 | |
5690 /* | |
5691 * Expand names with a list returned by a function defined by the user. | |
5692 */ | |
5693 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5694 ExpandUserList( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5695 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5696 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5697 char_u ***file) |
407 | 5698 { |
5699 list_T *retlist; | |
5700 listitem_T *li; | |
5701 garray_T ga; | |
5702 | |
5703 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file); | |
5704 if (retlist == NULL) | |
5705 return FAIL; | |
5706 | |
5707 ga_init2(&ga, (int)sizeof(char *), 3); | |
5708 /* Loop over the items in the list. */ | |
5709 for (li = retlist->lv_first; li != NULL; li = li->li_next) | |
5710 { | |
1917 | 5711 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL) |
5712 continue; /* Skip non-string items and empty strings */ | |
407 | 5713 |
5714 if (ga_grow(&ga, 1) == FAIL) | |
5715 break; | |
5716 | |
5717 ((char_u **)ga.ga_data)[ga.ga_len] = | |
1917 | 5718 vim_strsave(li->li_tv.vval.v_string); |
407 | 5719 ++ga.ga_len; |
5720 } | |
5721 list_unref(retlist); | |
5722 | |
7 | 5723 *file = ga.ga_data; |
5724 *num_file = ga.ga_len; | |
5725 return OK; | |
5726 } | |
5727 #endif | |
5728 | |
5729 /* | |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5730 * Expand color scheme, compiler or filetype names. |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5731 * Search from 'runtimepath': |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5732 * 'runtimepath'/{dirnames}/{pat}.vim |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5733 * When "flags" has DIP_START: search also from 'start' of 'packpath': |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5734 * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5735 * When "flags" has DIP_OPT: search also from 'opt' of 'packpath': |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5736 * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim |
2929 | 5737 * "dirnames" is an array with one or more directory names. |
7 | 5738 */ |
5739 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5740 ExpandRTDir( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5741 char_u *pat, |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5742 int flags, |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5743 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5744 char_u ***file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5745 char *dirnames[]) |
7 | 5746 { |
5747 char_u *s; | |
5748 char_u *e; | |
5873 | 5749 char_u *match; |
7 | 5750 garray_T ga; |
2929 | 5751 int i; |
5752 int pat_len; | |
7 | 5753 |
5754 *num_file = 0; | |
5755 *file = NULL; | |
2931 | 5756 pat_len = (int)STRLEN(pat); |
2929 | 5757 ga_init2(&ga, (int)sizeof(char *), 10); |
5758 | |
5759 for (i = 0; dirnames[i] != NULL; ++i) | |
7 | 5760 { |
2929 | 5761 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7)); |
5762 if (s == NULL) | |
5763 { | |
5764 ga_clear_strings(&ga); | |
5765 return FAIL; | |
5766 } | |
5767 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat); | |
5873 | 5768 globpath(p_rtp, s, &ga, 0); |
2929 | 5769 vim_free(s); |
5873 | 5770 } |
5771 | |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5772 if (flags & DIP_START) { |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5773 for (i = 0; dirnames[i] != NULL; ++i) |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5774 { |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5775 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 22)); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5776 if (s == NULL) |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5777 { |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5778 ga_clear_strings(&ga); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5779 return FAIL; |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5780 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5781 sprintf((char *)s, "pack/*/start/*/%s/%s*.vim", dirnames[i], pat); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5782 globpath(p_pp, s, &ga, 0); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5783 vim_free(s); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5784 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5785 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5786 |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5787 if (flags & DIP_OPT) { |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5788 for (i = 0; dirnames[i] != NULL; ++i) |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5789 { |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5790 s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 20)); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5791 if (s == NULL) |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5792 { |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5793 ga_clear_strings(&ga); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5794 return FAIL; |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5795 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5796 sprintf((char *)s, "pack/*/opt/*/%s/%s*.vim", dirnames[i], pat); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5797 globpath(p_pp, s, &ga, 0); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5798 vim_free(s); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5799 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5800 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5801 |
5873 | 5802 for (i = 0; i < ga.ga_len; ++i) |
5803 { | |
5804 match = ((char_u **)ga.ga_data)[i]; | |
5805 s = match; | |
5806 e = s + STRLEN(s); | |
5807 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0) | |
7 | 5808 { |
5873 | 5809 e -= 4; |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5810 for (s = e; s > match; MB_PTR_BACK(match, s)) |
5873 | 5811 if (s < match || vim_ispathsep(*s)) |
5812 break; | |
5813 ++s; | |
5814 *e = NUL; | |
5815 mch_memmove(match, s, e - s + 1); | |
7 | 5816 } |
5817 } | |
5873 | 5818 |
2929 | 5819 if (ga.ga_len == 0) |
3628 | 5820 return FAIL; |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5821 |
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5822 /* Sort and remove duplicates which can happen when specifying multiple |
2929 | 5823 * directories in dirnames. */ |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5824 remove_duplicates(&ga); |
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5825 |
7 | 5826 *file = ga.ga_data; |
5827 *num_file = ga.ga_len; | |
5828 return OK; | |
5829 } | |
5830 | |
8402
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5831 /* |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5832 * Expand loadplugin names: |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5833 * 'packpath'/pack/ * /opt/{pat} |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5834 */ |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5835 static int |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5836 ExpandPackAddDir( |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5837 char_u *pat, |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5838 int *num_file, |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5839 char_u ***file) |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5840 { |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5841 char_u *s; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5842 char_u *e; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5843 char_u *match; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5844 garray_T ga; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5845 int i; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5846 int pat_len; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5847 |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5848 *num_file = 0; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5849 *file = NULL; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5850 pat_len = (int)STRLEN(pat); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5851 ga_init2(&ga, (int)sizeof(char *), 10); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5852 |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5853 s = alloc((unsigned)(pat_len + 26)); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5854 if (s == NULL) |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5855 { |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5856 ga_clear_strings(&ga); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5857 return FAIL; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5858 } |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5859 sprintf((char *)s, "pack/*/opt/%s*", pat); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5860 globpath(p_pp, s, &ga, 0); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5861 vim_free(s); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5862 |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5863 for (i = 0; i < ga.ga_len; ++i) |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5864 { |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5865 match = ((char_u **)ga.ga_data)[i]; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5866 s = gettail(match); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5867 e = s + STRLEN(s); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5868 mch_memmove(match, s, e - s + 1); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5869 } |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5870 |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5871 if (ga.ga_len == 0) |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5872 return FAIL; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5873 |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5874 /* Sort and remove duplicates which can happen when specifying multiple |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5875 * directories in dirnames. */ |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5876 remove_duplicates(&ga); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5877 |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5878 *file = ga.ga_data; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5879 *num_file = ga.ga_len; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5880 return OK; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5881 } |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5882 |
7 | 5883 #endif |
5884 | |
5885 #if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO) | |
5886 /* | |
5887 * Expand "file" for all comma-separated directories in "path". | |
5873 | 5888 * Adds the matches to "ga". Caller must init "ga". |
7 | 5889 */ |
5873 | 5890 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5891 globpath( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5892 char_u *path, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5893 char_u *file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5894 garray_T *ga, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5895 int expand_options) |
7 | 5896 { |
5897 expand_T xpc; | |
5898 char_u *buf; | |
5899 int i; | |
5900 int num_p; | |
5901 char_u **p; | |
5902 | |
5903 buf = alloc(MAXPATHL); | |
5904 if (buf == NULL) | |
5873 | 5905 return; |
7 | 5906 |
632 | 5907 ExpandInit(&xpc); |
7 | 5908 xpc.xp_context = EXPAND_FILES; |
632 | 5909 |
7 | 5910 /* Loop over all entries in {path}. */ |
5911 while (*path != NUL) | |
5912 { | |
5913 /* Copy one item of the path to buf[] and concatenate the file name. */ | |
5914 copy_option_part(&path, buf, MAXPATHL, ","); | |
5915 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL) | |
5916 { | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
5917 # if defined(MSWIN) |
2495
a847363bf06e
Fix a few problems for :find completion. Test much more. (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
5918 /* 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
|
5919 * 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
|
5920 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
|
5921 STRCAT(buf, "/"); |
a847363bf06e
Fix a few problems for :find completion. Test much more. (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
5922 # else |
7 | 5923 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
|
5924 # endif |
7 | 5925 STRCAT(buf, file); |
1754 | 5926 if (ExpandFromContext(&xpc, buf, &num_p, &p, |
5927 WILD_SILENT|expand_options) != FAIL && num_p > 0) | |
7 | 5928 { |
1754 | 5929 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options); |
5873 | 5930 |
5931 if (ga_grow(ga, num_p) == OK) | |
7 | 5932 { |
5933 for (i = 0; i < num_p; ++i) | |
5934 { | |
5873 | 5935 ((char_u **)ga->ga_data)[ga->ga_len] = |
5950 | 5936 vim_strnsave(p[i], (int)STRLEN(p[i])); |
5873 | 5937 ++ga->ga_len; |
7 | 5938 } |
5939 } | |
5873 | 5940 |
7 | 5941 FreeWild(num_p, p); |
5942 } | |
5943 } | |
5944 } | |
5945 | |
5946 vim_free(buf); | |
5947 } | |
5948 | |
5949 #endif | |
5950 | |
5951 #if defined(FEAT_CMDHIST) || defined(PROTO) | |
5952 | |
5953 /********************************* | |
5954 * Command line history stuff * | |
5955 *********************************/ | |
5956 | |
5957 /* | |
5958 * Translate a history character to the associated type number. | |
5959 */ | |
5960 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5961 hist_char2type(int c) |
7 | 5962 { |
5963 if (c == ':') | |
5964 return HIST_CMD; | |
5965 if (c == '=') | |
5966 return HIST_EXPR; | |
5967 if (c == '@') | |
5968 return HIST_INPUT; | |
5969 if (c == '>') | |
5970 return HIST_DEBUG; | |
5971 return HIST_SEARCH; /* must be '?' or '/' */ | |
5972 } | |
5973 | |
5974 /* | |
5975 * Table of history names. | |
5976 * These names are used in :history and various hist...() functions. | |
5977 * It is sufficient to give the significant prefix of a history name. | |
5978 */ | |
5979 | |
5980 static char *(history_names[]) = | |
5981 { | |
5982 "cmd", | |
5983 "search", | |
5984 "expr", | |
5985 "input", | |
5986 "debug", | |
5987 NULL | |
5988 }; | |
5989 | |
3503 | 5990 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
5991 /* | |
5992 * Function given to ExpandGeneric() to obtain the possible first | |
5993 * arguments of the ":history command. | |
5994 */ | |
5995 static char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5996 get_history_arg(expand_T *xp UNUSED, int idx) |
3503 | 5997 { |
5998 static char_u compl[2] = { NUL, NUL }; | |
5999 char *short_names = ":=@>?/"; | |
3529 | 6000 int short_names_count = (int)STRLEN(short_names); |
3503 | 6001 int history_name_count = sizeof(history_names) / sizeof(char *) - 1; |
6002 | |
6003 if (idx < short_names_count) | |
6004 { | |
6005 compl[0] = (char_u)short_names[idx]; | |
6006 return compl; | |
6007 } | |
6008 if (idx < short_names_count + history_name_count) | |
6009 return (char_u *)history_names[idx - short_names_count]; | |
6010 if (idx == short_names_count + history_name_count) | |
6011 return (char_u *)"all"; | |
6012 return NULL; | |
6013 } | |
6014 #endif | |
6015 | |
7 | 6016 /* |
6017 * init_history() - Initialize the command line history. | |
6018 * Also used to re-allocate the history when the size changes. | |
6019 */ | |
356 | 6020 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6021 init_history(void) |
7 | 6022 { |
6023 int newlen; /* new length of history table */ | |
6024 histentry_T *temp; | |
6025 int i; | |
6026 int j; | |
6027 int type; | |
6028 | |
6029 /* | |
6030 * If size of history table changed, reallocate it | |
6031 */ | |
6032 newlen = (int)p_hi; | |
6033 if (newlen != hislen) /* history length changed */ | |
6034 { | |
6035 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */ | |
6036 { | |
6037 if (newlen) | |
6038 { | |
6039 temp = (histentry_T *)lalloc( | |
6040 (long_u)(newlen * sizeof(histentry_T)), TRUE); | |
6041 if (temp == NULL) /* out of memory! */ | |
6042 { | |
6043 if (type == 0) /* first one: just keep the old length */ | |
6044 { | |
6045 newlen = hislen; | |
6046 break; | |
6047 } | |
6048 /* Already changed one table, now we can only have zero | |
6049 * length for all tables. */ | |
6050 newlen = 0; | |
6051 type = -1; | |
6052 continue; | |
6053 } | |
6054 } | |
6055 else | |
6056 temp = NULL; | |
6057 if (newlen == 0 || temp != NULL) | |
6058 { | |
6059 if (hisidx[type] < 0) /* there are no entries yet */ | |
6060 { | |
6061 for (i = 0; i < newlen; ++i) | |
4258 | 6062 clear_hist_entry(&temp[i]); |
7 | 6063 } |
6064 else if (newlen > hislen) /* array becomes bigger */ | |
6065 { | |
6066 for (i = 0; i <= hisidx[type]; ++i) | |
6067 temp[i] = history[type][i]; | |
6068 j = i; | |
6069 for ( ; i <= newlen - (hislen - hisidx[type]); ++i) | |
4258 | 6070 clear_hist_entry(&temp[i]); |
7 | 6071 for ( ; j < hislen; ++i, ++j) |
6072 temp[i] = history[type][j]; | |
6073 } | |
6074 else /* array becomes smaller or 0 */ | |
6075 { | |
6076 j = hisidx[type]; | |
6077 for (i = newlen - 1; ; --i) | |
6078 { | |
6079 if (i >= 0) /* copy newest entries */ | |
6080 temp[i] = history[type][j]; | |
6081 else /* remove older entries */ | |
6082 vim_free(history[type][j].hisstr); | |
6083 if (--j < 0) | |
6084 j = hislen - 1; | |
6085 if (j == hisidx[type]) | |
6086 break; | |
6087 } | |
6088 hisidx[type] = newlen - 1; | |
6089 } | |
6090 vim_free(history[type]); | |
6091 history[type] = temp; | |
6092 } | |
6093 } | |
6094 hislen = newlen; | |
6095 } | |
6096 } | |
6097 | |
4258 | 6098 static void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6099 clear_hist_entry(histentry_T *hisptr) |
4258 | 6100 { |
6101 hisptr->hisnum = 0; | |
6102 hisptr->viminfo = FALSE; | |
6103 hisptr->hisstr = NULL; | |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6104 hisptr->time_set = 0; |
4258 | 6105 } |
6106 | |
7 | 6107 /* |
6108 * Check if command line 'str' is already in history. | |
6109 * If 'move_to_front' is TRUE, matching entry is moved to end of history. | |
6110 */ | |
6111 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6112 in_history( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6113 int type, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6114 char_u *str, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6115 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
|
6116 int sep, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6117 int writing) /* ignore entries read from viminfo */ |
7 | 6118 { |
6119 int i; | |
6120 int last_i = -1; | |
2986 | 6121 char_u *p; |
7 | 6122 |
6123 if (hisidx[type] < 0) | |
6124 return FALSE; | |
6125 i = hisidx[type]; | |
6126 do | |
6127 { | |
6128 if (history[type][i].hisstr == NULL) | |
6129 return FALSE; | |
2986 | 6130 |
6131 /* For search history, check that the separator character matches as | |
6132 * well. */ | |
6133 p = history[type][i].hisstr; | |
6134 if (STRCMP(str, p) == 0 | |
4285 | 6135 && !(writing && history[type][i].viminfo) |
2986 | 6136 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1])) |
7 | 6137 { |
6138 if (!move_to_front) | |
6139 return TRUE; | |
6140 last_i = i; | |
6141 break; | |
6142 } | |
6143 if (--i < 0) | |
6144 i = hislen - 1; | |
6145 } while (i != hisidx[type]); | |
6146 | |
6147 if (last_i >= 0) | |
6148 { | |
6149 str = history[type][i].hisstr; | |
6150 while (i != hisidx[type]) | |
6151 { | |
6152 if (++i >= hislen) | |
6153 i = 0; | |
6154 history[type][last_i] = history[type][i]; | |
6155 last_i = i; | |
6156 } | |
4258 | 6157 history[type][i].hisnum = ++hisnum[type]; |
6158 history[type][i].viminfo = FALSE; | |
7 | 6159 history[type][i].hisstr = str; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6160 history[type][i].time_set = vim_time(); |
7 | 6161 return TRUE; |
6162 } | |
6163 return FALSE; | |
6164 } | |
6165 | |
6166 /* | |
6167 * Convert history name (from table above) to its HIST_ equivalent. | |
6168 * When "name" is empty, return "cmd" history. | |
6169 * Returns -1 for unknown history name. | |
6170 */ | |
6171 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6172 get_histtype(char_u *name) |
7 | 6173 { |
6174 int i; | |
6175 int len = (int)STRLEN(name); | |
6176 | |
6177 /* No argument: use current history. */ | |
6178 if (len == 0) | |
6179 return hist_char2type(ccline.cmdfirstc); | |
6180 | |
6181 for (i = 0; history_names[i] != NULL; ++i) | |
6182 if (STRNICMP(name, history_names[i], len) == 0) | |
6183 return i; | |
6184 | |
6185 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL) | |
6186 return hist_char2type(name[0]); | |
6187 | |
6188 return -1; | |
6189 } | |
6190 | |
6191 static int last_maptick = -1; /* last seen maptick */ | |
6192 | |
6193 /* | |
6194 * Add the given string to the given history. If the string is already in the | |
6195 * history then it is moved to the front. "histype" may be one of he HIST_ | |
6196 * values. | |
6197 */ | |
6198 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6199 add_to_history( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6200 int histype, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6201 char_u *new_entry, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6202 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
|
6203 int sep) /* separator character used (search hist) */ |
7 | 6204 { |
6205 histentry_T *hisptr; | |
6206 int len; | |
6207 | |
6208 if (hislen == 0) /* no history */ | |
6209 return; | |
6210 | |
5467 | 6211 if (cmdmod.keeppatterns && histype == HIST_SEARCH) |
6212 return; | |
6213 | |
7 | 6214 /* |
6215 * Searches inside the same mapping overwrite each other, so that only | |
6216 * the last line is kept. Be careful not to remove a line that was moved | |
6217 * down, only lines that were added. | |
6218 */ | |
6219 if (histype == HIST_SEARCH && in_map) | |
6220 { | |
10174
b17c82587755
commit https://github.com/vim/vim/commit/46643713dc6bb04b4e84986b1763ef309e960161
Christian Brabandt <cb@256bit.org>
parents:
10120
diff
changeset
|
6221 if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0) |
7 | 6222 { |
6223 /* Current line is from the same mapping, remove it */ | |
6224 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]]; | |
6225 vim_free(hisptr->hisstr); | |
4258 | 6226 clear_hist_entry(hisptr); |
7 | 6227 --hisnum[histype]; |
6228 if (--hisidx[HIST_SEARCH] < 0) | |
6229 hisidx[HIST_SEARCH] = hislen - 1; | |
6230 } | |
6231 last_maptick = -1; | |
6232 } | |
4285 | 6233 if (!in_history(histype, new_entry, TRUE, sep, FALSE)) |
7 | 6234 { |
6235 if (++hisidx[histype] == hislen) | |
6236 hisidx[histype] = 0; | |
6237 hisptr = &history[histype][hisidx[histype]]; | |
6238 vim_free(hisptr->hisstr); | |
6239 | |
6240 /* Store the separator after the NUL of the string. */ | |
835 | 6241 len = (int)STRLEN(new_entry); |
7 | 6242 hisptr->hisstr = vim_strnsave(new_entry, len + 2); |
6243 if (hisptr->hisstr != NULL) | |
6244 hisptr->hisstr[len + 1] = sep; | |
6245 | |
6246 hisptr->hisnum = ++hisnum[histype]; | |
4258 | 6247 hisptr->viminfo = FALSE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6248 hisptr->time_set = vim_time(); |
7 | 6249 if (histype == HIST_SEARCH && in_map) |
6250 last_maptick = maptick; | |
6251 } | |
6252 } | |
6253 | |
6254 #if defined(FEAT_EVAL) || defined(PROTO) | |
6255 | |
6256 /* | |
6257 * Get identifier of newest history entry. | |
6258 * "histype" may be one of the HIST_ values. | |
6259 */ | |
6260 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6261 get_history_idx(int histype) |
7 | 6262 { |
6263 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT | |
6264 || hisidx[histype] < 0) | |
6265 return -1; | |
6266 | |
6267 return history[histype][hisidx[histype]].hisnum; | |
6268 } | |
6269 | |
531 | 6270 /* |
7 | 6271 * Calculate history index from a number: |
6272 * num > 0: seen as identifying number of a history entry | |
6273 * num < 0: relative position in history wrt newest entry | |
6274 * "histype" may be one of the HIST_ values. | |
6275 */ | |
6276 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6277 calc_hist_idx(int histype, int num) |
7 | 6278 { |
6279 int i; | |
6280 histentry_T *hist; | |
6281 int wrapped = FALSE; | |
6282 | |
6283 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT | |
6284 || (i = hisidx[histype]) < 0 || num == 0) | |
6285 return -1; | |
6286 | |
6287 hist = history[histype]; | |
6288 if (num > 0) | |
6289 { | |
6290 while (hist[i].hisnum > num) | |
6291 if (--i < 0) | |
6292 { | |
6293 if (wrapped) | |
6294 break; | |
6295 i += hislen; | |
6296 wrapped = TRUE; | |
6297 } | |
6298 if (hist[i].hisnum == num && hist[i].hisstr != NULL) | |
6299 return i; | |
6300 } | |
6301 else if (-num <= hislen) | |
6302 { | |
6303 i += num + 1; | |
6304 if (i < 0) | |
6305 i += hislen; | |
6306 if (hist[i].hisstr != NULL) | |
6307 return i; | |
6308 } | |
6309 return -1; | |
6310 } | |
6311 | |
6312 /* | |
6313 * Get a history entry by its index. | |
6314 * "histype" may be one of the HIST_ values. | |
6315 */ | |
6316 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6317 get_history_entry(int histype, int idx) |
7 | 6318 { |
6319 idx = calc_hist_idx(histype, idx); | |
6320 if (idx >= 0) | |
6321 return history[histype][idx].hisstr; | |
6322 else | |
6323 return (char_u *)""; | |
6324 } | |
6325 | |
6326 /* | |
6327 * Clear all entries of a history. | |
6328 * "histype" may be one of the HIST_ values. | |
6329 */ | |
6330 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6331 clr_history(int histype) |
7 | 6332 { |
6333 int i; | |
6334 histentry_T *hisptr; | |
6335 | |
6336 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT) | |
6337 { | |
6338 hisptr = history[histype]; | |
6339 for (i = hislen; i--;) | |
6340 { | |
6341 vim_free(hisptr->hisstr); | |
4258 | 6342 clear_hist_entry(hisptr); |
8406
5d926807c19c
commit https://github.com/vim/vim/commit/119d4693e06e68d4f099aa7287e375ae3d265fd0
Christian Brabandt <cb@256bit.org>
parents:
8402
diff
changeset
|
6343 hisptr++; |
7 | 6344 } |
6345 hisidx[histype] = -1; /* mark history as cleared */ | |
6346 hisnum[histype] = 0; /* reset identifier counter */ | |
6347 return OK; | |
6348 } | |
6349 return FAIL; | |
6350 } | |
6351 | |
6352 /* | |
6353 * Remove all entries matching {str} from a history. | |
6354 * "histype" may be one of the HIST_ values. | |
6355 */ | |
6356 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6357 del_history_entry(int histype, char_u *str) |
7 | 6358 { |
6359 regmatch_T regmatch; | |
6360 histentry_T *hisptr; | |
6361 int idx; | |
6362 int i; | |
6363 int last; | |
6364 int found = FALSE; | |
6365 | |
6366 regmatch.regprog = NULL; | |
6367 regmatch.rm_ic = FALSE; /* always match case */ | |
6368 if (hislen != 0 | |
6369 && histype >= 0 | |
6370 && histype < HIST_COUNT | |
6371 && *str != NUL | |
6372 && (idx = hisidx[histype]) >= 0 | |
6373 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING)) | |
6374 != NULL) | |
6375 { | |
6376 i = last = idx; | |
6377 do | |
6378 { | |
6379 hisptr = &history[histype][i]; | |
6380 if (hisptr->hisstr == NULL) | |
6381 break; | |
6382 if (vim_regexec(®match, hisptr->hisstr, (colnr_T)0)) | |
6383 { | |
6384 found = TRUE; | |
6385 vim_free(hisptr->hisstr); | |
4258 | 6386 clear_hist_entry(hisptr); |
7 | 6387 } |
6388 else | |
6389 { | |
6390 if (i != last) | |
6391 { | |
6392 history[histype][last] = *hisptr; | |
4258 | 6393 clear_hist_entry(hisptr); |
7 | 6394 } |
6395 if (--last < 0) | |
6396 last += hislen; | |
6397 } | |
6398 if (--i < 0) | |
6399 i += hislen; | |
6400 } while (i != idx); | |
6401 if (history[histype][idx].hisstr == NULL) | |
6402 hisidx[histype] = -1; | |
6403 } | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
6404 vim_regfree(regmatch.regprog); |
7 | 6405 return found; |
6406 } | |
6407 | |
6408 /* | |
6409 * Remove an indexed entry from a history. | |
6410 * "histype" may be one of the HIST_ values. | |
6411 */ | |
6412 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6413 del_history_idx(int histype, int idx) |
7 | 6414 { |
6415 int i, j; | |
6416 | |
6417 i = calc_hist_idx(histype, idx); | |
6418 if (i < 0) | |
6419 return FALSE; | |
6420 idx = hisidx[histype]; | |
6421 vim_free(history[histype][i].hisstr); | |
6422 | |
6423 /* When deleting the last added search string in a mapping, reset | |
6424 * last_maptick, so that the last added search string isn't deleted again. | |
6425 */ | |
6426 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx) | |
6427 last_maptick = -1; | |
6428 | |
6429 while (i != idx) | |
6430 { | |
6431 j = (i + 1) % hislen; | |
6432 history[histype][i] = history[histype][j]; | |
6433 i = j; | |
6434 } | |
4258 | 6435 clear_hist_entry(&history[histype][i]); |
7 | 6436 if (--i < 0) |
6437 i += hislen; | |
6438 hisidx[histype] = i; | |
6439 return TRUE; | |
6440 } | |
6441 | |
6442 #endif /* FEAT_EVAL */ | |
6443 | |
6444 #if defined(FEAT_CRYPT) || defined(PROTO) | |
6445 /* | |
6446 * Very specific function to remove the value in ":set key=val" from the | |
6447 * history. | |
6448 */ | |
6449 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6450 remove_key_from_history(void) |
7 | 6451 { |
6452 char_u *p; | |
6453 int i; | |
6454 | |
6455 i = hisidx[HIST_CMD]; | |
6456 if (i < 0) | |
6457 return; | |
6458 p = history[HIST_CMD][i].hisstr; | |
6459 if (p != NULL) | |
6460 for ( ; *p; ++p) | |
6461 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3])) | |
6462 { | |
6463 p = vim_strchr(p + 3, '='); | |
6464 if (p == NULL) | |
6465 break; | |
6466 ++p; | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
6467 for (i = 0; p[i] && !VIM_ISWHITE(p[i]); ++i) |
7 | 6468 if (p[i] == '\\' && p[i + 1]) |
6469 ++i; | |
1621 | 6470 STRMOVE(p, p + i); |
7 | 6471 --p; |
6472 } | |
6473 } | |
6474 #endif | |
6475 | |
6476 #endif /* FEAT_CMDHIST */ | |
6477 | |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6478 #if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO) |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6479 /* |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
6480 * Get pointer to the command line info to use. save_ccline() may clear |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6481 * ccline and put the previous value in prev_ccline. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6482 */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6483 static struct cmdline_info * |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6484 get_ccline_ptr(void) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6485 { |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6486 if ((State & CMDLINE) == 0) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6487 return NULL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6488 if (ccline.cmdbuff != NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6489 return &ccline; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6490 if (prev_ccline_used && prev_ccline.cmdbuff != NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6491 return &prev_ccline; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6492 return NULL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6493 } |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6494 #endif |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6495 |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6496 #if defined(FEAT_EVAL) || defined(PROTO) |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6497 /* |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6498 * Get the current command line in allocated memory. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6499 * Only works when the command line is being edited. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6500 * Returns NULL when something is wrong. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6501 */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6502 char_u * |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6503 get_cmdline_str(void) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6504 { |
14848
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
6505 struct cmdline_info *p; |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
6506 |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
6507 if (cmdline_star > 0) |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
6508 return NULL; |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
6509 p = get_ccline_ptr(); |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6510 if (p == NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6511 return NULL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6512 return vim_strnsave(p->cmdbuff, p->cmdlen); |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6513 } |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6514 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6515 /* |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6516 * Get the current command line position, counted in bytes. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6517 * Zero is the first position. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6518 * Only works when the command line is being edited. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6519 * Returns -1 when something is wrong. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6520 */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6521 int |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6522 get_cmdline_pos(void) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6523 { |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6524 struct cmdline_info *p = get_ccline_ptr(); |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6525 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6526 if (p == NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6527 return -1; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6528 return p->cmdpos; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6529 } |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6530 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6531 /* |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6532 * Set the command line byte position to "pos". Zero is the first position. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6533 * Only works when the command line is being edited. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6534 * Returns 1 when failed, 0 when OK. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6535 */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6536 int |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6537 set_cmdline_pos( |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6538 int pos) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6539 { |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6540 struct cmdline_info *p = get_ccline_ptr(); |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6541 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6542 if (p == NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6543 return 1; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6544 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6545 /* The position is not set directly but after CTRL-\ e or CTRL-R = has |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6546 * changed the command line. */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6547 if (pos < 0) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6548 new_cmdpos = 0; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6549 else |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6550 new_cmdpos = pos; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6551 return 0; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6552 } |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6553 #endif |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6554 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6555 #if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6556 /* |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6557 * Get the current command-line type. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6558 * Returns ':' or '/' or '?' or '@' or '>' or '-' |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6559 * Only works when the command line is being edited. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6560 * Returns NUL when something is wrong. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6561 */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6562 int |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6563 get_cmdline_type(void) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6564 { |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6565 struct cmdline_info *p = get_ccline_ptr(); |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6566 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6567 if (p == NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6568 return NUL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6569 if (p->cmdfirstc == NUL) |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6570 return |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6571 # ifdef FEAT_EVAL |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6572 (p->input_fn) ? '@' : |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6573 # endif |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6574 '-'; |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6575 return p->cmdfirstc; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6576 } |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6577 #endif |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6578 |
7 | 6579 #if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO) |
6580 /* | |
6581 * Get indices "num1,num2" that specify a range within a list (not a range of | |
6582 * text lines in a buffer!) from a string. Used for ":history" and ":clist". | |
6583 * Returns OK if parsed successfully, otherwise FAIL. | |
6584 */ | |
6585 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6586 get_list_range(char_u **str, int *num1, int *num2) |
7 | 6587 { |
6588 int len; | |
6589 int first = FALSE; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9301
diff
changeset
|
6590 varnumber_T num; |
7 | 6591 |
6592 *str = skipwhite(*str); | |
6593 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */ | |
6594 { | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
6595 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0); |
7 | 6596 *str += len; |
6597 *num1 = (int)num; | |
6598 first = TRUE; | |
6599 } | |
6600 *str = skipwhite(*str); | |
6601 if (**str == ',') /* parse "to" part of range */ | |
6602 { | |
6603 *str = skipwhite(*str + 1); | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
6604 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0); |
7 | 6605 if (len > 0) |
6606 { | |
6607 *num2 = (int)num; | |
6608 *str = skipwhite(*str + len); | |
6609 } | |
6610 else if (!first) /* no number given at all */ | |
6611 return FAIL; | |
6612 } | |
6613 else if (first) /* only one number given */ | |
6614 *num2 = *num1; | |
6615 return OK; | |
6616 } | |
6617 #endif | |
6618 | |
6619 #if defined(FEAT_CMDHIST) || defined(PROTO) | |
6620 /* | |
6621 * :history command - print a history | |
6622 */ | |
6623 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6624 ex_history(exarg_T *eap) |
7 | 6625 { |
6626 histentry_T *hist; | |
6627 int histype1 = HIST_CMD; | |
6628 int histype2 = HIST_CMD; | |
6629 int hisidx1 = 1; | |
6630 int hisidx2 = -1; | |
6631 int idx; | |
6632 int i, j, k; | |
6633 char_u *end; | |
6634 char_u *arg = eap->arg; | |
6635 | |
6636 if (hislen == 0) | |
6637 { | |
6638 MSG(_("'history' option is zero")); | |
6639 return; | |
6640 } | |
6641 | |
6642 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ',')) | |
6643 { | |
6644 end = arg; | |
6645 while (ASCII_ISALPHA(*end) | |
6646 || vim_strchr((char_u *)":=@>/?", *end) != NULL) | |
6647 end++; | |
6648 i = *end; | |
6649 *end = NUL; | |
6650 histype1 = get_histtype(arg); | |
6651 if (histype1 == -1) | |
6652 { | |
1853 | 6653 if (STRNICMP(arg, "all", STRLEN(arg)) == 0) |
7 | 6654 { |
6655 histype1 = 0; | |
6656 histype2 = HIST_COUNT-1; | |
6657 } | |
6658 else | |
6659 { | |
6660 *end = i; | |
6661 EMSG(_(e_trailing)); | |
6662 return; | |
6663 } | |
6664 } | |
6665 else | |
6666 histype2 = histype1; | |
6667 *end = i; | |
6668 } | |
6669 else | |
6670 end = arg; | |
6671 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL) | |
6672 { | |
6673 EMSG(_(e_trailing)); | |
6674 return; | |
6675 } | |
6676 | |
6677 for (; !got_int && histype1 <= histype2; ++histype1) | |
6678 { | |
6679 STRCPY(IObuff, "\n # "); | |
6680 STRCAT(STRCAT(IObuff, history_names[histype1]), " history"); | |
6681 MSG_PUTS_TITLE(IObuff); | |
6682 idx = hisidx[histype1]; | |
6683 hist = history[histype1]; | |
6684 j = hisidx1; | |
6685 k = hisidx2; | |
6686 if (j < 0) | |
6687 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum; | |
6688 if (k < 0) | |
6689 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum; | |
6690 if (idx >= 0 && j <= k) | |
6691 for (i = idx + 1; !got_int; ++i) | |
6692 { | |
6693 if (i == hislen) | |
6694 i = 0; | |
6695 if (hist[i].hisstr != NULL | |
6696 && hist[i].hisnum >= j && hist[i].hisnum <= k) | |
6697 { | |
6698 msg_putchar('\n'); | |
6699 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ', | |
6700 hist[i].hisnum); | |
6701 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10) | |
6702 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff), | |
3290 | 6703 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff)); |
7 | 6704 else |
6705 STRCAT(IObuff, hist[i].hisstr); | |
6706 msg_outtrans(IObuff); | |
6707 out_flush(); | |
6708 } | |
6709 if (i == idx) | |
6710 break; | |
6711 } | |
6712 } | |
6713 } | |
6714 #endif | |
6715 | |
6716 #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
|
6717 /* |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6718 * 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
|
6719 */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6720 static histentry_T *viminfo_history[HIST_COUNT] = |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6721 {NULL, NULL, NULL, NULL, NULL}; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6722 static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0, 0}; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6723 static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0, 0}; |
7 | 6724 static int viminfo_add_at_front = FALSE; |
6725 | |
6726 /* | |
6727 * Translate a history type number to the associated character. | |
6728 */ | |
6729 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6730 hist_type2char( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6731 int type, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6732 int use_question) /* use '?' instead of '/' */ |
7 | 6733 { |
6734 if (type == HIST_CMD) | |
6735 return ':'; | |
6736 if (type == HIST_SEARCH) | |
6737 { | |
6738 if (use_question) | |
6739 return '?'; | |
6740 else | |
6741 return '/'; | |
6742 } | |
6743 if (type == HIST_EXPR) | |
6744 return '='; | |
6745 return '@'; | |
6746 } | |
6747 | |
6748 /* | |
6749 * Prepare for reading the history from the viminfo file. | |
6750 * This allocates history arrays to store the read history lines. | |
6751 */ | |
6752 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6753 prepare_viminfo_history(int asklen, int writing) |
7 | 6754 { |
6755 int i; | |
6756 int num; | |
6757 int type; | |
6758 int len; | |
6759 | |
6760 init_history(); | |
4285 | 6761 viminfo_add_at_front = (asklen != 0 && !writing); |
7 | 6762 if (asklen > hislen) |
6763 asklen = hislen; | |
6764 | |
6765 for (type = 0; type < HIST_COUNT; ++type) | |
6766 { | |
4258 | 6767 /* Count the number of empty spaces in the history list. Entries read |
6768 * from viminfo previously are also considered empty. If there are | |
6769 * more spaces available than we request, then fill them up. */ | |
7 | 6770 for (i = 0, num = 0; i < hislen; i++) |
4258 | 6771 if (history[type][i].hisstr == NULL || history[type][i].viminfo) |
7 | 6772 num++; |
6773 len = asklen; | |
6774 if (num > len) | |
6775 len = num; | |
6776 if (len <= 0) | |
6777 viminfo_history[type] = NULL; | |
6778 else | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6779 viminfo_history[type] = (histentry_T *)lalloc( |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6780 (long_u)(len * sizeof(histentry_T)), FALSE); |
7 | 6781 if (viminfo_history[type] == NULL) |
6782 len = 0; | |
6783 viminfo_hislen[type] = len; | |
6784 viminfo_hisidx[type] = 0; | |
6785 } | |
6786 } | |
6787 | |
6788 /* | |
6789 * Accept a line from the viminfo, store it in the history array when it's | |
6790 * new. | |
6791 */ | |
6792 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6793 read_viminfo_history(vir_T *virp, int writing) |
7 | 6794 { |
6795 int type; | |
6796 long_u len; | |
6797 char_u *val; | |
6798 char_u *p; | |
6799 | |
6800 type = hist_char2type(virp->vir_line[0]); | |
6801 if (viminfo_hisidx[type] < viminfo_hislen[type]) | |
6802 { | |
6803 val = viminfo_readstring(virp, 1, TRUE); | |
6804 if (val != NULL && *val != NUL) | |
6805 { | |
3316 | 6806 int sep = (*val == ' ' ? NUL : *val); |
6807 | |
7 | 6808 if (!in_history(type, val + (type == HIST_SEARCH), |
4285 | 6809 viminfo_add_at_front, sep, writing)) |
7 | 6810 { |
6811 /* Need to re-allocate to append the separator byte. */ | |
6812 len = STRLEN(val); | |
6813 p = lalloc(len + 2, TRUE); | |
6814 if (p != NULL) | |
6815 { | |
6816 if (type == HIST_SEARCH) | |
6817 { | |
6818 /* Search entry: Move the separator from the first | |
6819 * column to after the NUL. */ | |
6820 mch_memmove(p, val + 1, (size_t)len); | |
3316 | 6821 p[len] = sep; |
7 | 6822 } |
6823 else | |
6824 { | |
6825 /* Not a search entry: No separator in the viminfo | |
6826 * file, add a NUL separator. */ | |
6827 mch_memmove(p, val, (size_t)len + 1); | |
6828 p[len + 1] = NUL; | |
6829 } | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6830 viminfo_history[type][viminfo_hisidx[type]].hisstr = p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6831 viminfo_history[type][viminfo_hisidx[type]].time_set = 0; |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6832 viminfo_history[type][viminfo_hisidx[type]].viminfo = TRUE; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6833 viminfo_history[type][viminfo_hisidx[type]].hisnum = 0; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6834 viminfo_hisidx[type]++; |
7 | 6835 } |
6836 } | |
6837 } | |
6838 vim_free(val); | |
6839 } | |
6840 return viminfo_readline(virp); | |
6841 } | |
6842 | |
4285 | 6843 /* |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6844 * Accept a new style history line from the viminfo, store it in the history |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6845 * array when it's new. |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6846 */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6847 void |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6848 handle_viminfo_history( |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6849 garray_T *values, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6850 int writing) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6851 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6852 int type; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6853 long_u len; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6854 char_u *val; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6855 char_u *p; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6856 bval_T *vp = (bval_T *)values->ga_data; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6857 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6858 /* Check the format: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6859 * |{bartype},{histtype},{timestamp},{separator},"text" */ |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6860 if (values->ga_len < 4 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6861 || vp[0].bv_type != BVAL_NR |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6862 || vp[1].bv_type != BVAL_NR |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6863 || (vp[2].bv_type != BVAL_NR && vp[2].bv_type != BVAL_EMPTY) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6864 || vp[3].bv_type != BVAL_STRING) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6865 return; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6866 |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6867 type = vp[0].bv_nr; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6868 if (type >= HIST_COUNT) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6869 return; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6870 if (viminfo_hisidx[type] < viminfo_hislen[type]) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6871 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6872 val = vp[3].bv_string; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6873 if (val != NULL && *val != NUL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6874 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6875 int sep = type == HIST_SEARCH && vp[2].bv_type == BVAL_NR |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6876 ? vp[2].bv_nr : NUL; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6877 int idx; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6878 int overwrite = FALSE; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6879 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6880 if (!in_history(type, val, viminfo_add_at_front, sep, writing)) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6881 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6882 /* If lines were written by an older Vim we need to avoid |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6883 * getting duplicates. See if the entry already exists. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6884 for (idx = 0; idx < viminfo_hisidx[type]; ++idx) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6885 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6886 p = viminfo_history[type][idx].hisstr; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6887 if (STRCMP(val, p) == 0 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6888 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1])) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6889 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6890 overwrite = TRUE; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6891 break; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6892 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6893 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6894 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6895 if (!overwrite) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6896 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6897 /* Need to re-allocate to append the separator byte. */ |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6898 len = vp[3].bv_len; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6899 p = lalloc(len + 2, TRUE); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6900 } |
9301
c3805fb080a6
commit https://github.com/vim/vim/commit/72e697d189616265ecefe0df4509d476df3bae40
Christian Brabandt <cb@256bit.org>
parents:
9287
diff
changeset
|
6901 else |
c3805fb080a6
commit https://github.com/vim/vim/commit/72e697d189616265ecefe0df4509d476df3bae40
Christian Brabandt <cb@256bit.org>
parents:
9287
diff
changeset
|
6902 len = 0; /* for picky compilers */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6903 if (p != NULL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6904 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6905 viminfo_history[type][idx].time_set = vp[1].bv_nr; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6906 if (!overwrite) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6907 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6908 mch_memmove(p, val, (size_t)len + 1); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6909 /* Put the separator after the NUL. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6910 p[len + 1] = sep; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6911 viminfo_history[type][idx].hisstr = p; |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6912 viminfo_history[type][idx].hisnum = 0; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6913 viminfo_history[type][idx].viminfo = TRUE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6914 viminfo_hisidx[type]++; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6915 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6916 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6917 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6918 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6919 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6920 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6921 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6922 /* |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6923 * Concatenate history lines from viminfo after the lines typed in this Vim. |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6924 */ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6925 static void |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6926 concat_history(int type) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6927 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6928 int idx; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6929 int i; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6930 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6931 idx = hisidx[type] + viminfo_hisidx[type]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6932 if (idx >= hislen) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6933 idx -= hislen; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6934 else if (idx < 0) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6935 idx = hislen - 1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6936 if (viminfo_add_at_front) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6937 hisidx[type] = idx; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6938 else |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6939 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6940 if (hisidx[type] == -1) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6941 hisidx[type] = hislen - 1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6942 do |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6943 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6944 if (history[type][idx].hisstr != NULL |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6945 || history[type][idx].viminfo) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6946 break; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6947 if (++idx == hislen) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6948 idx = 0; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6949 } while (idx != hisidx[type]); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6950 if (idx != hisidx[type] && --idx < 0) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6951 idx = hislen - 1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6952 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6953 for (i = 0; i < viminfo_hisidx[type]; i++) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6954 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6955 vim_free(history[type][idx].hisstr); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6956 history[type][idx].hisstr = viminfo_history[type][i].hisstr; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6957 history[type][idx].viminfo = TRUE; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6958 history[type][idx].time_set = viminfo_history[type][i].time_set; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6959 if (--idx < 0) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6960 idx = hislen - 1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6961 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6962 idx += 1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6963 idx %= hislen; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6964 for (i = 0; i < viminfo_hisidx[type]; i++) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6965 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6966 history[type][idx++].hisnum = ++hisnum[type]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6967 idx %= hislen; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6968 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6969 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6970 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6971 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6972 static int |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6973 #ifdef __BORLANDC__ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6974 _RTLENTRYF |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6975 #endif |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6976 sort_hist(const void *s1, const void *s2) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6977 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6978 histentry_T *p1 = *(histentry_T **)s1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6979 histentry_T *p2 = *(histentry_T **)s2; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6980 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6981 if (p1->time_set < p2->time_set) return -1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6982 if (p1->time_set > p2->time_set) return 1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6983 return 0; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6984 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6985 #endif |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6986 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6987 /* |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6988 * Merge history lines from viminfo and lines typed in this Vim based on the |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6989 * timestamp; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6990 */ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6991 static void |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6992 merge_history(int type) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6993 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6994 int max_len; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6995 histentry_T **tot_hist; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6996 histentry_T *new_hist; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6997 int i; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6998 int len; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6999 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7000 /* Make one long list with all entries. */ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7001 max_len = hislen + viminfo_hisidx[type]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7002 tot_hist = (histentry_T **)alloc(max_len * (int)sizeof(histentry_T *)); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7003 new_hist = (histentry_T *)alloc(hislen * (int)sizeof(histentry_T)); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7004 if (tot_hist == NULL || new_hist == NULL) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7005 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7006 vim_free(tot_hist); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7007 vim_free(new_hist); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7008 return; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7009 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7010 for (i = 0; i < viminfo_hisidx[type]; i++) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7011 tot_hist[i] = &viminfo_history[type][i]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7012 len = i; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7013 for (i = 0; i < hislen; i++) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7014 if (history[type][i].hisstr != NULL) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7015 tot_hist[len++] = &history[type][i]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7016 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7017 /* Sort the list on timestamp. */ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7018 qsort((void *)tot_hist, (size_t)len, sizeof(histentry_T *), sort_hist); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7019 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7020 /* Keep the newest ones. */ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7021 for (i = 0; i < hislen; i++) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7022 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7023 if (i < len) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7024 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7025 new_hist[i] = *tot_hist[i]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7026 tot_hist[i]->hisstr = NULL; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7027 if (new_hist[i].hisnum == 0) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7028 new_hist[i].hisnum = ++hisnum[type]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7029 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7030 else |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7031 clear_hist_entry(&new_hist[i]); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7032 } |
9287
af25a1a875db
commit https://github.com/vim/vim/commit/a890f5e34887bff7616bdb4b9ee0bf98c8d2a8f0
Christian Brabandt <cb@256bit.org>
parents:
9272
diff
changeset
|
7033 hisidx[type] = (i < len ? i : len) - 1; |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7034 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7035 /* Free what is not kept. */ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7036 for (i = 0; i < viminfo_hisidx[type]; i++) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7037 vim_free(viminfo_history[type][i].hisstr); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7038 for (i = 0; i < hislen; i++) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7039 vim_free(history[type][i].hisstr); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7040 vim_free(history[type]); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7041 history[type] = new_hist; |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9256
diff
changeset
|
7042 vim_free(tot_hist); |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7043 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7044 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7045 /* |
4285 | 7046 * Finish reading history lines from viminfo. Not used when writing viminfo. |
7047 */ | |
7 | 7048 void |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7049 finish_viminfo_history(vir_T *virp) |
7 | 7050 { |
7051 int type; | |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7052 int merge = virp->vir_version >= VIMINFO_VERSION_WITH_HISTORY; |
7 | 7053 |
7054 for (type = 0; type < HIST_COUNT; ++type) | |
7055 { | |
7056 if (history[type] == NULL) | |
4283 | 7057 continue; |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7058 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7059 if (merge) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7060 merge_history(type); |
7 | 7061 else |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7062 concat_history(type); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
7063 |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
7064 VIM_CLEAR(viminfo_history[type]); |
4327 | 7065 viminfo_hisidx[type] = 0; |
7 | 7066 } |
7067 } | |
7068 | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
7069 /* |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
7070 * Write history to viminfo file in "fp". |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
7071 * 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
|
7072 * file, data is in viminfo_history[]. |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
7073 * 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
|
7074 */ |
7 | 7075 void |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7076 write_viminfo_history(FILE *fp, int merge) |
7 | 7077 { |
7078 int i; | |
7079 int type; | |
7080 int num_saved; | |
4283 | 7081 int round; |
7 | 7082 |
7083 init_history(); | |
7084 if (hislen == 0) | |
7085 return; | |
7086 for (type = 0; type < HIST_COUNT; ++type) | |
7087 { | |
7088 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE)); | |
7089 if (num_saved == 0) | |
7090 continue; | |
7091 if (num_saved < 0) /* Use default */ | |
7092 num_saved = hislen; | |
7093 fprintf(fp, _("\n# %s History (newest to oldest):\n"), | |
7094 type == HIST_CMD ? _("Command Line") : | |
7095 type == HIST_SEARCH ? _("Search String") : | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7096 type == HIST_EXPR ? _("Expression") : |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7097 type == HIST_INPUT ? _("Input Line") : |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7098 _("Debug Line")); |
7 | 7099 if (num_saved > hislen) |
7100 num_saved = hislen; | |
4283 | 7101 |
7102 /* | |
7103 * Merge typed and viminfo history: | |
7104 * round 1: history of typed commands. | |
7105 * round 2: history from recently read viminfo. | |
7106 */ | |
7107 for (round = 1; round <= 2; ++round) | |
7108 { | |
4307 | 7109 if (round == 1) |
7110 /* start at newest entry, somewhere in the list */ | |
7111 i = hisidx[type]; | |
7112 else if (viminfo_hisidx[type] > 0) | |
7113 /* start at newest entry, first in the list */ | |
7114 i = 0; | |
7115 else | |
7116 /* empty list */ | |
7117 i = -1; | |
4283 | 7118 if (i >= 0) |
7119 while (num_saved > 0 | |
7120 && !(round == 2 && i >= viminfo_hisidx[type])) | |
7 | 7121 { |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7122 char_u *p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7123 time_t timestamp; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7124 int c = NUL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7125 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7126 if (round == 1) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7127 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7128 p = history[type][i].hisstr; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7129 timestamp = history[type][i].time_set; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7130 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7131 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7132 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7133 p = viminfo_history[type] == NULL ? NULL |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7134 : viminfo_history[type][i].hisstr; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7135 timestamp = viminfo_history[type] == NULL ? 0 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7136 : viminfo_history[type][i].time_set; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7137 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7138 |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
7139 if (p != NULL && (round == 2 |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
7140 || !merge |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
7141 || !history[type][i].viminfo)) |
7 | 7142 { |
4283 | 7143 --num_saved; |
7144 fputc(hist_type2char(type, TRUE), fp); | |
7145 /* For the search history: put the separator in the | |
7146 * second column; use a space if there isn't one. */ | |
7147 if (type == HIST_SEARCH) | |
7148 { | |
7149 c = p[STRLEN(p) + 1]; | |
7150 putc(c == NUL ? ' ' : c, fp); | |
7151 } | |
7152 viminfo_writestring(fp, p); | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7153 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7154 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7155 char cbuf[NUMBUFLEN]; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7156 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7157 /* New style history with a bar line. Format: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7158 * |{bartype},{histtype},{timestamp},{separator},"text" */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7159 if (c == NUL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7160 cbuf[0] = NUL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7161 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7162 sprintf(cbuf, "%d", c); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7163 fprintf(fp, "|%d,%d,%ld,%s,", BARTYPE_HISTORY, |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7164 type, (long)timestamp, cbuf); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7165 barline_writestring(fp, p, LSIZE - 20); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7166 putc('\n', fp); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7167 } |
7 | 7168 } |
4283 | 7169 if (round == 1) |
7170 { | |
7171 /* Decrement index, loop around and stop when back at | |
7172 * the start. */ | |
7173 if (--i < 0) | |
7174 i = hislen - 1; | |
7175 if (i == hisidx[type]) | |
7176 break; | |
7177 } | |
7178 else | |
7179 { | |
7180 /* Increment index. Stop at the end in the while. */ | |
7181 ++i; | |
7182 } | |
7 | 7183 } |
4283 | 7184 } |
4285 | 7185 for (i = 0; i < viminfo_hisidx[type]; ++i) |
4327 | 7186 if (viminfo_history[type] != NULL) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7187 vim_free(viminfo_history[type][i].hisstr); |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
7188 VIM_CLEAR(viminfo_history[type]); |
4311 | 7189 viminfo_hisidx[type] = 0; |
7 | 7190 } |
7191 } | |
7192 #endif /* FEAT_VIMINFO */ | |
7193 | |
7194 #if defined(FEAT_FKMAP) || defined(PROTO) | |
7195 /* | |
7196 * Write a character at the current cursor+offset position. | |
7197 * It is directly written into the command buffer block. | |
7198 */ | |
7199 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7200 cmd_pchar(int c, int offset) |
7 | 7201 { |
7202 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0) | |
7203 { | |
7204 EMSG(_("E198: cmd_pchar beyond the command length")); | |
7205 return; | |
7206 } | |
7207 ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c; | |
7208 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
7209 } | |
7210 | |
7211 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7212 cmd_gchar(int offset) |
7 | 7213 { |
7214 if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0) | |
7215 { | |
7216 /* EMSG(_("cmd_gchar beyond the command length")); */ | |
7217 return NUL; | |
7218 } | |
7219 return (int)ccline.cmdbuff[ccline.cmdpos + offset]; | |
7220 } | |
7221 #endif | |
7222 | |
7223 #if defined(FEAT_CMDWIN) || defined(PROTO) | |
7224 /* | |
7225 * Open a window on the current command line and history. Allow editing in | |
7226 * the window. Returns when the window is closed. | |
7227 * Returns: | |
7228 * CR if the command is to be executed | |
7229 * Ctrl_C if it is to be abandoned | |
7230 * K_IGNORE if editing continues | |
7231 */ | |
7232 static int | |
11321
f57dce6b934b
patch 8.0.0546: swap file exists briefly when opening the command window
Christian Brabandt <cb@256bit.org>
parents:
11285
diff
changeset
|
7233 open_cmdwin(void) |
7 | 7234 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7235 bufref_T old_curbuf; |
7 | 7236 win_T *old_curwin = curwin; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7237 bufref_T bufref; |
7 | 7238 win_T *wp; |
7239 int i; | |
7240 linenr_T lnum; | |
7241 int histtype; | |
7242 garray_T winsizes; | |
7243 int save_restart_edit = restart_edit; | |
7244 int save_State = State; | |
7245 int save_exmode = exmode_active; | |
510 | 7246 #ifdef FEAT_RIGHTLEFT |
7247 int save_cmdmsg_rl = cmdmsg_rl; | |
7248 #endif | |
6145 | 7249 #ifdef FEAT_FOLDING |
7250 int save_KeyTyped; | |
7251 #endif | |
7 | 7252 |
7253 /* Can't do this recursively. Can't do it when typing a password. */ | |
7254 if (cmdwin_type != 0 | |
7255 # if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
7256 || cmdline_star > 0 | |
7257 # endif | |
7258 ) | |
7259 { | |
7260 beep_flush(); | |
7261 return K_IGNORE; | |
7262 } | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7263 set_bufref(&old_curbuf, curbuf); |
7 | 7264 |
7265 /* Save current window sizes. */ | |
7266 win_size_save(&winsizes); | |
7267 | |
7268 /* Don't execute autocommands while creating the window. */ | |
1410 | 7269 block_autocmds(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
7270 |
683 | 7271 /* don't use a new tab page */ |
7272 cmdmod.tab = 0; | |
11321
f57dce6b934b
patch 8.0.0546: swap file exists briefly when opening the command window
Christian Brabandt <cb@256bit.org>
parents:
11285
diff
changeset
|
7273 cmdmod.noswapfile = 1; |
683 | 7274 |
7 | 7275 /* Create a window for the command-line buffer. */ |
7276 if (win_split((int)p_cwh, WSP_BOT) == FAIL) | |
7277 { | |
7278 beep_flush(); | |
1410 | 7279 unblock_autocmds(); |
7 | 7280 return K_IGNORE; |
7281 } | |
1831 | 7282 cmdwin_type = get_cmdline_type(); |
7 | 7283 |
7284 /* Create the command-line buffer empty. */ | |
1743 | 7285 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL); |
1621 | 7286 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE); |
7 | 7287 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL); |
7288 curbuf->b_p_ma = TRUE; | |
1865 | 7289 #ifdef FEAT_FOLDING |
7290 curwin->w_p_fen = FALSE; | |
7291 #endif | |
7 | 7292 # ifdef FEAT_RIGHTLEFT |
510 | 7293 curwin->w_p_rl = cmdmsg_rl; |
7294 cmdmsg_rl = FALSE; | |
7 | 7295 # endif |
2583 | 7296 RESET_BINDING(curwin); |
7 | 7297 |
7298 /* Do execute autocommands for setting the filetype (load syntax). */ | |
1410 | 7299 unblock_autocmds(); |
11589
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
7300 /* But don't allow switching to another buffer. */ |
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
7301 ++curbuf_lock; |
7 | 7302 |
510 | 7303 /* Showing the prompt may have set need_wait_return, reset it. */ |
7304 need_wait_return = FALSE; | |
7305 | |
1831 | 7306 histtype = hist_char2type(cmdwin_type); |
7 | 7307 if (histtype == HIST_CMD || histtype == HIST_DEBUG) |
7308 { | |
7309 if (p_wc == TAB) | |
7310 { | |
7311 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT); | |
7312 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL); | |
7313 } | |
7314 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL); | |
7315 } | |
11589
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
7316 --curbuf_lock; |
7 | 7317 |
10 | 7318 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin |
7319 * sets 'textwidth' to 78). */ | |
7320 curbuf->b_p_tw = 0; | |
7321 | |
7 | 7322 /* Fill the buffer with the history. */ |
7323 init_history(); | |
7324 if (hislen > 0) | |
7325 { | |
7326 i = hisidx[histtype]; | |
7327 if (i >= 0) | |
7328 { | |
7329 lnum = 0; | |
7330 do | |
7331 { | |
7332 if (++i == hislen) | |
7333 i = 0; | |
7334 if (history[histtype][i].hisstr != NULL) | |
7335 ml_append(lnum++, history[histtype][i].hisstr, | |
7336 (colnr_T)0, FALSE); | |
7337 } | |
7338 while (i != hisidx[histtype]); | |
7339 } | |
7340 } | |
7341 | |
7342 /* Replace the empty last line with the current command-line and put the | |
7343 * cursor there. */ | |
7344 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE); | |
7345 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
7346 curwin->w_cursor.col = ccline.cmdpos; | |
510 | 7347 changed_line_abv_curs(); |
7348 invalidate_botline(); | |
743 | 7349 redraw_later(SOME_VALID); |
7 | 7350 |
7351 /* No Ex mode here! */ | |
7352 exmode_active = 0; | |
7353 | |
7354 State = NORMAL; | |
7355 # ifdef FEAT_MOUSE | |
7356 setmouse(); | |
7357 # endif | |
7358 | |
7359 /* Trigger CmdwinEnter autocommands. */ | |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
7360 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER); |
929 | 7361 if (restart_edit != 0) /* autocmd with ":startinsert" */ |
7362 stuffcharReadbuff(K_NOP); | |
7 | 7363 |
7364 i = RedrawingDisabled; | |
7365 RedrawingDisabled = 0; | |
7366 | |
7367 /* | |
7368 * Call the main loop until <CR> or CTRL-C is typed. | |
7369 */ | |
7370 cmdwin_result = 0; | |
168 | 7371 main_loop(TRUE, FALSE); |
7 | 7372 |
7373 RedrawingDisabled = i; | |
7374 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
7375 # ifdef FEAT_FOLDING |
6145 | 7376 save_KeyTyped = KeyTyped; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
7377 # endif |
6145 | 7378 |
7 | 7379 /* Trigger CmdwinLeave autocommands. */ |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
7380 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE); |
6145 | 7381 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
7382 # ifdef FEAT_FOLDING |
6145 | 7383 /* Restore KeyTyped in case it is modified by autocommands */ |
7384 KeyTyped = save_KeyTyped; | |
7 | 7385 # endif |
7386 | |
7387 cmdwin_type = 0; | |
7388 exmode_active = save_exmode; | |
7389 | |
1612 | 7390 /* Safety check: The old window or buffer was deleted: It's a bug when |
7 | 7391 * this happens! */ |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7392 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf)) |
7 | 7393 { |
7394 cmdwin_result = Ctrl_C; | |
7395 EMSG(_("E199: Active window or buffer deleted")); | |
7396 } | |
7397 else | |
7398 { | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
7399 # if defined(FEAT_EVAL) |
7 | 7400 /* autocmds may abort script processing */ |
7401 if (aborting() && cmdwin_result != K_IGNORE) | |
7402 cmdwin_result = Ctrl_C; | |
7403 # endif | |
7404 /* Set the new command line from the cmdline buffer. */ | |
7405 vim_free(ccline.cmdbuff); | |
510 | 7406 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */ |
7 | 7407 { |
510 | 7408 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!"; |
7409 | |
7410 if (histtype == HIST_CMD) | |
7411 { | |
7412 /* Execute the command directly. */ | |
7413 ccline.cmdbuff = vim_strsave((char_u *)p); | |
7414 cmdwin_result = CAR; | |
7415 } | |
7416 else | |
7417 { | |
7418 /* First need to cancel what we were doing. */ | |
7419 ccline.cmdbuff = NULL; | |
7420 stuffcharReadbuff(':'); | |
7421 stuffReadbuff((char_u *)p); | |
7422 stuffcharReadbuff(CAR); | |
7423 } | |
7 | 7424 } |
7425 else if (cmdwin_result == K_XF2) /* :qa typed */ | |
7426 { | |
7427 ccline.cmdbuff = vim_strsave((char_u *)"qa"); | |
7428 cmdwin_result = CAR; | |
7429 } | |
2839 | 7430 else if (cmdwin_result == Ctrl_C) |
7431 { | |
7432 /* :q or :close, don't execute any command | |
7433 * and don't modify the cmd window. */ | |
7434 ccline.cmdbuff = NULL; | |
7435 } | |
7 | 7436 else |
7437 ccline.cmdbuff = vim_strsave(ml_get_curline()); | |
7438 if (ccline.cmdbuff == NULL) | |
11647
aa426eb9589d
patch 8.0.0706: crash when cancelling the cmdline window in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11619
diff
changeset
|
7439 { |
aa426eb9589d
patch 8.0.0706: crash when cancelling the cmdline window in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11619
diff
changeset
|
7440 ccline.cmdbuff = vim_strsave((char_u *)""); |
aa426eb9589d
patch 8.0.0706: crash when cancelling the cmdline window in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11619
diff
changeset
|
7441 ccline.cmdlen = 0; |
aa426eb9589d
patch 8.0.0706: crash when cancelling the cmdline window in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11619
diff
changeset
|
7442 ccline.cmdbufflen = 1; |
aa426eb9589d
patch 8.0.0706: crash when cancelling the cmdline window in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11619
diff
changeset
|
7443 ccline.cmdpos = 0; |
7 | 7444 cmdwin_result = Ctrl_C; |
11647
aa426eb9589d
patch 8.0.0706: crash when cancelling the cmdline window in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11619
diff
changeset
|
7445 } |
7 | 7446 else |
7447 { | |
7448 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); | |
7449 ccline.cmdbufflen = ccline.cmdlen + 1; | |
7450 ccline.cmdpos = curwin->w_cursor.col; | |
7451 if (ccline.cmdpos > ccline.cmdlen) | |
7452 ccline.cmdpos = ccline.cmdlen; | |
7453 if (cmdwin_result == K_IGNORE) | |
7454 { | |
7455 set_cmdspos_cursor(); | |
7456 redrawcmd(); | |
7457 } | |
7458 } | |
7459 | |
7460 /* Don't execute autocommands while deleting the window. */ | |
1410 | 7461 block_autocmds(); |
6876 | 7462 # ifdef FEAT_CONCEAL |
7463 /* Avoid command-line window first character being concealed. */ | |
7464 curwin->w_p_cole = 0; | |
7465 # endif | |
7 | 7466 wp = curwin; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7467 set_bufref(&bufref, curbuf); |
7 | 7468 win_goto(old_curwin); |
7469 win_close(wp, TRUE); | |
2099
c1f67ce5740a
updated for version 7.2.382
Bram Moolenaar <bram@zimbu.org>
parents:
2097
diff
changeset
|
7470 |
c1f67ce5740a
updated for version 7.2.382
Bram Moolenaar <bram@zimbu.org>
parents:
2097
diff
changeset
|
7471 /* 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
|
7472 * set to 'wipe' */ |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7473 if (bufref_valid(&bufref)) |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7474 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE); |
7 | 7475 |
7476 /* Restore window sizes. */ | |
7477 win_size_restore(&winsizes); | |
7478 | |
1410 | 7479 unblock_autocmds(); |
7 | 7480 } |
7481 | |
7482 ga_clear(&winsizes); | |
7483 restart_edit = save_restart_edit; | |
510 | 7484 # ifdef FEAT_RIGHTLEFT |
7485 cmdmsg_rl = save_cmdmsg_rl; | |
7486 # endif | |
7 | 7487 |
7488 State = save_State; | |
7489 # ifdef FEAT_MOUSE | |
7490 setmouse(); | |
7491 # endif | |
7492 | |
7493 return cmdwin_result; | |
7494 } | |
7495 #endif /* FEAT_CMDWIN */ | |
7496 | |
7497 /* | |
7498 * Used for commands that either take a simple command string argument, or: | |
7499 * cmd << endmarker | |
7500 * {script} | |
7501 * endmarker | |
7502 * Returns a pointer to allocated memory with {script} or NULL. | |
7503 */ | |
7504 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7505 script_get(exarg_T *eap, char_u *cmd) |
7 | 7506 { |
7507 char_u *theline; | |
7508 char *end_pattern = NULL; | |
7509 char dot[] = "."; | |
7510 garray_T ga; | |
7511 | |
7512 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL) | |
7513 return NULL; | |
7514 | |
7515 ga_init2(&ga, 1, 0x400); | |
7516 | |
7517 if (cmd[2] != NUL) | |
7518 end_pattern = (char *)skipwhite(cmd + 2); | |
7519 else | |
7520 end_pattern = dot; | |
7521 | |
7522 for (;;) | |
7523 { | |
7524 theline = eap->getline( | |
7525 #ifdef FEAT_EVAL | |
75 | 7526 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 7527 #endif |
7528 NUL, eap->cookie, 0); | |
7529 | |
7530 if (theline == NULL || STRCMP(end_pattern, theline) == 0) | |
1694 | 7531 { |
7532 vim_free(theline); | |
7 | 7533 break; |
1694 | 7534 } |
7 | 7535 |
7536 ga_concat(&ga, theline); | |
7537 ga_append(&ga, '\n'); | |
7538 vim_free(theline); | |
7539 } | |
21 | 7540 ga_append(&ga, NUL); |
7 | 7541 |
7542 return (char_u *)ga.ga_data; | |
7543 } |