annotate src/ex_getln.c @ 20717:abebcc20af26 v8.2.0911

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