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