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