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