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