Mercurial > vim
annotate src/ex_getln.c @ 23638:062caef90f7f v8.2.2361
patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Commit: https://github.com/vim/vim/commit/7c886db915035bc064ca307f02c34ae9d99cc733
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 16 14:34:45 2021 +0100
patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Problem: Vim9: no highlight for "s///gc" when using 'opfunc'.
Solution: Reset 'lazyredraw' temporarily. (closes https://github.com/vim/vim/issues/7687)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 16 Jan 2021 14:45:04 +0100 |
parents | bb29b09902d5 |
children | fc031340f8f9 |
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 |
22145
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
20 // Return value when handling keys in command-line mode. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
21 #define CMDLINE_NOT_CHANGED 1 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
22 #define CMDLINE_CHANGED 2 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
23 #define GOTO_NORMAL_MODE 3 |
22169
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
24 #define PROCESS_NEXT_KEY 4 |
22145
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
25 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
26 // 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
|
27 // 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
|
28 // to be saved with save_cmdline() and restored with restore_cmdline(). |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
29 static cmdline_info_T ccline; |
7 | 30 |
31 #ifdef FEAT_EVAL | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
32 static int new_cmdpos; // position set by set_cmdline_pos() |
7 | 33 #endif |
34 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
35 static int extra_char = NUL; // extra character to display when redrawing |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
36 // 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
|
37 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
|
38 |
7 | 39 #ifdef FEAT_RIGHTLEFT |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
40 static int cmd_hkmap = 0; // Hebrew mapping during command line |
7 | 41 #endif |
42 | |
22169
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
43 static char_u *getcmdline_int(int firstc, long count, int indent, int clear_ccline); |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
44 static int cmdline_charsize(int idx); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
45 static void set_cmdspos(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
46 static void set_cmdspos_cursor(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
47 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
|
48 static void alloc_cmdbuff(int len); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
49 static void draw_cmdline(int start, int len); |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
50 static void save_cmdline(cmdline_info_T *ccp); |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
51 static void restore_cmdline(cmdline_info_T *ccp); |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
52 static int cmdline_paste(int regname, int literally, int remcr); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
53 static void redrawcmdprompt(void); |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
54 static int ccheck_abbr(int); |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
55 #ifdef FEAT_SEARCH_EXTRA |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
56 static int empty_pattern_magic(char_u *pat, size_t len, magic_T magic_val); |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
57 #endif |
7 | 58 |
59 #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
|
60 static int open_cmdwin(void); |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
61 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
62 static int cedit_key INIT(= -1); // key value of 'cedit' option |
7 | 63 #endif |
64 | |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
65 |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
66 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
|
67 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
|
68 { |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
69 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
|
70 |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
71 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
|
72 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
|
73 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
|
74 } |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
12529
diff
changeset
|
75 |
7 | 76 /* |
12664
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
77 * 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
|
78 */ |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
79 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
|
80 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
|
81 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
82 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
|
83 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
|
84 compute_cmdrow(); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
85 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
|
86 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
|
87 } |
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
88 |
13047
669c4f75a69e
patch 8.0.1399: warnings and errors when building tiny version
Christian Brabandt <cb@256bit.org>
parents:
13041
diff
changeset
|
89 #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
|
90 /* |
13035
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
91 * 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
|
92 * 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
|
93 */ |
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
94 static int |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
95 empty_pattern(char_u *p, int delim) |
13035
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
96 { |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
97 size_t n = STRLEN(p); |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
98 magic_T magic_val = MAGIC_ON; |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
99 |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
100 if (n > 0) |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
101 (void) skip_regexp_ex(p, delim, magic_isset(), NULL, NULL, &magic_val); |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
102 else |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
103 return TRUE; |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
104 |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
105 return empty_pattern_magic(p, n, magic_val); |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
106 } |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
107 |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
108 static int |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
109 empty_pattern_magic(char_u *p, size_t len, magic_T magic_val) |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
110 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
111 // remove trailing \v and the like |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
112 while (len >= 2 && p[len - 2] == '\\' |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
113 && vim_strchr((char_u *)"mMvVcCZ", p[len - 1]) != NULL) |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
114 len -= 2; |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
115 |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
116 // true, if the pattern is empty, or the pattern ends with \| and magic is |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
117 // set (or it ends with '|' and very magic is set) |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
118 return len == 0 || (len > 1 |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
119 && ((p[len - 2] == '\\' |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
120 && p[len - 1] == '|' && magic_val == MAGIC_ON) |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
121 || (p[len - 2] != '\\' |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
122 && p[len - 1] == '|' && magic_val == MAGIC_ALL))); |
13035
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
123 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
124 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
125 // 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
|
126 typedef struct { |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
127 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
|
128 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
|
129 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
|
130 # ifdef FEAT_DIFF |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
131 int vs_topfill; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
132 # endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
133 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
|
134 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
|
135 } viewstate_T; |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
136 |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
137 static void |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
138 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
|
139 { |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
140 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
|
141 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
|
142 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
|
143 # ifdef FEAT_DIFF |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
144 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
|
145 # endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
146 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
|
147 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
|
148 } |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
149 |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
150 static void |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
151 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
|
152 { |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
153 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
|
154 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
|
155 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
|
156 # ifdef FEAT_DIFF |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
157 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
|
158 # endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
159 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
|
160 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
|
161 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
162 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
163 // 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
|
164 typedef struct { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
165 pos_T search_start; // where 'incsearch' starts searching |
18227
7d90fa3e5f8d
patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents:
18139
diff
changeset
|
166 pos_T save_cursor; |
22872
5a7db84713dc
patch 8.2.1983: ml_get error when using <Cmd> to open a terminal
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
167 int winid; // window where this state is valid |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
168 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
|
169 viewstate_T old_viewstate; |
18227
7d90fa3e5f8d
patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents:
18139
diff
changeset
|
170 pos_T match_start; |
7d90fa3e5f8d
patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents:
18139
diff
changeset
|
171 pos_T match_end; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
172 int did_incsearch; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
173 int incsearch_postponed; |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
174 optmagic_T magic_overruled_save; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
175 } incsearch_state_T; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
176 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
177 static void |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
178 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
|
179 { |
22872
5a7db84713dc
patch 8.2.1983: ml_get error when using <Cmd> to open a terminal
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
180 is_state->winid = curwin->w_id; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
181 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
|
182 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
|
183 is_state->incsearch_postponed = FALSE; |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
23076
diff
changeset
|
184 is_state->magic_overruled_save = magic_overruled; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
185 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
|
186 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
|
187 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
|
188 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
|
189 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
|
190 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
191 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
192 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
193 * 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
|
194 * 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
|
195 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
196 static void |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
197 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
|
198 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
199 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
|
200 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
|
201 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
|
202 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
203 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
|
204 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
|
205 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
206 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
207 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
208 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
209 * 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
|
210 * 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
|
211 * 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
|
212 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
213 static int |
22260
d7c1e3efa88e
patch 8.2.1679: Vim9: ":*" is not recognized as a range
Bram Moolenaar <Bram@vim.org>
parents:
22169
diff
changeset
|
214 do_incsearch_highlighting( |
d7c1e3efa88e
patch 8.2.1679: Vim9: ":*" is not recognized as a range
Bram Moolenaar <Bram@vim.org>
parents:
22169
diff
changeset
|
215 int firstc, |
d7c1e3efa88e
patch 8.2.1679: Vim9: ":*" is not recognized as a range
Bram Moolenaar <Bram@vim.org>
parents:
22169
diff
changeset
|
216 int *search_delim, |
d7c1e3efa88e
patch 8.2.1679: Vim9: ":*" is not recognized as a range
Bram Moolenaar <Bram@vim.org>
parents:
22169
diff
changeset
|
217 incsearch_state_T *is_state, |
d7c1e3efa88e
patch 8.2.1679: Vim9: ":*" is not recognized as a range
Bram Moolenaar <Bram@vim.org>
parents:
22169
diff
changeset
|
218 int *skiplen, |
d7c1e3efa88e
patch 8.2.1679: Vim9: ":*" is not recognized as a range
Bram Moolenaar <Bram@vim.org>
parents:
22169
diff
changeset
|
219 int *patlen) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
220 { |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
221 char_u *cmd; |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22260
diff
changeset
|
222 cmdmod_T dummy_cmdmod; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
223 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
|
224 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
|
225 int delim; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
226 char_u *end; |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
227 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
|
228 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
|
229 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
|
230 int use_last_pat; |
18693
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
231 int retval = FALSE; |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
232 magic_T magic = 0; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
233 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
234 *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
|
235 *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
|
236 |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
237 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
|
238 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
239 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
240 // 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
|
241 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
|
242 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
|
243 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
244 if (firstc == '/' || firstc == '?') |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
245 { |
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
246 *search_delim = firstc; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
247 return TRUE; |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
248 } |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
249 if (firstc != ':') |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
250 return FALSE; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
251 |
18693
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
252 ++emsg_off; |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
253 CLEAR_FIELD(ea); |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
254 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
|
255 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
|
256 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
|
257 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
|
258 |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22260
diff
changeset
|
259 CLEAR_FIELD(dummy_cmdmod); |
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22260
diff
changeset
|
260 parse_command_modifiers(&ea, &dummy, &dummy_cmdmod, TRUE); |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
261 |
22260
d7c1e3efa88e
patch 8.2.1679: Vim9: ":*" is not recognized as a range
Bram Moolenaar <Bram@vim.org>
parents:
22169
diff
changeset
|
262 cmd = skip_range(ea.cmd, TRUE, NULL); |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
263 if (vim_strchr((char_u *)"sgvl", *cmd) == NULL) |
18693
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
264 goto theend; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
265 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
266 // 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
|
267 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
|
268 ; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
269 if (*skipwhite(p) == NUL) |
18693
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
270 goto theend; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
271 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
272 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
|
273 || 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
|
274 || 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
|
275 || 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
|
276 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
277 if (*cmd == 's' && cmd[1] == 'm') |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
278 magic_overruled = OPTION_MAGIC_ON; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
279 else if (*cmd == 's' && cmd[1] == 'n') |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
280 magic_overruled = OPTION_MAGIC_OFF; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
281 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
282 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
|
283 { |
20164
2dd1ac2c48f4
patch 8.2.0637: incsearch highlighting does not work for ":sort!"
Bram Moolenaar <Bram@vim.org>
parents:
20118
diff
changeset
|
284 // skip over ! and flags |
2dd1ac2c48f4
patch 8.2.0637: incsearch highlighting does not work for ":sort!"
Bram Moolenaar <Bram@vim.org>
parents:
20118
diff
changeset
|
285 if (*p == '!') |
2dd1ac2c48f4
patch 8.2.0637: incsearch highlighting does not work for ":sort!"
Bram Moolenaar <Bram@vim.org>
parents:
20118
diff
changeset
|
286 p = skipwhite(p + 1); |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
287 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
|
288 ++p; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
289 if (*p == NUL) |
18693
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
290 goto theend; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
291 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
292 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
|
293 || 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
|
294 || 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
|
295 || 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
|
296 || 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
|
297 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
298 // skip over "!" |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
299 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
|
300 { |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
301 p++; |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
302 if (*skipwhite(p) == NUL) |
18693
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
303 goto theend; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
304 } |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
305 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
|
306 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
|
307 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
308 else |
18693
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
309 goto theend; |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
310 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
311 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
|
312 delim = (delim_optional && vim_isIDc(*p)) ? ' ' : *p++; |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
313 *search_delim = delim; |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
314 end = skip_regexp_ex(p, delim, magic_isset(), NULL, NULL, &magic); |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
315 |
14613
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
316 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
|
317 |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
318 if (end == p && !use_last_pat) |
18693
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
319 goto theend; |
14613
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
320 |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
321 // 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
|
322 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
|
323 { |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
324 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
|
325 int empty; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
326 |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
327 *end = NUL; |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
328 empty = empty_pattern_magic(p, STRLEN(p), magic); |
14613
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
329 *end = c; |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
330 if (empty) |
18693
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
331 goto theend; |
14613
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
332 } |
3f9b73cc8adb
patch 8.1.0320: too much 'incsearch' highlight for pat matching everything
Christian Brabandt <cb@256bit.org>
parents:
14565
diff
changeset
|
333 |
14565
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
334 // 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
|
335 *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
|
336 *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
|
337 |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
338 // 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
|
339 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
|
340 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
|
341 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
|
342 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
|
343 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
344 // 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
|
345 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
|
346 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
347 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
|
348 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
|
349 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
350 else |
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 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
|
353 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
|
354 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
355 } |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
356 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
|
357 { |
5e038972cafa
patch 8.1.0296: command parsing for 'incsearch' is a bit ugly
Christian Brabandt <cb@256bit.org>
parents:
14563
diff
changeset
|
358 // :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
|
359 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
|
360 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
|
361 } |
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 curwin->w_cursor = save_cursor; |
18693
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
364 retval = TRUE; |
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
365 theend: |
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
366 --emsg_off; |
d7c47e45bcc3
patch 8.1.2338: using Visual mark sith :s gives E20 if not set
Bram Moolenaar <Bram@vim.org>
parents:
18679
diff
changeset
|
367 return retval; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
368 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
369 |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
370 static void |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
371 finish_incsearch_highlighting( |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
372 int gotesc, |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
373 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
|
374 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
|
375 { |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
376 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
|
377 { |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
378 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
|
379 if (gotesc) |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
380 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
|
381 else |
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 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
|
384 { |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
385 // 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
|
386 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
|
387 setpcmark(); |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
388 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
389 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
|
390 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
391 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
|
392 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
|
393 |
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
394 // 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
|
395 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
|
396 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
|
397 |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
23076
diff
changeset
|
398 magic_overruled = is_state->magic_overruled_save; |
14652
f3b183c3d3e2
patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s
Christian Brabandt <cb@256bit.org>
parents:
14615
diff
changeset
|
399 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
400 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
|
401 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
|
402 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
|
403 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
|
404 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
405 } |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
406 |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
407 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
408 * 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
|
409 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
410 static void |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
411 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
|
412 int firstc, |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
413 long count, |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
414 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
|
415 { |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
416 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
|
417 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
|
418 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
|
419 #ifdef FEAT_RELTIME |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
420 proftime_T tm; |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
421 searchit_arg_T sia; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
422 #endif |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
423 int next_char; |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
424 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
|
425 int did_do_incsearch = is_state->did_incsearch; |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
426 int search_delim; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
427 |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
428 // 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
|
429 // 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
|
430 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
|
431 |
22061
d6120c97f57c
patch 8.2.1580: wildmenu does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
21883
diff
changeset
|
432 if (!do_incsearch_highlighting(firstc, &search_delim, is_state, |
d6120c97f57c
patch 8.2.1580: wildmenu does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
21883
diff
changeset
|
433 &skiplen, &patlen)) |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
434 { |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
435 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
|
436 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
|
437 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
|
438 // 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
|
439 redrawcmd(); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
440 return; |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
441 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
442 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
443 // 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
|
444 if (char_avail()) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
445 { |
14677
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
446 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
|
447 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
|
448 return; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
449 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
450 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
|
451 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
452 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
|
453 // 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
|
454 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
|
455 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
|
456 { |
676db1b7fc35
patch 8.1.0499: :2vimgrep causes an ml_get error
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
457 // 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
|
458 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
|
459 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
|
460 } |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
461 else |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
462 { |
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
463 // 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
|
464 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
|
465 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
|
466 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
467 |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
468 // 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
|
469 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
|
470 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
|
471 && 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
|
472 |
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
473 // 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
|
474 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
|
475 { |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
476 found = 0; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
477 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
|
478 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
|
479 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
480 else |
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 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
|
483 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
484 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
|
485 out_flush(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
486 ++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
|
487 #ifdef FEAT_RELTIME |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
488 // 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
|
489 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
|
490 #endif |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
491 if (!p_hls) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
492 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
|
493 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
|
494 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
|
495 ccline.cmdbuff[skiplen + patlen] = NUL; |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
496 #ifdef FEAT_RELTIME |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
497 CLEAR_FIELD(sia); |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
498 sia.sa_tm = &tm; |
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
499 #endif |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
500 found = do_search(NULL, firstc == ':' ? '/' : firstc, search_delim, |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
501 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
|
502 #ifdef FEAT_RELTIME |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
503 &sia |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
504 #else |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
505 NULL |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
506 #endif |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
507 ); |
14528
58ca11610819
patch 8.1.0277: 'incsearch' highlighting wrong in a few cases
Christian Brabandt <cb@256bit.org>
parents:
14524
diff
changeset
|
508 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
|
509 --emsg_off; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
510 |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
511 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
|
512 || 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
|
513 { |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
514 // 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
|
515 found = 0; |
14542
116a01c73fd8
patch 8.1.0284: 'cursorline' highlighting wrong with 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14538
diff
changeset
|
516 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
|
517 } |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
518 |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
519 // 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
|
520 if (got_int) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
521 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
522 (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
|
523 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
|
524 found = 0; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
525 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
526 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
|
527 // 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
|
528 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
|
529 } |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
530 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
|
531 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
|
532 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
533 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
|
534 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
535 // 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
|
536 // 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
|
537 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
|
538 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
|
539 update_topline(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
540 |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
541 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
|
542 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
543 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
|
544 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
545 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
|
546 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
|
547 validate_cursor(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
548 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
|
549 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
|
550 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
|
551 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
552 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
553 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
|
554 |
14615
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
555 // 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
|
556 // Avoids a flash when typing "foo\|". |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
557 if (!use_last_pat) |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
558 { |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
559 next_char = ccline.cmdbuff[skiplen + patlen]; |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
560 ccline.cmdbuff[skiplen + patlen] = NUL; |
23505
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
561 if (empty_pattern(ccline.cmdbuff + skiplen, search_delim) |
bb29b09902d5
patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
562 && !no_hlsearch) |
14774
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
563 { |
5e5f2d824189
patch 8.1.0399: 'hlsearch' highlight remains in other window
Christian Brabandt <cb@256bit.org>
parents:
14760
diff
changeset
|
564 redraw_all_later(SOME_VALID); |
14615
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
565 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
|
566 } |
14615
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
567 ccline.cmdbuff[skiplen + patlen] = next_char; |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
568 } |
c6b41d47bac1
patch 8.1.0321: 'incsearch' regression: / highlights everything
Christian Brabandt <cb@256bit.org>
parents:
14613
diff
changeset
|
569 |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
570 validate_cursor(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
571 // 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
|
572 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
|
573 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
|
574 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
575 update_screen(SOME_VALID); |
18457
71199e360948
patch 8.1.2222: accessing invalid memory
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
576 highlight_match = FALSE; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
577 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
|
578 |
14687
2982a54aa304
patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-W
Christian Brabandt <cb@256bit.org>
parents:
14677
diff
changeset
|
579 // 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
|
580 // 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
|
581 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
|
582 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
|
583 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
|
584 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
|
585 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
586 msg_starthere(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
587 redrawcmdline(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
588 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
|
589 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
590 |
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 * 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
|
593 * or previous match. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
594 * 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
|
595 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
596 static int |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
597 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
|
598 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
|
599 long count, |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
600 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
|
601 int c) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
602 { |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
603 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
|
604 pos_T t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
605 char_u *pat; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
606 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
|
607 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
|
608 int save; |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
609 int search_delim; |
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 |
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 // 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
|
612 // 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
|
613 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
|
614 |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
615 if (!do_incsearch_highlighting(firstc, &search_delim, 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
|
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 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
|
619 } |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
620 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
|
621 { |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
622 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
|
623 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
|
624 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
625 |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
626 if (search_delim == ccline.cmdbuff[skiplen]) |
14520
20866abc790b
patch 8.1.0273: invalid memory access when using 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
14515
diff
changeset
|
627 { |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
628 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
|
629 skiplen = 0; |
14544
2b2d7ae42fb8
patch 8.1.0285: compiler warning for conversion
Christian Brabandt <cb@256bit.org>
parents:
14542
diff
changeset
|
630 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
|
631 } |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
632 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
|
633 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
|
634 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
635 cursor_off(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
636 out_flush(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
637 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
|
638 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
639 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
|
640 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
|
641 // 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
|
642 // the next column. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
643 (void)decl(&t); |
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_COL; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
645 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
646 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
647 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
|
648 if (!p_hls) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
649 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
|
650 ++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
|
651 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
|
652 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
|
653 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
|
654 c == Ctrl_G ? FORWARD : BACKWARD, |
18358
34d5cd432cac
patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
655 pat, count, search_flags, RE_SEARCH, NULL); |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
656 --emsg_off; |
14515
3648e74dd523
patch 8.1.0271: 'incsearch' doesn't work for :s, :g or :v
Christian Brabandt <cb@256bit.org>
parents:
14503
diff
changeset
|
657 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
|
658 if (i) |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
659 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
660 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
|
661 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
|
662 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
|
663 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
|
664 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
665 // 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
|
666 // 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
|
667 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
|
668 (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
|
669 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
670 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
|
671 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
672 // Move just 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
|
673 // finishes the cursor will be put back on the match. |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
674 is_state->search_start = t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
675 (void)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
|
676 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
677 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
|
678 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
679 // wrap around |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
680 is_state->search_start = t; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
681 if (firstc == '?') |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
682 (void)incl(&is_state->search_start); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
683 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
684 (void)decl(&is_state->search_start); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
685 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
686 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
687 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
|
688 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
|
689 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
|
690 update_topline(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
691 validate_cursor(); |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
692 highlight_match = TRUE; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
693 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
|
694 update_screen(NOT_VALID); |
18457
71199e360948
patch 8.1.2222: accessing invalid memory
Bram Moolenaar <Bram@vim.org>
parents:
18358
diff
changeset
|
695 highlight_match = FALSE; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
696 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
|
697 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
|
698 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
699 else |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
700 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
|
701 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
|
702 return FAIL; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
703 } |
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 /* |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
706 * 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
|
707 * 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
|
708 * 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
|
709 */ |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
710 static int |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
711 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
|
712 { |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
713 int skiplen, patlen, search_delim; |
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 |
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 // 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
|
716 // 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
|
717 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
|
718 |
20717
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
719 if (!do_incsearch_highlighting(firstc, &search_delim, is_state, |
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
720 &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
|
721 { |
7771a1ff8b99
patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search pattern
Christian Brabandt <cb@256bit.org>
parents:
14652
diff
changeset
|
722 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
|
723 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
|
724 } |
15083
70aa5caa9f0d
patch 8.1.0552: saved last search pattern may not be restored
Bram Moolenaar <Bram@vim.org>
parents:
15064
diff
changeset
|
725 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
|
726 |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
727 // 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
|
728 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
|
729 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
730 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
|
731 *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
|
732 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
|
733 { |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
734 // 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
|
735 // 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
|
736 // 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
|
737 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
|
738 *c = MB_TOLOWER(*c); |
19475
5512aa74cb62
patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents:
18886
diff
changeset
|
739 if (*c == search_delim || vim_strchr((char_u *)( |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
23076
diff
changeset
|
740 magic_isset() ? "\\~^$.*[" : "\\^$"), *c) != NULL) |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
741 { |
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
|
742 // 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
|
743 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
|
744 *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
|
745 } |
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
|
746 // 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
|
747 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
|
748 { |
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 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
|
750 |
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
751 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
|
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 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
|
754 *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
|
755 stuffcharReadbuff(*c); |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
15083
diff
changeset
|
756 } |
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
|
757 *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
|
758 } |
16287
a6cffc232b9d
patch 8.1.1148: CTRL-L with 'incsearch' does not pick up char under cursor
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
759 return FAIL; |
14503
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
760 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
761 } |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
762 return OK; |
4825955cb706
patch 8.1.0265: the getcmdline() function is way too big
Christian Brabandt <cb@256bit.org>
parents:
14439
diff
changeset
|
763 } |
13794
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
764 #endif |
530a6b894ae2
patch 8.0.1769: repeated saving and restoring viewstate for 'incsearch'
Christian Brabandt <cb@256bit.org>
parents:
13792
diff
changeset
|
765 |
17155
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
766 #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
|
767 /* |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
768 * 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
|
769 * 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
|
770 */ |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
771 static int |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
772 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
|
773 { |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
774 int j; |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
775 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
|
776 int u8c; |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
777 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
|
778 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
|
779 |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
780 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
|
781 return FALSE; |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
782 |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
783 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
|
784 { |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
785 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
|
786 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
|
787 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
|
788 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
|
789 return TRUE; |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
790 } |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
791 return FALSE; |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
792 } |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
793 #endif |
da2bb80cd838
patch 8.1.1577: command line redrawn for +arabic without Arabic characters
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
794 |
14858
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
795 void |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
796 cmdline_init(void) |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
797 { |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
798 CLEAR_FIELD(ccline); |
14858
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
799 } |
49b3bdf774ad
patch 8.1.0441: build failure without command line history
Christian Brabandt <cb@256bit.org>
parents:
14854
diff
changeset
|
800 |
13035
89e191a2a8a7
patch 8.0.1393: too much highlighting with 'hlsearch' and 'incsearch' set
Christian Brabandt <cb@256bit.org>
parents:
12960
diff
changeset
|
801 /* |
22169
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
802 * Handle the backslash key pressed in the command-line mode. CTRL-\ CTRL-N |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
803 * goes to Normal mode, CTRL-\ CTRL-G goes to Insert mode when 'insertmode' is |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
804 * set, CTRL-\ e prompts for an expression. |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
805 */ |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
806 static int |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
807 cmdline_handle_backslash_key(int c, int *gotesc) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
808 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
809 ++no_mapping; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
810 ++allow_keys; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
811 c = plain_vgetc(); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
812 --no_mapping; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
813 --allow_keys; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
814 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
815 // CTRL-\ e doesn't work when obtaining an expression, unless it |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
816 // is in a mapping. |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
817 if (c != Ctrl_N && c != Ctrl_G && (c != 'e' |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
818 || (ccline.cmdfirstc == '=' && KeyTyped) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
819 #ifdef FEAT_EVAL |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
820 || cmdline_star > 0 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
821 #endif |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
822 )) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
823 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
824 vungetc(c); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
825 return PROCESS_NEXT_KEY; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
826 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
827 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
828 #ifdef FEAT_EVAL |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
829 if (c == 'e') |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
830 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
831 char_u *p = NULL; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
832 int len; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
833 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
834 /* |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
835 * Replace the command line with the result of an expression. |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
836 * Need to save and restore the current command line, to be |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
837 * able to enter a new one... |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
838 */ |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
839 if (ccline.cmdpos == ccline.cmdlen) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
840 new_cmdpos = 99999; // keep it at the end |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
841 else |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
842 new_cmdpos = ccline.cmdpos; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
843 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
844 c = get_expr_register(); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
845 if (c == '=') |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
846 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
847 // Need to save and restore ccline. And set "textwinlock" |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
848 // to avoid nasty things like going to another buffer when |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
849 // evaluating an expression. |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
850 ++textwinlock; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
851 p = get_expr_line(); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
852 --textwinlock; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
853 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
854 if (p != NULL) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
855 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
856 len = (int)STRLEN(p); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
857 if (realloc_cmdbuff(len + 1) == OK) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
858 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
859 ccline.cmdlen = len; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
860 STRCPY(ccline.cmdbuff, p); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
861 vim_free(p); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
862 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
863 // Restore the cursor or use the position set with |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
864 // set_cmdline_pos(). |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
865 if (new_cmdpos > ccline.cmdlen) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
866 ccline.cmdpos = ccline.cmdlen; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
867 else |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
868 ccline.cmdpos = new_cmdpos; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
869 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
870 KeyTyped = FALSE; // Don't do p_wc completion. |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
871 redrawcmd(); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
872 return CMDLINE_CHANGED; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
873 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
874 vim_free(p); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
875 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
876 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
877 beep_flush(); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
878 got_int = FALSE; // don't abandon the command line |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
879 did_emsg = FALSE; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
880 emsg_on_display = FALSE; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
881 redrawcmd(); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
882 return CMDLINE_NOT_CHANGED; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
883 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
884 #endif |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
885 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
886 if (c == Ctrl_G && p_im && restart_edit == 0) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
887 restart_edit = 'a'; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
888 *gotesc = TRUE; // will free ccline.cmdbuff after putting it |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
889 // in history |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
890 return GOTO_NORMAL_MODE; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
891 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
892 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
893 /* |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
894 * Completion for 'wildchar' or 'wildcharm' key. |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
895 * - hitting <ESC> twice means: abandon command line. |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
896 * - wildcard expansion is only done when the 'wildchar' key is really |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
897 * typed, not when it comes from a macro |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
898 * Returns CMDLINE_CHANGED if command line is changed or CMDLINE_NOT_CHANGED. |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
899 */ |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
900 static int |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
901 cmdline_wildchar_complete( |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
902 int c, |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
903 int escape, |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
904 int *did_wild_list, |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
905 int *wim_index_p, |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
906 expand_T *xp, |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
907 int *gotesc) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
908 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
909 int wim_index = *wim_index_p; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
910 int res; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
911 int j; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
912 int options = WILD_NO_BEEP; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
913 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
914 if (wim_flags[wim_index] & WIM_BUFLASTUSED) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
915 options |= WILD_BUFLASTUSED; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
916 if (xp->xp_numfiles > 0) // typed p_wc at least twice |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
917 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
918 // if 'wildmode' contains "list" may still need to list |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
919 if (xp->xp_numfiles > 1 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
920 && !*did_wild_list |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
921 && (wim_flags[wim_index] & WIM_LIST)) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
922 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
923 (void)showmatches(xp, FALSE); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
924 redrawcmd(); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
925 *did_wild_list = TRUE; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
926 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
927 if (wim_flags[wim_index] & WIM_LONGEST) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
928 res = nextwild(xp, WILD_LONGEST, options, escape); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
929 else if (wim_flags[wim_index] & WIM_FULL) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
930 res = nextwild(xp, WILD_NEXT, options, escape); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
931 else |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
932 res = OK; // don't insert 'wildchar' now |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
933 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
934 else // typed p_wc first time |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
935 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
936 wim_index = 0; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
937 j = ccline.cmdpos; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
938 // if 'wildmode' first contains "longest", get longest |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
939 // common part |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
940 if (wim_flags[0] & WIM_LONGEST) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
941 res = nextwild(xp, WILD_LONGEST, options, escape); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
942 else |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
943 res = nextwild(xp, WILD_EXPAND_KEEP, options, escape); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
944 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
945 // if interrupted while completing, behave like it failed |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
946 if (got_int) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
947 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
948 (void)vpeekc(); // remove <C-C> from input stream |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
949 got_int = FALSE; // don't abandon the command line |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
950 (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
951 #ifdef FEAT_WILDMENU |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
952 xp->xp_context = EXPAND_NOTHING; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
953 #endif |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
954 *wim_index_p = wim_index; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
955 return CMDLINE_CHANGED; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
956 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
957 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
958 // when more than one match, and 'wildmode' first contains |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
959 // "list", or no change and 'wildmode' contains "longest,list", |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
960 // list all matches |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
961 if (res == OK && xp->xp_numfiles > 1) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
962 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
963 // a "longest" that didn't do anything is skipped (but not |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
964 // "list:longest") |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
965 if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
966 wim_index = 1; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
967 if ((wim_flags[wim_index] & WIM_LIST) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
968 #ifdef FEAT_WILDMENU |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
969 || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
970 #endif |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
971 ) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
972 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
973 if (!(wim_flags[0] & WIM_LONGEST)) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
974 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
975 #ifdef FEAT_WILDMENU |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
976 int p_wmnu_save = p_wmnu; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
977 p_wmnu = 0; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
978 #endif |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
979 // remove match |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
980 nextwild(xp, WILD_PREV, 0, escape); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
981 #ifdef FEAT_WILDMENU |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
982 p_wmnu = p_wmnu_save; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
983 #endif |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
984 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
985 #ifdef FEAT_WILDMENU |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
986 (void)showmatches(xp, p_wmnu |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
987 && ((wim_flags[wim_index] & WIM_LIST) == 0)); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
988 #else |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
989 (void)showmatches(xp, FALSE); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
990 #endif |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
991 redrawcmd(); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
992 *did_wild_list = TRUE; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
993 if (wim_flags[wim_index] & WIM_LONGEST) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
994 nextwild(xp, WILD_LONGEST, options, escape); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
995 else if (wim_flags[wim_index] & WIM_FULL) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
996 nextwild(xp, WILD_NEXT, options, escape); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
997 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
998 else |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
999 vim_beep(BO_WILD); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1000 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1001 #ifdef FEAT_WILDMENU |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1002 else if (xp->xp_numfiles == -1) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1003 xp->xp_context = EXPAND_NOTHING; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1004 #endif |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1005 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1006 if (wim_index < 3) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1007 ++wim_index; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1008 if (c == ESC) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1009 *gotesc = TRUE; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1010 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1011 *wim_index_p = wim_index; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1012 return (res == OK) ? CMDLINE_CHANGED : CMDLINE_NOT_CHANGED; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1013 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1014 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1015 /* |
22145
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1016 * Handle backspace, delete and CTRL-W keys in the command-line mode. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1017 * Returns: |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1018 * CMDLINE_NOT_CHANGED - if the command line is not changed |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1019 * CMDLINE_CHANGED - if the command line is changed |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1020 * GOTO_NORMAL_MODE - go back to normal mode |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1021 */ |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1022 static int |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1023 cmdline_erase_chars( |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1024 int c, |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1025 int indent |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1026 #ifdef FEAT_SEARCH_EXTRA |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1027 , incsearch_state_T *isp |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1028 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1029 ) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1030 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1031 int i; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1032 int j; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1033 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1034 if (c == K_KDEL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1035 c = K_DEL; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1036 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1037 /* |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1038 * Delete current character is the same as backspace on next |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1039 * character, except at end of line. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1040 */ |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1041 if (c == K_DEL && ccline.cmdpos != ccline.cmdlen) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1042 ++ccline.cmdpos; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1043 if (has_mbyte && c == K_DEL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1044 ccline.cmdpos += mb_off_next(ccline.cmdbuff, |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1045 ccline.cmdbuff + ccline.cmdpos); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1046 if (ccline.cmdpos > 0) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1047 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1048 char_u *p; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1049 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1050 j = ccline.cmdpos; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1051 p = ccline.cmdbuff + j; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1052 if (has_mbyte) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1053 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1054 p = mb_prevptr(ccline.cmdbuff, p); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1055 if (c == Ctrl_W) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1056 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1057 while (p > ccline.cmdbuff && vim_isspace(*p)) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1058 p = mb_prevptr(ccline.cmdbuff, p); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1059 i = mb_get_class(p); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1060 while (p > ccline.cmdbuff && mb_get_class(p) == i) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1061 p = mb_prevptr(ccline.cmdbuff, p); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1062 if (mb_get_class(p) != i) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1063 p += (*mb_ptr2len)(p); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1064 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1065 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1066 else if (c == Ctrl_W) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1067 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1068 while (p > ccline.cmdbuff && vim_isspace(p[-1])) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1069 --p; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1070 i = vim_iswordc(p[-1]); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1071 while (p > ccline.cmdbuff && !vim_isspace(p[-1]) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1072 && vim_iswordc(p[-1]) == i) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1073 --p; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1074 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1075 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1076 --p; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1077 ccline.cmdpos = (int)(p - ccline.cmdbuff); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1078 ccline.cmdlen -= j - ccline.cmdpos; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1079 i = ccline.cmdpos; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1080 while (i < ccline.cmdlen) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1081 ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1082 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1083 // Truncate at the end, required for multi-byte chars. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1084 ccline.cmdbuff[ccline.cmdlen] = NUL; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1085 #ifdef FEAT_SEARCH_EXTRA |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1086 if (ccline.cmdlen == 0) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1087 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1088 isp->search_start = isp->save_cursor; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1089 // save view settings, so that the screen |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1090 // won't be restored at the wrong position |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1091 isp->old_viewstate = isp->init_viewstate; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1092 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1093 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1094 redrawcmd(); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1095 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1096 else if (ccline.cmdlen == 0 && c != Ctrl_W |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1097 && ccline.cmdprompt == NULL && indent == 0) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1098 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1099 // In ex and debug mode it doesn't make sense to return. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1100 if (exmode_active |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1101 #ifdef FEAT_EVAL |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1102 || ccline.cmdfirstc == '>' |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1103 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1104 ) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1105 return CMDLINE_NOT_CHANGED; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1106 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1107 VIM_CLEAR(ccline.cmdbuff); // no commandline to return |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1108 if (!cmd_silent) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1109 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1110 #ifdef FEAT_RIGHTLEFT |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1111 if (cmdmsg_rl) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1112 msg_col = Columns; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1113 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1114 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1115 msg_col = 0; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1116 msg_putchar(' '); // delete ':' |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1117 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1118 #ifdef FEAT_SEARCH_EXTRA |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1119 if (ccline.cmdlen == 0) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1120 isp->search_start = isp->save_cursor; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1121 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1122 redraw_cmdline = TRUE; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1123 return GOTO_NORMAL_MODE; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1124 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1125 return CMDLINE_CHANGED; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1126 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1127 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1128 /* |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1129 * Handle the CTRL-^ key in the command-line mode and toggle the use of the |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1130 * language :lmap mappings and/or Input Method. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1131 */ |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1132 static void |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1133 cmdline_toggle_langmap(long *b_im_ptr) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1134 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1135 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE)) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1136 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1137 // ":lmap" mappings exists, toggle use of mappings. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1138 State ^= LANGMAP; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1139 #ifdef HAVE_INPUT_METHOD |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1140 im_set_active(FALSE); // Disable input method |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1141 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1142 if (b_im_ptr != NULL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1143 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1144 if (State & LANGMAP) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1145 *b_im_ptr = B_IMODE_LMAP; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1146 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1147 *b_im_ptr = B_IMODE_NONE; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1148 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1149 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1150 #ifdef HAVE_INPUT_METHOD |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1151 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1152 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1153 // There are no ":lmap" mappings, toggle IM. When |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1154 // 'imdisable' is set don't try getting the status, it's |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1155 // always off. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1156 if ((p_imdisable && b_im_ptr != NULL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1157 ? *b_im_ptr == B_IMODE_IM : im_get_status()) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1158 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1159 im_set_active(FALSE); // Disable input method |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1160 if (b_im_ptr != NULL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1161 *b_im_ptr = B_IMODE_NONE; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1162 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1163 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1164 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1165 im_set_active(TRUE); // Enable input method |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1166 if (b_im_ptr != NULL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1167 *b_im_ptr = B_IMODE_IM; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1168 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1169 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1170 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1171 if (b_im_ptr != NULL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1172 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1173 if (b_im_ptr == &curbuf->b_p_iminsert) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1174 set_iminsert_global(); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1175 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1176 set_imsearch_global(); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1177 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1178 #ifdef CURSOR_SHAPE |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1179 ui_cursor_shape(); // may show different cursor shape |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1180 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1181 #if defined(FEAT_KEYMAP) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1182 // Show/unshow value of 'keymap' in status lines later. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1183 status_redraw_curbuf(); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1184 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1185 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1186 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1187 /* |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1188 * Handle the CTRL-R key in the command-line mode and insert the contents of a |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1189 * numbered or named register. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1190 */ |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1191 static int |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1192 cmdline_insert_reg(int *gotesc UNUSED) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1193 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1194 int i; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1195 int c; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1196 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1197 #ifdef USE_ON_FLY_SCROLL |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1198 dont_scroll = TRUE; // disallow scrolling here |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1199 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1200 putcmdline('"', TRUE); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1201 ++no_mapping; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1202 ++allow_keys; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1203 i = c = plain_vgetc(); // CTRL-R <char> |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1204 if (i == Ctrl_O) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1205 i = Ctrl_R; // CTRL-R CTRL-O == CTRL-R CTRL-R |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1206 if (i == Ctrl_R) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1207 c = plain_vgetc(); // CTRL-R CTRL-R <char> |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1208 extra_char = NUL; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1209 --no_mapping; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1210 --allow_keys; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1211 #ifdef FEAT_EVAL |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1212 /* |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1213 * Insert the result of an expression. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1214 * Need to save the current command line, to be able to enter |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1215 * a new one... |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1216 */ |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1217 new_cmdpos = -1; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1218 if (c == '=') |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1219 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1220 if (ccline.cmdfirstc == '=' // can't do this recursively |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1221 || cmdline_star > 0) // or when typing a password |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1222 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1223 beep_flush(); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1224 c = ESC; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1225 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1226 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1227 c = get_expr_register(); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1228 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1229 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1230 if (c != ESC) // use ESC to cancel inserting register |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1231 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1232 cmdline_paste(c, i == Ctrl_R, FALSE); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1233 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1234 #ifdef FEAT_EVAL |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1235 // When there was a serious error abort getting the |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1236 // command line. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1237 if (aborting()) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1238 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1239 *gotesc = TRUE; // will free ccline.cmdbuff after |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1240 // putting it in history |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1241 return GOTO_NORMAL_MODE; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1242 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1243 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1244 KeyTyped = FALSE; // Don't do p_wc completion. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1245 #ifdef FEAT_EVAL |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1246 if (new_cmdpos >= 0) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1247 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1248 // set_cmdline_pos() was used |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1249 if (new_cmdpos > ccline.cmdlen) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1250 ccline.cmdpos = ccline.cmdlen; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1251 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1252 ccline.cmdpos = new_cmdpos; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1253 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1254 #endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1255 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1256 redrawcmd(); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1257 return CMDLINE_CHANGED; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1258 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1259 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1260 /* |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1261 * Handle the Left and Right mouse clicks in the command-line mode. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1262 */ |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1263 static void |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1264 cmdline_left_right_mouse(int c, int *ignore_drag_release) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1265 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1266 if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1267 *ignore_drag_release = TRUE; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1268 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1269 *ignore_drag_release = FALSE; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1270 # ifdef FEAT_GUI |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1271 // When GUI is active, also move when 'mouse' is empty |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1272 if (!gui.in_use) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1273 # endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1274 if (!mouse_has(MOUSE_COMMAND)) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1275 return; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1276 # ifdef FEAT_CLIPBOARD |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1277 if (mouse_row < cmdline_row && clip_star.available) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1278 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1279 int button, is_click, is_drag; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1280 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1281 /* |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1282 * Handle modeless selection. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1283 */ |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1284 button = get_mouse_button(KEY2TERMCAP1(c), |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1285 &is_click, &is_drag); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1286 if (mouse_model_popup() && button == MOUSE_LEFT |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1287 && (mod_mask & MOD_MASK_SHIFT)) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1288 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1289 // Translate shift-left to right button. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1290 button = MOUSE_RIGHT; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1291 mod_mask &= ~MOD_MASK_SHIFT; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1292 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1293 clip_modeless(button, is_click, is_drag); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1294 return; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1295 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1296 # endif |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1297 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1298 set_cmdspos(); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1299 for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1300 ++ccline.cmdpos) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1301 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1302 int i; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1303 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1304 i = cmdline_charsize(ccline.cmdpos); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1305 if (mouse_row <= cmdline_row + ccline.cmdspos / Columns |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1306 && mouse_col < ccline.cmdspos % Columns + i) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1307 break; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1308 if (has_mbyte) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1309 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1310 // Count ">" for double-wide char that doesn't fit. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1311 correct_cmdspos(ccline.cmdpos, i); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1312 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1313 + ccline.cmdpos) - 1; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1314 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1315 ccline.cmdspos += i; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1316 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1317 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1318 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1319 /* |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1320 * Handle the Up, Down, Page Up, Page down, CTRL-N and CTRL-P key in the |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1321 * command-line mode. The pressed key is in 'c'. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1322 * Returns: |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1323 * CMDLINE_NOT_CHANGED - if the command line is not changed |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1324 * CMDLINE_CHANGED - if the command line is changed |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1325 * GOTO_NORMAL_MODE - go back to normal mode |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1326 */ |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1327 static int |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1328 cmdline_browse_history( |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1329 int c, |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1330 int firstc, |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1331 char_u **curcmdstr, |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1332 int histype, |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1333 int *hiscnt_p, |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1334 expand_T *xp) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1335 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1336 int i; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1337 int j; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1338 char_u *lookfor = *curcmdstr; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1339 int hiscnt = *hiscnt_p; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1340 int res; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1341 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1342 if (get_hislen() == 0 || firstc == NUL) // no history |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1343 return CMDLINE_NOT_CHANGED; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1344 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1345 i = hiscnt; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1346 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1347 // save current command string so it can be restored later |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1348 if (lookfor == NULL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1349 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1350 if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1351 return CMDLINE_NOT_CHANGED; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1352 lookfor[ccline.cmdpos] = NUL; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1353 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1354 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1355 j = (int)STRLEN(lookfor); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1356 for (;;) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1357 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1358 // one step backwards |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1359 if (c == K_UP|| c == K_S_UP || c == Ctrl_P |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1360 || c == K_PAGEUP || c == K_KPAGEUP) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1361 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1362 if (hiscnt == get_hislen()) // first time |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1363 hiscnt = *get_hisidx(histype); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1364 else if (hiscnt == 0 && *get_hisidx(histype) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1365 != get_hislen() - 1) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1366 hiscnt = get_hislen() - 1; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1367 else if (hiscnt != *get_hisidx(histype) + 1) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1368 --hiscnt; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1369 else // at top of list |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1370 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1371 hiscnt = i; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1372 break; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1373 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1374 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1375 else // one step forwards |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1376 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1377 // on last entry, clear the line |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1378 if (hiscnt == *get_hisidx(histype)) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1379 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1380 hiscnt = get_hislen(); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1381 break; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1382 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1383 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1384 // not on a history line, nothing to do |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1385 if (hiscnt == get_hislen()) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1386 break; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1387 if (hiscnt == get_hislen() - 1) // wrap around |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1388 hiscnt = 0; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1389 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1390 ++hiscnt; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1391 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1392 if (hiscnt < 0 || get_histentry(histype)[hiscnt].hisstr |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1393 == NULL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1394 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1395 hiscnt = i; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1396 break; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1397 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1398 if ((c != K_UP && c != K_DOWN) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1399 || hiscnt == i |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1400 || STRNCMP(get_histentry(histype)[hiscnt].hisstr, |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1401 lookfor, (size_t)j) == 0) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1402 break; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1403 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1404 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1405 if (hiscnt != i) // jumped to other entry |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1406 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1407 char_u *p; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1408 int len; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1409 int old_firstc; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1410 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1411 VIM_CLEAR(ccline.cmdbuff); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1412 xp->xp_context = EXPAND_NOTHING; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1413 if (hiscnt == get_hislen()) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1414 p = lookfor; // back to the old one |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1415 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1416 p = get_histentry(histype)[hiscnt].hisstr; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1417 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1418 if (histype == HIST_SEARCH |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1419 && p != lookfor |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1420 && (old_firstc = p[STRLEN(p) + 1]) != firstc) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1421 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1422 // Correct for the separator character used when |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1423 // adding the history entry vs the one used now. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1424 // First loop: count length. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1425 // Second loop: copy the characters. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1426 for (i = 0; i <= 1; ++i) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1427 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1428 len = 0; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1429 for (j = 0; p[j] != NUL; ++j) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1430 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1431 // Replace old sep with new sep, unless it is |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1432 // escaped. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1433 if (p[j] == old_firstc |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1434 && (j == 0 || p[j - 1] != '\\')) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1435 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1436 if (i > 0) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1437 ccline.cmdbuff[len] = firstc; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1438 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1439 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1440 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1441 // Escape new sep, unless it is already |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1442 // escaped. |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1443 if (p[j] == firstc |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1444 && (j == 0 || p[j - 1] != '\\')) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1445 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1446 if (i > 0) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1447 ccline.cmdbuff[len] = '\\'; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1448 ++len; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1449 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1450 if (i > 0) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1451 ccline.cmdbuff[len] = p[j]; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1452 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1453 ++len; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1454 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1455 if (i == 0) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1456 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1457 alloc_cmdbuff(len); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1458 if (ccline.cmdbuff == NULL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1459 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1460 res = GOTO_NORMAL_MODE; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1461 goto done; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1462 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1463 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1464 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1465 ccline.cmdbuff[len] = NUL; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1466 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1467 else |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1468 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1469 alloc_cmdbuff((int)STRLEN(p)); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1470 if (ccline.cmdbuff == NULL) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1471 { |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1472 res = GOTO_NORMAL_MODE; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1473 goto done; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1474 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1475 STRCPY(ccline.cmdbuff, p); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1476 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1477 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1478 ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1479 redrawcmd(); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1480 res = CMDLINE_CHANGED; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1481 goto done; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1482 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1483 beep_flush(); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1484 res = CMDLINE_NOT_CHANGED; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1485 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1486 done: |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1487 *curcmdstr = lookfor; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1488 *hiscnt_p = hiscnt; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1489 return res; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1490 } |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1491 |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1492 /* |
22169
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1493 * Initialize the current command-line info. |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1494 */ |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1495 static int |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1496 init_ccline(int firstc, int indent) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1497 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1498 ccline.overstrike = FALSE; // always start in insert mode |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1499 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1500 /* |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1501 * set some variables for redrawcmd() |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1502 */ |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1503 ccline.cmdfirstc = (firstc == '@' ? 0 : firstc); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1504 ccline.cmdindent = (firstc > 0 ? indent : 0); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1505 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1506 // alloc initial ccline.cmdbuff |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1507 alloc_cmdbuff(exmode_active ? 250 : indent + 1); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1508 if (ccline.cmdbuff == NULL) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1509 return FAIL; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1510 ccline.cmdlen = ccline.cmdpos = 0; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1511 ccline.cmdbuff[0] = NUL; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1512 sb_text_start_cmdline(); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1513 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1514 // autoindent for :insert and :append |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1515 if (firstc <= 0) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1516 { |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1517 vim_memset(ccline.cmdbuff, ' ', indent); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1518 ccline.cmdbuff[indent] = NUL; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1519 ccline.cmdpos = indent; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1520 ccline.cmdspos = indent; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1521 ccline.cmdlen = indent; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1522 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1523 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1524 return OK; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1525 } |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1526 |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1527 /* |
7 | 1528 * getcmdline() - accept a command line starting with firstc. |
1529 * | |
1530 * firstc == ':' get ":" command line. | |
1531 * firstc == '/' or '?' get search pattern | |
1532 * firstc == '=' get expression | |
1533 * firstc == '@' get text for input() function | |
1534 * firstc == '>' get text for debug mode | |
1535 * firstc == NUL get text for :insert command | |
1536 * firstc == -1 like NUL, and break on CTRL-C | |
1537 * | |
1538 * The line is collected in ccline.cmdbuff, which is reallocated to fit the | |
1539 * command line. | |
1540 * | |
1541 * Careful: getcmdline() can be called recursively! | |
1542 * | |
1543 * Return pointer to allocated string if there is a commandline, NULL | |
1544 * otherwise. | |
1545 */ | |
1546 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1547 getcmdline( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1548 int firstc, |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1549 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
|
1550 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
|
1551 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
|
1552 { |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1553 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
|
1554 } |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1555 |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1556 static char_u * |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1557 getcmdline_int( |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1558 int firstc, |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1559 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
|
1560 int indent, // indent for inside conditionals |
22169
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1561 int clear_ccline) // clear ccline first |
7 | 1562 { |
1563 int c; | |
1564 int i; | |
1565 int j; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1566 int gotesc = FALSE; // TRUE when <ESC> just typed |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1567 int do_abbr; // when TRUE check for abbr. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1568 char_u *lookfor = NULL; // string to match |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1569 int hiscnt; // current history line in use |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1570 int histype; // history type to be used |
7 | 1571 #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
|
1572 incsearch_state_T is_state; |
7 | 1573 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1574 int did_wild_list = FALSE; // did wild_list() recently |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1575 int wim_index = 0; // index in wim_flags[] |
7 | 1576 int res; |
1577 int save_msg_scroll = msg_scroll; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1578 int save_State = State; // remember State when called |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1579 int some_key_typed = FALSE; // one of the keys was typed |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1580 // mouse drag and release events are ignored, unless they are |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1581 // preceded with a mouse down event |
7 | 1582 int ignore_drag_release = TRUE; |
1583 #ifdef FEAT_EVAL | |
1584 int break_ctrl_c = FALSE; | |
1585 #endif | |
1586 expand_T xpc; | |
1587 long *b_im_ptr = NULL; | |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
1588 cmdline_info_T save_ccline; |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1589 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
|
1590 int cmdline_type; |
7 | 1591 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1592 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
|
1593 { |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1594 // 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
|
1595 // 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
|
1596 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
|
1597 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
|
1598 } |
22169
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1599 if (clear_ccline) |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
1600 CLEAR_FIELD(ccline); |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1601 |
7 | 1602 #ifdef FEAT_EVAL |
1603 if (firstc == -1) | |
1604 { | |
1605 firstc = NUL; | |
1606 break_ctrl_c = TRUE; | |
1607 } | |
1608 #endif | |
1609 #ifdef FEAT_RIGHTLEFT | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1610 // start without Hebrew mapping for a command line |
7 | 1611 if (firstc == ':' || firstc == '=' || firstc == '>') |
1612 cmd_hkmap = 0; | |
1613 #endif | |
1614 | |
1615 #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
|
1616 init_incsearch_state(&is_state); |
7 | 1617 #endif |
1618 | |
22169
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1619 if (init_ccline(firstc, indent) != OK) |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
1620 goto theend; // out of memory |
164 | 1621 |
7 | 1622 ExpandInit(&xpc); |
1718 | 1623 ccline.xpc = &xpc; |
7 | 1624 |
1625 #ifdef FEAT_RIGHTLEFT | |
1626 if (curwin->w_p_rl && *curwin->w_p_rlc == 's' | |
1627 && (firstc == '/' || firstc == '?')) | |
1628 cmdmsg_rl = TRUE; | |
1629 else | |
1630 cmdmsg_rl = FALSE; | |
1631 #endif | |
1632 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1633 redir_off = TRUE; // don't redirect the typed command |
7 | 1634 if (!cmd_silent) |
1635 { | |
1636 i = msg_scrolled; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1637 msg_scrolled = 0; // avoid wait_return message |
7 | 1638 gotocmdline(TRUE); |
1639 msg_scrolled += i; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1640 redrawcmdprompt(); // draw prompt or indent |
7 | 1641 set_cmdspos(); |
1642 } | |
1643 xpc.xp_context = EXPAND_NOTHING; | |
1644 xpc.xp_backslash = XP_BS_NONE; | |
632 | 1645 #ifndef BACKSLASH_IN_FILENAME |
1646 xpc.xp_shell = FALSE; | |
1647 #endif | |
7 | 1648 |
531 | 1649 #if defined(FEAT_EVAL) |
1650 if (ccline.input_fn) | |
1651 { | |
1652 xpc.xp_context = ccline.xp_context; | |
1653 xpc.xp_pattern = ccline.cmdbuff; | |
1654 xpc.xp_arg = ccline.xp_arg; | |
1655 } | |
1656 #endif | |
1657 | |
7 | 1658 /* |
1659 * Avoid scrolling when called by a recursive do_cmdline(), e.g. when | |
1660 * doing ":@0" when register 0 doesn't contain a CR. | |
1661 */ | |
1662 msg_scroll = FALSE; | |
1663 | |
1664 State = CMDLINE; | |
1665 | |
1666 if (firstc == '/' || firstc == '?' || firstc == '@') | |
1667 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1668 // Use ":lmap" mappings for search pattern and input(). |
7 | 1669 if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT) |
1670 b_im_ptr = &curbuf->b_p_iminsert; | |
1671 else | |
1672 b_im_ptr = &curbuf->b_p_imsearch; | |
1673 if (*b_im_ptr == B_IMODE_LMAP) | |
1674 State |= LANGMAP; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
1675 #ifdef HAVE_INPUT_METHOD |
7 | 1676 im_set_active(*b_im_ptr == B_IMODE_IM); |
1677 #endif | |
1678 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
1679 #ifdef HAVE_INPUT_METHOD |
7 | 1680 else if (p_imcmdline) |
1681 im_set_active(TRUE); | |
1682 #endif | |
1683 | |
1684 setmouse(); | |
1685 #ifdef CURSOR_SHAPE | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1686 ui_cursor_shape(); // may show different cursor shape |
7 | 1687 #endif |
1688 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1689 // When inside an autocommand for writing "exiting" may be set and |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1690 // terminal mode set to cooked. Need to set raw mode here then. |
571 | 1691 settmode(TMODE_RAW); |
1692 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1693 // Trigger CmdlineEnter 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
|
1694 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
|
1695 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
|
1696 |
7 | 1697 init_history(); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1698 hiscnt = get_hislen(); // set hiscnt to impossible history value |
7 | 1699 histype = hist_char2type(firstc); |
1700 | |
1701 #ifdef FEAT_DIGRAPHS | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1702 do_digraph(-1); // init digraph typeahead |
7 | 1703 #endif |
1704 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1705 // If something above caused an error, reset the flags, we do want to type |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1706 // and execute commands. Display may be messed up a bit. |
5993 | 1707 if (did_emsg) |
1708 redrawcmd(); | |
1709 did_emsg = FALSE; | |
1710 got_int = FALSE; | |
1711 | |
7 | 1712 /* |
1713 * Collect the command string, handling editing keys. | |
1714 */ | |
1715 for (;;) | |
1716 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1717 redir_off = TRUE; // Don't redirect the typed command. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1718 // Repeated, because a ":redir" inside |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1719 // completion may switch it on. |
7 | 1720 #ifdef USE_ON_FLY_SCROLL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1721 dont_scroll = FALSE; // allow scrolling here |
7 | 1722 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1723 quit_more = FALSE; // reset after CTRL-D which had a more-prompt |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1724 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1725 did_emsg = FALSE; // There can't really be a reason why an error |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1726 // that occurs while typing a command should |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1727 // cause the command not to be executed. |
13600
75e35ebdb7a4
patch 8.0.1672: error during completion causes command to be cancelled
Christian Brabandt <cb@256bit.org>
parents:
13551
diff
changeset
|
1728 |
18098
a2870e6f5b45
patch 8.1.2044: no easy way to process postponed work
Bram Moolenaar <Bram@vim.org>
parents:
18043
diff
changeset
|
1729 // Trigger SafeState if nothing is pending. |
a2870e6f5b45
patch 8.1.2044: no easy way to process postponed work
Bram Moolenaar <Bram@vim.org>
parents:
18043
diff
changeset
|
1730 may_trigger_safestate(xpc.xp_numfiles <= 0); |
a2870e6f5b45
patch 8.1.2044: no easy way to process postponed work
Bram Moolenaar <Bram@vim.org>
parents:
18043
diff
changeset
|
1731 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1732 // Get a character. Ignore K_IGNORE and K_NOP, they should not do |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1733 // anything, such as stop completion. |
1472 | 1734 do |
22872
5a7db84713dc
patch 8.2.1983: ml_get error when using <Cmd> to open a terminal
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1735 { |
5a7db84713dc
patch 8.2.1983: ml_get error when using <Cmd> to open a terminal
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1736 cursorcmd(); // set the cursor on the right spot |
1472 | 1737 c = safe_vgetc(); |
22872
5a7db84713dc
patch 8.2.1983: ml_get error when using <Cmd> to open a terminal
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1738 } while (c == K_IGNORE || c == K_NOP); |
1472 | 1739 |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
1740 if (c == K_COMMAND |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
1741 && do_cmdline(NULL, getcmdkeycmd, NULL, DOCMD_NOWAIT) == OK) |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
1742 goto cmdline_changed; |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
1743 |
7 | 1744 if (KeyTyped) |
1745 { | |
1746 some_key_typed = TRUE; | |
1747 #ifdef FEAT_RIGHTLEFT | |
1748 if (cmd_hkmap) | |
1749 c = hkmap(c); | |
1750 if (cmdmsg_rl && !KeyStuffed) | |
1751 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1752 // Invert horizontal movements and operations. Only when |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1753 // typed by the user directly, not when the result of a |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1754 // mapping. |
7 | 1755 switch (c) |
1756 { | |
1757 case K_RIGHT: c = K_LEFT; break; | |
1758 case K_S_RIGHT: c = K_S_LEFT; break; | |
1759 case K_C_RIGHT: c = K_C_LEFT; break; | |
1760 case K_LEFT: c = K_RIGHT; break; | |
1761 case K_S_LEFT: c = K_S_RIGHT; break; | |
1762 case K_C_LEFT: c = K_C_RIGHT; break; | |
1763 } | |
1764 } | |
1765 #endif | |
1766 } | |
1767 | |
1768 /* | |
1769 * Ignore got_int when CTRL-C was typed here. | |
1770 * Don't ignore it in :global, we really need to break then, e.g., for | |
1771 * ":g/pat/normal /pat" (without the <CR>). | |
1772 * Don't ignore it for the input() function. | |
1773 */ | |
1774 if ((c == Ctrl_C | |
1775 #ifdef UNIX | |
1776 || c == intr_char | |
1777 #endif | |
1778 ) | |
1779 #if defined(FEAT_EVAL) || defined(FEAT_CRYPT) | |
1780 && firstc != '@' | |
1781 #endif | |
1782 #ifdef FEAT_EVAL | |
1783 && !break_ctrl_c | |
1784 #endif | |
1785 && !global_busy) | |
1786 got_int = FALSE; | |
1787 | |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
1788 // 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
|
1789 // list |
7 | 1790 if (lookfor != NULL |
180 | 1791 && c != K_S_DOWN && c != K_S_UP |
230 | 1792 && c != K_DOWN && c != K_UP |
7 | 1793 && c != K_PAGEDOWN && c != K_PAGEUP |
1794 && c != K_KPAGEDOWN && c != K_KPAGEUP | |
230 | 1795 && c != K_LEFT && c != K_RIGHT |
7 | 1796 && (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
|
1797 VIM_CLEAR(lookfor); |
7 | 1798 |
1799 /* | |
1718 | 1800 * When there are matching completions to select <S-Tab> works like |
1801 * CTRL-P (unless 'wc' is <S-Tab>). | |
7 | 1802 */ |
1718 | 1803 if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0) |
7 | 1804 c = Ctrl_P; |
1805 | |
1806 #ifdef FEAT_WILDMENU | |
22075
eb878f85967e
patch 8.2.1587: loop for handling keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22061
diff
changeset
|
1807 c = wildmenu_translate_key(&ccline, c, &xpc, did_wild_list); |
7 | 1808 #endif |
1809 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1810 // free expanded names when finished walking through matches |
7 | 1811 if (xpc.xp_numfiles != -1 |
1812 && !(c == p_wc && KeyTyped) && c != p_wcm | |
1813 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A | |
1814 && c != Ctrl_L) | |
1815 { | |
1816 (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE); | |
1817 did_wild_list = FALSE; | |
1818 #ifdef FEAT_WILDMENU | |
230 | 1819 if (!p_wmnu || (c != K_UP && c != K_DOWN)) |
7 | 1820 #endif |
1821 xpc.xp_context = EXPAND_NOTHING; | |
1822 wim_index = 0; | |
1823 #ifdef FEAT_WILDMENU | |
22075
eb878f85967e
patch 8.2.1587: loop for handling keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22061
diff
changeset
|
1824 wildmenu_cleanup(&ccline); |
7 | 1825 #endif |
1826 } | |
1827 | |
1828 #ifdef FEAT_WILDMENU | |
22075
eb878f85967e
patch 8.2.1587: loop for handling keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22061
diff
changeset
|
1829 c = wildmenu_process_key(&ccline, c, &xpc); |
eb878f85967e
patch 8.2.1587: loop for handling keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22061
diff
changeset
|
1830 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1831 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1832 // CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1833 // mode when 'insertmode' is set, CTRL-\ e prompts for an expression. |
7 | 1834 if (c == Ctrl_BSL) |
1835 { | |
22169
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1836 res = cmdline_handle_backslash_key(c, &gotesc); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1837 if (res == CMDLINE_CHANGED) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1838 goto cmdline_changed; |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1839 else if (res == CMDLINE_NOT_CHANGED) |
2636 | 1840 goto cmdline_not_changed; |
22169
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1841 else if (res == GOTO_NORMAL_MODE) |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1842 goto returncmd; // back to cmd mode |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1843 c = Ctrl_BSL; // backslash key not processed by |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1844 // cmdline_handle_backslash_key() |
7 | 1845 } |
1846 | |
1847 #ifdef FEAT_CMDWIN | |
1848 if (c == cedit_key || c == K_CMDWIN) | |
1849 { | |
18793
7a1606ceec7d
patch 8.1.2385: opening cmdline window with feedkeys() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18779
diff
changeset
|
1850 // TODO: why is ex_normal_busy checked here? |
7a1606ceec7d
patch 8.1.2385: opening cmdline window with feedkeys() does not work
Bram Moolenaar <Bram@vim.org>
parents:
18779
diff
changeset
|
1851 if ((c == K_CMDWIN || ex_normal_busy == 0) && got_int == FALSE) |
6211 | 1852 { |
1853 /* | |
1854 * Open a window to edit the command line (and history). | |
1855 */ | |
11321
f57dce6b934b
patch 8.0.0546: swap file exists briefly when opening the command window
Christian Brabandt <cb@256bit.org>
parents:
11285
diff
changeset
|
1856 c = open_cmdwin(); |
6211 | 1857 some_key_typed = TRUE; |
1858 } | |
7 | 1859 } |
1860 # ifdef FEAT_DIGRAPHS | |
1861 else | |
1862 # endif | |
1863 #endif | |
1864 #ifdef FEAT_DIGRAPHS | |
1865 c = do_digraph(c); | |
1866 #endif | |
1867 | |
1868 if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC | |
1869 && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL))) | |
1870 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1871 // In Ex mode a backslash escapes a newline. |
168 | 1872 if (exmode_active |
1873 && c != ESC | |
1318 | 1874 && ccline.cmdpos == ccline.cmdlen |
168 | 1875 && ccline.cmdpos > 0 |
1876 && ccline.cmdbuff[ccline.cmdpos - 1] == '\\') | |
1877 { | |
1878 if (c == K_KENTER) | |
1879 c = '\n'; | |
1880 } | |
1881 else | |
7 | 1882 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1883 gotesc = FALSE; // Might have typed ESC previously, don't |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1884 // truncate the cmdline now. |
168 | 1885 if (ccheck_abbr(c + ABBR_OFF)) |
1886 goto cmdline_changed; | |
1887 if (!cmd_silent) | |
1888 { | |
1889 windgoto(msg_row, 0); | |
1890 out_flush(); | |
1891 } | |
1892 break; | |
7 | 1893 } |
1894 } | |
1895 | |
22169
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1896 // Completion for 'wildchar' or 'wildcharm' key. |
7 | 1897 if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm) |
1898 { | |
22169
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1899 res = cmdline_wildchar_complete(c, firstc != '@', &did_wild_list, |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1900 &wim_index, &xpc, &gotesc); |
53ed9f8a843f
patch 8.2.1634: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22145
diff
changeset
|
1901 if (res == CMDLINE_CHANGED) |
7 | 1902 goto cmdline_changed; |
1903 } | |
1904 | |
1905 gotesc = FALSE; | |
1906 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1907 // <S-Tab> goes to last match, in a clumsy way |
7 | 1908 if (c == K_S_TAB && KeyTyped) |
1909 { | |
3961 | 1910 if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK |
1911 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK | |
1912 && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK) | |
7 | 1913 goto cmdline_changed; |
1914 } | |
1915 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1916 if (c == NUL || c == K_ZERO) // NUL is stored as NL |
7 | 1917 c = NL; |
1918 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1919 do_abbr = TRUE; // default: check for abbreviation |
7 | 1920 |
1921 /* | |
1922 * Big switch for a typed command line character. | |
1923 */ | |
1924 switch (c) | |
1925 { | |
1926 case K_BS: | |
1927 case Ctrl_H: | |
1928 case K_DEL: | |
1929 case K_KDEL: | |
1930 case Ctrl_W: | |
22145
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1931 res = cmdline_erase_chars(c, indent |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1932 #ifdef FEAT_SEARCH_EXTRA |
22145
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1933 , &is_state |
7 | 1934 #endif |
22145
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1935 ); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1936 if (res == CMDLINE_NOT_CHANGED) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1937 goto cmdline_not_changed; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1938 else if (res == GOTO_NORMAL_MODE) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1939 goto returncmd; // back to cmd mode |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1940 goto cmdline_changed; |
7 | 1941 |
1942 case K_INS: | |
1943 case K_KINS: | |
1944 ccline.overstrike = !ccline.overstrike; | |
1945 #ifdef CURSOR_SHAPE | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1946 ui_cursor_shape(); // may show different cursor shape |
7 | 1947 #endif |
1948 goto cmdline_not_changed; | |
1949 | |
1950 case Ctrl_HAT: | |
22145
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1951 cmdline_toggle_langmap(b_im_ptr); |
7 | 1952 goto cmdline_not_changed; |
1953 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1954 // case '@': only in very old vi |
7 | 1955 case Ctrl_U: |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1956 // delete all characters left of the cursor |
7 | 1957 j = ccline.cmdpos; |
1958 ccline.cmdlen -= j; | |
1959 i = ccline.cmdpos = 0; | |
1960 while (i < ccline.cmdlen) | |
1961 ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1962 // Truncate at the end, required for multi-byte chars. |
7 | 1963 ccline.cmdbuff[ccline.cmdlen] = NUL; |
9971
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1964 #ifdef FEAT_SEARCH_EXTRA |
98b39d2eb895
commit https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
1965 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
|
1966 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
|
1967 #endif |
7 | 1968 redrawcmd(); |
1969 goto cmdline_changed; | |
1970 | |
1971 #ifdef FEAT_CLIPBOARD | |
1972 case Ctrl_Y: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1973 // Copy the modeless selection, if there is one. |
7 | 1974 if (clip_star.state != SELECT_CLEARED) |
1975 { | |
1976 if (clip_star.state == SELECT_DONE) | |
1977 clip_copy_modeless_selection(TRUE); | |
1978 goto cmdline_not_changed; | |
1979 } | |
1980 break; | |
1981 #endif | |
1982 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1983 case ESC: // get here if p_wc != ESC or when ESC typed twice |
7 | 1984 case Ctrl_C: |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1985 // In exmode it doesn't make sense to return. Except when |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1986 // ":normal" runs out of characters. |
161 | 1987 if (exmode_active |
7850
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
1988 && (ex_normal_busy == 0 || typebuf.tb_len > 0)) |
7 | 1989 goto cmdline_not_changed; |
1990 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1991 gotesc = TRUE; // will free ccline.cmdbuff after |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1992 // putting it in history |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1993 goto returncmd; // back to cmd mode |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1994 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1995 case Ctrl_R: // insert register |
22145
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1996 res = cmdline_insert_reg(&gotesc); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1997 if (res == CMDLINE_NOT_CHANGED) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1998 goto cmdline_not_changed; |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
1999 else if (res == GOTO_NORMAL_MODE) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
2000 goto returncmd; |
7 | 2001 goto cmdline_changed; |
2002 | |
2003 case Ctrl_D: | |
2004 if (showmatches(&xpc, FALSE) == EXPAND_NOTHING) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2005 break; // Use ^D as normal char instead |
7 | 2006 |
2007 redrawcmd(); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2008 continue; // don't do incremental search now |
7 | 2009 |
2010 case K_RIGHT: | |
2011 case K_S_RIGHT: | |
2012 case K_C_RIGHT: | |
2013 do | |
2014 { | |
2015 if (ccline.cmdpos >= ccline.cmdlen) | |
2016 break; | |
2017 i = cmdline_charsize(ccline.cmdpos); | |
2018 if (KeyTyped && ccline.cmdspos + i >= Columns * Rows) | |
2019 break; | |
2020 ccline.cmdspos += i; | |
2021 if (has_mbyte) | |
474 | 2022 ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
7 | 2023 + ccline.cmdpos); |
2024 else | |
2025 ++ccline.cmdpos; | |
2026 } | |
180 | 2027 while ((c == K_S_RIGHT || c == K_C_RIGHT |
2028 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) | |
7 | 2029 && ccline.cmdbuff[ccline.cmdpos] != ' '); |
2030 if (has_mbyte) | |
2031 set_cmdspos_cursor(); | |
2032 goto cmdline_not_changed; | |
2033 | |
2034 case K_LEFT: | |
2035 case K_S_LEFT: | |
2036 case K_C_LEFT: | |
1456 | 2037 if (ccline.cmdpos == 0) |
2038 goto cmdline_not_changed; | |
7 | 2039 do |
2040 { | |
2041 --ccline.cmdpos; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2042 if (has_mbyte) // move to first byte of char |
7 | 2043 ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff, |
2044 ccline.cmdbuff + ccline.cmdpos); | |
2045 ccline.cmdspos -= cmdline_charsize(ccline.cmdpos); | |
2046 } | |
1456 | 2047 while (ccline.cmdpos > 0 |
2048 && (c == K_S_LEFT || c == K_C_LEFT | |
180 | 2049 || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) |
7 | 2050 && ccline.cmdbuff[ccline.cmdpos - 1] != ' '); |
2051 if (has_mbyte) | |
2052 set_cmdspos_cursor(); | |
2053 goto cmdline_not_changed; | |
2054 | |
2055 case K_IGNORE: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2056 // Ignore mouse event or open_cmdwin() result. |
1472 | 2057 goto cmdline_not_changed; |
7 | 2058 |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
2059 #ifdef FEAT_GUI_MSWIN |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2060 // On MS-Windows ignore <M-F4>, we get it when closing the window |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2061 // was cancelled. |
625 | 2062 case K_F4: |
2063 if (mod_mask == MOD_MASK_ALT) | |
2064 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2065 redrawcmd(); // somehow the cmdline is cleared |
625 | 2066 goto cmdline_not_changed; |
2067 } | |
2068 break; | |
2069 #endif | |
2070 | |
7 | 2071 case K_MIDDLEDRAG: |
2072 case K_MIDDLERELEASE: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2073 goto cmdline_not_changed; // Ignore mouse |
7 | 2074 |
2075 case K_MIDDLEMOUSE: | |
2076 # ifdef FEAT_GUI | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2077 // When GUI is active, also paste when 'mouse' is empty |
7 | 2078 if (!gui.in_use) |
2079 # endif | |
2080 if (!mouse_has(MOUSE_COMMAND)) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2081 goto cmdline_not_changed; // Ignore mouse |
692 | 2082 # ifdef FEAT_CLIPBOARD |
7 | 2083 if (clip_star.available) |
1015 | 2084 cmdline_paste('*', TRUE, TRUE); |
7 | 2085 else |
692 | 2086 # endif |
1015 | 2087 cmdline_paste(0, TRUE, TRUE); |
7 | 2088 redrawcmd(); |
2089 goto cmdline_changed; | |
2090 | |
692 | 2091 # ifdef FEAT_DND |
7 | 2092 case K_DROP: |
1015 | 2093 cmdline_paste('~', TRUE, FALSE); |
7 | 2094 redrawcmd(); |
2095 goto cmdline_changed; | |
692 | 2096 # endif |
7 | 2097 |
2098 case K_LEFTDRAG: | |
2099 case K_LEFTRELEASE: | |
2100 case K_RIGHTDRAG: | |
2101 case K_RIGHTRELEASE: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2102 // Ignore drag and release events when the button-down wasn't |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2103 // seen before. |
7 | 2104 if (ignore_drag_release) |
2105 goto cmdline_not_changed; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2106 // FALLTHROUGH |
7 | 2107 case K_LEFTMOUSE: |
2108 case K_RIGHTMOUSE: | |
22145
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
2109 cmdline_left_right_mouse(c, &ignore_drag_release); |
7 | 2110 goto cmdline_not_changed; |
2111 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2112 // Mouse scroll wheel: ignored here |
7 | 2113 case K_MOUSEDOWN: |
2114 case K_MOUSEUP: | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2115 case K_MOUSELEFT: |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2116 case K_MOUSERIGHT: |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2117 // Alternate buttons ignored here |
7 | 2118 case K_X1MOUSE: |
2119 case K_X1DRAG: | |
2120 case K_X1RELEASE: | |
2121 case K_X2MOUSE: | |
2122 case K_X2DRAG: | |
2123 case K_X2RELEASE: | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12855
diff
changeset
|
2124 case K_MOUSEMOVE: |
7 | 2125 goto cmdline_not_changed; |
2126 | |
2127 #ifdef FEAT_GUI | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2128 case K_LEFTMOUSE_NM: // mousefocus click, ignored |
7 | 2129 case K_LEFTRELEASE_NM: |
2130 goto cmdline_not_changed; | |
2131 | |
2132 case K_VER_SCROLLBAR: | |
540 | 2133 if (msg_scrolled == 0) |
7 | 2134 { |
2135 gui_do_scroll(); | |
2136 redrawcmd(); | |
2137 } | |
2138 goto cmdline_not_changed; | |
2139 | |
2140 case K_HOR_SCROLLBAR: | |
540 | 2141 if (msg_scrolled == 0) |
7 | 2142 { |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2143 gui_do_horiz_scroll(scrollbar_value, FALSE); |
7 | 2144 redrawcmd(); |
2145 } | |
2146 goto cmdline_not_changed; | |
2147 #endif | |
692 | 2148 #ifdef FEAT_GUI_TABLINE |
2149 case K_TABLINE: | |
2150 case K_TABMENU: | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2151 // Don't want to change any tabs here. Make sure the same tab |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2152 // is still selected. |
692 | 2153 if (gui_use_tabline()) |
2154 gui_mch_set_curtab(tabpage_index(curtab)); | |
2155 goto cmdline_not_changed; | |
2156 #endif | |
2157 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2158 case K_SELECT: // end of Select mode mapping - ignore |
7 | 2159 goto cmdline_not_changed; |
2160 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2161 case Ctrl_B: // begin of command line |
7 | 2162 case K_HOME: |
2163 case K_KHOME: | |
2164 case K_S_HOME: | |
2165 case K_C_HOME: | |
2166 ccline.cmdpos = 0; | |
2167 set_cmdspos(); | |
2168 goto cmdline_not_changed; | |
2169 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2170 case Ctrl_E: // end of command line |
7 | 2171 case K_END: |
2172 case K_KEND: | |
2173 case K_S_END: | |
2174 case K_C_END: | |
2175 ccline.cmdpos = ccline.cmdlen; | |
2176 set_cmdspos_cursor(); | |
2177 goto cmdline_not_changed; | |
2178 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2179 case Ctrl_A: // all matches |
3961 | 2180 if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL) |
7 | 2181 break; |
2182 goto cmdline_changed; | |
2183 | |
772 | 2184 case Ctrl_L: |
2185 #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
|
2186 if (may_add_char_to_search(firstc, &c, &is_state) == OK) |
772 | 2187 goto cmdline_not_changed; |
2188 #endif | |
2189 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2190 // completion: longest common part |
3961 | 2191 if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL) |
7 | 2192 break; |
2193 goto cmdline_changed; | |
2194 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2195 case Ctrl_N: // next match |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2196 case Ctrl_P: // previous match |
9976
e448370630b2
commit https://github.com/vim/vim/commit/7df0f6313a46b80d760c9a80241922544333351c
Christian Brabandt <cb@256bit.org>
parents:
9971
diff
changeset
|
2197 if (xpc.xp_numfiles > 0) |
7 | 2198 { |
3961 | 2199 if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, |
2200 0, firstc != '@') == FAIL) | |
7 | 2201 break; |
9990
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2202 goto cmdline_not_changed; |
7 | 2203 } |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2204 // FALLTHROUGH |
7 | 2205 case K_UP: |
2206 case K_DOWN: | |
2207 case K_S_UP: | |
2208 case K_S_DOWN: | |
2209 case K_PAGEUP: | |
2210 case K_KPAGEUP: | |
2211 case K_PAGEDOWN: | |
2212 case K_KPAGEDOWN: | |
22145
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
2213 res = cmdline_browse_history(c, firstc, &lookfor, histype, |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
2214 &hiscnt, &xpc); |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
2215 if (res == CMDLINE_CHANGED) |
7 | 2216 goto cmdline_changed; |
22145
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
2217 else if (res == GOTO_NORMAL_MODE) |
e6fb7f627448
patch 8.2.1622: loop to handle keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
2218 goto returncmd; |
9990
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2219 goto cmdline_not_changed; |
6a1793d9c895
commit https://github.com/vim/vim/commit/1195669f9e434fa9ab8b57ee9470bf951e4990b8
Christian Brabandt <cb@256bit.org>
parents:
9976
diff
changeset
|
2220 |
10094
61dc69646af6
commit https://github.com/vim/vim/commit/349e7d94e6bbb253bb87adad9039f095128ab543
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2221 #ifdef FEAT_SEARCH_EXTRA |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2222 case Ctrl_G: // next match |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2223 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
|
2224 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
|
2225 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
|
2226 goto cmdline_not_changed; |
61dc69646af6
commit https://github.com/vim/vim/commit/349e7d94e6bbb253bb87adad9039f095128ab543
Christian Brabandt <cb@256bit.org>
parents:
10082
diff
changeset
|
2227 break; |
7 | 2228 #endif |
2229 | |
2230 case Ctrl_V: | |
2231 case Ctrl_Q: | |
2232 { | |
18717
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2233 ignore_drag_release = TRUE; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2234 putcmdline('^', TRUE); |
23076
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22872
diff
changeset
|
2235 |
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22872
diff
changeset
|
2236 // Get next (two) character(s). Do not change any |
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22872
diff
changeset
|
2237 // modifyOtherKeys ESC sequence to a normal key for |
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22872
diff
changeset
|
2238 // CTRL-SHIFT-V. |
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22872
diff
changeset
|
2239 c = get_literal(mod_mask & MOD_MASK_SHIFT); |
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22872
diff
changeset
|
2240 |
18717
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2241 do_abbr = FALSE; // don't do abbreviation now |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2242 extra_char = NUL; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2243 // may need to remove ^ when composing char was typed |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2244 if (enc_utf8 && utf_iscomposing(c) && !cmd_silent) |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2245 { |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2246 draw_cmdline(ccline.cmdpos, |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2247 ccline.cmdlen - ccline.cmdpos); |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2248 msg_putchar(' '); |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2249 cursorcmd(); |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2250 } |
7 | 2251 } |
18717
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
2252 |
7 | 2253 break; |
2254 | |
2255 #ifdef FEAT_DIGRAPHS | |
2256 case Ctrl_K: | |
2257 ignore_drag_release = TRUE; | |
2258 putcmdline('?', TRUE); | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
2259 # ifdef USE_ON_FLY_SCROLL |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2260 dont_scroll = TRUE; // disallow scrolling here |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
2261 # endif |
7 | 2262 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
|
2263 extra_char = NUL; |
7 | 2264 if (c != NUL) |
2265 break; | |
2266 | |
2267 redrawcmd(); | |
2268 goto cmdline_not_changed; | |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18251
diff
changeset
|
2269 #endif // FEAT_DIGRAPHS |
7 | 2270 |
2271 #ifdef FEAT_RIGHTLEFT | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2272 case Ctrl__: // CTRL-_: switch language mode |
7 | 2273 if (!p_ari) |
2274 break; | |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
2275 cmd_hkmap = !cmd_hkmap; |
7 | 2276 goto cmdline_not_changed; |
2277 #endif | |
2278 | |
10676
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2279 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
|
2280 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
|
2281 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
|
2282 |
7 | 2283 default: |
2284 #ifdef UNIX | |
2285 if (c == intr_char) | |
2286 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2287 gotesc = TRUE; // will free ccline.cmdbuff after |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2288 // putting it in history |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2289 goto returncmd; // back to Normal mode |
7 | 2290 } |
2291 #endif | |
2292 /* | |
2293 * Normal character with no special meaning. Just set mod_mask | |
2294 * to 0x0 so that typing Shift-Space in the GUI doesn't enter | |
2295 * the string <S-Space>. This should only happen after ^V. | |
2296 */ | |
2297 if (!IS_SPECIAL(c)) | |
2298 mod_mask = 0x0; | |
2299 break; | |
2300 } | |
2301 /* | |
2302 * End of switch on command line character. | |
2303 * We come here if we have a normal character. | |
2304 */ | |
2305 | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
2306 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
|
2307 && (ccheck_abbr( |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
2308 // 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
|
2309 // what check_abbr() expects. |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
2310 (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
|
2311 || c == Ctrl_RSB)) |
7 | 2312 goto cmdline_changed; |
2313 | |
2314 /* | |
2315 * put the character in the command line | |
2316 */ | |
2317 if (IS_SPECIAL(c) || mod_mask != 0) | |
2318 put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE); | |
2319 else | |
2320 { | |
2321 if (has_mbyte) | |
2322 { | |
2323 j = (*mb_char2bytes)(c, IObuff); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2324 IObuff[j] = NUL; // exclude composing chars |
7 | 2325 put_on_cmdline(IObuff, j, TRUE); |
2326 } | |
2327 else | |
2328 { | |
2329 IObuff[0] = c; | |
2330 put_on_cmdline(IObuff, 1, TRUE); | |
2331 } | |
2332 } | |
2333 goto cmdline_changed; | |
2334 | |
2335 /* | |
2336 * This part implements incremental searches for "/" and "?" | |
2337 * Jump to cmdline_not_changed when a character has been read but the command | |
2338 * line did not change. Then we only search and redraw if something changed in | |
2339 * the past. | |
2340 * Jump to cmdline_changed when the command line did change. | |
2341 * (Sorry for the goto's, I know it is ugly). | |
2342 */ | |
2343 cmdline_not_changed: | |
2344 #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
|
2345 if (!is_state.incsearch_postponed) |
7 | 2346 continue; |
2347 #endif | |
2348 | |
2349 cmdline_changed: | |
22872
5a7db84713dc
patch 8.2.1983: ml_get error when using <Cmd> to open a terminal
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
2350 #ifdef FEAT_SEARCH_EXTRA |
5a7db84713dc
patch 8.2.1983: ml_get error when using <Cmd> to open a terminal
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
2351 // If the window changed incremental search state is not valid. |
5a7db84713dc
patch 8.2.1983: ml_get error when using <Cmd> to open a terminal
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
2352 if (is_state.winid != curwin->w_id) |
5a7db84713dc
patch 8.2.1983: ml_get error when using <Cmd> to open a terminal
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
2353 init_incsearch_state(&is_state); |
5a7db84713dc
patch 8.2.1983: ml_get error when using <Cmd> to open a terminal
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
2354 #endif |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2355 // Trigger CmdlineChanged autocommands. |
13142
59a16624400a
patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents:
13107
diff
changeset
|
2356 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
|
2357 |
7 | 2358 #ifdef FEAT_SEARCH_EXTRA |
22061
d6120c97f57c
patch 8.2.1580: wildmenu does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
21883
diff
changeset
|
2359 if (xpc.xp_context == EXPAND_NOTHING) |
d6120c97f57c
patch 8.2.1580: wildmenu does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
21883
diff
changeset
|
2360 may_do_incsearch_highlighting(firstc, count, &is_state); |
7 | 2361 #endif |
2362 | |
2363 #ifdef FEAT_RIGHTLEFT | |
2364 if (cmdmsg_rl | |
2365 # 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
|
2366 || (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
|
2367 && cmdline_has_arabic(0, ccline.cmdlen)) |
7 | 2368 # endif |
2369 ) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2370 // Always redraw the whole command line to fix shaping and |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2371 // right-left typing. Not efficient, but it works. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2372 // Do it only when there are no characters left to read |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2373 // to avoid useless intermediate redraws. |
3374 | 2374 if (vpeekc() == NUL) |
2375 redrawcmd(); | |
7 | 2376 #endif |
2377 } | |
2378 | |
2379 returncmd: | |
2380 | |
2381 #ifdef FEAT_RIGHTLEFT | |
2382 cmdmsg_rl = FALSE; | |
2383 #endif | |
2384 | |
2385 ExpandCleanup(&xpc); | |
1718 | 2386 ccline.xpc = NULL; |
7 | 2387 |
2388 #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
|
2389 finish_incsearch_highlighting(gotesc, &is_state, FALSE); |
7 | 2390 #endif |
2391 | |
2392 if (ccline.cmdbuff != NULL) | |
2393 { | |
2394 /* | |
2395 * Put line in history buffer (":" and "=" only when it was typed). | |
2396 */ | |
2397 if (ccline.cmdlen && firstc != NUL | |
2398 && (some_key_typed || histype == HIST_SEARCH)) | |
2399 { | |
2400 add_to_history(histype, ccline.cmdbuff, TRUE, | |
2401 histype == HIST_SEARCH ? firstc : NUL); | |
2402 if (firstc == ':') | |
2403 { | |
2404 vim_free(new_last_cmdline); | |
2405 new_last_cmdline = vim_strsave(ccline.cmdbuff); | |
2406 } | |
2407 } | |
2408 | |
12664
42cd1f315e8b
patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeahead
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
2409 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
|
2410 abandon_cmdline(); |
7 | 2411 } |
2412 | |
2413 /* | |
2414 * If the screen was shifted up, redraw the whole screen (later). | |
2415 * If the line is too long, clear it, so ruler and shown command do | |
2416 * not get printed in the middle of it. | |
2417 */ | |
2418 msg_check(); | |
2419 msg_scroll = save_msg_scroll; | |
2420 redir_off = FALSE; | |
2421 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2422 // When the command line was typed, no need for a wait-return prompt. |
7 | 2423 if (some_key_typed) |
2424 need_wait_return = FALSE; | |
2425 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2426 // Trigger CmdlineLeave 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
|
2427 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
|
2428 |
7 | 2429 State = save_State; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
2430 #ifdef HAVE_INPUT_METHOD |
7 | 2431 if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP) |
2432 im_save_status(b_im_ptr); | |
2433 im_set_active(FALSE); | |
2434 #endif | |
2435 setmouse(); | |
2436 #ifdef CURSOR_SHAPE | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2437 ui_cursor_shape(); // may show different cursor shape |
7 | 2438 #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
|
2439 sb_text_end_cmdline(); |
7 | 2440 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2441 theend: |
95 | 2442 { |
2443 char_u *p = ccline.cmdbuff; | |
2444 | |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2445 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
|
2446 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
|
2447 else |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2448 ccline.cmdbuff = NULL; |
95 | 2449 return p; |
2450 } | |
7 | 2451 } |
2452 | |
2453 #if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO) | |
2454 /* | |
2455 * Get a command line with a prompt. | |
2456 * This is prepared to be called recursively from getcmdline() (e.g. by | |
2457 * f_input() when evaluating an expression from CTRL-R =). | |
2458 * Returns the command line in allocated memory, or NULL. | |
2459 */ | |
2460 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2461 getcmdline_prompt( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2462 int firstc, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2463 char_u *prompt, // command line prompt |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2464 int attr, // attributes for prompt |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2465 int xp_context, // type of expansion |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2466 char_u *xp_arg) // user-defined expansion argument |
7 | 2467 { |
2468 char_u *s; | |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
2469 cmdline_info_T save_ccline; |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2470 int did_save_ccline = FALSE; |
7 | 2471 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
|
2472 int msg_silent_save = msg_silent; |
7 | 2473 |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2474 if (ccline.cmdbuff != NULL) |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2475 { |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2476 // 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
|
2477 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
|
2478 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
|
2479 } |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2480 |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
2481 CLEAR_FIELD(ccline); |
7 | 2482 ccline.cmdprompt = prompt; |
2483 ccline.cmdattr = attr; | |
531 | 2484 # ifdef FEAT_EVAL |
2485 ccline.xp_context = xp_context; | |
2486 ccline.xp_arg = xp_arg; | |
2487 ccline.input_fn = (firstc == '@'); | |
2488 # endif | |
8694
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
2489 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
|
2490 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
|
2491 |
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
2492 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
|
2493 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
|
2494 |
8694
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
2495 msg_silent = msg_silent_save; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2496 // Restore msg_col, the prompt from input() may have changed it. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2497 // But only if called recursively and the commandline is therefore being |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2498 // restored to an old one; if not, the input() prompt stays on the screen, |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2499 // so we need its modified msg_col left intact. |
3020 | 2500 if (ccline.cmdbuff != NULL) |
2501 msg_col = msg_col_save; | |
7 | 2502 |
2503 return s; | |
2504 } | |
2505 #endif | |
2506 | |
632 | 2507 /* |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2508 * Read the 'wildmode' option, fill wim_flags[]. |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2509 */ |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2510 int |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2511 check_opt_wim(void) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2512 { |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2513 char_u new_wim_flags[4]; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2514 char_u *p; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2515 int i; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2516 int idx = 0; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2517 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2518 for (i = 0; i < 4; ++i) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2519 new_wim_flags[i] = 0; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2520 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2521 for (p = p_wim; *p; ++p) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2522 { |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2523 for (i = 0; ASCII_ISALPHA(p[i]); ++i) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2524 ; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2525 if (p[i] != NUL && p[i] != ',' && p[i] != ':') |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2526 return FAIL; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2527 if (i == 7 && STRNCMP(p, "longest", 7) == 0) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2528 new_wim_flags[idx] |= WIM_LONGEST; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2529 else if (i == 4 && STRNCMP(p, "full", 4) == 0) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2530 new_wim_flags[idx] |= WIM_FULL; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2531 else if (i == 4 && STRNCMP(p, "list", 4) == 0) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2532 new_wim_flags[idx] |= WIM_LIST; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2533 else if (i == 8 && STRNCMP(p, "lastused", 8) == 0) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2534 new_wim_flags[idx] |= WIM_BUFLASTUSED; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2535 else |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2536 return FAIL; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2537 p += i; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2538 if (*p == NUL) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2539 break; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2540 if (*p == ',') |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2541 { |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2542 if (idx == 3) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2543 return FAIL; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2544 ++idx; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2545 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2546 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2547 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2548 // fill remaining entries with last flag |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2549 while (idx < 3) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2550 { |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2551 new_wim_flags[idx + 1] = new_wim_flags[idx]; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2552 ++idx; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2553 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2554 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2555 // only when there are no errors, wim_flags[] is changed |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2556 for (i = 0; i < 4; ++i) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2557 wim_flags[i] = new_wim_flags[i]; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2558 return OK; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2559 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2560 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
2561 /* |
634 | 2562 * Return TRUE when the text must not be changed and we can't switch to |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2563 * another window or buffer. TRUE when editing the command line, evaluating |
634 | 2564 * 'balloonexpr', etc. |
632 | 2565 */ |
2566 int | |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2567 text_and_win_locked(void) |
632 | 2568 { |
2569 #ifdef FEAT_CMDWIN | |
2570 if (cmdwin_type != 0) | |
2571 return TRUE; | |
2572 #endif | |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2573 return textwinlock != 0; |
632 | 2574 } |
2575 | |
2576 /* | |
2577 * Give an error message for a command that isn't allowed while the cmdline | |
2578 * window is open or editing the cmdline in another way. | |
2579 */ | |
2580 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2581 text_locked_msg(void) |
632 | 2582 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
2583 emsg(_(get_text_locked_msg())); |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2584 } |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2585 |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
2586 char * |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2587 get_text_locked_msg(void) |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2588 { |
632 | 2589 #ifdef FEAT_CMDWIN |
2590 if (cmdwin_type != 0) | |
10082
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2591 return e_cmdwin; |
7fc6103c6651
commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2592 #endif |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2593 if (textwinlock != 0) |
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2594 return e_textwinlock; |
20118
252d2bb90394
patch 8.2.0614: get ml_get error when deleting a line in 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20045
diff
changeset
|
2595 return e_textlock; |
632 | 2596 } |
2597 | |
819 | 2598 /* |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2599 * Return TRUE when the text must not be changed and/or we cannot switch to |
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2600 * another window. TRUE while evaluating 'completefunc'. |
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2601 */ |
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2602 int |
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2603 text_locked(void) |
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2604 { |
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2605 return text_and_win_locked() || textlock != 0; |
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2606 } |
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2607 |
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
2608 /* |
1834 | 2609 * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is |
2610 * and give an error message. | |
819 | 2611 */ |
2612 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2613 curbuf_locked(void) |
819 | 2614 { |
2615 if (curbuf_lock > 0) | |
2616 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
2617 emsg(_("E788: Not allowed to edit another buffer now")); |
819 | 2618 return TRUE; |
2619 } | |
1834 | 2620 return allbuf_locked(); |
2621 } | |
2622 | |
2623 /* | |
2624 * Check if "allbuf_lock" is set and return TRUE when it is and give an error | |
2625 * message. | |
2626 */ | |
2627 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2628 allbuf_locked(void) |
1834 | 2629 { |
2630 if (allbuf_lock > 0) | |
2631 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15239
diff
changeset
|
2632 emsg(_("E811: Not allowed to change buffer information now")); |
1834 | 2633 return TRUE; |
2634 } | |
819 | 2635 return FALSE; |
2636 } | |
2637 | |
7 | 2638 static int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2639 cmdline_charsize(int idx) |
7 | 2640 { |
2641 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2642 if (cmdline_star > 0) // showing '*', always 1 position |
7 | 2643 return 1; |
2644 #endif | |
2645 return ptr2cells(ccline.cmdbuff + idx); | |
2646 } | |
2647 | |
2648 /* | |
2649 * Compute the offset of the cursor on the command line for the prompt and | |
2650 * indent. | |
2651 */ | |
2652 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2653 set_cmdspos(void) |
7 | 2654 { |
531 | 2655 if (ccline.cmdfirstc != NUL) |
7 | 2656 ccline.cmdspos = 1 + ccline.cmdindent; |
2657 else | |
2658 ccline.cmdspos = 0 + ccline.cmdindent; | |
2659 } | |
2660 | |
2661 /* | |
2662 * Compute the screen position for the cursor on the command line. | |
2663 */ | |
2664 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2665 set_cmdspos_cursor(void) |
7 | 2666 { |
2667 int i, m, c; | |
2668 | |
2669 set_cmdspos(); | |
2670 if (KeyTyped) | |
534 | 2671 { |
7 | 2672 m = Columns * Rows; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2673 if (m < 0) // overflow, Columns or Rows at weird value |
534 | 2674 m = MAXCOL; |
2675 } | |
7 | 2676 else |
2677 m = MAXCOL; | |
2678 for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i) | |
2679 { | |
2680 c = cmdline_charsize(i); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2681 // Count ">" for double-wide multi-byte char that doesn't fit. |
7 | 2682 if (has_mbyte) |
2683 correct_cmdspos(i, c); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2684 // If the cmdline doesn't fit, show cursor on last visible char. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2685 // Don't move the cursor itself, so we can still append. |
7 | 2686 if ((ccline.cmdspos += c) >= m) |
2687 { | |
2688 ccline.cmdspos -= c; | |
2689 break; | |
2690 } | |
2691 if (has_mbyte) | |
474 | 2692 i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1; |
7 | 2693 } |
2694 } | |
2695 | |
2696 /* | |
2697 * Check if the character at "idx", which is "cells" wide, is a multi-byte | |
2698 * character that doesn't fit, so that a ">" must be displayed. | |
2699 */ | |
2700 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2701 correct_cmdspos(int idx, int cells) |
7 | 2702 { |
474 | 2703 if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1 |
7 | 2704 && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1 |
2705 && ccline.cmdspos % Columns + cells > Columns) | |
2706 ccline.cmdspos++; | |
2707 } | |
2708 | |
2709 /* | |
2710 * Get an Ex command line for the ":" command. | |
2711 */ | |
2712 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2713 getexline( |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2714 int c, // normally ':', NUL for ":append" |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2715 void *cookie UNUSED, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2716 int indent, // indent for inside conditionals |
21883
a427f5f26419
patch 8.2.1491: Vim9: crash when compiling heredoc lines start with comment
Bram Moolenaar <Bram@vim.org>
parents:
20733
diff
changeset
|
2717 getline_opt_T options) |
7 | 2718 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2719 // When executing a register, remove ':' that's in front of each line. |
7 | 2720 if (exec_from_reg && vpeekc() == ':') |
2721 (void)vgetc(); | |
21883
a427f5f26419
patch 8.2.1491: Vim9: crash when compiling heredoc lines start with comment
Bram Moolenaar <Bram@vim.org>
parents:
20733
diff
changeset
|
2722 return getcmdline(c, 1L, indent, options); |
7 | 2723 } |
2724 | |
2725 /* | |
2726 * Get an Ex command line for Ex mode. | |
2727 * In Ex mode we only use the OS supplied line editing features and no | |
2728 * mappings or abbreviations. | |
168 | 2729 * Returns a string in allocated memory or NULL. |
7 | 2730 */ |
2731 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2732 getexmodeline( |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2733 int promptc, // normally ':', NUL for ":append" and '?' for |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2734 // :s prompt |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2735 void *cookie UNUSED, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2736 int indent, // indent for inside conditionals |
21883
a427f5f26419
patch 8.2.1491: Vim9: crash when compiling heredoc lines start with comment
Bram Moolenaar <Bram@vim.org>
parents:
20733
diff
changeset
|
2737 getline_opt_T options UNUSED) |
7 | 2738 { |
168 | 2739 garray_T line_ga; |
2740 char_u *pend; | |
2741 int startcol = 0; | |
1329 | 2742 int c1 = 0; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2743 int escaped = FALSE; // CTRL-V typed |
168 | 2744 int vcol = 0; |
2745 char_u *p; | |
1329 | 2746 int prev_char; |
5966 | 2747 int len; |
7 | 2748 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2749 // Switch cursor on now. This avoids that it happens after the "\n", which |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2750 // confuses the system function that computes tabstops. |
7 | 2751 cursor_on(); |
2752 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2753 // always start in column 0; write a newline if necessary |
7 | 2754 compute_cmdrow(); |
168 | 2755 if ((msg_col || msg_didout) && promptc != '?') |
7 | 2756 msg_putchar('\n'); |
168 | 2757 if (promptc == ':') |
7 | 2758 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2759 // indent that is only displayed, not in the line itself |
168 | 2760 if (p_prompt) |
2761 msg_putchar(':'); | |
7 | 2762 while (indent-- > 0) |
2763 msg_putchar(' '); | |
2764 startcol = msg_col; | |
2765 } | |
2766 | |
2767 ga_init2(&line_ga, 1, 30); | |
2768 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2769 // autoindent for :insert and :append is in the line itself |
168 | 2770 if (promptc <= 0) |
164 | 2771 { |
2772 vcol = indent; | |
2773 while (indent >= 8) | |
2774 { | |
2775 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
|
2776 msg_puts(" "); |
164 | 2777 indent -= 8; |
2778 } | |
2779 while (indent-- > 0) | |
2780 { | |
2781 ga_append(&line_ga, ' '); | |
2782 msg_putchar(' '); | |
2783 } | |
2784 } | |
168 | 2785 ++no_mapping; |
2786 ++allow_keys; | |
164 | 2787 |
7 | 2788 /* |
2789 * Get the line, one character at a time. | |
2790 */ | |
2791 got_int = FALSE; | |
168 | 2792 while (!got_int) |
7 | 2793 { |
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
|
2794 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
|
2795 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
|
2796 |
7 | 2797 if (ga_grow(&line_ga, 40) == FAIL) |
2798 break; | |
2799 | |
10970
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2800 /* |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2801 * 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
|
2802 */ |
1329 | 2803 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
|
2804 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2805 // Check for a ":normal" command and no more characters left. |
10970
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2806 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
|
2807 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
|
2808 else |
ab9f7bbe4439
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
10942
diff
changeset
|
2809 c1 = vgetc(); |
7 | 2810 |
2811 /* | |
168 | 2812 * Handle line editing. |
2813 * Previously this was left to the system, putting the terminal in | |
2814 * cooked mode, but then CTRL-D and CTRL-T can't be used properly. | |
7 | 2815 */ |
168 | 2816 if (got_int) |
2817 { | |
2818 msg_putchar('\n'); | |
2819 break; | |
2820 } | |
2821 | |
10676
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2822 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
|
2823 { |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2824 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
|
2825 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
|
2826 } |
b8c04c007d39
patch 8.0.0228: pasting in xterm on the command line has PasteStart
Christian Brabandt <cb@256bit.org>
parents:
10565
diff
changeset
|
2827 |
168 | 2828 if (!escaped) |
7 | 2829 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2830 // CR typed means "enter", which is NL |
168 | 2831 if (c1 == '\r') |
2832 c1 = '\n'; | |
2833 | |
2834 if (c1 == BS || c1 == K_BS | |
2835 || c1 == DEL || c1 == K_DEL || c1 == K_KDEL) | |
7 | 2836 { |
168 | 2837 if (line_ga.ga_len > 0) |
2838 { | |
5966 | 2839 if (has_mbyte) |
2840 { | |
2841 p = (char_u *)line_ga.ga_data; | |
2842 p[line_ga.ga_len] = NUL; | |
2843 len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1; | |
2844 line_ga.ga_len -= len; | |
2845 } | |
2846 else | |
2847 --line_ga.ga_len; | |
168 | 2848 goto redraw; |
2849 } | |
2850 continue; | |
7 | 2851 } |
2852 | |
168 | 2853 if (c1 == Ctrl_U) |
7 | 2854 { |
168 | 2855 msg_col = startcol; |
2856 msg_clr_eos(); | |
2857 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
|
2858 goto redraw; |
168 | 2859 } |
2860 | |
2861 if (c1 == Ctrl_T) | |
2862 { | |
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 sw = get_sw_value(curbuf); |
168 | 2864 p = (char_u *)line_ga.ga_data; |
2865 p[line_ga.ga_len] = NUL; | |
5995 | 2866 indent = get_indent_str(p, 8, FALSE); |
3740 | 2867 indent += sw - indent % sw; |
168 | 2868 add_indent: |
5995 | 2869 while (get_indent_str(p, 8, FALSE) < indent) |
7 | 2870 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2871 (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
|
2872 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
|
2873 s = skipwhite(p); |
168 | 2874 mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1); |
2875 *s = ' '; | |
2876 ++line_ga.ga_len; | |
7 | 2877 } |
168 | 2878 redraw: |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2879 // redraw the line |
168 | 2880 msg_col = startcol; |
2881 vcol = 0; | |
5966 | 2882 p = (char_u *)line_ga.ga_data; |
2883 p[line_ga.ga_len] = NUL; | |
2884 while (p < (char_u *)line_ga.ga_data + line_ga.ga_len) | |
7 | 2885 { |
168 | 2886 if (*p == TAB) |
7 | 2887 { |
168 | 2888 do |
2889 msg_putchar(' '); | |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
2890 while (++vcol % 8); |
5966 | 2891 ++p; |
7 | 2892 } |
168 | 2893 else |
164 | 2894 { |
18251
c8a53c0daeed
patch 8.1.2120: some MB_ macros are more complicated than necessary
Bram Moolenaar <Bram@vim.org>
parents:
18227
diff
changeset
|
2895 len = mb_ptr2len(p); |
5966 | 2896 msg_outtrans_len(p, len); |
2897 vcol += ptr2cells(p); | |
2898 p += len; | |
7 | 2899 } |
2900 } | |
168 | 2901 msg_clr_eos(); |
1329 | 2902 windgoto(msg_row, msg_col); |
168 | 2903 continue; |
2904 } | |
2905 | |
2906 if (c1 == Ctrl_D) | |
2907 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2908 // Delete one shiftwidth. |
168 | 2909 p = (char_u *)line_ga.ga_data; |
2910 if (prev_char == '0' || prev_char == '^') | |
7 | 2911 { |
168 | 2912 if (prev_char == '^') |
2913 ex_keep_indent = TRUE; | |
2914 indent = 0; | |
2915 p[--line_ga.ga_len] = NUL; | |
7 | 2916 } |
2917 else | |
2918 { | |
168 | 2919 p[line_ga.ga_len] = NUL; |
5995 | 2920 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
|
2921 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
|
2922 { |
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
|
2923 --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
|
2924 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
|
2925 } |
168 | 2926 } |
5995 | 2927 while (get_indent_str(p, 8, FALSE) > indent) |
168 | 2928 { |
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
|
2929 s = skipwhite(p); |
168 | 2930 mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1); |
2931 --line_ga.ga_len; | |
7 | 2932 } |
168 | 2933 goto add_indent; |
2934 } | |
2935 | |
2936 if (c1 == Ctrl_V || c1 == Ctrl_Q) | |
2937 { | |
2938 escaped = TRUE; | |
2939 continue; | |
7 | 2940 } |
168 | 2941 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2942 // Ignore special key codes: mouse movement, K_IGNORE, etc. |
168 | 2943 if (IS_SPECIAL(c1)) |
2944 continue; | |
7 | 2945 } |
168 | 2946 |
2947 if (IS_SPECIAL(c1)) | |
2948 c1 = '?'; | |
5966 | 2949 if (has_mbyte) |
2950 len = (*mb_char2bytes)(c1, | |
2951 (char_u *)line_ga.ga_data + line_ga.ga_len); | |
2952 else | |
2953 { | |
2954 len = 1; | |
2955 ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1; | |
2956 } | |
168 | 2957 if (c1 == '\n') |
2958 msg_putchar('\n'); | |
2959 else if (c1 == TAB) | |
2960 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2961 // Don't use chartabsize(), 'ts' can be different |
168 | 2962 do |
2963 msg_putchar(' '); | |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
2964 while (++vcol % 8); |
168 | 2965 } |
7 | 2966 else |
2967 { | |
168 | 2968 msg_outtrans_len( |
5966 | 2969 ((char_u *)line_ga.ga_data) + line_ga.ga_len, len); |
168 | 2970 vcol += char2cells(c1); |
7 | 2971 } |
5966 | 2972 line_ga.ga_len += len; |
168 | 2973 escaped = FALSE; |
2974 | |
2975 windgoto(msg_row, msg_col); | |
164 | 2976 pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len; |
168 | 2977 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2978 // We are done when a NL is entered, but not when it comes after an |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2979 // odd number of backslashes, that results in a NUL. |
2590 | 2980 if (line_ga.ga_len > 0 && pend[-1] == '\n') |
7 | 2981 { |
2590 | 2982 int bcount = 0; |
2983 | |
2984 while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\') | |
2985 ++bcount; | |
2986 | |
2987 if (bcount > 0) | |
2988 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2989 // Halve the number of backslashes: "\NL" -> "NUL", "\\NL" -> |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
2990 // "\NL", etc. |
2590 | 2991 line_ga.ga_len -= (bcount + 1) / 2; |
2992 pend -= (bcount + 1) / 2; | |
2993 pend[-1] = '\n'; | |
2994 } | |
2995 | |
2996 if ((bcount & 1) == 0) | |
2997 { | |
2998 --line_ga.ga_len; | |
2999 --pend; | |
3000 *pend = NUL; | |
3001 break; | |
3002 } | |
7 | 3003 } |
3004 } | |
3005 | |
168 | 3006 --no_mapping; |
3007 --allow_keys; | |
3008 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3009 // make following messages go to the next line |
7 | 3010 msg_didout = FALSE; |
3011 msg_col = 0; | |
3012 if (msg_row < Rows - 1) | |
3013 ++msg_row; | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3014 emsg_on_display = FALSE; // don't want ui_delay() |
7 | 3015 |
3016 if (got_int) | |
3017 ga_clear(&line_ga); | |
3018 | |
3019 return (char_u *)line_ga.ga_data; | |
3020 } | |
3021 | |
502 | 3022 # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \ |
3023 || defined(FEAT_MOUSESHAPE) || defined(PROTO) | |
7 | 3024 /* |
3025 * Return TRUE if ccline.overstrike is on. | |
3026 */ | |
3027 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3028 cmdline_overstrike(void) |
7 | 3029 { |
3030 return ccline.overstrike; | |
3031 } | |
3032 | |
3033 /* | |
3034 * Return TRUE if the cursor is at the end of the cmdline. | |
3035 */ | |
3036 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3037 cmdline_at_end(void) |
7 | 3038 { |
3039 return (ccline.cmdpos >= ccline.cmdlen); | |
3040 } | |
3041 #endif | |
3042 | |
574 | 3043 #if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO) |
7 | 3044 /* |
3045 * Return the virtual column number at the current cursor position. | |
3046 * This is used by the IM code to obtain the start of the preedit string. | |
3047 */ | |
3048 colnr_T | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3049 cmdline_getvcol_cursor(void) |
7 | 3050 { |
3051 if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen) | |
3052 return MAXCOL; | |
3053 | |
3054 if (has_mbyte) | |
3055 { | |
3056 colnr_T col; | |
3057 int i = 0; | |
3058 | |
3059 for (col = 0; i < ccline.cmdpos; ++col) | |
474 | 3060 i += (*mb_ptr2len)(ccline.cmdbuff + i); |
7 | 3061 |
3062 return col; | |
3063 } | |
3064 else | |
3065 return ccline.cmdpos; | |
3066 } | |
3067 #endif | |
3068 | |
3069 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) | |
3070 /* | |
3071 * If part of the command line is an IM preedit string, redraw it with | |
3072 * IM feedback attributes. The cursor position is restored after drawing. | |
3073 */ | |
3074 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3075 redrawcmd_preedit(void) |
7 | 3076 { |
3077 if ((State & CMDLINE) | |
3078 && xic != NULL | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3079 // && im_get_status() doesn't work when using SCIM |
7 | 3080 && !p_imdisable |
3081 && im_is_preediting()) | |
3082 { | |
3083 int cmdpos = 0; | |
3084 int cmdspos; | |
3085 int old_row; | |
3086 int old_col; | |
3087 colnr_T col; | |
3088 | |
3089 old_row = msg_row; | |
3090 old_col = msg_col; | |
531 | 3091 cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent; |
7 | 3092 |
3093 if (has_mbyte) | |
3094 { | |
3095 for (col = 0; col < preedit_start_col | |
3096 && cmdpos < ccline.cmdlen; ++col) | |
3097 { | |
3098 cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos); | |
474 | 3099 cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
7 | 3100 } |
3101 } | |
3102 else | |
3103 { | |
3104 cmdspos += preedit_start_col; | |
3105 cmdpos += preedit_start_col; | |
3106 } | |
3107 | |
3108 msg_row = cmdline_row + (cmdspos / (int)Columns); | |
3109 msg_col = cmdspos % (int)Columns; | |
3110 if (msg_row >= Rows) | |
3111 msg_row = Rows - 1; | |
3112 | |
3113 for (col = 0; cmdpos < ccline.cmdlen; ++col) | |
3114 { | |
3115 int char_len; | |
3116 int char_attr; | |
3117 | |
3118 char_attr = im_get_feedback_attr(col); | |
3119 if (char_attr < 0) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3120 break; // end of preedit string |
7 | 3121 |
3122 if (has_mbyte) | |
474 | 3123 char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
7 | 3124 else |
3125 char_len = 1; | |
3126 | |
3127 msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr); | |
3128 cmdpos += char_len; | |
3129 } | |
3130 | |
3131 msg_row = old_row; | |
3132 msg_col = old_col; | |
3133 } | |
3134 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3135 #endif // FEAT_XIM && FEAT_GUI_GTK |
7 | 3136 |
3137 /* | |
3138 * Allocate a new command line buffer. | |
3139 * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen. | |
3140 */ | |
3141 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3142 alloc_cmdbuff(int len) |
7 | 3143 { |
3144 /* | |
3145 * give some extra space to avoid having to allocate all the time | |
3146 */ | |
3147 if (len < 80) | |
3148 len = 100; | |
3149 else | |
3150 len += 20; | |
3151 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3152 ccline.cmdbuff = alloc(len); // caller should check for out-of-memory |
7 | 3153 ccline.cmdbufflen = len; |
3154 } | |
3155 | |
3156 /* | |
3157 * Re-allocate the command line to length len + something extra. | |
3158 * return FAIL for failure, OK otherwise | |
3159 */ | |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3160 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3161 realloc_cmdbuff(int len) |
7 | 3162 { |
3163 char_u *p; | |
3164 | |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
3165 if (len < ccline.cmdbufflen) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3166 return OK; // no need to resize |
2557
029ace8dff7d
Now really fix using expressions in the command line (hopefully).
Bram Moolenaar <bram@vim.org>
parents:
2556
diff
changeset
|
3167 |
7 | 3168 p = ccline.cmdbuff; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3169 alloc_cmdbuff(len); // will get some more |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3170 if (ccline.cmdbuff == NULL) // out of memory |
7 | 3171 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3172 ccline.cmdbuff = p; // keep the old one |
7 | 3173 return FAIL; |
3174 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3175 // There isn't always a NUL after the command, but it may need to be |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3176 // there, thus copy up to the NUL and add a NUL. |
2556
e065501c703a
Fix illegal memory access when using expressions in the command line.
Bram Moolenaar <bram@vim.org>
parents:
2534
diff
changeset
|
3177 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
|
3178 ccline.cmdbuff[ccline.cmdlen] = NUL; |
7 | 3179 vim_free(p); |
1718 | 3180 |
3181 if (ccline.xpc != NULL | |
3182 && ccline.xpc->xp_pattern != NULL | |
3183 && ccline.xpc->xp_context != EXPAND_NOTHING | |
3184 && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL) | |
3185 { | |
1754 | 3186 int i = (int)(ccline.xpc->xp_pattern - p); |
1718 | 3187 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3188 // If xp_pattern points inside the old cmdbuff it needs to be adjusted |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3189 // to point into the newly allocated memory. |
1718 | 3190 if (i >= 0 && i <= ccline.cmdlen) |
3191 ccline.xpc->xp_pattern = ccline.cmdbuff + i; | |
3192 } | |
3193 | |
7 | 3194 return OK; |
3195 } | |
3196 | |
359 | 3197 #if defined(FEAT_ARABIC) || defined(PROTO) |
3198 static char_u *arshape_buf = NULL; | |
3199 | |
3200 # if defined(EXITFREE) || defined(PROTO) | |
3201 void | |
17266
a9556c0ba457
patch 8.1.1632: build with EXITFREE but without +arabic fails
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
3202 free_arshape_buf(void) |
359 | 3203 { |
3204 vim_free(arshape_buf); | |
3205 } | |
3206 # endif | |
3207 #endif | |
3208 | |
7 | 3209 /* |
3210 * Draw part of the cmdline at the current cursor position. But draw stars | |
3211 * when cmdline_star is TRUE. | |
3212 */ | |
3213 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3214 draw_cmdline(int start, int len) |
7 | 3215 { |
3216 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
3217 int i; | |
3218 | |
3219 if (cmdline_star > 0) | |
3220 for (i = 0; i < len; ++i) | |
3221 { | |
3222 msg_putchar('*'); | |
3223 if (has_mbyte) | |
474 | 3224 i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1; |
7 | 3225 } |
3226 else | |
3227 #endif | |
3228 #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
|
3229 if (p_arshape && !p_tbidi && cmdline_has_arabic(start, len)) |
7 | 3230 { |
3231 static int buflen = 0; | |
3232 char_u *p; | |
3233 int j; | |
3234 int newlen = 0; | |
3235 int mb_l; | |
719 | 3236 int pc, pc1 = 0; |
7 | 3237 int prev_c = 0; |
3238 int prev_c1 = 0; | |
714 | 3239 int u8c; |
3240 int u8cc[MAX_MCO]; | |
7 | 3241 int nc = 0; |
3242 | |
3243 /* | |
3244 * Do arabic shaping into a temporary buffer. This is very | |
3245 * inefficient! | |
3246 */ | |
507 | 3247 if (len * 2 + 2 > buflen) |
7 | 3248 { |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3249 // Re-allocate the buffer. We keep it around to avoid a lot of |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3250 // alloc()/free() calls. |
359 | 3251 vim_free(arshape_buf); |
507 | 3252 buflen = len * 2 + 2; |
359 | 3253 arshape_buf = alloc(buflen); |
3254 if (arshape_buf == NULL) | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3255 return; // out of memory |
7 | 3256 } |
3257 | |
507 | 3258 if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start))) |
3259 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3260 // Prepend a space to draw the leading composing char on. |
507 | 3261 arshape_buf[0] = ' '; |
3262 newlen = 1; | |
3263 } | |
3264 | |
7 | 3265 for (j = start; j < start + len; j += mb_l) |
3266 { | |
3267 p = ccline.cmdbuff + j; | |
714 | 3268 u8c = utfc_ptr2char_len(p, u8cc, start + len - j); |
474 | 3269 mb_l = utfc_ptr2len_len(p, start + len - j); |
7 | 3270 if (ARABIC_CHAR(u8c)) |
3271 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3272 // Do Arabic shaping. |
7 | 3273 if (cmdmsg_rl) |
3274 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3275 // displaying from right to left |
7 | 3276 pc = prev_c; |
3277 pc1 = prev_c1; | |
714 | 3278 prev_c1 = u8cc[0]; |
7 | 3279 if (j + mb_l >= start + len) |
3280 nc = NUL; | |
3281 else | |
3282 nc = utf_ptr2char(p + mb_l); | |
3283 } | |
3284 else | |
3285 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3286 // displaying from left to right |
7 | 3287 if (j + mb_l >= start + len) |
3288 pc = NUL; | |
3289 else | |
714 | 3290 { |
3291 int pcc[MAX_MCO]; | |
3292 | |
3293 pc = utfc_ptr2char_len(p + mb_l, pcc, | |
7 | 3294 start + len - j - mb_l); |
714 | 3295 pc1 = pcc[0]; |
3296 } | |
7 | 3297 nc = prev_c; |
3298 } | |
3299 prev_c = u8c; | |
3300 | |
714 | 3301 u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc); |
7 | 3302 |
359 | 3303 newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen); |
714 | 3304 if (u8cc[0] != 0) |
7 | 3305 { |
714 | 3306 newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen); |
3307 if (u8cc[1] != 0) | |
3308 newlen += (*mb_char2bytes)(u8cc[1], | |
359 | 3309 arshape_buf + newlen); |
7 | 3310 } |
3311 } | |
3312 else | |
3313 { | |
3314 prev_c = u8c; | |
359 | 3315 mch_memmove(arshape_buf + newlen, p, mb_l); |
7 | 3316 newlen += mb_l; |
3317 } | |
3318 } | |
3319 | |
359 | 3320 msg_outtrans_len(arshape_buf, newlen); |
7 | 3321 } |
3322 else | |
3323 #endif | |
3324 msg_outtrans_len(ccline.cmdbuff + start, len); | |
3325 } | |
3326 | |
3327 /* | |
3328 * Put a character on the command line. Shifts the following text to the | |
3329 * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc. | |
3330 * "c" must be printable (fit in one display cell)! | |
3331 */ | |
3332 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3333 putcmdline(int c, int shift) |
7 | 3334 { |
3335 if (cmd_silent) | |
3336 return; | |
3337 msg_no_more = TRUE; | |
3338 msg_putchar(c); | |
3339 if (shift) | |
3340 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); | |
3341 msg_no_more = FALSE; | |
3342 cursorcmd(); | |
11674
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
3343 extra_char = c; |
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
3344 extra_char_shift = shift; |
7 | 3345 } |
3346 | |
3347 /* | |
3348 * Undo a putcmdline(c, FALSE). | |
3349 */ | |
3350 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3351 unputcmdline(void) |
7 | 3352 { |
3353 if (cmd_silent) | |
3354 return; | |
3355 msg_no_more = TRUE; | |
3356 if (ccline.cmdlen == ccline.cmdpos) | |
3357 msg_putchar(' '); | |
3558 | 3358 else if (has_mbyte) |
3359 draw_cmdline(ccline.cmdpos, | |
3360 (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos)); | |
7 | 3361 else |
3362 draw_cmdline(ccline.cmdpos, 1); | |
3363 msg_no_more = FALSE; | |
3364 cursorcmd(); | |
11674
d093e4167733
patch 8.0.0720: unfinished mapping not displayed when running timer
Christian Brabandt <cb@256bit.org>
parents:
11664
diff
changeset
|
3365 extra_char = NUL; |
7 | 3366 } |
3367 | |
3368 /* | |
3369 * Put the given string, of the given length, onto the command line. | |
3370 * If len is -1, then STRLEN() is used to calculate the length. | |
3371 * If 'redraw' is TRUE then the new part of the command line, and the remaining | |
3372 * part will be redrawn, otherwise it will not. If this function is called | |
3373 * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be | |
3374 * called afterwards. | |
3375 */ | |
3376 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3377 put_on_cmdline(char_u *str, int len, int redraw) |
7 | 3378 { |
3379 int retval; | |
3380 int i; | |
3381 int m; | |
3382 int c; | |
3383 | |
3384 if (len < 0) | |
3385 len = (int)STRLEN(str); | |
3386 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3387 // Check if ccline.cmdbuff needs to be longer |
7 | 3388 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
|
3389 retval = realloc_cmdbuff(ccline.cmdlen + len + 1); |
7 | 3390 else |
3391 retval = OK; | |
3392 if (retval == OK) | |
3393 { | |
3394 if (!ccline.overstrike) | |
3395 { | |
3396 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, | |
3397 ccline.cmdbuff + ccline.cmdpos, | |
3398 (size_t)(ccline.cmdlen - ccline.cmdpos)); | |
3399 ccline.cmdlen += len; | |
3400 } | |
3401 else | |
3402 { | |
3403 if (has_mbyte) | |
3404 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3405 // Count nr of characters in the new string. |
7 | 3406 m = 0; |
474 | 3407 for (i = 0; i < len; i += (*mb_ptr2len)(str + i)) |
7 | 3408 ++m; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3409 // Count nr of bytes in cmdline that are overwritten by these |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3410 // characters. |
7 | 3411 for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0; |
474 | 3412 i += (*mb_ptr2len)(ccline.cmdbuff + i)) |
7 | 3413 --m; |
3414 if (i < ccline.cmdlen) | |
3415 { | |
3416 mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, | |
3417 ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i)); | |
3418 ccline.cmdlen += ccline.cmdpos + len - i; | |
3419 } | |
3420 else | |
3421 ccline.cmdlen = ccline.cmdpos + len; | |
3422 } | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
3423 else if (ccline.cmdpos + len > ccline.cmdlen) |
7 | 3424 ccline.cmdlen = ccline.cmdpos + len; |
3425 } | |
3426 mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len); | |
3427 ccline.cmdbuff[ccline.cmdlen] = NUL; | |
3428 | |
3429 if (enc_utf8) | |
3430 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3431 // When the inserted text starts with a composing character, |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3432 // backup to the character before it. There could be two of them. |
7 | 3433 i = 0; |
3434 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); | |
3435 while (ccline.cmdpos > 0 && utf_iscomposing(c)) | |
3436 { | |
3437 i = (*mb_head_off)(ccline.cmdbuff, | |
3438 ccline.cmdbuff + ccline.cmdpos - 1) + 1; | |
3439 ccline.cmdpos -= i; | |
3440 len += i; | |
3441 c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); | |
3442 } | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
3443 #ifdef FEAT_ARABIC |
7 | 3444 if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c)) |
3445 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3446 // Check the previous character for Arabic combining pair. |
7 | 3447 i = (*mb_head_off)(ccline.cmdbuff, |
3448 ccline.cmdbuff + ccline.cmdpos - 1) + 1; | |
3449 if (arabic_combine(utf_ptr2char(ccline.cmdbuff | |
3450 + ccline.cmdpos - i), c)) | |
3451 { | |
3452 ccline.cmdpos -= i; | |
3453 len += i; | |
3454 } | |
3455 else | |
3456 i = 0; | |
3457 } | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15575
diff
changeset
|
3458 #endif |
7 | 3459 if (i != 0) |
3460 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3461 // Also backup the cursor position. |
7 | 3462 i = ptr2cells(ccline.cmdbuff + ccline.cmdpos); |
3463 ccline.cmdspos -= i; | |
3464 msg_col -= i; | |
3465 if (msg_col < 0) | |
3466 { | |
3467 msg_col += Columns; | |
3468 --msg_row; | |
3469 } | |
3470 } | |
3471 } | |
3472 | |
3473 if (redraw && !cmd_silent) | |
3474 { | |
3475 msg_no_more = TRUE; | |
3476 i = cmdline_row; | |
3114 | 3477 cursorcmd(); |
7 | 3478 draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3479 // Avoid clearing the rest of the line too often. |
7 | 3480 if (cmdline_row != i || ccline.overstrike) |
3481 msg_clr_eos(); | |
3482 msg_no_more = FALSE; | |
3483 } | |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3484 if (KeyTyped) |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3485 { |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3486 m = Columns * Rows; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3487 if (m < 0) // overflow, Columns or Rows at weird value |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3488 m = MAXCOL; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3489 } |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3490 else |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3491 m = MAXCOL; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3492 for (i = 0; i < len; ++i) |
7 | 3493 { |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3494 c = cmdline_charsize(ccline.cmdpos); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3495 // count ">" for a double-wide char that doesn't fit. |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3496 if (has_mbyte) |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3497 correct_cmdspos(ccline.cmdpos, c); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3498 // Stop cursor at the end of the screen, but do increment the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3499 // insert position, so that entering a very long command |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3500 // works, even though you can't see it. |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3501 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
|
3502 ccline.cmdspos += c; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3503 |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3504 if (has_mbyte) |
7 | 3505 { |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3506 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
|
3507 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
|
3508 c = len - i - 1; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3509 ccline.cmdpos += c; |
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3510 i += c; |
7 | 3511 } |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3512 ++ccline.cmdpos; |
7 | 3513 } |
3514 } | |
3515 if (redraw) | |
3516 msg_check(); | |
3517 return retval; | |
3518 } | |
3519 | |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3520 static cmdline_info_T prev_ccline; |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3521 static int prev_ccline_used = FALSE; |
95 | 3522 |
3523 /* | |
3524 * Save ccline, because obtaining the "=" register may execute "normal :cmd" | |
3525 * and overwrite it. But get_cmdline_str() may need it, thus make it | |
3526 * available globally in prev_ccline. | |
3527 */ | |
3528 static void | |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3529 save_cmdline(cmdline_info_T *ccp) |
95 | 3530 { |
3531 if (!prev_ccline_used) | |
3532 { | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19892
diff
changeset
|
3533 CLEAR_FIELD(prev_ccline); |
95 | 3534 prev_ccline_used = TRUE; |
3535 } | |
3536 *ccp = prev_ccline; | |
3537 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
|
3538 ccline.cmdbuff = NULL; // signal that ccline is not in use |
95 | 3539 } |
3540 | |
3541 /* | |
1214 | 3542 * Restore ccline after it has been saved with save_cmdline(). |
95 | 3543 */ |
3544 static void | |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3545 restore_cmdline(cmdline_info_T *ccp) |
95 | 3546 { |
3547 ccline = prev_ccline; | |
3548 prev_ccline = *ccp; | |
3549 } | |
3550 | |
15 | 3551 /* |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
3552 * 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
|
3553 * Used by CTRL-R command in command-line mode. |
15 | 3554 * insert_reg() can't be used here, because special characters from the |
3555 * register contents will be interpreted as commands. | |
3556 * | |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
3557 * Return FAIL for failure, OK otherwise. |
15 | 3558 */ |
3559 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3560 cmdline_paste( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3561 int regname, |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3562 int literally, // Insert text literally instead of "as typed" |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3563 int remcr) // remove trailing CR |
15 | 3564 { |
3565 long i; | |
3566 char_u *arg; | |
772 | 3567 char_u *p; |
15 | 3568 int allocated; |
3569 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3570 // check for valid regname; also accept special characters for CTRL-R in |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3571 // the command line |
15 | 3572 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
|
3573 && 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
|
3574 && !valid_yank_reg(regname, FALSE)) |
15 | 3575 return FAIL; |
3576 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3577 // A register containing CTRL-R can cause an endless loop. Allow using |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3578 // CTRL-C to break the loop. |
15 | 3579 line_breakcheck(); |
3580 if (got_int) | |
3581 return FAIL; | |
3582 | |
3583 #ifdef FEAT_CLIPBOARD | |
3584 regname = may_get_selection(regname); | |
3585 #endif | |
3586 | |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
3587 // Need to set "textwinlock" to avoid nasty things like going to another |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
3588 // buffer when evaluating an expression. |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
3589 ++textwinlock; |
15 | 3590 i = get_spec_reg(regname, &arg, &allocated, TRUE); |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20213
diff
changeset
|
3591 --textwinlock; |
15 | 3592 |
3593 if (i) | |
3594 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3595 // Got the value of a special register in "arg". |
15 | 3596 if (arg == NULL) |
3597 return FAIL; | |
772 | 3598 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3599 // When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3600 // part of the word. |
772 | 3601 p = arg; |
3602 if (p_is && regname == Ctrl_W) | |
3603 { | |
3604 char_u *w; | |
3605 int len; | |
3606 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3607 // Locate start of last word in the cmd buffer. |
2937 | 3608 for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; ) |
772 | 3609 { |
3610 if (has_mbyte) | |
3611 { | |
3612 len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1; | |
3613 if (!vim_iswordc(mb_ptr2char(w - len))) | |
3614 break; | |
3615 w -= len; | |
3616 } | |
3617 else | |
3618 { | |
3619 if (!vim_iswordc(w[-1])) | |
3620 break; | |
3621 --w; | |
3622 } | |
3623 } | |
2937 | 3624 len = (int)((ccline.cmdbuff + ccline.cmdpos) - w); |
772 | 3625 if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0) |
3626 p += len; | |
3627 } | |
3628 | |
3629 cmdline_paste_str(p, literally); | |
15 | 3630 if (allocated) |
3631 vim_free(arg); | |
3632 return OK; | |
3633 } | |
3634 | |
1015 | 3635 return cmdline_paste_reg(regname, literally, remcr); |
15 | 3636 } |
3637 | |
3638 /* | |
3639 * Put a string on the command line. | |
3640 * When "literally" is TRUE, insert literally. | |
3641 * When "literally" is FALSE, insert as typed, but don't leave the command | |
3642 * line. | |
3643 */ | |
3644 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3645 cmdline_paste_str(char_u *s, int literally) |
15 | 3646 { |
3647 int c, cv; | |
3648 | |
3649 if (literally) | |
3650 put_on_cmdline(s, -1, TRUE); | |
3651 else | |
3652 while (*s != NUL) | |
3653 { | |
3654 cv = *s; | |
3655 if (cv == Ctrl_V && s[1]) | |
3656 ++s; | |
3657 if (has_mbyte) | |
1606 | 3658 c = mb_cptr2char_adv(&s); |
15 | 3659 else |
3660 c = *s++; | |
3628 | 3661 if (cv == Ctrl_V || c == ESC || c == Ctrl_C |
3662 || c == CAR || c == NL || c == Ctrl_L | |
15 | 3663 #ifdef UNIX |
3664 || c == intr_char | |
3665 #endif | |
3666 || (c == Ctrl_BSL && *s == Ctrl_N)) | |
3667 stuffcharReadbuff(Ctrl_V); | |
3668 stuffcharReadbuff(c); | |
3669 } | |
3670 } | |
3671 | |
7 | 3672 /* |
9066
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
3673 * 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
|
3674 * 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
|
3675 * overwritten. |
7 | 3676 */ |
3677 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3678 redrawcmdline(void) |
7 | 3679 { |
11416
32aed0993813
patch 8.0.0592: if a job writes to a buffer screen is not updated
Christian Brabandt <cb@256bit.org>
parents:
11321
diff
changeset
|
3680 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
|
3681 } |
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
|
3682 |
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
|
3683 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
|
3684 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
|
3685 { |
7 | 3686 if (cmd_silent) |
3687 return; | |
3688 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
|
3689 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
|
3690 compute_cmdrow(); |
7 | 3691 redrawcmd(); |
3692 cursorcmd(); | |
3693 } | |
3694 | |
3695 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3696 redrawcmdprompt(void) |
7 | 3697 { |
3698 int i; | |
3699 | |
3700 if (cmd_silent) | |
3701 return; | |
531 | 3702 if (ccline.cmdfirstc != NUL) |
7 | 3703 msg_putchar(ccline.cmdfirstc); |
3704 if (ccline.cmdprompt != NULL) | |
3705 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3706 msg_puts_attr((char *)ccline.cmdprompt, ccline.cmdattr); |
7 | 3707 ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns; |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3708 // do the reverse of set_cmdspos() |
531 | 3709 if (ccline.cmdfirstc != NUL) |
7 | 3710 --ccline.cmdindent; |
3711 } | |
3712 else | |
3713 for (i = ccline.cmdindent; i > 0; --i) | |
3714 msg_putchar(' '); | |
3715 } | |
3716 | |
3717 /* | |
3718 * Redraw what is currently on the command line. | |
3719 */ | |
3720 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3721 redrawcmd(void) |
7 | 3722 { |
3723 if (cmd_silent) | |
3724 return; | |
3725 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3726 // when 'incsearch' is set there may be no command line while redrawing |
683 | 3727 if (ccline.cmdbuff == NULL) |
3728 { | |
3729 windgoto(cmdline_row, 0); | |
3730 msg_clr_eos(); | |
3731 return; | |
3732 } | |
3733 | |
7 | 3734 msg_start(); |
3735 redrawcmdprompt(); | |
3736 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3737 // Don't use more prompt, truncate the cmdline if it doesn't fit. |
7 | 3738 msg_no_more = TRUE; |
3739 draw_cmdline(0, ccline.cmdlen); | |
3740 msg_clr_eos(); | |
3741 msg_no_more = FALSE; | |
3742 | |
3743 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
|
3744 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
|
3745 putcmdline(extra_char, extra_char_shift); |
7 | 3746 |
3747 /* | |
3748 * An emsg() before may have set msg_scroll. This is used in normal mode, | |
3749 * in cmdline mode we can reset them now. | |
3750 */ | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3751 msg_scroll = FALSE; // next message overwrites cmdline |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3752 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3753 // Typing ':' at the more prompt may set skip_redraw. We don't want this |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3754 // in cmdline mode |
7 | 3755 skip_redraw = FALSE; |
3756 } | |
3757 | |
3758 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3759 compute_cmdrow(void) |
7 | 3760 { |
540 | 3761 if (exmode_active || msg_scrolled != 0) |
7 | 3762 cmdline_row = Rows - 1; |
3763 else | |
3764 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
|
3765 + lastwin->w_status_height; |
7 | 3766 } |
3767 | |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3768 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3769 cursorcmd(void) |
7 | 3770 { |
3771 if (cmd_silent) | |
3772 return; | |
3773 | |
3774 #ifdef FEAT_RIGHTLEFT | |
3775 if (cmdmsg_rl) | |
3776 { | |
3777 msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1)); | |
3778 msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1; | |
3779 if (msg_row <= 0) | |
3780 msg_row = Rows - 1; | |
3781 } | |
3782 else | |
3783 #endif | |
3784 { | |
3785 msg_row = cmdline_row + (ccline.cmdspos / (int)Columns); | |
3786 msg_col = ccline.cmdspos % (int)Columns; | |
3787 if (msg_row >= Rows) | |
3788 msg_row = Rows - 1; | |
3789 } | |
3790 | |
3791 windgoto(msg_row, msg_col); | |
3792 #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
|
3793 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
|
3794 redrawcmd_preedit(); |
7 | 3795 #endif |
3796 #ifdef MCH_CURSOR_SHAPE | |
3797 mch_update_cursor(); | |
3798 #endif | |
3799 } | |
3800 | |
3801 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3802 gotocmdline(int clr) |
7 | 3803 { |
3804 msg_start(); | |
3805 #ifdef FEAT_RIGHTLEFT | |
3806 if (cmdmsg_rl) | |
3807 msg_col = Columns - 1; | |
3808 else | |
3809 #endif | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3810 msg_col = 0; // always start in column 0 |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3811 if (clr) // clear the bottom line(s) |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3812 msg_clr_eos(); // will reset clear_cmdline |
7 | 3813 windgoto(cmdline_row, 0); |
3814 } | |
3815 | |
3816 /* | |
3817 * Check the word in front of the cursor for an abbreviation. | |
3818 * Called when the non-id character "c" has been entered. | |
3819 * When an abbreviation is recognized it is removed from the text with | |
3820 * backspaces and the replacement string is inserted, followed by "c". | |
3821 */ | |
3822 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3823 ccheck_abbr(int c) |
7 | 3824 { |
13933
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3825 int spos = 0; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3826 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3827 if (p_paste || no_abbr) // no abbreviations or in paste mode |
7 | 3828 return FALSE; |
3829 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3830 // Do not consider '<,'> be part of the mapping, skip leading whitespace. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3831 // Actually accepts any mark. |
13933
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3832 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
|
3833 spos++; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3834 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
|
3835 && ccline.cmdbuff[spos] == '\'' |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3836 && 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
|
3837 && 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
|
3838 spos += 5; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3839 else |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3840 // check abbreviation from the beginning of the commandline |
13933
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3841 spos = 0; |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3842 |
bea665293ea0
patch 8.0.1837: one character cmdline abbreviation not triggered after '<,'>
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
3843 return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, spos); |
7 | 3844 } |
3845 | |
3846 /* | |
1586 | 3847 * Escape special characters in "fname" for when used as a file name argument |
3848 * after a Vim command, or, when "shell" is non-zero, a shell command. | |
3849 * Returns the result in allocated memory. | |
3850 */ | |
3851 char_u * | |
18139
59bc3cd42cf5
patch 8.1.2064: MS-Windows: compiler warnings for unused arguments
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
3852 vim_strsave_fnameescape(char_u *fname, int shell UNUSED) |
1586 | 3853 { |
1685 | 3854 char_u *p; |
1586 | 3855 #ifdef BACKSLASH_IN_FILENAME |
3856 char_u buf[20]; | |
3857 int j = 0; | |
3858 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3859 // Don't escape '[', '{' and '!' if they are in 'isfname'. |
1586 | 3860 for (p = PATH_ESC_CHARS; *p != NUL; ++p) |
5481 | 3861 if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p)) |
1586 | 3862 buf[j++] = *p; |
3863 buf[j] = NUL; | |
1700 | 3864 p = vim_strsave_escaped(fname, buf); |
1586 | 3865 #else |
1685 | 3866 p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS); |
3867 if (shell && csh_like_shell() && p != NULL) | |
3868 { | |
3869 char_u *s; | |
3870 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3871 // For csh and similar shells need to put two backslashes before '!'. |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3872 // One is taken by Vim, one by the shell. |
1685 | 3873 s = vim_strsave_escaped(p, (char_u *)"!"); |
3874 vim_free(p); | |
3875 p = s; | |
3876 } | |
1700 | 3877 #endif |
3878 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3879 // '>' and '+' are special at the start of some commands, e.g. ":edit" and |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3880 // ":write". "cd -" has a special meaning. |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2433
diff
changeset
|
3881 if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL))) |
1700 | 3882 escape_fname(&p); |
3883 | |
1685 | 3884 return p; |
1586 | 3885 } |
3886 | |
3887 /* | |
435 | 3888 * Put a backslash before the file name in "pp", which is in allocated memory. |
3889 */ | |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3890 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3891 escape_fname(char_u **pp) |
435 | 3892 { |
3893 char_u *p; | |
3894 | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16706
diff
changeset
|
3895 p = alloc(STRLEN(*pp) + 2); |
435 | 3896 if (p != NULL) |
3897 { | |
3898 p[0] = '\\'; | |
3899 STRCPY(p + 1, *pp); | |
3900 vim_free(*pp); | |
3901 *pp = p; | |
3902 } | |
3903 } | |
3904 | |
3905 /* | |
7 | 3906 * For each file name in files[num_files]: |
3907 * If 'orig_pat' starts with "~/", replace the home directory with "~". | |
3908 */ | |
3909 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3910 tilde_replace( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3911 char_u *orig_pat, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3912 int num_files, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3913 char_u **files) |
7 | 3914 { |
3915 int i; | |
3916 char_u *p; | |
3917 | |
3918 if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1])) | |
3919 { | |
3920 for (i = 0; i < num_files; ++i) | |
3921 { | |
3922 p = home_replace_save(NULL, files[i]); | |
3923 if (p != NULL) | |
3924 { | |
3925 vim_free(files[i]); | |
3926 files[i] = p; | |
3927 } | |
3928 } | |
3929 } | |
3930 } | |
3931 | |
3932 /* | |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3933 * Get a pointer to the current command line info. |
7 | 3934 */ |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3935 cmdline_info_T * |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3936 get_cmdline_info(void) |
7 | 3937 { |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3938 return &ccline; |
7 | 3939 } |
3940 | |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
3941 #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
|
3942 /* |
14854
3b72808fbb0d
patch 8.1.0439: recursive use of getcmdline() still not protected
Christian Brabandt <cb@256bit.org>
parents:
14848
diff
changeset
|
3943 * 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
|
3944 * 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
|
3945 */ |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3946 static cmdline_info_T * |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3947 get_ccline_ptr(void) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3948 { |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3949 if ((State & CMDLINE) == 0) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3950 return NULL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3951 if (ccline.cmdbuff != NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3952 return &ccline; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3953 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
|
3954 return &prev_ccline; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3955 return NULL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3956 } |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
3957 #endif |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
3958 |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
3959 #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
|
3960 /* |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3961 * 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
|
3962 * 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
|
3963 * Returns NULL when something is wrong. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3964 */ |
17970
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3965 static char_u * |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3966 get_cmdline_str(void) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3967 { |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3968 cmdline_info_T *p; |
14848
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
3969 |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
3970 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
|
3971 return NULL; |
45d8aa272dbe
patch 8.1.0436: can get the text of inputsecret() with getcmdline()
Christian Brabandt <cb@256bit.org>
parents:
14842
diff
changeset
|
3972 p = get_ccline_ptr(); |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3973 if (p == NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3974 return NULL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3975 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
|
3976 } |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3977 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3978 /* |
17970
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3979 * "getcmdline()" function |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3980 */ |
17970
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3981 void |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3982 f_getcmdline(typval_T *argvars UNUSED, typval_T *rettv) |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3983 { |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3984 rettv->v_type = VAR_STRING; |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3985 rettv->vval.v_string = get_cmdline_str(); |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3986 } |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3987 |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3988 /* |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3989 * "getcmdpos()" function |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3990 */ |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3991 void |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3992 f_getcmdpos(typval_T *argvars UNUSED, typval_T *rettv) |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3993 { |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
3994 cmdline_info_T *p = get_ccline_ptr(); |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3995 |
17970
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3996 rettv->vval.v_number = 0; |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3997 if (p != NULL) |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
3998 rettv->vval.v_number = p->cmdpos + 1; |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
3999 } |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4000 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4001 /* |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4002 * 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
|
4003 * 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
|
4004 * 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
|
4005 */ |
17970
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4006 static int |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4007 set_cmdline_pos( |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4008 int pos) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4009 { |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
4010 cmdline_info_T *p = get_ccline_ptr(); |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4011 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4012 if (p == NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4013 return 1; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4014 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4015 // The position is not set directly but after CTRL-\ e or CTRL-R = has |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4016 // changed the command line. |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4017 if (pos < 0) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4018 new_cmdpos = 0; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4019 else |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4020 new_cmdpos = pos; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4021 return 0; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4022 } |
17970
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4023 |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4024 /* |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4025 * "setcmdpos()" function |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4026 */ |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4027 void |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4028 f_setcmdpos(typval_T *argvars, typval_T *rettv) |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4029 { |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4030 int pos = (int)tv_get_number(&argvars[0]) - 1; |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4031 |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4032 if (pos >= 0) |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4033 rettv->vval.v_number = set_cmdline_pos(pos); |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4034 } |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4035 |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4036 /* |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4037 * "getcmdtype()" function |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4038 */ |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4039 void |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4040 f_getcmdtype(typval_T *argvars UNUSED, typval_T *rettv) |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4041 { |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4042 rettv->v_type = VAR_STRING; |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4043 rettv->vval.v_string = alloc(2); |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4044 if (rettv->vval.v_string != NULL) |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4045 { |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4046 rettv->vval.v_string[0] = get_cmdline_type(); |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4047 rettv->vval.v_string[1] = NUL; |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4048 } |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4049 } |
684a15da9929
patch 8.1.1981: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17922
diff
changeset
|
4050 |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4051 #endif |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4052 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4053 #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
|
4054 /* |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4055 * Get the current command-line type. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4056 * Returns ':' or '/' or '?' or '@' or '>' or '-' |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4057 * 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
|
4058 * Returns NUL when something is wrong. |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4059 */ |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4060 int |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4061 get_cmdline_type(void) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4062 { |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
4063 cmdline_info_T *p = get_ccline_ptr(); |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4064 |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4065 if (p == NULL) |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4066 return NUL; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4067 if (p->cmdfirstc == NUL) |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
4068 return |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
4069 # ifdef FEAT_EVAL |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
4070 (p->input_fn) ? '@' : |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
4071 # endif |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
4072 '-'; |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4073 return p->cmdfirstc; |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4074 } |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4075 #endif |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
4076 |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4077 /* |
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4078 * 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
|
4079 */ |
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4080 int |
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4081 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
|
4082 { |
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4083 return ccline.cmdfirstc; |
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4084 } |
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4085 |
7 | 4086 /* |
4087 * Get indices "num1,num2" that specify a range within a list (not a range of | |
4088 * text lines in a buffer!) from a string. Used for ":history" and ":clist". | |
4089 * Returns OK if parsed successfully, otherwise FAIL. | |
4090 */ | |
4091 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4092 get_list_range(char_u **str, int *num1, int *num2) |
7 | 4093 { |
4094 int len; | |
4095 int first = FALSE; | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9301
diff
changeset
|
4096 varnumber_T num; |
7 | 4097 |
4098 *str = skipwhite(*str); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4099 if (**str == '-' || vim_isdigit(**str)) // parse "from" part of range |
7 | 4100 { |
16706
77bcb5055fec
patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents:
16606
diff
changeset
|
4101 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE); |
7 | 4102 *str += len; |
4103 *num1 = (int)num; | |
4104 first = TRUE; | |
4105 } | |
4106 *str = skipwhite(*str); | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4107 if (**str == ',') // parse "to" part of range |
7 | 4108 { |
4109 *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
|
4110 vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0, FALSE); |
7 | 4111 if (len > 0) |
4112 { | |
4113 *num2 = (int)num; | |
4114 *str = skipwhite(*str + len); | |
4115 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4116 else if (!first) // no number given at all |
7 | 4117 return FAIL; |
4118 } | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4119 else if (first) // only one number given |
7 | 4120 *num2 = *num1; |
4121 return OK; | |
4122 } | |
4123 | |
4124 #if defined(FEAT_CMDWIN) || defined(PROTO) | |
4125 /* | |
18679
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4126 * Check value of 'cedit' and set cedit_key. |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4127 * Returns NULL if value is OK, error message otherwise. |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4128 */ |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4129 char * |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4130 check_cedit(void) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4131 { |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4132 int n; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4133 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4134 if (*p_cedit == NUL) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4135 cedit_key = -1; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4136 else |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4137 { |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4138 n = string_to_key(p_cedit, FALSE); |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4139 if (vim_isprintc(n)) |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4140 return e_invarg; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4141 cedit_key = n; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4142 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4143 return NULL; |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4144 } |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4145 |
fd95d4dbeb37
patch 8.1.2331: the option.c file is still very big
Bram Moolenaar <Bram@vim.org>
parents:
18463
diff
changeset
|
4146 /* |
7 | 4147 * Open a window on the current command line and history. Allow editing in |
4148 * the window. Returns when the window is closed. | |
4149 * Returns: | |
4150 * CR if the command is to be executed | |
4151 * Ctrl_C if it is to be abandoned | |
4152 * K_IGNORE if editing continues | |
4153 */ | |
4154 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
|
4155 open_cmdwin(void) |
7 | 4156 { |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
4157 bufref_T old_curbuf; |
7 | 4158 win_T *old_curwin = curwin; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
4159 bufref_T bufref; |
7 | 4160 win_T *wp; |
4161 int i; | |
4162 linenr_T lnum; | |
4163 int histtype; | |
4164 garray_T winsizes; | |
4165 int save_restart_edit = restart_edit; | |
4166 int save_State = State; | |
4167 int save_exmode = exmode_active; | |
510 | 4168 #ifdef FEAT_RIGHTLEFT |
4169 int save_cmdmsg_rl = cmdmsg_rl; | |
4170 #endif | |
6145 | 4171 #ifdef FEAT_FOLDING |
4172 int save_KeyTyped; | |
4173 #endif | |
7 | 4174 |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4175 // Can't do this recursively. Can't do it when typing a password. |
7 | 4176 if (cmdwin_type != 0 |
4177 # if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
4178 || cmdline_star > 0 | |
4179 # endif | |
4180 ) | |
4181 { | |
4182 beep_flush(); | |
4183 return K_IGNORE; | |
4184 } | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
4185 set_bufref(&old_curbuf, curbuf); |
7 | 4186 |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4187 // Save current window sizes. |
7 | 4188 win_size_save(&winsizes); |
4189 | |
15569
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
4190 // 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
|
4191 // 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
|
4192 pum_undisplay(); |
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
4193 |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4194 // don't use a new tab page |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22260
diff
changeset
|
4195 cmdmod.cmod_tab = 0; |
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22260
diff
changeset
|
4196 cmdmod.cmod_flags |= CMOD_NOSWAPFILE; |
683 | 4197 |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4198 // Create a window for the command-line buffer. |
7 | 4199 if (win_split((int)p_cwh, WSP_BOT) == FAIL) |
4200 { | |
4201 beep_flush(); | |
19685
d64f403289db
patch 8.2.0399: various memory leaks
Bram Moolenaar <Bram@vim.org>
parents:
19475
diff
changeset
|
4202 ga_clear(&winsizes); |
7 | 4203 return K_IGNORE; |
4204 } | |
20717
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
4205 // Don't let quitting the More prompt make this fail. |
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
4206 got_int = FALSE; |
7 | 4207 |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4208 // Create the command-line buffer empty. |
20717
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
4209 if (do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL) == FAIL) |
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
4210 { |
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
4211 // Some autocommand messed it up? |
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
4212 win_close(curwin, TRUE); |
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
4213 ga_clear(&winsizes); |
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
4214 return Ctrl_C; |
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
4215 } |
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
4216 cmdwin_type = get_cmdline_type(); |
abebcc20af26
patch 8.2.0911: crash when opening a buffer for the cmdline window fails
Bram Moolenaar <Bram@vim.org>
parents:
20229
diff
changeset
|
4217 |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
19685
diff
changeset
|
4218 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); |
1621 | 4219 (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE); |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
19685
diff
changeset
|
4220 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
7 | 4221 set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL); |
4222 curbuf->b_p_ma = TRUE; | |
1865 | 4223 #ifdef FEAT_FOLDING |
4224 curwin->w_p_fen = FALSE; | |
4225 #endif | |
7 | 4226 # ifdef FEAT_RIGHTLEFT |
510 | 4227 curwin->w_p_rl = cmdmsg_rl; |
4228 cmdmsg_rl = FALSE; | |
7 | 4229 # endif |
2583 | 4230 RESET_BINDING(curwin); |
7 | 4231 |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4232 // Don't allow switching to another buffer. |
11589
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
4233 ++curbuf_lock; |
7 | 4234 |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4235 // Showing the prompt may have set need_wait_return, reset it. |
510 | 4236 need_wait_return = FALSE; |
4237 | |
1831 | 4238 histtype = hist_char2type(cmdwin_type); |
7 | 4239 if (histtype == HIST_CMD || histtype == HIST_DEBUG) |
4240 { | |
4241 if (p_wc == TAB) | |
4242 { | |
4243 add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT); | |
4244 add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL); | |
4245 } | |
4246 set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL); | |
4247 } | |
11589
39787def24bb
patch 8.0.0677: setting 'filetype' may switch buffers
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
4248 --curbuf_lock; |
7 | 4249 |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4250 // Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin |
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4251 // sets 'textwidth' to 78). |
10 | 4252 curbuf->b_p_tw = 0; |
4253 | |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4254 // Fill the buffer with the history. |
7 | 4255 init_history(); |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4256 if (get_hislen() > 0) |
7 | 4257 { |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4258 i = *get_hisidx(histtype); |
7 | 4259 if (i >= 0) |
4260 { | |
4261 lnum = 0; | |
4262 do | |
4263 { | |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4264 if (++i == get_hislen()) |
7 | 4265 i = 0; |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4266 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
|
4267 ml_append(lnum++, get_histentry(histtype)[i].hisstr, |
7 | 4268 (colnr_T)0, FALSE); |
4269 } | |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17588
diff
changeset
|
4270 while (i != *get_hisidx(histtype)); |
7 | 4271 } |
4272 } | |
4273 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4274 // Replace the empty last line with the current command-line and put the |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4275 // cursor there. |
7 | 4276 ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE); |
4277 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
4278 curwin->w_cursor.col = ccline.cmdpos; | |
510 | 4279 changed_line_abv_curs(); |
4280 invalidate_botline(); | |
743 | 4281 redraw_later(SOME_VALID); |
7 | 4282 |
18227
7d90fa3e5f8d
patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents:
18139
diff
changeset
|
4283 // No Ex mode here! |
7 | 4284 exmode_active = 0; |
4285 | |
4286 State = NORMAL; | |
4287 setmouse(); | |
4288 | |
18227
7d90fa3e5f8d
patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents:
18139
diff
changeset
|
4289 // Reset here so it can be set by a CmdWinEnter autocommand. |
7d90fa3e5f8d
patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents:
18139
diff
changeset
|
4290 cmdwin_result = 0; |
7d90fa3e5f8d
patch 8.1.2108: cannot close the cmdline window from CmdWinEnter
Bram Moolenaar <Bram@vim.org>
parents:
18139
diff
changeset
|
4291 |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4292 // 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
|
4293 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER); |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4294 if (restart_edit != 0) // autocmd with ":startinsert" |
929 | 4295 stuffcharReadbuff(K_NOP); |
7 | 4296 |
4297 i = RedrawingDisabled; | |
4298 RedrawingDisabled = 0; | |
4299 | |
4300 /* | |
4301 * Call the main loop until <CR> or CTRL-C is typed. | |
4302 */ | |
168 | 4303 main_loop(TRUE, FALSE); |
7 | 4304 |
4305 RedrawingDisabled = i; | |
4306 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
4307 # ifdef FEAT_FOLDING |
6145 | 4308 save_KeyTyped = KeyTyped; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
4309 # endif |
6145 | 4310 |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4311 // 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
|
4312 trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE); |
6145 | 4313 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
4314 # ifdef FEAT_FOLDING |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4315 // Restore KeyTyped in case it is modified by autocommands |
6145 | 4316 KeyTyped = save_KeyTyped; |
7 | 4317 # endif |
4318 | |
4319 cmdwin_type = 0; | |
4320 exmode_active = save_exmode; | |
4321 | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4322 // Safety check: The old window or buffer was deleted: It's a bug when |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4323 // this happens! |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
4324 if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf)) |
7 | 4325 { |
4326 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
|
4327 emsg(_("E199: Active window or buffer deleted")); |
7 | 4328 } |
4329 else | |
4330 { | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13256
diff
changeset
|
4331 # if defined(FEAT_EVAL) |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4332 // autocmds may abort script processing |
7 | 4333 if (aborting() && cmdwin_result != K_IGNORE) |
4334 cmdwin_result = Ctrl_C; | |
4335 # endif | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4336 // Set the new command line from the cmdline buffer. |
7 | 4337 vim_free(ccline.cmdbuff); |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4338 if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) // :qa[!] typed |
7 | 4339 { |
510 | 4340 char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!"; |
4341 | |
4342 if (histtype == HIST_CMD) | |
4343 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4344 // Execute the command directly. |
510 | 4345 ccline.cmdbuff = vim_strsave((char_u *)p); |
4346 cmdwin_result = CAR; | |
4347 } | |
4348 else | |
4349 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4350 // First need to cancel what we were doing. |
510 | 4351 ccline.cmdbuff = NULL; |
4352 stuffcharReadbuff(':'); | |
4353 stuffReadbuff((char_u *)p); | |
4354 stuffcharReadbuff(CAR); | |
4355 } | |
7 | 4356 } |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4357 else if (cmdwin_result == K_XF2) // :qa typed |
7 | 4358 { |
4359 ccline.cmdbuff = vim_strsave((char_u *)"qa"); | |
4360 cmdwin_result = CAR; | |
4361 } | |
2839 | 4362 else if (cmdwin_result == Ctrl_C) |
4363 { | |
18779
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4364 // :q or :close, don't execute any command |
8f05b3cf8557
patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4365 // and don't modify the cmd window. |
2839 | 4366 ccline.cmdbuff = NULL; |
4367 } | |
7 | 4368 else |
4369 ccline.cmdbuff = vim_strsave(ml_get_curline()); | |
4370 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
|
4371 { |
aa426eb9589d
patch 8.0.0706: crash when cancelling the cmdline window in Ex mode
Christian Brabandt <cb@256bit.org>
parents:
11619
diff
changeset
|
4372 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
|
4373 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
|
4374 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
|
4375 ccline.cmdpos = 0; |
7 | 4376 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
|
4377 } |
7 | 4378 else |
4379 { | |
4380 ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); | |
4381 ccline.cmdbufflen = ccline.cmdlen + 1; | |
4382 ccline.cmdpos = curwin->w_cursor.col; | |
4383 if (ccline.cmdpos > ccline.cmdlen) | |
4384 ccline.cmdpos = ccline.cmdlen; | |
4385 if (cmdwin_result == K_IGNORE) | |
4386 { | |
4387 set_cmdspos_cursor(); | |
4388 redrawcmd(); | |
4389 } | |
4390 } | |
4391 | |
6876 | 4392 # ifdef FEAT_CONCEAL |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4393 // Avoid command-line window first character being concealed. |
6876 | 4394 curwin->w_p_cole = 0; |
4395 # endif | |
7 | 4396 wp = curwin; |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
4397 set_bufref(&bufref, curbuf); |
7 | 4398 win_goto(old_curwin); |
4399 win_close(wp, TRUE); | |
2099
c1f67ce5740a
updated for version 7.2.382
Bram Moolenaar <bram@zimbu.org>
parents:
2097
diff
changeset
|
4400 |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4401 // win_close() may have already wiped the buffer when 'bh' is |
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4402 // set to 'wipe' |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
4403 if (bufref_valid(&bufref)) |
18886
050f5eaa9e50
patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents:
18793
diff
changeset
|
4404 close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE, FALSE); |
7 | 4405 |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4406 // Restore window sizes. |
7 | 4407 win_size_restore(&winsizes); |
4408 } | |
4409 | |
4410 ga_clear(&winsizes); | |
4411 restart_edit = save_restart_edit; | |
510 | 4412 # ifdef FEAT_RIGHTLEFT |
4413 cmdmsg_rl = save_cmdmsg_rl; | |
4414 # endif | |
7 | 4415 |
4416 State = save_State; | |
4417 setmouse(); | |
4418 | |
4419 return cmdwin_result; | |
4420 } | |
18043
5a0d5f8e1778
patch 8.1.2017: cannot execute commands after closing the cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
17970
diff
changeset
|
4421 #endif // FEAT_CMDWIN |
7 | 4422 |
4423 /* | |
4424 * Used for commands that either take a simple command string argument, or: | |
4425 * cmd << endmarker | |
4426 * {script} | |
4427 * endmarker | |
4428 * Returns a pointer to allocated memory with {script} or NULL. | |
4429 */ | |
4430 char_u * | |
20045
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4431 script_get(exarg_T *eap UNUSED, char_u *cmd UNUSED) |
7 | 4432 { |
20045
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4433 #ifdef FEAT_EVAL |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4434 list_T *l; |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4435 listitem_T *li; |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4436 char_u *s; |
7 | 4437 garray_T ga; |
4438 | |
4439 if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL) | |
4440 return NULL; | |
20045
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4441 cmd += 2; |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4442 |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4443 l = heredoc_get(eap, cmd, TRUE); |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4444 if (l == NULL) |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4445 return NULL; |
7 | 4446 |
4447 ga_init2(&ga, 1, 0x400); | |
4448 | |
20045
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4449 FOR_ALL_LIST_ITEMS(l, li) |
7 | 4450 { |
20045
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4451 s = tv_get_string(&li->li_tv); |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4452 ga_concat(&ga, s); |
7 | 4453 ga_append(&ga, '\n'); |
4454 } | |
21 | 4455 ga_append(&ga, NUL); |
7 | 4456 |
20045
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4457 list_free(l); |
7 | 4458 return (char_u *)ga.ga_data; |
20045
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4459 #else |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4460 return NULL; |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
4461 #endif |
7 | 4462 } |
17922
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4463 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4464 #if defined(FEAT_EVAL) || defined(PROTO) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4465 /* |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4466 * This function is used by f_input() and f_inputdialog() functions. The third |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4467 * argument to f_input() specifies the type of completion to use at the |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4468 * prompt. The third argument to f_inputdialog() specifies the value to return |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4469 * when the user cancels the prompt. |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4470 */ |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4471 void |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4472 get_user_input( |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4473 typval_T *argvars, |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4474 typval_T *rettv, |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4475 int inputdialog, |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4476 int secret) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4477 { |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4478 char_u *prompt = tv_get_string_chk(&argvars[0]); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4479 char_u *p = NULL; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4480 int c; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4481 char_u buf[NUMBUFLEN]; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4482 int cmd_silent_save = cmd_silent; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4483 char_u *defstr = (char_u *)""; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4484 int xp_type = EXPAND_NOTHING; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4485 char_u *xp_arg = NULL; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4486 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4487 rettv->v_type = VAR_STRING; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4488 rettv->vval.v_string = NULL; |
20213
8d9229c4781a
patch 8.2.0662: cannot use input() in a channel callback
Bram Moolenaar <Bram@vim.org>
parents:
20164
diff
changeset
|
4489 if (input_busy) |
8d9229c4781a
patch 8.2.0662: cannot use input() in a channel callback
Bram Moolenaar <Bram@vim.org>
parents:
20164
diff
changeset
|
4490 return; // this doesn't work recursively. |
17922
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4491 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4492 #ifdef NO_CONSOLE_INPUT |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4493 // While starting up, there is no place to enter text. When running tests |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4494 // with --not-a-term we assume feedkeys() will be used. |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4495 if (no_console_input() && !is_not_a_term()) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4496 return; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4497 #endif |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4498 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4499 cmd_silent = FALSE; // Want to see the prompt. |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4500 if (prompt != NULL) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4501 { |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4502 // Only the part of the message after the last NL is considered as |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4503 // prompt for the command line |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4504 p = vim_strrchr(prompt, '\n'); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4505 if (p == NULL) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4506 p = prompt; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4507 else |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4508 { |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4509 ++p; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4510 c = *p; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4511 *p = NUL; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4512 msg_start(); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4513 msg_clr_eos(); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4514 msg_puts_attr((char *)prompt, get_echo_attr()); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4515 msg_didout = FALSE; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4516 msg_starthere(); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4517 *p = c; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4518 } |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4519 cmdline_row = msg_row; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4520 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4521 if (argvars[1].v_type != VAR_UNKNOWN) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4522 { |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4523 defstr = tv_get_string_buf_chk(&argvars[1], buf); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4524 if (defstr != NULL) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4525 stuffReadbuffSpec(defstr); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4526 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4527 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4528 { |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4529 char_u *xp_name; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4530 int xp_namelen; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4531 long argt; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4532 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4533 // input() with a third argument: completion |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4534 rettv->vval.v_string = NULL; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4535 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4536 xp_name = tv_get_string_buf_chk(&argvars[2], buf); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4537 if (xp_name == NULL) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4538 return; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4539 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4540 xp_namelen = (int)STRLEN(xp_name); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4541 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4542 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt, |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4543 &xp_arg) == FAIL) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4544 return; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4545 } |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4546 } |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4547 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4548 if (defstr != NULL) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4549 { |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4550 int save_ex_normal_busy = ex_normal_busy; |
20213
8d9229c4781a
patch 8.2.0662: cannot use input() in a channel callback
Bram Moolenaar <Bram@vim.org>
parents:
20164
diff
changeset
|
4551 int save_vgetc_busy = vgetc_busy; |
8d9229c4781a
patch 8.2.0662: cannot use input() in a channel callback
Bram Moolenaar <Bram@vim.org>
parents:
20164
diff
changeset
|
4552 int save_input_busy = input_busy; |
8d9229c4781a
patch 8.2.0662: cannot use input() in a channel callback
Bram Moolenaar <Bram@vim.org>
parents:
20164
diff
changeset
|
4553 |
8d9229c4781a
patch 8.2.0662: cannot use input() in a channel callback
Bram Moolenaar <Bram@vim.org>
parents:
20164
diff
changeset
|
4554 input_busy |= vgetc_busy; |
17922
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4555 ex_normal_busy = 0; |
20213
8d9229c4781a
patch 8.2.0662: cannot use input() in a channel callback
Bram Moolenaar <Bram@vim.org>
parents:
20164
diff
changeset
|
4556 vgetc_busy = 0; |
17922
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4557 rettv->vval.v_string = |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4558 getcmdline_prompt(secret ? NUL : '@', p, get_echo_attr(), |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4559 xp_type, xp_arg); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4560 ex_normal_busy = save_ex_normal_busy; |
20213
8d9229c4781a
patch 8.2.0662: cannot use input() in a channel callback
Bram Moolenaar <Bram@vim.org>
parents:
20164
diff
changeset
|
4561 vgetc_busy = save_vgetc_busy; |
8d9229c4781a
patch 8.2.0662: cannot use input() in a channel callback
Bram Moolenaar <Bram@vim.org>
parents:
20164
diff
changeset
|
4562 input_busy = save_input_busy; |
17922
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4563 } |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4564 if (inputdialog && rettv->vval.v_string == NULL |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4565 && argvars[1].v_type != VAR_UNKNOWN |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4566 && argvars[2].v_type != VAR_UNKNOWN) |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4567 rettv->vval.v_string = vim_strsave(tv_get_string_buf( |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4568 &argvars[2], buf)); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4569 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4570 vim_free(xp_arg); |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4571 |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4572 // since the user typed this, no need to wait for return |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4573 need_wait_return = FALSE; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4574 msg_didout = FALSE; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4575 } |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4576 cmd_silent = cmd_silent_save; |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4577 } |
4d63d47d87ef
patch 8.1.1957: more code can be moved to evalvars.c
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
4578 #endif |