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