Mercurial > vim
annotate src/ex_getln.c @ 16875:df19064e8d01
Added tag v8.1.1438 for changeset da5f5836e90cf76777692a66362061c25178bd2a
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 01 Jun 2019 14:30:07 +0200 |
parents | ce04ebdf26b8 |
children | da2bb80cd838 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9990
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * ex_getln.c: Functions for entering and editing an Ex command line. | |
12 */ | |
13 | |
14 #include "vim.h" | |
15 | |
14548
806e1a2648c6
patch 8.1.0287: MAX is not defined everywhere
Christian Brabandt <cb@256bit.org>
parents:
14546
diff
changeset
|
16 #ifndef MAX |
806e1a2648c6
patch 8.1.0287: MAX is not defined everywhere
Christian Brabandt <cb@256bit.org>
parents:
14546
diff
changeset
|
17 # define MAX(x,y) ((x) > (y) ? (x) : (y)) |
806e1a2648c6
patch 8.1.0287: MAX is not defined everywhere
Christian Brabandt <cb@256bit.org>
parents:
14546
diff
changeset
|
18 #endif |
806e1a2648c6
patch 8.1.0287: MAX is not defined everywhere
Christian Brabandt <cb@256bit.org>
parents:
14546
diff
changeset
|
19 |
7 | 20 /* |
21 * Variables shared between getcmdline(), redrawcmdline() and others. | |
22 * These need to be saved when using CTRL-R |, that's why they are in a | |
23 * structure. | |
24 */ | |
25 struct cmdline_info | |
26 { | |
27 char_u *cmdbuff; /* pointer to command line buffer */ | |
28 int cmdbufflen; /* length of cmdbuff */ | |
29 int cmdlen; /* number of chars in command line */ | |
30 int cmdpos; /* current cursor position */ | |
31 int cmdspos; /* cursor column on screen */ | |
3503 | 32 int cmdfirstc; /* ':', '/', '?', '=', '>' or NUL */ |
7 | 33 int cmdindent; /* number of spaces before cmdline */ |
34 char_u *cmdprompt; /* message in front of cmdline */ | |
35 int cmdattr; /* attributes for prompt */ | |
36 int overstrike; /* Typing mode on the command line. Shared by | |
37 getcmdline() and put_on_cmdline(). */ | |
1718 | 38 expand_T *xpc; /* struct being used for expansion, xp_pattern |
39 may point into cmdbuff */ | |
531 | 40 int xp_context; /* type of expansion */ |
41 # ifdef FEAT_EVAL | |
42 char_u *xp_arg; /* user-defined expansion arg */ | |
1039 | 43 int input_fn; /* when TRUE Invoked for input() function */ |
531 | 44 # endif |
7 | 45 }; |
46 | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
47 // The current cmdline_info. It is initialized in getcmdline() and after that |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
48 // used by other functions. When invoking getcmdline() recursively it needs |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
49 // to be saved with save_cmdline() and restored with restore_cmdline(). |
1718 | 50 static struct cmdline_info ccline; |
7 | 51 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
52 static int cmd_showtail; /* Only show path tail in lists ? */ |
7 | 53 |
54 #ifdef FEAT_EVAL | |
55 static int new_cmdpos; /* position set by set_cmdline_pos() */ | |
56 #endif | |
57 | |
11664
e3bfe624ba0a
patch 8.0.0714: when a timer causes a command line redraw " goes missing
Christian Brabandt <cb@256bit.org>
parents:
11647
diff
changeset
|
58 static int extra_char = NUL; /* extra character to display when redrawing |
e3bfe624ba0a
patch 8.0.0714: when a timer causes a command line redraw " goes missing
Christian Brabandt <cb@256bit.org>
parents:
11647
diff
changeset
|
59 * the command line */ |
11674
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
60 static int extra_char_shift; |
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
61 |
7 | 62 #ifdef FEAT_CMDHIST |
63 typedef struct hist_entry | |
64 { | |
65 int hisnum; /* identifying number */ | |
4258 | 66 int viminfo; /* when TRUE hisstr comes from viminfo */ |
7 | 67 char_u *hisstr; /* actual entry, separator char after the NUL */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
68 time_t time_set; /* when it was typed, zero if unknown */ |
7 | 69 } histentry_T; |
70 | |
71 static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL}; | |
72 static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */ | |
73 static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0}; | |
74 /* identifying (unique) number of newest history entry */ | |
75 static int hislen = 0; /* actual length of history tables */ | |
76 | |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
77 static int hist_char2type(int c); |
7 | 78 #endif |
79 | |
80 #ifdef FEAT_RIGHTLEFT | |
81 static int cmd_hkmap = 0; /* Hebrew mapping during command line */ | |
82 #endif | |
83 | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
84 static char_u *getcmdline_int(int firstc, long count, int indent, int init_ccline); |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
85 static int cmdline_charsize(int idx); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
86 static void set_cmdspos(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
87 static void set_cmdspos_cursor(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
88 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
|
89 static void alloc_cmdbuff(int len); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
90 static int realloc_cmdbuff(int len); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
91 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
|
92 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
|
93 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
|
94 static int cmdline_paste(int regname, int literally, int remcr); |
7 | 95 #ifdef FEAT_WILDMENU |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
96 static void cmdline_del(int from); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
97 #endif |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
98 static void redrawcmdprompt(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
99 static void cursorcmd(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
100 static int ccheck_abbr(int); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
101 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
|
102 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
|
103 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
|
104 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
|
105 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
|
106 static int expand_showtail(expand_T *xp); |
7 | 107 #ifdef FEAT_CMDL_COMPL |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
108 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
|
109 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
|
110 static int ExpandPackAddDir(char_u *pat, int *num_file, char_u ***file); |
3503 | 111 # ifdef FEAT_CMDHIST |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
112 static char_u *get_history_arg(expand_T *xp, int idx); |
3503 | 113 # endif |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16287
diff
changeset
|
114 # if defined(FEAT_EVAL) |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
115 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
|
116 static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file); |
7 | 117 # endif |
118 #endif | |
4265 | 119 #ifdef FEAT_CMDHIST |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
120 static void clear_hist_entry(histentry_T *hisptr); |
4265 | 121 #endif |
7 | 122 |
123 #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
|
124 static int open_cmdwin(void); |
7 | 125 #endif |
126 | |
3164 | 127 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
16606
7e733046db1d
patch 8.1.1306: Borland support is outdated and doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
128 static int sort_func_compare(const void *s1, const void *s2); |
3164 | 129 #endif |
130 | |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
131 |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
132 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
|
133 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
|
134 { |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
135 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
|
136 |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
137 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
|
138 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
|
139 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
|
140 } |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
141 |
7 | 142 /* |
12664
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
143 * 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
|
144 */ |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
145 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
|
146 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
|
147 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
148 VIM_CLEAR(ccline.cmdbuff); |
12664
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
149 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
|
150 compute_cmdrow(); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
151 msg(""); |
12664
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
152 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
|
153 } |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
154 |
13047
669c4f75a69e
patch 8.0.1399: warnings and errors when building tiny version
Christian Brabandt <cb@256bit.org>
parents:
13041
diff
changeset
|
155 #ifdef FEAT_SEARCH_EXTRA |
12664
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
156 /* |
13035
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
157 * 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
|
158 * 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
|
159 */ |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
160 static int |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
161 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
|
162 { |
13107
fe7d576a3d3f
patch 8.0.1428: compiler warning on 64 bit MS-Windows system
Christian Brabandt <cb@256bit.org>
parents:
13047
diff
changeset
|
163 size_t n = STRLEN(p); |
13035
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
164 |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
165 /* 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
|
166 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
|
167 && 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
|
168 n -= 2; |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
169 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
|
170 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
171 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
172 // Struct to store the viewstate during 'incsearch' highlighting. |
13794
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
173 typedef struct { |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
174 colnr_T vs_curswant; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
175 colnr_T vs_leftcol; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
176 linenr_T vs_topline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
177 # ifdef FEAT_DIFF |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
178 int vs_topfill; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
179 # endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
180 linenr_T vs_botline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
181 linenr_T vs_empty_rows; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
182 } viewstate_T; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
183 |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
184 static void |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
185 save_viewstate(viewstate_T *vs) |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
186 { |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
187 vs->vs_curswant = curwin->w_curswant; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
188 vs->vs_leftcol = curwin->w_leftcol; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
189 vs->vs_topline = curwin->w_topline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
190 # ifdef FEAT_DIFF |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
191 vs->vs_topfill = curwin->w_topfill; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
192 # endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
193 vs->vs_botline = curwin->w_botline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
194 vs->vs_empty_rows = curwin->w_empty_rows; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
195 } |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
196 |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
197 static void |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
198 restore_viewstate(viewstate_T *vs) |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
199 { |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
200 curwin->w_curswant = vs->vs_curswant; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
201 curwin->w_leftcol = vs->vs_leftcol; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
202 curwin->w_topline = vs->vs_topline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
203 # ifdef FEAT_DIFF |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
204 curwin->w_topfill = vs->vs_topfill; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
205 # endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
206 curwin->w_botline = vs->vs_botline; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
207 curwin->w_empty_rows = vs->vs_empty_rows; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
208 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
209 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
210 // Struct to store the state of 'incsearch' highlighting. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
211 typedef struct { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
212 pos_T search_start; // where 'incsearch' starts searching |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
213 pos_T save_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
214 viewstate_T init_viewstate; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
215 viewstate_T old_viewstate; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
216 pos_T match_start; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
217 pos_T match_end; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
218 int did_incsearch; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
219 int incsearch_postponed; |
14546
35e7ead872db
patch 8.1.0286: 'incsearch' does not apply to :smagic and :snomagic
Christian Brabandt <cb@256bit.org>
parents:
14544
diff
changeset
|
220 int magic_save; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
221 } incsearch_state_T; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
222 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
223 static void |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
224 init_incsearch_state(incsearch_state_T *is_state) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
225 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
226 is_state->match_start = curwin->w_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
227 is_state->did_incsearch = FALSE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
228 is_state->incsearch_postponed = FALSE; |
14546
35e7ead872db
patch 8.1.0286: 'incsearch' does not apply to :smagic and :snomagic
Christian Brabandt <cb@256bit.org>
parents:
14544
diff
changeset
|
229 is_state->magic_save = p_magic; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
230 CLEAR_POS(&is_state->match_end); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
231 is_state->save_cursor = curwin->w_cursor; // may be restored later |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
232 is_state->search_start = curwin->w_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
233 save_viewstate(&is_state->init_viewstate); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
234 save_viewstate(&is_state->old_viewstate); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
235 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
236 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
237 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
238 * First move cursor to end of match, then to the start. This |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
239 * moves the whole match onto the screen when 'nowrap' is set. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
240 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
241 static void |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
242 set_search_match(pos_T *t) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
243 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
244 t->lnum += search_match_lines; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
245 t->col = search_match_endcol; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
246 if (t->lnum > curbuf->b_ml.ml_line_count) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
247 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
248 t->lnum = curbuf->b_ml.ml_line_count; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
249 coladvance((colnr_T)MAXCOL); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
250 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
251 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
252 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
253 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
254 * Return TRUE when 'incsearch' highlighting is to be done. |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
255 * Sets search_first_line and search_last_line to the address range. |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
256 * May change the last search pattern. |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
257 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
258 static int |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
259 do_incsearch_highlighting(int firstc, incsearch_state_T *is_state, |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
260 int *skiplen, int *patlen) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
261 { |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
262 char_u *cmd; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
263 cmdmod_T save_cmdmod = cmdmod; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
264 char_u *p; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
265 int delim_optional = FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
266 int delim; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
267 char_u *end; |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
268 char *dummy; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
269 exarg_T ea; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
270 pos_T save_cursor; |
14613
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
271 int use_last_pat; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
272 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
273 *skiplen = 0; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
274 *patlen = ccline.cmdlen; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
275 |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
276 if (!p_is || cmd_silent) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
277 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
278 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
279 // by default search all lines |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
280 search_first_line = 0; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
281 search_last_line = MAXLNUM; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
282 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
283 if (firstc == '/' || firstc == '?') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
284 return TRUE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
285 if (firstc != ':') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
286 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
287 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
288 vim_memset(&ea, 0, sizeof(ea)); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
289 ea.line1 = 1; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
290 ea.line2 = 1; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
291 ea.cmd = ccline.cmdbuff; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
292 ea.addr_type = ADDR_LINES; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
293 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
294 parse_command_modifiers(&ea, &dummy, TRUE); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
295 cmdmod = save_cmdmod; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
296 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
297 cmd = skip_range(ea.cmd, NULL); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
298 if (vim_strchr((char_u *)"sgvl", *cmd) == NULL) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
299 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
300 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
301 // Skip over "substitute" to find the pattern separator. |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
302 for (p = cmd; ASCII_ISALPHA(*p); ++p) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
303 ; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
304 if (*skipwhite(p) == NUL) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
305 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
306 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
307 if (STRNCMP(cmd, "substitute", p - cmd) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
308 || STRNCMP(cmd, "smagic", p - cmd) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
309 || STRNCMP(cmd, "snomagic", MAX(p - cmd, 3)) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
310 || STRNCMP(cmd, "vglobal", p - cmd) == 0) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
311 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
312 if (*cmd == 's' && cmd[1] == 'm') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
313 p_magic = TRUE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
314 else if (*cmd == 's' && cmd[1] == 'n') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
315 p_magic = FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
316 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
317 else if (STRNCMP(cmd, "sort", MAX(p - cmd, 3)) == 0) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
318 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
319 // skip over flags |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
320 while (ASCII_ISALPHA(*(p = skipwhite(p)))) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
321 ++p; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
322 if (*p == NUL) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
323 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
324 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
325 else if (STRNCMP(cmd, "vimgrep", MAX(p - cmd, 3)) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
326 || STRNCMP(cmd, "vimgrepadd", MAX(p - cmd, 8)) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
327 || STRNCMP(cmd, "lvimgrep", MAX(p - cmd, 2)) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
328 || STRNCMP(cmd, "lvimgrepadd", MAX(p - cmd, 9)) == 0 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
329 || STRNCMP(cmd, "global", p - cmd) == 0) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
330 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
331 // skip over "!" |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
332 if (*p == '!') |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
333 { |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
334 p++; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
335 if (*skipwhite(p) == NUL) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
336 return FALSE; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
337 } |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
338 if (*cmd != 'g') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
339 delim_optional = TRUE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
340 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
341 else |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
342 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
343 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
344 p = skipwhite(p); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
345 delim = (delim_optional && vim_isIDc(*p)) ? ' ' : *p++; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
346 end = skip_regexp(p, delim, p_magic, NULL); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
347 |
14613
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
348 use_last_pat = end == p && *end == delim; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
349 |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
350 if (end == p && !use_last_pat) |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
351 return FALSE; |
14613
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
352 |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
353 // Don't do 'hlsearch' highlighting if the pattern matches everything. |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
354 if (!use_last_pat) |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
355 { |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
356 char c = *end; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
357 int empty; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
358 |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
359 *end = NUL; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
360 empty = empty_pattern(p); |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
361 *end = c; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
362 if (empty) |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
363 return FALSE; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
364 } |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
365 |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
366 // found a non-empty pattern or // |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
367 *skiplen = (int)(p - ccline.cmdbuff); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
368 *patlen = (int)(end - p); |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
369 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
370 // parse the address range |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
371 save_cursor = curwin->w_cursor; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
372 curwin->w_cursor = is_state->search_start; |
14760
fd69edd2c67e
patch 8.1.0392: error while typing :/foo/s// with 'incsearch' enabled
Christian Brabandt <cb@256bit.org>
parents:
14700
diff
changeset
|
373 parse_cmd_address(&ea, &dummy, TRUE); |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
374 if (ea.addr_count > 0) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
375 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
376 // Allow for reverse match. |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
377 if (ea.line2 < ea.line1) |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
378 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
379 search_first_line = ea.line2; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
380 search_last_line = ea.line1; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
381 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
382 else |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
383 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
384 search_first_line = ea.line1; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
385 search_last_line = ea.line2; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
386 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
387 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
388 else if (cmd[0] == 's' && cmd[1] != 'o') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
389 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
390 // :s defaults to the current line |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
391 search_first_line = curwin->w_cursor.lnum; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
392 search_last_line = curwin->w_cursor.lnum; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
393 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
394 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
395 curwin->w_cursor = save_cursor; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
396 return TRUE; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
397 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
398 |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
399 static void |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
400 finish_incsearch_highlighting( |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
401 int gotesc, |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
402 incsearch_state_T *is_state, |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
403 int call_update_screen) |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
404 { |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
405 if (is_state->did_incsearch) |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
406 { |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
407 is_state->did_incsearch = FALSE; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
408 if (gotesc) |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
409 curwin->w_cursor = is_state->save_cursor; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
410 else |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
411 { |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
412 if (!EQUAL_POS(is_state->save_cursor, is_state->search_start)) |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
413 { |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
414 // put the '" mark at the original position |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
415 curwin->w_cursor = is_state->save_cursor; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
416 setpcmark(); |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
417 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
418 curwin->w_cursor = is_state->search_start; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
419 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
420 restore_viewstate(&is_state->old_viewstate); |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
421 highlight_match = FALSE; |
14652
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
422 |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
423 // by default search all lines |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
424 search_first_line = 0; |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
425 search_last_line = MAXLNUM; |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
426 |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
427 p_magic = is_state->magic_save; |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
428 |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
429 validate_cursor(); /* needed for TAB */ |
14774
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
430 redraw_all_later(SOME_VALID); |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
431 if (call_update_screen) |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
432 update_screen(SOME_VALID); |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
433 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
434 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
435 |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
436 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
437 * Do 'incsearch' highlighting if desired. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
438 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
439 static void |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
440 may_do_incsearch_highlighting( |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
441 int firstc, |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
442 long count, |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
443 incsearch_state_T *is_state) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
444 { |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
445 int skiplen, patlen; |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
446 int found; // do_search() result |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
447 pos_T end_pos; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
448 #ifdef FEAT_RELTIME |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
449 proftime_T tm; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
450 #endif |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
451 int next_char; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
452 int use_last_pat; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
453 |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
454 // Parsing range may already set the last search pattern. |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15064
diff
changeset
|
455 // NOTE: must call restore_last_search_pattern() before returning! |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
456 save_last_search_pattern(); |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
457 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
458 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen)) |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
459 { |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
460 restore_last_search_pattern(); |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
461 finish_incsearch_highlighting(FALSE, is_state, TRUE); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
462 return; |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
463 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
464 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
465 // If there is a character waiting, search and redraw later. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
466 if (char_avail()) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
467 { |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
468 restore_last_search_pattern(); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
469 is_state->incsearch_postponed = TRUE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
470 return; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
471 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
472 is_state->incsearch_postponed = FALSE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
473 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
474 if (search_first_line == 0) |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
475 // start at the original cursor position |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
476 curwin->w_cursor = is_state->search_start; |
14976
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
477 else if (search_first_line > curbuf->b_ml.ml_line_count) |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
478 { |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
479 // start after the last line |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
480 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
481 curwin->w_cursor.col = MAXCOL; |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
482 } |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
483 else |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
484 { |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
485 // start at the first line in the range |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
486 curwin->w_cursor.lnum = search_first_line; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
487 curwin->w_cursor.col = 0; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
488 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
489 |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
490 // Use the previous pattern for ":s//". |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
491 next_char = ccline.cmdbuff[skiplen + patlen]; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
492 use_last_pat = patlen == 0 && skiplen > 0 |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
493 && ccline.cmdbuff[skiplen - 1] == next_char; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
494 |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
495 // If there is no pattern, don't do anything. |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
496 if (patlen == 0 && !use_last_pat) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
497 { |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
498 found = 0; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
499 set_no_hlsearch(TRUE); // turn off previous highlight |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
500 redraw_all_later(SOME_VALID); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
501 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
502 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
503 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
504 int search_flags = SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
505 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
506 cursor_off(); // so the user knows we're busy |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
507 out_flush(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
508 ++emsg_off; // so it doesn't beep if bad expr |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
509 #ifdef FEAT_RELTIME |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
510 // Set the time limit to half a second. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
511 profile_setlimit(500L, &tm); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
512 #endif |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
513 if (!p_hls) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
514 search_flags += SEARCH_KEEP; |
14524
e36d6e01708c
patch 8.1.0275: 'incsearch' with :s doesn't start at cursor line
Christian Brabandt <cb@256bit.org>
parents:
14522
diff
changeset
|
515 if (search_first_line != 0) |
e36d6e01708c
patch 8.1.0275: 'incsearch' with :s doesn't start at cursor line
Christian Brabandt <cb@256bit.org>
parents:
14522
diff
changeset
|
516 search_flags += SEARCH_START; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
517 ccline.cmdbuff[skiplen + patlen] = NUL; |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
518 found = do_search(NULL, firstc == ':' ? '/' : firstc, |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
519 ccline.cmdbuff + skiplen, count, search_flags, |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
520 #ifdef FEAT_RELTIME |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
521 &tm, NULL |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
522 #else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
523 NULL, NULL |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
524 #endif |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
525 ); |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
526 ccline.cmdbuff[skiplen + patlen] = next_char; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
527 --emsg_off; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
528 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
529 if (curwin->w_cursor.lnum < search_first_line |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
530 || curwin->w_cursor.lnum > search_last_line) |
14542
116a01c73fd8
patch 8.1.0284: 'cursorline' highlighting wrong with 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14538
diff
changeset
|
531 { |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
532 // match outside of address range |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
533 found = 0; |
14542
116a01c73fd8
patch 8.1.0284: 'cursorline' highlighting wrong with 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14538
diff
changeset
|
534 curwin->w_cursor = is_state->search_start; |
116a01c73fd8
patch 8.1.0284: 'cursorline' highlighting wrong with 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14538
diff
changeset
|
535 } |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
536 |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
537 // if interrupted while searching, behave like it failed |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
538 if (got_int) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
539 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
540 (void)vpeekc(); // remove <C-C> from input stream |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
541 got_int = FALSE; // don't abandon the command line |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
542 found = 0; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
543 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
544 else if (char_avail()) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
545 // cancelled searching because a char was typed |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
546 is_state->incsearch_postponed = TRUE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
547 } |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
548 if (found != 0) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
549 highlight_match = TRUE; // highlight position |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
550 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
551 highlight_match = FALSE; // remove highlight |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
552 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
553 // First restore the old curwin values, so the screen is positioned in the |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
554 // same way as the actual search command. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
555 restore_viewstate(&is_state->old_viewstate); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
556 changed_cline_bef_curs(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
557 update_topline(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
558 |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
559 if (found != 0) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
560 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
561 pos_T save_pos = curwin->w_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
562 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
563 is_state->match_start = curwin->w_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
564 set_search_match(&curwin->w_cursor); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
565 validate_cursor(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
566 end_pos = curwin->w_cursor; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
567 is_state->match_end = end_pos; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
568 curwin->w_cursor = save_pos; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
569 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
570 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
571 end_pos = curwin->w_cursor; // shutup gcc 4 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
572 |
14615
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
573 // Disable 'hlsearch' highlighting if the pattern matches everything. |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
574 // Avoids a flash when typing "foo\|". |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
575 if (!use_last_pat) |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
576 { |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
577 next_char = ccline.cmdbuff[skiplen + patlen]; |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
578 ccline.cmdbuff[skiplen + patlen] = NUL; |
14774
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
579 if (empty_pattern(ccline.cmdbuff) && !no_hlsearch) |
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
580 { |
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
581 redraw_all_later(SOME_VALID); |
14615
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
582 set_no_hlsearch(TRUE); |
14774
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
583 } |
14615
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
584 ccline.cmdbuff[skiplen + patlen] = next_char; |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
585 } |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
586 |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
587 validate_cursor(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
588 // May redraw the status line to show the cursor position. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
589 if (p_ru && curwin->w_status_height > 0) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
590 curwin->w_redr_status = TRUE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
591 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
592 update_screen(SOME_VALID); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
593 restore_last_search_pattern(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
594 |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
595 // Leave it at the end to make CTRL-R CTRL-W work. But not when beyond the |
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
596 // end of the pattern, e.g. for ":s/pat/". |
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
597 if (ccline.cmdbuff[skiplen + patlen] != NUL) |
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
598 curwin->w_cursor = is_state->search_start; |
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
599 else if (found != 0) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
600 curwin->w_cursor = end_pos; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
601 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
602 msg_starthere(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
603 redrawcmdline(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
604 is_state->did_incsearch = TRUE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
605 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
606 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
607 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
608 * May adjust 'incsearch' highlighting for typing CTRL-G and CTRL-T, go to next |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
609 * or previous match. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
610 * Returns FAIL when jumping to cmdline_not_changed; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
611 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
612 static int |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
613 may_adjust_incsearch_highlighting( |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
614 int firstc, |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
615 long count, |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
616 incsearch_state_T *is_state, |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
617 int c) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
618 { |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
619 int skiplen, patlen; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
620 pos_T t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
621 char_u *pat; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
622 int search_flags = SEARCH_NOOF; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
623 int i; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
624 int save; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
625 |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
626 // Parsing range may already set the last search pattern. |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15064
diff
changeset
|
627 // NOTE: must call restore_last_search_pattern() before returning! |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
628 save_last_search_pattern(); |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
629 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
630 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen)) |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
631 { |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
632 restore_last_search_pattern(); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
633 return OK; |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
634 } |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
635 if (patlen == 0 && ccline.cmdbuff[skiplen] == NUL) |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
636 { |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
637 restore_last_search_pattern(); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
638 return FAIL; |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
639 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
640 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
641 if (firstc == ccline.cmdbuff[skiplen]) |
14520
20866abc790b
patch 8.1.0273: invalid memory access when using 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14515
diff
changeset
|
642 { |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
643 pat = last_search_pattern(); |
14520
20866abc790b
patch 8.1.0273: invalid memory access when using 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14515
diff
changeset
|
644 skiplen = 0; |
14544
2b2d7ae42fb8
patch 8.1.0285: compiler warning for conversion
Christian Brabandt <cb@256bit.org>
parents:
14542
diff
changeset
|
645 patlen = (int)STRLEN(pat); |
14520
20866abc790b
patch 8.1.0273: invalid memory access when using 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14515
diff
changeset
|
646 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
647 else |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
648 pat = ccline.cmdbuff + skiplen; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
649 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
650 cursor_off(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
651 out_flush(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
652 if (c == Ctrl_G) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
653 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
654 t = is_state->match_end; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
655 if (LT_POS(is_state->match_start, is_state->match_end)) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
656 // Start searching at the end of the match not at the beginning of |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
657 // the next column. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
658 (void)decl(&t); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
659 search_flags += SEARCH_COL; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
660 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
661 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
662 t = is_state->match_start; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
663 if (!p_hls) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
664 search_flags += SEARCH_KEEP; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
665 ++emsg_off; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
666 save = pat[patlen]; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
667 pat[patlen] = NUL; |
15239
db5d2429bda3
patch 8.1.0629: "gn" selects the wrong text with a multi-line match
Bram Moolenaar <Bram@vim.org>
parents:
15138
diff
changeset
|
668 i = searchit(curwin, curbuf, &t, NULL, |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
669 c == Ctrl_G ? FORWARD : BACKWARD, |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
670 pat, count, search_flags, |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
671 RE_SEARCH, 0, NULL, NULL); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
672 --emsg_off; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
673 pat[patlen] = save; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
674 if (i) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
675 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
676 is_state->search_start = is_state->match_start; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
677 is_state->match_end = t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
678 is_state->match_start = t; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
679 if (c == Ctrl_T && firstc != '?') |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
680 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
681 // Move just before the current match, so that when nv_search |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
682 // finishes the cursor will be put back on the match. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
683 is_state->search_start = t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
684 (void)decl(&is_state->search_start); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
685 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
686 else if (c == Ctrl_G && firstc == '?') |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
687 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
688 // Move just after the current match, so that when nv_search |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
689 // finishes the cursor will be put back on the match. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
690 is_state->search_start = t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
691 (void)incl(&is_state->search_start); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
692 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
693 if (LT_POS(t, is_state->search_start) && c == Ctrl_G) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
694 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
695 // wrap around |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
696 is_state->search_start = t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
697 if (firstc == '?') |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
698 (void)incl(&is_state->search_start); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
699 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
700 (void)decl(&is_state->search_start); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
701 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
702 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
703 set_search_match(&is_state->match_end); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
704 curwin->w_cursor = is_state->match_start; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
705 changed_cline_bef_curs(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
706 update_topline(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
707 validate_cursor(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
708 highlight_match = TRUE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
709 save_viewstate(&is_state->old_viewstate); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
710 update_screen(NOT_VALID); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
711 redrawcmdline(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
712 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
713 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
714 vim_beep(BO_ERROR); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
715 restore_last_search_pattern(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
716 return FAIL; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
717 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
718 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
719 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
720 * When CTRL-L typed: add character from the match to the pattern. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
721 * May set "*c" to the added character. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
722 * Return OK when jumping to cmdline_not_changed. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
723 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
724 static int |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
725 may_add_char_to_search(int firstc, int *c, incsearch_state_T *is_state) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
726 { |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
727 int skiplen, patlen; |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
728 |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
729 // Parsing range may already set the last search pattern. |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15064
diff
changeset
|
730 // NOTE: must call restore_last_search_pattern() before returning! |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
731 save_last_search_pattern(); |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
732 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
733 if (!do_incsearch_highlighting(firstc, is_state, &skiplen, &patlen)) |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
734 { |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
735 restore_last_search_pattern(); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
736 return FAIL; |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
737 } |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15064
diff
changeset
|
738 restore_last_search_pattern(); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
739 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
740 // Add a character from under the cursor for 'incsearch'. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
741 if (is_state->did_incsearch) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
742 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
743 curwin->w_cursor = is_state->match_end; |
16287
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
744 *c = gchar_cursor(); |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
745 if (*c != NUL) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
746 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
747 // If 'ignorecase' and 'smartcase' are set and the |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
748 // command line has no uppercase characters, convert |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
749 // the character to lowercase. |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
750 if (p_ic && p_scs && !pat_has_uppercase(ccline.cmdbuff + skiplen)) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
751 *c = MB_TOLOWER(*c); |
16287
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
752 if (*c == firstc || vim_strchr((char_u *)( |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
753 p_magic ? "\\~^$.*[" : "\\^$"), *c) != NULL) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
754 { |
16287
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
755 // put a backslash before special characters |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
756 stuffcharReadbuff(*c); |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
757 *c = '\\'; |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
758 } |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
759 // add any composing characters |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
760 if (mb_char2len(*c) != mb_ptr2len(ml_get_cursor())) |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
761 { |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
762 int save_c = *c; |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
763 |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
764 while (mb_char2len(*c) != mb_ptr2len(ml_get_cursor())) |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
765 { |
16287
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
766 curwin->w_cursor.col += mb_char2len(*c); |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
767 *c = gchar_cursor(); |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
768 stuffcharReadbuff(*c); |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
769 } |
16287
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
770 *c = save_c; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
771 } |
16287
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
772 return FAIL; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
773 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
774 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
775 return OK; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
776 } |
13794
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
777 #endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
778 |
14858
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
779 void |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
780 cmdline_init(void) |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
781 { |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
782 vim_memset(&ccline, 0, sizeof(struct cmdline_info)); |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
783 } |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
784 |
13035
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
785 /* |
7 | 786 * getcmdline() - accept a command line starting with firstc. |
787 * | |
788 * firstc == ':' get ":" command line. | |
789 * firstc == '/' or '?' get search pattern | |
790 * firstc == '=' get expression | |
791 * firstc == '@' get text for input() function | |
792 * firstc == '>' get text for debug mode | |
793 * firstc == NUL get text for :insert command | |
794 * firstc == -1 like NUL, and break on CTRL-C | |
795 * | |
796 * The line is collected in ccline.cmdbuff, which is reallocated to fit the | |
797 * command line. | |
798 * | |
799 * Careful: getcmdline() can be called recursively! | |
800 * | |
801 * Return pointer to allocated string if there is a commandline, NULL | |
802 * otherwise. | |
803 */ | |
804 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
805 getcmdline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
806 int firstc, |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
807 long count, // only used for incremental search |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
808 int indent) // indent for inside conditionals |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
809 { |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
810 return getcmdline_int(firstc, count, indent, TRUE); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
811 } |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
812 |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
813 static char_u * |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
814 getcmdline_int( |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
815 int firstc, |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
816 long count UNUSED, // only used for incremental search |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
817 int indent, // indent for inside conditionals |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
818 int init_ccline) // clear ccline first |
7 | 819 { |
820 int c; | |
821 int i; | |
822 int j; | |
823 int gotesc = FALSE; /* TRUE when <ESC> just typed */ | |
824 int do_abbr; /* when TRUE check for abbr. */ | |
825 #ifdef FEAT_CMDHIST | |
826 char_u *lookfor = NULL; /* string to match */ | |
827 int hiscnt; /* current history line in use */ | |
828 int histype; /* history type to be used */ | |
829 #endif | |
830 #ifdef FEAT_SEARCH_EXTRA | |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
831 incsearch_state_T is_state; |
7 | 832 #endif |
833 int did_wild_list = FALSE; /* did wild_list() recently */ | |
834 int wim_index = 0; /* index in wim_flags[] */ | |
835 int res; | |
836 int save_msg_scroll = msg_scroll; | |
837 int save_State = State; /* remember State when called */ | |
838 int some_key_typed = FALSE; /* one of the keys was typed */ | |
839 #ifdef FEAT_MOUSE | |
840 /* mouse drag and release events are ignored, unless they are | |
841 * preceded with a mouse down event */ | |
842 int ignore_drag_release = TRUE; | |
843 #endif | |
844 #ifdef FEAT_EVAL | |
845 int break_ctrl_c = FALSE; | |
846 #endif | |
847 expand_T xpc; | |
848 long *b_im_ptr = NULL; | |
195 | 849 struct cmdline_info save_ccline; |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
850 int did_save_ccline = FALSE; |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
851 int cmdline_type; |
7 | 852 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
853 if (ccline.cmdbuff != NULL) |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
854 { |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
855 // Being called recursively. Since ccline is global, we need to save |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
856 // the current buffer and restore it when returning. |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
857 save_cmdline(&save_ccline); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
858 did_save_ccline = TRUE; |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
859 } |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
860 if (init_ccline) |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
861 vim_memset(&ccline, 0, sizeof(struct cmdline_info)); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
862 |
7 | 863 #ifdef FEAT_EVAL |
864 if (firstc == -1) | |
865 { | |
866 firstc = NUL; | |
867 break_ctrl_c = TRUE; | |
868 } | |
869 #endif | |
870 #ifdef FEAT_RIGHTLEFT | |
871 /* start without Hebrew mapping for a command line */ | |
872 if (firstc == ':' || firstc == '=' || firstc == '>') | |
873 cmd_hkmap = 0; | |
874 #endif | |
875 | |
876 ccline.overstrike = FALSE; /* always start in insert mode */ | |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
877 |
7 | 878 #ifdef FEAT_SEARCH_EXTRA |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
879 init_incsearch_state(&is_state); |
7 | 880 #endif |
881 | |
882 /* | |
883 * set some variables for redrawcmd() | |
884 */ | |
885 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc); | |
164 | 886 ccline.cmdindent = (firstc > 0 ? indent : 0); |
887 | |
888 /* alloc initial ccline.cmdbuff */ | |
889 alloc_cmdbuff(exmode_active ? 250 : indent + 1); | |
7 | 890 if (ccline.cmdbuff == NULL) |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
891 goto theend; // out of memory |
7 | 892 ccline.cmdlen = ccline.cmdpos = 0; |
893 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
|
894 sb_text_start_cmdline(); |
7 | 895 |
164 | 896 /* autoindent for :insert and :append */ |
897 if (firstc <= 0) | |
898 { | |
6929 | 899 vim_memset(ccline.cmdbuff, ' ', indent); |
164 | 900 ccline.cmdbuff[indent] = NUL; |
901 ccline.cmdpos = indent; | |
902 ccline.cmdspos = indent; | |
903 ccline.cmdlen = indent; | |
904 } | |
905 | |
7 | 906 ExpandInit(&xpc); |
1718 | 907 ccline.xpc = &xpc; |
7 | 908 |
909 #ifdef FEAT_RIGHTLEFT | |
910 if (curwin->w_p_rl && *curwin->w_p_rlc == 's' | |
911 && (firstc == '/' || firstc == '?')) | |
912 cmdmsg_rl = TRUE; | |
913 else | |
914 cmdmsg_rl = FALSE; | |
915 #endif | |
916 | |
917 redir_off = TRUE; /* don't redirect the typed command */ | |
918 if (!cmd_silent) | |
919 { | |
920 i = msg_scrolled; | |
921 msg_scrolled = 0; /* avoid wait_return message */ | |
922 gotocmdline(TRUE); | |
923 msg_scrolled += i; | |
924 redrawcmdprompt(); /* draw prompt or indent */ | |
925 set_cmdspos(); | |
926 } | |
927 xpc.xp_context = EXPAND_NOTHING; | |
928 xpc.xp_backslash = XP_BS_NONE; | |
632 | 929 #ifndef BACKSLASH_IN_FILENAME |
930 xpc.xp_shell = FALSE; | |
931 #endif | |
7 | 932 |
531 | 933 #if defined(FEAT_EVAL) |
934 if (ccline.input_fn) | |
935 { | |
936 xpc.xp_context = ccline.xp_context; | |
937 xpc.xp_pattern = ccline.cmdbuff; | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16287
diff
changeset
|
938 # if defined(FEAT_CMDL_COMPL) |
531 | 939 xpc.xp_arg = ccline.xp_arg; |
1322 | 940 # endif |
531 | 941 } |
942 #endif | |
943 | |
7 | 944 /* |
945 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when | |
946 * doing ":@0" when register 0 doesn't contain a CR. | |
947 */ | |
948 msg_scroll = FALSE; | |
949 | |
950 State = CMDLINE; | |
951 | |
952 if (firstc == '/' || firstc == '?' || firstc == '@') | |
953 { | |
954 /* Use ":lmap" mappings for search pattern and input(). */ | |
955 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT) | |
956 b_im_ptr = &curbuf->b_p_iminsert; | |
957 else | |
958 b_im_ptr = &curbuf->b_p_imsearch; | |
959 if (*b_im_ptr == B_IMODE_LMAP) | |
960 State |= LANGMAP; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
961 #ifdef HAVE_INPUT_METHOD |
7 | 962 im_set_active(*b_im_ptr == B_IMODE_IM); |
963 #endif | |
964 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
965 #ifdef HAVE_INPUT_METHOD |
7 | 966 else if (p_imcmdline) |
967 im_set_active(TRUE); | |
968 #endif | |
969 | |
970 #ifdef FEAT_MOUSE | |
971 setmouse(); | |
972 #endif | |
973 #ifdef CURSOR_SHAPE | |
974 ui_cursor_shape(); /* may show different cursor shape */ | |
975 #endif | |
976 | |
571 | 977 /* When inside an autocommand for writing "exiting" may be set and |
978 * terminal mode set to cooked. Need to set raw mode here then. */ | |
979 settmode(TMODE_RAW); | |
980 | |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
981 /* 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
|
982 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
|
983 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
|
984 |
7 | 985 #ifdef FEAT_CMDHIST |
986 init_history(); | |
987 hiscnt = hislen; /* set hiscnt to impossible history value */ | |
988 histype = hist_char2type(firstc); | |
989 #endif | |
990 | |
991 #ifdef FEAT_DIGRAPHS | |
1868 | 992 do_digraph(-1); /* init digraph typeahead */ |
7 | 993 #endif |
994 | |
5993 | 995 /* If something above caused an error, reset the flags, we do want to type |
996 * and execute commands. Display may be messed up a bit. */ | |
997 if (did_emsg) | |
998 redrawcmd(); | |
999 did_emsg = FALSE; | |
1000 got_int = FALSE; | |
1001 | |
7 | 1002 /* |
1003 * Collect the command string, handling editing keys. | |
1004 */ | |
1005 for (;;) | |
1006 { | |
972 | 1007 redir_off = TRUE; /* Don't redirect the typed command. |
1008 Repeated, because a ":redir" inside | |
1009 completion may switch it on. */ | |
7 | 1010 #ifdef USE_ON_FLY_SCROLL |
1011 dont_scroll = FALSE; /* allow scrolling here */ | |
1012 #endif | |
1013 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */ | |
1014 | |
13600
75e35ebdb7a4
patch 8.0.1672: error during completion causes command to be cancelled
Christian Brabandt <cb@256bit.org>
parents:
13551
diff
changeset
|
1015 did_emsg = FALSE; /* There can't really be a reason why an error |
75e35ebdb7a4
patch 8.0.1672: error during completion causes command to be cancelled
Christian Brabandt <cb@256bit.org>
parents:
13551
diff
changeset
|
1016 that occurs while typing a command should |
75e35ebdb7a4
patch 8.0.1672: error during completion causes command to be cancelled
Christian Brabandt <cb@256bit.org>
parents:
13551
diff
changeset
|
1017 cause the command not to be executed. */ |
75e35ebdb7a4
patch 8.0.1672: error during completion causes command to be cancelled
Christian Brabandt <cb@256bit.org>
parents:
13551
diff
changeset
|
1018 |
7 | 1019 cursorcmd(); /* set the cursor on the right spot */ |
1472 | 1020 |
12960
004bc78c88e6
patch 8.0.1356: using simalt in a GUIEnter autocommand inserts characters
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
1021 /* 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
|
1022 * anything, such as stop completion. */ |
1472 | 1023 do |
1024 c = safe_vgetc(); | |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
1025 while (c == K_IGNORE || c == K_NOP); |
1472 | 1026 |
7 | 1027 if (KeyTyped) |
1028 { | |
1029 some_key_typed = TRUE; | |
1030 #ifdef FEAT_RIGHTLEFT | |
1031 if (cmd_hkmap) | |
1032 c = hkmap(c); | |
1033 if (cmdmsg_rl && !KeyStuffed) | |
1034 { | |
1035 /* Invert horizontal movements and operations. Only when | |
1036 * typed by the user directly, not when the result of a | |
1037 * mapping. */ | |
1038 switch (c) | |
1039 { | |
1040 case K_RIGHT: c = K_LEFT; break; | |
1041 case K_S_RIGHT: c = K_S_LEFT; break; | |
1042 case K_C_RIGHT: c = K_C_LEFT; break; | |
1043 case K_LEFT: c = K_RIGHT; break; | |
1044 case K_S_LEFT: c = K_S_RIGHT; break; | |
1045 case K_C_LEFT: c = K_C_RIGHT; break; | |
1046 } | |
1047 } | |
1048 #endif | |
1049 } | |
1050 | |
1051 /* | |
1052 * Ignore got_int when CTRL-C was typed here. | |
1053 * Don't ignore it in :global, we really need to break then, e.g., for | |
1054 * ":g/pat/normal /pat" (without the <CR>). | |
1055 * Don't ignore it for the input() function. | |
1056 */ | |
1057 if ((c == Ctrl_C | |
1058 #ifdef UNIX | |
1059 || c == intr_char | |
1060 #endif | |
1061 ) | |
1062 #if defined(FEAT_EVAL) || defined(FEAT_CRYPT) | |
1063 && firstc != '@' | |
1064 #endif | |
1065 #ifdef FEAT_EVAL | |
1066 && !break_ctrl_c | |
1067 #endif | |
1068 && !global_busy) | |
1069 got_int = FALSE; | |
1070 | |
1071 #ifdef FEAT_CMDHIST | |
1072 /* free old command line when finished moving around in the history | |
1073 * list */ | |
1074 if (lookfor != NULL | |
180 | 1075 && c != K_S_DOWN && c != K_S_UP |
230 | 1076 && c != K_DOWN && c != K_UP |
7 | 1077 && c != K_PAGEDOWN && c != K_PAGEUP |
1078 && c != K_KPAGEDOWN && c != K_KPAGEUP | |
230 | 1079 && c != K_LEFT && c != K_RIGHT |
7 | 1080 && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N))) |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
1081 VIM_CLEAR(lookfor); |
7 | 1082 #endif |
1083 | |
1084 /* | |
1718 | 1085 * When there are matching completions to select <S-Tab> works like |
1086 * CTRL-P (unless 'wc' is <S-Tab>). | |
7 | 1087 */ |
1718 | 1088 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0) |
7 | 1089 c = Ctrl_P; |
1090 | |
1091 #ifdef FEAT_WILDMENU | |
1092 /* Special translations for 'wildmenu' */ | |
1093 if (did_wild_list && p_wmnu) | |
1094 { | |
230 | 1095 if (c == K_LEFT) |
7 | 1096 c = Ctrl_P; |
230 | 1097 else if (c == K_RIGHT) |
7 | 1098 c = Ctrl_N; |
1099 } | |
1100 /* Hitting CR after "emenu Name.": complete submenu */ | |
1101 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu | |
1102 && ccline.cmdpos > 1 | |
1103 && ccline.cmdbuff[ccline.cmdpos - 1] == '.' | |
1104 && ccline.cmdbuff[ccline.cmdpos - 2] != '\\' | |
1105 && (c == '\n' || c == '\r' || c == K_KENTER)) | |
1106 c = K_DOWN; | |
1107 #endif | |
1108 | |
1109 /* free expanded names when finished walking through matches */ | |
1110 if (xpc.xp_numfiles != -1 | |
1111 && !(c == p_wc && KeyTyped) && c != p_wcm | |
1112 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A | |
1113 && c != Ctrl_L) | |
1114 { | |
1115 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE); | |
1116 did_wild_list = FALSE; | |
1117 #ifdef FEAT_WILDMENU | |
230 | 1118 if (!p_wmnu || (c != K_UP && c != K_DOWN)) |
7 | 1119 #endif |
1120 xpc.xp_context = EXPAND_NOTHING; | |
1121 wim_index = 0; | |
1122 #ifdef FEAT_WILDMENU | |
1123 if (p_wmnu && wild_menu_showing != 0) | |
1124 { | |
1125 int skt = KeyTyped; | |
532 | 1126 int old_RedrawingDisabled = RedrawingDisabled; |
531 | 1127 |
1128 if (ccline.input_fn) | |
1129 RedrawingDisabled = 0; | |
7 | 1130 |
1131 if (wild_menu_showing == WM_SCROLLED) | |
1132 { | |
1133 /* Entered command line, move it up */ | |
1134 cmdline_row--; | |
1135 redrawcmd(); | |
1136 } | |
1137 else if (save_p_ls != -1) | |
1138 { | |
1139 /* restore 'laststatus' and 'winminheight' */ | |
1140 p_ls = save_p_ls; | |
1141 p_wmh = save_p_wmh; | |
1142 last_status(FALSE); | |
1143 update_screen(VALID); /* redraw the screen NOW */ | |
1144 redrawcmd(); | |
1145 save_p_ls = -1; | |
1146 } | |
1147 else | |
1148 { | |
1149 win_redraw_last_status(topframe); | |
1150 redraw_statuslines(); | |
1151 } | |
532 | 1152 KeyTyped = skt; |
1153 wild_menu_showing = 0; | |
531 | 1154 if (ccline.input_fn) |
1155 RedrawingDisabled = old_RedrawingDisabled; | |
7 | 1156 } |
1157 #endif | |
1158 } | |
1159 | |
1160 #ifdef FEAT_WILDMENU | |
1161 /* Special translations for 'wildmenu' */ | |
1162 if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu) | |
1163 { | |
1164 /* Hitting <Down> after "emenu Name.": complete submenu */ | |
1318 | 1165 if (c == K_DOWN && ccline.cmdpos > 0 |
1166 && ccline.cmdbuff[ccline.cmdpos - 1] == '.') | |
7 | 1167 c = p_wc; |
230 | 1168 else if (c == K_UP) |
7 | 1169 { |
1170 /* Hitting <Up>: Remove one submenu name in front of the | |
1171 * cursor */ | |
1172 int found = FALSE; | |
1173 | |
1174 j = (int)(xpc.xp_pattern - ccline.cmdbuff); | |
1175 i = 0; | |
1176 while (--j > 0) | |
1177 { | |
1178 /* check for start of menu name */ | |
1179 if (ccline.cmdbuff[j] == ' ' | |
1180 && ccline.cmdbuff[j - 1] != '\\') | |
1181 { | |
1182 i = j + 1; | |
1183 break; | |
1184 } | |
1185 /* check for start of submenu name */ | |
1186 if (ccline.cmdbuff[j] == '.' | |
1187 && ccline.cmdbuff[j - 1] != '\\') | |
1188 { | |
1189 if (found) | |
1190 { | |
1191 i = j + 1; | |
1192 break; | |
1193 } | |
1194 else | |
1195 found = TRUE; | |
1196 } | |
1197 } | |
1198 if (i > 0) | |
1199 cmdline_del(i); | |
1200 c = p_wc; | |
1201 xpc.xp_context = EXPAND_NOTHING; | |
1202 } | |
1203 } | |
714 | 1204 if ((xpc.xp_context == EXPAND_FILES |
1621 | 1205 || xpc.xp_context == EXPAND_DIRECTORIES |
714 | 1206 || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu) |
7 | 1207 { |
1208 char_u upseg[5]; | |
1209 | |
1210 upseg[0] = PATHSEP; | |
1211 upseg[1] = '.'; | |
1212 upseg[2] = '.'; | |
1213 upseg[3] = PATHSEP; | |
1214 upseg[4] = NUL; | |
1215 | |
1318 | 1216 if (c == K_DOWN |
1217 && ccline.cmdpos > 0 | |
1218 && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP | |
1219 && (ccline.cmdpos < 3 | |
1220 || ccline.cmdbuff[ccline.cmdpos - 2] != '.' | |
7 | 1221 || ccline.cmdbuff[ccline.cmdpos - 3] != '.')) |
1222 { | |
1223 /* go down a directory */ | |
1224 c = p_wc; | |
1225 } | |
230 | 1226 else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN) |
7 | 1227 { |
1228 /* If in a direct ancestor, strip off one ../ to go down */ | |
1229 int found = FALSE; | |
1230 | |
1231 j = ccline.cmdpos; | |
1232 i = (int)(xpc.xp_pattern - ccline.cmdbuff); | |
1233 while (--j > i) | |
1234 { | |
39 | 1235 if (has_mbyte) |
1236 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j); | |
7 | 1237 if (vim_ispathsep(ccline.cmdbuff[j])) |
1238 { | |
1239 found = TRUE; | |
1240 break; | |
1241 } | |
1242 } | |
1243 if (found | |
1244 && ccline.cmdbuff[j - 1] == '.' | |
1245 && ccline.cmdbuff[j - 2] == '.' | |
1246 && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2)) | |
1247 { | |
1248 cmdline_del(j - 2); | |
1249 c = p_wc; | |
1250 } | |
1251 } | |
230 | 1252 else if (c == K_UP) |
7 | 1253 { |
1254 /* go up a directory */ | |
1255 int found = FALSE; | |
1256 | |
1257 j = ccline.cmdpos - 1; | |
1258 i = (int)(xpc.xp_pattern - ccline.cmdbuff); | |
1259 while (--j > i) | |
1260 { | |
1261 if (has_mbyte) | |
1262 j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j); | |
1263 if (vim_ispathsep(ccline.cmdbuff[j]) | |
1264 #ifdef BACKSLASH_IN_FILENAME | |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1265 && vim_strchr((char_u *)" *?[{`$%#", |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1266 ccline.cmdbuff[j + 1]) == NULL |
7 | 1267 #endif |
1268 ) | |
1269 { | |
1270 if (found) | |
1271 { | |
1272 i = j + 1; | |
1273 break; | |
1274 } | |
1275 else | |
1276 found = TRUE; | |
1277 } | |
1278 } | |
1279 | |
1280 if (!found) | |
1281 j = i; | |
1282 else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0) | |
1283 j += 4; | |
1284 else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0 | |
1285 && j == i) | |
1286 j += 3; | |
1287 else | |
1288 j = 0; | |
1289 if (j > 0) | |
1290 { | |
1291 /* TODO this is only for DOS/UNIX systems - need to put in | |
1292 * machine-specific stuff here and in upseg init */ | |
1293 cmdline_del(j); | |
1294 put_on_cmdline(upseg + 1, 3, FALSE); | |
1295 } | |
1296 else if (ccline.cmdpos > i) | |
1297 cmdline_del(i); | |
3204 | 1298 |
1299 /* Now complete in the new directory. Set KeyTyped in case the | |
1300 * Up key came from a mapping. */ | |
7 | 1301 c = p_wc; |
3204 | 1302 KeyTyped = TRUE; |
7 | 1303 } |
1304 } | |
1305 | |
1306 #endif /* FEAT_WILDMENU */ | |
1307 | |
1308 /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert | |
1309 * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */ | |
1310 if (c == Ctrl_BSL) | |
1311 { | |
1312 ++no_mapping; | |
1313 ++allow_keys; | |
1389 | 1314 c = plain_vgetc(); |
7 | 1315 --no_mapping; |
1316 --allow_keys; | |
3859 | 1317 /* CTRL-\ e doesn't work when obtaining an expression, unless it |
1318 * is in a mapping. */ | |
1319 if (c != Ctrl_N && c != Ctrl_G && (c != 'e' | |
14842
7379bc1c3498
patch 8.1.0433: mapping can obtain text from inputsecret()
Christian Brabandt <cb@256bit.org>
parents:
14774
diff
changeset
|
1320 || (ccline.cmdfirstc == '=' && KeyTyped) |
7379bc1c3498
patch 8.1.0433: mapping can obtain text from inputsecret()
Christian Brabandt <cb@256bit.org>
parents:
14774
diff
changeset
|
1321 #ifdef FEAT_EVAL |
14848
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
1322 || cmdline_star > 0 |
14842
7379bc1c3498
patch 8.1.0433: mapping can obtain text from inputsecret()
Christian Brabandt <cb@256bit.org>
parents:
14774
diff
changeset
|
1323 #endif |
7379bc1c3498
patch 8.1.0433: mapping can obtain text from inputsecret()
Christian Brabandt <cb@256bit.org>
parents:
14774
diff
changeset
|
1324 )) |
7 | 1325 { |
1326 vungetc(c); | |
1327 c = Ctrl_BSL; | |
1328 } | |
1329 #ifdef FEAT_EVAL | |
1330 else if (c == 'e') | |
1331 { | |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
1332 char_u *p = NULL; |
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
1333 int len; |
7 | 1334 |
1335 /* | |
1336 * Replace the command line with the result of an expression. | |
625 | 1337 * Need to save and restore the current command line, to be |
1338 * able to enter a new one... | |
7 | 1339 */ |
1340 if (ccline.cmdpos == ccline.cmdlen) | |
1341 new_cmdpos = 99999; /* keep it at the end */ | |
1342 else | |
1343 new_cmdpos = ccline.cmdpos; | |
95 | 1344 |
7 | 1345 c = get_expr_register(); |
1346 if (c == '=') | |
1347 { | |
634 | 1348 /* Need to save and restore ccline. And set "textlock" |
632 | 1349 * to avoid nasty things like going to another buffer when |
1350 * evaluating an expression. */ | |
634 | 1351 ++textlock; |
7 | 1352 p = get_expr_line(); |
634 | 1353 --textlock; |
2617 | 1354 |
1355 if (p != NULL) | |
7 | 1356 { |
2617 | 1357 len = (int)STRLEN(p); |
1358 if (realloc_cmdbuff(len + 1) == OK) | |
1359 { | |
1360 ccline.cmdlen = len; | |
1361 STRCPY(ccline.cmdbuff, p); | |
1362 vim_free(p); | |
1363 | |
1364 /* Restore the cursor or use the position set with | |
1365 * set_cmdline_pos(). */ | |
1366 if (new_cmdpos > ccline.cmdlen) | |
1367 ccline.cmdpos = ccline.cmdlen; | |
1368 else | |
1369 ccline.cmdpos = new_cmdpos; | |
1370 | |
1371 KeyTyped = FALSE; /* Don't do p_wc completion. */ | |
1372 redrawcmd(); | |
1373 goto cmdline_changed; | |
1374 } | |
15064
7b2dcca9e0c1
patch 8.1.0543: Coverity warns for leaking memory and using wrong struct
Bram Moolenaar <Bram@vim.org>
parents:
14976
diff
changeset
|
1375 vim_free(p); |
7 | 1376 } |
1377 } | |
1378 beep_flush(); | |
2636 | 1379 got_int = FALSE; /* don't abandon the command line */ |
1380 did_emsg = FALSE; | |
1381 emsg_on_display = FALSE; | |
1382 redrawcmd(); | |
1383 goto cmdline_not_changed; | |
7 | 1384 } |
1385 #endif | |
1386 else | |
1387 { | |
1388 if (c == Ctrl_G && p_im && restart_edit == 0) | |
1389 restart_edit = 'a'; | |
1390 gotesc = TRUE; /* will free ccline.cmdbuff after putting it | |
1391 in history */ | |
1392 goto returncmd; /* back to Normal mode */ | |
1393 } | |
1394 } | |
1395 | |
1396 #ifdef FEAT_CMDWIN | |
1397 if (c == cedit_key || c == K_CMDWIN) | |
1398 { | |
6211 | 1399 if (ex_normal_busy == 0 && got_int == FALSE) |
1400 { | |
1401 /* | |
1402 * Open a window to edit the command line (and history). | |
1403 */ | |
11321
f57dce6b934b
patch 8.0.0546: swap file exists briefly when opening the command window
Christian Brabandt <cb@256bit.org>
parents:
11285
diff
changeset
|
1404 c = open_cmdwin(); |
6211 | 1405 some_key_typed = TRUE; |
1406 } | |
7 | 1407 } |
1408 # ifdef FEAT_DIGRAPHS | |
1409 else | |
1410 # endif | |
1411 #endif | |
1412 #ifdef FEAT_DIGRAPHS | |
1413 c = do_digraph(c); | |
1414 #endif | |
1415 | |
1416 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC | |
1417 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL))) | |
1418 { | |
168 | 1419 /* In Ex mode a backslash escapes a newline. */ |
1420 if (exmode_active | |
1421 && c != ESC | |
1318 | 1422 && ccline.cmdpos == ccline.cmdlen |
168 | 1423 && ccline.cmdpos > 0 |
1424 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\') | |
1425 { | |
1426 if (c == K_KENTER) | |
1427 c = '\n'; | |
1428 } | |
1429 else | |
7 | 1430 { |
168 | 1431 gotesc = FALSE; /* Might have typed ESC previously, don't |
1432 truncate the cmdline now. */ | |
1433 if (ccheck_abbr(c + ABBR_OFF)) | |
1434 goto cmdline_changed; | |
1435 if (!cmd_silent) | |
1436 { | |
1437 windgoto(msg_row, 0); | |
1438 out_flush(); | |
1439 } | |
1440 break; | |
7 | 1441 } |
1442 } | |
1443 | |
1444 /* | |
1445 * Completion for 'wildchar' or 'wildcharm' key. | |
1446 * - hitting <ESC> twice means: abandon command line. | |
1447 * - wildcard expansion is only done when the 'wildchar' key is really | |
1448 * typed, not when it comes from a macro | |
1449 */ | |
1450 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm) | |
1451 { | |
1452 if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */ | |
1453 { | |
1454 /* if 'wildmode' contains "list" may still need to list */ | |
1455 if (xpc.xp_numfiles > 1 | |
1456 && !did_wild_list | |
1457 && (wim_flags[wim_index] & WIM_LIST)) | |
1458 { | |
1459 (void)showmatches(&xpc, FALSE); | |
1460 redrawcmd(); | |
1461 did_wild_list = TRUE; | |
1462 } | |
1463 if (wim_flags[wim_index] & WIM_LONGEST) | |
3961 | 1464 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
1465 firstc != '@'); | |
7 | 1466 else if (wim_flags[wim_index] & WIM_FULL) |
3961 | 1467 res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP, |
1468 firstc != '@'); | |
7 | 1469 else |
1470 res = OK; /* don't insert 'wildchar' now */ | |
1471 } | |
1472 else /* typed p_wc first time */ | |
1473 { | |
1474 wim_index = 0; | |
1475 j = ccline.cmdpos; | |
1476 /* if 'wildmode' first contains "longest", get longest | |
1477 * common part */ | |
1478 if (wim_flags[0] & WIM_LONGEST) | |
3961 | 1479 res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
1480 firstc != '@'); | |
7 | 1481 else |
3961 | 1482 res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP, |
1483 firstc != '@'); | |
7 | 1484 |
1485 /* if interrupted while completing, behave like it failed */ | |
1486 if (got_int) | |
1487 { | |
1488 (void)vpeekc(); /* remove <C-C> from input stream */ | |
1489 got_int = FALSE; /* don't abandon the command line */ | |
1490 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE); | |
1491 #ifdef FEAT_WILDMENU | |
1492 xpc.xp_context = EXPAND_NOTHING; | |
1493 #endif | |
1494 goto cmdline_changed; | |
1495 } | |
1496 | |
1497 /* when more than one match, and 'wildmode' first contains | |
1498 * "list", or no change and 'wildmode' contains "longest,list", | |
1499 * list all matches */ | |
1500 if (res == OK && xpc.xp_numfiles > 1) | |
1501 { | |
1502 /* a "longest" that didn't do anything is skipped (but not | |
1503 * "list:longest") */ | |
1504 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j) | |
1505 wim_index = 1; | |
1506 if ((wim_flags[wim_index] & WIM_LIST) | |
1507 #ifdef FEAT_WILDMENU | |
1508 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0) | |
1509 #endif | |
1510 ) | |
1511 { | |
1512 if (!(wim_flags[0] & WIM_LONGEST)) | |
1513 { | |
1514 #ifdef FEAT_WILDMENU | |
1515 int p_wmnu_save = p_wmnu; | |
1516 p_wmnu = 0; | |
1517 #endif | |
3961 | 1518 /* remove match */ |
1519 nextwild(&xpc, WILD_PREV, 0, firstc != '@'); | |
7 | 1520 #ifdef FEAT_WILDMENU |
1521 p_wmnu = p_wmnu_save; | |
1522 #endif | |
1523 } | |
1524 #ifdef FEAT_WILDMENU | |
1525 (void)showmatches(&xpc, p_wmnu | |
1526 && ((wim_flags[wim_index] & WIM_LIST) == 0)); | |
1527 #else | |
1528 (void)showmatches(&xpc, FALSE); | |
1529 #endif | |
1530 redrawcmd(); | |
1531 did_wild_list = TRUE; | |
1532 if (wim_flags[wim_index] & WIM_LONGEST) | |
3961 | 1533 nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
1534 firstc != '@'); | |
7 | 1535 else if (wim_flags[wim_index] & WIM_FULL) |
3961 | 1536 nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP, |
1537 firstc != '@'); | |
7 | 1538 } |
1539 else | |
6949 | 1540 vim_beep(BO_WILD); |
7 | 1541 } |
1542 #ifdef FEAT_WILDMENU | |
1543 else if (xpc.xp_numfiles == -1) | |
1544 xpc.xp_context = EXPAND_NOTHING; | |
1545 #endif | |
1546 } | |
1547 if (wim_index < 3) | |
1548 ++wim_index; | |
1549 if (c == ESC) | |
1550 gotesc = TRUE; | |
1551 if (res == OK) | |
1552 goto cmdline_changed; | |
1553 } | |
1554 | |
1555 gotesc = FALSE; | |
1556 | |
1557 /* <S-Tab> goes to last match, in a clumsy way */ | |
1558 if (c == K_S_TAB && KeyTyped) | |
1559 { | |
3961 | 1560 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK |
1561 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK | |
1562 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK) | |
7 | 1563 goto cmdline_changed; |
1564 } | |
1565 | |
1566 if (c == NUL || c == K_ZERO) /* NUL is stored as NL */ | |
1567 c = NL; | |
1568 | |
1569 do_abbr = TRUE; /* default: check for abbreviation */ | |
1570 | |
1571 /* | |
1572 * Big switch for a typed command line character. | |
1573 */ | |
1574 switch (c) | |
1575 { | |
1576 case K_BS: | |
1577 case Ctrl_H: | |
1578 case K_DEL: | |
1579 case K_KDEL: | |
1580 case Ctrl_W: | |
1581 if (c == K_KDEL) | |
1582 c = K_DEL; | |
1583 | |
1584 /* | |
1585 * delete current character is the same as backspace on next | |
1586 * character, except at end of line | |
1587 */ | |
1588 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen) | |
1589 ++ccline.cmdpos; | |
1590 if (has_mbyte && c == K_DEL) | |
1591 ccline.cmdpos += mb_off_next(ccline.cmdbuff, | |
1592 ccline.cmdbuff + ccline.cmdpos); | |
1593 if (ccline.cmdpos > 0) | |
1594 { | |
1595 char_u *p; | |
1596 | |
1597 j = ccline.cmdpos; | |
1598 p = ccline.cmdbuff + j; | |
1599 if (has_mbyte) | |
1600 { | |
1601 p = mb_prevptr(ccline.cmdbuff, p); | |
1602 if (c == Ctrl_W) | |
1603 { | |
1604 while (p > ccline.cmdbuff && vim_isspace(*p)) | |
1605 p = mb_prevptr(ccline.cmdbuff, p); | |
1606 i = mb_get_class(p); | |
1607 while (p > ccline.cmdbuff && mb_get_class(p) == i) | |
1608 p = mb_prevptr(ccline.cmdbuff, p); | |
1609 if (mb_get_class(p) != i) | |
474 | 1610 p += (*mb_ptr2len)(p); |
7 | 1611 } |
1612 } | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
1613 else if (c == Ctrl_W) |
7 | 1614 { |
1615 while (p > ccline.cmdbuff && vim_isspace(p[-1])) | |
1616 --p; | |
1617 i = vim_iswordc(p[-1]); | |
1618 while (p > ccline.cmdbuff && !vim_isspace(p[-1]) | |
1619 && vim_iswordc(p[-1]) == i) | |
1620 --p; | |
1621 } | |
1622 else | |
1623 --p; | |
1624 ccline.cmdpos = (int)(p - ccline.cmdbuff); | |
1625 ccline.cmdlen -= j - ccline.cmdpos; | |
1626 i = ccline.cmdpos; | |
1627 while (i < ccline.cmdlen) | |
1628 ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; | |
1629 | |
1630 /* Truncate at the end, required for multi-byte chars. */ | |
1631 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1632 #ifdef FEAT_SEARCH_EXTRA |
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1633 if (ccline.cmdlen == 0) |
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1634 { |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
1635 is_state.search_start = is_state.save_cursor; |
10098
72e4b7f90465
commit https://github.com/vim/vim/commit/dda933d06c06c2792bd686d059f6ad19191ad30b
Christian Brabandt <cb@256bit.org>
parents:
10094
diff
changeset
|
1636 /* 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
|
1637 * won't be restored at the wrong position */ |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
1638 is_state.old_viewstate = is_state.init_viewstate; |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1639 } |
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1640 #endif |
7 | 1641 redrawcmd(); |
1642 } | |
1643 else if (ccline.cmdlen == 0 && c != Ctrl_W | |
1644 && ccline.cmdprompt == NULL && indent == 0) | |
1645 { | |
1646 /* In ex and debug mode it doesn't make sense to return. */ | |
1647 if (exmode_active | |
1648 #ifdef FEAT_EVAL | |
1649 || ccline.cmdfirstc == '>' | |
1650 #endif | |
1651 ) | |
1652 goto cmdline_not_changed; | |
1653 | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
1654 VIM_CLEAR(ccline.cmdbuff); /* no commandline to return */ |
7 | 1655 if (!cmd_silent) |
1656 { | |
1657 #ifdef FEAT_RIGHTLEFT | |
1658 if (cmdmsg_rl) | |
1659 msg_col = Columns; | |
1660 else | |
1661 #endif | |
1662 msg_col = 0; | |
1663 msg_putchar(' '); /* delete ':' */ | |
1664 } | |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1665 #ifdef FEAT_SEARCH_EXTRA |
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1666 if (ccline.cmdlen == 0) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
1667 is_state.search_start = is_state.save_cursor; |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1668 #endif |
7 | 1669 redraw_cmdline = TRUE; |
1670 goto returncmd; /* back to cmd mode */ | |
1671 } | |
1672 goto cmdline_changed; | |
1673 | |
1674 case K_INS: | |
1675 case K_KINS: | |
1676 ccline.overstrike = !ccline.overstrike; | |
1677 #ifdef CURSOR_SHAPE | |
1678 ui_cursor_shape(); /* may show different cursor shape */ | |
1679 #endif | |
1680 goto cmdline_not_changed; | |
1681 | |
1682 case Ctrl_HAT: | |
782 | 1683 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE)) |
7 | 1684 { |
1685 /* ":lmap" mappings exists, toggle use of mappings. */ | |
1686 State ^= LANGMAP; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
1687 #ifdef HAVE_INPUT_METHOD |
7 | 1688 im_set_active(FALSE); /* Disable input method */ |
1689 #endif | |
1690 if (b_im_ptr != NULL) | |
1691 { | |
1692 if (State & LANGMAP) | |
1693 *b_im_ptr = B_IMODE_LMAP; | |
1694 else | |
1695 *b_im_ptr = B_IMODE_NONE; | |
1696 } | |
1697 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
1698 #ifdef HAVE_INPUT_METHOD |
7 | 1699 else |
1700 { | |
1701 /* There are no ":lmap" mappings, toggle IM. When | |
1702 * 'imdisable' is set don't try getting the status, it's | |
1703 * always off. */ | |
1704 if ((p_imdisable && b_im_ptr != NULL) | |
1705 ? *b_im_ptr == B_IMODE_IM : im_get_status()) | |
1706 { | |
1707 im_set_active(FALSE); /* Disable input method */ | |
1708 if (b_im_ptr != NULL) | |
1709 *b_im_ptr = B_IMODE_NONE; | |
1710 } | |
1711 else | |
1712 { | |
1713 im_set_active(TRUE); /* Enable input method */ | |
1714 if (b_im_ptr != NULL) | |
1715 *b_im_ptr = B_IMODE_IM; | |
1716 } | |
1717 } | |
1718 #endif | |
1719 if (b_im_ptr != NULL) | |
1720 { | |
1721 if (b_im_ptr == &curbuf->b_p_iminsert) | |
1722 set_iminsert_global(); | |
1723 else | |
1724 set_imsearch_global(); | |
1725 } | |
1726 #ifdef CURSOR_SHAPE | |
1727 ui_cursor_shape(); /* may show different cursor shape */ | |
1728 #endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12293
diff
changeset
|
1729 #if defined(FEAT_KEYMAP) |
7 | 1730 /* Show/unshow value of 'keymap' in status lines later. */ |
1731 status_redraw_curbuf(); | |
1732 #endif | |
1733 goto cmdline_not_changed; | |
1734 | |
1735 /* case '@': only in very old vi */ | |
1736 case Ctrl_U: | |
1737 /* delete all characters left of the cursor */ | |
1738 j = ccline.cmdpos; | |
1739 ccline.cmdlen -= j; | |
1740 i = ccline.cmdpos = 0; | |
1741 while (i < ccline.cmdlen) | |
1742 ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; | |
1743 /* Truncate at the end, required for multi-byte chars. */ | |
1744 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1745 #ifdef FEAT_SEARCH_EXTRA |
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1746 if (ccline.cmdlen == 0) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
1747 is_state.search_start = is_state.save_cursor; |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1748 #endif |
7 | 1749 redrawcmd(); |
1750 goto cmdline_changed; | |
1751 | |
1752 #ifdef FEAT_CLIPBOARD | |
1753 case Ctrl_Y: | |
1754 /* Copy the modeless selection, if there is one. */ | |
1755 if (clip_star.state != SELECT_CLEARED) | |
1756 { | |
1757 if (clip_star.state == SELECT_DONE) | |
1758 clip_copy_modeless_selection(TRUE); | |
1759 goto cmdline_not_changed; | |
1760 } | |
1761 break; | |
1762 #endif | |
1763 | |
1764 case ESC: /* get here if p_wc != ESC or when ESC typed twice */ | |
1765 case Ctrl_C: | |
571 | 1766 /* In exmode it doesn't make sense to return. Except when |
161 | 1767 * ":normal" runs out of characters. */ |
1768 if (exmode_active | |
7850
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
1769 && (ex_normal_busy == 0 || typebuf.tb_len > 0)) |
7 | 1770 goto cmdline_not_changed; |
1771 | |
1772 gotesc = TRUE; /* will free ccline.cmdbuff after | |
1773 putting it in history */ | |
1774 goto returncmd; /* back to cmd mode */ | |
1775 | |
1776 case Ctrl_R: /* insert register */ | |
1777 #ifdef USE_ON_FLY_SCROLL | |
1778 dont_scroll = TRUE; /* disallow scrolling here */ | |
1779 #endif | |
1780 putcmdline('"', TRUE); | |
1781 ++no_mapping; | |
1389 | 1782 i = c = plain_vgetc(); /* CTRL-R <char> */ |
7 | 1783 if (i == Ctrl_O) |
1784 i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */ | |
1785 if (i == Ctrl_R) | |
1389 | 1786 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
|
1787 extra_char = NUL; |
7 | 1788 --no_mapping; |
1789 #ifdef FEAT_EVAL | |
1790 /* | |
1791 * Insert the result of an expression. | |
1792 * Need to save the current command line, to be able to enter | |
1793 * a new one... | |
1794 */ | |
1795 new_cmdpos = -1; | |
1796 if (c == '=') | |
1797 { | |
14848
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
1798 if (ccline.cmdfirstc == '=' // can't do this recursively |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
1799 || cmdline_star > 0) // or when typing a password |
7 | 1800 { |
1801 beep_flush(); | |
1802 c = ESC; | |
1803 } | |
1804 else | |
1805 c = get_expr_register(); | |
1806 } | |
1807 #endif | |
1808 if (c != ESC) /* use ESC to cancel inserting register */ | |
1809 { | |
1015 | 1810 cmdline_paste(c, i == Ctrl_R, FALSE); |
606 | 1811 |
613 | 1812 #ifdef FEAT_EVAL |
606 | 1813 /* When there was a serious error abort getting the |
1814 * command line. */ | |
1815 if (aborting()) | |
1816 { | |
1817 gotesc = TRUE; /* will free ccline.cmdbuff after | |
1818 putting it in history */ | |
1819 goto returncmd; /* back to cmd mode */ | |
1820 } | |
613 | 1821 #endif |
7 | 1822 KeyTyped = FALSE; /* Don't do p_wc completion. */ |
1823 #ifdef FEAT_EVAL | |
1824 if (new_cmdpos >= 0) | |
1825 { | |
1826 /* set_cmdline_pos() was used */ | |
1827 if (new_cmdpos > ccline.cmdlen) | |
1828 ccline.cmdpos = ccline.cmdlen; | |
1829 else | |
1830 ccline.cmdpos = new_cmdpos; | |
1831 } | |
1832 #endif | |
1833 } | |
1834 redrawcmd(); | |
1835 goto cmdline_changed; | |
1836 | |
1837 case Ctrl_D: | |
1838 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING) | |
1839 break; /* Use ^D as normal char instead */ | |
1840 | |
1841 redrawcmd(); | |
1842 continue; /* don't do incremental search now */ | |
1843 | |
1844 case K_RIGHT: | |
1845 case K_S_RIGHT: | |
1846 case K_C_RIGHT: | |
1847 do | |
1848 { | |
1849 if (ccline.cmdpos >= ccline.cmdlen) | |
1850 break; | |
1851 i = cmdline_charsize(ccline.cmdpos); | |
1852 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows) | |
1853 break; | |
1854 ccline.cmdspos += i; | |
1855 if (has_mbyte) | |
474 | 1856 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
7 | 1857 + ccline.cmdpos); |
1858 else | |
1859 ++ccline.cmdpos; | |
1860 } | |
180 | 1861 while ((c == K_S_RIGHT || c == K_C_RIGHT |
1862 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) | |
7 | 1863 && ccline.cmdbuff[ccline.cmdpos] != ' '); |
1864 if (has_mbyte) | |
1865 set_cmdspos_cursor(); | |
1866 goto cmdline_not_changed; | |
1867 | |
1868 case K_LEFT: | |
1869 case K_S_LEFT: | |
1870 case K_C_LEFT: | |
1456 | 1871 if (ccline.cmdpos == 0) |
1872 goto cmdline_not_changed; | |
7 | 1873 do |
1874 { | |
1875 --ccline.cmdpos; | |
1876 if (has_mbyte) /* move to first byte of char */ | |
1877 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff, | |
1878 ccline.cmdbuff + ccline.cmdpos); | |
1879 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos); | |
1880 } | |
1456 | 1881 while (ccline.cmdpos > 0 |
1882 && (c == K_S_LEFT || c == K_C_LEFT | |
180 | 1883 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) |
7 | 1884 && ccline.cmdbuff[ccline.cmdpos - 1] != ' '); |
1885 if (has_mbyte) | |
1886 set_cmdspos_cursor(); | |
1887 goto cmdline_not_changed; | |
1888 | |
1889 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
|
1890 /* Ignore mouse event or open_cmdwin() result. */ |
1472 | 1891 goto cmdline_not_changed; |
7 | 1892 |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1893 #ifdef FEAT_GUI_MSWIN |
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1894 /* On MS-Windows ignore <M-F4>, we get it when closing the window |
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1895 * was cancelled. */ |
625 | 1896 case K_F4: |
1897 if (mod_mask == MOD_MASK_ALT) | |
1898 { | |
1899 redrawcmd(); /* somehow the cmdline is cleared */ | |
1900 goto cmdline_not_changed; | |
1901 } | |
1902 break; | |
1903 #endif | |
1904 | |
7 | 1905 #ifdef FEAT_MOUSE |
1906 case K_MIDDLEDRAG: | |
1907 case K_MIDDLERELEASE: | |
1908 goto cmdline_not_changed; /* Ignore mouse */ | |
1909 | |
1910 case K_MIDDLEMOUSE: | |
1911 # ifdef FEAT_GUI | |
1912 /* When GUI is active, also paste when 'mouse' is empty */ | |
1913 if (!gui.in_use) | |
1914 # endif | |
1915 if (!mouse_has(MOUSE_COMMAND)) | |
1916 goto cmdline_not_changed; /* Ignore mouse */ | |
692 | 1917 # ifdef FEAT_CLIPBOARD |
7 | 1918 if (clip_star.available) |
1015 | 1919 cmdline_paste('*', TRUE, TRUE); |
7 | 1920 else |
692 | 1921 # endif |
1015 | 1922 cmdline_paste(0, TRUE, TRUE); |
7 | 1923 redrawcmd(); |
1924 goto cmdline_changed; | |
1925 | |
692 | 1926 # ifdef FEAT_DND |
7 | 1927 case K_DROP: |
1015 | 1928 cmdline_paste('~', TRUE, FALSE); |
7 | 1929 redrawcmd(); |
1930 goto cmdline_changed; | |
692 | 1931 # endif |
7 | 1932 |
1933 case K_LEFTDRAG: | |
1934 case K_LEFTRELEASE: | |
1935 case K_RIGHTDRAG: | |
1936 case K_RIGHTRELEASE: | |
1937 /* Ignore drag and release events when the button-down wasn't | |
1938 * seen before. */ | |
1939 if (ignore_drag_release) | |
1940 goto cmdline_not_changed; | |
1941 /* FALLTHROUGH */ | |
1942 case K_LEFTMOUSE: | |
1943 case K_RIGHTMOUSE: | |
1944 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE) | |
1945 ignore_drag_release = TRUE; | |
1946 else | |
1947 ignore_drag_release = FALSE; | |
1948 # ifdef FEAT_GUI | |
1949 /* When GUI is active, also move when 'mouse' is empty */ | |
1950 if (!gui.in_use) | |
1951 # endif | |
1952 if (!mouse_has(MOUSE_COMMAND)) | |
1953 goto cmdline_not_changed; /* Ignore mouse */ | |
1954 # ifdef FEAT_CLIPBOARD | |
1955 if (mouse_row < cmdline_row && clip_star.available) | |
1956 { | |
1957 int button, is_click, is_drag; | |
1958 | |
1959 /* | |
1960 * Handle modeless selection. | |
1961 */ | |
1962 button = get_mouse_button(KEY2TERMCAP1(c), | |
1963 &is_click, &is_drag); | |
1964 if (mouse_model_popup() && button == MOUSE_LEFT | |
1965 && (mod_mask & MOD_MASK_SHIFT)) | |
1966 { | |
1967 /* Translate shift-left to right button. */ | |
1968 button = MOUSE_RIGHT; | |
1969 mod_mask &= ~MOD_MASK_SHIFT; | |
1970 } | |
1971 clip_modeless(button, is_click, is_drag); | |
1972 goto cmdline_not_changed; | |
1973 } | |
1974 # endif | |
1975 | |
1976 set_cmdspos(); | |
1977 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen; | |
1978 ++ccline.cmdpos) | |
1979 { | |
1980 i = cmdline_charsize(ccline.cmdpos); | |
1981 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns | |
1982 && mouse_col < ccline.cmdspos % Columns + i) | |
1983 break; | |
1984 if (has_mbyte) | |
1985 { | |
1986 /* Count ">" for double-wide char that doesn't fit. */ | |
1987 correct_cmdspos(ccline.cmdpos, i); | |
474 | 1988 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
7 | 1989 + ccline.cmdpos) - 1; |
1990 } | |
1991 ccline.cmdspos += i; | |
1992 } | |
1993 goto cmdline_not_changed; | |
1994 | |
1995 /* Mouse scroll wheel: ignored here */ | |
1996 case K_MOUSEDOWN: | |
1997 case K_MOUSEUP: | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1998 case K_MOUSELEFT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1999 case K_MOUSERIGHT: |
7 | 2000 /* Alternate buttons ignored here */ |
2001 case K_X1MOUSE: | |
2002 case K_X1DRAG: | |
2003 case K_X1RELEASE: | |
2004 case K_X2MOUSE: | |
2005 case K_X2DRAG: | |
2006 case K_X2RELEASE: | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12855
diff
changeset
|
2007 case K_MOUSEMOVE: |
7 | 2008 goto cmdline_not_changed; |
2009 | |
2010 #endif /* FEAT_MOUSE */ | |
2011 | |
2012 #ifdef FEAT_GUI | |
2013 case K_LEFTMOUSE_NM: /* mousefocus click, ignored */ | |
2014 case K_LEFTRELEASE_NM: | |
2015 goto cmdline_not_changed; | |
2016 | |
2017 case K_VER_SCROLLBAR: | |
540 | 2018 if (msg_scrolled == 0) |
7 | 2019 { |
2020 gui_do_scroll(); | |
2021 redrawcmd(); | |
2022 } | |
2023 goto cmdline_not_changed; | |
2024 | |
2025 case K_HOR_SCROLLBAR: | |
540 | 2026 if (msg_scrolled == 0) |
7 | 2027 { |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2028 gui_do_horiz_scroll(scrollbar_value, FALSE); |
7 | 2029 redrawcmd(); |
2030 } | |
2031 goto cmdline_not_changed; | |
2032 #endif | |
692 | 2033 #ifdef FEAT_GUI_TABLINE |
2034 case K_TABLINE: | |
2035 case K_TABMENU: | |
2036 /* Don't want to change any tabs here. Make sure the same tab | |
2037 * is still selected. */ | |
2038 if (gui_use_tabline()) | |
2039 gui_mch_set_curtab(tabpage_index(curtab)); | |
2040 goto cmdline_not_changed; | |
2041 #endif | |
2042 | |
7 | 2043 case K_SELECT: /* end of Select mode mapping - ignore */ |
2044 goto cmdline_not_changed; | |
2045 | |
2046 case Ctrl_B: /* begin of command line */ | |
2047 case K_HOME: | |
2048 case K_KHOME: | |
2049 case K_S_HOME: | |
2050 case K_C_HOME: | |
2051 ccline.cmdpos = 0; | |
2052 set_cmdspos(); | |
2053 goto cmdline_not_changed; | |
2054 | |
2055 case Ctrl_E: /* end of command line */ | |
2056 case K_END: | |
2057 case K_KEND: | |
2058 case K_S_END: | |
2059 case K_C_END: | |
2060 ccline.cmdpos = ccline.cmdlen; | |
2061 set_cmdspos_cursor(); | |
2062 goto cmdline_not_changed; | |
2063 | |
2064 case Ctrl_A: /* all matches */ | |
3961 | 2065 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL) |
7 | 2066 break; |
2067 goto cmdline_changed; | |
2068 | |
772 | 2069 case Ctrl_L: |
2070 #ifdef FEAT_SEARCH_EXTRA | |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
2071 if (may_add_char_to_search(firstc, &c, &is_state) == OK) |
772 | 2072 goto cmdline_not_changed; |
2073 #endif | |
2074 | |
2075 /* completion: longest common part */ | |
3961 | 2076 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL) |
7 | 2077 break; |
2078 goto cmdline_changed; | |
2079 | |
2080 case Ctrl_N: /* next match */ | |
2081 case Ctrl_P: /* previous match */ | |
9976
e448370630b2
commit https://github.com/vim/vim/commit/7df0f6313a46b80d760c9a80241922544333351c
Christian Brabandt <cb@256bit.org>
parents:
9971
diff
changeset
|
2082 if (xpc.xp_numfiles > 0) |
7 | 2083 { |
3961 | 2084 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, |
2085 0, firstc != '@') == FAIL) | |
7 | 2086 break; |
9990
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2087 goto cmdline_not_changed; |
7 | 2088 } |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
12664
diff
changeset
|
2089 #ifdef FEAT_CMDHIST |
9990
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2090 /* FALLTHROUGH */ |
7 | 2091 case K_UP: |
2092 case K_DOWN: | |
2093 case K_S_UP: | |
2094 case K_S_DOWN: | |
2095 case K_PAGEUP: | |
2096 case K_KPAGEUP: | |
2097 case K_PAGEDOWN: | |
2098 case K_KPAGEDOWN: | |
2099 if (hislen == 0 || firstc == NUL) /* no history */ | |
2100 goto cmdline_not_changed; | |
2101 | |
2102 i = hiscnt; | |
2103 | |
2104 /* save current command string so it can be restored later */ | |
2105 if (lookfor == NULL) | |
2106 { | |
2107 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL) | |
2108 goto cmdline_not_changed; | |
2109 lookfor[ccline.cmdpos] = NUL; | |
2110 } | |
2111 | |
2112 j = (int)STRLEN(lookfor); | |
2113 for (;;) | |
2114 { | |
2115 /* one step backwards */ | |
230 | 2116 if (c == K_UP|| c == K_S_UP || c == Ctrl_P |
180 | 2117 || c == K_PAGEUP || c == K_KPAGEUP) |
7 | 2118 { |
2119 if (hiscnt == hislen) /* first time */ | |
2120 hiscnt = hisidx[histype]; | |
2121 else if (hiscnt == 0 && hisidx[histype] != hislen - 1) | |
2122 hiscnt = hislen - 1; | |
2123 else if (hiscnt != hisidx[histype] + 1) | |
2124 --hiscnt; | |
2125 else /* at top of list */ | |
2126 { | |
2127 hiscnt = i; | |
2128 break; | |
2129 } | |
2130 } | |
2131 else /* one step forwards */ | |
2132 { | |
2133 /* on last entry, clear the line */ | |
2134 if (hiscnt == hisidx[histype]) | |
2135 { | |
2136 hiscnt = hislen; | |
2137 break; | |
2138 } | |
2139 | |
2140 /* not on a history line, nothing to do */ | |
2141 if (hiscnt == hislen) | |
2142 break; | |
2143 if (hiscnt == hislen - 1) /* wrap around */ | |
2144 hiscnt = 0; | |
2145 else | |
2146 ++hiscnt; | |
2147 } | |
2148 if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL) | |
2149 { | |
2150 hiscnt = i; | |
2151 break; | |
2152 } | |
230 | 2153 if ((c != K_UP && c != K_DOWN) |
180 | 2154 || hiscnt == i |
7 | 2155 || STRNCMP(history[histype][hiscnt].hisstr, |
2156 lookfor, (size_t)j) == 0) | |
2157 break; | |
2158 } | |
2159 | |
2160 if (hiscnt != i) /* jumped to other entry */ | |
2161 { | |
2162 char_u *p; | |
2163 int len; | |
2164 int old_firstc; | |
2165 | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2166 VIM_CLEAR(ccline.cmdbuff); |
1718 | 2167 xpc.xp_context = EXPAND_NOTHING; |
7 | 2168 if (hiscnt == hislen) |
2169 p = lookfor; /* back to the old one */ | |
2170 else | |
2171 p = history[histype][hiscnt].hisstr; | |
2172 | |
2173 if (histype == HIST_SEARCH | |
2174 && p != lookfor | |
2175 && (old_firstc = p[STRLEN(p) + 1]) != firstc) | |
2176 { | |
2177 /* Correct for the separator character used when | |
2178 * adding the history entry vs the one used now. | |
2179 * First loop: count length. | |
2180 * Second loop: copy the characters. */ | |
2181 for (i = 0; i <= 1; ++i) | |
2182 { | |
2183 len = 0; | |
2184 for (j = 0; p[j] != NUL; ++j) | |
2185 { | |
2186 /* Replace old sep with new sep, unless it is | |
2187 * escaped. */ | |
2188 if (p[j] == old_firstc | |
2189 && (j == 0 || p[j - 1] != '\\')) | |
2190 { | |
2191 if (i > 0) | |
2192 ccline.cmdbuff[len] = firstc; | |
2193 } | |
2194 else | |
2195 { | |
2196 /* Escape new sep, unless it is already | |
2197 * escaped. */ | |
2198 if (p[j] == firstc | |
2199 && (j == 0 || p[j - 1] != '\\')) | |
2200 { | |
2201 if (i > 0) | |
2202 ccline.cmdbuff[len] = '\\'; | |
2203 ++len; | |
2204 } | |
2205 if (i > 0) | |
2206 ccline.cmdbuff[len] = p[j]; | |
2207 } | |
2208 ++len; | |
2209 } | |
2210 if (i == 0) | |
2211 { | |
2212 alloc_cmdbuff(len); | |
2213 if (ccline.cmdbuff == NULL) | |
2214 goto returncmd; | |
2215 } | |
2216 } | |
2217 ccline.cmdbuff[len] = NUL; | |
2218 } | |
2219 else | |
2220 { | |
2221 alloc_cmdbuff((int)STRLEN(p)); | |
2222 if (ccline.cmdbuff == NULL) | |
2223 goto returncmd; | |
2224 STRCPY(ccline.cmdbuff, p); | |
2225 } | |
2226 | |
2227 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); | |
2228 redrawcmd(); | |
2229 goto cmdline_changed; | |
2230 } | |
2231 beep_flush(); | |
9990
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2232 #endif |
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2233 goto cmdline_not_changed; |
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2234 |
10094
61dc69646af6
commit https://github.com/vim/vim/commit/349e7d94e6bbb253bb87adad9039f095128ab543
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2235 #ifdef FEAT_SEARCH_EXTRA |
9990
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2236 case Ctrl_G: /* next match */ |
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2237 case Ctrl_T: /* previous match */ |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
2238 if (may_adjust_incsearch_highlighting( |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
2239 firstc, count, &is_state, c) == FAIL) |
10094
61dc69646af6
commit https://github.com/vim/vim/commit/349e7d94e6bbb253bb87adad9039f095128ab543
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2240 goto cmdline_not_changed; |
61dc69646af6
commit https://github.com/vim/vim/commit/349e7d94e6bbb253bb87adad9039f095128ab543
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2241 break; |
7 | 2242 #endif |
2243 | |
2244 case Ctrl_V: | |
2245 case Ctrl_Q: | |
2246 #ifdef FEAT_MOUSE | |
2247 ignore_drag_release = TRUE; | |
2248 #endif | |
2249 putcmdline('^', TRUE); | |
2250 c = get_literal(); /* get next (two) character(s) */ | |
2251 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
|
2252 extra_char = NUL; |
7 | 2253 /* may need to remove ^ when composing char was typed */ |
2254 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent) | |
2255 { | |
2256 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); | |
2257 msg_putchar(' '); | |
2258 cursorcmd(); | |
2259 } | |
2260 break; | |
2261 | |
2262 #ifdef FEAT_DIGRAPHS | |
2263 case Ctrl_K: | |
2264 #ifdef FEAT_MOUSE | |
2265 ignore_drag_release = TRUE; | |
2266 #endif | |
2267 putcmdline('?', TRUE); | |
2268 #ifdef USE_ON_FLY_SCROLL | |
2269 dont_scroll = TRUE; /* disallow scrolling here */ | |
2270 #endif | |
2271 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
|
2272 extra_char = NUL; |
7 | 2273 if (c != NUL) |
2274 break; | |
2275 | |
2276 redrawcmd(); | |
2277 goto cmdline_not_changed; | |
2278 #endif /* FEAT_DIGRAPHS */ | |
2279 | |
2280 #ifdef FEAT_RIGHTLEFT | |
2281 case Ctrl__: /* CTRL-_: switch language mode */ | |
2282 if (!p_ari) | |
2283 break; | |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
2284 cmd_hkmap = !cmd_hkmap; |
7 | 2285 goto cmdline_not_changed; |
2286 #endif | |
2287 | |
10676
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2288 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
|
2289 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
|
2290 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
|
2291 |
7 | 2292 default: |
2293 #ifdef UNIX | |
2294 if (c == intr_char) | |
2295 { | |
2296 gotesc = TRUE; /* will free ccline.cmdbuff after | |
2297 putting it in history */ | |
2298 goto returncmd; /* back to Normal mode */ | |
2299 } | |
2300 #endif | |
2301 /* | |
2302 * Normal character with no special meaning. Just set mod_mask | |
2303 * to 0x0 so that typing Shift-Space in the GUI doesn't enter | |
2304 * the string <S-Space>. This should only happen after ^V. | |
2305 */ | |
2306 if (!IS_SPECIAL(c)) | |
2307 mod_mask = 0x0; | |
2308 break; | |
2309 } | |
2310 /* | |
2311 * End of switch on command line character. | |
2312 * We come here if we have a normal character. | |
2313 */ | |
2314 | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
2315 if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
2316 && (ccheck_abbr( |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
2317 // Add ABBR_OFF for characters above 0x100, this is |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
2318 // what check_abbr() expects. |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
2319 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c) |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
2320 || c == Ctrl_RSB)) |
7 | 2321 goto cmdline_changed; |
2322 | |
2323 /* | |
2324 * put the character in the command line | |
2325 */ | |
2326 if (IS_SPECIAL(c) || mod_mask != 0) | |
2327 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE); | |
2328 else | |
2329 { | |
2330 if (has_mbyte) | |
2331 { | |
2332 j = (*mb_char2bytes)(c, IObuff); | |
2333 IObuff[j] = NUL; /* exclude composing chars */ | |
2334 put_on_cmdline(IObuff, j, TRUE); | |
2335 } | |
2336 else | |
2337 { | |
2338 IObuff[0] = c; | |
2339 put_on_cmdline(IObuff, 1, TRUE); | |
2340 } | |
2341 } | |
2342 goto cmdline_changed; | |
2343 | |
2344 /* | |
2345 * This part implements incremental searches for "/" and "?" | |
2346 * Jump to cmdline_not_changed when a character has been read but the command | |
2347 * line did not change. Then we only search and redraw if something changed in | |
2348 * the past. | |
2349 * Jump to cmdline_changed when the command line did change. | |
2350 * (Sorry for the goto's, I know it is ugly). | |
2351 */ | |
2352 cmdline_not_changed: | |
2353 #ifdef FEAT_SEARCH_EXTRA | |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
2354 if (!is_state.incsearch_postponed) |
7 | 2355 continue; |
2356 #endif | |
2357 | |
2358 cmdline_changed: | |
13142
59a16624400a
patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents:
13107
diff
changeset
|
2359 /* Trigger CmdlineChanged autocommands. */ |
59a16624400a
patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents:
13107
diff
changeset
|
2360 trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINECHANGED); |
59a16624400a
patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents:
13107
diff
changeset
|
2361 |
7 | 2362 #ifdef FEAT_SEARCH_EXTRA |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
2363 may_do_incsearch_highlighting(firstc, count, &is_state); |
7 | 2364 #endif |
2365 | |
2366 #ifdef FEAT_RIGHTLEFT | |
2367 if (cmdmsg_rl | |
2368 # ifdef FEAT_ARABIC | |
534 | 2369 || (p_arshape && !p_tbidi && enc_utf8) |
7 | 2370 # endif |
2371 ) | |
2372 /* Always redraw the whole command line to fix shaping and | |
3374 | 2373 * right-left typing. Not efficient, but it works. |
2374 * Do it only when there are no characters left to read | |
2375 * to avoid useless intermediate redraws. */ | |
2376 if (vpeekc() == NUL) | |
2377 redrawcmd(); | |
7 | 2378 #endif |
2379 } | |
2380 | |
2381 returncmd: | |
2382 | |
2383 #ifdef FEAT_RIGHTLEFT | |
2384 cmdmsg_rl = FALSE; | |
2385 #endif | |
2386 | |
2387 ExpandCleanup(&xpc); | |
1718 | 2388 ccline.xpc = NULL; |
7 | 2389 |
2390 #ifdef FEAT_SEARCH_EXTRA | |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
2391 finish_incsearch_highlighting(gotesc, &is_state, FALSE); |
7 | 2392 #endif |
2393 | |
2394 if (ccline.cmdbuff != NULL) | |
2395 { | |
2396 /* | |
2397 * Put line in history buffer (":" and "=" only when it was typed). | |
2398 */ | |
2399 #ifdef FEAT_CMDHIST | |
2400 if (ccline.cmdlen && firstc != NUL | |
2401 && (some_key_typed || histype == HIST_SEARCH)) | |
2402 { | |
2403 add_to_history(histype, ccline.cmdbuff, TRUE, | |
2404 histype == HIST_SEARCH ? firstc : NUL); | |
2405 if (firstc == ':') | |
2406 { | |
2407 vim_free(new_last_cmdline); | |
2408 new_last_cmdline = vim_strsave(ccline.cmdbuff); | |
2409 } | |
2410 } | |
2411 #endif | |
2412 | |
12664
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
2413 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
|
2414 abandon_cmdline(); |
7 | 2415 } |
2416 | |
2417 /* | |
2418 * If the screen was shifted up, redraw the whole screen (later). | |
2419 * If the line is too long, clear it, so ruler and shown command do | |
2420 * not get printed in the middle of it. | |
2421 */ | |
2422 msg_check(); | |
2423 msg_scroll = save_msg_scroll; | |
2424 redir_off = FALSE; | |
2425 | |
2426 /* When the command line was typed, no need for a wait-return prompt. */ | |
2427 if (some_key_typed) | |
2428 need_wait_return = FALSE; | |
2429 | |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
2430 /* 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
|
2431 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
|
2432 |
7 | 2433 State = save_State; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
2434 #ifdef HAVE_INPUT_METHOD |
7 | 2435 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP) |
2436 im_save_status(b_im_ptr); | |
2437 im_set_active(FALSE); | |
2438 #endif | |
2439 #ifdef FEAT_MOUSE | |
2440 setmouse(); | |
2441 #endif | |
2442 #ifdef CURSOR_SHAPE | |
2443 ui_cursor_shape(); /* may show different cursor shape */ | |
2444 #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
|
2445 sb_text_end_cmdline(); |
7 | 2446 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2447 theend: |
95 | 2448 { |
2449 char_u *p = ccline.cmdbuff; | |
2450 | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2451 if (did_save_ccline) |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2452 restore_cmdline(&save_ccline); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2453 else |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2454 ccline.cmdbuff = NULL; |
95 | 2455 return p; |
2456 } | |
7 | 2457 } |
2458 | |
2459 #if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO) | |
2460 /* | |
2461 * Get a command line with a prompt. | |
2462 * This is prepared to be called recursively from getcmdline() (e.g. by | |
2463 * f_input() when evaluating an expression from CTRL-R =). | |
2464 * Returns the command line in allocated memory, or NULL. | |
2465 */ | |
2466 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2467 getcmdline_prompt( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2468 int firstc, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2469 char_u *prompt, /* command line prompt */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2470 int attr, /* attributes for prompt */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2471 int xp_context, /* type of expansion */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2472 char_u *xp_arg) /* user-defined expansion argument */ |
7 | 2473 { |
2474 char_u *s; | |
2475 struct cmdline_info save_ccline; | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2476 int did_save_ccline = FALSE; |
7 | 2477 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
|
2478 int msg_silent_save = msg_silent; |
7 | 2479 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2480 if (ccline.cmdbuff != NULL) |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2481 { |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2482 // Save the values of the current cmdline and restore them below. |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2483 save_cmdline(&save_ccline); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2484 did_save_ccline = TRUE; |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2485 } |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2486 |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2487 vim_memset(&ccline, 0, sizeof(struct cmdline_info)); |
7 | 2488 ccline.cmdprompt = prompt; |
2489 ccline.cmdattr = attr; | |
531 | 2490 # ifdef FEAT_EVAL |
2491 ccline.xp_context = xp_context; | |
2492 ccline.xp_arg = xp_arg; | |
2493 ccline.input_fn = (firstc == '@'); | |
2494 # endif | |
8694
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
2495 msg_silent = 0; |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2496 s = getcmdline_int(firstc, 1L, 0, FALSE); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2497 |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2498 if (did_save_ccline) |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2499 restore_cmdline(&save_ccline); |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2500 |
8694
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
2501 msg_silent = msg_silent_save; |
3020 | 2502 /* Restore msg_col, the prompt from input() may have changed it. |
2503 * But only if called recursively and the commandline is therefore being | |
2504 * restored to an old one; if not, the input() prompt stays on the screen, | |
2505 * so we need its modified msg_col left intact. */ | |
2506 if (ccline.cmdbuff != NULL) | |
2507 msg_col = msg_col_save; | |
7 | 2508 |
2509 return s; | |
2510 } | |
2511 #endif | |
2512 | |
632 | 2513 /* |
634 | 2514 * Return TRUE when the text must not be changed and we can't switch to |
2515 * another window or buffer. Used when editing the command line, evaluating | |
2516 * 'balloonexpr', etc. | |
632 | 2517 */ |
2518 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2519 text_locked(void) |
632 | 2520 { |
2521 #ifdef FEAT_CMDWIN | |
2522 if (cmdwin_type != 0) | |
2523 return TRUE; | |
2524 #endif | |
634 | 2525 return textlock != 0; |
632 | 2526 } |
2527 | |
2528 /* | |
2529 * Give an error message for a command that isn't allowed while the cmdline | |
2530 * window is open or editing the cmdline in another way. | |
2531 */ | |
2532 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2533 text_locked_msg(void) |
632 | 2534 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
2535 emsg(_(get_text_locked_msg())); |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2536 } |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2537 |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
2538 char * |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2539 get_text_locked_msg(void) |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2540 { |
632 | 2541 #ifdef FEAT_CMDWIN |
2542 if (cmdwin_type != 0) | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2543 return e_cmdwin; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2544 #endif |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2545 return e_secure; |
632 | 2546 } |
2547 | |
819 | 2548 /* |
1834 | 2549 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is |
2550 * and give an error message. | |
819 | 2551 */ |
2552 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2553 curbuf_locked(void) |
819 | 2554 { |
2555 if (curbuf_lock > 0) | |
2556 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
2557 emsg(_("E788: Not allowed to edit another buffer now")); |
819 | 2558 return TRUE; |
2559 } | |
1834 | 2560 return allbuf_locked(); |
2561 } | |
2562 | |
2563 /* | |
2564 * Check if "allbuf_lock" is set and return TRUE when it is and give an error | |
2565 * message. | |
2566 */ | |
2567 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2568 allbuf_locked(void) |
1834 | 2569 { |
2570 if (allbuf_lock > 0) | |
2571 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
2572 emsg(_("E811: Not allowed to change buffer information now")); |
1834 | 2573 return TRUE; |
2574 } | |
819 | 2575 return FALSE; |
2576 } | |
2577 | |
7 | 2578 static int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2579 cmdline_charsize(int idx) |
7 | 2580 { |
2581 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
2582 if (cmdline_star > 0) /* showing '*', always 1 position */ | |
2583 return 1; | |
2584 #endif | |
2585 return ptr2cells(ccline.cmdbuff + idx); | |
2586 } | |
2587 | |
2588 /* | |
2589 * Compute the offset of the cursor on the command line for the prompt and | |
2590 * indent. | |
2591 */ | |
2592 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2593 set_cmdspos(void) |
7 | 2594 { |
531 | 2595 if (ccline.cmdfirstc != NUL) |
7 | 2596 ccline.cmdspos = 1 + ccline.cmdindent; |
2597 else | |
2598 ccline.cmdspos = 0 + ccline.cmdindent; | |
2599 } | |
2600 | |
2601 /* | |
2602 * Compute the screen position for the cursor on the command line. | |
2603 */ | |
2604 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2605 set_cmdspos_cursor(void) |
7 | 2606 { |
2607 int i, m, c; | |
2608 | |
2609 set_cmdspos(); | |
2610 if (KeyTyped) | |
534 | 2611 { |
7 | 2612 m = Columns * Rows; |
534 | 2613 if (m < 0) /* overflow, Columns or Rows at weird value */ |
2614 m = MAXCOL; | |
2615 } | |
7 | 2616 else |
2617 m = MAXCOL; | |
2618 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i) | |
2619 { | |
2620 c = cmdline_charsize(i); | |
2621 /* Count ">" for double-wide multi-byte char that doesn't fit. */ | |
2622 if (has_mbyte) | |
2623 correct_cmdspos(i, c); | |
1612 | 2624 /* If the cmdline doesn't fit, show cursor on last visible char. |
2625 * Don't move the cursor itself, so we can still append. */ | |
7 | 2626 if ((ccline.cmdspos += c) >= m) |
2627 { | |
2628 ccline.cmdspos -= c; | |
2629 break; | |
2630 } | |
2631 if (has_mbyte) | |
474 | 2632 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1; |
7 | 2633 } |
2634 } | |
2635 | |
2636 /* | |
2637 * Check if the character at "idx", which is "cells" wide, is a multi-byte | |
2638 * character that doesn't fit, so that a ">" must be displayed. | |
2639 */ | |
2640 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2641 correct_cmdspos(int idx, int cells) |
7 | 2642 { |
474 | 2643 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1 |
7 | 2644 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1 |
2645 && ccline.cmdspos % Columns + cells > Columns) | |
2646 ccline.cmdspos++; | |
2647 } | |
2648 | |
2649 /* | |
2650 * Get an Ex command line for the ":" command. | |
2651 */ | |
2652 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2653 getexline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2654 int c, /* normally ':', NUL for ":append" */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2655 void *cookie UNUSED, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2656 int indent) /* indent for inside conditionals */ |
7 | 2657 { |
2658 /* When executing a register, remove ':' that's in front of each line. */ | |
2659 if (exec_from_reg && vpeekc() == ':') | |
2660 (void)vgetc(); | |
2661 return getcmdline(c, 1L, indent); | |
2662 } | |
2663 | |
2664 /* | |
2665 * Get an Ex command line for Ex mode. | |
2666 * In Ex mode we only use the OS supplied line editing features and no | |
2667 * mappings or abbreviations. | |
168 | 2668 * Returns a string in allocated memory or NULL. |
7 | 2669 */ |
2670 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2671 getexmodeline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2672 int promptc, /* normally ':', NUL for ":append" and '?' for |
168 | 2673 :s prompt */ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2674 void *cookie UNUSED, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2675 int indent) /* indent for inside conditionals */ |
7 | 2676 { |
168 | 2677 garray_T line_ga; |
2678 char_u *pend; | |
2679 int startcol = 0; | |
1329 | 2680 int c1 = 0; |
168 | 2681 int escaped = FALSE; /* CTRL-V typed */ |
2682 int vcol = 0; | |
2683 char_u *p; | |
1329 | 2684 int prev_char; |
5966 | 2685 int len; |
7 | 2686 |
2687 /* Switch cursor on now. This avoids that it happens after the "\n", which | |
2688 * confuses the system function that computes tabstops. */ | |
2689 cursor_on(); | |
2690 | |
2691 /* always start in column 0; write a newline if necessary */ | |
2692 compute_cmdrow(); | |
168 | 2693 if ((msg_col || msg_didout) && promptc != '?') |
7 | 2694 msg_putchar('\n'); |
168 | 2695 if (promptc == ':') |
7 | 2696 { |
164 | 2697 /* indent that is only displayed, not in the line itself */ |
168 | 2698 if (p_prompt) |
2699 msg_putchar(':'); | |
7 | 2700 while (indent-- > 0) |
2701 msg_putchar(' '); | |
2702 startcol = msg_col; | |
2703 } | |
2704 | |
2705 ga_init2(&line_ga, 1, 30); | |
2706 | |
164 | 2707 /* autoindent for :insert and :append is in the line itself */ |
168 | 2708 if (promptc <= 0) |
164 | 2709 { |
2710 vcol = indent; | |
2711 while (indent >= 8) | |
2712 { | |
2713 ga_append(&line_ga, TAB); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2714 msg_puts(" "); |
164 | 2715 indent -= 8; |
2716 } | |
2717 while (indent-- > 0) | |
2718 { | |
2719 ga_append(&line_ga, ' '); | |
2720 msg_putchar(' '); | |
2721 } | |
2722 } | |
168 | 2723 ++no_mapping; |
2724 ++allow_keys; | |
164 | 2725 |
7 | 2726 /* |
2727 * Get the line, one character at a time. | |
2728 */ | |
2729 got_int = FALSE; | |
168 | 2730 while (!got_int) |
7 | 2731 { |
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
|
2732 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
|
2733 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
|
2734 |
7 | 2735 if (ga_grow(&line_ga, 40) == FAIL) |
2736 break; | |
2737 | |
10970
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2738 /* |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2739 * 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
|
2740 */ |
1329 | 2741 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
|
2742 |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2743 /* 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
|
2744 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
|
2745 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
|
2746 else |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2747 c1 = vgetc(); |
7 | 2748 |
2749 /* | |
168 | 2750 * Handle line editing. |
2751 * Previously this was left to the system, putting the terminal in | |
2752 * cooked mode, but then CTRL-D and CTRL-T can't be used properly. | |
7 | 2753 */ |
168 | 2754 if (got_int) |
2755 { | |
2756 msg_putchar('\n'); | |
2757 break; | |
2758 } | |
2759 | |
10676
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2760 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
|
2761 { |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2762 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
|
2763 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
|
2764 } |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2765 |
168 | 2766 if (!escaped) |
7 | 2767 { |
168 | 2768 /* CR typed means "enter", which is NL */ |
2769 if (c1 == '\r') | |
2770 c1 = '\n'; | |
2771 | |
2772 if (c1 == BS || c1 == K_BS | |
2773 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL) | |
7 | 2774 { |
168 | 2775 if (line_ga.ga_len > 0) |
2776 { | |
5966 | 2777 if (has_mbyte) |
2778 { | |
2779 p = (char_u *)line_ga.ga_data; | |
2780 p[line_ga.ga_len] = NUL; | |
2781 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1; | |
2782 line_ga.ga_len -= len; | |
2783 } | |
2784 else | |
2785 --line_ga.ga_len; | |
168 | 2786 goto redraw; |
2787 } | |
2788 continue; | |
7 | 2789 } |
2790 | |
168 | 2791 if (c1 == Ctrl_U) |
7 | 2792 { |
168 | 2793 msg_col = startcol; |
2794 msg_clr_eos(); | |
2795 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
|
2796 goto redraw; |
168 | 2797 } |
2798 | |
2799 if (c1 == Ctrl_T) | |
2800 { | |
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
|
2801 sw = get_sw_value(curbuf); |
168 | 2802 p = (char_u *)line_ga.ga_data; |
2803 p[line_ga.ga_len] = NUL; | |
5995 | 2804 indent = get_indent_str(p, 8, FALSE); |
3740 | 2805 indent += sw - indent % sw; |
168 | 2806 add_indent: |
5995 | 2807 while (get_indent_str(p, 8, FALSE) < indent) |
7 | 2808 { |
7009 | 2809 (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
|
2810 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
|
2811 s = skipwhite(p); |
168 | 2812 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1); |
2813 *s = ' '; | |
2814 ++line_ga.ga_len; | |
7 | 2815 } |
168 | 2816 redraw: |
2817 /* redraw the line */ | |
2818 msg_col = startcol; | |
2819 vcol = 0; | |
5966 | 2820 p = (char_u *)line_ga.ga_data; |
2821 p[line_ga.ga_len] = NUL; | |
2822 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len) | |
7 | 2823 { |
168 | 2824 if (*p == TAB) |
7 | 2825 { |
168 | 2826 do |
2827 msg_putchar(' '); | |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
2828 while (++vcol % 8); |
5966 | 2829 ++p; |
7 | 2830 } |
168 | 2831 else |
164 | 2832 { |
5966 | 2833 len = MB_PTR2LEN(p); |
2834 msg_outtrans_len(p, len); | |
2835 vcol += ptr2cells(p); | |
2836 p += len; | |
7 | 2837 } |
2838 } | |
168 | 2839 msg_clr_eos(); |
1329 | 2840 windgoto(msg_row, msg_col); |
168 | 2841 continue; |
2842 } | |
2843 | |
2844 if (c1 == Ctrl_D) | |
2845 { | |
2846 /* Delete one shiftwidth. */ | |
2847 p = (char_u *)line_ga.ga_data; | |
2848 if (prev_char == '0' || prev_char == '^') | |
7 | 2849 { |
168 | 2850 if (prev_char == '^') |
2851 ex_keep_indent = TRUE; | |
2852 indent = 0; | |
2853 p[--line_ga.ga_len] = NUL; | |
7 | 2854 } |
2855 else | |
2856 { | |
168 | 2857 p[line_ga.ga_len] = NUL; |
5995 | 2858 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
|
2859 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
|
2860 { |
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
|
2861 --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
|
2862 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
|
2863 } |
168 | 2864 } |
5995 | 2865 while (get_indent_str(p, 8, FALSE) > indent) |
168 | 2866 { |
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
|
2867 s = skipwhite(p); |
168 | 2868 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1); |
2869 --line_ga.ga_len; | |
7 | 2870 } |
168 | 2871 goto add_indent; |
2872 } | |
2873 | |
2874 if (c1 == Ctrl_V || c1 == Ctrl_Q) | |
2875 { | |
2876 escaped = TRUE; | |
2877 continue; | |
7 | 2878 } |
168 | 2879 |
2880 /* Ignore special key codes: mouse movement, K_IGNORE, etc. */ | |
2881 if (IS_SPECIAL(c1)) | |
2882 continue; | |
7 | 2883 } |
168 | 2884 |
2885 if (IS_SPECIAL(c1)) | |
2886 c1 = '?'; | |
5966 | 2887 if (has_mbyte) |
2888 len = (*mb_char2bytes)(c1, | |
2889 (char_u *)line_ga.ga_data + line_ga.ga_len); | |
2890 else | |
2891 { | |
2892 len = 1; | |
2893 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1; | |
2894 } | |
168 | 2895 if (c1 == '\n') |
2896 msg_putchar('\n'); | |
2897 else if (c1 == TAB) | |
2898 { | |
2899 /* Don't use chartabsize(), 'ts' can be different */ | |
2900 do | |
2901 msg_putchar(' '); | |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
2902 while (++vcol % 8); |
168 | 2903 } |
7 | 2904 else |
2905 { | |
168 | 2906 msg_outtrans_len( |
5966 | 2907 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len); |
168 | 2908 vcol += char2cells(c1); |
7 | 2909 } |
5966 | 2910 line_ga.ga_len += len; |
168 | 2911 escaped = FALSE; |
2912 | |
2913 windgoto(msg_row, msg_col); | |
164 | 2914 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len; |
168 | 2915 |
2590 | 2916 /* We are done when a NL is entered, but not when it comes after an |
2917 * odd number of backslashes, that results in a NUL. */ | |
2918 if (line_ga.ga_len > 0 && pend[-1] == '\n') | |
7 | 2919 { |
2590 | 2920 int bcount = 0; |
2921 | |
2922 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\') | |
2923 ++bcount; | |
2924 | |
2925 if (bcount > 0) | |
2926 { | |
2927 /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" -> | |
2928 * "\NL", etc. */ | |
2929 line_ga.ga_len -= (bcount + 1) / 2; | |
2930 pend -= (bcount + 1) / 2; | |
2931 pend[-1] = '\n'; | |
2932 } | |
2933 | |
2934 if ((bcount & 1) == 0) | |
2935 { | |
2936 --line_ga.ga_len; | |
2937 --pend; | |
2938 *pend = NUL; | |
2939 break; | |
2940 } | |
7 | 2941 } |
2942 } | |
2943 | |
168 | 2944 --no_mapping; |
2945 --allow_keys; | |
2946 | |
7 | 2947 /* make following messages go to the next line */ |
2948 msg_didout = FALSE; | |
2949 msg_col = 0; | |
2950 if (msg_row < Rows - 1) | |
2951 ++msg_row; | |
2952 emsg_on_display = FALSE; /* don't want ui_delay() */ | |
2953 | |
2954 if (got_int) | |
2955 ga_clear(&line_ga); | |
2956 | |
2957 return (char_u *)line_ga.ga_data; | |
2958 } | |
2959 | |
502 | 2960 # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \ |
2961 || defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
7 | 2962 /* |
2963 * Return TRUE if ccline.overstrike is on. | |
2964 */ | |
2965 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2966 cmdline_overstrike(void) |
7 | 2967 { |
2968 return ccline.overstrike; | |
2969 } | |
2970 | |
2971 /* | |
2972 * Return TRUE if the cursor is at the end of the cmdline. | |
2973 */ | |
2974 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2975 cmdline_at_end(void) |
7 | 2976 { |
2977 return (ccline.cmdpos >= ccline.cmdlen); | |
2978 } | |
2979 #endif | |
2980 | |
574 | 2981 #if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO) |
7 | 2982 /* |
2983 * Return the virtual column number at the current cursor position. | |
2984 * This is used by the IM code to obtain the start of the preedit string. | |
2985 */ | |
2986 colnr_T | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2987 cmdline_getvcol_cursor(void) |
7 | 2988 { |
2989 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen) | |
2990 return MAXCOL; | |
2991 | |
2992 if (has_mbyte) | |
2993 { | |
2994 colnr_T col; | |
2995 int i = 0; | |
2996 | |
2997 for (col = 0; i < ccline.cmdpos; ++col) | |
474 | 2998 i += (*mb_ptr2len)(ccline.cmdbuff + i); |
7 | 2999 |
3000 return col; | |
3001 } | |
3002 else | |
3003 return ccline.cmdpos; | |
3004 } | |
3005 #endif | |
3006 | |
3007 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) | |
3008 /* | |
3009 * If part of the command line is an IM preedit string, redraw it with | |
3010 * IM feedback attributes. The cursor position is restored after drawing. | |
3011 */ | |
3012 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3013 redrawcmd_preedit(void) |
7 | 3014 { |
3015 if ((State & CMDLINE) | |
3016 && xic != NULL | |
976 | 3017 /* && im_get_status() doesn't work when using SCIM */ |
7 | 3018 && !p_imdisable |
3019 && im_is_preediting()) | |
3020 { | |
3021 int cmdpos = 0; | |
3022 int cmdspos; | |
3023 int old_row; | |
3024 int old_col; | |
3025 colnr_T col; | |
3026 | |
3027 old_row = msg_row; | |
3028 old_col = msg_col; | |
531 | 3029 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent; |
7 | 3030 |
3031 if (has_mbyte) | |
3032 { | |
3033 for (col = 0; col < preedit_start_col | |
3034 && cmdpos < ccline.cmdlen; ++col) | |
3035 { | |
3036 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos); | |
474 | 3037 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
7 | 3038 } |
3039 } | |
3040 else | |
3041 { | |
3042 cmdspos += preedit_start_col; | |
3043 cmdpos += preedit_start_col; | |
3044 } | |
3045 | |
3046 msg_row = cmdline_row + (cmdspos / (int)Columns); | |
3047 msg_col = cmdspos % (int)Columns; | |
3048 if (msg_row >= Rows) | |
3049 msg_row = Rows - 1; | |
3050 | |
3051 for (col = 0; cmdpos < ccline.cmdlen; ++col) | |
3052 { | |
3053 int char_len; | |
3054 int char_attr; | |
3055 | |
3056 char_attr = im_get_feedback_attr(col); | |
3057 if (char_attr < 0) | |
3058 break; /* end of preedit string */ | |
3059 | |
3060 if (has_mbyte) | |
474 | 3061 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
7 | 3062 else |
3063 char_len = 1; | |
3064 | |
3065 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr); | |
3066 cmdpos += char_len; | |
3067 } | |
3068 | |
3069 msg_row = old_row; | |
3070 msg_col = old_col; | |
3071 } | |
3072 } | |
3073 #endif /* FEAT_XIM && FEAT_GUI_GTK */ | |
3074 | |
3075 /* | |
3076 * Allocate a new command line buffer. | |
3077 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen. | |
3078 */ | |
3079 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3080 alloc_cmdbuff(int len) |
7 | 3081 { |
3082 /* | |
3083 * give some extra space to avoid having to allocate all the time | |
3084 */ | |
3085 if (len < 80) | |
3086 len = 100; | |
3087 else | |
3088 len += 20; | |
3089 | |
3090 ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */ | |
3091 ccline.cmdbufflen = len; | |
3092 } | |
3093 | |
3094 /* | |
3095 * Re-allocate the command line to length len + something extra. | |
3096 * return FAIL for failure, OK otherwise | |
3097 */ | |
3098 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3099 realloc_cmdbuff(int len) |
7 | 3100 { |
3101 char_u *p; | |
3102 | |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
3103 if (len < ccline.cmdbufflen) |
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
3104 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
|
3105 |
7 | 3106 p = ccline.cmdbuff; |
3107 alloc_cmdbuff(len); /* will get some more */ | |
3108 if (ccline.cmdbuff == NULL) /* out of memory */ | |
3109 { | |
3110 ccline.cmdbuff = p; /* keep the old one */ | |
3111 return FAIL; | |
3112 } | |
2556
e065501c703a
Fix illegal memory access when using expressions in the command line.
Bram Moolenaar <bram@vim.org>
parents:
2534
diff
changeset
|
3113 /* 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
|
3114 * 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
|
3115 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
|
3116 ccline.cmdbuff[ccline.cmdlen] = NUL; |
7 | 3117 vim_free(p); |
1718 | 3118 |
3119 if (ccline.xpc != NULL | |
3120 && ccline.xpc->xp_pattern != NULL | |
3121 && ccline.xpc->xp_context != EXPAND_NOTHING | |
3122 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL) | |
3123 { | |
1754 | 3124 int i = (int)(ccline.xpc->xp_pattern - p); |
1718 | 3125 |
3126 /* If xp_pattern points inside the old cmdbuff it needs to be adjusted | |
3127 * to point into the newly allocated memory. */ | |
3128 if (i >= 0 && i <= ccline.cmdlen) | |
3129 ccline.xpc->xp_pattern = ccline.cmdbuff + i; | |
3130 } | |
3131 | |
7 | 3132 return OK; |
3133 } | |
3134 | |
359 | 3135 #if defined(FEAT_ARABIC) || defined(PROTO) |
3136 static char_u *arshape_buf = NULL; | |
3137 | |
3138 # if defined(EXITFREE) || defined(PROTO) | |
3139 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3140 free_cmdline_buf(void) |
359 | 3141 { |
3142 vim_free(arshape_buf); | |
3143 } | |
3144 # endif | |
3145 #endif | |
3146 | |
7 | 3147 /* |
3148 * Draw part of the cmdline at the current cursor position. But draw stars | |
3149 * when cmdline_star is TRUE. | |
3150 */ | |
3151 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3152 draw_cmdline(int start, int len) |
7 | 3153 { |
3154 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
3155 int i; | |
3156 | |
3157 if (cmdline_star > 0) | |
3158 for (i = 0; i < len; ++i) | |
3159 { | |
3160 msg_putchar('*'); | |
3161 if (has_mbyte) | |
474 | 3162 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1; |
7 | 3163 } |
3164 else | |
3165 #endif | |
3166 #ifdef FEAT_ARABIC | |
3167 if (p_arshape && !p_tbidi && enc_utf8 && len > 0) | |
3168 { | |
3169 static int buflen = 0; | |
3170 char_u *p; | |
3171 int j; | |
3172 int newlen = 0; | |
3173 int mb_l; | |
719 | 3174 int pc, pc1 = 0; |
7 | 3175 int prev_c = 0; |
3176 int prev_c1 = 0; | |
714 | 3177 int u8c; |
3178 int u8cc[MAX_MCO]; | |
7 | 3179 int nc = 0; |
3180 | |
3181 /* | |
3182 * Do arabic shaping into a temporary buffer. This is very | |
3183 * inefficient! | |
3184 */ | |
507 | 3185 if (len * 2 + 2 > buflen) |
7 | 3186 { |
3187 /* Re-allocate the buffer. We keep it around to avoid a lot of | |
3188 * alloc()/free() calls. */ | |
359 | 3189 vim_free(arshape_buf); |
507 | 3190 buflen = len * 2 + 2; |
359 | 3191 arshape_buf = alloc(buflen); |
3192 if (arshape_buf == NULL) | |
7 | 3193 return; /* out of memory */ |
3194 } | |
3195 | |
507 | 3196 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start))) |
3197 { | |
3198 /* Prepend a space to draw the leading composing char on. */ | |
3199 arshape_buf[0] = ' '; | |
3200 newlen = 1; | |
3201 } | |
3202 | |
7 | 3203 for (j = start; j < start + len; j += mb_l) |
3204 { | |
3205 p = ccline.cmdbuff + j; | |
714 | 3206 u8c = utfc_ptr2char_len(p, u8cc, start + len - j); |
474 | 3207 mb_l = utfc_ptr2len_len(p, start + len - j); |
7 | 3208 if (ARABIC_CHAR(u8c)) |
3209 { | |
3210 /* Do Arabic shaping. */ | |
3211 if (cmdmsg_rl) | |
3212 { | |
3213 /* displaying from right to left */ | |
3214 pc = prev_c; | |
3215 pc1 = prev_c1; | |
714 | 3216 prev_c1 = u8cc[0]; |
7 | 3217 if (j + mb_l >= start + len) |
3218 nc = NUL; | |
3219 else | |
3220 nc = utf_ptr2char(p + mb_l); | |
3221 } | |
3222 else | |
3223 { | |
3224 /* displaying from left to right */ | |
3225 if (j + mb_l >= start + len) | |
3226 pc = NUL; | |
3227 else | |
714 | 3228 { |
3229 int pcc[MAX_MCO]; | |
3230 | |
3231 pc = utfc_ptr2char_len(p + mb_l, pcc, | |
7 | 3232 start + len - j - mb_l); |
714 | 3233 pc1 = pcc[0]; |
3234 } | |
7 | 3235 nc = prev_c; |
3236 } | |
3237 prev_c = u8c; | |
3238 | |
714 | 3239 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc); |
7 | 3240 |
359 | 3241 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen); |
714 | 3242 if (u8cc[0] != 0) |
7 | 3243 { |
714 | 3244 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen); |
3245 if (u8cc[1] != 0) | |
3246 newlen += (*mb_char2bytes)(u8cc[1], | |
359 | 3247 arshape_buf + newlen); |
7 | 3248 } |
3249 } | |
3250 else | |
3251 { | |
3252 prev_c = u8c; | |
359 | 3253 mch_memmove(arshape_buf + newlen, p, mb_l); |
7 | 3254 newlen += mb_l; |
3255 } | |
3256 } | |
3257 | |
359 | 3258 msg_outtrans_len(arshape_buf, newlen); |
7 | 3259 } |
3260 else | |
3261 #endif | |
3262 msg_outtrans_len(ccline.cmdbuff + start, len); | |
3263 } | |
3264 | |
3265 /* | |
3266 * Put a character on the command line. Shifts the following text to the | |
3267 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc. | |
3268 * "c" must be printable (fit in one display cell)! | |
3269 */ | |
3270 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3271 putcmdline(int c, int shift) |
7 | 3272 { |
3273 if (cmd_silent) | |
3274 return; | |
3275 msg_no_more = TRUE; | |
3276 msg_putchar(c); | |
3277 if (shift) | |
3278 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); | |
3279 msg_no_more = FALSE; | |
3280 cursorcmd(); | |
11674
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
3281 extra_char = c; |
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
3282 extra_char_shift = shift; |
7 | 3283 } |
3284 | |
3285 /* | |
3286 * Undo a putcmdline(c, FALSE). | |
3287 */ | |
3288 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3289 unputcmdline(void) |
7 | 3290 { |
3291 if (cmd_silent) | |
3292 return; | |
3293 msg_no_more = TRUE; | |
3294 if (ccline.cmdlen == ccline.cmdpos) | |
3295 msg_putchar(' '); | |
3558 | 3296 else if (has_mbyte) |
3297 draw_cmdline(ccline.cmdpos, | |
3298 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos)); | |
7 | 3299 else |
3300 draw_cmdline(ccline.cmdpos, 1); | |
3301 msg_no_more = FALSE; | |
3302 cursorcmd(); | |
11674
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
3303 extra_char = NUL; |
7 | 3304 } |
3305 | |
3306 /* | |
3307 * Put the given string, of the given length, onto the command line. | |
3308 * If len is -1, then STRLEN() is used to calculate the length. | |
3309 * If 'redraw' is TRUE then the new part of the command line, and the remaining | |
3310 * part will be redrawn, otherwise it will not. If this function is called | |
3311 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be | |
3312 * called afterwards. | |
3313 */ | |
3314 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3315 put_on_cmdline(char_u *str, int len, int redraw) |
7 | 3316 { |
3317 int retval; | |
3318 int i; | |
3319 int m; | |
3320 int c; | |
3321 | |
3322 if (len < 0) | |
3323 len = (int)STRLEN(str); | |
3324 | |
3325 /* Check if ccline.cmdbuff needs to be longer */ | |
3326 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
|
3327 retval = realloc_cmdbuff(ccline.cmdlen + len + 1); |
7 | 3328 else |
3329 retval = OK; | |
3330 if (retval == OK) | |
3331 { | |
3332 if (!ccline.overstrike) | |
3333 { | |
3334 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, | |
3335 ccline.cmdbuff + ccline.cmdpos, | |
3336 (size_t)(ccline.cmdlen - ccline.cmdpos)); | |
3337 ccline.cmdlen += len; | |
3338 } | |
3339 else | |
3340 { | |
3341 if (has_mbyte) | |
3342 { | |
3343 /* Count nr of characters in the new string. */ | |
3344 m = 0; | |
474 | 3345 for (i = 0; i < len; i += (*mb_ptr2len)(str + i)) |
7 | 3346 ++m; |
3347 /* Count nr of bytes in cmdline that are overwritten by these | |
3348 * characters. */ | |
3349 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0; | |
474 | 3350 i += (*mb_ptr2len)(ccline.cmdbuff + i)) |
7 | 3351 --m; |
3352 if (i < ccline.cmdlen) | |
3353 { | |
3354 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, | |
3355 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i)); | |
3356 ccline.cmdlen += ccline.cmdpos + len - i; | |
3357 } | |
3358 else | |
3359 ccline.cmdlen = ccline.cmdpos + len; | |
3360 } | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
3361 else if (ccline.cmdpos + len > ccline.cmdlen) |
7 | 3362 ccline.cmdlen = ccline.cmdpos + len; |
3363 } | |
3364 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len); | |
3365 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
3366 | |
3367 if (enc_utf8) | |
3368 { | |
3369 /* When the inserted text starts with a composing character, | |
3370 * backup to the character before it. There could be two of them. | |
3371 */ | |
3372 i = 0; | |
3373 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); | |
3374 while (ccline.cmdpos > 0 && utf_iscomposing(c)) | |
3375 { | |
3376 i = (*mb_head_off)(ccline.cmdbuff, | |
3377 ccline.cmdbuff + ccline.cmdpos - 1) + 1; | |
3378 ccline.cmdpos -= i; | |
3379 len += i; | |
3380 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); | |
3381 } | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
3382 #ifdef FEAT_ARABIC |
7 | 3383 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c)) |
3384 { | |
3385 /* Check the previous character for Arabic combining pair. */ | |
3386 i = (*mb_head_off)(ccline.cmdbuff, | |
3387 ccline.cmdbuff + ccline.cmdpos - 1) + 1; | |
3388 if (arabic_combine(utf_ptr2char(ccline.cmdbuff | |
3389 + ccline.cmdpos - i), c)) | |
3390 { | |
3391 ccline.cmdpos -= i; | |
3392 len += i; | |
3393 } | |
3394 else | |
3395 i = 0; | |
3396 } | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
3397 #endif |
7 | 3398 if (i != 0) |
3399 { | |
3400 /* Also backup the cursor position. */ | |
3401 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos); | |
3402 ccline.cmdspos -= i; | |
3403 msg_col -= i; | |
3404 if (msg_col < 0) | |
3405 { | |
3406 msg_col += Columns; | |
3407 --msg_row; | |
3408 } | |
3409 } | |
3410 } | |
3411 | |
3412 if (redraw && !cmd_silent) | |
3413 { | |
3414 msg_no_more = TRUE; | |
3415 i = cmdline_row; | |
3114 | 3416 cursorcmd(); |
7 | 3417 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); |
3418 /* Avoid clearing the rest of the line too often. */ | |
3419 if (cmdline_row != i || ccline.overstrike) | |
3420 msg_clr_eos(); | |
3421 msg_no_more = FALSE; | |
3422 } | |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3423 if (KeyTyped) |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3424 { |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3425 m = Columns * Rows; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3426 if (m < 0) /* overflow, Columns or Rows at weird value */ |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3427 m = MAXCOL; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3428 } |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3429 else |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3430 m = MAXCOL; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3431 for (i = 0; i < len; ++i) |
7 | 3432 { |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3433 c = cmdline_charsize(ccline.cmdpos); |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3434 /* count ">" for a double-wide char that doesn't fit. */ |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3435 if (has_mbyte) |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3436 correct_cmdspos(ccline.cmdpos, c); |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3437 /* Stop cursor at the end of the screen, but do increment the |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3438 * insert position, so that entering a very long command |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3439 * works, even though you can't see it. */ |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3440 if (ccline.cmdspos + c < m) |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3441 ccline.cmdspos += c; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3442 |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3443 if (has_mbyte) |
7 | 3444 { |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3445 c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3446 if (c > len - i - 1) |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3447 c = len - i - 1; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3448 ccline.cmdpos += c; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3449 i += c; |
7 | 3450 } |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3451 ++ccline.cmdpos; |
7 | 3452 } |
3453 } | |
3454 if (redraw) | |
3455 msg_check(); | |
3456 return retval; | |
3457 } | |
3458 | |
95 | 3459 static struct cmdline_info prev_ccline; |
3460 static int prev_ccline_used = FALSE; | |
3461 | |
3462 /* | |
3463 * Save ccline, because obtaining the "=" register may execute "normal :cmd" | |
3464 * and overwrite it. But get_cmdline_str() may need it, thus make it | |
3465 * available globally in prev_ccline. | |
3466 */ | |
3467 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3468 save_cmdline(struct cmdline_info *ccp) |
95 | 3469 { |
3470 if (!prev_ccline_used) | |
3471 { | |
3472 vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info)); | |
3473 prev_ccline_used = TRUE; | |
3474 } | |
3475 *ccp = prev_ccline; | |
3476 prev_ccline = ccline; | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
3477 ccline.cmdbuff = NULL; // signal that ccline is not in use |
95 | 3478 } |
3479 | |
3480 /* | |
1214 | 3481 * Restore ccline after it has been saved with save_cmdline(). |
95 | 3482 */ |
3483 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3484 restore_cmdline(struct cmdline_info *ccp) |
95 | 3485 { |
3486 ccline = prev_ccline; | |
3487 prev_ccline = *ccp; | |
3488 } | |
3489 | |
15 | 3490 /* |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
3491 * 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
|
3492 * Used by CTRL-R command in command-line mode. |
15 | 3493 * insert_reg() can't be used here, because special characters from the |
3494 * register contents will be interpreted as commands. | |
3495 * | |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
3496 * Return FAIL for failure, OK otherwise. |
15 | 3497 */ |
3498 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3499 cmdline_paste( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3500 int regname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3501 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
|
3502 int remcr) /* remove trailing CR */ |
15 | 3503 { |
3504 long i; | |
3505 char_u *arg; | |
772 | 3506 char_u *p; |
15 | 3507 int allocated; |
3508 | |
3509 /* check for valid regname; also accept special characters for CTRL-R in | |
3510 * the command line */ | |
3511 if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W | |
13831
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13794
diff
changeset
|
3512 && regname != Ctrl_A && regname != Ctrl_L |
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13794
diff
changeset
|
3513 && !valid_yank_reg(regname, FALSE)) |
15 | 3514 return FAIL; |
3515 | |
3516 /* A register containing CTRL-R can cause an endless loop. Allow using | |
3517 * CTRL-C to break the loop. */ | |
3518 line_breakcheck(); | |
3519 if (got_int) | |
3520 return FAIL; | |
3521 | |
3522 #ifdef FEAT_CLIPBOARD | |
3523 regname = may_get_selection(regname); | |
3524 #endif | |
3525 | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
3526 // Need to set "textlock" to avoid nasty things like going to another |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
3527 // buffer when evaluating an expression. |
634 | 3528 ++textlock; |
15 | 3529 i = get_spec_reg(regname, &arg, &allocated, TRUE); |
634 | 3530 --textlock; |
15 | 3531 |
3532 if (i) | |
3533 { | |
3534 /* Got the value of a special register in "arg". */ | |
3535 if (arg == NULL) | |
3536 return FAIL; | |
772 | 3537 |
3538 /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate | |
3539 * part of the word. */ | |
3540 p = arg; | |
3541 if (p_is && regname == Ctrl_W) | |
3542 { | |
3543 char_u *w; | |
3544 int len; | |
3545 | |
3546 /* Locate start of last word in the cmd buffer. */ | |
2937 | 3547 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; ) |
772 | 3548 { |
3549 if (has_mbyte) | |
3550 { | |
3551 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1; | |
3552 if (!vim_iswordc(mb_ptr2char(w - len))) | |
3553 break; | |
3554 w -= len; | |
3555 } | |
3556 else | |
3557 { | |
3558 if (!vim_iswordc(w[-1])) | |
3559 break; | |
3560 --w; | |
3561 } | |
3562 } | |
2937 | 3563 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w); |
772 | 3564 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0) |
3565 p += len; | |
3566 } | |
3567 | |
3568 cmdline_paste_str(p, literally); | |
15 | 3569 if (allocated) |
3570 vim_free(arg); | |
3571 return OK; | |
3572 } | |
3573 | |
1015 | 3574 return cmdline_paste_reg(regname, literally, remcr); |
15 | 3575 } |
3576 | |
3577 /* | |
3578 * Put a string on the command line. | |
3579 * When "literally" is TRUE, insert literally. | |
3580 * When "literally" is FALSE, insert as typed, but don't leave the command | |
3581 * line. | |
3582 */ | |
3583 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3584 cmdline_paste_str(char_u *s, int literally) |
15 | 3585 { |
3586 int c, cv; | |
3587 | |
3588 if (literally) | |
3589 put_on_cmdline(s, -1, TRUE); | |
3590 else | |
3591 while (*s != NUL) | |
3592 { | |
3593 cv = *s; | |
3594 if (cv == Ctrl_V && s[1]) | |
3595 ++s; | |
3596 if (has_mbyte) | |
1606 | 3597 c = mb_cptr2char_adv(&s); |
15 | 3598 else |
3599 c = *s++; | |
3628 | 3600 if (cv == Ctrl_V || c == ESC || c == Ctrl_C |
3601 || c == CAR || c == NL || c == Ctrl_L | |
15 | 3602 #ifdef UNIX |
3603 || c == intr_char | |
3604 #endif | |
3605 || (c == Ctrl_BSL && *s == Ctrl_N)) | |
3606 stuffcharReadbuff(Ctrl_V); | |
3607 stuffcharReadbuff(c); | |
3608 } | |
3609 } | |
3610 | |
7 | 3611 #ifdef FEAT_WILDMENU |
3612 /* | |
3613 * Delete characters on the command line, from "from" to the current | |
3614 * position. | |
3615 */ | |
3616 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3617 cmdline_del(int from) |
7 | 3618 { |
3619 mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos, | |
3620 (size_t)(ccline.cmdlen - ccline.cmdpos + 1)); | |
3621 ccline.cmdlen -= ccline.cmdpos - from; | |
3622 ccline.cmdpos = from; | |
3623 } | |
3624 #endif | |
3625 | |
3626 /* | |
9066
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
3627 * 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
|
3628 * 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
|
3629 * overwritten. |
7 | 3630 */ |
3631 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3632 redrawcmdline(void) |
7 | 3633 { |
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
|
3634 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
|
3635 } |
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
|
3636 |
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
|
3637 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
|
3638 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
|
3639 { |
7 | 3640 if (cmd_silent) |
3641 return; | |
3642 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
|
3643 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
|
3644 compute_cmdrow(); |
7 | 3645 redrawcmd(); |
3646 cursorcmd(); | |
3647 } | |
3648 | |
3649 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3650 redrawcmdprompt(void) |
7 | 3651 { |
3652 int i; | |
3653 | |
3654 if (cmd_silent) | |
3655 return; | |
531 | 3656 if (ccline.cmdfirstc != NUL) |
7 | 3657 msg_putchar(ccline.cmdfirstc); |
3658 if (ccline.cmdprompt != NULL) | |
3659 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3660 msg_puts_attr((char *)ccline.cmdprompt, ccline.cmdattr); |
7 | 3661 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns; |
3662 /* do the reverse of set_cmdspos() */ | |
531 | 3663 if (ccline.cmdfirstc != NUL) |
7 | 3664 --ccline.cmdindent; |
3665 } | |
3666 else | |
3667 for (i = ccline.cmdindent; i > 0; --i) | |
3668 msg_putchar(' '); | |
3669 } | |
3670 | |
3671 /* | |
3672 * Redraw what is currently on the command line. | |
3673 */ | |
3674 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3675 redrawcmd(void) |
7 | 3676 { |
3677 if (cmd_silent) | |
3678 return; | |
3679 | |
683 | 3680 /* when 'incsearch' is set there may be no command line while redrawing */ |
3681 if (ccline.cmdbuff == NULL) | |
3682 { | |
3683 windgoto(cmdline_row, 0); | |
3684 msg_clr_eos(); | |
3685 return; | |
3686 } | |
3687 | |
7 | 3688 msg_start(); |
3689 redrawcmdprompt(); | |
3690 | |
3691 /* Don't use more prompt, truncate the cmdline if it doesn't fit. */ | |
3692 msg_no_more = TRUE; | |
3693 draw_cmdline(0, ccline.cmdlen); | |
3694 msg_clr_eos(); | |
3695 msg_no_more = FALSE; | |
3696 | |
3697 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
|
3698 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
|
3699 putcmdline(extra_char, extra_char_shift); |
7 | 3700 |
3701 /* | |
3702 * An emsg() before may have set msg_scroll. This is used in normal mode, | |
3703 * in cmdline mode we can reset them now. | |
3704 */ | |
3705 msg_scroll = FALSE; /* next message overwrites cmdline */ | |
3706 | |
3707 /* Typing ':' at the more prompt may set skip_redraw. We don't want this | |
3708 * in cmdline mode */ | |
3709 skip_redraw = FALSE; | |
3710 } | |
3711 | |
3712 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3713 compute_cmdrow(void) |
7 | 3714 { |
540 | 3715 if (exmode_active || msg_scrolled != 0) |
7 | 3716 cmdline_row = Rows - 1; |
3717 else | |
3718 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
|
3719 + lastwin->w_status_height; |
7 | 3720 } |
3721 | |
3722 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3723 cursorcmd(void) |
7 | 3724 { |
3725 if (cmd_silent) | |
3726 return; | |
3727 | |
3728 #ifdef FEAT_RIGHTLEFT | |
3729 if (cmdmsg_rl) | |
3730 { | |
3731 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1)); | |
3732 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1; | |
3733 if (msg_row <= 0) | |
3734 msg_row = Rows - 1; | |
3735 } | |
3736 else | |
3737 #endif | |
3738 { | |
3739 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns); | |
3740 msg_col = ccline.cmdspos % (int)Columns; | |
3741 if (msg_row >= Rows) | |
3742 msg_row = Rows - 1; | |
3743 } | |
3744 | |
3745 windgoto(msg_row, msg_col); | |
3746 #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
|
3747 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
|
3748 redrawcmd_preedit(); |
7 | 3749 #endif |
3750 #ifdef MCH_CURSOR_SHAPE | |
3751 mch_update_cursor(); | |
3752 #endif | |
3753 } | |
3754 | |
3755 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3756 gotocmdline(int clr) |
7 | 3757 { |
3758 msg_start(); | |
3759 #ifdef FEAT_RIGHTLEFT | |
3760 if (cmdmsg_rl) | |
3761 msg_col = Columns - 1; | |
3762 else | |
3763 #endif | |
3764 msg_col = 0; /* always start in column 0 */ | |
3765 if (clr) /* clear the bottom line(s) */ | |
3766 msg_clr_eos(); /* will reset clear_cmdline */ | |
3767 windgoto(cmdline_row, 0); | |
3768 } | |
3769 | |
3770 /* | |
3771 * Check the word in front of the cursor for an abbreviation. | |
3772 * Called when the non-id character "c" has been entered. | |
3773 * When an abbreviation is recognized it is removed from the text with | |
3774 * backspaces and the replacement string is inserted, followed by "c". | |
3775 */ | |
3776 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3777 ccheck_abbr(int c) |
7 | 3778 { |
13933
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3779 int spos = 0; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3780 |
7 | 3781 if (p_paste || no_abbr) /* no abbreviations or in paste mode */ |
3782 return FALSE; | |
3783 | |
13933
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3784 /* Do not consider '<,'> be part of the mapping, skip leading whitespace. |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3785 * Actually accepts any mark. */ |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3786 while (VIM_ISWHITE(ccline.cmdbuff[spos]) && spos < ccline.cmdlen) |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3787 spos++; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3788 if (ccline.cmdlen - spos > 5 |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3789 && ccline.cmdbuff[spos] == '\'' |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3790 && ccline.cmdbuff[spos + 2] == ',' |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3791 && ccline.cmdbuff[spos + 3] == '\'') |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3792 spos += 5; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3793 else |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3794 /* check abbreviation from the beginning of the commandline */ |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3795 spos = 0; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3796 |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3797 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, spos); |
7 | 3798 } |
3799 | |
3164 | 3800 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
3801 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3802 sort_func_compare(const void *s1, const void *s2) |
3164 | 3803 { |
3804 char_u *p1 = *(char_u **)s1; | |
3805 char_u *p2 = *(char_u **)s2; | |
3806 | |
3807 if (*p1 != '<' && *p2 == '<') return -1; | |
3808 if (*p1 == '<' && *p2 != '<') return 1; | |
3809 return STRCMP(p1, p2); | |
3810 } | |
3811 #endif | |
3812 | |
7 | 3813 /* |
3814 * Return FAIL if this is not an appropriate context in which to do | |
3815 * completion of anything, return OK if it is (even if there are no matches). | |
3816 * For the caller, this means that the character is just passed through like a | |
3817 * normal character (instead of being expanded). This allows :s/^I^D etc. | |
3818 */ | |
3819 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3820 nextwild( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3821 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3822 int type, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3823 int options, /* extra options for ExpandOne() */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3824 int escape) /* if TRUE, escape the returned matches */ |
7 | 3825 { |
3826 int i, j; | |
3827 char_u *p1; | |
3828 char_u *p2; | |
3829 int difflen; | |
3830 int v; | |
3831 | |
3832 if (xp->xp_numfiles == -1) | |
3833 { | |
3834 set_expand_context(xp); | |
3835 cmd_showtail = expand_showtail(xp); | |
3836 } | |
3837 | |
3838 if (xp->xp_context == EXPAND_UNSUCCESSFUL) | |
3839 { | |
3840 beep_flush(); | |
3841 return OK; /* Something illegal on command line */ | |
3842 } | |
3843 if (xp->xp_context == EXPAND_NOTHING) | |
3844 { | |
3845 /* Caller can use the character as a normal char instead */ | |
3846 return FAIL; | |
3847 } | |
3848 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3849 msg_puts("..."); /* show that we are busy */ |
7 | 3850 out_flush(); |
3851 | |
3852 i = (int)(xp->xp_pattern - ccline.cmdbuff); | |
1965 | 3853 xp->xp_pattern_len = ccline.cmdpos - i; |
7 | 3854 |
3855 if (type == WILD_NEXT || type == WILD_PREV) | |
3856 { | |
3857 /* | |
3858 * Get next/previous match for a previous expanded pattern. | |
3859 */ | |
3860 p2 = ExpandOne(xp, NULL, NULL, 0, type); | |
3861 } | |
3862 else | |
3863 { | |
3864 /* | |
3865 * Translate string into pattern and expand it. | |
3866 */ | |
1965 | 3867 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len, |
3868 xp->xp_context)) == NULL) | |
7 | 3869 p2 = NULL; |
3870 else | |
3871 { | |
2652 | 3872 int use_options = options | |
3961 | 3873 WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT; |
3874 if (escape) | |
3875 use_options |= WILD_ESCAPE; | |
2652 | 3876 |
3877 if (p_wic) | |
3878 use_options += WILD_ICASE; | |
1965 | 3879 p2 = ExpandOne(xp, p1, |
3880 vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len), | |
2652 | 3881 use_options, type); |
7 | 3882 vim_free(p1); |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
2016
diff
changeset
|
3883 /* longest match: make sure it is not shorter, happens with :help */ |
7 | 3884 if (p2 != NULL && type == WILD_LONGEST) |
3885 { | |
1965 | 3886 for (j = 0; j < xp->xp_pattern_len; ++j) |
7 | 3887 if (ccline.cmdbuff[i + j] == '*' |
3888 || ccline.cmdbuff[i + j] == '?') | |
3889 break; | |
3890 if ((int)STRLEN(p2) < j) | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
3891 VIM_CLEAR(p2); |
7 | 3892 } |
3893 } | |
3894 } | |
3895 | |
3896 if (p2 != NULL && !got_int) | |
3897 { | |
1965 | 3898 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
|
3899 if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen) |
7 | 3900 { |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
3901 v = realloc_cmdbuff(ccline.cmdlen + difflen + 4); |
7 | 3902 xp->xp_pattern = ccline.cmdbuff + i; |
3903 } | |
3904 else | |
3905 v = OK; | |
3906 if (v == OK) | |
3907 { | |
323 | 3908 mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen], |
3909 &ccline.cmdbuff[ccline.cmdpos], | |
3910 (size_t)(ccline.cmdlen - ccline.cmdpos + 1)); | |
3911 mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2)); | |
7 | 3912 ccline.cmdlen += difflen; |
3913 ccline.cmdpos += difflen; | |
3914 } | |
3915 } | |
3916 vim_free(p2); | |
3917 | |
3918 redrawcmd(); | |
33 | 3919 cursorcmd(); |
7 | 3920 |
3921 /* When expanding a ":map" command and no matches are found, assume that | |
3922 * the key is supposed to be inserted literally */ | |
3923 if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL) | |
3924 return FAIL; | |
3925 | |
3926 if (xp->xp_numfiles <= 0 && p2 == NULL) | |
3927 beep_flush(); | |
3928 else if (xp->xp_numfiles == 1) | |
3929 /* free expanded pattern */ | |
3930 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE); | |
3931 | |
3932 return OK; | |
3933 } | |
3934 | |
3935 /* | |
3936 * Do wildcard expansion on the string 'str'. | |
3937 * Chars that should not be expanded must be preceded with a backslash. | |
1612 | 3938 * Return a pointer to allocated memory containing the new string. |
7 | 3939 * Return NULL for failure. |
3940 * | |
1412 | 3941 * "orig" is the originally expanded string, copied to allocated memory. It |
3942 * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or | |
3943 * WILD_PREV "orig" should be NULL. | |
3944 * | |
838 | 3945 * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode" |
3946 * is WILD_EXPAND_FREE or WILD_ALL. | |
7 | 3947 * |
3948 * mode = WILD_FREE: just free previously expanded matches | |
3949 * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches | |
3950 * mode = WILD_EXPAND_KEEP: normal expansion, keep matches | |
3951 * mode = WILD_NEXT: use next match in multiple match, wrap to first | |
3952 * mode = WILD_PREV: use previous match in multiple match, wrap to first | |
3953 * mode = WILD_ALL: return all matches concatenated | |
3954 * mode = WILD_LONGEST: return longest matched part | |
3398 | 3955 * mode = WILD_ALL_KEEP: get all matches, keep matches |
7 | 3956 * |
3957 * options = WILD_LIST_NOTFOUND: list entries without a match | |
3958 * options = WILD_HOME_REPLACE: do home_replace() for buffer names | |
3959 * options = WILD_USE_NL: Use '\n' for WILD_ALL | |
3960 * options = WILD_NO_BEEP: Don't beep for multiple matches | |
3961 * options = WILD_ADD_SLASH: add a slash after directory names | |
3962 * options = WILD_KEEP_ALL: don't remove 'wildignore' entries | |
3963 * options = WILD_SILENT: don't print warning messages | |
3964 * options = WILD_ESCAPE: put backslash before special chars | |
2652 | 3965 * options = WILD_ICASE: ignore case for files |
7 | 3966 * |
3967 * The variables xp->xp_context and xp->xp_backslash must have been set! | |
3968 */ | |
3969 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3970 ExpandOne( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3971 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3972 char_u *str, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3973 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
|
3974 int options, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3975 int mode) |
7 | 3976 { |
3977 char_u *ss = NULL; | |
3978 static int findex; | |
3979 static char_u *orig_save = NULL; /* kept value of orig */ | |
1432 | 3980 int orig_saved = FALSE; |
7 | 3981 int i; |
3982 long_u len; | |
3983 int non_suf_match; /* number without matching suffix */ | |
3984 | |
3985 /* | |
3986 * first handle the case of using an old match | |
3987 */ | |
3988 if (mode == WILD_NEXT || mode == WILD_PREV) | |
3989 { | |
3990 if (xp->xp_numfiles > 0) | |
3991 { | |
3992 if (mode == WILD_PREV) | |
3993 { | |
3994 if (findex == -1) | |
3995 findex = xp->xp_numfiles; | |
3996 --findex; | |
3997 } | |
3998 else /* mode == WILD_NEXT */ | |
3999 ++findex; | |
4000 | |
4001 /* | |
4002 * When wrapping around, return the original string, set findex to | |
4003 * -1. | |
4004 */ | |
4005 if (findex < 0) | |
4006 { | |
4007 if (orig_save == NULL) | |
4008 findex = xp->xp_numfiles - 1; | |
4009 else | |
4010 findex = -1; | |
4011 } | |
4012 if (findex >= xp->xp_numfiles) | |
4013 { | |
4014 if (orig_save == NULL) | |
4015 findex = 0; | |
4016 else | |
4017 findex = -1; | |
4018 } | |
4019 #ifdef FEAT_WILDMENU | |
4020 if (p_wmnu) | |
4021 win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files, | |
4022 findex, cmd_showtail); | |
4023 #endif | |
4024 if (findex == -1) | |
4025 return vim_strsave(orig_save); | |
4026 return vim_strsave(xp->xp_files[findex]); | |
4027 } | |
4028 else | |
4029 return NULL; | |
4030 } | |
4031 | |
1412 | 4032 /* free old names */ |
7 | 4033 if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST) |
4034 { | |
4035 FreeWild(xp->xp_numfiles, xp->xp_files); | |
4036 xp->xp_numfiles = -1; | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
4037 VIM_CLEAR(orig_save); |
7 | 4038 } |
4039 findex = 0; | |
4040 | |
4041 if (mode == WILD_FREE) /* only release file name */ | |
4042 return NULL; | |
4043 | |
4044 if (xp->xp_numfiles == -1) | |
4045 { | |
4046 vim_free(orig_save); | |
4047 orig_save = orig; | |
1432 | 4048 orig_saved = TRUE; |
7 | 4049 |
4050 /* | |
4051 * Do the expansion. | |
4052 */ | |
4053 if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files, | |
4054 options) == FAIL) | |
4055 { | |
4056 #ifdef FNAME_ILLEGAL | |
4057 /* Illegal file name has been silently skipped. But when there | |
4058 * are wildcards, the real problem is that there was no match, | |
4059 * causing the pattern to be added, which has illegal characters. | |
4060 */ | |
4061 if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND)) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
4062 semsg(_(e_nomatch2), str); |
7 | 4063 #endif |
4064 } | |
4065 else if (xp->xp_numfiles == 0) | |
4066 { | |
4067 if (!(options & WILD_SILENT)) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
4068 semsg(_(e_nomatch2), str); |
7 | 4069 } |
4070 else | |
4071 { | |
4072 /* Escape the matches for use on the command line. */ | |
4073 ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options); | |
4074 | |
4075 /* | |
4076 * Check for matching suffixes in file names. | |
4077 */ | |
3398 | 4078 if (mode != WILD_ALL && mode != WILD_ALL_KEEP |
4079 && mode != WILD_LONGEST) | |
7 | 4080 { |
4081 if (xp->xp_numfiles) | |
4082 non_suf_match = xp->xp_numfiles; | |
4083 else | |
4084 non_suf_match = 1; | |
4085 if ((xp->xp_context == EXPAND_FILES | |
4086 || xp->xp_context == EXPAND_DIRECTORIES) | |
4087 && xp->xp_numfiles > 1) | |
4088 { | |
4089 /* | |
4090 * More than one match; check suffix. | |
4091 * The files will have been sorted on matching suffix in | |
4092 * expand_wildcards, only need to check the first two. | |
4093 */ | |
4094 non_suf_match = 0; | |
4095 for (i = 0; i < 2; ++i) | |
4096 if (match_suffix(xp->xp_files[i])) | |
4097 ++non_suf_match; | |
4098 } | |
4099 if (non_suf_match != 1) | |
4100 { | |
4101 /* Can we ever get here unless it's while expanding | |
4102 * interactively? If not, we can get rid of this all | |
4103 * together. Don't really want to wait for this message | |
4104 * (and possibly have to hit return to continue!). | |
4105 */ | |
4106 if (!(options & WILD_SILENT)) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
4107 emsg(_(e_toomany)); |
7 | 4108 else if (!(options & WILD_NO_BEEP)) |
4109 beep_flush(); | |
4110 } | |
4111 if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE)) | |
4112 ss = vim_strsave(xp->xp_files[0]); | |
4113 } | |
4114 } | |
4115 } | |
4116 | |
4117 /* Find longest common part */ | |
4118 if (mode == WILD_LONGEST && xp->xp_numfiles > 0) | |
4119 { | |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4120 int mb_len = 1; |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4121 int c0, ci; |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4122 |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4123 for (len = 0; xp->xp_files[0][len]; len += mb_len) |
7 | 4124 { |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4125 if (has_mbyte) |
7 | 4126 { |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4127 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
|
4128 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
|
4129 } |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4130 else |
7250
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
4131 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
|
4132 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
|
4133 { |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4134 if (has_mbyte) |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4135 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
|
4136 else |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4137 ci = xp->xp_files[i][len]; |
4242 | 4138 if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES |
7 | 4139 || xp->xp_context == EXPAND_FILES |
714 | 4140 || xp->xp_context == EXPAND_SHELLCMD |
4242 | 4141 || xp->xp_context == EXPAND_BUFFERS)) |
7 | 4142 { |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4143 if (MB_TOLOWER(c0) != MB_TOLOWER(ci)) |
7 | 4144 break; |
4145 } | |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4146 else if (c0 != ci) |
7 | 4147 break; |
4148 } | |
4149 if (i < xp->xp_numfiles) | |
4150 { | |
4151 if (!(options & WILD_NO_BEEP)) | |
6949 | 4152 vim_beep(BO_WILD); |
7 | 4153 break; |
4154 } | |
4155 } | |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4156 |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4157 ss = alloc(len + 1); |
7 | 4158 if (ss) |
419 | 4159 vim_strncpy(ss, xp->xp_files[0], (size_t)len); |
7 | 4160 findex = -1; /* next p_wc gets first one */ |
4161 } | |
4162 | |
4163 /* Concatenate all matching names */ | |
4164 if (mode == WILD_ALL && xp->xp_numfiles > 0) | |
4165 { | |
4166 len = 0; | |
4167 for (i = 0; i < xp->xp_numfiles; ++i) | |
4168 len += (long_u)STRLEN(xp->xp_files[i]) + 1; | |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
4169 ss = alloc(len); |
7 | 4170 if (ss != NULL) |
4171 { | |
4172 *ss = NUL; | |
4173 for (i = 0; i < xp->xp_numfiles; ++i) | |
4174 { | |
4175 STRCAT(ss, xp->xp_files[i]); | |
4176 if (i != xp->xp_numfiles - 1) | |
4177 STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " "); | |
4178 } | |
4179 } | |
4180 } | |
4181 | |
4182 if (mode == WILD_EXPAND_FREE || mode == WILD_ALL) | |
4183 ExpandCleanup(xp); | |
4184 | |
1412 | 4185 /* Free "orig" if it wasn't stored in "orig_save". */ |
1432 | 4186 if (!orig_saved) |
1412 | 4187 vim_free(orig); |
4188 | |
7 | 4189 return ss; |
4190 } | |
4191 | |
4192 /* | |
4193 * Prepare an expand structure for use. | |
4194 */ | |
4195 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4196 ExpandInit(expand_T *xp) |
7 | 4197 { |
1718 | 4198 xp->xp_pattern = NULL; |
1965 | 4199 xp->xp_pattern_len = 0; |
7 | 4200 xp->xp_backslash = XP_BS_NONE; |
632 | 4201 #ifndef BACKSLASH_IN_FILENAME |
4202 xp->xp_shell = FALSE; | |
4203 #endif | |
7 | 4204 xp->xp_numfiles = -1; |
4205 xp->xp_files = NULL; | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16287
diff
changeset
|
4206 #if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL) |
632 | 4207 xp->xp_arg = NULL; |
4208 #endif | |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
4209 xp->xp_line = NULL; |
7 | 4210 } |
4211 | |
4212 /* | |
4213 * Cleanup an expand structure after use. | |
4214 */ | |
4215 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4216 ExpandCleanup(expand_T *xp) |
7 | 4217 { |
4218 if (xp->xp_numfiles >= 0) | |
4219 { | |
4220 FreeWild(xp->xp_numfiles, xp->xp_files); | |
4221 xp->xp_numfiles = -1; | |
4222 } | |
4223 } | |
4224 | |
4225 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4226 ExpandEscape( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4227 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4228 char_u *str, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4229 int numfiles, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4230 char_u **files, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4231 int options) |
7 | 4232 { |
4233 int i; | |
4234 char_u *p; | |
4235 | |
4236 /* | |
4237 * May change home directory back to "~" | |
4238 */ | |
4239 if (options & WILD_HOME_REPLACE) | |
4240 tilde_replace(str, numfiles, files); | |
4241 | |
4242 if (options & WILD_ESCAPE) | |
4243 { | |
4244 if (xp->xp_context == EXPAND_FILES | |
2778 | 4245 || xp->xp_context == EXPAND_FILES_IN_PATH |
714 | 4246 || xp->xp_context == EXPAND_SHELLCMD |
7 | 4247 || xp->xp_context == EXPAND_BUFFERS |
4248 || xp->xp_context == EXPAND_DIRECTORIES) | |
4249 { | |
4250 /* | |
4251 * Insert a backslash into a file name before a space, \, %, # | |
4252 * and wildmatch characters, except '~'. | |
4253 */ | |
4254 for (i = 0; i < numfiles; ++i) | |
4255 { | |
4256 /* for ":set path=" we need to escape spaces twice */ | |
4257 if (xp->xp_backslash == XP_BS_THREE) | |
4258 { | |
4259 p = vim_strsave_escaped(files[i], (char_u *)" "); | |
4260 if (p != NULL) | |
4261 { | |
4262 vim_free(files[i]); | |
4263 files[i] = p; | |
719 | 4264 #if defined(BACKSLASH_IN_FILENAME) |
7 | 4265 p = vim_strsave_escaped(files[i], (char_u *)" "); |
4266 if (p != NULL) | |
4267 { | |
4268 vim_free(files[i]); | |
4269 files[i] = p; | |
4270 } | |
4271 #endif | |
4272 } | |
4273 } | |
1589 | 4274 #ifdef BACKSLASH_IN_FILENAME |
4275 p = vim_strsave_fnameescape(files[i], FALSE); | |
4276 #else | |
1586 | 4277 p = vim_strsave_fnameescape(files[i], xp->xp_shell); |
1589 | 4278 #endif |
7 | 4279 if (p != NULL) |
4280 { | |
4281 vim_free(files[i]); | |
4282 files[i] = p; | |
4283 } | |
4284 | |
4285 /* If 'str' starts with "\~", replace "~" at start of | |
4286 * files[i] with "\~". */ | |
4287 if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~') | |
435 | 4288 escape_fname(&files[i]); |
7 | 4289 } |
4290 xp->xp_backslash = XP_BS_NONE; | |
435 | 4291 |
4292 /* If the first file starts with a '+' escape it. Otherwise it | |
4293 * could be seen as "+cmd". */ | |
4294 if (*files[0] == '+') | |
4295 escape_fname(&files[0]); | |
7 | 4296 } |
4297 else if (xp->xp_context == EXPAND_TAGS) | |
4298 { | |
4299 /* | |
4300 * Insert a backslash before characters in a tag name that | |
4301 * would terminate the ":tag" command. | |
4302 */ | |
4303 for (i = 0; i < numfiles; ++i) | |
4304 { | |
4305 p = vim_strsave_escaped(files[i], (char_u *)"\\|\""); | |
4306 if (p != NULL) | |
4307 { | |
4308 vim_free(files[i]); | |
4309 files[i] = p; | |
4310 } | |
4311 } | |
4312 } | |
4313 } | |
4314 } | |
4315 | |
4316 /* | |
1586 | 4317 * Escape special characters in "fname" for when used as a file name argument |
4318 * after a Vim command, or, when "shell" is non-zero, a shell command. | |
4319 * Returns the result in allocated memory. | |
4320 */ | |
4321 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4322 vim_strsave_fnameescape(char_u *fname, int shell) |
1586 | 4323 { |
1685 | 4324 char_u *p; |
1586 | 4325 #ifdef BACKSLASH_IN_FILENAME |
4326 char_u buf[20]; | |
4327 int j = 0; | |
4328 | |
5481 | 4329 /* Don't escape '[', '{' and '!' if they are in 'isfname'. */ |
1586 | 4330 for (p = PATH_ESC_CHARS; *p != NUL; ++p) |
5481 | 4331 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p)) |
1586 | 4332 buf[j++] = *p; |
4333 buf[j] = NUL; | |
1700 | 4334 p = vim_strsave_escaped(fname, buf); |
1586 | 4335 #else |
1685 | 4336 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS); |
4337 if (shell && csh_like_shell() && p != NULL) | |
4338 { | |
4339 char_u *s; | |
4340 | |
4341 /* For csh and similar shells need to put two backslashes before '!'. | |
4342 * One is taken by Vim, one by the shell. */ | |
4343 s = vim_strsave_escaped(p, (char_u *)"!"); | |
4344 vim_free(p); | |
4345 p = s; | |
4346 } | |
1700 | 4347 #endif |
4348 | |
4349 /* '>' and '+' are special at the start of some commands, e.g. ":edit" and | |
4350 * ":write". "cd -" has a special meaning. */ | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2433
diff
changeset
|
4351 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL))) |
1700 | 4352 escape_fname(&p); |
4353 | |
1685 | 4354 return p; |
1586 | 4355 } |
4356 | |
4357 /* | |
435 | 4358 * Put a backslash before the file name in "pp", which is in allocated memory. |
4359 */ | |
4360 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4361 escape_fname(char_u **pp) |
435 | 4362 { |
4363 char_u *p; | |
4364 | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
4365 p = alloc(STRLEN(*pp) + 2); |
435 | 4366 if (p != NULL) |
4367 { | |
4368 p[0] = '\\'; | |
4369 STRCPY(p + 1, *pp); | |
4370 vim_free(*pp); | |
4371 *pp = p; | |
4372 } | |
4373 } | |
4374 | |
4375 /* | |
7 | 4376 * For each file name in files[num_files]: |
4377 * If 'orig_pat' starts with "~/", replace the home directory with "~". | |
4378 */ | |
4379 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4380 tilde_replace( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4381 char_u *orig_pat, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4382 int num_files, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4383 char_u **files) |
7 | 4384 { |
4385 int i; | |
4386 char_u *p; | |
4387 | |
4388 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1])) | |
4389 { | |
4390 for (i = 0; i < num_files; ++i) | |
4391 { | |
4392 p = home_replace_save(NULL, files[i]); | |
4393 if (p != NULL) | |
4394 { | |
4395 vim_free(files[i]); | |
4396 files[i] = p; | |
4397 } | |
4398 } | |
4399 } | |
4400 } | |
4401 | |
4402 /* | |
4403 * Show all matches for completion on the command line. | |
4404 * Returns EXPAND_NOTHING when the character that triggered expansion should | |
4405 * be inserted like a normal character. | |
4406 */ | |
4407 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4408 showmatches(expand_T *xp, int wildmenu UNUSED) |
7 | 4409 { |
4410 #define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m]) | |
4411 int num_files; | |
4412 char_u **files_found; | |
4413 int i, j, k; | |
4414 int maxlen; | |
4415 int lines; | |
4416 int columns; | |
4417 char_u *p; | |
4418 int lastlen; | |
4419 int attr; | |
4420 int showtail; | |
4421 | |
4422 if (xp->xp_numfiles == -1) | |
4423 { | |
4424 set_expand_context(xp); | |
4425 i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos, | |
4426 &num_files, &files_found); | |
4427 showtail = expand_showtail(xp); | |
4428 if (i != EXPAND_OK) | |
4429 return i; | |
4430 | |
4431 } | |
4432 else | |
4433 { | |
4434 num_files = xp->xp_numfiles; | |
4435 files_found = xp->xp_files; | |
4436 showtail = cmd_showtail; | |
4437 } | |
4438 | |
4439 #ifdef FEAT_WILDMENU | |
4440 if (!wildmenu) | |
4441 { | |
4442 #endif | |
4443 msg_didany = FALSE; /* lines_left will be set */ | |
4444 msg_start(); /* prepare for paging */ | |
4445 msg_putchar('\n'); | |
4446 out_flush(); | |
4447 cmdline_row = msg_row; | |
4448 msg_didany = FALSE; /* lines_left will be set again */ | |
4449 msg_start(); /* prepare for paging */ | |
4450 #ifdef FEAT_WILDMENU | |
4451 } | |
4452 #endif | |
4453 | |
4454 if (got_int) | |
4455 got_int = FALSE; /* only int. the completion, not the cmd line */ | |
4456 #ifdef FEAT_WILDMENU | |
4457 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
|
4458 win_redr_status_matches(xp, num_files, files_found, -1, showtail); |
7 | 4459 #endif |
4460 else | |
4461 { | |
4462 /* find the length of the longest file name */ | |
4463 maxlen = 0; | |
4464 for (i = 0; i < num_files; ++i) | |
4465 { | |
4466 if (!showtail && (xp->xp_context == EXPAND_FILES | |
714 | 4467 || xp->xp_context == EXPAND_SHELLCMD |
7 | 4468 || xp->xp_context == EXPAND_BUFFERS)) |
4469 { | |
4470 home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE); | |
4471 j = vim_strsize(NameBuff); | |
4472 } | |
4473 else | |
4474 j = vim_strsize(L_SHOWFILE(i)); | |
4475 if (j > maxlen) | |
4476 maxlen = j; | |
4477 } | |
4478 | |
4479 if (xp->xp_context == EXPAND_TAGS_LISTFILES) | |
4480 lines = num_files; | |
4481 else | |
4482 { | |
4483 /* compute the number of columns and lines for the listing */ | |
4484 maxlen += 2; /* two spaces between file names */ | |
4485 columns = ((int)Columns + 2) / maxlen; | |
4486 if (columns < 1) | |
4487 columns = 1; | |
4488 lines = (num_files + columns - 1) / columns; | |
4489 } | |
4490 | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4491 attr = HL_ATTR(HLF_D); /* find out highlighting for directories */ |
7 | 4492 |
4493 if (xp->xp_context == EXPAND_TAGS_LISTFILES) | |
4494 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4495 msg_puts_attr(_("tagname"), HL_ATTR(HLF_T)); |
7 | 4496 msg_clr_eos(); |
4497 msg_advance(maxlen - 3); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4498 msg_puts_attr(_(" kind file\n"), HL_ATTR(HLF_T)); |
7 | 4499 } |
4500 | |
4501 /* list the files line by line */ | |
4502 for (i = 0; i < lines; ++i) | |
4503 { | |
4504 lastlen = 999; | |
4505 for (k = i; k < num_files; k += lines) | |
4506 { | |
4507 if (xp->xp_context == EXPAND_TAGS_LISTFILES) | |
4508 { | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4509 msg_outtrans_attr(files_found[k], HL_ATTR(HLF_D)); |
7 | 4510 p = files_found[k] + STRLEN(files_found[k]) + 1; |
4511 msg_advance(maxlen + 1); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4512 msg_puts((char *)p); |
7 | 4513 msg_advance(maxlen + 3); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4514 msg_outtrans_long_attr(p + 2, HL_ATTR(HLF_D)); |
7 | 4515 break; |
4516 } | |
4517 for (j = maxlen - lastlen; --j >= 0; ) | |
4518 msg_putchar(' '); | |
4519 if (xp->xp_context == EXPAND_FILES | |
714 | 4520 || xp->xp_context == EXPAND_SHELLCMD |
7 | 4521 || xp->xp_context == EXPAND_BUFFERS) |
4522 { | |
2118
63bf37c1e7a2
updated for version 7.2.401
Bram Moolenaar <bram@zimbu.org>
parents:
2099
diff
changeset
|
4523 /* highlight directories */ |
2128
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4524 if (xp->xp_numfiles != -1) |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4525 { |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4526 char_u *halved_slash; |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4527 char_u *exp_path; |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4528 |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4529 /* Expansion was done before and special characters |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4530 * were escaped, need to halve backslashes. Also |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4531 * $HOME has been replaced with ~/. */ |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4532 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
|
4533 halved_slash = backslash_halve_save( |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4534 exp_path != NULL ? exp_path : files_found[k]); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4535 j = mch_isdir(halved_slash != NULL ? halved_slash |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4536 : files_found[k]); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4537 vim_free(exp_path); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4538 vim_free(halved_slash); |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4539 } |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4540 else |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4541 /* Expansion was done here, file names are literal. */ |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
4542 j = mch_isdir(files_found[k]); |
7 | 4543 if (showtail) |
4544 p = L_SHOWFILE(k); | |
4545 else | |
4546 { | |
4547 home_replace(NULL, files_found[k], NameBuff, MAXPATHL, | |
4548 TRUE); | |
4549 p = NameBuff; | |
4550 } | |
4551 } | |
4552 else | |
4553 { | |
4554 j = FALSE; | |
4555 p = L_SHOWFILE(k); | |
4556 } | |
4557 lastlen = msg_outtrans_attr(p, j ? attr : 0); | |
4558 } | |
4559 if (msg_col > 0) /* when not wrapped around */ | |
4560 { | |
4561 msg_clr_eos(); | |
4562 msg_putchar('\n'); | |
4563 } | |
4564 out_flush(); /* show one line at a time */ | |
4565 if (got_int) | |
4566 { | |
4567 got_int = FALSE; | |
4568 break; | |
4569 } | |
4570 } | |
4571 | |
4572 /* | |
4573 * we redraw the command below the lines that we have just listed | |
4574 * This is a bit tricky, but it saves a lot of screen updating. | |
4575 */ | |
4576 cmdline_row = msg_row; /* will put it back later */ | |
4577 } | |
4578 | |
4579 if (xp->xp_numfiles == -1) | |
4580 FreeWild(num_files, files_found); | |
4581 | |
4582 return EXPAND_OK; | |
4583 } | |
4584 | |
4585 /* | |
4586 * Private gettail for showmatches() (and win_redr_status_matches()): | |
4587 * Find tail of file name path, but ignore trailing "/". | |
4588 */ | |
4589 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4590 sm_gettail(char_u *s) |
7 | 4591 { |
4592 char_u *p; | |
4593 char_u *t = s; | |
4594 int had_sep = FALSE; | |
4595 | |
4596 for (p = s; *p != NUL; ) | |
4597 { | |
4598 if (vim_ispathsep(*p) | |
4599 #ifdef BACKSLASH_IN_FILENAME | |
4600 && !rem_backslash(p) | |
4601 #endif | |
4602 ) | |
4603 had_sep = TRUE; | |
4604 else if (had_sep) | |
4605 { | |
4606 t = p; | |
4607 had_sep = FALSE; | |
4608 } | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
4609 MB_PTR_ADV(p); |
7 | 4610 } |
4611 return t; | |
4612 } | |
4613 | |
4614 /* | |
4615 * Return TRUE if we only need to show the tail of completion matches. | |
4616 * When not completing file names or there is a wildcard in the path FALSE is | |
4617 * returned. | |
4618 */ | |
4619 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4620 expand_showtail(expand_T *xp) |
7 | 4621 { |
4622 char_u *s; | |
4623 char_u *end; | |
4624 | |
4625 /* When not completing file names a "/" may mean something different. */ | |
714 | 4626 if (xp->xp_context != EXPAND_FILES |
4627 && xp->xp_context != EXPAND_SHELLCMD | |
4628 && xp->xp_context != EXPAND_DIRECTORIES) | |
7 | 4629 return FALSE; |
4630 | |
4631 end = gettail(xp->xp_pattern); | |
4632 if (end == xp->xp_pattern) /* there is no path separator */ | |
4633 return FALSE; | |
4634 | |
4635 for (s = xp->xp_pattern; s < end; s++) | |
4636 { | |
4637 /* Skip escaped wildcards. Only when the backslash is not a path | |
4638 * separator, on DOS the '*' "path\*\file" must not be skipped. */ | |
4639 if (rem_backslash(s)) | |
4640 ++s; | |
4641 else if (vim_strchr((char_u *)"*?[", *s) != NULL) | |
4642 return FALSE; | |
4643 } | |
4644 return TRUE; | |
4645 } | |
4646 | |
4647 /* | |
4648 * Prepare a string for expansion. | |
4649 * When expanding file names: The string will be used with expand_wildcards(). | |
5438 | 4650 * Copy "fname[len]" into allocated memory and add a '*' at the end. |
7 | 4651 * When expanding other names: The string will be used with regcomp(). Copy |
4652 * the name into allocated memory and prepend "^". | |
4653 */ | |
4654 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4655 addstar( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4656 char_u *fname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4657 int len, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4658 int context) /* EXPAND_FILES etc. */ |
7 | 4659 { |
4660 char_u *retval; | |
4661 int i, j; | |
4662 int new_len; | |
4663 char_u *tail; | |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4664 int ends_in_star; |
7 | 4665 |
714 | 4666 if (context != EXPAND_FILES |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
4667 && context != EXPAND_FILES_IN_PATH |
714 | 4668 && context != EXPAND_SHELLCMD |
4669 && context != EXPAND_DIRECTORIES) | |
7 | 4670 { |
4671 /* | |
4672 * Matching will be done internally (on something other than files). | |
4673 * So we convert the file-matching-type wildcards into our kind for | |
4674 * use with vim_regcomp(). First work out how long it will be: | |
4675 */ | |
4676 | |
4677 /* For help tags the translation is done in find_help_tags(). | |
4678 * For a tag pattern starting with "/" no translation is needed. */ | |
4679 if (context == EXPAND_HELP | |
4680 || context == EXPAND_COLORS | |
4681 || context == EXPAND_COMPILER | |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
4682 || context == EXPAND_OWNSYNTAX |
2268
aafed4a4866f
Command line completion for :ownsyntax. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
4683 || context == EXPAND_FILETYPE |
8402
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
4684 || 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
|
4685 || ((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
|
4686 || 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
|
4687 && fname[0] == '/')) |
7 | 4688 retval = vim_strnsave(fname, len); |
4689 else | |
4690 { | |
4691 new_len = len + 2; /* +2 for '^' at start, NUL at end */ | |
4692 for (i = 0; i < len; i++) | |
4693 { | |
4694 if (fname[i] == '*' || fname[i] == '~') | |
4695 new_len++; /* '*' needs to be replaced by ".*" | |
4696 '~' needs to be replaced by "\~" */ | |
4697 | |
4698 /* Buffer names are like file names. "." should be literal */ | |
4699 if (context == EXPAND_BUFFERS && fname[i] == '.') | |
4700 new_len++; /* "." becomes "\." */ | |
4701 | |
4702 /* Custom expansion takes care of special things, match | |
4703 * backslashes literally (perhaps also for other types?) */ | |
634 | 4704 if ((context == EXPAND_USER_DEFINED |
4705 || context == EXPAND_USER_LIST) && fname[i] == '\\') | |
7 | 4706 new_len++; /* '\' becomes "\\" */ |
4707 } | |
4708 retval = alloc(new_len); | |
4709 if (retval != NULL) | |
4710 { | |
4711 retval[0] = '^'; | |
4712 j = 1; | |
4713 for (i = 0; i < len; i++, j++) | |
4714 { | |
4715 /* Skip backslash. But why? At least keep it for custom | |
4716 * expansion. */ | |
4717 if (context != EXPAND_USER_DEFINED | |
407 | 4718 && context != EXPAND_USER_LIST |
4719 && fname[i] == '\\' | |
4720 && ++i == len) | |
7 | 4721 break; |
4722 | |
4723 switch (fname[i]) | |
4724 { | |
4725 case '*': retval[j++] = '.'; | |
4726 break; | |
4727 case '~': retval[j++] = '\\'; | |
4728 break; | |
4729 case '?': retval[j] = '.'; | |
4730 continue; | |
4731 case '.': if (context == EXPAND_BUFFERS) | |
4732 retval[j++] = '\\'; | |
4733 break; | |
407 | 4734 case '\\': if (context == EXPAND_USER_DEFINED |
4735 || context == EXPAND_USER_LIST) | |
7 | 4736 retval[j++] = '\\'; |
4737 break; | |
4738 } | |
4739 retval[j] = fname[i]; | |
4740 } | |
4741 retval[j] = NUL; | |
4742 } | |
4743 } | |
4744 } | |
4745 else | |
4746 { | |
4747 retval = alloc(len + 4); | |
4748 if (retval != NULL) | |
4749 { | |
419 | 4750 vim_strncpy(retval, fname, len); |
7 | 4751 |
4752 /* | |
831 | 4753 * Don't add a star to *, ~, ~user, $var or `cmd`. |
4754 * * would become **, which walks the whole tree. | |
7 | 4755 * ~ would be at the start of the file name, but not the tail. |
4756 * $ could be anywhere in the tail. | |
4757 * ` could be anywhere in the file name. | |
1484 | 4758 * When the name ends in '$' don't add a star, remove the '$'. |
7 | 4759 */ |
4760 tail = gettail(retval); | |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4761 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
|
4762 #ifndef BACKSLASH_IN_FILENAME |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4763 for (i = len - 2; i >= 0; --i) |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4764 { |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4765 if (retval[i] != '\\') |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4766 break; |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4767 ends_in_star = !ends_in_star; |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4768 } |
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4769 #endif |
7 | 4770 if ((*retval != '~' || tail != retval) |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2128
diff
changeset
|
4771 && !ends_in_star |
7 | 4772 && vim_strchr(tail, '$') == NULL |
4773 && vim_strchr(retval, '`') == NULL) | |
4774 retval[len++] = '*'; | |
1484 | 4775 else if (len > 0 && retval[len - 1] == '$') |
4776 --len; | |
7 | 4777 retval[len] = NUL; |
4778 } | |
4779 } | |
4780 return retval; | |
4781 } | |
4782 | |
4783 /* | |
4784 * Must parse the command line so far to work out what context we are in. | |
4785 * Completion can then be done based on that context. | |
4786 * This routine sets the variables: | |
4787 * xp->xp_pattern The start of the pattern to be expanded within | |
4788 * the command line (ends at the cursor). | |
4789 * xp->xp_context The type of thing to expand. Will be one of: | |
4790 * | |
4791 * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on | |
4792 * the command line, like an unknown command. Caller | |
4793 * should beep. | |
4794 * EXPAND_NOTHING Unrecognised context for completion, use char like | |
4795 * a normal char, rather than for completion. eg | |
4796 * :s/^I/ | |
4797 * EXPAND_COMMANDS Cursor is still touching the command, so complete | |
4798 * it. | |
4799 * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands. | |
4800 * EXPAND_FILES After command with XFILE set, or after setting | |
4801 * with P_EXPAND set. eg :e ^I, :w>>^I | |
4802 * EXPAND_DIRECTORIES In some cases this is used instead of the latter | |
4803 * when we know only directories are of interest. eg | |
4804 * :set dir=^I | |
714 | 4805 * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd". |
7 | 4806 * EXPAND_SETTINGS Complete variable names. eg :set d^I |
4807 * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I | |
4808 * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I | |
4809 * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect | |
4810 * EXPAND_HELP Complete tags from the file 'helpfile'/tags | |
4811 * EXPAND_EVENTS Complete event names | |
4812 * EXPAND_SYNTAX Complete :syntax command arguments | |
4813 * EXPAND_HIGHLIGHT Complete highlight (syntax) group names | |
4814 * EXPAND_AUGROUP Complete autocommand group names | |
4815 * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I | |
4816 * EXPAND_MAPPINGS Complete mapping and abbreviation names, | |
4817 * eg :unmap a^I , :cunab x^I | |
4818 * EXPAND_FUNCTIONS Complete internal or user defined function names, | |
4819 * eg :call sub^I | |
4820 * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I | |
4821 * EXPAND_EXPRESSION Complete internal or user defined function/variable | |
4822 * names in expressions, eg :while s^I | |
4823 * EXPAND_ENV_VARS Complete environment variable names | |
3744 | 4824 * EXPAND_USER Complete user names |
7 | 4825 */ |
4826 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4827 set_expand_context(expand_T *xp) |
7 | 4828 { |
168 | 4829 /* only expansion for ':', '>' and '=' command-lines */ |
7 | 4830 if (ccline.cmdfirstc != ':' |
4831 #ifdef FEAT_EVAL | |
168 | 4832 && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '=' |
531 | 4833 && !ccline.input_fn |
7 | 4834 #endif |
4835 ) | |
4836 { | |
4837 xp->xp_context = EXPAND_NOTHING; | |
4838 return; | |
4839 } | |
10120
fb040c9d8ce9
commit https://github.com/vim/vim/commit/33a80eeb859a78ba93432da6fa585786cfd77249
Christian Brabandt <cb@256bit.org>
parents:
10098
diff
changeset
|
4840 set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE); |
7 | 4841 } |
4842 | |
4843 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4844 set_cmd_context( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4845 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4846 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
|
4847 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
|
4848 int col, /* position of cursor */ |
fb040c9d8ce9
commit https://github.com/vim/vim/commit/33a80eeb859a78ba93432da6fa585786cfd77249
Christian Brabandt <cb@256bit.org>
parents:
10098
diff
changeset
|
4849 int use_ccline UNUSED) /* use ccline for info */ |
7 | 4850 { |
4851 int old_char = NUL; | |
4852 char_u *nextcomm; | |
4853 | |
4854 /* | |
4855 * Avoid a UMR warning from Purify, only save the character if it has been | |
4856 * written before. | |
4857 */ | |
4858 if (col < len) | |
4859 old_char = str[col]; | |
4860 str[col] = NUL; | |
4861 nextcomm = str; | |
168 | 4862 |
4863 #ifdef FEAT_EVAL | |
10120
fb040c9d8ce9
commit https://github.com/vim/vim/commit/33a80eeb859a78ba93432da6fa585786cfd77249
Christian Brabandt <cb@256bit.org>
parents:
10098
diff
changeset
|
4864 if (use_ccline && ccline.cmdfirstc == '=') |
1322 | 4865 { |
4866 # ifdef FEAT_CMDL_COMPL | |
168 | 4867 /* pass CMD_SIZE because there is no real command */ |
4868 set_context_for_expression(xp, str, CMD_SIZE); | |
1322 | 4869 # endif |
4870 } | |
10120
fb040c9d8ce9
commit https://github.com/vim/vim/commit/33a80eeb859a78ba93432da6fa585786cfd77249
Christian Brabandt <cb@256bit.org>
parents:
10098
diff
changeset
|
4871 else if (use_ccline && ccline.input_fn) |
531 | 4872 { |
4873 xp->xp_context = ccline.xp_context; | |
4874 xp->xp_pattern = ccline.cmdbuff; | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16287
diff
changeset
|
4875 # if defined(FEAT_CMDL_COMPL) |
531 | 4876 xp->xp_arg = ccline.xp_arg; |
1322 | 4877 # endif |
531 | 4878 } |
168 | 4879 else |
4880 #endif | |
4881 while (nextcomm != NULL) | |
4882 nextcomm = set_one_cmd_context(xp, nextcomm); | |
4883 | |
5056
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
4884 /* 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
|
4885 * easily. */ |
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
4886 xp->xp_line = str; |
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
4887 xp->xp_col = col; |
034abed357a1
updated for version 7.3.1271
Bram Moolenaar <bram@vim.org>
parents:
5033
diff
changeset
|
4888 |
7 | 4889 str[col] = old_char; |
4890 } | |
4891 | |
4892 /* | |
4893 * Expand the command line "str" from context "xp". | |
4894 * "xp" must have been set by set_cmd_context(). | |
4895 * xp->xp_pattern points into "str", to where the text that is to be expanded | |
4896 * starts. | |
4897 * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the | |
4898 * cursor. | |
4899 * Returns EXPAND_NOTHING when there is nothing to expand, might insert the | |
4900 * key that triggered expansion literally. | |
4901 * Returns EXPAND_OK otherwise. | |
4902 */ | |
4903 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4904 expand_cmdline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4905 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4906 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
|
4907 int col, /* position of cursor */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4908 int *matchcount, /* return: nr of matches */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4909 char_u ***matches) /* return: array of pointers to matches */ |
7 | 4910 { |
4911 char_u *file_str = NULL; | |
2652 | 4912 int options = WILD_ADD_SLASH|WILD_SILENT; |
7 | 4913 |
4914 if (xp->xp_context == EXPAND_UNSUCCESSFUL) | |
4915 { | |
4916 beep_flush(); | |
4917 return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */ | |
4918 } | |
4919 if (xp->xp_context == EXPAND_NOTHING) | |
4920 { | |
4921 /* Caller can use the character as a normal char instead */ | |
4922 return EXPAND_NOTHING; | |
4923 } | |
4924 | |
4925 /* add star to file name, or convert to regexp if not exp. files. */ | |
1965 | 4926 xp->xp_pattern_len = (int)(str + col - xp->xp_pattern); |
4927 file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context); | |
7 | 4928 if (file_str == NULL) |
4929 return EXPAND_UNSUCCESSFUL; | |
4930 | |
2652 | 4931 if (p_wic) |
4932 options += WILD_ICASE; | |
4933 | |
7 | 4934 /* find all files that match the description */ |
2652 | 4935 if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL) |
7 | 4936 { |
4937 *matchcount = 0; | |
4938 *matches = NULL; | |
4939 } | |
4940 vim_free(file_str); | |
4941 | |
4942 return EXPAND_OK; | |
4943 } | |
4944 | |
4945 #ifdef FEAT_MULTI_LANG | |
4946 /* | |
8765
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
4947 * Cleanup matches for help tags: |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
4948 * 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
|
4949 * tag matches it. Otherwise remove "@en" if "en" is the only language. |
7 | 4950 */ |
4951 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4952 cleanup_help_tags(int num_file, char_u **file) |
7 | 4953 { |
4954 int i, j; | |
4955 int len; | |
8765
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
4956 char_u buf[4]; |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
4957 char_u *p = buf; |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
4958 |
9066
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
4959 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
|
4960 { |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
4961 *p++ = '@'; |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
4962 *p++ = p_hlg[0]; |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
4963 *p++ = p_hlg[1]; |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
4964 } |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
4965 *p = NUL; |
7 | 4966 |
4967 for (i = 0; i < num_file; ++i) | |
4968 { | |
4969 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
|
4970 if (len <= 0) |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
4971 continue; |
9070
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4972 if (STRCMP(file[i] + len, "@en") == 0) |
7 | 4973 { |
4974 /* Sorting on priority means the same item in another language may | |
4975 * be anywhere. Search all items for a match up to the "@en". */ | |
4976 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
|
4977 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
|
4978 && STRNCMP(file[i], file[j], len + 1) == 0) |
7 | 4979 break; |
4980 if (j == num_file) | |
9066
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
4981 /* item only exists with @en, remove it */ |
7 | 4982 file[i][len] = NUL; |
4983 } | |
4984 } | |
9070
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4985 |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4986 if (*buf != NUL) |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4987 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
|
4988 { |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4989 len = (int)STRLEN(file[i]) - 3; |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4990 if (len <= 0) |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4991 continue; |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4992 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
|
4993 { |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4994 /* remove the default language */ |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4995 file[i][len] = NUL; |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4996 } |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
4997 } |
7 | 4998 } |
4999 #endif | |
5000 | |
5001 /* | |
5002 * Do the expansion based on xp->xp_context and "pat". | |
5003 */ | |
5004 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5005 ExpandFromContext( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5006 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5007 char_u *pat, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5008 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5009 char_u ***file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5010 int options) /* EW_ flags */ |
7 | 5011 { |
5012 #ifdef FEAT_CMDL_COMPL | |
5013 regmatch_T regmatch; | |
5014 #endif | |
5015 int ret; | |
5016 int flags; | |
5017 | |
5018 flags = EW_DIR; /* include directories */ | |
5019 if (options & WILD_LIST_NOTFOUND) | |
5020 flags |= EW_NOTFOUND; | |
5021 if (options & WILD_ADD_SLASH) | |
5022 flags |= EW_ADDSLASH; | |
5023 if (options & WILD_KEEP_ALL) | |
5024 flags |= EW_KEEPALL; | |
5025 if (options & WILD_SILENT) | |
5026 flags |= EW_SILENT; | |
6659 | 5027 if (options & WILD_ALLLINKS) |
5028 flags |= EW_ALLLINKS; | |
7 | 5029 |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
5030 if (xp->xp_context == EXPAND_FILES |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
5031 || xp->xp_context == EXPAND_DIRECTORIES |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
5032 || xp->xp_context == EXPAND_FILES_IN_PATH) |
7 | 5033 { |
5034 /* | |
5035 * Expand file or directory names. | |
5036 */ | |
5037 int free_pat = FALSE; | |
5038 int i; | |
5039 | |
5040 /* for ":set path=" and ":set tags=" halve backslashes for escaped | |
5041 * space */ | |
5042 if (xp->xp_backslash != XP_BS_NONE) | |
5043 { | |
5044 free_pat = TRUE; | |
5045 pat = vim_strsave(pat); | |
5046 for (i = 0; pat[i]; ++i) | |
5047 if (pat[i] == '\\') | |
5048 { | |
5049 if (xp->xp_backslash == XP_BS_THREE | |
5050 && pat[i + 1] == '\\' | |
5051 && pat[i + 2] == '\\' | |
5052 && pat[i + 3] == ' ') | |
1621 | 5053 STRMOVE(pat + i, pat + i + 3); |
7 | 5054 if (xp->xp_backslash == XP_BS_ONE |
5055 && pat[i + 1] == ' ') | |
1621 | 5056 STRMOVE(pat + i, pat + i + 1); |
7 | 5057 } |
5058 } | |
5059 | |
5060 if (xp->xp_context == EXPAND_FILES) | |
5061 flags |= EW_FILE; | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
5062 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
|
5063 flags |= (EW_FILE | EW_PATH); |
7 | 5064 else |
5065 flags = (flags | EW_DIR) & ~EW_FILE; | |
2652 | 5066 if (options & WILD_ICASE) |
5067 flags |= EW_ICASE; | |
5068 | |
2016 | 5069 /* Expand wildcards, supporting %:h and the like. */ |
5070 ret = expand_wildcards_eval(&pat, num_file, file, flags); | |
7 | 5071 if (free_pat) |
5072 vim_free(pat); | |
5073 return ret; | |
5074 } | |
5075 | |
5076 *file = (char_u **)""; | |
5077 *num_file = 0; | |
5078 if (xp->xp_context == EXPAND_HELP) | |
5079 { | |
1696 | 5080 /* With an empty argument we would get all the help tags, which is |
5081 * very slow. Get matches for "help" instead. */ | |
5082 if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat, | |
5083 num_file, file, FALSE) == OK) | |
7 | 5084 { |
5085 #ifdef FEAT_MULTI_LANG | |
5086 cleanup_help_tags(*num_file, *file); | |
5087 #endif | |
5088 return OK; | |
5089 } | |
5090 return FAIL; | |
5091 } | |
5092 | |
5093 #ifndef FEAT_CMDL_COMPL | |
5094 return FAIL; | |
5095 #else | |
716 | 5096 if (xp->xp_context == EXPAND_SHELLCMD) |
5097 return expand_shellcmd(pat, num_file, file, flags); | |
7 | 5098 if (xp->xp_context == EXPAND_OLD_SETTING) |
5099 return ExpandOldSetting(num_file, file); | |
5100 if (xp->xp_context == EXPAND_BUFFERS) | |
5101 return ExpandBufnames(pat, num_file, file, options); | |
5102 if (xp->xp_context == EXPAND_TAGS | |
5103 || xp->xp_context == EXPAND_TAGS_LISTFILES) | |
5104 return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file); | |
5105 if (xp->xp_context == EXPAND_COLORS) | |
2929 | 5106 { |
5107 char *directories[] = {"colors", NULL}; | |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5108 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
|
5109 directories); |
2929 | 5110 } |
7 | 5111 if (xp->xp_context == EXPAND_COMPILER) |
2929 | 5112 { |
3106 | 5113 char *directories[] = {"compiler", NULL}; |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5114 return ExpandRTDir(pat, 0, num_file, file, directories); |
2929 | 5115 } |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5116 if (xp->xp_context == EXPAND_OWNSYNTAX) |
2929 | 5117 { |
5118 char *directories[] = {"syntax", NULL}; | |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5119 return ExpandRTDir(pat, 0, num_file, file, directories); |
2929 | 5120 } |
2268
aafed4a4866f
Command line completion for :ownsyntax. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
5121 if (xp->xp_context == EXPAND_FILETYPE) |
2929 | 5122 { |
5123 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
|
5124 return ExpandRTDir(pat, 0, num_file, file, directories); |
2929 | 5125 } |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16287
diff
changeset
|
5126 # if defined(FEAT_EVAL) |
407 | 5127 if (xp->xp_context == EXPAND_USER_LIST) |
856 | 5128 return ExpandUserList(xp, num_file, file); |
407 | 5129 # endif |
8402
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5130 if (xp->xp_context == EXPAND_PACKADD) |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5131 return ExpandPackAddDir(pat, num_file, file); |
7 | 5132 |
5133 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0); | |
5134 if (regmatch.regprog == NULL) | |
5135 return FAIL; | |
5136 | |
5137 /* set ignore-case according to p_ic, p_scs and pat */ | |
5138 regmatch.rm_ic = ignorecase(pat); | |
5139 | |
5140 if (xp->xp_context == EXPAND_SETTINGS | |
5141 || xp->xp_context == EXPAND_BOOL_SETTINGS) | |
5142 ret = ExpandSettings(xp, ®match, num_file, file); | |
5143 else if (xp->xp_context == EXPAND_MAPPINGS) | |
5144 ret = ExpandMappings(®match, num_file, file); | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16287
diff
changeset
|
5145 # if defined(FEAT_EVAL) |
7 | 5146 else if (xp->xp_context == EXPAND_USER_DEFINED) |
5147 ret = ExpandUserDefined(xp, ®match, num_file, file); | |
5148 # endif | |
5149 else | |
5150 { | |
5151 static struct expgen | |
5152 { | |
5153 int context; | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
5154 char_u *((*func)(expand_T *, int)); |
7 | 5155 int ic; |
2849 | 5156 int escaped; |
7 | 5157 } tab[] = |
5158 { | |
2849 | 5159 {EXPAND_COMMANDS, get_command_name, FALSE, TRUE}, |
5160 {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
|
5161 {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
|
5162 {EXPAND_MESSAGES, get_messages_arg, TRUE, TRUE}, |
3503 | 5163 #ifdef FEAT_CMDHIST |
5164 {EXPAND_HISTORY, get_history_arg, TRUE, TRUE}, | |
5165 #endif | |
2849 | 5166 {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE}, |
6424 | 5167 {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE}, |
2849 | 5168 {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE}, |
5169 {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE}, | |
5170 {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE}, | |
7 | 5171 #ifdef FEAT_EVAL |
2849 | 5172 {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE}, |
5173 {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE}, | |
5174 {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE}, | |
5175 {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE}, | |
7 | 5176 #endif |
5177 #ifdef FEAT_MENU | |
2849 | 5178 {EXPAND_MENUS, get_menu_name, FALSE, TRUE}, |
5179 {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE}, | |
7 | 5180 #endif |
5181 #ifdef FEAT_SYN_HL | |
2849 | 5182 {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE}, |
5183 #endif | |
4803
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4327
diff
changeset
|
5184 #ifdef FEAT_PROFILE |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4327
diff
changeset
|
5185 {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE}, |
220bdea4f579
updated for version 7.3.1148
Bram Moolenaar <bram@vim.org>
parents:
4327
diff
changeset
|
5186 #endif |
2849 | 5187 {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE}, |
5188 {EXPAND_EVENTS, get_event_name, TRUE, TRUE}, | |
5189 {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE}, | |
1845 | 5190 #ifdef FEAT_CSCOPE |
2849 | 5191 {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE}, |
1845 | 5192 #endif |
1868 | 5193 #ifdef FEAT_SIGNS |
2849 | 5194 {EXPAND_SIGN, get_sign_name, TRUE, TRUE}, |
1868 | 5195 #endif |
2068
98a2a6e6b966
updated for version 7.2.353
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
5196 #ifdef FEAT_PROFILE |
2849 | 5197 {EXPAND_PROFILE, get_profile_name, TRUE, TRUE}, |
2068
98a2a6e6b966
updated for version 7.2.353
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
5198 #endif |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15595
diff
changeset
|
5199 #if defined(HAVE_LOCALE_H) || defined(X_LOCALE) |
2849 | 5200 {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE}, |
5201 {EXPAND_LOCALES, get_locales, TRUE, FALSE}, | |
5202 #endif | |
5203 {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE}, | |
3744 | 5204 {EXPAND_USER, get_users, TRUE, FALSE}, |
13551
1fd0f8392946
patch 8.0.1649: no completion for argument list commands
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
5205 {EXPAND_ARGLIST, get_arglist_name, TRUE, FALSE}, |
7 | 5206 }; |
5207 int i; | |
5208 | |
5209 /* | |
5210 * Find a context in the table and call the ExpandGeneric() with the | |
5211 * right function to do the expansion. | |
5212 */ | |
5213 ret = FAIL; | |
1880 | 5214 for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i) |
7 | 5215 if (xp->xp_context == tab[i].context) |
5216 { | |
5217 if (tab[i].ic) | |
5218 regmatch.rm_ic = TRUE; | |
2849 | 5219 ret = ExpandGeneric(xp, ®match, num_file, file, |
3628 | 5220 tab[i].func, tab[i].escaped); |
7 | 5221 break; |
5222 } | |
5223 } | |
5224 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
5225 vim_regfree(regmatch.regprog); |
7 | 5226 |
5227 return ret; | |
5228 #endif /* FEAT_CMDL_COMPL */ | |
5229 } | |
5230 | |
5231 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) | |
5232 /* | |
5233 * Expand a list of names. | |
5234 * | |
5235 * Generic function for command line completion. It calls a function to | |
5236 * obtain strings, one by one. The strings are matched against a regexp | |
5237 * program. Matching strings are copied into an array, which is returned. | |
5238 * | |
5239 * Returns OK when no problems encountered, FAIL for error (out of memory). | |
5240 */ | |
5241 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5242 ExpandGeneric( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5243 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5244 regmatch_T *regmatch, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5245 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5246 char_u ***file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5247 char_u *((*func)(expand_T *, int)), |
7 | 5248 /* 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
|
5249 int escaped) |
7 | 5250 { |
5251 int i; | |
5252 int count = 0; | |
480 | 5253 int round; |
7 | 5254 char_u *str; |
5255 | |
5256 /* do this loop twice: | |
480 | 5257 * round == 0: count the number of matching names |
5258 * round == 1: copy the matching names into allocated memory | |
7 | 5259 */ |
480 | 5260 for (round = 0; round <= 1; ++round) |
7 | 5261 { |
5262 for (i = 0; ; ++i) | |
5263 { | |
5264 str = (*func)(xp, i); | |
5265 if (str == NULL) /* end of list */ | |
5266 break; | |
5267 if (*str == NUL) /* skip empty strings */ | |
5268 continue; | |
5269 | |
5270 if (vim_regexec(regmatch, str, (colnr_T)0)) | |
5271 { | |
480 | 5272 if (round) |
7 | 5273 { |
2849 | 5274 if (escaped) |
5275 str = vim_strsave_escaped(str, (char_u *)" \t\\."); | |
5276 else | |
5277 str = vim_strsave(str); | |
7 | 5278 (*file)[count] = str; |
5279 #ifdef FEAT_MENU | |
5280 if (func == get_menu_names && str != NULL) | |
5281 { | |
5282 /* test for separator added by get_menu_names() */ | |
5283 str += STRLEN(str) - 1; | |
5284 if (*str == '\001') | |
5285 *str = '.'; | |
5286 } | |
5287 #endif | |
5288 } | |
5289 ++count; | |
5290 } | |
5291 } | |
480 | 5292 if (round == 0) |
7 | 5293 { |
5294 if (count == 0) | |
5295 return OK; | |
5296 *num_file = count; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
5297 *file = ALLOC_MULT(char_u *, count); |
7 | 5298 if (*file == NULL) |
5299 { | |
5300 *file = (char_u **)""; | |
5301 return FAIL; | |
5302 } | |
5303 count = 0; | |
5304 } | |
5305 } | |
480 | 5306 |
828 | 5307 /* Sort the results. Keep menu's in the specified order. */ |
5308 if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS) | |
3164 | 5309 { |
5310 if (xp->xp_context == EXPAND_EXPRESSION | |
5311 || xp->xp_context == EXPAND_FUNCTIONS | |
5312 || xp->xp_context == EXPAND_USER_FUNC) | |
5313 /* <SNR> functions should be sorted to the end. */ | |
5314 qsort((void *)*file, (size_t)*num_file, sizeof(char_u *), | |
5315 sort_func_compare); | |
5316 else | |
5317 sort_strings(*file, *num_file); | |
5318 } | |
480 | 5319 |
1322 | 5320 #ifdef FEAT_CMDL_COMPL |
5321 /* Reset the variables used for special highlight names expansion, so that | |
5322 * they don't show up when getting normal highlight names by ID. */ | |
5323 reset_expand_highlight(); | |
5324 #endif | |
5325 | |
7 | 5326 return OK; |
5327 } | |
5328 | |
716 | 5329 /* |
5330 * Complete a shell command. | |
5331 * Returns FAIL or OK; | |
5332 */ | |
5333 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5334 expand_shellcmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5335 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
|
5336 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
|
5337 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
|
5338 int flagsarg) /* EW_ flags */ |
716 | 5339 { |
5340 char_u *pat; | |
5341 int i; | |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5342 char_u *path = NULL; |
716 | 5343 int mustfree = FALSE; |
5344 garray_T ga; | |
5345 char_u *buf = alloc(MAXPATHL); | |
5346 size_t l; | |
5347 char_u *s, *e; | |
5348 int flags = flagsarg; | |
5349 int ret; | |
6695 | 5350 int did_curdir = FALSE; |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5351 hashtab_T found_ht; |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5352 hashitem_T *hi; |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5353 hash_T hash; |
716 | 5354 |
5355 if (buf == NULL) | |
5356 return FAIL; | |
5357 | |
5358 /* for ":set path=" and ":set tags=" halve backslashes for escaped | |
5359 * space */ | |
5360 pat = vim_strsave(filepat); | |
5361 for (i = 0; pat[i]; ++i) | |
5362 if (pat[i] == '\\' && pat[i + 1] == ' ') | |
1621 | 5363 STRMOVE(pat + i, pat + i + 1); |
716 | 5364 |
6695 | 5365 flags |= EW_FILE | EW_EXEC | EW_SHELLCMD; |
716 | 5366 |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5367 if (pat[0] == '.' && (vim_ispathsep(pat[1]) |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5368 || (pat[1] == '.' && vim_ispathsep(pat[2])))) |
716 | 5369 path = (char_u *)"."; |
5370 else | |
2630 | 5371 { |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5372 /* For an absolute name we don't use $PATH. */ |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5373 if (!mch_isFullName(pat)) |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5374 path = vim_getenv((char_u *)"PATH", &mustfree); |
2630 | 5375 if (path == NULL) |
5376 path = (char_u *)""; | |
5377 } | |
716 | 5378 |
5379 /* | |
5380 * Go over all directories in $PATH. Expand matches in that directory and | |
6695 | 5381 * collect them in "ga". When "." is not in $PATH also expand for the |
5382 * current directory, to find "subdir/cmd". | |
716 | 5383 */ |
5384 ga_init2(&ga, (int)sizeof(char *), 10); | |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5385 hash_init(&found_ht); |
6695 | 5386 for (s = path; ; s = e) |
716 | 5387 { |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
5388 #if defined(MSWIN) |
716 | 5389 e = vim_strchr(s, ';'); |
5390 #else | |
5391 e = vim_strchr(s, ':'); | |
5392 #endif | |
5393 if (e == NULL) | |
5394 e = s + STRLEN(s); | |
5395 | |
14417
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5396 if (*s == NUL) |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5397 { |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5398 if (did_curdir) |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5399 break; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5400 // Find directories in the current directory, path is empty. |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5401 did_curdir = TRUE; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5402 flags |= EW_DIR; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5403 } |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5404 else if (STRNCMP(s, ".", (int)(e - s)) == 0) |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5405 { |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5406 did_curdir = TRUE; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5407 flags |= EW_DIR; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5408 } |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5409 else |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5410 // Do not match directories inside a $PATH item. |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5411 flags &= ~EW_DIR; |
5d9b450e7827
patch 8.1.0223: completing shell command finds sub-directories in $PATH
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
5412 |
716 | 5413 l = e - s; |
5414 if (l > MAXPATHL - 5) | |
5415 break; | |
5416 vim_strncpy(buf, s, l); | |
5417 add_pathsep(buf); | |
5418 l = STRLEN(buf); | |
5419 vim_strncpy(buf + l, pat, MAXPATHL - 1 - l); | |
5420 | |
5421 /* Expand matches in one directory of $PATH. */ | |
5422 ret = expand_wildcards(1, &buf, num_file, file, flags); | |
5423 if (ret == OK) | |
5424 { | |
5425 if (ga_grow(&ga, *num_file) == FAIL) | |
5426 FreeWild(*num_file, *file); | |
5427 else | |
5428 { | |
5429 for (i = 0; i < *num_file; ++i) | |
5430 { | |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5431 char_u *name = (*file)[i]; |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5432 |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5433 if (STRLEN(name) > l) |
716 | 5434 { |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5435 // Check if this name was already found. |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5436 hash = hash_hash(name + l); |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5437 hi = hash_lookup(&found_ht, name + l, hash); |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5438 if (HASHITEM_EMPTY(hi)) |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5439 { |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5440 // Remove the path that was prepended. |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5441 STRMOVE(name, name + l); |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5442 ((char_u **)ga.ga_data)[ga.ga_len++] = name; |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5443 hash_add_item(&found_ht, hi, name, hash); |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5444 name = NULL; |
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5445 } |
716 | 5446 } |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5447 vim_free(name); |
716 | 5448 } |
5449 vim_free(*file); | |
5450 } | |
5451 } | |
5452 if (*e != NUL) | |
5453 ++e; | |
5454 } | |
5455 *file = ga.ga_data; | |
5456 *num_file = ga.ga_len; | |
5457 | |
5458 vim_free(buf); | |
5459 vim_free(pat); | |
5460 if (mustfree) | |
5461 vim_free(path); | |
13998
c3f9c37160e7
patch 8.1.0017: shell command completion has duplicates
Christian Brabandt <cb@256bit.org>
parents:
13933
diff
changeset
|
5462 hash_clear(&found_ht); |
716 | 5463 return OK; |
5464 } | |
5465 | |
5466 | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16287
diff
changeset
|
5467 # if defined(FEAT_EVAL) |
7 | 5468 /* |
10942
e05695e59f6d
patch 8.0.0360: sometimes VimL is used instead of "Vim script"
Christian Brabandt <cb@256bit.org>
parents:
10861
diff
changeset
|
5469 * 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
|
5470 * return the result (either a string or a List). |
7 | 5471 */ |
407 | 5472 static void * |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5473 call_user_expand_func( |
14439
e4c553e9132b
patch 8.1.0233: "safe" argument of call_vim_function() is always FALSE
Christian Brabandt <cb@256bit.org>
parents:
14417
diff
changeset
|
5474 void *(*user_expand_func)(char_u *, int, typval_T *), |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5475 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5476 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5477 char_u ***file) |
7 | 5478 { |
5072
cca600e60928
updated for version 7.3.1279
Bram Moolenaar <bram@vim.org>
parents:
5056
diff
changeset
|
5479 int keep = 0; |
14071
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5480 typval_T args[4]; |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14687
diff
changeset
|
5481 sctx_T save_current_sctx = current_sctx; |
14071
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5482 char_u *pat = NULL; |
407 | 5483 void *ret; |
7 | 5484 |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
5485 if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL) |
407 | 5486 return NULL; |
7 | 5487 *num_file = 0; |
5488 *file = NULL; | |
5489 | |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
5490 if (ccline.cmdbuff != NULL) |
1518 | 5491 { |
5492 keep = ccline.cmdbuff[ccline.cmdlen]; | |
5493 ccline.cmdbuff[ccline.cmdlen] = 0; | |
5494 } | |
5033
7aa4e0822dec
updated for version 7.3.1260
Bram Moolenaar <bram@vim.org>
parents:
4980
diff
changeset
|
5495 |
14071
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5496 pat = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len); |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5497 |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5498 args[0].v_type = VAR_STRING; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5499 args[0].vval.v_string = pat; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5500 args[1].v_type = VAR_STRING; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5501 args[1].vval.v_string = xp->xp_line; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5502 args[2].v_type = VAR_NUMBER; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5503 args[2].vval.v_number = xp->xp_col; |
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5504 args[3].v_type = VAR_UNKNOWN; |
7 | 5505 |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14687
diff
changeset
|
5506 current_sctx = xp->xp_script_ctx; |
13 | 5507 |
14439
e4c553e9132b
patch 8.1.0233: "safe" argument of call_vim_function() is always FALSE
Christian Brabandt <cb@256bit.org>
parents:
14417
diff
changeset
|
5508 ret = user_expand_func(xp->xp_arg, 3, args); |
13 | 5509 |
14700
0a3b9ecf7cb8
patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents:
14687
diff
changeset
|
5510 current_sctx = save_current_sctx; |
1518 | 5511 if (ccline.cmdbuff != NULL) |
5512 ccline.cmdbuff[ccline.cmdlen] = keep; | |
407 | 5513 |
14071
c1fcfafa8d1a
patch 8.1.0053: first argument of 'completefunc' has inconsistent type
Christian Brabandt <cb@256bit.org>
parents:
13998
diff
changeset
|
5514 vim_free(pat); |
407 | 5515 return ret; |
5516 } | |
5517 | |
5518 /* | |
5519 * Expand names with a function defined by the user. | |
5520 */ | |
5521 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5522 ExpandUserDefined( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5523 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5524 regmatch_T *regmatch, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5525 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5526 char_u ***file) |
407 | 5527 { |
5528 char_u *retstr; | |
5529 char_u *s; | |
5530 char_u *e; | |
13256
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5531 int keep; |
407 | 5532 garray_T ga; |
13256
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5533 int skip; |
407 | 5534 |
5535 retstr = call_user_expand_func(call_func_retstr, xp, num_file, file); | |
5536 if (retstr == NULL) | |
7 | 5537 return FAIL; |
5538 | |
5539 ga_init2(&ga, (int)sizeof(char *), 3); | |
407 | 5540 for (s = retstr; *s != NUL; s = e) |
7 | 5541 { |
5542 e = vim_strchr(s, '\n'); | |
5543 if (e == NULL) | |
5544 e = s + STRLEN(s); | |
5545 keep = *e; | |
13256
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5546 *e = NUL; |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5547 |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5548 skip = xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0; |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5549 *e = keep; |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5550 |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5551 if (!skip) |
7 | 5552 { |
13256
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5553 if (ga_grow(&ga, 1) == FAIL) |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5554 break; |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5555 ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s)); |
69e86e6e5703
patch 8.0.1502: in out-of-memory situation character is not restored
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5556 ++ga.ga_len; |
7 | 5557 } |
5558 | |
5559 if (*e != NUL) | |
5560 ++e; | |
5561 } | |
407 | 5562 vim_free(retstr); |
5563 *file = ga.ga_data; | |
5564 *num_file = ga.ga_len; | |
5565 return OK; | |
5566 } | |
5567 | |
5568 /* | |
5569 * Expand names with a list returned by a function defined by the user. | |
5570 */ | |
5571 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5572 ExpandUserList( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5573 expand_T *xp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5574 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5575 char_u ***file) |
407 | 5576 { |
5577 list_T *retlist; | |
5578 listitem_T *li; | |
5579 garray_T ga; | |
5580 | |
5581 retlist = call_user_expand_func(call_func_retlist, xp, num_file, file); | |
5582 if (retlist == NULL) | |
5583 return FAIL; | |
5584 | |
5585 ga_init2(&ga, (int)sizeof(char *), 3); | |
5586 /* Loop over the items in the list. */ | |
5587 for (li = retlist->lv_first; li != NULL; li = li->li_next) | |
5588 { | |
1917 | 5589 if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL) |
5590 continue; /* Skip non-string items and empty strings */ | |
407 | 5591 |
5592 if (ga_grow(&ga, 1) == FAIL) | |
5593 break; | |
5594 | |
5595 ((char_u **)ga.ga_data)[ga.ga_len] = | |
1917 | 5596 vim_strsave(li->li_tv.vval.v_string); |
407 | 5597 ++ga.ga_len; |
5598 } | |
5599 list_unref(retlist); | |
5600 | |
7 | 5601 *file = ga.ga_data; |
5602 *num_file = ga.ga_len; | |
5603 return OK; | |
5604 } | |
5605 #endif | |
5606 | |
5607 /* | |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5608 * 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
|
5609 * Search from 'runtimepath': |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5610 * 'runtimepath'/{dirnames}/{pat}.vim |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5611 * 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
|
5612 * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5613 * 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
|
5614 * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim |
2929 | 5615 * "dirnames" is an array with one or more directory names. |
7 | 5616 */ |
5617 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5618 ExpandRTDir( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5619 char_u *pat, |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5620 int flags, |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5621 int *num_file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5622 char_u ***file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5623 char *dirnames[]) |
7 | 5624 { |
5625 char_u *s; | |
5626 char_u *e; | |
5873 | 5627 char_u *match; |
7 | 5628 garray_T ga; |
2929 | 5629 int i; |
5630 int pat_len; | |
7 | 5631 |
5632 *num_file = 0; | |
5633 *file = NULL; | |
2931 | 5634 pat_len = (int)STRLEN(pat); |
2929 | 5635 ga_init2(&ga, (int)sizeof(char *), 10); |
5636 | |
5637 for (i = 0; dirnames[i] != NULL; ++i) | |
7 | 5638 { |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
5639 s = alloc(STRLEN(dirnames[i]) + pat_len + 7); |
2929 | 5640 if (s == NULL) |
5641 { | |
5642 ga_clear_strings(&ga); | |
5643 return FAIL; | |
5644 } | |
5645 sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat); | |
5873 | 5646 globpath(p_rtp, s, &ga, 0); |
2929 | 5647 vim_free(s); |
5873 | 5648 } |
5649 | |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5650 if (flags & DIP_START) { |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5651 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
|
5652 { |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
5653 s = alloc(STRLEN(dirnames[i]) + pat_len + 22); |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5654 if (s == NULL) |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5655 { |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5656 ga_clear_strings(&ga); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5657 return FAIL; |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5658 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5659 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
|
5660 globpath(p_pp, s, &ga, 0); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5661 vim_free(s); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5662 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5663 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5664 |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5665 if (flags & DIP_OPT) { |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5666 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
|
5667 { |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
5668 s = alloc(STRLEN(dirnames[i]) + pat_len + 20); |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5669 if (s == NULL) |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5670 { |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5671 ga_clear_strings(&ga); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5672 return FAIL; |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5673 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5674 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
|
5675 globpath(p_pp, s, &ga, 0); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5676 vim_free(s); |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5677 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5678 } |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
5679 |
5873 | 5680 for (i = 0; i < ga.ga_len; ++i) |
5681 { | |
5682 match = ((char_u **)ga.ga_data)[i]; | |
5683 s = match; | |
5684 e = s + STRLEN(s); | |
5685 if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0) | |
7 | 5686 { |
5873 | 5687 e -= 4; |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5688 for (s = e; s > match; MB_PTR_BACK(match, s)) |
5873 | 5689 if (s < match || vim_ispathsep(*s)) |
5690 break; | |
5691 ++s; | |
5692 *e = NUL; | |
5693 mch_memmove(match, s, e - s + 1); | |
7 | 5694 } |
5695 } | |
5873 | 5696 |
2929 | 5697 if (ga.ga_len == 0) |
3628 | 5698 return FAIL; |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5699 |
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5700 /* Sort and remove duplicates which can happen when specifying multiple |
2929 | 5701 * directories in dirnames. */ |
2433
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5702 remove_duplicates(&ga); |
98b9a6b9e7d5
Add completion for ":ownsyntax" and improve completion for ":filetype".
Bram Moolenaar <bram@vim.org>
parents:
2429
diff
changeset
|
5703 |
7 | 5704 *file = ga.ga_data; |
5705 *num_file = ga.ga_len; | |
5706 return OK; | |
5707 } | |
5708 | |
8402
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5709 /* |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5710 * Expand loadplugin names: |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5711 * 'packpath'/pack/ * /opt/{pat} |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5712 */ |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5713 static int |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5714 ExpandPackAddDir( |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5715 char_u *pat, |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5716 int *num_file, |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5717 char_u ***file) |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5718 { |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5719 char_u *s; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5720 char_u *e; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5721 char_u *match; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5722 garray_T ga; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5723 int i; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5724 int pat_len; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5725 |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5726 *num_file = 0; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5727 *file = NULL; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5728 pat_len = (int)STRLEN(pat); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5729 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
|
5730 |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
5731 s = alloc(pat_len + 26); |
8402
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5732 if (s == NULL) |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5733 { |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5734 ga_clear_strings(&ga); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5735 return FAIL; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5736 } |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5737 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
|
5738 globpath(p_pp, s, &ga, 0); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5739 vim_free(s); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5740 |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5741 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
|
5742 { |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5743 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
|
5744 s = gettail(match); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5745 e = s + STRLEN(s); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5746 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
|
5747 } |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5748 |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5749 if (ga.ga_len == 0) |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5750 return FAIL; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5751 |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5752 /* 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
|
5753 * directories in dirnames. */ |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5754 remove_duplicates(&ga); |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5755 |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5756 *file = ga.ga_data; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5757 *num_file = ga.ga_len; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5758 return OK; |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5759 } |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
5760 |
7 | 5761 #endif |
5762 | |
5763 #if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO) | |
5764 /* | |
5765 * Expand "file" for all comma-separated directories in "path". | |
5873 | 5766 * Adds the matches to "ga". Caller must init "ga". |
7 | 5767 */ |
5873 | 5768 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5769 globpath( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5770 char_u *path, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5771 char_u *file, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5772 garray_T *ga, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5773 int expand_options) |
7 | 5774 { |
5775 expand_T xpc; | |
5776 char_u *buf; | |
5777 int i; | |
5778 int num_p; | |
5779 char_u **p; | |
5780 | |
5781 buf = alloc(MAXPATHL); | |
5782 if (buf == NULL) | |
5873 | 5783 return; |
7 | 5784 |
632 | 5785 ExpandInit(&xpc); |
7 | 5786 xpc.xp_context = EXPAND_FILES; |
632 | 5787 |
7 | 5788 /* Loop over all entries in {path}. */ |
5789 while (*path != NUL) | |
5790 { | |
5791 /* Copy one item of the path to buf[] and concatenate the file name. */ | |
5792 copy_option_part(&path, buf, MAXPATHL, ","); | |
5793 if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL) | |
5794 { | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
5795 # 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
|
5796 /* 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
|
5797 * 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
|
5798 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
|
5799 STRCAT(buf, "/"); |
a847363bf06e
Fix a few problems for :find completion. Test much more. (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2445
diff
changeset
|
5800 # else |
7 | 5801 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
|
5802 # endif |
7 | 5803 STRCAT(buf, file); |
1754 | 5804 if (ExpandFromContext(&xpc, buf, &num_p, &p, |
5805 WILD_SILENT|expand_options) != FAIL && num_p > 0) | |
7 | 5806 { |
1754 | 5807 ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options); |
5873 | 5808 |
5809 if (ga_grow(ga, num_p) == OK) | |
7 | 5810 { |
5811 for (i = 0; i < num_p; ++i) | |
5812 { | |
5873 | 5813 ((char_u **)ga->ga_data)[ga->ga_len] = |
5950 | 5814 vim_strnsave(p[i], (int)STRLEN(p[i])); |
5873 | 5815 ++ga->ga_len; |
7 | 5816 } |
5817 } | |
5873 | 5818 |
7 | 5819 FreeWild(num_p, p); |
5820 } | |
5821 } | |
5822 } | |
5823 | |
5824 vim_free(buf); | |
5825 } | |
5826 | |
5827 #endif | |
5828 | |
5829 #if defined(FEAT_CMDHIST) || defined(PROTO) | |
5830 | |
5831 /********************************* | |
5832 * Command line history stuff * | |
5833 *********************************/ | |
5834 | |
5835 /* | |
5836 * Translate a history character to the associated type number. | |
5837 */ | |
5838 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5839 hist_char2type(int c) |
7 | 5840 { |
5841 if (c == ':') | |
5842 return HIST_CMD; | |
5843 if (c == '=') | |
5844 return HIST_EXPR; | |
5845 if (c == '@') | |
5846 return HIST_INPUT; | |
5847 if (c == '>') | |
5848 return HIST_DEBUG; | |
5849 return HIST_SEARCH; /* must be '?' or '/' */ | |
5850 } | |
5851 | |
5852 /* | |
5853 * Table of history names. | |
5854 * These names are used in :history and various hist...() functions. | |
5855 * It is sufficient to give the significant prefix of a history name. | |
5856 */ | |
5857 | |
5858 static char *(history_names[]) = | |
5859 { | |
5860 "cmd", | |
5861 "search", | |
5862 "expr", | |
5863 "input", | |
5864 "debug", | |
5865 NULL | |
5866 }; | |
5867 | |
3503 | 5868 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
5869 /* | |
5870 * Function given to ExpandGeneric() to obtain the possible first | |
5871 * arguments of the ":history command. | |
5872 */ | |
5873 static char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5874 get_history_arg(expand_T *xp UNUSED, int idx) |
3503 | 5875 { |
5876 static char_u compl[2] = { NUL, NUL }; | |
5877 char *short_names = ":=@>?/"; | |
3529 | 5878 int short_names_count = (int)STRLEN(short_names); |
3503 | 5879 int history_name_count = sizeof(history_names) / sizeof(char *) - 1; |
5880 | |
5881 if (idx < short_names_count) | |
5882 { | |
5883 compl[0] = (char_u)short_names[idx]; | |
5884 return compl; | |
5885 } | |
5886 if (idx < short_names_count + history_name_count) | |
5887 return (char_u *)history_names[idx - short_names_count]; | |
5888 if (idx == short_names_count + history_name_count) | |
5889 return (char_u *)"all"; | |
5890 return NULL; | |
5891 } | |
5892 #endif | |
5893 | |
7 | 5894 /* |
5895 * init_history() - Initialize the command line history. | |
5896 * Also used to re-allocate the history when the size changes. | |
5897 */ | |
356 | 5898 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5899 init_history(void) |
7 | 5900 { |
5901 int newlen; /* new length of history table */ | |
5902 histentry_T *temp; | |
5903 int i; | |
5904 int j; | |
5905 int type; | |
5906 | |
5907 /* | |
5908 * If size of history table changed, reallocate it | |
5909 */ | |
5910 newlen = (int)p_hi; | |
5911 if (newlen != hislen) /* history length changed */ | |
5912 { | |
5913 for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */ | |
5914 { | |
5915 if (newlen) | |
5916 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
5917 temp = ALLOC_MULT(histentry_T, newlen); |
7 | 5918 if (temp == NULL) /* out of memory! */ |
5919 { | |
5920 if (type == 0) /* first one: just keep the old length */ | |
5921 { | |
5922 newlen = hislen; | |
5923 break; | |
5924 } | |
5925 /* Already changed one table, now we can only have zero | |
5926 * length for all tables. */ | |
5927 newlen = 0; | |
5928 type = -1; | |
5929 continue; | |
5930 } | |
5931 } | |
5932 else | |
5933 temp = NULL; | |
5934 if (newlen == 0 || temp != NULL) | |
5935 { | |
5936 if (hisidx[type] < 0) /* there are no entries yet */ | |
5937 { | |
5938 for (i = 0; i < newlen; ++i) | |
4258 | 5939 clear_hist_entry(&temp[i]); |
7 | 5940 } |
5941 else if (newlen > hislen) /* array becomes bigger */ | |
5942 { | |
5943 for (i = 0; i <= hisidx[type]; ++i) | |
5944 temp[i] = history[type][i]; | |
5945 j = i; | |
5946 for ( ; i <= newlen - (hislen - hisidx[type]); ++i) | |
4258 | 5947 clear_hist_entry(&temp[i]); |
7 | 5948 for ( ; j < hislen; ++i, ++j) |
5949 temp[i] = history[type][j]; | |
5950 } | |
5951 else /* array becomes smaller or 0 */ | |
5952 { | |
5953 j = hisidx[type]; | |
5954 for (i = newlen - 1; ; --i) | |
5955 { | |
5956 if (i >= 0) /* copy newest entries */ | |
5957 temp[i] = history[type][j]; | |
5958 else /* remove older entries */ | |
5959 vim_free(history[type][j].hisstr); | |
5960 if (--j < 0) | |
5961 j = hislen - 1; | |
5962 if (j == hisidx[type]) | |
5963 break; | |
5964 } | |
5965 hisidx[type] = newlen - 1; | |
5966 } | |
5967 vim_free(history[type]); | |
5968 history[type] = temp; | |
5969 } | |
5970 } | |
5971 hislen = newlen; | |
5972 } | |
5973 } | |
5974 | |
4258 | 5975 static void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5976 clear_hist_entry(histentry_T *hisptr) |
4258 | 5977 { |
5978 hisptr->hisnum = 0; | |
5979 hisptr->viminfo = FALSE; | |
5980 hisptr->hisstr = NULL; | |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
5981 hisptr->time_set = 0; |
4258 | 5982 } |
5983 | |
7 | 5984 /* |
5985 * Check if command line 'str' is already in history. | |
5986 * If 'move_to_front' is TRUE, matching entry is moved to end of history. | |
5987 */ | |
5988 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5989 in_history( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5990 int type, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5991 char_u *str, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5992 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
|
5993 int sep, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5994 int writing) /* ignore entries read from viminfo */ |
7 | 5995 { |
5996 int i; | |
5997 int last_i = -1; | |
2986 | 5998 char_u *p; |
7 | 5999 |
6000 if (hisidx[type] < 0) | |
6001 return FALSE; | |
6002 i = hisidx[type]; | |
6003 do | |
6004 { | |
6005 if (history[type][i].hisstr == NULL) | |
6006 return FALSE; | |
2986 | 6007 |
6008 /* For search history, check that the separator character matches as | |
6009 * well. */ | |
6010 p = history[type][i].hisstr; | |
6011 if (STRCMP(str, p) == 0 | |
4285 | 6012 && !(writing && history[type][i].viminfo) |
2986 | 6013 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1])) |
7 | 6014 { |
6015 if (!move_to_front) | |
6016 return TRUE; | |
6017 last_i = i; | |
6018 break; | |
6019 } | |
6020 if (--i < 0) | |
6021 i = hislen - 1; | |
6022 } while (i != hisidx[type]); | |
6023 | |
6024 if (last_i >= 0) | |
6025 { | |
6026 str = history[type][i].hisstr; | |
6027 while (i != hisidx[type]) | |
6028 { | |
6029 if (++i >= hislen) | |
6030 i = 0; | |
6031 history[type][last_i] = history[type][i]; | |
6032 last_i = i; | |
6033 } | |
4258 | 6034 history[type][i].hisnum = ++hisnum[type]; |
6035 history[type][i].viminfo = FALSE; | |
7 | 6036 history[type][i].hisstr = str; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6037 history[type][i].time_set = vim_time(); |
7 | 6038 return TRUE; |
6039 } | |
6040 return FALSE; | |
6041 } | |
6042 | |
6043 /* | |
6044 * Convert history name (from table above) to its HIST_ equivalent. | |
6045 * When "name" is empty, return "cmd" history. | |
6046 * Returns -1 for unknown history name. | |
6047 */ | |
6048 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6049 get_histtype(char_u *name) |
7 | 6050 { |
6051 int i; | |
6052 int len = (int)STRLEN(name); | |
6053 | |
6054 /* No argument: use current history. */ | |
6055 if (len == 0) | |
6056 return hist_char2type(ccline.cmdfirstc); | |
6057 | |
6058 for (i = 0; history_names[i] != NULL; ++i) | |
6059 if (STRNICMP(name, history_names[i], len) == 0) | |
6060 return i; | |
6061 | |
6062 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL) | |
6063 return hist_char2type(name[0]); | |
6064 | |
6065 return -1; | |
6066 } | |
6067 | |
6068 static int last_maptick = -1; /* last seen maptick */ | |
6069 | |
6070 /* | |
6071 * Add the given string to the given history. If the string is already in the | |
6072 * history then it is moved to the front. "histype" may be one of he HIST_ | |
6073 * values. | |
6074 */ | |
6075 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6076 add_to_history( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6077 int histype, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6078 char_u *new_entry, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6079 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
|
6080 int sep) /* separator character used (search hist) */ |
7 | 6081 { |
6082 histentry_T *hisptr; | |
6083 int len; | |
6084 | |
6085 if (hislen == 0) /* no history */ | |
6086 return; | |
6087 | |
5467 | 6088 if (cmdmod.keeppatterns && histype == HIST_SEARCH) |
6089 return; | |
6090 | |
7 | 6091 /* |
6092 * Searches inside the same mapping overwrite each other, so that only | |
6093 * the last line is kept. Be careful not to remove a line that was moved | |
6094 * down, only lines that were added. | |
6095 */ | |
6096 if (histype == HIST_SEARCH && in_map) | |
6097 { | |
10174
b17c82587755
commit https://github.com/vim/vim/commit/46643713dc6bb04b4e84986b1763ef309e960161
Christian Brabandt <cb@256bit.org>
parents:
10120
diff
changeset
|
6098 if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0) |
7 | 6099 { |
6100 /* Current line is from the same mapping, remove it */ | |
6101 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]]; | |
6102 vim_free(hisptr->hisstr); | |
4258 | 6103 clear_hist_entry(hisptr); |
7 | 6104 --hisnum[histype]; |
6105 if (--hisidx[HIST_SEARCH] < 0) | |
6106 hisidx[HIST_SEARCH] = hislen - 1; | |
6107 } | |
6108 last_maptick = -1; | |
6109 } | |
4285 | 6110 if (!in_history(histype, new_entry, TRUE, sep, FALSE)) |
7 | 6111 { |
6112 if (++hisidx[histype] == hislen) | |
6113 hisidx[histype] = 0; | |
6114 hisptr = &history[histype][hisidx[histype]]; | |
6115 vim_free(hisptr->hisstr); | |
6116 | |
6117 /* Store the separator after the NUL of the string. */ | |
835 | 6118 len = (int)STRLEN(new_entry); |
7 | 6119 hisptr->hisstr = vim_strnsave(new_entry, len + 2); |
6120 if (hisptr->hisstr != NULL) | |
6121 hisptr->hisstr[len + 1] = sep; | |
6122 | |
6123 hisptr->hisnum = ++hisnum[histype]; | |
4258 | 6124 hisptr->viminfo = FALSE; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6125 hisptr->time_set = vim_time(); |
7 | 6126 if (histype == HIST_SEARCH && in_map) |
6127 last_maptick = maptick; | |
6128 } | |
6129 } | |
6130 | |
6131 #if defined(FEAT_EVAL) || defined(PROTO) | |
6132 | |
6133 /* | |
6134 * Get identifier of newest history entry. | |
6135 * "histype" may be one of the HIST_ values. | |
6136 */ | |
6137 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6138 get_history_idx(int histype) |
7 | 6139 { |
6140 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT | |
6141 || hisidx[histype] < 0) | |
6142 return -1; | |
6143 | |
6144 return history[histype][hisidx[histype]].hisnum; | |
6145 } | |
6146 | |
531 | 6147 /* |
7 | 6148 * Calculate history index from a number: |
6149 * num > 0: seen as identifying number of a history entry | |
6150 * num < 0: relative position in history wrt newest entry | |
6151 * "histype" may be one of the HIST_ values. | |
6152 */ | |
6153 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6154 calc_hist_idx(int histype, int num) |
7 | 6155 { |
6156 int i; | |
6157 histentry_T *hist; | |
6158 int wrapped = FALSE; | |
6159 | |
6160 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT | |
6161 || (i = hisidx[histype]) < 0 || num == 0) | |
6162 return -1; | |
6163 | |
6164 hist = history[histype]; | |
6165 if (num > 0) | |
6166 { | |
6167 while (hist[i].hisnum > num) | |
6168 if (--i < 0) | |
6169 { | |
6170 if (wrapped) | |
6171 break; | |
6172 i += hislen; | |
6173 wrapped = TRUE; | |
6174 } | |
6175 if (hist[i].hisnum == num && hist[i].hisstr != NULL) | |
6176 return i; | |
6177 } | |
6178 else if (-num <= hislen) | |
6179 { | |
6180 i += num + 1; | |
6181 if (i < 0) | |
6182 i += hislen; | |
6183 if (hist[i].hisstr != NULL) | |
6184 return i; | |
6185 } | |
6186 return -1; | |
6187 } | |
6188 | |
6189 /* | |
6190 * Get a history entry by its index. | |
6191 * "histype" may be one of the HIST_ values. | |
6192 */ | |
6193 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6194 get_history_entry(int histype, int idx) |
7 | 6195 { |
6196 idx = calc_hist_idx(histype, idx); | |
6197 if (idx >= 0) | |
6198 return history[histype][idx].hisstr; | |
6199 else | |
6200 return (char_u *)""; | |
6201 } | |
6202 | |
6203 /* | |
6204 * Clear all entries of a history. | |
6205 * "histype" may be one of the HIST_ values. | |
6206 */ | |
6207 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6208 clr_history(int histype) |
7 | 6209 { |
6210 int i; | |
6211 histentry_T *hisptr; | |
6212 | |
6213 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT) | |
6214 { | |
6215 hisptr = history[histype]; | |
6216 for (i = hislen; i--;) | |
6217 { | |
6218 vim_free(hisptr->hisstr); | |
4258 | 6219 clear_hist_entry(hisptr); |
8406
5d926807c19c
commit https://github.com/vim/vim/commit/119d4693e06e68d4f099aa7287e375ae3d265fd0
Christian Brabandt <cb@256bit.org>
parents:
8402
diff
changeset
|
6220 hisptr++; |
7 | 6221 } |
6222 hisidx[histype] = -1; /* mark history as cleared */ | |
6223 hisnum[histype] = 0; /* reset identifier counter */ | |
6224 return OK; | |
6225 } | |
6226 return FAIL; | |
6227 } | |
6228 | |
6229 /* | |
6230 * Remove all entries matching {str} from a history. | |
6231 * "histype" may be one of the HIST_ values. | |
6232 */ | |
6233 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6234 del_history_entry(int histype, char_u *str) |
7 | 6235 { |
6236 regmatch_T regmatch; | |
6237 histentry_T *hisptr; | |
6238 int idx; | |
6239 int i; | |
6240 int last; | |
6241 int found = FALSE; | |
6242 | |
6243 regmatch.regprog = NULL; | |
6244 regmatch.rm_ic = FALSE; /* always match case */ | |
6245 if (hislen != 0 | |
6246 && histype >= 0 | |
6247 && histype < HIST_COUNT | |
6248 && *str != NUL | |
6249 && (idx = hisidx[histype]) >= 0 | |
6250 && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING)) | |
6251 != NULL) | |
6252 { | |
6253 i = last = idx; | |
6254 do | |
6255 { | |
6256 hisptr = &history[histype][i]; | |
6257 if (hisptr->hisstr == NULL) | |
6258 break; | |
6259 if (vim_regexec(®match, hisptr->hisstr, (colnr_T)0)) | |
6260 { | |
6261 found = TRUE; | |
6262 vim_free(hisptr->hisstr); | |
4258 | 6263 clear_hist_entry(hisptr); |
7 | 6264 } |
6265 else | |
6266 { | |
6267 if (i != last) | |
6268 { | |
6269 history[histype][last] = *hisptr; | |
4258 | 6270 clear_hist_entry(hisptr); |
7 | 6271 } |
6272 if (--last < 0) | |
6273 last += hislen; | |
6274 } | |
6275 if (--i < 0) | |
6276 i += hislen; | |
6277 } while (i != idx); | |
6278 if (history[histype][idx].hisstr == NULL) | |
6279 hisidx[histype] = -1; | |
6280 } | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4803
diff
changeset
|
6281 vim_regfree(regmatch.regprog); |
7 | 6282 return found; |
6283 } | |
6284 | |
6285 /* | |
6286 * Remove an indexed entry from a history. | |
6287 * "histype" may be one of the HIST_ values. | |
6288 */ | |
6289 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6290 del_history_idx(int histype, int idx) |
7 | 6291 { |
6292 int i, j; | |
6293 | |
6294 i = calc_hist_idx(histype, idx); | |
6295 if (i < 0) | |
6296 return FALSE; | |
6297 idx = hisidx[histype]; | |
6298 vim_free(history[histype][i].hisstr); | |
6299 | |
6300 /* When deleting the last added search string in a mapping, reset | |
6301 * last_maptick, so that the last added search string isn't deleted again. | |
6302 */ | |
6303 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx) | |
6304 last_maptick = -1; | |
6305 | |
6306 while (i != idx) | |
6307 { | |
6308 j = (i + 1) % hislen; | |
6309 history[histype][i] = history[histype][j]; | |
6310 i = j; | |
6311 } | |
4258 | 6312 clear_hist_entry(&history[histype][i]); |
7 | 6313 if (--i < 0) |
6314 i += hislen; | |
6315 hisidx[histype] = i; | |
6316 return TRUE; | |
6317 } | |
6318 | |
6319 #endif /* FEAT_EVAL */ | |
6320 | |
6321 #if defined(FEAT_CRYPT) || defined(PROTO) | |
6322 /* | |
6323 * Very specific function to remove the value in ":set key=val" from the | |
6324 * history. | |
6325 */ | |
6326 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6327 remove_key_from_history(void) |
7 | 6328 { |
6329 char_u *p; | |
6330 int i; | |
6331 | |
6332 i = hisidx[HIST_CMD]; | |
6333 if (i < 0) | |
6334 return; | |
6335 p = history[HIST_CMD][i].hisstr; | |
6336 if (p != NULL) | |
6337 for ( ; *p; ++p) | |
6338 if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3])) | |
6339 { | |
6340 p = vim_strchr(p + 3, '='); | |
6341 if (p == NULL) | |
6342 break; | |
6343 ++p; | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
6344 for (i = 0; p[i] && !VIM_ISWHITE(p[i]); ++i) |
7 | 6345 if (p[i] == '\\' && p[i + 1]) |
6346 ++i; | |
1621 | 6347 STRMOVE(p, p + i); |
7 | 6348 --p; |
6349 } | |
6350 } | |
6351 #endif | |
6352 | |
6353 #endif /* FEAT_CMDHIST */ | |
6354 | |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6355 #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
|
6356 /* |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
6357 * Get pointer to the command line info to use. save_ccline() may clear |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6358 * 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
|
6359 */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6360 static struct cmdline_info * |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6361 get_ccline_ptr(void) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6362 { |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6363 if ((State & CMDLINE) == 0) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6364 return NULL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6365 if (ccline.cmdbuff != NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6366 return &ccline; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6367 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
|
6368 return &prev_ccline; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6369 return NULL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6370 } |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6371 #endif |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6372 |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6373 #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
|
6374 /* |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6375 * 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
|
6376 * 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
|
6377 * Returns NULL when something is wrong. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6378 */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6379 char_u * |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6380 get_cmdline_str(void) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6381 { |
14848
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
6382 struct cmdline_info *p; |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
6383 |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
6384 if (cmdline_star > 0) |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
6385 return NULL; |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
6386 p = get_ccline_ptr(); |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6387 if (p == NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6388 return NULL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6389 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
|
6390 } |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6391 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6392 /* |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6393 * 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
|
6394 * Zero is the first position. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6395 * 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
|
6396 * Returns -1 when something is wrong. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6397 */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6398 int |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6399 get_cmdline_pos(void) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6400 { |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6401 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
|
6402 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6403 if (p == NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6404 return -1; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6405 return p->cmdpos; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6406 } |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6407 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6408 /* |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6409 * 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
|
6410 * 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
|
6411 * 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
|
6412 */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6413 int |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6414 set_cmdline_pos( |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6415 int pos) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6416 { |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6417 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
|
6418 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6419 if (p == NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6420 return 1; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6421 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6422 /* 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
|
6423 * changed the command line. */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6424 if (pos < 0) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6425 new_cmdpos = 0; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6426 else |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6427 new_cmdpos = pos; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6428 return 0; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6429 } |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6430 #endif |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6431 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6432 #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
|
6433 /* |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6434 * Get the current command-line type. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6435 * Returns ':' or '/' or '?' or '@' or '>' or '-' |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6436 * 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
|
6437 * Returns NUL when something is wrong. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6438 */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6439 int |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6440 get_cmdline_type(void) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6441 { |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6442 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
|
6443 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6444 if (p == NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6445 return NUL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6446 if (p->cmdfirstc == NUL) |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6447 return |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6448 # ifdef FEAT_EVAL |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6449 (p->input_fn) ? '@' : |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6450 # endif |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
6451 '-'; |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6452 return p->cmdfirstc; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6453 } |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6454 #endif |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
6455 |
7 | 6456 #if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO) |
6457 /* | |
6458 * Get indices "num1,num2" that specify a range within a list (not a range of | |
6459 * text lines in a buffer!) from a string. Used for ":history" and ":clist". | |
6460 * Returns OK if parsed successfully, otherwise FAIL. | |
6461 */ | |
6462 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6463 get_list_range(char_u **str, int *num1, int *num2) |
7 | 6464 { |
6465 int len; | |
6466 int first = FALSE; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9301
diff
changeset
|
6467 varnumber_T num; |
7 | 6468 |
6469 *str = skipwhite(*str); | |
6470 if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */ | |
6471 { | |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
6472 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE); |
7 | 6473 *str += len; |
6474 *num1 = (int)num; | |
6475 first = TRUE; | |
6476 } | |
6477 *str = skipwhite(*str); | |
6478 if (**str == ',') /* parse "to" part of range */ | |
6479 { | |
6480 *str = skipwhite(*str + 1); | |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
6481 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE); |
7 | 6482 if (len > 0) |
6483 { | |
6484 *num2 = (int)num; | |
6485 *str = skipwhite(*str + len); | |
6486 } | |
6487 else if (!first) /* no number given at all */ | |
6488 return FAIL; | |
6489 } | |
6490 else if (first) /* only one number given */ | |
6491 *num2 = *num1; | |
6492 return OK; | |
6493 } | |
6494 #endif | |
6495 | |
6496 #if defined(FEAT_CMDHIST) || defined(PROTO) | |
6497 /* | |
6498 * :history command - print a history | |
6499 */ | |
6500 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6501 ex_history(exarg_T *eap) |
7 | 6502 { |
6503 histentry_T *hist; | |
6504 int histype1 = HIST_CMD; | |
6505 int histype2 = HIST_CMD; | |
6506 int hisidx1 = 1; | |
6507 int hisidx2 = -1; | |
6508 int idx; | |
6509 int i, j, k; | |
6510 char_u *end; | |
6511 char_u *arg = eap->arg; | |
6512 | |
6513 if (hislen == 0) | |
6514 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6515 msg(_("'history' option is zero")); |
7 | 6516 return; |
6517 } | |
6518 | |
6519 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ',')) | |
6520 { | |
6521 end = arg; | |
6522 while (ASCII_ISALPHA(*end) | |
6523 || vim_strchr((char_u *)":=@>/?", *end) != NULL) | |
6524 end++; | |
6525 i = *end; | |
6526 *end = NUL; | |
6527 histype1 = get_histtype(arg); | |
6528 if (histype1 == -1) | |
6529 { | |
1853 | 6530 if (STRNICMP(arg, "all", STRLEN(arg)) == 0) |
7 | 6531 { |
6532 histype1 = 0; | |
6533 histype2 = HIST_COUNT-1; | |
6534 } | |
6535 else | |
6536 { | |
6537 *end = i; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
6538 emsg(_(e_trailing)); |
7 | 6539 return; |
6540 } | |
6541 } | |
6542 else | |
6543 histype2 = histype1; | |
6544 *end = i; | |
6545 } | |
6546 else | |
6547 end = arg; | |
6548 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL) | |
6549 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
6550 emsg(_(e_trailing)); |
7 | 6551 return; |
6552 } | |
6553 | |
6554 for (; !got_int && histype1 <= histype2; ++histype1) | |
6555 { | |
6556 STRCPY(IObuff, "\n # "); | |
6557 STRCAT(STRCAT(IObuff, history_names[histype1]), " history"); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6558 msg_puts_title((char *)IObuff); |
7 | 6559 idx = hisidx[histype1]; |
6560 hist = history[histype1]; | |
6561 j = hisidx1; | |
6562 k = hisidx2; | |
6563 if (j < 0) | |
6564 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum; | |
6565 if (k < 0) | |
6566 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum; | |
6567 if (idx >= 0 && j <= k) | |
6568 for (i = idx + 1; !got_int; ++i) | |
6569 { | |
6570 if (i == hislen) | |
6571 i = 0; | |
6572 if (hist[i].hisstr != NULL | |
6573 && hist[i].hisnum >= j && hist[i].hisnum <= k) | |
6574 { | |
6575 msg_putchar('\n'); | |
6576 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ', | |
6577 hist[i].hisnum); | |
6578 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10) | |
6579 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff), | |
3290 | 6580 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff)); |
7 | 6581 else |
6582 STRCAT(IObuff, hist[i].hisstr); | |
6583 msg_outtrans(IObuff); | |
6584 out_flush(); | |
6585 } | |
6586 if (i == idx) | |
6587 break; | |
6588 } | |
6589 } | |
6590 } | |
6591 #endif | |
6592 | |
6593 #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
|
6594 /* |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6595 * 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
|
6596 */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6597 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
|
6598 {NULL, NULL, NULL, NULL, NULL}; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6599 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
|
6600 static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0, 0}; |
7 | 6601 static int viminfo_add_at_front = FALSE; |
6602 | |
6603 /* | |
6604 * Translate a history type number to the associated character. | |
6605 */ | |
6606 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6607 hist_type2char( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6608 int type, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6609 int use_question) /* use '?' instead of '/' */ |
7 | 6610 { |
6611 if (type == HIST_CMD) | |
6612 return ':'; | |
6613 if (type == HIST_SEARCH) | |
6614 { | |
6615 if (use_question) | |
6616 return '?'; | |
6617 else | |
6618 return '/'; | |
6619 } | |
6620 if (type == HIST_EXPR) | |
6621 return '='; | |
6622 return '@'; | |
6623 } | |
6624 | |
6625 /* | |
6626 * Prepare for reading the history from the viminfo file. | |
6627 * This allocates history arrays to store the read history lines. | |
6628 */ | |
6629 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6630 prepare_viminfo_history(int asklen, int writing) |
7 | 6631 { |
6632 int i; | |
6633 int num; | |
6634 int type; | |
6635 int len; | |
6636 | |
6637 init_history(); | |
4285 | 6638 viminfo_add_at_front = (asklen != 0 && !writing); |
7 | 6639 if (asklen > hislen) |
6640 asklen = hislen; | |
6641 | |
6642 for (type = 0; type < HIST_COUNT; ++type) | |
6643 { | |
4258 | 6644 /* Count the number of empty spaces in the history list. Entries read |
6645 * from viminfo previously are also considered empty. If there are | |
6646 * more spaces available than we request, then fill them up. */ | |
7 | 6647 for (i = 0, num = 0; i < hislen; i++) |
4258 | 6648 if (history[type][i].hisstr == NULL || history[type][i].viminfo) |
7 | 6649 num++; |
6650 len = asklen; | |
6651 if (num > len) | |
6652 len = num; | |
6653 if (len <= 0) | |
6654 viminfo_history[type] = NULL; | |
6655 else | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
6656 viminfo_history[type] = LALLOC_MULT(histentry_T, len); |
7 | 6657 if (viminfo_history[type] == NULL) |
6658 len = 0; | |
6659 viminfo_hislen[type] = len; | |
6660 viminfo_hisidx[type] = 0; | |
6661 } | |
6662 } | |
6663 | |
6664 /* | |
6665 * Accept a line from the viminfo, store it in the history array when it's | |
6666 * new. | |
6667 */ | |
6668 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6669 read_viminfo_history(vir_T *virp, int writing) |
7 | 6670 { |
6671 int type; | |
6672 long_u len; | |
6673 char_u *val; | |
6674 char_u *p; | |
6675 | |
6676 type = hist_char2type(virp->vir_line[0]); | |
6677 if (viminfo_hisidx[type] < viminfo_hislen[type]) | |
6678 { | |
6679 val = viminfo_readstring(virp, 1, TRUE); | |
6680 if (val != NULL && *val != NUL) | |
6681 { | |
3316 | 6682 int sep = (*val == ' ' ? NUL : *val); |
6683 | |
7 | 6684 if (!in_history(type, val + (type == HIST_SEARCH), |
4285 | 6685 viminfo_add_at_front, sep, writing)) |
7 | 6686 { |
6687 /* Need to re-allocate to append the separator byte. */ | |
6688 len = STRLEN(val); | |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
6689 p = alloc(len + 2); |
7 | 6690 if (p != NULL) |
6691 { | |
6692 if (type == HIST_SEARCH) | |
6693 { | |
6694 /* Search entry: Move the separator from the first | |
6695 * column to after the NUL. */ | |
6696 mch_memmove(p, val + 1, (size_t)len); | |
3316 | 6697 p[len] = sep; |
7 | 6698 } |
6699 else | |
6700 { | |
6701 /* Not a search entry: No separator in the viminfo | |
6702 * file, add a NUL separator. */ | |
6703 mch_memmove(p, val, (size_t)len + 1); | |
6704 p[len + 1] = NUL; | |
6705 } | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6706 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
|
6707 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
|
6708 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
|
6709 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
|
6710 viminfo_hisidx[type]++; |
7 | 6711 } |
6712 } | |
6713 } | |
6714 vim_free(val); | |
6715 } | |
6716 return viminfo_readline(virp); | |
6717 } | |
6718 | |
4285 | 6719 /* |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6720 * 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
|
6721 * array when it's new. |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6722 */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6723 void |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6724 handle_viminfo_history( |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6725 garray_T *values, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6726 int writing) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6727 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6728 int type; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6729 long_u len; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6730 char_u *val; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6731 char_u *p; |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6732 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
|
6733 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6734 /* Check the format: |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6735 * |{bartype},{histtype},{timestamp},{separator},"text" */ |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6736 if (values->ga_len < 4 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6737 || vp[0].bv_type != BVAL_NR |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6738 || vp[1].bv_type != BVAL_NR |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6739 || (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
|
6740 || 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
|
6741 return; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6742 |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6743 type = vp[0].bv_nr; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6744 if (type >= HIST_COUNT) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6745 return; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6746 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
|
6747 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6748 val = vp[3].bv_string; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6749 if (val != NULL && *val != NUL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6750 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6751 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
|
6752 ? vp[2].bv_nr : NUL; |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6753 int idx; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6754 int overwrite = FALSE; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6755 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6756 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
|
6757 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6758 /* 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
|
6759 * 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
|
6760 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
|
6761 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6762 p = viminfo_history[type][idx].hisstr; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6763 if (STRCMP(val, p) == 0 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6764 && (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
|
6765 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6766 overwrite = TRUE; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6767 break; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6768 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6769 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6770 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6771 if (!overwrite) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6772 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6773 /* 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
|
6774 len = vp[3].bv_len; |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
6775 p = alloc(len + 2); |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6776 } |
9301
c3805fb080a6
commit https://github.com/vim/vim/commit/72e697d189616265ecefe0df4509d476df3bae40
Christian Brabandt <cb@256bit.org>
parents:
9287
diff
changeset
|
6777 else |
c3805fb080a6
commit https://github.com/vim/vim/commit/72e697d189616265ecefe0df4509d476df3bae40
Christian Brabandt <cb@256bit.org>
parents:
9287
diff
changeset
|
6778 len = 0; /* for picky compilers */ |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6779 if (p != NULL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6780 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9270
diff
changeset
|
6781 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
|
6782 if (!overwrite) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6783 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6784 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
|
6785 /* Put the separator after the NUL. */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6786 p[len + 1] = sep; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6787 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
|
6788 viminfo_history[type][idx].hisnum = 0; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6789 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
|
6790 viminfo_hisidx[type]++; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6791 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6792 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6793 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6794 } |
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 } |
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 /* |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6799 * 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
|
6800 */ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6801 static void |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6802 concat_history(int type) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6803 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6804 int idx; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6805 int i; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6806 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6807 idx = hisidx[type] + viminfo_hisidx[type]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6808 if (idx >= hislen) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6809 idx -= hislen; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6810 else if (idx < 0) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6811 idx = hislen - 1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6812 if (viminfo_add_at_front) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6813 hisidx[type] = idx; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6814 else |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6815 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6816 if (hisidx[type] == -1) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6817 hisidx[type] = hislen - 1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6818 do |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6819 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6820 if (history[type][idx].hisstr != NULL |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6821 || history[type][idx].viminfo) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6822 break; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6823 if (++idx == hislen) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6824 idx = 0; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6825 } while (idx != hisidx[type]); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6826 if (idx != hisidx[type] && --idx < 0) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6827 idx = hislen - 1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6828 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6829 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
|
6830 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6831 vim_free(history[type][idx].hisstr); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6832 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
|
6833 history[type][idx].viminfo = TRUE; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6834 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
|
6835 if (--idx < 0) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6836 idx = hislen - 1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6837 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6838 idx += 1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6839 idx %= hislen; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6840 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
|
6841 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6842 history[type][idx++].hisnum = ++hisnum[type]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6843 idx %= hislen; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6844 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6845 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6846 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6847 #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
|
6848 static int |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6849 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
|
6850 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6851 histentry_T *p1 = *(histentry_T **)s1; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6852 histentry_T *p2 = *(histentry_T **)s2; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6853 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6854 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
|
6855 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
|
6856 return 0; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6857 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6858 #endif |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6859 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6860 /* |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6861 * 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
|
6862 * timestamp; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6863 */ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6864 static void |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6865 merge_history(int type) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6866 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6867 int max_len; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6868 histentry_T **tot_hist; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6869 histentry_T *new_hist; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6870 int i; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6871 int len; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6872 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6873 /* 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
|
6874 max_len = hislen + viminfo_hisidx[type]; |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
6875 tot_hist = ALLOC_MULT(histentry_T *, max_len); |
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16782
diff
changeset
|
6876 new_hist = ALLOC_MULT(histentry_T, hislen ); |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6877 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
|
6878 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6879 vim_free(tot_hist); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6880 vim_free(new_hist); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6881 return; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6882 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6883 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
|
6884 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
|
6885 len = i; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6886 for (i = 0; i < hislen; i++) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6887 if (history[type][i].hisstr != NULL) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6888 tot_hist[len++] = &history[type][i]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6889 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6890 /* Sort the list on timestamp. */ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6891 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
|
6892 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6893 /* Keep the newest ones. */ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6894 for (i = 0; i < hislen; i++) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6895 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6896 if (i < len) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6897 { |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6898 new_hist[i] = *tot_hist[i]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6899 tot_hist[i]->hisstr = NULL; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6900 if (new_hist[i].hisnum == 0) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6901 new_hist[i].hisnum = ++hisnum[type]; |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6902 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6903 else |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6904 clear_hist_entry(&new_hist[i]); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6905 } |
9287
af25a1a875db
commit https://github.com/vim/vim/commit/a890f5e34887bff7616bdb4b9ee0bf98c8d2a8f0
Christian Brabandt <cb@256bit.org>
parents:
9272
diff
changeset
|
6906 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
|
6907 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6908 /* Free what is not kept. */ |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6909 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
|
6910 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
|
6911 for (i = 0; i < hislen; i++) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6912 vim_free(history[type][i].hisstr); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6913 vim_free(history[type]); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6914 history[type] = new_hist; |
9270
79cb08f0d812
commit https://github.com/vim/vim/commit/62f8b4e18014b259bcde4a2845c602b0a44a3714
Christian Brabandt <cb@256bit.org>
parents:
9256
diff
changeset
|
6915 vim_free(tot_hist); |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6916 } |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6917 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6918 /* |
4285 | 6919 * Finish reading history lines from viminfo. Not used when writing viminfo. |
6920 */ | |
7 | 6921 void |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6922 finish_viminfo_history(vir_T *virp) |
7 | 6923 { |
6924 int type; | |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6925 int merge = virp->vir_version >= VIMINFO_VERSION_WITH_HISTORY; |
7 | 6926 |
6927 for (type = 0; type < HIST_COUNT; ++type) | |
6928 { | |
6929 if (history[type] == NULL) | |
4283 | 6930 continue; |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6931 |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6932 if (merge) |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6933 merge_history(type); |
7 | 6934 else |
9256
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6935 concat_history(type); |
26c7bf23ec1d
commit https://github.com/vim/vim/commit/1fd99c1ca89a3d13bb53aff4a5a8f5ee740713e5
Christian Brabandt <cb@256bit.org>
parents:
9240
diff
changeset
|
6936 |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
6937 VIM_CLEAR(viminfo_history[type]); |
4327 | 6938 viminfo_hisidx[type] = 0; |
7 | 6939 } |
6940 } | |
6941 | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6942 /* |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6943 * Write history to viminfo file in "fp". |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6944 * 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
|
6945 * file, data is in viminfo_history[]. |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6946 * 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
|
6947 */ |
7 | 6948 void |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6949 write_viminfo_history(FILE *fp, int merge) |
7 | 6950 { |
6951 int i; | |
6952 int type; | |
6953 int num_saved; | |
4283 | 6954 int round; |
7 | 6955 |
6956 init_history(); | |
6957 if (hislen == 0) | |
6958 return; | |
6959 for (type = 0; type < HIST_COUNT; ++type) | |
6960 { | |
6961 num_saved = get_viminfo_parameter(hist_type2char(type, FALSE)); | |
6962 if (num_saved == 0) | |
6963 continue; | |
6964 if (num_saved < 0) /* Use default */ | |
6965 num_saved = hislen; | |
6966 fprintf(fp, _("\n# %s History (newest to oldest):\n"), | |
6967 type == HIST_CMD ? _("Command Line") : | |
6968 type == HIST_SEARCH ? _("Search String") : | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6969 type == HIST_EXPR ? _("Expression") : |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6970 type == HIST_INPUT ? _("Input Line") : |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6971 _("Debug Line")); |
7 | 6972 if (num_saved > hislen) |
6973 num_saved = hislen; | |
4283 | 6974 |
6975 /* | |
6976 * Merge typed and viminfo history: | |
6977 * round 1: history of typed commands. | |
6978 * round 2: history from recently read viminfo. | |
6979 */ | |
6980 for (round = 1; round <= 2; ++round) | |
6981 { | |
4307 | 6982 if (round == 1) |
6983 /* start at newest entry, somewhere in the list */ | |
6984 i = hisidx[type]; | |
6985 else if (viminfo_hisidx[type] > 0) | |
6986 /* start at newest entry, first in the list */ | |
6987 i = 0; | |
6988 else | |
6989 /* empty list */ | |
6990 i = -1; | |
4283 | 6991 if (i >= 0) |
6992 while (num_saved > 0 | |
6993 && !(round == 2 && i >= viminfo_hisidx[type])) | |
7 | 6994 { |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6995 char_u *p; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6996 time_t timestamp; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6997 int c = NUL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6998 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
6999 if (round == 1) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7000 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7001 p = history[type][i].hisstr; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7002 timestamp = history[type][i].time_set; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7003 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7004 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7005 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7006 p = viminfo_history[type] == NULL ? NULL |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7007 : viminfo_history[type][i].hisstr; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7008 timestamp = viminfo_history[type] == NULL ? 0 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7009 : viminfo_history[type][i].time_set; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7010 } |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7011 |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
7012 if (p != NULL && (round == 2 |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
7013 || !merge |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
7014 || !history[type][i].viminfo)) |
7 | 7015 { |
4283 | 7016 --num_saved; |
7017 fputc(hist_type2char(type, TRUE), fp); | |
7018 /* For the search history: put the separator in the | |
7019 * second column; use a space if there isn't one. */ | |
7020 if (type == HIST_SEARCH) | |
7021 { | |
7022 c = p[STRLEN(p) + 1]; | |
7023 putc(c == NUL ? ' ' : c, fp); | |
7024 } | |
7025 viminfo_writestring(fp, p); | |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7026 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7027 { |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7028 char cbuf[NUMBUFLEN]; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7029 |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7030 /* 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
|
7031 * |{bartype},{histtype},{timestamp},{separator},"text" */ |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7032 if (c == NUL) |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7033 cbuf[0] = NUL; |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7034 else |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7035 sprintf(cbuf, "%d", c); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7036 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
|
7037 type, (long)timestamp, cbuf); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7038 barline_writestring(fp, p, LSIZE - 20); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7039 putc('\n', fp); |
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7040 } |
7 | 7041 } |
4283 | 7042 if (round == 1) |
7043 { | |
7044 /* Decrement index, loop around and stop when back at | |
7045 * the start. */ | |
7046 if (--i < 0) | |
7047 i = hislen - 1; | |
7048 if (i == hisidx[type]) | |
7049 break; | |
7050 } | |
7051 else | |
7052 { | |
7053 /* Increment index. Stop at the end in the while. */ | |
7054 ++i; | |
7055 } | |
7 | 7056 } |
4283 | 7057 } |
4285 | 7058 for (i = 0; i < viminfo_hisidx[type]; ++i) |
4327 | 7059 if (viminfo_history[type] != NULL) |
9240
636cfa97200e
commit https://github.com/vim/vim/commit/45d2eeaad66939348893b9254171067b0457cd9d
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
7060 vim_free(viminfo_history[type][i].hisstr); |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
7061 VIM_CLEAR(viminfo_history[type]); |
4311 | 7062 viminfo_hisidx[type] = 0; |
7 | 7063 } |
7064 } | |
7065 #endif /* FEAT_VIMINFO */ | |
7066 | |
7067 #if defined(FEAT_CMDWIN) || defined(PROTO) | |
7068 /* | |
7069 * Open a window on the current command line and history. Allow editing in | |
7070 * the window. Returns when the window is closed. | |
7071 * Returns: | |
7072 * CR if the command is to be executed | |
7073 * Ctrl_C if it is to be abandoned | |
7074 * K_IGNORE if editing continues | |
7075 */ | |
7076 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
|
7077 open_cmdwin(void) |
7 | 7078 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7079 bufref_T old_curbuf; |
7 | 7080 win_T *old_curwin = curwin; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7081 bufref_T bufref; |
7 | 7082 win_T *wp; |
7083 int i; | |
7084 linenr_T lnum; | |
7085 int histtype; | |
7086 garray_T winsizes; | |
7087 int save_restart_edit = restart_edit; | |
7088 int save_State = State; | |
7089 int save_exmode = exmode_active; | |
510 | 7090 #ifdef FEAT_RIGHTLEFT |
7091 int save_cmdmsg_rl = cmdmsg_rl; | |
7092 #endif | |
6145 | 7093 #ifdef FEAT_FOLDING |
7094 int save_KeyTyped; | |
7095 #endif | |
7 | 7096 |
7097 /* Can't do this recursively. Can't do it when typing a password. */ | |
7098 if (cmdwin_type != 0 | |
7099 # if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
7100 || cmdline_star > 0 | |
7101 # endif | |
7102 ) | |
7103 { | |
7104 beep_flush(); | |
7105 return K_IGNORE; | |
7106 } | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7107 set_bufref(&old_curbuf, curbuf); |
7 | 7108 |
7109 /* Save current window sizes. */ | |
7110 win_size_save(&winsizes); | |
7111 | |
7112 /* Don't execute autocommands while creating the window. */ | |
1410 | 7113 block_autocmds(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
7114 |
15575
6effd97a0429
patch 8.1.0795: cannot build without popup menu
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
7115 #if defined(FEAT_INS_EXPAND) |
15569
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
7116 // When using completion in Insert mode with <C-R>=<C-F> one can open the |
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
7117 // command line window, but we don't want the popup menu then. |
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
7118 pum_undisplay(); |
15575
6effd97a0429
patch 8.1.0795: cannot build without popup menu
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
7119 #endif |
15569
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
7120 |
683 | 7121 /* don't use a new tab page */ |
7122 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
|
7123 cmdmod.noswapfile = 1; |
683 | 7124 |
7 | 7125 /* Create a window for the command-line buffer. */ |
7126 if (win_split((int)p_cwh, WSP_BOT) == FAIL) | |
7127 { | |
7128 beep_flush(); | |
1410 | 7129 unblock_autocmds(); |
7 | 7130 return K_IGNORE; |
7131 } | |
1831 | 7132 cmdwin_type = get_cmdline_type(); |
7 | 7133 |
7134 /* Create the command-line buffer empty. */ | |
1743 | 7135 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL); |
1621 | 7136 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE); |
7 | 7137 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL); |
7138 curbuf->b_p_ma = TRUE; | |
1865 | 7139 #ifdef FEAT_FOLDING |
7140 curwin->w_p_fen = FALSE; | |
7141 #endif | |
7 | 7142 # ifdef FEAT_RIGHTLEFT |
510 | 7143 curwin->w_p_rl = cmdmsg_rl; |
7144 cmdmsg_rl = FALSE; | |
7 | 7145 # endif |
2583 | 7146 RESET_BINDING(curwin); |
7 | 7147 |
7148 /* Do execute autocommands for setting the filetype (load syntax). */ | |
1410 | 7149 unblock_autocmds(); |
11589
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
7150 /* 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
|
7151 ++curbuf_lock; |
7 | 7152 |
510 | 7153 /* Showing the prompt may have set need_wait_return, reset it. */ |
7154 need_wait_return = FALSE; | |
7155 | |
1831 | 7156 histtype = hist_char2type(cmdwin_type); |
7 | 7157 if (histtype == HIST_CMD || histtype == HIST_DEBUG) |
7158 { | |
7159 if (p_wc == TAB) | |
7160 { | |
7161 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT); | |
7162 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL); | |
7163 } | |
7164 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL); | |
7165 } | |
11589
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
7166 --curbuf_lock; |
7 | 7167 |
10 | 7168 /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin |
7169 * sets 'textwidth' to 78). */ | |
7170 curbuf->b_p_tw = 0; | |
7171 | |
7 | 7172 /* Fill the buffer with the history. */ |
7173 init_history(); | |
7174 if (hislen > 0) | |
7175 { | |
7176 i = hisidx[histtype]; | |
7177 if (i >= 0) | |
7178 { | |
7179 lnum = 0; | |
7180 do | |
7181 { | |
7182 if (++i == hislen) | |
7183 i = 0; | |
7184 if (history[histtype][i].hisstr != NULL) | |
7185 ml_append(lnum++, history[histtype][i].hisstr, | |
7186 (colnr_T)0, FALSE); | |
7187 } | |
7188 while (i != hisidx[histtype]); | |
7189 } | |
7190 } | |
7191 | |
7192 /* Replace the empty last line with the current command-line and put the | |
7193 * cursor there. */ | |
7194 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE); | |
7195 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
7196 curwin->w_cursor.col = ccline.cmdpos; | |
510 | 7197 changed_line_abv_curs(); |
7198 invalidate_botline(); | |
743 | 7199 redraw_later(SOME_VALID); |
7 | 7200 |
7201 /* No Ex mode here! */ | |
7202 exmode_active = 0; | |
7203 | |
7204 State = NORMAL; | |
7205 # ifdef FEAT_MOUSE | |
7206 setmouse(); | |
7207 # endif | |
7208 | |
7209 /* 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
|
7210 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER); |
929 | 7211 if (restart_edit != 0) /* autocmd with ":startinsert" */ |
7212 stuffcharReadbuff(K_NOP); | |
7 | 7213 |
7214 i = RedrawingDisabled; | |
7215 RedrawingDisabled = 0; | |
7216 | |
7217 /* | |
7218 * Call the main loop until <CR> or CTRL-C is typed. | |
7219 */ | |
7220 cmdwin_result = 0; | |
168 | 7221 main_loop(TRUE, FALSE); |
7 | 7222 |
7223 RedrawingDisabled = i; | |
7224 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
7225 # ifdef FEAT_FOLDING |
6145 | 7226 save_KeyTyped = KeyTyped; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
7227 # endif |
6145 | 7228 |
7 | 7229 /* 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
|
7230 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE); |
6145 | 7231 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
7232 # ifdef FEAT_FOLDING |
6145 | 7233 /* Restore KeyTyped in case it is modified by autocommands */ |
7234 KeyTyped = save_KeyTyped; | |
7 | 7235 # endif |
7236 | |
7237 cmdwin_type = 0; | |
7238 exmode_active = save_exmode; | |
7239 | |
1612 | 7240 /* Safety check: The old window or buffer was deleted: It's a bug when |
7 | 7241 * this happens! */ |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7242 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf)) |
7 | 7243 { |
7244 cmdwin_result = Ctrl_C; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
7245 emsg(_("E199: Active window or buffer deleted")); |
7 | 7246 } |
7247 else | |
7248 { | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
7249 # if defined(FEAT_EVAL) |
7 | 7250 /* autocmds may abort script processing */ |
7251 if (aborting() && cmdwin_result != K_IGNORE) | |
7252 cmdwin_result = Ctrl_C; | |
7253 # endif | |
7254 /* Set the new command line from the cmdline buffer. */ | |
7255 vim_free(ccline.cmdbuff); | |
510 | 7256 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */ |
7 | 7257 { |
510 | 7258 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!"; |
7259 | |
7260 if (histtype == HIST_CMD) | |
7261 { | |
7262 /* Execute the command directly. */ | |
7263 ccline.cmdbuff = vim_strsave((char_u *)p); | |
7264 cmdwin_result = CAR; | |
7265 } | |
7266 else | |
7267 { | |
7268 /* First need to cancel what we were doing. */ | |
7269 ccline.cmdbuff = NULL; | |
7270 stuffcharReadbuff(':'); | |
7271 stuffReadbuff((char_u *)p); | |
7272 stuffcharReadbuff(CAR); | |
7273 } | |
7 | 7274 } |
7275 else if (cmdwin_result == K_XF2) /* :qa typed */ | |
7276 { | |
7277 ccline.cmdbuff = vim_strsave((char_u *)"qa"); | |
7278 cmdwin_result = CAR; | |
7279 } | |
2839 | 7280 else if (cmdwin_result == Ctrl_C) |
7281 { | |
7282 /* :q or :close, don't execute any command | |
7283 * and don't modify the cmd window. */ | |
7284 ccline.cmdbuff = NULL; | |
7285 } | |
7 | 7286 else |
7287 ccline.cmdbuff = vim_strsave(ml_get_curline()); | |
7288 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
|
7289 { |
aa426eb9589d
patch 8.0.0706: crash when cancelling the cmdline window in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11619
diff
changeset
|
7290 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
|
7291 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
|
7292 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
|
7293 ccline.cmdpos = 0; |
7 | 7294 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
|
7295 } |
7 | 7296 else |
7297 { | |
7298 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); | |
7299 ccline.cmdbufflen = ccline.cmdlen + 1; | |
7300 ccline.cmdpos = curwin->w_cursor.col; | |
7301 if (ccline.cmdpos > ccline.cmdlen) | |
7302 ccline.cmdpos = ccline.cmdlen; | |
7303 if (cmdwin_result == K_IGNORE) | |
7304 { | |
7305 set_cmdspos_cursor(); | |
7306 redrawcmd(); | |
7307 } | |
7308 } | |
7309 | |
7310 /* Don't execute autocommands while deleting the window. */ | |
1410 | 7311 block_autocmds(); |
6876 | 7312 # ifdef FEAT_CONCEAL |
7313 /* Avoid command-line window first character being concealed. */ | |
7314 curwin->w_p_cole = 0; | |
7315 # endif | |
7 | 7316 wp = curwin; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7317 set_bufref(&bufref, curbuf); |
7 | 7318 win_goto(old_curwin); |
7319 win_close(wp, TRUE); | |
2099
c1f67ce5740a
updated for version 7.2.382
Bram Moolenaar <bram@zimbu.org>
parents:
2097
diff
changeset
|
7320 |
c1f67ce5740a
updated for version 7.2.382
Bram Moolenaar <bram@zimbu.org>
parents:
2097
diff
changeset
|
7321 /* 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
|
7322 * set to 'wipe' */ |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7323 if (bufref_valid(&bufref)) |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
7324 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE); |
7 | 7325 |
7326 /* Restore window sizes. */ | |
7327 win_size_restore(&winsizes); | |
7328 | |
1410 | 7329 unblock_autocmds(); |
7 | 7330 } |
7331 | |
7332 ga_clear(&winsizes); | |
7333 restart_edit = save_restart_edit; | |
510 | 7334 # ifdef FEAT_RIGHTLEFT |
7335 cmdmsg_rl = save_cmdmsg_rl; | |
7336 # endif | |
7 | 7337 |
7338 State = save_State; | |
7339 # ifdef FEAT_MOUSE | |
7340 setmouse(); | |
7341 # endif | |
7342 | |
7343 return cmdwin_result; | |
7344 } | |
7345 #endif /* FEAT_CMDWIN */ | |
7346 | |
7347 /* | |
7348 * Used for commands that either take a simple command string argument, or: | |
7349 * cmd << endmarker | |
7350 * {script} | |
7351 * endmarker | |
7352 * Returns a pointer to allocated memory with {script} or NULL. | |
7353 */ | |
7354 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7355 script_get(exarg_T *eap, char_u *cmd) |
7 | 7356 { |
7357 char_u *theline; | |
7358 char *end_pattern = NULL; | |
7359 char dot[] = "."; | |
7360 garray_T ga; | |
7361 | |
7362 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL) | |
7363 return NULL; | |
7364 | |
7365 ga_init2(&ga, 1, 0x400); | |
7366 | |
7367 if (cmd[2] != NUL) | |
7368 end_pattern = (char *)skipwhite(cmd + 2); | |
7369 else | |
7370 end_pattern = dot; | |
7371 | |
7372 for (;;) | |
7373 { | |
7374 theline = eap->getline( | |
7375 #ifdef FEAT_EVAL | |
75 | 7376 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 7377 #endif |
7378 NUL, eap->cookie, 0); | |
7379 | |
7380 if (theline == NULL || STRCMP(end_pattern, theline) == 0) | |
1694 | 7381 { |
7382 vim_free(theline); | |
7 | 7383 break; |
1694 | 7384 } |
7 | 7385 |
7386 ga_concat(&ga, theline); | |
7387 ga_append(&ga, '\n'); | |
7388 vim_free(theline); | |
7389 } | |
21 | 7390 ga_append(&ga, NUL); |
7 | 7391 |
7392 return (char_u *)ga.ga_data; | |
7393 } |