blob: fe47e2b74d857f698c0437709606e586b2e98485 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * normal.c: Contains the main routine for processing characters in command
11 * mode. Communicates closely with the code in ops.c to handle
12 * the operators.
13 */
14
15#include "vim.h"
16
Bram Moolenaar792cf5e2019-09-30 23:12:16 +020017static int VIsual_mode_orig = NUL; // saved Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +000018static int restart_VIsual_select = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
Bram Moolenaarf82a2d22010-12-17 18:53:01 +010020#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010021static void set_vcount_ca(cmdarg_T *cap, int *set_prevcount);
Bram Moolenaarf82a2d22010-12-17 18:53:01 +010022#endif
Bram Moolenaareae1b912019-05-09 15:12:55 +020023static int nv_compare(const void *s1, const void *s2);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010024static void unshift_special(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000025#ifdef FEAT_CMDL_INFO
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010026static void del_from_showcmd(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000027#endif
28
29/*
30 * nv_*(): functions called to handle Normal and Visual mode commands.
31 * n_*(): functions called to handle Normal mode commands.
32 * v_*(): functions called to handle Visual mode commands.
33 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010034static void nv_ignore(cmdarg_T *cap);
35static void nv_nop(cmdarg_T *cap);
36static void nv_error(cmdarg_T *cap);
37static void nv_help(cmdarg_T *cap);
38static void nv_addsub(cmdarg_T *cap);
39static void nv_page(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010040static void nv_zet(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000041#ifdef FEAT_GUI
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010042static void nv_ver_scrollbar(cmdarg_T *cap);
43static void nv_hor_scrollbar(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000044#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +000045#ifdef FEAT_GUI_TABLINE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010046static void nv_tabline(cmdarg_T *cap);
47static void nv_tabmenu(cmdarg_T *cap);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000048#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010049static void nv_exmode(cmdarg_T *cap);
50static void nv_colon(cmdarg_T *cap);
51static void nv_ctrlg(cmdarg_T *cap);
52static void nv_ctrlh(cmdarg_T *cap);
53static void nv_clear(cmdarg_T *cap);
54static void nv_ctrlo(cmdarg_T *cap);
55static void nv_hat(cmdarg_T *cap);
56static void nv_Zet(cmdarg_T *cap);
57static void nv_ident(cmdarg_T *cap);
58static void nv_tagpop(cmdarg_T *cap);
59static void nv_scroll(cmdarg_T *cap);
60static void nv_right(cmdarg_T *cap);
61static void nv_left(cmdarg_T *cap);
62static void nv_up(cmdarg_T *cap);
63static void nv_down(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010064static void nv_end(cmdarg_T *cap);
65static void nv_dollar(cmdarg_T *cap);
66static void nv_search(cmdarg_T *cap);
67static void nv_next(cmdarg_T *cap);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +020068static int normal_search(cmdarg_T *cap, int dir, char_u *pat, int opt, int *wrapped);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010069static void nv_csearch(cmdarg_T *cap);
70static void nv_brackets(cmdarg_T *cap);
71static void nv_percent(cmdarg_T *cap);
72static void nv_brace(cmdarg_T *cap);
73static void nv_mark(cmdarg_T *cap);
74static void nv_findpar(cmdarg_T *cap);
75static void nv_undo(cmdarg_T *cap);
76static void nv_kundo(cmdarg_T *cap);
77static void nv_Replace(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010078static void nv_replace(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010079static void nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos);
80static void v_visop(cmdarg_T *cap);
81static void nv_subst(cmdarg_T *cap);
82static void nv_abbrev(cmdarg_T *cap);
83static void nv_optrans(cmdarg_T *cap);
84static void nv_gomark(cmdarg_T *cap);
85static void nv_pcmark(cmdarg_T *cap);
86static void nv_regname(cmdarg_T *cap);
87static void nv_visual(cmdarg_T *cap);
88static void n_start_visual_mode(int c);
89static void nv_window(cmdarg_T *cap);
90static void nv_suspend(cmdarg_T *cap);
91static void nv_g_cmd(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010092static void nv_dot(cmdarg_T *cap);
93static void nv_redo(cmdarg_T *cap);
94static void nv_Undo(cmdarg_T *cap);
95static void nv_tilde(cmdarg_T *cap);
96static void nv_operator(cmdarg_T *cap);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +000097#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010098static void set_op_var(int optype);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +000099#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100100static void nv_lineop(cmdarg_T *cap);
101static void nv_home(cmdarg_T *cap);
102static void nv_pipe(cmdarg_T *cap);
103static void nv_bck_word(cmdarg_T *cap);
104static void nv_wordcmd(cmdarg_T *cap);
105static void nv_beginline(cmdarg_T *cap);
106static void adjust_cursor(oparg_T *oap);
107static void adjust_for_sel(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100108static void nv_select(cmdarg_T *cap);
109static void nv_goto(cmdarg_T *cap);
110static void nv_normal(cmdarg_T *cap);
111static void nv_esc(cmdarg_T *oap);
112static void nv_edit(cmdarg_T *cap);
113static void invoke_edit(cmdarg_T *cap, int repl, int cmd, int startln);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114#ifdef FEAT_TEXTOBJ
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100115static void nv_object(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100117static void nv_record(cmdarg_T *cap);
118static void nv_at(cmdarg_T *cap);
119static void nv_halfpage(cmdarg_T *cap);
120static void nv_join(cmdarg_T *cap);
121static void nv_put(cmdarg_T *cap);
Bram Moolenaar0ab190c2019-05-23 23:27:36 +0200122static void nv_put_opt(cmdarg_T *cap, int fix_indent);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100123static void nv_open(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100125static void nv_nbcmd(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126#endif
127#ifdef FEAT_DND
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100128static void nv_drop(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100130static void nv_cursorhold(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131
Bram Moolenaar9fd01c62008-11-01 12:52:38 +0000132static char *e_noident = N_("E349: No identifier under cursor");
133
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134/*
135 * Function to be called for a Normal or Visual mode command.
136 * The argument is a cmdarg_T.
137 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100138typedef void (*nv_func_T)(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100140// Values for cmd_flags.
141#define NV_NCH 0x01 // may need to get a second char
142#define NV_NCH_NOP (0x02|NV_NCH) // get second char when no operator pending
143#define NV_NCH_ALW (0x04|NV_NCH) // always get a second char
144#define NV_LANG 0x08 // second char needs language adjustment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100146#define NV_SS 0x10 // may start selection
147#define NV_SSS 0x20 // may start selection with shift modifier
148#define NV_STS 0x40 // may stop selection without shift modif.
149#define NV_RL 0x80 // 'rightleft' modifies command
150#define NV_KEEPREG 0x100 // don't clear regname
151#define NV_NCW 0x200 // not allowed in command-line window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152
153/*
154 * Generally speaking, every Normal mode command should either clear any
155 * pending operator (with *clearop*()), or set the motion type variable
156 * oap->motion_type.
157 *
158 * When a cursor motion command is made, it is marked as being a character or
159 * line oriented motion. Then, if an operator is in effect, the operation
160 * becomes character or line oriented accordingly.
161 */
162
163/*
164 * This table contains one entry for every Normal or Visual mode command.
165 * The order doesn't matter, init_normal_cmds() will create a sorted index.
166 * It is faster when all keys from zero to '~' are present.
167 */
168static const struct nv_cmd
169{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100170 int cmd_char; // (first) command character
171 nv_func_T cmd_func; // function for this command
172 short_u cmd_flags; // NV_ flags
173 short cmd_arg; // value for ca.arg
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174} nv_cmds[] =
175{
176 {NUL, nv_error, 0, 0},
177 {Ctrl_A, nv_addsub, 0, 0},
178 {Ctrl_B, nv_page, NV_STS, BACKWARD},
179 {Ctrl_C, nv_esc, 0, TRUE},
180 {Ctrl_D, nv_halfpage, 0, 0},
181 {Ctrl_E, nv_scroll_line, 0, TRUE},
182 {Ctrl_F, nv_page, NV_STS, FORWARD},
183 {Ctrl_G, nv_ctrlg, 0, 0},
184 {Ctrl_H, nv_ctrlh, 0, 0},
185 {Ctrl_I, nv_pcmark, 0, 0},
186 {NL, nv_down, 0, FALSE},
187 {Ctrl_K, nv_error, 0, 0},
188 {Ctrl_L, nv_clear, 0, 0},
Bram Moolenaar2c519cf2019-03-21 21:45:34 +0100189 {CAR, nv_down, 0, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190 {Ctrl_N, nv_down, NV_STS, FALSE},
191 {Ctrl_O, nv_ctrlo, 0, 0},
192 {Ctrl_P, nv_up, NV_STS, FALSE},
Bram Moolenaardf177f62005-02-22 08:39:57 +0000193 {Ctrl_Q, nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 {Ctrl_R, nv_redo, 0, 0},
195 {Ctrl_S, nv_ignore, 0, 0},
196 {Ctrl_T, nv_tagpop, NV_NCW, 0},
197 {Ctrl_U, nv_halfpage, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 {Ctrl_V, nv_visual, 0, FALSE},
199 {'V', nv_visual, 0, FALSE},
200 {'v', nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 {Ctrl_W, nv_window, 0, 0},
202 {Ctrl_X, nv_addsub, 0, 0},
203 {Ctrl_Y, nv_scroll_line, 0, FALSE},
204 {Ctrl_Z, nv_suspend, 0, 0},
205 {ESC, nv_esc, 0, FALSE},
206 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0},
207 {Ctrl_RSB, nv_ident, NV_NCW, 0},
208 {Ctrl_HAT, nv_hat, NV_NCW, 0},
209 {Ctrl__, nv_error, 0, 0},
210 {' ', nv_right, 0, 0},
211 {'!', nv_operator, 0, 0},
212 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0},
213 {'#', nv_ident, 0, 0},
214 {'$', nv_dollar, 0, 0},
215 {'%', nv_percent, 0, 0},
216 {'&', nv_optrans, 0, 0},
217 {'\'', nv_gomark, NV_NCH_ALW, TRUE},
218 {'(', nv_brace, 0, BACKWARD},
219 {')', nv_brace, 0, FORWARD},
220 {'*', nv_ident, 0, 0},
221 {'+', nv_down, 0, TRUE},
222 {',', nv_csearch, 0, TRUE},
223 {'-', nv_up, 0, TRUE},
224 {'.', nv_dot, NV_KEEPREG, 0},
225 {'/', nv_search, 0, FALSE},
226 {'0', nv_beginline, 0, 0},
227 {'1', nv_ignore, 0, 0},
228 {'2', nv_ignore, 0, 0},
229 {'3', nv_ignore, 0, 0},
230 {'4', nv_ignore, 0, 0},
231 {'5', nv_ignore, 0, 0},
232 {'6', nv_ignore, 0, 0},
233 {'7', nv_ignore, 0, 0},
234 {'8', nv_ignore, 0, 0},
235 {'9', nv_ignore, 0, 0},
236 {':', nv_colon, 0, 0},
237 {';', nv_csearch, 0, FALSE},
238 {'<', nv_operator, NV_RL, 0},
239 {'=', nv_operator, 0, 0},
240 {'>', nv_operator, NV_RL, 0},
241 {'?', nv_search, 0, FALSE},
242 {'@', nv_at, NV_NCH_NOP, FALSE},
243 {'A', nv_edit, 0, 0},
244 {'B', nv_bck_word, 0, 1},
245 {'C', nv_abbrev, NV_KEEPREG, 0},
246 {'D', nv_abbrev, NV_KEEPREG, 0},
247 {'E', nv_wordcmd, 0, TRUE},
248 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
249 {'G', nv_goto, 0, TRUE},
250 {'H', nv_scroll, 0, 0},
251 {'I', nv_edit, 0, 0},
252 {'J', nv_join, 0, 0},
253 {'K', nv_ident, 0, 0},
254 {'L', nv_scroll, 0, 0},
255 {'M', nv_scroll, 0, 0},
256 {'N', nv_next, 0, SEARCH_REV},
257 {'O', nv_open, 0, 0},
258 {'P', nv_put, 0, 0},
259 {'Q', nv_exmode, NV_NCW, 0},
260 {'R', nv_Replace, 0, FALSE},
261 {'S', nv_subst, NV_KEEPREG, 0},
262 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
263 {'U', nv_Undo, 0, 0},
264 {'W', nv_wordcmd, 0, TRUE},
265 {'X', nv_abbrev, NV_KEEPREG, 0},
266 {'Y', nv_abbrev, NV_KEEPREG, 0},
267 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0},
268 {'[', nv_brackets, NV_NCH_ALW, BACKWARD},
269 {'\\', nv_error, 0, 0},
270 {']', nv_brackets, NV_NCH_ALW, FORWARD},
271 {'^', nv_beginline, 0, BL_WHITE | BL_FIX},
272 {'_', nv_lineop, 0, 0},
273 {'`', nv_gomark, NV_NCH_ALW, FALSE},
274 {'a', nv_edit, NV_NCH, 0},
275 {'b', nv_bck_word, 0, 0},
276 {'c', nv_operator, 0, 0},
277 {'d', nv_operator, 0, 0},
278 {'e', nv_wordcmd, 0, FALSE},
279 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
280 {'g', nv_g_cmd, NV_NCH_ALW, FALSE},
281 {'h', nv_left, NV_RL, 0},
282 {'i', nv_edit, NV_NCH, 0},
283 {'j', nv_down, 0, FALSE},
284 {'k', nv_up, 0, FALSE},
285 {'l', nv_right, NV_RL, 0},
286 {'m', nv_mark, NV_NCH_NOP, 0},
287 {'n', nv_next, 0, 0},
288 {'o', nv_open, 0, 0},
289 {'p', nv_put, 0, 0},
290 {'q', nv_record, NV_NCH, 0},
291 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0},
292 {'s', nv_subst, NV_KEEPREG, 0},
293 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
294 {'u', nv_undo, 0, 0},
295 {'w', nv_wordcmd, 0, FALSE},
296 {'x', nv_abbrev, NV_KEEPREG, 0},
297 {'y', nv_operator, 0, 0},
298 {'z', nv_zet, NV_NCH_ALW, 0},
299 {'{', nv_findpar, 0, BACKWARD},
300 {'|', nv_pipe, 0, 0},
301 {'}', nv_findpar, 0, FORWARD},
302 {'~', nv_tilde, 0, 0},
303
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100304 // pound sign
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 {POUND, nv_ident, 0, 0},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200306 {K_MOUSEUP, nv_mousescroll, 0, MSCR_UP},
307 {K_MOUSEDOWN, nv_mousescroll, 0, MSCR_DOWN},
308 {K_MOUSELEFT, nv_mousescroll, 0, MSCR_LEFT},
309 {K_MOUSERIGHT, nv_mousescroll, 0, MSCR_RIGHT},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 {K_LEFTMOUSE, nv_mouse, 0, 0},
311 {K_LEFTMOUSE_NM, nv_mouse, 0, 0},
312 {K_LEFTDRAG, nv_mouse, 0, 0},
313 {K_LEFTRELEASE, nv_mouse, 0, 0},
314 {K_LEFTRELEASE_NM, nv_mouse, 0, 0},
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100315 {K_MOUSEMOVE, nv_mouse, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 {K_MIDDLEMOUSE, nv_mouse, 0, 0},
317 {K_MIDDLEDRAG, nv_mouse, 0, 0},
318 {K_MIDDLERELEASE, nv_mouse, 0, 0},
319 {K_RIGHTMOUSE, nv_mouse, 0, 0},
320 {K_RIGHTDRAG, nv_mouse, 0, 0},
321 {K_RIGHTRELEASE, nv_mouse, 0, 0},
322 {K_X1MOUSE, nv_mouse, 0, 0},
323 {K_X1DRAG, nv_mouse, 0, 0},
324 {K_X1RELEASE, nv_mouse, 0, 0},
325 {K_X2MOUSE, nv_mouse, 0, 0},
326 {K_X2DRAG, nv_mouse, 0, 0},
327 {K_X2RELEASE, nv_mouse, 0, 0},
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000328 {K_IGNORE, nv_ignore, NV_KEEPREG, 0},
Bram Moolenaarebefac62005-12-28 22:39:57 +0000329 {K_NOP, nv_nop, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330 {K_INS, nv_edit, 0, 0},
331 {K_KINS, nv_edit, 0, 0},
332 {K_BS, nv_ctrlh, 0, 0},
333 {K_UP, nv_up, NV_SSS|NV_STS, FALSE},
334 {K_S_UP, nv_page, NV_SS, BACKWARD},
335 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE},
336 {K_S_DOWN, nv_page, NV_SS, FORWARD},
337 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0},
338 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0},
339 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1},
340 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0},
341 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE},
342 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE},
343 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
344 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
345 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
346 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
347 {K_END, nv_end, NV_SSS|NV_STS, FALSE},
348 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 {K_S_END, nv_end, NV_SS, FALSE},
350 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE},
351 {K_HOME, nv_home, NV_SSS|NV_STS, 0},
352 {K_KHOME, nv_home, NV_SSS|NV_STS, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 {K_S_HOME, nv_home, NV_SS, 0},
354 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE},
355 {K_DEL, nv_abbrev, 0, 0},
356 {K_KDEL, nv_abbrev, 0, 0},
357 {K_UNDO, nv_kundo, 0, 0},
358 {K_HELP, nv_help, NV_NCW, 0},
359 {K_F1, nv_help, NV_NCW, 0},
360 {K_XF1, nv_help, NV_NCW, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 {K_SELECT, nv_select, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362#ifdef FEAT_GUI
363 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0},
364 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0},
365#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000366#ifdef FEAT_GUI_TABLINE
367 {K_TABLINE, nv_tabline, 0, 0},
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000368 {K_TABMENU, nv_tabmenu, 0, 0},
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370#ifdef FEAT_NETBEANS_INTG
371 {K_F21, nv_nbcmd, NV_NCH_ALW, 0},
372#endif
373#ifdef FEAT_DND
374 {K_DROP, nv_drop, NV_STS, 0},
375#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000376 {K_CURSORHOLD, nv_cursorhold, NV_KEEPREG, 0},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100377 {K_PS, nv_edit, 0, 0},
Bram Moolenaar957cf672020-11-12 14:21:06 +0100378 {K_COMMAND, nv_colon, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379};
380
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100381// Number of commands in nv_cmds[].
K.Takataeeec2542021-06-02 13:28:16 +0200382#define NV_CMDS_SIZE ARRAY_LENGTH(nv_cmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100384// Sorted index of commands in nv_cmds[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385static short nv_cmd_idx[NV_CMDS_SIZE];
386
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100387// The highest index for which
388// nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389static int nv_max_linear;
390
391/*
392 * Compare functions for qsort() below, that checks the command character
393 * through the index in nv_cmd_idx[].
394 */
395 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100396nv_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397{
398 int c1, c2;
399
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100400 // The commands are sorted on absolute value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 c1 = nv_cmds[*(const short *)s1].cmd_char;
402 c2 = nv_cmds[*(const short *)s2].cmd_char;
403 if (c1 < 0)
404 c1 = -c1;
405 if (c2 < 0)
406 c2 = -c2;
407 return c1 - c2;
408}
409
410/*
411 * Initialize the nv_cmd_idx[] table.
412 */
413 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100414init_normal_cmds(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415{
416 int i;
417
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100418 // Fill the index table with a one to one relation.
Bram Moolenaar78a15312009-05-15 19:33:18 +0000419 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420 nv_cmd_idx[i] = i;
421
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100422 // Sort the commands by the command character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
424
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100425 // Find the first entry that can't be indexed by the command character.
Bram Moolenaar78a15312009-05-15 19:33:18 +0000426 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char)
428 break;
429 nv_max_linear = i - 1;
430}
431
432/*
433 * Search for a command in the commands table.
434 * Returns -1 for invalid command.
435 */
436 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100437find_command(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438{
439 int i;
440 int idx;
441 int top, bot;
442 int c;
443
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100444 // A multi-byte character is never a command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 if (cmdchar >= 0x100)
446 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100448 // We use the absolute value of the character. Special keys have a
449 // negative value, but are sorted on their absolute value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 if (cmdchar < 0)
451 cmdchar = -cmdchar;
452
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100453 // If the character is in the first part: The character is the index into
454 // nv_cmd_idx[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455 if (cmdchar <= nv_max_linear)
456 return nv_cmd_idx[cmdchar];
457
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100458 // Perform a binary search.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459 bot = nv_max_linear + 1;
460 top = NV_CMDS_SIZE - 1;
461 idx = -1;
462 while (bot <= top)
463 {
464 i = (top + bot) / 2;
465 c = nv_cmds[nv_cmd_idx[i]].cmd_char;
466 if (c < 0)
467 c = -c;
468 if (cmdchar == c)
469 {
470 idx = nv_cmd_idx[i];
471 break;
472 }
473 if (cmdchar > c)
474 bot = i + 1;
475 else
476 top = i - 1;
477 }
478 return idx;
479}
480
481/*
482 * Execute a command in Normal mode.
483 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100485normal_cmd(
486 oparg_T *oap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100487 int toplevel UNUSED) // TRUE when called from main()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100489 cmdarg_T ca; // command arguments
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 int c;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100491 int ctrl_w = FALSE; // got CTRL-W command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 int old_col = curwin->w_curswant;
493#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100494 int need_flushbuf; // need to call out_flush()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100496 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 int mapped_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 static int old_mapped_len = 0;
499 int idx;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000500#ifdef FEAT_EVAL
501 int set_prevcount = FALSE;
502#endif
Bram Moolenaarb146e012020-07-19 23:06:05 +0200503 int save_did_cursorhold = did_cursorhold;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504
Bram Moolenaara80faa82020-04-12 19:37:17 +0200505 CLEAR_FIELD(ca); // also resets ca.retval
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 ca.oap = oap;
Bram Moolenaara983fe92008-07-31 20:04:27 +0000507
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100508 // Use a count remembered from before entering an operator. After typing
509 // "3d" we return from normal_cmd() and come back here, the "3" is
510 // remembered in "opcount".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 ca.opcount = opcount;
512
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 /*
514 * If there is an operator pending, then the command we take this time
515 * will terminate it. Finish_op tells us to finish the operation before
516 * returning this time (unless the operation was cancelled).
517 */
518#ifdef CURSOR_SHAPE
519 c = finish_op;
520#endif
521 finish_op = (oap->op_type != OP_NOP);
522#ifdef CURSOR_SHAPE
523 if (finish_op != c)
524 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100525 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526# ifdef FEAT_MOUSESHAPE
527 update_mouseshape(-1);
528# endif
529 }
530#endif
531
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100532 // When not finishing an operator and no register name typed, reset the
533 // count.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 if (!finish_op && !oap->regname)
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000535 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 ca.opcount = 0;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000537#ifdef FEAT_EVAL
538 set_prevcount = TRUE;
539#endif
540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100542 // Restore counts from before receiving K_CURSORHOLD. This means after
543 // typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not
544 // "3 * 2".
Bram Moolenaara983fe92008-07-31 20:04:27 +0000545 if (oap->prev_opcount > 0 || oap->prev_count0 > 0)
546 {
547 ca.opcount = oap->prev_opcount;
548 ca.count0 = oap->prev_count0;
549 oap->prev_opcount = 0;
550 oap->prev_count0 = 0;
551 }
Bram Moolenaara983fe92008-07-31 20:04:27 +0000552
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 mapped_len = typebuf_maplen();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554
555 State = NORMAL_BUSY;
556#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100557 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558#endif
559
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100560#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100561 // Set v:count here, when called from main() and not a stuffed
562 // command, so that v:count can be used in an expression mapping
563 // when there is no count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100564 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100565 set_vcount_ca(&ca, &set_prevcount);
566#endif
567
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 /*
569 * Get the command character from the user.
570 */
571 c = safe_vgetc();
Bram Moolenaar25281632016-01-21 23:32:32 +0100572 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573
574 /*
575 * If a mapping was started in Visual or Select mode, remember the length
576 * of the mapping. This is used below to not return to Insert mode for as
577 * long as the mapping is being executed.
578 */
579 if (restart_edit == 0)
580 old_mapped_len = 0;
581 else if (old_mapped_len
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000582 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 old_mapped_len = typebuf_maplen();
584
585 if (c == NUL)
586 c = K_ZERO;
587
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 /*
589 * In Select mode, typed text replaces the selection.
590 */
591 if (VIsual_active
592 && VIsual_select
593 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
594 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100595 // Fake a "c"hange command. When "restart_edit" is set (e.g., because
596 // 'insertmode' is set) fake a "d"elete command, Insert mode will
597 // restart automatically.
598 // Insert the typed character in the typeahead buffer, so that it can
599 // be mapped in Insert mode. Required for ":lmap" to work.
Bram Moolenaarb42c0d52020-05-29 22:41:41 +0200600 ins_char_typebuf(vgetc_char, vgetc_mod_mask);
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000601 if (restart_edit != 0)
602 c = 'd';
603 else
604 c = 'c';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100605 msg_nowait = TRUE; // don't delay going to insert mode
606 old_mapped_len = 0; // do go to Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608
609#ifdef FEAT_CMDL_INFO
610 need_flushbuf = add_to_showcmd(c);
611#endif
612
613getcount:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 if (!(VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 {
616 /*
617 * Handle a count before a command and compute ca.count0.
618 * Note that '0' is a command and not the start of a count, but it's
619 * part of a count after other digits.
620 */
621 while ( (c >= '1' && c <= '9')
622 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
623 {
624 if (c == K_DEL || c == K_KDEL)
625 {
626 ca.count0 /= 10;
627#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100628 del_from_showcmd(4); // delete the digit and ~@%
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629#endif
630 }
631 else
632 ca.count0 = ca.count0 * 10 + (c - '0');
Bram Moolenaar1d859e22021-01-28 17:24:58 +0100633 if (ca.count0 < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 ca.count0 = 999999999L;
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000635#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100636 // Set v:count here, when called from main() and not a stuffed
637 // command, so that v:count can be used in an expression mapping
638 // right after the count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100639 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100640 set_vcount_ca(&ca, &set_prevcount);
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000641#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 if (ctrl_w)
643 {
644 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100645 ++allow_keys; // no mapping for nchar, but keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100647 ++no_zero_mapping; // don't map zero here
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000648 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 --no_zero_mapping;
651 if (ctrl_w)
652 {
653 --no_mapping;
654 --allow_keys;
655 }
656#ifdef FEAT_CMDL_INFO
657 need_flushbuf |= add_to_showcmd(c);
658#endif
659 }
660
661 /*
662 * If we got CTRL-W there may be a/another count
663 */
664 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
665 {
666 ctrl_w = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100667 ca.opcount = ca.count0; // remember first count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 ca.count0 = 0;
669 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100670 ++allow_keys; // no mapping for nchar, but keys
671 c = plain_vgetc(); // get next character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 --no_mapping;
674 --allow_keys;
675#ifdef FEAT_CMDL_INFO
676 need_flushbuf |= add_to_showcmd(c);
677#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100678 goto getcount; // jump back
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 }
680 }
681
Bram Moolenaara983fe92008-07-31 20:04:27 +0000682 if (c == K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100684 // Save the count values so that ca.opcount and ca.count0 are exactly
685 // the same when coming back here after handling K_CURSORHOLD.
Bram Moolenaara983fe92008-07-31 20:04:27 +0000686 oap->prev_opcount = ca.opcount;
687 oap->prev_count0 = ca.count0;
688 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100689 else if (ca.opcount != 0)
Bram Moolenaara983fe92008-07-31 20:04:27 +0000690 {
691 /*
692 * If we're in the middle of an operator (including after entering a
693 * yank buffer with '"') AND we had a count before the operator, then
694 * that count overrides the current value of ca.count0.
695 * What this means effectively, is that commands like "3dw" get turned
696 * into "d3w" which makes things fall into place pretty neatly.
697 * If you give a count before AND after the operator, they are
698 * multiplied.
699 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 if (ca.count0)
701 ca.count0 *= ca.opcount;
702 else
703 ca.count0 = ca.opcount;
Bram Moolenaar1d859e22021-01-28 17:24:58 +0100704 if (ca.count0 < 0) // overflow
705 ca.count0 = 999999999L;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 }
707
708 /*
709 * Always remember the count. It will be set to zero (on the next call,
710 * above) when there is no pending operator.
711 * When called from main(), save the count for use by the "count" built-in
712 * variable.
713 */
714 ca.opcount = ca.count0;
715 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
716
717#ifdef FEAT_EVAL
718 /*
719 * Only set v:count when called from main() and not a stuffed command.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100720 * Do set it for redo.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100722 if (toplevel && readbuf1_empty())
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000723 set_vcount(ca.count0, ca.count1, set_prevcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724#endif
725
726 /*
727 * Find the command character in the table of commands.
728 * For CTRL-W we already got nchar when looking for a count.
729 */
730 if (ctrl_w)
731 {
732 ca.nchar = c;
733 ca.cmdchar = Ctrl_W;
734 }
735 else
736 ca.cmdchar = c;
737 idx = find_command(ca.cmdchar);
738 if (idx < 0)
739 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100740 // Not a known command: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 clearopbeep(oap);
742 goto normal_end;
743 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +0000744
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000745 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100747 // This command is not allowed while editing a cmdline: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 clearopbeep(oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000749 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 goto normal_end;
751 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000752 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
753 goto normal_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 /*
756 * In Visual/Select mode, a few keys are handled in a special way.
757 */
758 if (VIsual_active)
759 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100760 // when 'keymodel' contains "stopsel" may stop Select/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 if (km_stopsel
762 && (nv_cmds[idx].cmd_flags & NV_STS)
763 && !(mod_mask & MOD_MASK_SHIFT))
764 {
765 end_visual_mode();
766 redraw_curbuf_later(INVERTED);
767 }
768
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100769 // Keys that work different when 'keymodel' contains "startsel"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 if (km_startsel)
771 {
772 if (nv_cmds[idx].cmd_flags & NV_SS)
773 {
774 unshift_special(&ca);
775 idx = find_command(ca.cmdchar);
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000776 if (idx < 0)
777 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100778 // Just in case
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000779 clearopbeep(oap);
780 goto normal_end;
781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 }
783 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
784 && (mod_mask & MOD_MASK_SHIFT))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 mod_mask &= ~MOD_MASK_SHIFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 }
787 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788
789#ifdef FEAT_RIGHTLEFT
790 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
791 && (nv_cmds[idx].cmd_flags & NV_RL))
792 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100793 // Invert horizontal movements and operations. Only when typed by the
794 // user directly, not when the result of a mapping or "x" translated
795 // to "dl".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 switch (ca.cmdchar)
797 {
798 case 'l': ca.cmdchar = 'h'; break;
799 case K_RIGHT: ca.cmdchar = K_LEFT; break;
800 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
801 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
802 case 'h': ca.cmdchar = 'l'; break;
803 case K_LEFT: ca.cmdchar = K_RIGHT; break;
804 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
805 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
806 case '>': ca.cmdchar = '<'; break;
807 case '<': ca.cmdchar = '>'; break;
808 }
809 idx = find_command(ca.cmdchar);
810 }
811#endif
812
813 /*
814 * Get an additional character if we need one.
815 */
816 if ((nv_cmds[idx].cmd_flags & NV_NCH)
817 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
818 && oap->op_type == OP_NOP)
819 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
820 || (ca.cmdchar == 'q'
821 && oap->op_type == OP_NOP
Bram Moolenaar0b6d9112018-05-22 20:35:17 +0200822 && reg_recording == 0
823 && reg_executing == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100825 && (oap->op_type != OP_NOP || VIsual_active))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 {
827 int *cp;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100828 int repl = FALSE; // get character for replace mode
829 int lit = FALSE; // get extra character literally
830 int langmap_active = FALSE; // using :lmap mappings
831 int lang; // getting a text character
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100832#ifdef HAVE_INPUT_METHOD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100833 int save_smd; // saved value of p_smd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834#endif
835
836 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100837 ++allow_keys; // no mapping for nchar, but allow key codes
838 // Don't generate a CursorHold event here, most commands can't handle
839 // it, e.g., nv_replace(), nv_csearch().
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +0000840 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 if (ca.cmdchar == 'g')
842 {
843 /*
844 * For 'g' get the next character now, so that we can check for
845 * "gr", "g'" and "g`".
846 */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000847 ca.nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 LANGMAP_ADJUST(ca.nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849#ifdef FEAT_CMDL_INFO
850 need_flushbuf |= add_to_showcmd(ca.nchar);
851#endif
852 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
Bram Moolenaarba2d44f2013-11-28 19:27:30 +0100853 || ca.nchar == Ctrl_BSL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100855 cp = &ca.extra_char; // need to get a third character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 if (ca.nchar != 'r')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100857 lit = TRUE; // get it literally
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100859 repl = TRUE; // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 }
861 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100862 cp = NULL; // no third character needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 }
864 else
865 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100866 if (ca.cmdchar == 'r') // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 repl = TRUE;
868 cp = &ca.nchar;
869 }
870 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
871
872 /*
873 * Get a second or third character.
874 */
875 if (cp != NULL)
876 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 if (repl)
878 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100879 State = REPLACE; // pretend Replace mode
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100880#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100881 ui_cursor_shape(); // show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882#endif
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
885 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100886 // Allow mappings defined with ":lmap".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 --no_mapping;
888 --allow_keys;
889 if (repl)
890 State = LREPLACE;
891 else
892 State = LANGMAP;
893 langmap_active = TRUE;
894 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100895#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 save_smd = p_smd;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100897 p_smd = FALSE; // Don't let the IM code show the mode here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
899 im_set_active(TRUE);
900#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200901 if ((State & INSERT) && !p_ek)
902 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200903#ifdef FEAT_JOB_CHANNEL
904 ch_log_output = TRUE;
905#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200906 // Disable bracketed paste and modifyOtherKeys here, we won't
907 // recognize the escape sequences with 'esckeys' off.
908 out_str(T_BD);
909 out_str(T_CTE);
910 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000912 *cp = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913
Bram Moolenaarca774f62020-08-30 20:46:38 +0200914 if ((State & INSERT) && !p_ek)
915 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200916#ifdef FEAT_JOB_CHANNEL
917 ch_log_output = TRUE;
918#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200919 // Re-enable bracketed paste mode and modifyOtherKeys
920 out_str(T_BE);
921 out_str(T_CTI);
922 }
923
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 if (langmap_active)
925 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100926 // Undo the decrement done above
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 ++no_mapping;
928 ++allow_keys;
929 State = NORMAL_BUSY;
930 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100931#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 if (lang)
933 {
934 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
935 im_save_status(&curbuf->b_p_iminsert);
936 im_set_active(FALSE);
937 }
938 p_smd = save_smd;
939#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 State = NORMAL_BUSY;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941#ifdef FEAT_CMDL_INFO
942 need_flushbuf |= add_to_showcmd(*cp);
943#endif
944
945 if (!lit)
946 {
947#ifdef FEAT_DIGRAPHS
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100948 // Typing CTRL-K gets a digraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 if (*cp == Ctrl_K
950 && ((nv_cmds[idx].cmd_flags & NV_LANG)
951 || cp == &ca.extra_char)
952 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
953 {
954 c = get_digraph(FALSE);
955 if (c > 0)
956 {
957 *cp = c;
958# ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100959 // Guessing how to update showcmd here...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 del_from_showcmd(3);
961 need_flushbuf |= add_to_showcmd(*cp);
962# endif
963 }
964 }
965#endif
966
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100967 // adjust chars > 127, except after "tTfFr" commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 LANGMAP_ADJUST(*cp, !lang);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100970 // adjust Hebrew mapped char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 if (p_hkmap && lang && KeyTyped)
972 *cp = hkmap(*cp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973#endif
974 }
975
976 /*
977 * When the next character is CTRL-\ a following CTRL-N means the
978 * command is aborted and we go to Normal mode.
979 */
980 if (cp == &ca.extra_char
981 && ca.nchar == Ctrl_BSL
982 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
983 {
984 ca.cmdchar = Ctrl_BSL;
985 ca.nchar = ca.extra_char;
986 idx = find_command(ca.cmdchar);
987 }
Bram Moolenaar12a753a2012-10-23 05:08:53 +0200988 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g')
Bram Moolenaarf00dc262012-10-21 03:54:33 +0200989 ca.oap->op_type = get_op_type(*cp, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 else if (*cp == Ctrl_BSL)
991 {
992 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
993
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100994 // There is a busy wait here when typing "f<C-\>" and then
995 // something different from CTRL-N. Can't be avoided.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 while ((c = vpeekc()) <= 0 && towait > 0L)
997 {
Bram Moolenaare2edc2e2021-01-16 20:21:23 +0100998 do_sleep(towait > 50L ? 50L : towait, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 towait -= 50L;
1000 }
1001 if (c > 0)
1002 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001003 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 if (c != Ctrl_N && c != Ctrl_G)
1005 vungetc(c);
1006 else
1007 {
1008 ca.cmdchar = Ctrl_BSL;
1009 ca.nchar = c;
1010 idx = find_command(ca.cmdchar);
1011 }
1012 }
1013 }
1014
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001015 // When getting a text character and the next character is a
1016 // multi-byte character, it could be a composing character.
1017 // However, don't wait for it to arrive. Also, do enable mapping,
1018 // because if it's put back with vungetc() it's too late to apply
1019 // mapping.
Bram Moolenaar4f880622014-07-23 12:31:20 +02001020 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 while (enc_utf8 && lang && (c = vpeekc()) > 0
1022 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1023 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001024 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 if (!utf_iscomposing(c))
1026 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001027 vungetc(c); // it wasn't, put it back
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 break;
1029 }
1030 else if (ca.ncharC1 == 0)
1031 ca.ncharC1 = c;
1032 else
1033 ca.ncharC2 = c;
1034 }
Bram Moolenaar4f880622014-07-23 12:31:20 +02001035 ++no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 }
1037 --no_mapping;
1038 --allow_keys;
1039 }
1040
1041#ifdef FEAT_CMDL_INFO
1042 /*
1043 * Flush the showcmd characters onto the screen so we can see them while
1044 * the command is being executed. Only do this when the shown command was
1045 * actually displayed, otherwise this will slow down a lot when executing
1046 * mappings.
1047 */
1048 if (need_flushbuf)
1049 out_flush();
1050#endif
Bram Moolenaard9205ca2008-10-02 20:55:54 +00001051 if (ca.cmdchar != K_IGNORE)
Bram Moolenaar08815a12020-07-20 23:10:56 +02001052 {
1053 if (ex_normal_busy)
1054 did_cursorhold = save_did_cursorhold;
1055 else
1056 did_cursorhold = FALSE;
1057 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058
1059 State = NORMAL;
1060
1061 if (ca.nchar == ESC)
1062 {
1063 clearop(oap);
1064 if (restart_edit == 0 && goto_im())
1065 restart_edit = 'a';
1066 goto normal_end;
1067 }
1068
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001069 if (ca.cmdchar != K_IGNORE)
1070 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001071 msg_didout = FALSE; // don't scroll screen up for normal command
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001072 msg_col = 0;
1073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001075 old_pos = curwin->w_cursor; // remember where cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001077 // When 'keymodel' contains "startsel" some keys start Select/Visual
1078 // mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 if (!VIsual_active && km_startsel)
1080 {
1081 if (nv_cmds[idx].cmd_flags & NV_SS)
1082 {
1083 start_selection();
1084 unshift_special(&ca);
1085 idx = find_command(ca.cmdchar);
1086 }
1087 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1088 && (mod_mask & MOD_MASK_SHIFT))
1089 {
1090 start_selection();
1091 mod_mask &= ~MOD_MASK_SHIFT;
1092 }
1093 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094
1095 /*
1096 * Execute the command!
1097 * Call the command function found in the commands table.
1098 */
1099 ca.arg = nv_cmds[idx].cmd_arg;
1100 (nv_cmds[idx].cmd_func)(&ca);
1101
1102 /*
1103 * If we didn't start or finish an operator, reset oap->regname, unless we
1104 * need it later.
1105 */
1106 if (!finish_op
1107 && !oap->op_type
1108 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1109 {
1110 clearop(oap);
1111#ifdef FEAT_EVAL
Bram Moolenaar439c0362020-06-06 15:58:03 +02001112 reset_reg_var();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113#endif
1114 }
1115
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001116 // Get the length of mapped chars again after typing a count, second
1117 // character or "z333<cr>".
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001118 if (old_mapped_len > 0)
1119 old_mapped_len = typebuf_maplen();
1120
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 /*
Bram Moolenaar1ad72c82021-05-04 21:56:28 +02001122 * If an operation is pending, handle it. But not for K_IGNORE or
1123 * K_MOUSEMOVE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 */
Bram Moolenaar1ad72c82021-05-04 21:56:28 +02001125 if (ca.cmdchar != K_IGNORE && ca.cmdchar != K_MOUSEMOVE)
Bram Moolenaarfa5612c2019-12-01 19:37:07 +01001126 do_pending_operator(&ca, old_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127
1128 /*
1129 * Wait for a moment when a message is displayed that will be overwritten
1130 * by the mode message.
1131 * In Visual mode and with "^O" in Insert mode, a short message will be
1132 * overwritten by the mode message. Wait a bit, until a key is hit.
1133 * In Visual mode, it's more important to keep the Visual area updated
1134 * than keeping a message (e.g. from a /pat search).
1135 * Only do this if the command was typed, not from a mapping.
1136 * Don't wait when emsg_silent is non-zero.
1137 * Also wait a bit after an error message, e.g. for "^O:".
1138 * Don't redraw the screen, it would remove the message.
1139 */
1140 if ( ((p_smd
Bram Moolenaar09df3122006-01-23 22:23:09 +00001141 && msg_silent == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 && (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 || (VIsual_active
1144 && old_pos.lnum == curwin->w_cursor.lnum
1145 && old_pos.col == curwin->w_cursor.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 )
1147 && (clear_cmdline
1148 || redraw_cmdline)
1149 && (msg_didout || (msg_didany && msg_scroll))
1150 && !msg_nowait
1151 && KeyTyped)
1152 || (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 && (msg_scroll
1155 || emsg_on_display)))
1156 && oap->regname == 0
1157 && !(ca.retval & CA_COMMAND_BUSY)
1158 && stuff_empty()
1159 && typebuf_typed()
1160 && emsg_silent == 0
Bram Moolenaar28ee8922020-10-28 20:20:00 +01001161 && !in_assert_fails
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 && !did_wait_return
1163 && oap->op_type == OP_NOP)
1164 {
1165 int save_State = State;
1166
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001167 // Draw the cursor with the right shape here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 if (restart_edit != 0)
1169 State = INSERT;
1170
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001171 // If need to redraw, and there is a "keep_msg", redraw before the
1172 // delay
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1174 {
1175 char_u *kmsg;
1176
1177 kmsg = keep_msg;
1178 keep_msg = NULL;
Bram Moolenaar5715b312020-03-16 22:08:45 +01001179 // Showmode() will clear keep_msg, but we want to use it anyway.
1180 // First update w_topline.
1181 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 update_screen(0);
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001183 // now reset it, otherwise it's put in the history again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 keep_msg = kmsg;
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001185
1186 kmsg = vim_strsave(keep_msg);
1187 if (kmsg != NULL)
1188 {
1189 msg_attr((char *)kmsg, keep_msg_attr);
1190 vim_free(kmsg);
1191 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 }
1193 setcursor();
Bram Moolenaar5715b312020-03-16 22:08:45 +01001194#ifdef CURSOR_SHAPE
1195 ui_cursor_shape(); // may show different cursor shape
1196#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 cursor_on();
1198 out_flush();
1199 if (msg_scroll || emsg_on_display)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001200 ui_delay(1003L, TRUE); // wait at least one second
1201 ui_delay(3003L, FALSE); // wait up to three seconds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 State = save_State;
1203
1204 msg_scroll = FALSE;
1205 emsg_on_display = FALSE;
1206 }
1207
1208 /*
1209 * Finish up after executing a Normal mode command.
1210 */
1211normal_end:
1212
1213 msg_nowait = FALSE;
1214
Bram Moolenaarcc613032020-06-07 21:31:18 +02001215#ifdef FEAT_EVAL
1216 if (finish_op)
1217 reset_reg_var();
1218#endif
1219
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001220 // Reset finish_op, in case it was set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221#ifdef CURSOR_SHAPE
1222 c = finish_op;
1223#endif
1224 finish_op = FALSE;
1225#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001226 // Redraw the cursor with another shape, if we were in Operator-pending
1227 // mode or did a replace command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 if (c || ca.cmdchar == 'r')
1229 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001230 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231# ifdef FEAT_MOUSESHAPE
1232 update_mouseshape(-1);
1233# endif
1234 }
1235#endif
1236
1237#ifdef FEAT_CMDL_INFO
Bram Moolenaara983fe92008-07-31 20:04:27 +00001238 if (oap->op_type == OP_NOP && oap->regname == 0
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001239 && ca.cmdchar != K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 clear_showcmd();
1241#endif
1242
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001243 checkpcmark(); // check if we moved since setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 vim_free(ca.searchbuf);
1245
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246 if (has_mbyte)
1247 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 if (curwin->w_p_scb && toplevel)
1250 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001251 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 do_check_scrollbind(TRUE);
1253 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254
Bram Moolenaar860cae12010-06-05 23:22:07 +02001255 if (curwin->w_p_crb && toplevel)
1256 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001257 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar860cae12010-06-05 23:22:07 +02001258 do_check_cursorbind();
1259 }
Bram Moolenaar860cae12010-06-05 23:22:07 +02001260
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001261#ifdef FEAT_TERMINAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001262 // don't go to Insert mode if a terminal has a running job
Bram Moolenaareef9add2017-09-16 15:38:04 +02001263 if (term_job_running(curbuf->b_term))
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001264 restart_edit = 0;
1265#endif
1266
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 /*
1268 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1269 * if still inside a mapping that started in Visual mode).
1270 * May switch from Visual to Select mode after CTRL-O command.
1271 */
1272 if ( oap->op_type == OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1274 || restart_VIsual_select == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 && !(ca.retval & CA_COMMAND_BUSY)
1276 && stuff_empty()
1277 && oap->regname == 0)
1278 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 if (restart_VIsual_select == 1)
1280 {
1281 VIsual_select = TRUE;
1282 showmode();
1283 restart_VIsual_select = 0;
1284 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001285 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 (void)edit(restart_edit, FALSE, 1L);
1287 }
1288
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if (restart_VIsual_select == 2)
1290 restart_VIsual_select = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001292 // Save count before an operator for next time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 opcount = ca.opcount;
1294}
1295
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001296#ifdef FEAT_EVAL
1297/*
1298 * Set v:count and v:count1 according to "cap".
1299 * Set v:prevcount only when "set_prevcount" is TRUE.
1300 */
1301 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001302set_vcount_ca(cmdarg_T *cap, int *set_prevcount)
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001303{
1304 long count = cap->count0;
1305
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001306 // multiply with cap->opcount the same way as above
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001307 if (cap->opcount != 0)
1308 count = cap->opcount * (count == 0 ? 1 : count);
1309 set_vcount(count, count == 0 ? 1 : count, *set_prevcount);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001310 *set_prevcount = FALSE; // only set v:prevcount once
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001311}
1312#endif
1313
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314/*
Bram Moolenaar5715b312020-03-16 22:08:45 +01001315 * Check if highlighting for Visual mode is possible, give a warning message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 * if not.
1317 */
1318 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001319check_visual_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320{
1321 static int did_check = FALSE;
1322
1323 if (full_screen)
1324 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001325 if (!did_check && HL_ATTR(HLF_V) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001326 msg(_("Warning: terminal cannot highlight"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 did_check = TRUE;
1328 }
1329}
1330
Bram Moolenaarfccbf062020-11-26 20:34:00 +01001331#if defined(FEAT_CLIPBOARD) && defined(FEAT_EVAL)
1332/*
1333 * Call yank_do_autocmd() for "regname".
1334 */
1335 static void
1336call_yank_do_autocmd(int regname)
1337{
1338 oparg_T oa;
1339 yankreg_T *reg;
1340
1341 clear_oparg(&oa);
1342 oa.regname = regname;
1343 oa.op_type = OP_YANK;
1344 oa.is_VIsual = TRUE;
1345 reg = get_register(regname, TRUE);
1346 yank_do_autocmd(&oa, reg);
1347 free_register(reg);
1348}
1349#endif
1350
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351/*
Bram Moolenaar66fa2712006-01-22 23:22:22 +00001352 * End Visual mode.
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001353 * This function or the next should ALWAYS be called to end Visual mode, except
1354 * from do_pending_operator().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355 */
1356 void
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001357end_visual_mode()
1358{
1359 end_visual_mode_keep_button();
1360 reset_held_button();
1361}
1362
1363 void
1364end_visual_mode_keep_button()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365{
1366#ifdef FEAT_CLIPBOARD
1367 /*
1368 * If we are using the clipboard, then remember what was selected in case
1369 * we need to paste it somewhere while we still own the selection.
1370 * Only do this when the clipboard is already owned. Don't want to grab
1371 * the selection when hitting ESC.
1372 */
1373 if (clip_star.available && clip_star.owned)
1374 clip_auto_select();
Bram Moolenaarfccbf062020-11-26 20:34:00 +01001375
1376# if defined(FEAT_EVAL)
1377 // Emit a TextYankPost for the automatic copy of the selection into the
1378 // star and/or plus register.
1379 if (has_textyankpost())
1380 {
1381 if (clip_isautosel_star())
1382 call_yank_do_autocmd('*');
1383 if (clip_isautosel_plus())
1384 call_yank_do_autocmd('+');
1385 }
1386# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387#endif
1388
1389 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 setmouse();
1391 mouse_dragging = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001393 // Save the current VIsual area for '< and '> marks, and "gv"
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001394 curbuf->b_visual.vi_mode = VIsual_mode;
1395 curbuf->b_visual.vi_start = VIsual;
1396 curbuf->b_visual.vi_end = curwin->w_cursor;
1397 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398#ifdef FEAT_EVAL
1399 curbuf->b_visual_mode_eval = VIsual_mode;
1400#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 if (!virtual_active())
1402 curwin->w_cursor.coladd = 0;
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001403 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001405 adjust_cursor_eol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406}
1407
1408/*
1409 * Reset VIsual_active and VIsual_reselect.
1410 */
1411 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001412reset_VIsual_and_resel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413{
1414 if (VIsual_active)
1415 {
1416 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001417 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 }
1419 VIsual_reselect = FALSE;
1420}
1421
1422/*
1423 * Reset VIsual_active and VIsual_reselect if it's set.
1424 */
1425 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001426reset_VIsual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427{
1428 if (VIsual_active)
1429 {
1430 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001431 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 VIsual_reselect = FALSE;
1433 }
1434}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001436 void
1437restore_visual_mode(void)
1438{
1439 if (VIsual_mode_orig != NUL)
1440 {
1441 curbuf->b_visual.vi_mode = VIsual_mode_orig;
1442 VIsual_mode_orig = NUL;
1443 }
1444}
1445
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446/*
1447 * Check for a balloon-eval special item to include when searching for an
1448 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
1449 * Returns TRUE if the character at "*ptr" should be included.
1450 * "dir" is FORWARD or BACKWARD, the direction of searching.
1451 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
1452 * "bnp" points to a counter for square brackets.
1453 */
1454 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001455find_is_eval_item(
1456 char_u *ptr,
1457 int *colp,
1458 int *bnp,
1459 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001461 // Accept everything inside [].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
1463 ++*bnp;
1464 if (*bnp > 0)
1465 {
1466 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
1467 --*bnp;
1468 return TRUE;
1469 }
1470
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001471 // skip over "s.var"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 if (*ptr == '.')
1473 return TRUE;
1474
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001475 // two-character item: s->var
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
1477 && ptr[dir == BACKWARD ? -1 : 0] == '-')
1478 {
1479 *colp += dir;
1480 return TRUE;
1481 }
1482 return FALSE;
1483}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484
1485/*
1486 * Find the identifier under or to the right of the cursor.
1487 * "find_type" can have one of three values:
1488 * FIND_IDENT: find an identifier (keyword)
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001489 * FIND_STRING: find any non-white text
1490 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001491 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 *
1493 * There are three steps:
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001494 * 1. Search forward for the start of an identifier/text. Doesn't move if
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 * already on one.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001496 * 2. Search backward for the start of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 * This doesn't match the real Vi but I like it a little better and it
1498 * shouldn't bother anyone.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001499 * 3. Search forward to the end of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 * When FIND_IDENT isn't defined, we backup until a blank.
1501 *
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001502 * Returns the length of the text, or zero if no text is found.
1503 * If text is found, a pointer to the text is put in "*text". This
1504 * points into the current buffer line and is not always NUL terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 */
1506 int
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001507find_ident_under_cursor(char_u **text, int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508{
1509 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001510 curwin->w_cursor.col, text, NULL, find_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511}
1512
1513/*
1514 * Like find_ident_under_cursor(), but for any window and any position.
1515 * However: Uses 'iskeyword' from the current window!.
1516 */
1517 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001518find_ident_at_pos(
1519 win_T *wp,
1520 linenr_T lnum,
1521 colnr_T startcol,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001522 char_u **text,
1523 int *textcol, // column where "text" starts, can be NULL
Bram Moolenaar9b578142016-01-30 19:39:49 +01001524 int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525{
1526 char_u *ptr;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001527 int col = 0; // init to shut up GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 int this_class = 0;
1530 int prev_class;
1531 int prevcol;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001532 int bn = 0; // bracket nesting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533
1534 /*
1535 * if i == 0: try to find an identifier
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001536 * if i == 1: try to find any non-white text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 */
1538 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
1539 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
1540 {
1541 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001542 * 1. skip to start of identifier/text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 */
1544 col = startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 if (has_mbyte)
1546 {
1547 while (ptr[col] != NUL)
1548 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001549 // Stop at a ']' to evaluate "a[x]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1551 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 this_class = mb_get_class(ptr + col);
1553 if (this_class != 0 && (i == 1 || this_class != 1))
1554 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001555 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 }
1557 }
1558 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 while (ptr[col] != NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01001560 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 )
1563 ++col;
1564
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001565 // When starting on a ']' count it, so that we include the '['.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 bn = ptr[col] == ']';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567
1568 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001569 * 2. Back up to start of identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 if (has_mbyte)
1572 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001573 // Remember class of character under cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1575 this_class = mb_get_class((char_u *)"a");
1576 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 this_class = mb_get_class(ptr + col);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001578 while (col > 0 && this_class != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 {
1580 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
1581 prev_class = mb_get_class(ptr + prevcol);
1582 if (this_class != prev_class
1583 && (i == 0
1584 || prev_class == 0
1585 || (find_type & FIND_IDENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 && (!(find_type & FIND_EVAL)
1587 || prevcol == 0
1588 || !find_is_eval_item(ptr + prevcol, &prevcol,
1589 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 )
1591 break;
1592 col = prevcol;
1593 }
1594
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001595 // If we don't want just any old text, or we've found an
1596 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 if (this_class > 2)
1598 this_class = 2;
1599 if (!(find_type & FIND_STRING) || this_class == 2)
1600 break;
1601 }
1602 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 {
1604 while (col > 0
1605 && ((i == 0
1606 ? vim_iswordc(ptr[col - 1])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001607 : (!VIM_ISWHITE(ptr[col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 && (!(find_type & FIND_IDENT)
1609 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 || ((find_type & FIND_EVAL)
1611 && col > 1
1612 && find_is_eval_item(ptr + col - 1, &col,
1613 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 ))
1615 --col;
1616
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001617 // If we don't want just any old text, or we've found an
1618 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
1620 break;
1621 }
1622 }
1623
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001624 if (ptr[col] == NUL || (i == 0
1625 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001627 // didn't find an identifier or text
Bram Moolenaar17627312019-06-02 19:53:44 +02001628 if ((find_type & FIND_NOERROR) == 0)
1629 {
1630 if (find_type & FIND_STRING)
1631 emsg(_("E348: No string under cursor"));
1632 else
1633 emsg(_(e_noident));
1634 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 return 0;
1636 }
1637 ptr += col;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001638 *text = ptr;
1639 if (textcol != NULL)
1640 *textcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641
1642 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001643 * 3. Find the end if the identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 bn = 0;
1646 startcol -= col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 if (has_mbyte)
1649 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001650 // Search for point of changing multibyte character class.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 this_class = mb_get_class(ptr);
1652 while (ptr[col] != NUL
1653 && ((i == 0 ? mb_get_class(ptr + col) == this_class
1654 : mb_get_class(ptr + col) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 || ((find_type & FIND_EVAL)
1656 && col <= (int)startcol
1657 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 ))
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001659 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 }
1661 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 while ((i == 0 ? vim_iswordc(ptr[col])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001663 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 || ((find_type & FIND_EVAL)
1665 && col <= (int)startcol
1666 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 ++col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669
1670 return col;
1671}
1672
1673/*
1674 * Prepare for redo of a normal command.
1675 */
1676 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001677prep_redo_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678{
1679 prep_redo(cap->oap->regname, cap->count0,
1680 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
1681}
1682
1683/*
1684 * Prepare for redo of any command.
1685 * Note that only the last argument can be a multi-byte char.
1686 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001687 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001688prep_redo(
1689 int regname,
1690 long num,
1691 int cmd1,
1692 int cmd2,
1693 int cmd3,
1694 int cmd4,
1695 int cmd5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696{
1697 ResetRedobuff();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001698 if (regname != 0) // yank from specified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 {
1700 AppendCharToRedobuff('"');
1701 AppendCharToRedobuff(regname);
1702 }
1703 if (num)
1704 AppendNumberToRedobuff(num);
1705
1706 if (cmd1 != NUL)
1707 AppendCharToRedobuff(cmd1);
1708 if (cmd2 != NUL)
1709 AppendCharToRedobuff(cmd2);
1710 if (cmd3 != NUL)
1711 AppendCharToRedobuff(cmd3);
1712 if (cmd4 != NUL)
1713 AppendCharToRedobuff(cmd4);
1714 if (cmd5 != NUL)
1715 AppendCharToRedobuff(cmd5);
1716}
1717
1718/*
1719 * check for operator active and clear it
1720 *
1721 * return TRUE if operator was active
1722 */
1723 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001724checkclearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725{
1726 if (oap->op_type == OP_NOP)
1727 return FALSE;
1728 clearopbeep(oap);
1729 return TRUE;
1730}
1731
1732/*
Bram Moolenaarc980de32007-05-06 11:59:04 +00001733 * Check for operator or Visual active. Clear active operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 *
Bram Moolenaarc980de32007-05-06 11:59:04 +00001735 * Return TRUE if operator or Visual was active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 */
1737 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001738checkclearopq(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001740 if (oap->op_type == OP_NOP && !VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 return FALSE;
1742 clearopbeep(oap);
1743 return TRUE;
1744}
1745
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001746 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001747clearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748{
1749 oap->op_type = OP_NOP;
1750 oap->regname = 0;
1751 oap->motion_force = NUL;
1752 oap->use_reg_one = FALSE;
Bram Moolenaar21492742021-06-04 21:57:57 +02001753 motion_force = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754}
1755
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001756 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001757clearopbeep(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758{
1759 clearop(oap);
1760 beep_flush();
1761}
1762
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763/*
1764 * Remove the shift modifier from a special key.
1765 */
1766 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001767unshift_special(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768{
1769 switch (cap->cmdchar)
1770 {
1771 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
1772 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
1773 case K_S_UP: cap->cmdchar = K_UP; break;
1774 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
1775 case K_S_HOME: cap->cmdchar = K_HOME; break;
1776 case K_S_END: cap->cmdchar = K_END; break;
1777 }
1778 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
1779}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001781/*
1782 * If the mode is currently displayed clear the command line or update the
1783 * command displayed.
1784 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001785 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001786may_clear_cmdline(void)
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001787{
1788 if (mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001789 clear_cmdline = TRUE; // unshow visual mode later
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001790#ifdef FEAT_CMDL_INFO
1791 else
1792 clear_showcmd();
1793#endif
1794}
1795
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796#if defined(FEAT_CMDL_INFO) || defined(PROTO)
1797/*
1798 * Routines for displaying a partly typed command
1799 */
1800
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001801#define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802static char_u showcmd_buf[SHOWCMD_BUFLEN];
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001803static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804static int showcmd_is_clear = TRUE;
1805static int showcmd_visual = FALSE;
1806
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001807static void display_showcmd(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808
1809 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001810clear_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811{
1812 if (!p_sc)
1813 return;
1814
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 if (VIsual_active && !char_avail())
1816 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001817 int cursor_bot = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 long lines;
1819 colnr_T leftcol, rightcol;
1820 linenr_T top, bot;
1821
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001822 // Show the size of the Visual area.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001823 if (cursor_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 {
1825 top = VIsual.lnum;
1826 bot = curwin->w_cursor.lnum;
1827 }
1828 else
1829 {
1830 top = curwin->w_cursor.lnum;
1831 bot = VIsual.lnum;
1832 }
1833# ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001834 // Include closed folds as a whole.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001835 (void)hasFolding(top, &top, NULL);
1836 (void)hasFolding(bot, NULL, &bot);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837# endif
1838 lines = bot - top + 1;
1839
1840 if (VIsual_mode == Ctrl_V)
1841 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001842# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001843 char_u *saved_sbr = p_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001844 char_u *saved_w_sbr = curwin->w_p_sbr;
Bram Moolenaar81d00072009-04-29 15:41:40 +00001845
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001846 // Make 'sbr' empty for a moment to get the correct size.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001847 p_sbr = empty_option;
Bram Moolenaaree857022019-11-09 23:26:40 +01001848 curwin->w_p_sbr = empty_option;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001849# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001851# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001852 p_sbr = saved_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001853 curwin->w_p_sbr = saved_w_sbr;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001854# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
1856 (long)(rightcol - leftcol + 1));
1857 }
1858 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
1859 sprintf((char *)showcmd_buf, "%ld", lines);
1860 else
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001861 {
1862 char_u *s, *e;
1863 int l;
1864 int bytes = 0;
1865 int chars = 0;
1866
1867 if (cursor_bot)
1868 {
1869 s = ml_get_pos(&VIsual);
1870 e = ml_get_cursor();
1871 }
1872 else
1873 {
1874 s = ml_get_cursor();
1875 e = ml_get_pos(&VIsual);
1876 }
1877 while ((*p_sel != 'e') ? s <= e : s < e)
1878 {
1879 l = (*mb_ptr2len)(s);
1880 if (l == 0)
1881 {
1882 ++bytes;
1883 ++chars;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001884 break; // end of line
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001885 }
1886 bytes += l;
1887 ++chars;
1888 s += l;
1889 }
1890 if (bytes == chars)
1891 sprintf((char *)showcmd_buf, "%d", chars);
1892 else
1893 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes);
1894 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001895 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 showcmd_visual = TRUE;
1897 }
1898 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 {
1900 showcmd_buf[0] = NUL;
1901 showcmd_visual = FALSE;
1902
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001903 // Don't actually display something if there is nothing to clear.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 if (showcmd_is_clear)
1905 return;
1906 }
1907
1908 display_showcmd();
1909}
1910
1911/*
1912 * Add 'c' to string of shown command chars.
1913 * Return TRUE if output has been written (and setcursor() has been called).
1914 */
1915 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001916add_to_showcmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917{
1918 char_u *p;
1919 int old_len;
1920 int extra_len;
1921 int overflow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 int i;
1923 static int ignore[] =
1924 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001925#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
1927 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001928#endif
Bram Moolenaarec2da362017-01-21 20:04:22 +01001929 K_IGNORE, K_PS,
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001930 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
1932 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001933 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001935 K_CURSORHOLD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 0
1937 };
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938
Bram Moolenaar09df3122006-01-23 22:23:09 +00001939 if (!p_sc || msg_silent != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 return FALSE;
1941
1942 if (showcmd_visual)
1943 {
1944 showcmd_buf[0] = NUL;
1945 showcmd_visual = FALSE;
1946 }
1947
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001948 // Ignore keys that are scrollbar updates and mouse clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 if (IS_SPECIAL(c))
1950 for (i = 0; ignore[i] != 0; ++i)
1951 if (ignore[i] == c)
1952 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953
1954 p = transchar(c);
Bram Moolenaar7ba07412013-12-11 14:55:01 +01001955 if (*p == ' ')
1956 STRCPY(p, "<20>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 old_len = (int)STRLEN(showcmd_buf);
1958 extra_len = (int)STRLEN(p);
1959 overflow = old_len + extra_len - SHOWCMD_COLS;
1960 if (overflow > 0)
Bram Moolenaarb0db5692007-08-14 20:54:49 +00001961 mch_memmove(showcmd_buf, showcmd_buf + overflow,
1962 old_len - overflow + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 STRCAT(showcmd_buf, p);
1964
1965 if (char_avail())
1966 return FALSE;
1967
1968 display_showcmd();
1969
1970 return TRUE;
1971}
1972
1973 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001974add_to_showcmd_c(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975{
1976 if (!add_to_showcmd(c))
1977 setcursor();
1978}
1979
1980/*
1981 * Delete 'len' characters from the end of the shown command.
1982 */
1983 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001984del_from_showcmd(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985{
1986 int old_len;
1987
1988 if (!p_sc)
1989 return;
1990
1991 old_len = (int)STRLEN(showcmd_buf);
1992 if (len > old_len)
1993 len = old_len;
1994 showcmd_buf[old_len - len] = NUL;
1995
1996 if (!char_avail())
1997 display_showcmd();
1998}
1999
2000/*
2001 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
2002 * something and there is a partial mapping.
2003 */
2004 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002005push_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006{
2007 if (p_sc)
2008 STRCPY(old_showcmd_buf, showcmd_buf);
2009}
2010
2011 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002012pop_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013{
2014 if (!p_sc)
2015 return;
2016
2017 STRCPY(showcmd_buf, old_showcmd_buf);
2018
2019 display_showcmd();
2020}
2021
2022 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002023display_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024{
2025 int len;
2026
2027 cursor_off();
2028
2029 len = (int)STRLEN(showcmd_buf);
2030 if (len == 0)
2031 showcmd_is_clear = TRUE;
2032 else
2033 {
2034 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
2035 showcmd_is_clear = FALSE;
2036 }
2037
2038 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00002039 * clear the rest of an old message by outputting up to SHOWCMD_COLS
2040 * spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 */
2042 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
2043
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002044 setcursor(); // put cursor back where it belongs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045}
2046#endif
2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048/*
2049 * When "check" is FALSE, prepare for commands that scroll the window.
2050 * When "check" is TRUE, take care of scroll-binding after the window has
2051 * scrolled. Called from normal_cmd() and edit().
2052 */
2053 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002054do_check_scrollbind(int check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055{
2056 static win_T *old_curwin = NULL;
2057 static linenr_T old_topline = 0;
2058#ifdef FEAT_DIFF
2059 static int old_topfill = 0;
2060#endif
2061 static buf_T *old_buf = NULL;
2062 static colnr_T old_leftcol = 0;
2063
2064 if (check && curwin->w_p_scb)
2065 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002066 // If a ":syncbind" command was just used, don't scroll, only reset
2067 // the values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 if (did_syncbind)
2069 did_syncbind = FALSE;
2070 else if (curwin == old_curwin)
2071 {
2072 /*
2073 * Synchronize other windows, as necessary according to
2074 * 'scrollbind'. Don't do this after an ":edit" command, except
2075 * when 'diff' is set.
2076 */
2077 if ((curwin->w_buffer == old_buf
2078#ifdef FEAT_DIFF
2079 || curwin->w_p_diff
2080#endif
2081 )
2082 && (curwin->w_topline != old_topline
2083#ifdef FEAT_DIFF
2084 || curwin->w_topfill != old_topfill
2085#endif
2086 || curwin->w_leftcol != old_leftcol))
2087 {
2088 check_scrollbind(curwin->w_topline - old_topline,
2089 (long)(curwin->w_leftcol - old_leftcol));
2090 }
2091 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002092 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 {
2094 /*
2095 * When switching between windows, make sure that the relative
2096 * vertical offset is valid for the new window. The relative
2097 * offset is invalid whenever another 'scrollbind' window has
2098 * scrolled to a point that would force the current window to
2099 * scroll past the beginning or end of its buffer. When the
2100 * resync is performed, some of the other 'scrollbind' windows may
2101 * need to jump so that the current window's relative position is
2102 * visible on-screen.
2103 */
2104 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
2105 }
2106 curwin->w_scbind_pos = curwin->w_topline;
2107 }
2108
2109 old_curwin = curwin;
2110 old_topline = curwin->w_topline;
2111#ifdef FEAT_DIFF
2112 old_topfill = curwin->w_topfill;
2113#endif
2114 old_buf = curwin->w_buffer;
2115 old_leftcol = curwin->w_leftcol;
2116}
2117
2118/*
2119 * Synchronize any windows that have "scrollbind" set, based on the
2120 * number of rows by which the current window has changed
2121 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
2122 */
2123 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002124check_scrollbind(linenr_T topline_diff, long leftcol_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125{
2126 int want_ver;
2127 int want_hor;
2128 win_T *old_curwin = curwin;
2129 buf_T *old_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 int old_VIsual_select = VIsual_select;
2131 int old_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 colnr_T tgt_leftcol = curwin->w_leftcol;
2133 long topline;
2134 long y;
2135
2136 /*
2137 * check 'scrollopt' string for vertical and horizontal scroll options
2138 */
2139 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
2140#ifdef FEAT_DIFF
2141 want_ver |= old_curwin->w_p_diff;
2142#endif
2143 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
2144
2145 /*
2146 * loop through the scrollbound windows and scroll accordingly
2147 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002149 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 {
2151 curbuf = curwin->w_buffer;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002152 // skip original window and windows with 'noscrollbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 if (curwin != old_curwin && curwin->w_p_scb)
2154 {
2155 /*
2156 * do the vertical scroll
2157 */
2158 if (want_ver)
2159 {
2160#ifdef FEAT_DIFF
2161 if (old_curwin->w_p_diff && curwin->w_p_diff)
2162 {
2163 diff_set_topline(old_curwin, curwin);
2164 }
2165 else
2166#endif
2167 {
2168 curwin->w_scbind_pos += topline_diff;
2169 topline = curwin->w_scbind_pos;
2170 if (topline > curbuf->b_ml.ml_line_count)
2171 topline = curbuf->b_ml.ml_line_count;
2172 if (topline < 1)
2173 topline = 1;
2174
2175 y = topline - curwin->w_topline;
2176 if (y > 0)
2177 scrollup(y, FALSE);
2178 else
2179 scrolldown(-y, FALSE);
2180 }
2181
2182 redraw_later(VALID);
2183 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 }
2186
2187 /*
2188 * do the horizontal scroll
2189 */
2190 if (want_hor && curwin->w_leftcol != tgt_leftcol)
2191 {
2192 curwin->w_leftcol = tgt_leftcol;
2193 leftcol_changed();
2194 }
2195 }
2196 }
2197
2198 /*
2199 * reset current-window
2200 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 VIsual_select = old_VIsual_select;
2202 VIsual_active = old_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 curwin = old_curwin;
2204 curbuf = old_curbuf;
2205}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206
2207/*
2208 * Command character that's ignored.
2209 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02002210 * xon/xoff.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002213nv_ignore(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002215 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216}
2217
2218/*
Bram Moolenaarebefac62005-12-28 22:39:57 +00002219 * Command character that doesn't do anything, but unlike nv_ignore() does
2220 * start edit(). Used for "startinsert" executed while starting up.
2221 */
Bram Moolenaarebefac62005-12-28 22:39:57 +00002222 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002223nv_nop(cmdarg_T *cap UNUSED)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002224{
2225}
2226
2227/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 * Command character doesn't exist.
2229 */
2230 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002231nv_error(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232{
2233 clearopbeep(cap->oap);
2234}
2235
2236/*
2237 * <Help> and <F1> commands.
2238 */
2239 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002240nv_help(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241{
2242 if (!checkclearopq(cap->oap))
2243 ex_help(NULL);
2244}
2245
2246/*
2247 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
2248 */
2249 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002250nv_addsub(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251{
Bram Moolenaarf2732452018-06-03 14:47:35 +02002252#ifdef FEAT_JOB_CHANNEL
2253 if (bt_prompt(curbuf) && !prompt_curpos_editable())
2254 clearopbeep(cap->oap);
2255 else
2256#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01002257 if (!VIsual_active && cap->oap->op_type == OP_NOP)
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002258 {
Bram Moolenaaref2b5032016-01-12 22:20:58 +01002259 prep_redo_cmd(cap);
Bram Moolenaard79e5502016-01-10 22:13:02 +01002260 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB;
2261 op_addsub(cap->oap, cap->count1, cap->arg);
2262 cap->oap->op_type = OP_NOP;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002263 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01002264 else if (VIsual_active)
2265 nv_operator(cap);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02002266 else
Bram Moolenaard79e5502016-01-10 22:13:02 +01002267 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268}
2269
2270/*
2271 * CTRL-F, CTRL-B, etc: Scroll page up or down.
2272 */
2273 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002274nv_page(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275{
2276 if (!checkclearop(cap->oap))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002277 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002278 if (mod_mask & MOD_MASK_CTRL)
2279 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002280 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002281 if (cap->arg == BACKWARD)
2282 goto_tabpage(-(int)cap->count1);
2283 else
2284 goto_tabpage((int)cap->count0);
2285 }
2286 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02002287 (void)onepage(cap->arg, cap->count1);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289}
2290
2291/*
2292 * Implementation of "gd" and "gD" command.
2293 */
2294 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002295nv_gd(
2296 oparg_T *oap,
2297 int nchar,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002298 int thisblock) // 1 for "1gd" and "1gD"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299{
2300 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 char_u *ptr;
2302
Bram Moolenaard9d30582005-05-18 22:10:28 +00002303 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
Bram Moolenaar1538fc32016-04-16 09:13:34 +02002304 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)
2305 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 clearopbeep(oap);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002307#ifdef FEAT_FOLDING
2308 else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
2309 foldOpenCursor();
2310#endif
2311}
2312
2313/*
Bram Moolenaar226630a2016-10-08 19:21:31 +02002314 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE
2315 * otherwise.
2316 */
2317 static int
2318is_ident(char_u *line, int offset)
2319{
2320 int i;
2321 int incomment = FALSE;
2322 int instring = 0;
2323 int prev = 0;
2324
2325 for (i = 0; i < offset && line[i] != NUL; i++)
2326 {
2327 if (instring != 0)
2328 {
2329 if (prev != '\\' && line[i] == instring)
2330 instring = 0;
2331 }
2332 else if ((line[i] == '"' || line[i] == '\'') && !incomment)
2333 {
2334 instring = line[i];
2335 }
2336 else
2337 {
2338 if (incomment)
2339 {
2340 if (prev == '*' && line[i] == '/')
2341 incomment = FALSE;
2342 }
2343 else if (prev == '/' && line[i] == '*')
2344 {
2345 incomment = TRUE;
2346 }
2347 else if (prev == '/' && line[i] == '/')
2348 {
2349 return FALSE;
2350 }
2351 }
2352
2353 prev = line[i];
2354 }
2355
2356 return incomment == FALSE && instring == 0;
2357}
2358
2359/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002360 * Search for variable declaration of "ptr[len]".
2361 * When "locally" is TRUE in the current function ("gd"), otherwise in the
2362 * current file ("gD").
2363 * When "thisblock" is TRUE check the {} block scope.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002364 * Return FAIL when not found.
2365 */
2366 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002367find_decl(
2368 char_u *ptr,
2369 int len,
2370 int locally,
2371 int thisblock,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002372 int flags_arg) // flags passed to searchit()
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002373{
2374 char_u *pat;
2375 pos_T old_pos;
2376 pos_T par_pos;
2377 pos_T found_pos;
2378 int t;
2379 int save_p_ws;
2380 int save_p_scs;
2381 int retval = OK;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002382 int incll;
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002383 int searchflags = flags_arg;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002384 int valid;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002385
2386 if ((pat = alloc(len + 7)) == NULL)
2387 return FAIL;
Bram Moolenaard9d30582005-05-18 22:10:28 +00002388
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002389 // Put "\V" before the pattern to avoid that the special meaning of "."
2390 // and "~" causes trouble.
Bram Moolenaard9d30582005-05-18 22:10:28 +00002391 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
2392 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 old_pos = curwin->w_cursor;
2394 save_p_ws = p_ws;
2395 save_p_scs = p_scs;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002396 p_ws = FALSE; // don't wrap around end of file now
2397 p_scs = FALSE; // don't switch ignorecase off now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398
2399 /*
2400 * With "gD" go to line 1.
2401 * With "gd" Search back for the start of the current function, then go
2402 * back until a blank line. If this fails go to line 1.
2403 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002404 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002406 setpcmark(); // Set in findpar() otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 curwin->w_cursor.lnum = 1;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002408 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 }
2410 else
2411 {
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002412 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
2414 --curwin->w_cursor.lnum;
2415 }
2416 curwin->w_cursor.col = 0;
2417
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002418 // Search forward for the identifier, ignore comment lines.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002419 CLEAR_POS(&found_pos);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002420 for (;;)
2421 {
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002422 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02002423 pat, 1L, searchflags, RE_LAST, NULL);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002424 if (curwin->w_cursor.lnum >= old_pos.lnum)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002425 t = FAIL; // match after start is failure too
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002426
Bram Moolenaar0fd92892006-03-09 22:27:48 +00002427 if (thisblock && t != FAIL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002428 {
2429 pos_T *pos;
2430
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002431 // Check that the block the match is in doesn't end before the
2432 // position where we started the search from.
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002433 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
2434 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
2435 && pos->lnum < old_pos.lnum)
Bram Moolenaar60402d62017-04-20 18:54:50 +02002436 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002437 // There can't be a useful match before the end of this block.
2438 // Skip to the end.
Bram Moolenaar60402d62017-04-20 18:54:50 +02002439 curwin->w_cursor = *pos;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002440 continue;
Bram Moolenaar60402d62017-04-20 18:54:50 +02002441 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002442 }
2443
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002444 if (t == FAIL)
2445 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002446 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002447 if (found_pos.lnum != 0)
2448 {
2449 curwin->w_cursor = found_pos;
2450 t = OK;
2451 }
2452 break;
2453 }
Bram Moolenaar81340392012-06-06 16:12:59 +02002454 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002455 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002456 // Ignore this line, continue at start of next line.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002457 ++curwin->w_cursor.lnum;
2458 curwin->w_cursor.col = 0;
2459 continue;
2460 }
Bram Moolenaar226630a2016-10-08 19:21:31 +02002461 valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
2462
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002463 // If the current position is not a valid identifier and a previous
2464 // match is present, favor that one instead.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002465 if (!valid && found_pos.lnum != 0)
2466 {
2467 curwin->w_cursor = found_pos;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002468 break;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002469 }
2470
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002471 // Global search: use first valid match found
Bram Moolenaar226630a2016-10-08 19:21:31 +02002472 if (valid && !locally)
2473 break;
2474 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002475 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002476 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002477 if (found_pos.lnum != 0)
2478 curwin->w_cursor = found_pos;
2479 break;
2480 }
2481
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002482 // For finding a local variable and the match is before the "{" or
2483 // inside a comment, continue searching. For K&R style function
2484 // declarations this skips the function header without types.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002485 if (!valid)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002486 CLEAR_POS(&found_pos);
Bram Moolenaar226630a2016-10-08 19:21:31 +02002487 else
Bram Moolenaar226630a2016-10-08 19:21:31 +02002488 found_pos = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002489 // Remove SEARCH_START from flags to avoid getting stuck at one
2490 // position.
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002491 searchflags &= ~SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002493
2494 if (t == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002496 retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 curwin->w_cursor = old_pos;
2498 }
2499 else
2500 {
2501 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002502 // "n" searches forward now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 reset_search_dir();
2504 }
2505
2506 vim_free(pat);
2507 p_ws = save_p_ws;
2508 p_scs = save_p_scs;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002509
2510 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511}
2512
2513/*
2514 * Move 'dist' lines in direction 'dir', counting lines by *screen*
2515 * lines rather than lines in the file.
2516 * 'dist' must be positive.
2517 *
2518 * Return OK if able to move cursor, FAIL otherwise.
2519 */
2520 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002521nv_screengo(oparg_T *oap, int dir, long dist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522{
2523 int linelen = linetabsize(ml_get_curline());
2524 int retval = OK;
2525 int atend = FALSE;
2526 int n;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002527 int col_off1; // margin offset for first screen line
2528 int col_off2; // margin offset for wrapped screen line
2529 int width1; // text width for first screen line
2530 int width2; // test width for wrapped screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531
2532 oap->motion_type = MCHAR;
Bram Moolenaar91b2bdb2013-07-14 13:32:15 +02002533 oap->inclusive = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534
2535 col_off1 = curwin_col_off();
2536 col_off2 = col_off1 - curwin_col_off2();
Bram Moolenaar02631462017-09-22 15:20:32 +02002537 width1 = curwin->w_width - col_off1;
2538 width2 = curwin->w_width - col_off2;
Bram Moolenaar7cc8ec42015-01-27 20:59:31 +01002539 if (width2 == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002540 width2 = 1; // avoid divide by zero
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 if (curwin->w_width != 0)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002543 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 /*
2545 * Instead of sticking at the last character of the buffer line we
2546 * try to stick in the last column of the screen.
2547 */
2548 if (curwin->w_curswant == MAXCOL)
2549 {
2550 atend = TRUE;
2551 validate_virtcol();
2552 if (width1 <= 0)
2553 curwin->w_curswant = 0;
2554 else
2555 {
2556 curwin->w_curswant = width1 - 1;
2557 if (curwin->w_virtcol > curwin->w_curswant)
2558 curwin->w_curswant += ((curwin->w_virtcol
2559 - curwin->w_curswant - 1) / width2 + 1) * width2;
2560 }
2561 }
2562 else
2563 {
2564 if (linelen > width1)
2565 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2566 else
2567 n = width1;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002568 if (curwin->w_curswant >= (colnr_T)n)
2569 curwin->w_curswant = n - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 }
2571
2572 while (dist--)
2573 {
2574 if (dir == BACKWARD)
2575 {
Bram Moolenaar3c49e742021-04-04 21:26:04 +02002576 if ((long)curwin->w_curswant >= width1
2577#ifdef FEAT_FOLDING
2578 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL)
2579#endif
2580 )
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002581 // Move back within the line. This can give a negative value
2582 // for w_curswant if width1 < width2 (with cpoptions+=n),
2583 // which will get clipped to column 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 curwin->w_curswant -= width2;
2585 else
2586 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002587 // to previous line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002589 // Move to the start of a closed fold. Don't do that when
2590 // 'foldopen' contains "all": it will open in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 if (!(fdo_flags & FDO_ALL))
2592 (void)hasFolding(curwin->w_cursor.lnum,
2593 &curwin->w_cursor.lnum, NULL);
2594#endif
Bram Moolenaare71996b2021-01-21 17:03:07 +01002595 if (curwin->w_cursor.lnum == 1)
2596 {
2597 retval = FAIL;
2598 break;
2599 }
2600 --curwin->w_cursor.lnum;
2601
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 linelen = linetabsize(ml_get_curline());
2603 if (linelen > width1)
2604 curwin->w_curswant += (((linelen - width1 - 1) / width2)
2605 + 1) * width2;
2606 }
2607 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002608 else // dir == FORWARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 {
2610 if (linelen > width1)
2611 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2612 else
2613 n = width1;
Bram Moolenaar3c49e742021-04-04 21:26:04 +02002614 if (curwin->w_curswant + width2 < (colnr_T)n
2615#ifdef FEAT_FOLDING
2616 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL)
2617#endif
2618 )
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002619 // move forward within line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 curwin->w_curswant += width2;
2621 else
2622 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002623 // to next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002625 // Move to the end of a closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2627 &curwin->w_cursor.lnum);
2628#endif
2629 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
2630 {
2631 retval = FAIL;
2632 break;
2633 }
2634 curwin->w_cursor.lnum++;
2635 curwin->w_curswant %= width2;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002636 // Check if the cursor has moved below the number display
2637 // when width1 < width2 (with cpoptions+=n). Subtract width2
2638 // to get a negative value for w_curswant, which will get
2639 // clipped to column 0.
2640 if (curwin->w_curswant >= width1)
2641 curwin->w_curswant -= width2;
Bram Moolenaar914968e2011-06-20 00:45:58 +02002642 linelen = linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 }
2644 }
2645 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647
Bram Moolenaar6cd3aee2014-01-14 13:18:58 +01002648 if (virtual_active() && atend)
2649 coladvance(MAXCOL);
2650 else
2651 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
2654 {
Bram Moolenaar773b1582014-08-29 14:20:51 +02002655 colnr_T virtcol;
2656
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 /*
2658 * Check for landing on a character that got split at the end of the
2659 * last line. We want to advance a screenline, not end up in the same
2660 * screenline or move two screenlines.
2661 */
2662 validate_virtcol();
Bram Moolenaar773b1582014-08-29 14:20:51 +02002663 virtcol = curwin->w_virtcol;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002664#if defined(FEAT_LINEBREAK)
Bram Moolenaaree857022019-11-09 23:26:40 +01002665 if (virtcol > (colnr_T)width1 && *get_showbreak_value(curwin) != NUL)
2666 virtcol -= vim_strsize(get_showbreak_value(curwin));
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002667#endif
Bram Moolenaar773b1582014-08-29 14:20:51 +02002668
2669 if (virtcol > curwin->w_curswant
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 && (curwin->w_curswant < (colnr_T)width1
2671 ? (curwin->w_curswant > (colnr_T)width1 / 2)
2672 : ((curwin->w_curswant - width1) % width2
2673 > (colnr_T)width2 / 2)))
2674 --curwin->w_cursor.col;
2675 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676
2677 if (atend)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002678 curwin->w_curswant = MAXCOL; // stick in the last column
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679
2680 return retval;
2681}
2682
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683/*
2684 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
2685 * cap->arg must be TRUE for CTRL-E.
2686 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002687 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002688nv_scroll_line(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689{
2690 if (!checkclearop(cap->oap))
2691 scroll_redraw(cap->arg, cap->count1);
2692}
2693
2694/*
2695 * Scroll "count" lines up or down, and redraw.
2696 */
2697 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002698scroll_redraw(int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699{
2700 linenr_T prev_topline = curwin->w_topline;
2701#ifdef FEAT_DIFF
2702 int prev_topfill = curwin->w_topfill;
2703#endif
2704 linenr_T prev_lnum = curwin->w_cursor.lnum;
2705
2706 if (up)
2707 scrollup(count, TRUE);
2708 else
2709 scrolldown(count, TRUE);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002710 if (get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002712 // Adjust the cursor position for 'scrolloff'. Mark w_topline as
2713 // valid, otherwise the screen jumps back at the end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 cursor_correct();
2715 check_cursor_moved(curwin);
2716 curwin->w_valid |= VALID_TOPLINE;
2717
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002718 // If moved back to where we were, at least move the cursor, otherwise
2719 // we get stuck at one position. Don't move the cursor up if the
2720 // first line of the buffer is already on the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 while (curwin->w_topline == prev_topline
2722#ifdef FEAT_DIFF
2723 && curwin->w_topfill == prev_topfill
2724#endif
2725 )
2726 {
2727 if (up)
2728 {
2729 if (curwin->w_cursor.lnum > prev_lnum
2730 || cursor_down(1L, FALSE) == FAIL)
2731 break;
2732 }
2733 else
2734 {
2735 if (curwin->w_cursor.lnum < prev_lnum
2736 || prev_topline == 1L
2737 || cursor_up(1L, FALSE) == FAIL)
2738 break;
2739 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002740 // Mark w_topline as valid, otherwise the screen jumps back at the
2741 // end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 check_cursor_moved(curwin);
2743 curwin->w_valid |= VALID_TOPLINE;
2744 }
2745 }
2746 if (curwin->w_cursor.lnum != prev_lnum)
2747 coladvance(curwin->w_curswant);
2748 redraw_later(VALID);
2749}
2750
2751/*
2752 * Commands that start with "z".
2753 */
2754 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002755nv_zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756{
2757 long n;
2758 colnr_T col;
2759 int nchar = cap->nchar;
2760#ifdef FEAT_FOLDING
2761 long old_fdl = curwin->w_p_fdl;
2762 int old_fen = curwin->w_p_fen;
2763#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002764#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00002765 int undo = FALSE;
2766#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +01002767 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768
2769 if (VIM_ISDIGIT(nchar))
2770 {
2771 /*
2772 * "z123{nchar}": edit the count before obtaining {nchar}
2773 */
2774 if (checkclearop(cap->oap))
2775 return;
2776 n = nchar - '0';
2777 for (;;)
2778 {
2779#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002780 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781#endif
2782 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002783 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00002784 nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 --no_mapping;
2787 --allow_keys;
2788#ifdef FEAT_CMDL_INFO
2789 (void)add_to_showcmd(nchar);
2790#endif
2791 if (nchar == K_DEL || nchar == K_KDEL)
2792 n /= 10;
2793 else if (VIM_ISDIGIT(nchar))
2794 n = n * 10 + (nchar - '0');
2795 else if (nchar == CAR)
2796 {
2797#ifdef FEAT_GUI
2798 need_mouse_correct = TRUE;
2799#endif
2800 win_setheight((int)n);
2801 break;
2802 }
2803 else if (nchar == 'l'
2804 || nchar == 'h'
2805 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00002806 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 {
2808 cap->count1 = n ? n * cap->count1 : cap->count1;
2809 goto dozet;
2810 }
2811 else
2812 {
2813 clearopbeep(cap->oap);
2814 break;
2815 }
2816 }
2817 cap->oap->op_type = OP_NOP;
2818 return;
2819 }
2820
2821dozet:
2822 if (
2823#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002824 // "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
2825 // and "zC" only in Visual mode. "zj" and "zk" are motion
2826 // commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 cap->nchar != 'f' && cap->nchar != 'F'
2828 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
2829 && cap->nchar != 'j' && cap->nchar != 'k'
2830 &&
2831#endif
2832 checkclearop(cap->oap))
2833 return;
2834
2835 /*
2836 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
2837 * If line number given, set cursor.
2838 */
2839 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
2840 && cap->count0
2841 && cap->count0 != curwin->w_cursor.lnum)
2842 {
2843 setpcmark();
2844 if (cap->count0 > curbuf->b_ml.ml_line_count)
2845 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2846 else
2847 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002848 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 }
2850
2851 switch (nchar)
2852 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002853 // "z+", "z<CR>" and "zt": put cursor at top of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 case '+':
2855 if (cap->count0 == 0)
2856 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002857 // No count given: put cursor at the line below screen
2858 validate_botline(); // make sure w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2860 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2861 else
2862 curwin->w_cursor.lnum = curwin->w_botline;
2863 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002864 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 case NL:
2866 case CAR:
2867 case K_KENTER:
2868 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002869 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870
2871 case 't': scroll_cursor_top(0, TRUE);
2872 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002873 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 break;
2875
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002876 // "z." and "zz": put cursor in middle of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 case '.': beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002878 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879
2880 case 'z': scroll_cursor_halfway(TRUE);
2881 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002882 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883 break;
2884
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002885 // "z^", "z-" and "zb": put cursor at bottom of screen
2886 case '^': // Strange Vi behavior: <count>z^ finds line at top of window
2887 // when <count> is at bottom of window, and puts that one at
2888 // bottom of window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 if (cap->count0 != 0)
2890 {
2891 scroll_cursor_bot(0, TRUE);
2892 curwin->w_cursor.lnum = curwin->w_topline;
2893 }
2894 else if (curwin->w_topline == 1)
2895 curwin->w_cursor.lnum = 1;
2896 else
2897 curwin->w_cursor.lnum = curwin->w_topline - 1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002898 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 case '-':
2900 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002901 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902
2903 case 'b': scroll_cursor_bot(0, TRUE);
2904 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002905 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906 break;
2907
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002908 // "zH" - scroll screen right half-page
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 case 'H':
Bram Moolenaar02631462017-09-22 15:20:32 +02002910 cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002911 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002913 // "zh" - scroll screen to the right
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 case 'h':
2915 case K_LEFT:
2916 if (!curwin->w_p_wrap)
2917 {
2918 if ((colnr_T)cap->count1 > curwin->w_leftcol)
2919 curwin->w_leftcol = 0;
2920 else
2921 curwin->w_leftcol -= (colnr_T)cap->count1;
2922 leftcol_changed();
2923 }
2924 break;
2925
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002926 // "zL" - scroll screen left half-page
Bram Moolenaar02631462017-09-22 15:20:32 +02002927 case 'L': cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002928 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002930 // "zl" - scroll screen to the left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 case 'l':
2932 case K_RIGHT:
2933 if (!curwin->w_p_wrap)
2934 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002935 // scroll the window left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 curwin->w_leftcol += (colnr_T)cap->count1;
2937 leftcol_changed();
2938 }
2939 break;
2940
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002941 // "zs" - scroll screen, cursor at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 case 's': if (!curwin->w_p_wrap)
2943 {
2944#ifdef FEAT_FOLDING
2945 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002946 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 else
2948#endif
2949 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002950 if ((long)col > siso)
2951 col -= siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 else
2953 col = 0;
2954 if (curwin->w_leftcol != col)
2955 {
2956 curwin->w_leftcol = col;
2957 redraw_later(NOT_VALID);
2958 }
2959 }
2960 break;
2961
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002962 // "ze" - scroll screen, cursor at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 case 'e': if (!curwin->w_p_wrap)
2964 {
2965#ifdef FEAT_FOLDING
2966 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002967 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968 else
2969#endif
2970 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
Bram Moolenaar02631462017-09-22 15:20:32 +02002971 n = curwin->w_width - curwin_col_off();
Bram Moolenaar375e3392019-01-31 18:26:10 +01002972 if ((long)col + siso < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 col = 0;
2974 else
Bram Moolenaar375e3392019-01-31 18:26:10 +01002975 col = col + siso - n + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 if (curwin->w_leftcol != col)
2977 {
2978 curwin->w_leftcol = col;
2979 redraw_later(NOT_VALID);
2980 }
2981 }
2982 break;
2983
Christian Brabandt2fa93842021-05-30 22:17:25 +02002984 // "zp", "zP" in block mode put without addind trailing spaces
2985 case 'P':
2986 case 'p': nv_put(cap);
2987 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002989 // "zF": create fold command
2990 // "zf": create fold operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 case 'F':
2992 case 'f': if (foldManualAllowed(TRUE))
2993 {
2994 cap->nchar = 'f';
2995 nv_operator(cap);
2996 curwin->w_p_fen = TRUE;
2997
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002998 // "zF" is like "zfzf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
3000 {
3001 nv_operator(cap);
3002 finish_op = TRUE;
3003 }
3004 }
3005 else
3006 clearopbeep(cap->oap);
3007 break;
3008
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003009 // "zd": delete fold at cursor
3010 // "zD": delete fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 case 'd':
3012 case 'D': if (foldManualAllowed(FALSE))
3013 {
3014 if (VIsual_active)
3015 nv_operator(cap);
3016 else
3017 deleteFold(curwin->w_cursor.lnum,
3018 curwin->w_cursor.lnum, nchar == 'D', FALSE);
3019 }
3020 break;
3021
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003022 // "zE": erase all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 case 'E': if (foldmethodIsManual(curwin))
3024 {
3025 clearFolding(curwin);
3026 changed_window_setting();
3027 }
3028 else if (foldmethodIsMarker(curwin))
3029 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
3030 TRUE, FALSE);
3031 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003032 emsg(_("E352: Cannot erase folds with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 break;
3034
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003035 // "zn": fold none: reset 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036 case 'n': curwin->w_p_fen = FALSE;
3037 break;
3038
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003039 // "zN": fold Normal: set 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040 case 'N': curwin->w_p_fen = TRUE;
3041 break;
3042
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003043 // "zi": invert folding: toggle 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
3045 break;
3046
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003047 // "za": open closed fold or close open fold at cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3049 openFold(curwin->w_cursor.lnum, cap->count1);
3050 else
3051 {
3052 closeFold(curwin->w_cursor.lnum, cap->count1);
3053 curwin->w_p_fen = TRUE;
3054 }
3055 break;
3056
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003057 // "zA": open fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3059 openFoldRecurse(curwin->w_cursor.lnum);
3060 else
3061 {
3062 closeFoldRecurse(curwin->w_cursor.lnum);
3063 curwin->w_p_fen = TRUE;
3064 }
3065 break;
3066
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003067 // "zo": open fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 case 'o': if (VIsual_active)
3069 nv_operator(cap);
3070 else
3071 openFold(curwin->w_cursor.lnum, cap->count1);
3072 break;
3073
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003074 // "zO": open fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 case 'O': if (VIsual_active)
3076 nv_operator(cap);
3077 else
3078 openFoldRecurse(curwin->w_cursor.lnum);
3079 break;
3080
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003081 // "zc": close fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 case 'c': if (VIsual_active)
3083 nv_operator(cap);
3084 else
3085 closeFold(curwin->w_cursor.lnum, cap->count1);
3086 curwin->w_p_fen = TRUE;
3087 break;
3088
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003089 // "zC": close fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 case 'C': if (VIsual_active)
3091 nv_operator(cap);
3092 else
3093 closeFoldRecurse(curwin->w_cursor.lnum);
3094 curwin->w_p_fen = TRUE;
3095 break;
3096
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003097 // "zv": open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 case 'v': foldOpenCursor();
3099 break;
3100
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003101 // "zx": re-apply 'foldlevel' and open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 case 'x': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003103 curwin->w_foldinvalid = TRUE; // recompute folds
3104 newFoldLevel(); // update right now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 foldOpenCursor();
3106 break;
3107
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003108 // "zX": undo manual opens/closes, re-apply 'foldlevel'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 case 'X': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003110 curwin->w_foldinvalid = TRUE; // recompute folds
3111 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 break;
3113
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003114 // "zm": fold more
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 case 'm': if (curwin->w_p_fdl > 0)
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003116 {
3117 curwin->w_p_fdl -= cap->count1;
3118 if (curwin->w_p_fdl < 0)
3119 curwin->w_p_fdl = 0;
3120 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003121 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 curwin->w_p_fen = TRUE;
3123 break;
3124
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003125 // "zM": close all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 case 'M': curwin->w_p_fdl = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003127 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 curwin->w_p_fen = TRUE;
3129 break;
3130
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003131 // "zr": reduce folding
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003132 case 'r': curwin->w_p_fdl += cap->count1;
3133 {
3134 int d = getDeepestNesting();
3135
3136 if (curwin->w_p_fdl >= d)
3137 curwin->w_p_fdl = d;
3138 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 break;
3140
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003141 // "zR": open all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142 case 'R': curwin->w_p_fdl = getDeepestNesting();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003143 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 break;
3145
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003146 case 'j': // "zj" move to next fold downwards
3147 case 'k': // "zk" move to next fold upwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
3149 cap->count1) == FAIL)
3150 clearopbeep(cap->oap);
3151 break;
3152
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003153#endif // FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00003155#ifdef FEAT_SPELL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003156 case 'u': // "zug" and "zuw": undo "zg" and "zw"
Bram Moolenaard0131a82006-03-04 21:46:13 +00003157 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003158 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003159 nchar = plain_vgetc();
Bram Moolenaard0131a82006-03-04 21:46:13 +00003160 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaard0131a82006-03-04 21:46:13 +00003161 --no_mapping;
3162 --allow_keys;
3163#ifdef FEAT_CMDL_INFO
3164 (void)add_to_showcmd(nchar);
3165#endif
3166 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
3167 {
3168 clearopbeep(cap->oap);
3169 break;
3170 }
3171 undo = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003172 // FALLTHROUGH
Bram Moolenaard0131a82006-03-04 21:46:13 +00003173
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003174 case 'g': // "zg": add good word to word list
3175 case 'w': // "zw": add wrong word to word list
3176 case 'G': // "zG": add good word to temp word list
3177 case 'W': // "zW": add wrong word to temp word list
Bram Moolenaarb765d632005-06-07 21:00:02 +00003178 {
3179 char_u *ptr = NULL;
3180 int len;
3181
3182 if (checkclearop(cap->oap))
3183 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003184 if (VIsual_active && get_visual_text(cap, &ptr, &len)
3185 == FAIL)
3186 return;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003187 if (ptr == NULL)
3188 {
3189 pos_T pos = curwin->w_cursor;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003190
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003191 // Find bad word under the cursor. When 'spell' is
3192 // off this fails and find_ident_under_cursor() is
3193 // used below.
Bram Moolenaar134bf072013-09-25 18:54:24 +02003194 emsg_off++;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003195 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
Bram Moolenaar134bf072013-09-25 18:54:24 +02003196 emsg_off--;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003197 if (len != 0 && curwin->w_cursor.col <= pos.col)
3198 ptr = ml_get_pos(&curwin->w_cursor);
3199 curwin->w_cursor = pos;
3200 }
3201
Bram Moolenaarb765d632005-06-07 21:00:02 +00003202 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
3203 FIND_IDENT)) == 0)
3204 return;
Bram Moolenaar08cc3742019-08-11 22:51:14 +02003205 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W'
3206 ? SPELL_ADD_BAD : SPELL_ADD_GOOD,
Bram Moolenaard0131a82006-03-04 21:46:13 +00003207 (nchar == 'G' || nchar == 'W')
3208 ? 0 : (int)cap->count1,
3209 undo);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003210 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00003211 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003212
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003213 case '=': // "z=": suggestions for a badly spelled word
Bram Moolenaar66fa2712006-01-22 23:22:22 +00003214 if (!checkclearop(cap->oap))
Bram Moolenaard12a1322005-08-21 22:08:24 +00003215 spell_suggest((int)cap->count0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003216 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003217#endif
3218
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 default: clearopbeep(cap->oap);
3220 }
3221
3222#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003223 // Redraw when 'foldenable' changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 if (old_fen != curwin->w_p_fen)
3225 {
3226# ifdef FEAT_DIFF
3227 win_T *wp;
3228
3229 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
3230 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003231 // Adjust 'foldenable' in diff-synced windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 FOR_ALL_WINDOWS(wp)
3233 {
3234 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
3235 {
3236 wp->w_p_fen = curwin->w_p_fen;
3237 changed_window_setting_win(wp);
3238 }
3239 }
3240 }
3241# endif
3242 changed_window_setting();
3243 }
3244
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003245 // Redraw when 'foldlevel' changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246 if (old_fdl != curwin->w_p_fdl)
3247 newFoldLevel();
3248#endif
3249}
3250
3251#ifdef FEAT_GUI
3252/*
3253 * Vertical scrollbar movement.
3254 */
3255 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003256nv_ver_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257{
3258 if (cap->oap->op_type != OP_NOP)
3259 clearopbeep(cap->oap);
3260
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003261 // Even if an operator was pending, we still want to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262 gui_do_scroll();
3263}
3264
3265/*
3266 * Horizontal scrollbar movement.
3267 */
3268 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003269nv_hor_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270{
3271 if (cap->oap->op_type != OP_NOP)
3272 clearopbeep(cap->oap);
3273
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003274 // Even if an operator was pending, we still want to scroll
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003275 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276}
3277#endif
3278
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003279#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003280/*
3281 * Click in GUI tab.
3282 */
3283 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003284nv_tabline(cmdarg_T *cap)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003285{
3286 if (cap->oap->op_type != OP_NOP)
3287 clearopbeep(cap->oap);
3288
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003289 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003290 goto_tabpage(current_tab);
3291}
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003292
3293/*
3294 * Selected item in tab line menu.
3295 */
3296 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003297nv_tabmenu(cmdarg_T *cap)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003298{
3299 if (cap->oap->op_type != OP_NOP)
3300 clearopbeep(cap->oap);
3301
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003302 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003303 handle_tabmenu();
3304}
3305
3306/*
3307 * Handle selecting an item of the GUI tab line menu.
3308 * Used in Normal and Insert mode.
3309 */
3310 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003311handle_tabmenu(void)
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003312{
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003313 switch (current_tabmenu)
3314 {
3315 case TABLINE_MENU_CLOSE:
3316 if (current_tab == 0)
3317 do_cmdline_cmd((char_u *)"tabclose");
3318 else
3319 {
3320 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
3321 current_tab);
3322 do_cmdline_cmd(IObuff);
3323 }
3324 break;
3325
3326 case TABLINE_MENU_NEW:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003327 if (current_tab == 0)
3328 do_cmdline_cmd((char_u *)"$tabnew");
3329 else
3330 {
3331 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
3332 current_tab - 1);
3333 do_cmdline_cmd(IObuff);
3334 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003335 break;
3336
3337 case TABLINE_MENU_OPEN:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003338 if (current_tab == 0)
3339 do_cmdline_cmd((char_u *)"browse $tabnew");
3340 else
3341 {
3342 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
3343 current_tab - 1);
3344 do_cmdline_cmd(IObuff);
3345 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003346 break;
3347 }
3348}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003349#endif
3350
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351/*
3352 * "Q" command.
3353 */
3354 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003355nv_exmode(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356{
3357 /*
3358 * Ignore 'Q' in Visual mode, just give a beep.
3359 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360 if (VIsual_active)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003361 vim_beep(BO_EX);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003362 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 do_exmode(FALSE);
3364}
3365
3366/*
3367 * Handle a ":" command.
3368 */
3369 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003370nv_colon(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371{
Bram Moolenaar957cf672020-11-12 14:21:06 +01003372 int old_p_im;
3373 int cmd_result;
3374 int is_cmdkey = cap->cmdchar == K_COMMAND;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375
Bram Moolenaar957cf672020-11-12 14:21:06 +01003376 if (VIsual_active && !is_cmdkey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 nv_operator(cap);
3378 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 {
3380 if (cap->oap->op_type != OP_NOP)
3381 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003382 // Using ":" as a movement is characterwise exclusive.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 cap->oap->motion_type = MCHAR;
3384 cap->oap->inclusive = FALSE;
3385 }
Bram Moolenaar957cf672020-11-12 14:21:06 +01003386 else if (cap->count0 && !is_cmdkey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003388 // translate "count:" into ":.,.+(count - 1)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389 stuffcharReadbuff('.');
3390 if (cap->count0 > 1)
3391 {
3392 stuffReadbuff((char_u *)",.+");
3393 stuffnumReadbuff((long)cap->count0 - 1L);
3394 }
3395 }
3396
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003397 // When typing, don't type below an old message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 if (KeyTyped)
3399 compute_cmdrow();
3400
3401 old_p_im = p_im;
3402
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003403 // get a command line and execute it
Bram Moolenaar957cf672020-11-12 14:21:06 +01003404 cmd_result = do_cmdline(NULL, is_cmdkey ? getcmdkeycmd : getexline, NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
3406
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003407 // If 'insertmode' changed, enter or exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 if (p_im != old_p_im)
3409 {
3410 if (p_im)
3411 restart_edit = 'i';
3412 else
3413 restart_edit = 0;
3414 }
3415
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003416 if (cmd_result == FAIL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003417 // The Ex command failed, do not execute the operator.
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003418 clearop(cap->oap);
3419 else if (cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
3421 || cap->oap->start.col >
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003422 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
3423 || did_emsg
3424 ))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003425 // The start of the operator has become invalid by the Ex command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 clearopbeep(cap->oap);
3427 }
3428}
3429
3430/*
3431 * Handle CTRL-G command.
3432 */
3433 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003434nv_ctrlg(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003436 if (VIsual_active) // toggle Selection/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 {
3438 VIsual_select = !VIsual_select;
3439 showmode();
3440 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003441 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003442 // print full name if count given or :cd used
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 fileinfo((int)cap->count0, FALSE, TRUE);
3444}
3445
3446/*
3447 * Handle CTRL-H <Backspace> command.
3448 */
3449 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003450nv_ctrlh(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 if (VIsual_active && VIsual_select)
3453 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003454 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 v_visop(cap);
3456 }
3457 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 nv_left(cap);
3459}
3460
3461/*
3462 * CTRL-L: clear screen and redraw.
3463 */
3464 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003465nv_clear(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466{
3467 if (!checkclearop(cap->oap))
3468 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469#ifdef FEAT_SYN_HL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003470 // Clear all syntax states to force resyncing.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003471 syn_stack_free_all(curwin->w_s);
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02003472# ifdef FEAT_RELTIME
3473 {
3474 win_T *wp;
3475
3476 FOR_ALL_WINDOWS(wp)
3477 wp->w_s->b_syn_slow = FALSE;
3478 }
3479# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480#endif
3481 redraw_later(CLEAR);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003482#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3483# ifdef VIMDLL
3484 if (!gui.in_use)
3485# endif
3486 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01003487#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 }
3489}
3490
3491/*
3492 * CTRL-O: In Select mode: switch to Visual mode for one command.
3493 * Otherwise: Go to older pcmark.
3494 */
3495 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003496nv_ctrlo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 if (VIsual_active && VIsual_select)
3499 {
3500 VIsual_select = FALSE;
3501 showmode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003502 restart_VIsual_select = 2; // restart Select mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503 }
3504 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 {
3506 cap->count1 = -cap->count1;
3507 nv_pcmark(cap);
3508 }
3509}
3510
3511/*
Bram Moolenaar1bbb6192018-11-10 16:02:01 +01003512 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is
3513 * not named.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 */
3515 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003516nv_hat(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517{
3518 if (!checkclearopq(cap->oap))
3519 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
3520 GETF_SETMARK|GETF_ALT, FALSE);
3521}
3522
3523/*
3524 * "Z" commands.
3525 */
3526 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003527nv_Zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528{
3529 if (!checkclearopq(cap->oap))
3530 {
3531 switch (cap->nchar)
3532 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003533 // "ZZ": equivalent to ":x".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 case 'Z': do_cmdline_cmd((char_u *)"x");
3535 break;
3536
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003537 // "ZQ": equivalent to ":q!" (Elvis compatible).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 case 'Q': do_cmdline_cmd((char_u *)"q!");
3539 break;
3540
3541 default: clearopbeep(cap->oap);
3542 }
3543 }
3544}
3545
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546/*
3547 * Call nv_ident() as if "c1" was used, with "c2" as next character.
3548 */
3549 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003550do_nv_ident(int c1, int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551{
3552 oparg_T oa;
3553 cmdarg_T ca;
3554
3555 clear_oparg(&oa);
Bram Moolenaara80faa82020-04-12 19:37:17 +02003556 CLEAR_FIELD(ca);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 ca.oap = &oa;
3558 ca.cmdchar = c1;
3559 ca.nchar = c2;
3560 nv_ident(&ca);
3561}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562
3563/*
3564 * Handle the commands that use the word under the cursor.
3565 * [g] CTRL-] :ta to current identifier
3566 * [g] 'K' run program for current identifier
3567 * [g] '*' / to current identifier or string
3568 * [g] '#' ? to current identifier or string
3569 * g ']' :tselect for current identifier
3570 */
3571 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003572nv_ident(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573{
3574 char_u *ptr = NULL;
3575 char_u *buf;
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003576 unsigned buflen;
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003577 char_u *newbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 char_u *p;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003579 char_u *kp; // value of 'keywordprg'
3580 int kp_help; // 'keywordprg' is ":he"
3581 int kp_ex; // 'keywordprg' starts with ":"
3582 int n = 0; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 int cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003584 int g_cmd; // "g" command
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003585 int tag_cmd = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 char_u *aux_ptr;
3587 int isman;
3588 int isman_s;
3589
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003590 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 {
3592 cmdchar = cap->nchar;
3593 g_cmd = TRUE;
3594 }
3595 else
3596 {
3597 cmdchar = cap->cmdchar;
3598 g_cmd = FALSE;
3599 }
3600
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003601 if (cmdchar == POUND) // the pound sign, '#' for English keyboards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 cmdchar = '#';
3603
3604 /*
3605 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
3606 */
3607 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
3608 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
3610 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611 if (checkclearopq(cap->oap))
3612 return;
3613 }
3614
3615 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
3616 (cmdchar == '*' || cmdchar == '#')
3617 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
3618 {
3619 clearop(cap->oap);
3620 return;
3621 }
3622
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003623 // Allocate buffer to put the command in. Inserting backslashes can
3624 // double the length of the word. p_kp / curbuf->b_p_kp could be added
3625 // and some numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
3627 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
3628 || STRCMP(kp, ":help") == 0);
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003629 if (kp_help && *skipwhite(ptr) == NUL)
3630 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003631 emsg(_(e_noident)); // found white space only
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003632 return;
3633 }
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003634 kp_ex = (*kp == ':');
3635 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp));
3636 buf = alloc(buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 if (buf == NULL)
3638 return;
3639 buf[0] = NUL;
3640
3641 switch (cmdchar)
3642 {
3643 case '*':
3644 case '#':
3645 /*
3646 * Put cursor at start of word, makes search skip the word
3647 * under the cursor.
3648 * Call setpcmark() first, so "*``" puts the cursor back where
3649 * it was.
3650 */
3651 setpcmark();
3652 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
3653
3654 if (!g_cmd && vim_iswordp(ptr))
3655 STRCPY(buf, "\\<");
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003656 no_smartcase = TRUE; // don't use 'smartcase' now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 break;
3658
3659 case 'K':
3660 if (kp_help)
3661 STRCPY(buf, "he! ");
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003662 else if (kp_ex)
3663 {
3664 if (cap->count0 != 0)
3665 vim_snprintf((char *)buf, buflen, "%s %ld",
3666 kp, cap->count0);
3667 else
3668 STRCPY(buf, kp);
3669 STRCAT(buf, " ");
3670 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 else
3672 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003673 // An external command will probably use an argument starting
3674 // with "-" as an option. To avoid trouble we skip the "-".
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003675 while (*ptr == '-' && n > 0)
3676 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003677 ++ptr;
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003678 --n;
3679 }
3680 if (n == 0)
3681 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003682 emsg(_(e_noident)); // found dashes only
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003683 vim_free(buf);
3684 return;
3685 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003686
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003687 // When a count is given, turn it into a range. Is this
3688 // really what we want?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 isman = (STRCMP(kp, "man") == 0);
3690 isman_s = (STRCMP(kp, "man -s") == 0);
3691 if (cap->count0 != 0 && !(isman || isman_s))
3692 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
3693
3694 STRCAT(buf, "! ");
3695 if (cap->count0 == 0 && isman_s)
3696 STRCAT(buf, "man");
3697 else
3698 STRCAT(buf, kp);
3699 STRCAT(buf, " ");
3700 if (cap->count0 != 0 && (isman || isman_s))
3701 {
3702 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
3703 STRCAT(buf, " ");
3704 }
3705 }
3706 break;
3707
3708 case ']':
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003709 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710#ifdef FEAT_CSCOPE
3711 if (p_cst)
3712 STRCPY(buf, "cstag ");
3713 else
3714#endif
3715 STRCPY(buf, "ts ");
3716 break;
3717
3718 default:
Bram Moolenaar97e7a842010-03-17 13:07:08 +01003719 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 if (curbuf->b_help)
3721 STRCPY(buf, "he! ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 else
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003723 {
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003724 if (g_cmd)
3725 STRCPY(buf, "tj ");
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003726 else if (cap->count0 == 0)
3727 STRCPY(buf, "ta ");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003728 else
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003729 sprintf((char *)buf, ":%ldta ", cap->count0);
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003730 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 }
3732
3733 /*
3734 * Now grab the chars in the identifier
3735 */
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003736 if (cmdchar == 'K' && !kp_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 {
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003738 ptr = vim_strnsave(ptr, n);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003739 if (kp_ex)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003740 // Escape the argument properly for an Ex command
Bram Moolenaar426f3752016-11-04 21:22:37 +01003741 p = vim_strsave_fnameescape(ptr, FALSE);
3742 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003743 // Escape the argument properly for a shell command
Bram Moolenaar426f3752016-11-04 21:22:37 +01003744 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003745 vim_free(ptr);
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003746 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003748 vim_free(buf);
3749 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003751 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003752 if (newbuf == NULL)
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003753 {
3754 vim_free(buf);
3755 vim_free(p);
3756 return;
3757 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003758 buf = newbuf;
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003759 STRCAT(buf, p);
3760 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003762 else
3763 {
3764 if (cmdchar == '*')
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003765 aux_ptr = (char_u *)(magic_isset() ? "/.*~[^$\\" : "/^$\\");
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003766 else if (cmdchar == '#')
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003767 aux_ptr = (char_u *)(magic_isset() ? "/?.*~[^$\\" : "/?^$\\");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003768 else if (tag_cmd)
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003769 {
3770 if (curbuf->b_help)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003771 // ":help" handles unescaped argument
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003772 aux_ptr = (char_u *)"";
3773 else
3774 aux_ptr = (char_u *)"\\|\"\n[";
3775 }
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003776 else
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003777 aux_ptr = (char_u *)"\\|\"\n*?[";
3778
3779 p = buf + STRLEN(buf);
3780 while (n-- > 0)
3781 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003782 // put a backslash before \ and some others
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003783 if (vim_strchr(aux_ptr, *ptr) != NULL)
3784 *p++ = '\\';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003785 // When current byte is a part of multibyte character, copy all
3786 // bytes of that character.
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003787 if (has_mbyte)
3788 {
3789 int i;
3790 int len = (*mb_ptr2len)(ptr) - 1;
3791
3792 for (i = 0; i < len && n >= 1; ++i, --n)
3793 *p++ = *ptr++;
3794 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003795 *p++ = *ptr++;
3796 }
3797 *p = NUL;
3798 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799
3800 /*
3801 * Execute the command.
3802 */
3803 if (cmdchar == '*' || cmdchar == '#')
3804 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003805 if (!g_cmd && (has_mbyte
3806 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr))
3807 : vim_iswordc(ptr[-1])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 STRCAT(buf, "\\>");
Bram Moolenaard7663c22019-08-06 21:59:57 +02003809
3810 // put pattern in search history
Bram Moolenaarc7be3f32009-12-24 14:01:12 +00003811 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
Bram Moolenaard7663c22019-08-06 21:59:57 +02003813
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003814 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 }
3816 else
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003817 {
3818 g_tag_at_cursor = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 do_cmdline_cmd(buf);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003820 g_tag_at_cursor = FALSE;
3821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822
3823 vim_free(buf);
3824}
3825
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826/*
3827 * Get visually selected text, within one line only.
3828 * Returns FAIL if more than one line selected.
3829 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003830 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003831get_visual_text(
3832 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003833 char_u **pp, // return: start of selected text
3834 int *lenp) // return: length of selected text
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835{
3836 if (VIsual_mode != 'V')
3837 unadjust_for_sel();
3838 if (VIsual.lnum != curwin->w_cursor.lnum)
3839 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003840 if (cap != NULL)
3841 clearopbeep(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 return FAIL;
3843 }
3844 if (VIsual_mode == 'V')
3845 {
3846 *pp = ml_get_curline();
3847 *lenp = (int)STRLEN(*pp);
3848 }
3849 else
3850 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003851 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 {
3853 *pp = ml_get_pos(&curwin->w_cursor);
3854 *lenp = VIsual.col - curwin->w_cursor.col + 1;
3855 }
3856 else
3857 {
3858 *pp = ml_get_pos(&VIsual);
3859 *lenp = curwin->w_cursor.col - VIsual.col + 1;
3860 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 if (has_mbyte)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003862 // Correct the length to include the whole last character.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003863 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 }
3865 reset_VIsual_and_resel();
3866 return OK;
3867}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868
3869/*
3870 * CTRL-T: backwards in tag stack
3871 */
3872 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003873nv_tagpop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874{
3875 if (!checkclearopq(cap->oap))
3876 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
3877}
3878
3879/*
3880 * Handle scrolling command 'H', 'L' and 'M'.
3881 */
3882 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003883nv_scroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884{
3885 int used = 0;
3886 long n;
3887#ifdef FEAT_FOLDING
3888 linenr_T lnum;
3889#endif
3890 int half;
3891
3892 cap->oap->motion_type = MLINE;
3893 setpcmark();
3894
3895 if (cap->cmdchar == 'L')
3896 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003897 validate_botline(); // make sure curwin->w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898 curwin->w_cursor.lnum = curwin->w_botline - 1;
3899 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
3900 curwin->w_cursor.lnum = 1;
3901 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003902 {
3903#ifdef FEAT_FOLDING
3904 if (hasAnyFolding(curwin))
3905 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003906 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003907 for (n = cap->count1 - 1; n > 0
3908 && curwin->w_cursor.lnum > curwin->w_topline; --n)
3909 {
3910 (void)hasFolding(curwin->w_cursor.lnum,
3911 &curwin->w_cursor.lnum, NULL);
3912 --curwin->w_cursor.lnum;
3913 }
3914 }
3915 else
3916#endif
3917 curwin->w_cursor.lnum -= cap->count1 - 1;
3918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 }
3920 else
3921 {
3922 if (cap->cmdchar == 'M')
3923 {
3924#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003925 // Don't count filler lines above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 used -= diff_check_fill(curwin, curwin->w_topline)
3927 - curwin->w_topfill;
3928#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003929 validate_botline(); // make sure w_empty_rows is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
3931 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
3932 {
3933#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003934 // Count half he number of filler lines to be "below this
3935 // line" and half to be "above the next line".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
3937 + n) / 2 >= half)
3938 {
3939 --n;
3940 break;
3941 }
3942#endif
3943 used += plines(curwin->w_topline + n);
3944 if (used >= half)
3945 break;
3946#ifdef FEAT_FOLDING
3947 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
3948 n = lnum - curwin->w_topline;
3949#endif
3950 }
3951 if (n > 0 && used > curwin->w_height)
3952 --n;
3953 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003954 else // (cap->cmdchar == 'H')
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003955 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003957#ifdef FEAT_FOLDING
3958 if (hasAnyFolding(curwin))
3959 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003960 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003961 lnum = curwin->w_topline;
3962 while (n-- > 0 && lnum < curwin->w_botline - 1)
3963 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02003964 (void)hasFolding(lnum, NULL, &lnum);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003965 ++lnum;
3966 }
3967 n = lnum - curwin->w_topline;
3968 }
3969#endif
3970 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 curwin->w_cursor.lnum = curwin->w_topline + n;
3972 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3973 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3974 }
3975
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003976 // Correct for 'so', except when an operator is pending.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02003977 if (cap->oap->op_type == OP_NOP)
3978 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 beginline(BL_SOL | BL_FIX);
3980}
3981
3982/*
3983 * Cursor right commands.
3984 */
3985 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003986nv_right(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987{
3988 long n;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003989 int past_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003991 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
3992 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003993 // <C-Right> and <S-Right> move a word or WORD right
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003994 if (mod_mask & MOD_MASK_CTRL)
3995 cap->arg = TRUE;
3996 nv_wordcmd(cap);
3997 return;
3998 }
3999
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000 cap->oap->motion_type = MCHAR;
4001 cap->oap->inclusive = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004002 past_line = (VIsual_active && *p_sel != 'o');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 /*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004005 * In virtual edit mode, there's no such thing as "past_line", as lines
4006 * are (theoretically) infinitely long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 */
4008 if (virtual_active())
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004009 past_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010
4011 for (n = cap->count1; n > 0; --n)
4012 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004013 if ((!past_line && oneright() == FAIL)
4014 || (past_line && *ml_get_cursor() == NUL)
Bram Moolenaar78a15312009-05-15 19:33:18 +00004015 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016 {
4017 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004018 * <Space> wraps to next line if 'whichwrap' has 's'.
4019 * 'l' wraps to next line if 'whichwrap' has 'l'.
4020 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 */
4022 if ( ((cap->cmdchar == ' '
4023 && vim_strchr(p_ww, 's') != NULL)
4024 || (cap->cmdchar == 'l'
4025 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004026 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 && vim_strchr(p_ww, '>') != NULL))
4028 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4029 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004030 // When deleting we also count the NL as a character.
4031 // Set cap->oap->inclusive when last char in the line is
4032 // included, move to next line after that
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004033 if ( cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 && !cap->oap->inclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004035 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 cap->oap->inclusive = TRUE;
4037 else
4038 {
4039 ++curwin->w_cursor.lnum;
4040 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 curwin->w_set_curswant = TRUE;
4043 cap->oap->inclusive = FALSE;
4044 }
4045 continue;
4046 }
4047 if (cap->oap->op_type == OP_NOP)
4048 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004049 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 if (n == cap->count1)
4051 beep_flush();
4052 }
4053 else
4054 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004055 if (!LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 cap->oap->inclusive = TRUE;
4057 }
4058 break;
4059 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004060 else if (past_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061 {
4062 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 if (virtual_active())
4064 oneright();
4065 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 if (has_mbyte)
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02004068 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 ++curwin->w_cursor.col;
4071 }
4072 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 }
4074#ifdef FEAT_FOLDING
4075 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4076 && cap->oap->op_type == OP_NOP)
4077 foldOpenCursor();
4078#endif
4079}
4080
4081/*
4082 * Cursor left commands.
4083 *
4084 * Returns TRUE when operator end should not be adjusted.
4085 */
4086 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004087nv_left(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088{
4089 long n;
4090
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004091 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4092 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004093 // <C-Left> and <S-Left> move a word or WORD left
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004094 if (mod_mask & MOD_MASK_CTRL)
4095 cap->arg = 1;
4096 nv_bck_word(cap);
4097 return;
4098 }
4099
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 cap->oap->motion_type = MCHAR;
4101 cap->oap->inclusive = FALSE;
4102 for (n = cap->count1; n > 0; --n)
4103 {
4104 if (oneleft() == FAIL)
4105 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004106 // <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
4107 // 'h' wraps to previous line if 'whichwrap' has 'h'.
4108 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 if ( (((cap->cmdchar == K_BS
4110 || cap->cmdchar == Ctrl_H)
4111 && vim_strchr(p_ww, 'b') != NULL)
4112 || (cap->cmdchar == 'h'
4113 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004114 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 && vim_strchr(p_ww, '<') != NULL))
4116 && curwin->w_cursor.lnum > 1)
4117 {
4118 --(curwin->w_cursor.lnum);
4119 coladvance((colnr_T)MAXCOL);
4120 curwin->w_set_curswant = TRUE;
4121
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004122 // When the NL before the first char has to be deleted we
4123 // put the cursor on the NUL after the previous line.
4124 // This is a very special case, be careful!
4125 // Don't adjust op_end now, otherwise it won't work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 if ( (cap->oap->op_type == OP_DELETE
4127 || cap->oap->op_type == OP_CHANGE)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004128 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004130 char_u *cp = ml_get_cursor();
4131
4132 if (*cp != NUL)
4133 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004134 if (has_mbyte)
4135 curwin->w_cursor.col += (*mb_ptr2len)(cp);
4136 else
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004137 ++curwin->w_cursor.col;
4138 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 cap->retval |= CA_NO_ADJ_OP_END;
4140 }
4141 continue;
4142 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004143 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
4145 beep_flush();
4146 break;
4147 }
4148 }
4149#ifdef FEAT_FOLDING
4150 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4151 && cap->oap->op_type == OP_NOP)
4152 foldOpenCursor();
4153#endif
4154}
4155
4156/*
4157 * Cursor up commands.
4158 * cap->arg is TRUE for "-": Move cursor to first non-blank.
4159 */
4160 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004161nv_up(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004163 if (mod_mask & MOD_MASK_SHIFT)
4164 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004165 // <S-Up> is page up
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004166 cap->arg = BACKWARD;
4167 nv_page(cap);
4168 }
4169 else
4170 {
4171 cap->oap->motion_type = MLINE;
4172 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4173 clearopbeep(cap->oap);
4174 else if (cap->arg)
4175 beginline(BL_WHITE | BL_FIX);
4176 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177}
4178
4179/*
4180 * Cursor down commands.
4181 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
4182 */
4183 static void
Bram Moolenaar1b010052016-09-12 12:24:11 +02004184nv_down(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004186 if (mod_mask & MOD_MASK_SHIFT)
4187 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004188 // <S-Down> is page down
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004189 cap->arg = FORWARD;
4190 nv_page(cap);
4191 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02004192#if defined(FEAT_QUICKFIX)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004193 // Quickfix window only: view the result under the cursor.
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004194 else if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
4195 qf_view_result(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196#endif
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004197 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 {
4199#ifdef FEAT_CMDWIN
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004200 // In the cmdline window a <CR> executes the command.
Bram Moolenaar05159a02005-02-26 23:04:13 +00004201 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 cmdwin_result = CAR;
4203 else
4204#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02004205#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004206 // In a prompt buffer a <CR> in the last line invokes the callback.
Bram Moolenaarf2732452018-06-03 14:47:35 +02004207 if (bt_prompt(curbuf) && cap->cmdchar == CAR
4208 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4209 {
4210 invoke_prompt_callback();
4211 if (restart_edit == 0)
4212 restart_edit = 'a';
4213 }
4214 else
4215#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 {
4217 cap->oap->motion_type = MLINE;
4218 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4219 clearopbeep(cap->oap);
4220 else if (cap->arg)
4221 beginline(BL_WHITE | BL_FIX);
4222 }
4223 }
4224}
4225
4226#ifdef FEAT_SEARCHPATH
4227/*
4228 * Grab the file name under the cursor and edit it.
4229 */
4230 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004231nv_gotofile(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232{
4233 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004234 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004236 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 {
4238 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004239 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 return;
4241 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004242 if (curbuf_locked())
4243 {
4244 clearop(cap->oap);
4245 return;
4246 }
Bram Moolenaar5aed0cc2020-05-12 22:02:21 +02004247#ifdef FEAT_PROP_POPUP
4248 if (ERROR_IF_TERM_POPUP_WINDOW)
4249 return;
4250#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004252 ptr = grab_file_name(cap->count1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253
4254 if (ptr != NULL)
4255 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004256 // do autowrite if necessary
Bram Moolenaareb44a682017-08-03 22:44:55 +02004257 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf))
Bram Moolenaarcde88542015-08-11 19:14:00 +02004258 (void)autowrite(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 setpcmark();
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004260 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
Bram Moolenaareb44a682017-08-03 22:44:55 +02004261 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004262 && cap->nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004263 {
4264 curwin->w_cursor.lnum = lnum;
4265 check_cursor_lnum();
4266 beginline(BL_SOL | BL_FIX);
4267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 vim_free(ptr);
4269 }
4270 else
4271 clearop(cap->oap);
4272}
4273#endif
4274
4275/*
4276 * <End> command: to end of current line or last line.
4277 */
4278 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004279nv_end(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004281 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004283 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 nv_goto(cap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004285 cap->count1 = 1; // to end of current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 }
4287 nv_dollar(cap);
4288}
4289
4290/*
4291 * Handle the "$" command.
4292 */
4293 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004294nv_dollar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295{
4296 cap->oap->motion_type = MCHAR;
4297 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004298 // In virtual mode when off the edge of a line and an operator
4299 // is pending (whew!) keep the cursor where it is.
4300 // Otherwise, send it to the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 if (!virtual_active() || gchar_cursor() != NUL
4302 || cap->oap->op_type == OP_NOP)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004303 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 if (cursor_down((long)(cap->count1 - 1),
4305 cap->oap->op_type == OP_NOP) == FAIL)
4306 clearopbeep(cap->oap);
4307#ifdef FEAT_FOLDING
4308 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4309 foldOpenCursor();
4310#endif
4311}
4312
4313/*
4314 * Implementation of '?' and '/' commands.
4315 * If cap->arg is TRUE don't set PC mark.
4316 */
4317 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004318nv_search(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319{
4320 oparg_T *oap = cap->oap;
Bram Moolenaardda933d2016-09-03 21:04:58 +02004321 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322
4323 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
4324 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004325 // Translate "g??" to "g?g?"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 cap->cmdchar = 'g';
4327 cap->nchar = '?';
4328 nv_operator(cap);
4329 return;
4330 }
4331
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004332 // When using 'incsearch' the cursor may be moved to set a different search
4333 // start position.
Bram Moolenaare96a2492019-06-25 04:12:16 +02004334 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335
4336 if (cap->searchbuf == NULL)
4337 {
4338 clearop(oap);
4339 return;
4340 }
4341
Bram Moolenaar46539112015-02-17 15:43:57 +01004342 (void)normal_search(cap, cap->cmdchar, cap->searchbuf,
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004343 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor))
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004344 ? 0 : SEARCH_MARK, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345}
4346
4347/*
4348 * Handle "N" and "n" commands.
4349 * cap->arg is SEARCH_REV for "N", 0 for "n".
4350 */
4351 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004352nv_next(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353{
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004354 pos_T old = curwin->w_cursor;
4355 int wrapped = FALSE;
4356 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, &wrapped);
Bram Moolenaar46539112015-02-17 15:43:57 +01004357
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004358 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor))
Bram Moolenaar46539112015-02-17 15:43:57 +01004359 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004360 // Avoid getting stuck on the current cursor position, which can
4361 // happen when an offset is given and the cursor is on the last char
4362 // in the buffer: Repeat with count + 1.
Bram Moolenaar46539112015-02-17 15:43:57 +01004363 cap->count1 += 1;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004364 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL);
Bram Moolenaar46539112015-02-17 15:43:57 +01004365 cap->count1 -= 1;
4366 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367}
4368
4369/*
4370 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
4371 * Uses only cap->count1 and cap->oap from "cap".
Bram Moolenaar46539112015-02-17 15:43:57 +01004372 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 */
Bram Moolenaar46539112015-02-17 15:43:57 +01004374 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004375normal_search(
4376 cmdarg_T *cap,
4377 int dir,
4378 char_u *pat,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004379 int opt, // extra flags for do_search()
4380 int *wrapped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381{
4382 int i;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004383 searchit_arg_T sia;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384
4385 cap->oap->motion_type = MCHAR;
4386 cap->oap->inclusive = FALSE;
4387 cap->oap->use_reg_one = TRUE;
4388 curwin->w_set_curswant = TRUE;
4389
Bram Moolenaara80faa82020-04-12 19:37:17 +02004390 CLEAR_FIELD(sia);
Bram Moolenaarc036e872020-02-21 21:30:52 +01004391 i = do_search(cap->oap, dir, dir, pat, cap->count1,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004392 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, &sia);
4393 if (wrapped != NULL)
4394 *wrapped = sia.sa_wrapped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 if (i == 0)
4396 clearop(cap->oap);
4397 else
4398 {
4399 if (i == 2)
4400 cap->oap->motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402#ifdef FEAT_FOLDING
4403 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4404 foldOpenCursor();
4405#endif
4406 }
4407
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004408 // "/$" will put the cursor after the end of the line, may need to
4409 // correct that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 check_cursor();
Bram Moolenaar46539112015-02-17 15:43:57 +01004411 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412}
4413
4414/*
4415 * Character search commands.
4416 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
4417 * ',' and FALSE for ';'.
4418 * cap->nchar is NUL for ',' and ';' (repeat the search)
4419 */
4420 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004421nv_csearch(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422{
4423 int t_cmd;
4424
4425 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
4426 t_cmd = TRUE;
4427 else
4428 t_cmd = FALSE;
4429
4430 cap->oap->motion_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
4432 clearopbeep(cap->oap);
4433 else
4434 {
4435 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004436 // Include a Tab for "tx" and for "dfx".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
4438 && (t_cmd || cap->oap->op_type != OP_NOP))
4439 {
4440 colnr_T scol, ecol;
4441
4442 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4443 curwin->w_cursor.coladd = ecol - scol;
4444 }
4445 else
4446 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448#ifdef FEAT_FOLDING
4449 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4450 foldOpenCursor();
4451#endif
4452 }
4453}
4454
4455/*
4456 * "[" and "]" commands.
4457 * cap->arg is BACKWARD for "[" and FORWARD for "]".
4458 */
4459 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004460nv_brackets(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461{
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004462 pos_T new_pos = {0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 pos_T prev_pos;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004464 pos_T *pos = NULL; // init for GCC
4465 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 int flag;
4467 long n;
4468 int findc;
4469 int c;
4470
4471 cap->oap->motion_type = MCHAR;
4472 cap->oap->inclusive = FALSE;
4473 old_pos = curwin->w_cursor;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004474 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475
4476#ifdef FEAT_SEARCHPATH
4477 /*
4478 * "[f" or "]f" : Edit file under the cursor (same as "gf")
4479 */
4480 if (cap->nchar == 'f')
4481 nv_gotofile(cap);
4482 else
4483#endif
4484
4485#ifdef FEAT_FIND_ID
4486 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00004487 * Find the occurrence(s) of the identifier or define under cursor
4488 * in current and included files or jump to the first occurrence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 *
4490 * search list jump
4491 * fwd bwd fwd bwd fwd bwd
4492 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
4493 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
4494 */
4495 if (vim_strchr((char_u *)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004496# ifdef EBCDIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 "iI\005dD\067",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004498# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 "iI\011dD\004",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004500# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501 cap->nchar) != NULL)
4502 {
4503 char_u *ptr;
4504 int len;
4505
4506 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
4507 clearop(cap->oap);
4508 else
4509 {
4510 find_pattern_in_path(ptr, 0, len, TRUE,
4511 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
4512 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
4513 cap->count1,
4514 isupper(cap->nchar) ? ACTION_SHOW_ALL :
4515 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
4516 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
4517 (linenr_T)MAXLNUM);
4518 curwin->w_set_curswant = TRUE;
4519 }
4520 }
4521 else
4522#endif
4523
4524 /*
4525 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
4526 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
4527 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
4528 * "[m" or "]m" search for prev/next start of (Java) method.
4529 * "[M" or "]M" search for prev/next end of (Java) method.
4530 */
4531 if ( (cap->cmdchar == '['
4532 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
4533 || (cap->cmdchar == ']'
4534 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
4535 {
4536 if (cap->nchar == '*')
4537 cap->nchar = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 prev_pos.lnum = 0;
4539 if (cap->nchar == 'm' || cap->nchar == 'M')
4540 {
4541 if (cap->cmdchar == '[')
4542 findc = '{';
4543 else
4544 findc = '}';
4545 n = 9999;
4546 }
4547 else
4548 {
4549 findc = cap->nchar;
4550 n = cap->count1;
4551 }
4552 for ( ; n > 0; --n)
4553 {
4554 if ((pos = findmatchlimit(cap->oap, findc,
4555 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
4556 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004557 if (new_pos.lnum == 0) // nothing found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 {
4559 if (cap->nchar != 'm' && cap->nchar != 'M')
4560 clearopbeep(cap->oap);
4561 }
4562 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004563 pos = &new_pos; // use last one found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 break;
4565 }
4566 prev_pos = new_pos;
4567 curwin->w_cursor = *pos;
4568 new_pos = *pos;
4569 }
4570 curwin->w_cursor = old_pos;
4571
4572 /*
4573 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
4574 * brought us to the match for "[m" and "]M" when inside a method.
4575 * Try finding the '{' or '}' we want to be at.
4576 * Also repeat for the given count.
4577 */
4578 if (cap->nchar == 'm' || cap->nchar == 'M')
4579 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004580 // norm is TRUE for "]M" and "[m"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 int norm = ((findc == '{') == (cap->nchar == 'm'));
4582
4583 n = cap->count1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004584 // found a match: we were inside a method
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 if (prev_pos.lnum != 0)
4586 {
4587 pos = &prev_pos;
4588 curwin->w_cursor = prev_pos;
4589 if (norm)
4590 --n;
4591 }
4592 else
4593 pos = NULL;
4594 while (n > 0)
4595 {
4596 for (;;)
4597 {
4598 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
4599 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004600 // if not found anything, that's an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 if (pos == NULL)
4602 clearopbeep(cap->oap);
4603 n = 0;
4604 break;
4605 }
4606 c = gchar_cursor();
4607 if (c == '{' || c == '}')
4608 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004609 // Must have found end/start of class: use it.
4610 // Or found the place to be at.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 if ((c == findc && norm) || (n == 1 && !norm))
4612 {
4613 new_pos = curwin->w_cursor;
4614 pos = &new_pos;
4615 n = 0;
4616 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004617 // if no match found at all, we started outside of the
4618 // class and we're inside now. Just go on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 else if (new_pos.lnum == 0)
4620 {
4621 new_pos = curwin->w_cursor;
4622 pos = &new_pos;
4623 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004624 // found start/end of other method: go to match
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 else if ((pos = findmatchlimit(cap->oap, findc,
4626 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
4627 0)) == NULL)
4628 n = 0;
4629 else
4630 curwin->w_cursor = *pos;
4631 break;
4632 }
4633 }
4634 --n;
4635 }
4636 curwin->w_cursor = old_pos;
4637 if (pos == NULL && new_pos.lnum != 0)
4638 clearopbeep(cap->oap);
4639 }
4640 if (pos != NULL)
4641 {
4642 setpcmark();
4643 curwin->w_cursor = *pos;
4644 curwin->w_set_curswant = TRUE;
4645#ifdef FEAT_FOLDING
4646 if ((fdo_flags & FDO_BLOCK) && KeyTyped
4647 && cap->oap->op_type == OP_NOP)
4648 foldOpenCursor();
4649#endif
4650 }
4651 }
4652
4653 /*
4654 * "[[", "[]", "]]" and "][": move to start or end of function
4655 */
4656 else if (cap->nchar == '[' || cap->nchar == ']')
4657 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004658 if (cap->nchar == cap->cmdchar) // "]]" or "[["
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 flag = '{';
4660 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004661 flag = '}'; // "][" or "[]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662
4663 curwin->w_set_curswant = TRUE;
4664 /*
4665 * Imitate strange Vi behaviour: When using "]]" with an operator
4666 * we also stop at '}'.
4667 */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004668 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 (cap->oap->op_type != OP_NOP
4670 && cap->arg == FORWARD && flag == '{')))
4671 clearopbeep(cap->oap);
4672 else
4673 {
4674 if (cap->oap->op_type == OP_NOP)
4675 beginline(BL_WHITE | BL_FIX);
4676#ifdef FEAT_FOLDING
4677 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4678 foldOpenCursor();
4679#endif
4680 }
4681 }
4682
4683 /*
4684 * "[p", "[P", "]P" and "]p": put with indent adjustment
4685 */
4686 else if (cap->nchar == 'p' || cap->nchar == 'P')
4687 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02004688 nv_put_opt(cap, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 }
4690
4691 /*
4692 * "['", "[`", "]'" and "]`": jump to next mark
4693 */
4694 else if (cap->nchar == '\'' || cap->nchar == '`')
4695 {
4696 pos = &curwin->w_cursor;
4697 for (n = cap->count1; n > 0; --n)
4698 {
4699 prev_pos = *pos;
4700 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
4701 cap->nchar == '\'');
4702 if (pos == NULL)
4703 break;
4704 }
4705 if (pos == NULL)
4706 pos = &prev_pos;
4707 nv_cursormark(cap, cap->nchar == '\'', pos);
4708 }
4709
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710 /*
4711 * [ or ] followed by a middle mouse click: put selected text with
4712 * indent adjustment. Any other button just does as usual.
4713 */
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02004714 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 {
4716 (void)do_mouse(cap->oap, cap->nchar,
4717 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
4718 cap->count1, PUT_FIXINDENT);
4719 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720
4721#ifdef FEAT_FOLDING
4722 /*
4723 * "[z" and "]z": move to start or end of open fold.
4724 */
4725 else if (cap->nchar == 'z')
4726 {
4727 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4728 cap->count1) == FAIL)
4729 clearopbeep(cap->oap);
4730 }
4731#endif
4732
4733#ifdef FEAT_DIFF
4734 /*
4735 * "[c" and "]c": move to next or previous diff-change.
4736 */
4737 else if (cap->nchar == 'c')
4738 {
4739 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
4740 cap->count1) == FAIL)
4741 clearopbeep(cap->oap);
4742 }
4743#endif
4744
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00004745#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004746 /*
4747 * "[s", "[S", "]s" and "]S": move to next spell error.
4748 */
4749 else if (cap->nchar == 's' || cap->nchar == 'S')
4750 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004751 setpcmark();
4752 for (n = 0; n < cap->count1; ++n)
Bram Moolenaar95529562005-08-25 21:21:38 +00004753 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4754 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004755 {
4756 clearopbeep(cap->oap);
4757 break;
4758 }
Bram Moolenaarb73fa622017-12-21 20:27:47 +01004759 else
4760 curwin->w_set_curswant = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004761# ifdef FEAT_FOLDING
4762 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4763 foldOpenCursor();
4764# endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004765 }
4766#endif
4767
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004768 // Not a valid cap->nchar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 else
4770 clearopbeep(cap->oap);
4771}
4772
4773/*
4774 * Handle Normal mode "%" command.
4775 */
4776 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004777nv_percent(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778{
4779 pos_T *pos;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02004780#if defined(FEAT_FOLDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 linenr_T lnum = curwin->w_cursor.lnum;
4782#endif
4783
4784 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004785 if (cap->count0) // {cnt}% : goto {cnt} percentage in file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 {
4787 if (cap->count0 > 100)
4788 clearopbeep(cap->oap);
4789 else
4790 {
4791 cap->oap->motion_type = MLINE;
4792 setpcmark();
Bram Moolenaar2c655342021-02-23 19:32:03 +01004793 // Round up, so 'normal 100%' always jumps at the line line.
4794 // Beyond 21474836 lines, (ml_line_count * 100 + 99) would
4795 // overflow on 32-bits, so use a formula with less accuracy
4796 // to avoid overflows.
4797 if (curbuf->b_ml.ml_line_count >= 21474836)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
4799 / 100L * cap->count0;
4800 else
4801 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
4802 cap->count0 + 99L) / 100L;
Bram Moolenaar1d859e22021-01-28 17:24:58 +01004803 if (curwin->w_cursor.lnum < 1)
4804 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4806 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4807 beginline(BL_SOL | BL_FIX);
4808 }
4809 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004810 else // "%" : go to matching paren
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 {
4812 cap->oap->motion_type = MCHAR;
4813 cap->oap->use_reg_one = TRUE;
4814 if ((pos = findmatch(cap->oap, NUL)) == NULL)
4815 clearopbeep(cap->oap);
4816 else
4817 {
4818 setpcmark();
4819 curwin->w_cursor = *pos;
4820 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 }
4824 }
4825#ifdef FEAT_FOLDING
4826 if (cap->oap->op_type == OP_NOP
4827 && lnum != curwin->w_cursor.lnum
4828 && (fdo_flags & FDO_PERCENT)
4829 && KeyTyped)
4830 foldOpenCursor();
4831#endif
4832}
4833
4834/*
4835 * Handle "(" and ")" commands.
4836 * cap->arg is BACKWARD for "(" and FORWARD for ")".
4837 */
4838 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004839nv_brace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840{
4841 cap->oap->motion_type = MCHAR;
4842 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004843 // The motion used to be inclusive for "(", but that is not what Vi does.
Bram Moolenaarebefac62005-12-28 22:39:57 +00004844 cap->oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 curwin->w_set_curswant = TRUE;
4846
4847 if (findsent(cap->arg, cap->count1) == FAIL)
4848 clearopbeep(cap->oap);
4849 else
4850 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004851 // Don't leave the cursor on the NUL past end of line.
Bram Moolenaar1f14d572008-01-12 16:12:10 +00004852 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854#ifdef FEAT_FOLDING
4855 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4856 foldOpenCursor();
4857#endif
4858 }
4859}
4860
4861/*
4862 * "m" command: Mark a position.
4863 */
4864 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004865nv_mark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866{
4867 if (!checkclearop(cap->oap))
4868 {
4869 if (setmark(cap->nchar) == FAIL)
4870 clearopbeep(cap->oap);
4871 }
4872}
4873
4874/*
4875 * "{" and "}" commands.
4876 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
4877 */
4878 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004879nv_findpar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880{
4881 cap->oap->motion_type = MCHAR;
4882 cap->oap->inclusive = FALSE;
4883 cap->oap->use_reg_one = TRUE;
4884 curwin->w_set_curswant = TRUE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004885 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 clearopbeep(cap->oap);
4887 else
4888 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890#ifdef FEAT_FOLDING
4891 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4892 foldOpenCursor();
4893#endif
4894 }
4895}
4896
4897/*
4898 * "u" command: Undo or make lower case.
4899 */
4900 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004901nv_undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004903 if (cap->oap->op_type == OP_LOWER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004905 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 cap->cmdchar = 'g';
4907 cap->nchar = 'u';
4908 nv_operator(cap);
4909 }
4910 else
4911 nv_kundo(cap);
4912}
4913
4914/*
4915 * <Undo> command.
4916 */
4917 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004918nv_kundo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919{
4920 if (!checkclearopq(cap->oap))
4921 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02004922#ifdef FEAT_JOB_CHANNEL
4923 if (bt_prompt(curbuf))
4924 {
4925 clearopbeep(cap->oap);
4926 return;
4927 }
4928#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 u_undo((int)cap->count1);
4930 curwin->w_set_curswant = TRUE;
4931 }
4932}
4933
4934/*
4935 * Handle the "r" command.
4936 */
4937 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004938nv_replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939{
4940 char_u *ptr;
4941 int had_ctrl_v;
4942 long n;
4943
4944 if (checkclearop(cap->oap))
4945 return;
Bram Moolenaarf2732452018-06-03 14:47:35 +02004946#ifdef FEAT_JOB_CHANNEL
4947 if (bt_prompt(curbuf) && !prompt_curpos_editable())
4948 {
4949 clearopbeep(cap->oap);
4950 return;
4951 }
4952#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004954 // get another character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 if (cap->nchar == Ctrl_V)
4956 {
4957 had_ctrl_v = Ctrl_V;
Bram Moolenaar0684e362020-12-03 19:54:42 +01004958 cap->nchar = get_literal(FALSE);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004959 // Don't redo a multibyte character with CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 if (cap->nchar > DEL)
4961 had_ctrl_v = NUL;
4962 }
4963 else
4964 had_ctrl_v = NUL;
4965
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004966 // Abort if the character is a special key.
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00004967 if (IS_SPECIAL(cap->nchar))
4968 {
4969 clearopbeep(cap->oap);
4970 return;
4971 }
4972
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004973 // Visual mode "r"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 if (VIsual_active)
4975 {
Bram Moolenaar57fb0da2009-02-04 10:46:25 +00004976 if (got_int)
4977 reset_VIsual();
Bram Moolenaard9820532013-11-04 01:41:17 +01004978 if (had_ctrl_v)
4979 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004980 // Use a special (negative) number to make a difference between a
4981 // literal CR or NL and a line break.
Bram Moolenaarf12519d2018-02-06 22:52:49 +01004982 if (cap->nchar == CAR)
4983 cap->nchar = REPLACE_CR_NCHAR;
4984 else if (cap->nchar == NL)
4985 cap->nchar = REPLACE_NL_NCHAR;
Bram Moolenaard9820532013-11-04 01:41:17 +01004986 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 nv_operator(cap);
4988 return;
4989 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004991 // Break tabs, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 if (virtual_active())
4993 {
4994 if (u_save_cursor() == FAIL)
4995 return;
4996 if (gchar_cursor() == NUL)
4997 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004998 // Add extra space and put the cursor on the first one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 coladvance_force((colnr_T)(getviscol() + cap->count1));
5000 curwin->w_cursor.col -= cap->count1;
5001 }
5002 else if (gchar_cursor() == TAB)
5003 coladvance_force(getviscol());
5004 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005006 // Abort if not enough characters to replace.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 ptr = ml_get_cursor();
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00005008 if (STRLEN(ptr) < (unsigned)cap->count1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005009 || (has_mbyte && mb_charlen(ptr) < cap->count1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 {
5011 clearopbeep(cap->oap);
5012 return;
5013 }
5014
5015 /*
5016 * Replacing with a TAB is done by edit() when it is complicated because
5017 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
5018 * Other characters are done below to avoid problems with things like
5019 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
5020 */
5021 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
5022 {
5023 stuffnumReadbuff(cap->count1);
5024 stuffcharReadbuff('R');
5025 stuffcharReadbuff('\t');
5026 stuffcharReadbuff(ESC);
5027 return;
5028 }
5029
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005030 // save line for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 if (u_save_cursor() == FAIL)
5032 return;
5033
5034 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
5035 {
5036 /*
5037 * Replace character(s) by a single newline.
5038 * Strange vi behaviour: Only one newline is inserted.
5039 * Delete the characters here.
5040 * Insert the newline with an insert command, takes care of
5041 * autoindent. The insert command depends on being on the last
5042 * character of a line or not.
5043 */
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005044 (void)del_chars(cap->count1, FALSE); // delete the characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 stuffcharReadbuff('\r');
5046 stuffcharReadbuff(ESC);
5047
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005048 // Give 'r' to edit(), to get the redo command right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 invoke_edit(cap, TRUE, 'r', FALSE);
5050 }
5051 else
5052 {
5053 prep_redo(cap->oap->regname, cap->count1,
5054 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
5055
5056 curbuf->b_op_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 if (has_mbyte)
5058 {
5059 int old_State = State;
5060
5061 if (cap->ncharC1 != 0)
5062 AppendCharToRedobuff(cap->ncharC1);
5063 if (cap->ncharC2 != 0)
5064 AppendCharToRedobuff(cap->ncharC2);
5065
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005066 // This is slow, but it handles replacing a single-byte with a
5067 // multi-byte and the other way around. Also handles adding
5068 // composing characters for utf-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 for (n = cap->count1; n > 0; --n)
5070 {
5071 State = REPLACE;
Bram Moolenaar8320da42012-04-30 18:18:47 +02005072 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5073 {
5074 int c = ins_copychar(curwin->w_cursor.lnum
5075 + (cap->nchar == Ctrl_Y ? -1 : 1));
5076 if (c != NUL)
5077 ins_char(c);
5078 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005079 // will be decremented further down
Bram Moolenaar8320da42012-04-30 18:18:47 +02005080 ++curwin->w_cursor.col;
5081 }
5082 else
5083 ins_char(cap->nchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 State = old_State;
5085 if (cap->ncharC1 != 0)
5086 ins_char(cap->ncharC1);
5087 if (cap->ncharC2 != 0)
5088 ins_char(cap->ncharC2);
5089 }
5090 }
5091 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 {
5093 /*
5094 * Replace the characters within one line.
5095 */
5096 for (n = cap->count1; n > 0; --n)
5097 {
5098 /*
5099 * Get ptr again, because u_save and/or showmatch() will have
5100 * released the line. At the same time we let know that the
5101 * line will be changed.
5102 */
5103 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005104 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5105 {
5106 int c = ins_copychar(curwin->w_cursor.lnum
5107 + (cap->nchar == Ctrl_Y ? -1 : 1));
5108 if (c != NUL)
5109 ptr[curwin->w_cursor.col] = c;
5110 }
5111 else
5112 ptr[curwin->w_cursor.col] = cap->nchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 if (p_sm && msg_silent == 0)
5114 showmatch(cap->nchar);
5115 ++curwin->w_cursor.col;
5116 }
5117#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005118 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005120 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121
Bram Moolenaar009b2592004-10-24 19:18:58 +00005122 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005123 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005125 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126 }
5127#endif
5128
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005129 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 changed_bytes(curwin->w_cursor.lnum,
5131 (colnr_T)(curwin->w_cursor.col - cap->count1));
5132 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005133 --curwin->w_cursor.col; // cursor on the last replaced char
5134 // if the character on the left of the current cursor is a multi-byte
5135 // character, move two characters left
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 if (has_mbyte)
5137 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 curbuf->b_op_end = curwin->w_cursor;
5139 curwin->w_set_curswant = TRUE;
5140 set_last_insert(cap->nchar);
5141 }
5142}
5143
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144/*
5145 * 'o': Exchange start and end of Visual area.
5146 * 'O': same, but in block mode exchange left and right corners.
5147 */
5148 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005149v_swap_corners(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150{
5151 pos_T old_cursor;
5152 colnr_T left, right;
5153
5154 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
5155 {
5156 old_cursor = curwin->w_cursor;
5157 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
5158 curwin->w_cursor.lnum = VIsual.lnum;
5159 coladvance(left);
5160 VIsual = curwin->w_cursor;
5161
5162 curwin->w_cursor.lnum = old_cursor.lnum;
5163 curwin->w_curswant = right;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005164 // 'selection "exclusive" and cursor at right-bottom corner: move it
5165 // right one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
5167 ++curwin->w_curswant;
5168 coladvance(curwin->w_curswant);
5169 if (curwin->w_cursor.col == old_cursor.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 && (!virtual_active()
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005171 || curwin->w_cursor.coladd == old_cursor.coladd))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 {
5173 curwin->w_cursor.lnum = VIsual.lnum;
5174 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
5175 ++right;
5176 coladvance(right);
5177 VIsual = curwin->w_cursor;
5178
5179 curwin->w_cursor.lnum = old_cursor.lnum;
5180 coladvance(left);
5181 curwin->w_curswant = left;
5182 }
5183 }
5184 else
5185 {
5186 old_cursor = curwin->w_cursor;
5187 curwin->w_cursor = VIsual;
5188 VIsual = old_cursor;
5189 curwin->w_set_curswant = TRUE;
5190 }
5191}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192
5193/*
5194 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
5195 */
5196 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005197nv_Replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005199 if (VIsual_active) // "R" is replace lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200 {
5201 cap->cmdchar = 'c';
5202 cap->nchar = NUL;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005203 VIsual_mode_orig = VIsual_mode; // remember original area for gv
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 VIsual_mode = 'V';
5205 nv_operator(cap);
5206 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005207 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 {
5209 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005210 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 else
5212 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213 if (virtual_active())
5214 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
5216 }
5217 }
5218}
5219
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220/*
5221 * "gr".
5222 */
5223 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005224nv_vreplace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 if (VIsual_active)
5227 {
5228 cap->cmdchar = 'r';
5229 cap->nchar = cap->extra_char;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005230 nv_replace(cap); // Do same as "r" in Visual mode for now
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005232 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233 {
5234 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005235 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 else
5237 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005238 if (cap->extra_char == Ctrl_V) // get another character
Bram Moolenaar0684e362020-12-03 19:54:42 +01005239 cap->extra_char = get_literal(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 stuffcharReadbuff(cap->extra_char);
5241 stuffcharReadbuff(ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 if (virtual_active())
5243 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 invoke_edit(cap, TRUE, 'v', FALSE);
5245 }
5246 }
5247}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248
5249/*
5250 * Swap case for "~" command, when it does not work like an operator.
5251 */
5252 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005253n_swapchar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254{
5255 long n;
5256 pos_T startpos;
5257 int did_change = 0;
5258#ifdef FEAT_NETBEANS_INTG
5259 pos_T pos;
5260 char_u *ptr;
5261 int count;
5262#endif
5263
5264 if (checkclearopq(cap->oap))
5265 return;
5266
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005267 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 {
5269 clearopbeep(cap->oap);
5270 return;
5271 }
5272
5273 prep_redo_cmd(cap);
5274
5275 if (u_save_cursor() == FAIL)
5276 return;
5277
5278 startpos = curwin->w_cursor;
5279#ifdef FEAT_NETBEANS_INTG
5280 pos = startpos;
5281#endif
5282 for (n = cap->count1; n > 0; --n)
5283 {
5284 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
5285 inc_cursor();
5286 if (gchar_cursor() == NUL)
5287 {
5288 if (vim_strchr(p_ww, '~') != NULL
5289 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5290 {
5291#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005292 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293 {
5294 if (did_change)
5295 {
5296 ptr = ml_get(pos.lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005297 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005298 netbeans_removed(curbuf, pos.lnum, pos.col,
5299 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005301 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 }
5303 pos.col = 0;
5304 pos.lnum++;
5305 }
5306#endif
5307 ++curwin->w_cursor.lnum;
5308 curwin->w_cursor.col = 0;
5309 if (n > 1)
5310 {
5311 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
5312 break;
5313 u_clearline();
5314 }
5315 }
5316 else
5317 break;
5318 }
5319 }
5320#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005321 if (did_change && netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 {
5323 ptr = ml_get(pos.lnum);
5324 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005325 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
5326 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 }
5328#endif
5329
5330
5331 check_cursor();
5332 curwin->w_set_curswant = TRUE;
5333 if (did_change)
5334 {
5335 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
5336 0L);
5337 curbuf->b_op_start = startpos;
5338 curbuf->b_op_end = curwin->w_cursor;
5339 if (curbuf->b_op_end.col > 0)
5340 --curbuf->b_op_end.col;
5341 }
5342}
5343
5344/*
5345 * Move cursor to mark.
5346 */
5347 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005348nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349{
5350 if (check_mark(pos) == FAIL)
5351 clearop(cap->oap);
5352 else
5353 {
5354 if (cap->cmdchar == '\''
5355 || cap->cmdchar == '`'
5356 || cap->cmdchar == '['
5357 || cap->cmdchar == ']')
5358 setpcmark();
5359 curwin->w_cursor = *pos;
5360 if (flag)
5361 beginline(BL_WHITE | BL_FIX);
5362 else
5363 check_cursor();
5364 }
5365 cap->oap->motion_type = flag ? MLINE : MCHAR;
5366 if (cap->cmdchar == '`')
5367 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005368 cap->oap->inclusive = FALSE; // ignored if not MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369 curwin->w_set_curswant = TRUE;
5370}
5371
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372/*
5373 * Handle commands that are operators in Visual mode.
5374 */
5375 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005376v_visop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377{
5378 static char_u trans[] = "YyDdCcxdXdAAIIrr";
5379
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005380 // Uppercase means linewise, except in block mode, then "D" deletes till
5381 // the end of the line, and "C" replaces till EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 if (isupper(cap->cmdchar))
5383 {
5384 if (VIsual_mode != Ctrl_V)
Bram Moolenaara390bb62013-03-13 19:02:41 +01005385 {
5386 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005388 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
5390 curwin->w_curswant = MAXCOL;
5391 }
5392 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
5393 nv_operator(cap);
5394}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395
5396/*
5397 * "s" and "S" commands.
5398 */
5399 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005400nv_subst(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401{
Bram Moolenaard96ff162018-02-18 22:13:29 +01005402#ifdef FEAT_TERMINAL
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005403 // When showing output of term_dumpdiff() swap the top and bottom.
Bram Moolenaard96ff162018-02-18 22:13:29 +01005404 if (term_swap_diff() == OK)
5405 return;
5406#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005407#ifdef FEAT_JOB_CHANNEL
5408 if (bt_prompt(curbuf) && !prompt_curpos_editable())
5409 {
5410 clearopbeep(cap->oap);
5411 return;
5412 }
5413#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005414 if (VIsual_active) // "vs" and "vS" are the same as "vc"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 {
5416 if (cap->cmdchar == 'S')
Bram Moolenaara390bb62013-03-13 19:02:41 +01005417 {
5418 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005420 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 cap->cmdchar = 'c';
5422 nv_operator(cap);
5423 }
5424 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 nv_optrans(cap);
5426}
5427
5428/*
5429 * Abbreviated commands.
5430 */
5431 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005432nv_abbrev(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433{
5434 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005435 cap->cmdchar = 'x'; // DEL key behaves like 'x'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005437 // in Visual mode these commands are operators
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 if (VIsual_active)
5439 v_visop(cap);
5440 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 nv_optrans(cap);
5442}
5443
5444/*
5445 * Translate a command into another command.
5446 */
5447 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005448nv_optrans(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449{
5450 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
5451 (char_u *)"d$", (char_u *)"c$",
5452 (char_u *)"cl", (char_u *)"cc",
5453 (char_u *)"yy", (char_u *)":s\r"};
5454 static char_u *str = (char_u *)"xXDCsSY&";
5455
5456 if (!checkclearopq(cap->oap))
5457 {
Bram Moolenaar7a9bd7c2019-09-17 22:42:55 +02005458 // In Vi "2D" doesn't delete the next line. Can't translate it
5459 // either, because "2." should also not use the count.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005460 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
5461 {
5462 cap->oap->start = curwin->w_cursor;
5463 cap->oap->op_type = OP_DELETE;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00005464#ifdef FEAT_EVAL
5465 set_op_var(OP_DELETE);
5466#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005467 cap->count1 = 1;
5468 nv_dollar(cap);
5469 finish_op = TRUE;
5470 ResetRedobuff();
5471 AppendCharToRedobuff('D');
5472 }
5473 else
5474 {
5475 if (cap->count0)
5476 stuffnumReadbuff(cap->count0);
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02005477 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005478 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479 }
5480 cap->opcount = 0;
5481}
5482
5483/*
5484 * "'" and "`" commands. Also for "g'" and "g`".
5485 * cap->arg is TRUE for "'" and "g'".
5486 */
5487 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005488nv_gomark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489{
5490 pos_T *pos;
5491 int c;
5492#ifdef FEAT_FOLDING
Bram Moolenaar8754deb2013-01-17 13:24:08 +01005493 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005494 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495#endif
5496
5497 if (cap->cmdchar == 'g')
5498 c = cap->extra_char;
5499 else
5500 c = cap->nchar;
5501 pos = getmark(c, (cap->oap->op_type == OP_NOP));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005502 if (pos == (pos_T *)-1) // jumped to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 {
5504 if (cap->arg)
5505 {
5506 check_cursor_lnum();
5507 beginline(BL_WHITE | BL_FIX);
5508 }
5509 else
5510 check_cursor();
5511 }
5512 else
5513 nv_cursormark(cap, cap->arg, pos);
5514
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005515 // May need to clear the coladd that a mark includes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 if (!virtual_active())
5517 curwin->w_cursor.coladd = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02005518 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519#ifdef FEAT_FOLDING
5520 if (cap->oap->op_type == OP_NOP
Bram Moolenaar15364d72013-01-24 21:00:20 +01005521 && pos != NULL
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005522 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 && (fdo_flags & FDO_MARK)
5524 && old_KeyTyped)
5525 foldOpenCursor();
5526#endif
5527}
5528
5529/*
Bram Moolenaar62a23252020-08-09 14:04:42 +02005530 * Handle CTRL-O, CTRL-I, "g;", "g," and "CTRL-Tab" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 */
5532 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005533nv_pcmark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534{
5535#ifdef FEAT_JUMPLIST
5536 pos_T *pos;
5537# ifdef FEAT_FOLDING
5538 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005539 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540# endif
5541
5542 if (!checkclearopq(cap->oap))
5543 {
Bram Moolenaar62a23252020-08-09 14:04:42 +02005544 if (cap->cmdchar == TAB && mod_mask == MOD_MASK_CTRL)
5545 {
5546 if (goto_tabpage_lastused() == FAIL)
5547 clearopbeep(cap->oap);
5548 return;
5549 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 if (cap->cmdchar == 'g')
5551 pos = movechangelist((int)cap->count1);
5552 else
5553 pos = movemark((int)cap->count1);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005554 if (pos == (pos_T *)-1) // jump to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 {
5556 curwin->w_set_curswant = TRUE;
5557 check_cursor();
5558 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005559 else if (pos != NULL) // can jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 nv_cursormark(cap, FALSE, pos);
5561 else if (cap->cmdchar == 'g')
5562 {
5563 if (curbuf->b_changelistlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005564 emsg(_("E664: changelist is empty"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 else if (cap->count1 < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005566 emsg(_("E662: At start of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005568 emsg(_("E663: At end of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 }
5570 else
5571 clearopbeep(cap->oap);
5572# ifdef FEAT_FOLDING
5573 if (cap->oap->op_type == OP_NOP
5574 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
5575 && (fdo_flags & FDO_MARK)
5576 && old_KeyTyped)
5577 foldOpenCursor();
5578# endif
5579 }
5580#else
5581 clearopbeep(cap->oap);
5582#endif
5583}
5584
5585/*
5586 * Handle '"' command.
5587 */
5588 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005589nv_regname(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590{
5591 if (checkclearop(cap->oap))
5592 return;
5593#ifdef FEAT_EVAL
5594 if (cap->nchar == '=')
5595 cap->nchar = get_expr_register();
5596#endif
5597 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
5598 {
5599 cap->oap->regname = cap->nchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005600 cap->opcount = cap->count0; // remember count before '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601#ifdef FEAT_EVAL
5602 set_reg_var(cap->oap->regname);
5603#endif
5604 }
5605 else
5606 clearopbeep(cap->oap);
5607}
5608
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609/*
5610 * Handle "v", "V" and "CTRL-V" commands.
5611 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
5612 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005613 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 */
5615 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005616nv_visual(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617{
Bram Moolenaardf177f62005-02-22 08:39:57 +00005618 if (cap->cmdchar == Ctrl_Q)
5619 cap->cmdchar = Ctrl_V;
5620
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005621 // 'v', 'V' and CTRL-V can be used while an operator is pending to make it
5622 // characterwise, linewise, or blockwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 if (cap->oap->op_type != OP_NOP)
5624 {
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01005625 motion_force = cap->oap->motion_force = cap->cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005626 finish_op = FALSE; // operator doesn't finish now but later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 return;
5628 }
5629
5630 VIsual_select = cap->arg;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005631 if (VIsual_active) // change Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005633 if (VIsual_mode == cap->cmdchar) // stop visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005635 else // toggle char/block mode
5636 { // or char/line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637 VIsual_mode = cap->cmdchar;
5638 showmode();
5639 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005640 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005641 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005642 else // start Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005643 {
5644 check_visual_highlight();
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005645 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005647 // use previously selected part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005648 VIsual = curwin->w_cursor;
5649
5650 VIsual_active = TRUE;
5651 VIsual_reselect = TRUE;
5652 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005653 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 setmouse();
Bram Moolenaar09df3122006-01-23 22:23:09 +00005656 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005657 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 /*
5659 * For V and ^V, we multiply the number of lines even if there
5660 * was only one -- webb
5661 */
5662 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
5663 {
5664 curwin->w_cursor.lnum +=
5665 resel_VIsual_line_count * cap->count0 - 1;
5666 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5667 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5668 }
5669 VIsual_mode = resel_VIsual_mode;
5670 if (VIsual_mode == 'v')
5671 {
5672 if (resel_VIsual_line_count <= 1)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005673 {
5674 validate_virtcol();
5675 curwin->w_curswant = curwin->w_virtcol
5676 + resel_VIsual_vcol * cap->count0 - 1;
5677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005679 curwin->w_curswant = resel_VIsual_vcol;
5680 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681 }
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005682 if (resel_VIsual_vcol == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 {
5684 curwin->w_curswant = MAXCOL;
5685 coladvance((colnr_T)MAXCOL);
5686 }
5687 else if (VIsual_mode == Ctrl_V)
5688 {
5689 validate_virtcol();
5690 curwin->w_curswant = curwin->w_virtcol
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005691 + resel_VIsual_vcol * cap->count0 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 coladvance(curwin->w_curswant);
5693 }
5694 else
5695 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005696 redraw_curbuf_later(INVERTED); // show the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 }
5698 else
5699 {
5700 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005701 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702 may_start_select('c');
5703 n_start_visual_mode(cap->cmdchar);
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005704 if (VIsual_mode != 'V' && *p_sel == 'e')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005705 ++cap->count1; // include one more char
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005706 if (cap->count0 > 0 && --cap->count1 > 0)
5707 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005708 // With a count select that many characters or lines.
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005709 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
5710 nv_right(cap);
5711 else if (VIsual_mode == 'V')
5712 nv_down(cap);
5713 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714 }
5715 }
5716}
5717
5718/*
5719 * Start selection for Shift-movement keys.
5720 */
5721 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005722start_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005724 // if 'selectmode' contains "key", start Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725 may_start_select('k');
5726 n_start_visual_mode('v');
5727}
5728
5729/*
5730 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
5731 */
5732 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005733may_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734{
5735 VIsual_select = (stuff_empty() && typebuf_typed()
5736 && (vim_strchr(p_slm, c) != NULL));
5737}
5738
5739/*
5740 * Start Visual mode "c".
5741 * Should set VIsual_select before calling this.
5742 */
5743 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005744n_start_visual_mode(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745{
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005746#ifdef FEAT_CONCEAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005747 // Check for redraw before changing the state.
Bram Moolenaarb9464822018-05-10 15:09:49 +02005748 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005749#endif
5750
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 VIsual_mode = c;
5752 VIsual_active = TRUE;
5753 VIsual_reselect = TRUE;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005754
5755 // Corner case: the 0 position in a tab may change when going into
Bram Moolenaar4b96df52020-01-26 22:00:26 +01005756 // virtualedit. Recalculate curwin->w_cursor to avoid bad highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB)
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005758 {
5759 validate_virtcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 coladvance(curwin->w_virtcol);
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005761 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 VIsual = curwin->w_cursor;
5763
5764#ifdef FEAT_FOLDING
5765 foldAdjustVisual();
5766#endif
5767
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 setmouse();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005769#ifdef FEAT_CONCEAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005770 // Check for redraw after changing the state.
Bram Moolenaarb9464822018-05-10 15:09:49 +02005771 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005772#endif
5773
Bram Moolenaar09df3122006-01-23 22:23:09 +00005774 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005775 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005777 // Make sure the clipboard gets updated. Needed because start and
5778 // end may still be the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 clip_star.vmode = NUL;
5780#endif
5781
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005782 // Only need to redraw this line, unless still need to redraw an old
5783 // Visual area (when 'lazyredraw' is set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 if (curwin->w_redr_type < INVERTED)
5785 {
5786 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
5787 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
5788 }
5789}
5790
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791
5792/*
5793 * CTRL-W: Window commands
5794 */
5795 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005796nv_window(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797{
Bram Moolenaar938783d2017-07-16 20:13:26 +02005798 if (cap->nchar == ':')
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005799 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005800 // "CTRL-W :" is the same as typing ":"; useful in a terminal window
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005801 cap->cmdchar = ':';
5802 cap->nchar = NUL;
Bram Moolenaar938783d2017-07-16 20:13:26 +02005803 nv_colon(cap);
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005804 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02005805 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005806 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807}
5808
5809/*
5810 * CTRL-Z: Suspend
5811 */
5812 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005813nv_suspend(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814{
5815 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816 if (VIsual_active)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005817 end_visual_mode(); // stop Visual mode
Bram Moolenaar100118c2020-12-11 19:30:34 +01005818 do_cmdline_cmd((char_u *)"stop");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819}
5820
5821/*
5822 * Commands starting with "g".
5823 */
5824 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005825nv_g_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826{
5827 oparg_T *oap = cap->oap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828 pos_T tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829 int i;
5830 int flag = FALSE;
5831
5832 switch (cap->nchar)
5833 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005834 case Ctrl_A:
5835 case Ctrl_X:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836#ifdef MEM_PROFILE
5837 /*
5838 * "g^A": dump log of used memory.
5839 */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005840 if (!VIsual_active && cap->nchar == Ctrl_A)
5841 vim_mem_profile_dump();
5842 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005844 /*
5845 * "g^A/g^X": sequentially increment visually selected region
5846 */
5847 if (VIsual_active)
5848 {
5849 cap->arg = TRUE;
5850 cap->cmdchar = cap->nchar;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005851 cap->nchar = NUL;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005852 nv_addsub(cap);
5853 }
5854 else
5855 clearopbeep(oap);
5856 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858 /*
5859 * "gR": Enter virtual replace mode.
5860 */
5861 case 'R':
5862 cap->arg = TRUE;
5863 nv_Replace(cap);
5864 break;
5865
5866 case 'r':
5867 nv_vreplace(cap);
5868 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869
5870 case '&':
5871 do_cmdline_cmd((char_u *)"%s//~/&");
5872 break;
5873
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 /*
5875 * "gv": Reselect the previous Visual area. If Visual already active,
5876 * exchange previous and current Visual area.
5877 */
5878 case 'v':
5879 if (checkclearop(oap))
5880 break;
5881
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005882 if ( curbuf->b_visual.vi_start.lnum == 0
5883 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
5884 || curbuf->b_visual.vi_end.lnum == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885 beep_flush();
5886 else
5887 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005888 // set w_cursor to the start of the Visual area, tpos to the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 if (VIsual_active)
5890 {
5891 i = VIsual_mode;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005892 VIsual_mode = curbuf->b_visual.vi_mode;
5893 curbuf->b_visual.vi_mode = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894# ifdef FEAT_EVAL
5895 curbuf->b_visual_mode_eval = i;
5896# endif
5897 i = curwin->w_curswant;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005898 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5899 curbuf->b_visual.vi_curswant = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005901 tpos = curbuf->b_visual.vi_end;
5902 curbuf->b_visual.vi_end = curwin->w_cursor;
5903 curwin->w_cursor = curbuf->b_visual.vi_start;
5904 curbuf->b_visual.vi_start = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 }
5906 else
5907 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005908 VIsual_mode = curbuf->b_visual.vi_mode;
5909 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5910 tpos = curbuf->b_visual.vi_end;
5911 curwin->w_cursor = curbuf->b_visual.vi_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912 }
5913
5914 VIsual_active = TRUE;
5915 VIsual_reselect = TRUE;
5916
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005917 // Set Visual to the start and w_cursor to the end of the Visual
5918 // area. Make sure they are on an existing character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919 check_cursor();
5920 VIsual = curwin->w_cursor;
5921 curwin->w_cursor = tpos;
5922 check_cursor();
5923 update_topline();
5924 /*
5925 * When called from normal "g" command: start Select mode when
5926 * 'selectmode' contains "cmd". When called for K_SELECT, always
5927 * start Select mode.
5928 */
5929 if (cap->arg)
5930 VIsual_select = TRUE;
5931 else
5932 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005935 // Make sure the clipboard gets updated. Needed because start and
5936 // end are still the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937 clip_star.vmode = NUL;
5938#endif
5939 redraw_curbuf_later(INVERTED);
5940 showmode();
5941 }
5942 break;
5943 /*
5944 * "gV": Don't reselect the previous Visual area after a Select mode
5945 * mapping of menu.
5946 */
5947 case 'V':
5948 VIsual_reselect = FALSE;
5949 break;
5950
5951 /*
5952 * "gh": start Select mode.
5953 * "gH": start Select line mode.
5954 * "g^H": start Select block mode.
5955 */
5956 case K_BS:
5957 cap->nchar = Ctrl_H;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005958 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959 case 'h':
5960 case 'H':
5961 case Ctrl_H:
5962# ifdef EBCDIC
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005963 // EBCDIC: 'v'-'h' != '^v'-'^h'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964 if (cap->nchar == Ctrl_H)
5965 cap->cmdchar = Ctrl_V;
5966 else
5967# endif
5968 cap->cmdchar = cap->nchar + ('v' - 'h');
5969 cap->arg = TRUE;
5970 nv_visual(cap);
5971 break;
Bram Moolenaar641e2862012-07-25 15:06:34 +02005972
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005973 // "gn", "gN" visually select next/previous search match
5974 // "gn" selects next match
5975 // "gN" selects previous match
Bram Moolenaar641e2862012-07-25 15:06:34 +02005976 case 'N':
5977 case 'n':
5978 if (!current_search(cap->count1, cap->nchar == 'n'))
Bram Moolenaarf00dc262012-10-21 03:54:33 +02005979 clearopbeep(oap);
Bram Moolenaar641e2862012-07-25 15:06:34 +02005980 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005981
5982 /*
5983 * "gj" and "gk" two new funny movement keys -- up and down
5984 * movement based on *screen* line rather than *file* line.
5985 */
5986 case 'j':
5987 case K_DOWN:
Bram Moolenaare71996b2021-01-21 17:03:07 +01005988 // with 'nowrap' it works just like the normal "j" command.
5989 if (!curwin->w_p_wrap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 {
5991 oap->motion_type = MLINE;
5992 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
5993 }
5994 else
5995 i = nv_screengo(oap, FORWARD, cap->count1);
5996 if (i == FAIL)
5997 clearopbeep(oap);
5998 break;
5999
6000 case 'k':
6001 case K_UP:
Bram Moolenaare71996b2021-01-21 17:03:07 +01006002 // with 'nowrap' it works just like the normal "k" command.
6003 if (!curwin->w_p_wrap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006004 {
6005 oap->motion_type = MLINE;
6006 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
6007 }
6008 else
6009 i = nv_screengo(oap, BACKWARD, cap->count1);
6010 if (i == FAIL)
6011 clearopbeep(oap);
6012 break;
6013
6014 /*
6015 * "gJ": join two lines without inserting a space.
6016 */
6017 case 'J':
6018 nv_join(cap);
6019 break;
6020
6021 /*
6022 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
6023 * "gm": middle of "g0" and "g$".
6024 */
6025 case '^':
6026 flag = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006027 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028
6029 case '0':
6030 case 'm':
6031 case K_HOME:
6032 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006033 oap->motion_type = MCHAR;
6034 oap->inclusive = FALSE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006035 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006037 int width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038 int width2 = width1 + curwin_col_off2();
6039
6040 validate_virtcol();
6041 i = 0;
6042 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
6043 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
6044 }
6045 else
6046 i = curwin->w_leftcol;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006047 // Go to the middle of the screen line. When 'number' or
6048 // 'relativenumber' is on and lines are wrapping the middle can be more
6049 // to the left.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006050 if (cap->nchar == 'm')
Bram Moolenaar02631462017-09-22 15:20:32 +02006051 i += (curwin->w_width - curwin_col_off()
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052 + ((curwin->w_p_wrap && i > 0)
6053 ? curwin_col_off2() : 0)) / 2;
6054 coladvance((colnr_T)i);
6055 if (flag)
6056 {
6057 do
6058 i = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01006059 while (VIM_ISWHITE(i) && oneright() == OK);
Bram Moolenaarf9514162018-11-22 03:08:29 +01006060 curwin->w_valid &= ~VALID_WCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 }
6062 curwin->w_set_curswant = TRUE;
6063 break;
6064
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006065 case 'M':
6066 {
6067 char_u *ptr = ml_get_curline();
6068
6069 oap->motion_type = MCHAR;
6070 oap->inclusive = FALSE;
6071 if (has_mbyte)
Bram Moolenaar69bf6342019-10-29 04:16:57 +01006072 i = mb_string2cells(ptr, (int)STRLEN(ptr));
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006073 else
6074 i = (int)STRLEN(ptr);
6075 if (cap->count0 > 0 && cap->count0 <= 100)
6076 coladvance((colnr_T)(i * cap->count0 / 100));
6077 else
6078 coladvance((colnr_T)(i / 2));
6079 curwin->w_set_curswant = TRUE;
6080 }
6081 break;
6082
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083 case '_':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006084 // "g_": to the last non-blank character in the line or <count> lines
6085 // downward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086 cap->oap->motion_type = MCHAR;
6087 cap->oap->inclusive = TRUE;
6088 curwin->w_curswant = MAXCOL;
6089 if (cursor_down((long)(cap->count1 - 1),
6090 cap->oap->op_type == OP_NOP) == FAIL)
6091 clearopbeep(cap->oap);
6092 else
6093 {
6094 char_u *ptr = ml_get_curline();
6095
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006096 // In Visual mode we may end up after the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006097 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
6098 --curwin->w_cursor.col;
6099
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006100 // Decrease the cursor column until it's on a non-blank.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101 while (curwin->w_cursor.col > 0
Bram Moolenaar1c465442017-03-12 20:10:05 +01006102 && VIM_ISWHITE(ptr[curwin->w_cursor.col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103 --curwin->w_cursor.col;
6104 curwin->w_set_curswant = TRUE;
Bram Moolenaar5890b2c2010-01-12 15:42:37 +01006105 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006106 }
6107 break;
6108
6109 case '$':
6110 case K_END:
6111 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112 {
6113 int col_off = curwin_col_off();
6114
6115 oap->motion_type = MCHAR;
6116 oap->inclusive = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006117 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006119 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00006120 if (cap->count1 == 1)
6121 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006122 int width1 = curwin->w_width - col_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123 int width2 = width1 + curwin_col_off2();
6124
6125 validate_virtcol();
6126 i = width1 - 1;
6127 if (curwin->w_virtcol >= (colnr_T)width1)
6128 i += ((curwin->w_virtcol - width1) / width2 + 1)
6129 * width2;
6130 coladvance((colnr_T)i);
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006131
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006132 // Make sure we stick in this column.
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006133 validate_virtcol();
6134 curwin->w_curswant = curwin->w_virtcol;
6135 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
6137 {
6138 /*
6139 * Check for landing on a character that got split at
6140 * the end of the line. We do not want to advance to
6141 * the next screen line.
6142 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143 if (curwin->w_virtcol > (colnr_T)i)
6144 --curwin->w_cursor.col;
6145 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146 }
6147 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
6148 clearopbeep(oap);
6149 }
6150 else
6151 {
Bram Moolenaard5c82342019-07-27 18:44:57 +02006152 if (cap->count1 > 1)
6153 // if it fails, let the cursor still move to the last char
Bram Moolenaar9c272a92019-08-16 21:54:27 +02006154 (void)cursor_down(cap->count1 - 1, FALSE);
Bram Moolenaard5c82342019-07-27 18:44:57 +02006155
Bram Moolenaar02631462017-09-22 15:20:32 +02006156 i = curwin->w_leftcol + curwin->w_width - col_off - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006158
Bram Moolenaar74ede802021-05-29 19:18:01 +02006159 // if the character doesn't fit move one back
6160 if (curwin->w_cursor.col > 0
6161 && (*mb_ptr2cells)(ml_get_cursor()) > 1)
6162 {
6163 colnr_T vcol;
6164
6165 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &vcol);
6166 if (vcol >= curwin->w_leftcol + curwin->w_width - col_off)
6167 --curwin->w_cursor.col;
6168 }
6169
Bram Moolenaard5c82342019-07-27 18:44:57 +02006170 // Make sure we stick in this column.
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006171 validate_virtcol();
6172 curwin->w_curswant = curwin->w_virtcol;
6173 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174 }
6175 }
6176 break;
6177
6178 /*
6179 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
6180 */
6181 case '*':
6182 case '#':
6183#if POUND != '#'
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006184 case POUND: // pound sign (sometimes equal to '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006185#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006186 case Ctrl_RSB: // :tag or :tselect for current identifier
6187 case ']': // :tselect for current identifier
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188 nv_ident(cap);
6189 break;
6190
6191 /*
6192 * ge and gE: go back to end of word
6193 */
6194 case 'e':
6195 case 'E':
6196 oap->motion_type = MCHAR;
6197 curwin->w_set_curswant = TRUE;
6198 oap->inclusive = TRUE;
6199 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
6200 clearopbeep(oap);
6201 break;
6202
6203 /*
6204 * "g CTRL-G": display info about cursor position
6205 */
6206 case Ctrl_G:
Bram Moolenaared767a22016-01-03 22:49:16 +01006207 cursor_pos_info(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208 break;
6209
6210 /*
6211 * "gi": start Insert at the last position.
6212 */
6213 case 'i':
6214 if (curbuf->b_last_insert.lnum != 0)
6215 {
6216 curwin->w_cursor = curbuf->b_last_insert;
6217 check_cursor_lnum();
6218 i = (int)STRLEN(ml_get_curline());
6219 if (curwin->w_cursor.col > (colnr_T)i)
6220 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006221 if (virtual_active())
6222 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006223 curwin->w_cursor.col = i;
6224 }
6225 }
6226 cap->cmdchar = 'i';
6227 nv_edit(cap);
6228 break;
6229
6230 /*
6231 * "gI": Start insert in column 1.
6232 */
6233 case 'I':
6234 beginline(0);
6235 if (!checkclearopq(oap))
6236 invoke_edit(cap, FALSE, 'g', FALSE);
6237 break;
6238
6239#ifdef FEAT_SEARCHPATH
6240 /*
6241 * "gf": goto file, edit file under cursor
6242 * "]f" and "[f": can also be used.
6243 */
6244 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006245 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246 nv_gotofile(cap);
6247 break;
6248#endif
6249
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006250 // "g'm" and "g`m": jump to mark without setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251 case '\'':
6252 cap->arg = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006253 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254 case '`':
6255 nv_gomark(cap);
6256 break;
6257
6258 /*
6259 * "gs": Goto sleep.
6260 */
6261 case 's':
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01006262 do_sleep(cap->count1 * 1000L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263 break;
6264
6265 /*
6266 * "ga": Display the ascii value of the character under the
6267 * cursor. It is displayed in decimal, hex, and octal. -- webb
6268 */
6269 case 'a':
6270 do_ascii(NULL);
6271 break;
6272
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273 /*
6274 * "g8": Display the bytes used for the UTF-8 character under the
6275 * cursor. It is displayed in hex.
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006276 * "8g8" finds illegal byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277 */
6278 case '8':
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006279 if (cap->count0 == 8)
6280 utf_find_illegal();
6281 else
6282 show_utf8();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006285 // "g<": show scrollback text
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00006286 case '<':
6287 show_sb_text();
6288 break;
6289
Bram Moolenaar071d4272004-06-13 20:20:40 +00006290 /*
6291 * "gg": Goto the first line in file. With a count it goes to
6292 * that line number like for "G". -- webb
6293 */
6294 case 'g':
6295 cap->arg = FALSE;
6296 nv_goto(cap);
6297 break;
6298
6299 /*
6300 * Two-character operators:
6301 * "gq" Format text
6302 * "gw" Format text and keep cursor position
6303 * "g~" Toggle the case of the text.
6304 * "gu" Change text to lower case.
6305 * "gU" Change text to upper case.
6306 * "g?" rot13 encoding
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006307 * "g@" call 'operatorfunc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308 */
6309 case 'q':
6310 case 'w':
6311 oap->cursor_start = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006312 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313 case '~':
6314 case 'u':
6315 case 'U':
6316 case '?':
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006317 case '@':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318 nv_operator(cap);
6319 break;
6320
6321 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00006322 * "gd": Find first occurrence of pattern under the cursor in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323 * current function
6324 * "gD": idem, but in the current file.
6325 */
6326 case 'd':
6327 case 'D':
Bram Moolenaarf75a9632005-09-13 21:20:47 +00006328 nv_gd(oap, cap->nchar, (int)cap->count0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006329 break;
6330
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331 /*
6332 * g<*Mouse> : <C-*mouse>
6333 */
6334 case K_MIDDLEMOUSE:
6335 case K_MIDDLEDRAG:
6336 case K_MIDDLERELEASE:
6337 case K_LEFTMOUSE:
6338 case K_LEFTDRAG:
6339 case K_LEFTRELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01006340 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341 case K_RIGHTMOUSE:
6342 case K_RIGHTDRAG:
6343 case K_RIGHTRELEASE:
6344 case K_X1MOUSE:
6345 case K_X1DRAG:
6346 case K_X1RELEASE:
6347 case K_X2MOUSE:
6348 case K_X2DRAG:
6349 case K_X2RELEASE:
6350 mod_mask = MOD_MASK_CTRL;
6351 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
6352 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353
6354 case K_IGNORE:
6355 break;
6356
6357 /*
6358 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
6359 */
6360 case 'p':
6361 case 'P':
6362 nv_put(cap);
6363 break;
6364
6365#ifdef FEAT_BYTEOFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006366 // "go": goto byte count from start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367 case 'o':
6368 goto_byte(cap->count0);
6369 break;
6370#endif
6371
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006372 // "gQ": improved Ex mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00006373 case 'Q':
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006374 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375 {
6376 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006377 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006378 break;
6379 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006380
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381 if (!checkclearopq(oap))
6382 do_exmode(TRUE);
6383 break;
6384
6385#ifdef FEAT_JUMPLIST
6386 case ',':
6387 nv_pcmark(cap);
6388 break;
6389
6390 case ';':
6391 cap->count1 = -cap->count1;
6392 nv_pcmark(cap);
6393 break;
6394#endif
6395
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006396 case 't':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006397 if (!checkclearop(oap))
6398 goto_tabpage((int)cap->count0);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006399 break;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006400 case 'T':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006401 if (!checkclearop(oap))
6402 goto_tabpage(-(int)cap->count1);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006403 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006404
Bram Moolenaar62a23252020-08-09 14:04:42 +02006405 case TAB:
6406 if (!checkclearop(oap) && goto_tabpage_lastused() == FAIL)
6407 clearopbeep(oap);
6408 break;
6409
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006410 case '+':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006411 case '-': // "g+" and "g-": undo or redo along the timeline
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006412 if (!checkclearopq(oap))
Bram Moolenaard3667a22006-03-16 21:35:52 +00006413 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
Bram Moolenaar730cde92010-06-27 05:18:54 +02006414 FALSE, FALSE, FALSE);
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006415 break;
6416
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417 default:
6418 clearopbeep(oap);
6419 break;
6420 }
6421}
6422
6423/*
6424 * Handle "o" and "O" commands.
6425 */
6426 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006427n_opencmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428{
Bram Moolenaar860cae12010-06-05 23:22:07 +02006429#ifdef FEAT_CONCEAL
6430 linenr_T oldline = curwin->w_cursor.lnum;
6431#endif
6432
Bram Moolenaar071d4272004-06-13 20:20:40 +00006433 if (!checkclearopq(cap->oap))
6434 {
6435#ifdef FEAT_FOLDING
6436 if (cap->cmdchar == 'O')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006437 // Open above the first line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006438 (void)hasFolding(curwin->w_cursor.lnum,
6439 &curwin->w_cursor.lnum, NULL);
6440 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006441 // Open below the last line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442 (void)hasFolding(curwin->w_cursor.lnum,
6443 NULL, &curwin->w_cursor.lnum);
6444#endif
6445 if (u_save((linenr_T)(curwin->w_cursor.lnum -
6446 (cap->cmdchar == 'O' ? 1 : 0)),
6447 (linenr_T)(curwin->w_cursor.lnum +
6448 (cap->cmdchar == 'o' ? 1 : 0))
6449 ) == OK
6450 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02006451 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0,
6452 0) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02006454#ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02006455 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01006456 redrawWinline(curwin, oldline);
Bram Moolenaar860cae12010-06-05 23:22:07 +02006457#endif
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006458#ifdef FEAT_SYN_HL
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006459 if (curwin->w_p_cul)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006460 // force redraw of cursorline
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006461 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006462#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006463 // When '#' is in 'cpoptions' ignore the count.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006464 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
6465 cap->count1 = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006466 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
6467 }
6468 }
6469}
6470
6471/*
6472 * "." command: redo last change.
6473 */
6474 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006475nv_dot(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006476{
6477 if (!checkclearopq(cap->oap))
6478 {
6479 /*
6480 * If "restart_edit" is TRUE, the last but one command is repeated
6481 * instead of the last command (inserting text). This is used for
6482 * CTRL-O <.> in insert mode.
6483 */
6484 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
6485 clearopbeep(cap->oap);
6486 }
6487}
6488
6489/*
6490 * CTRL-R: undo undo
6491 */
6492 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006493nv_redo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494{
6495 if (!checkclearopq(cap->oap))
6496 {
6497 u_redo((int)cap->count1);
6498 curwin->w_set_curswant = TRUE;
6499 }
6500}
6501
6502/*
6503 * Handle "U" command.
6504 */
6505 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006506nv_Undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006508 // In Visual mode and typing "gUU" triggers an operator
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006509 if (cap->oap->op_type == OP_UPPER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006510 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006511 // translate "gUU" to "gUgU"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006512 cap->cmdchar = 'g';
6513 cap->nchar = 'U';
6514 nv_operator(cap);
6515 }
6516 else if (!checkclearopq(cap->oap))
6517 {
6518 u_undoline();
6519 curwin->w_set_curswant = TRUE;
6520 }
6521}
6522
6523/*
6524 * '~' command: If tilde is not an operator and Visual is off: swap case of a
6525 * single character.
6526 */
6527 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006528nv_tilde(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006530 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE)
Bram Moolenaarf2732452018-06-03 14:47:35 +02006531 {
6532#ifdef FEAT_JOB_CHANNEL
6533 if (bt_prompt(curbuf) && !prompt_curpos_editable())
6534 {
6535 clearopbeep(cap->oap);
6536 return;
6537 }
6538#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539 n_swapchar(cap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541 else
6542 nv_operator(cap);
6543}
6544
6545/*
6546 * Handle an operator command.
6547 * The actual work is done by do_pending_operator().
6548 */
6549 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006550nv_operator(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551{
6552 int op_type;
6553
6554 op_type = get_op_type(cap->cmdchar, cap->nchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006555#ifdef FEAT_JOB_CHANNEL
6556 if (bt_prompt(curbuf) && op_is_change(op_type) && !prompt_curpos_editable())
6557 {
6558 clearopbeep(cap->oap);
6559 return;
6560 }
6561#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006562
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006563 if (op_type == cap->oap->op_type) // double operator works on lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564 nv_lineop(cap);
6565 else if (!checkclearop(cap->oap))
6566 {
6567 cap->oap->start = curwin->w_cursor;
6568 cap->oap->op_type = op_type;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006569#ifdef FEAT_EVAL
6570 set_op_var(op_type);
6571#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006572 }
6573}
6574
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006575#ifdef FEAT_EVAL
6576/*
6577 * Set v:operator to the characters for "optype".
6578 */
6579 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006580set_op_var(int optype)
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006581{
6582 char_u opchars[3];
6583
6584 if (optype == OP_NOP)
6585 set_vim_var_string(VV_OP, NULL, 0);
6586 else
6587 {
6588 opchars[0] = get_op_char(optype);
6589 opchars[1] = get_extra_op_char(optype);
6590 opchars[2] = NUL;
6591 set_vim_var_string(VV_OP, opchars, -1);
6592 }
6593}
6594#endif
6595
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596/*
6597 * Handle linewise operator "dd", "yy", etc.
6598 *
6599 * "_" is is a strange motion command that helps make operators more logical.
6600 * It is actually implemented, but not documented in the real Vi. This motion
6601 * command actually refers to "the current line". Commands like "dd" and "yy"
6602 * are really an alternate form of "d_" and "y_". It does accept a count, so
6603 * "d3_" works to delete 3 lines.
6604 */
6605 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006606nv_lineop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006607{
6608 cap->oap->motion_type = MLINE;
6609 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
6610 clearopbeep(cap->oap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006611 else if ( (cap->oap->op_type == OP_DELETE // only with linewise motions
Bram Moolenaar83dadaf2012-12-12 17:33:32 +01006612 && cap->oap->motion_force != 'v'
6613 && cap->oap->motion_force != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614 || cap->oap->op_type == OP_LSHIFT
6615 || cap->oap->op_type == OP_RSHIFT)
6616 beginline(BL_SOL | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006617 else if (cap->oap->op_type != OP_YANK) // 'Y' does not move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00006618 beginline(BL_WHITE | BL_FIX);
6619}
6620
6621/*
6622 * <Home> command.
6623 */
6624 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006625nv_home(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006627 // CTRL-HOME is like "gg"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006628 if (mod_mask & MOD_MASK_CTRL)
6629 nv_goto(cap);
6630 else
6631 {
6632 cap->count0 = 1;
6633 nv_pipe(cap);
6634 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006635 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6636 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006637}
6638
6639/*
6640 * "|" command.
6641 */
6642 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006643nv_pipe(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006644{
6645 cap->oap->motion_type = MCHAR;
6646 cap->oap->inclusive = FALSE;
6647 beginline(0);
6648 if (cap->count0 > 0)
6649 {
6650 coladvance((colnr_T)(cap->count0 - 1));
6651 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
6652 }
6653 else
6654 curwin->w_curswant = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006655 // keep curswant at the column where we wanted to go, not where
6656 // we ended; differs if line is too short
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657 curwin->w_set_curswant = FALSE;
6658}
6659
6660/*
6661 * Handle back-word command "b" and "B".
6662 * cap->arg is 1 for "B"
6663 */
6664 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006665nv_bck_word(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666{
6667 cap->oap->motion_type = MCHAR;
6668 cap->oap->inclusive = FALSE;
6669 curwin->w_set_curswant = TRUE;
6670 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
6671 clearopbeep(cap->oap);
6672#ifdef FEAT_FOLDING
6673 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6674 foldOpenCursor();
6675#endif
6676}
6677
6678/*
6679 * Handle word motion commands "e", "E", "w" and "W".
6680 * cap->arg is TRUE for "E" and "W".
6681 */
6682 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006683nv_wordcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006684{
6685 int n;
6686 int word_end;
6687 int flag = FALSE;
Bram Moolenaardfefb982008-04-01 10:06:39 +00006688 pos_T startpos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006689
6690 /*
6691 * Set inclusive for the "E" and "e" command.
6692 */
6693 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
6694 word_end = TRUE;
6695 else
6696 word_end = FALSE;
6697 cap->oap->inclusive = word_end;
6698
6699 /*
6700 * "cw" and "cW" are a special case.
6701 */
6702 if (!word_end && cap->oap->op_type == OP_CHANGE)
6703 {
6704 n = gchar_cursor();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006705 if (n != NUL) // not an empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01006707 if (VIM_ISWHITE(n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006708 {
6709 /*
6710 * Reproduce a funny Vi behaviour: "cw" on a blank only
6711 * changes one character, not all blanks until the start of
6712 * the next word. Only do this when the 'w' flag is included
6713 * in 'cpoptions'.
6714 */
6715 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
6716 {
6717 cap->oap->inclusive = TRUE;
6718 cap->oap->motion_type = MCHAR;
6719 return;
6720 }
6721 }
6722 else
6723 {
6724 /*
6725 * This is a little strange. To match what the real Vi does,
6726 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
6727 * that we are not on a space or a TAB. This seems impolite
6728 * at first, but it's really more what we mean when we say
6729 * 'cw'.
6730 * Another strangeness: When standing on the end of a word
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02006731 * "ce" will change until the end of the next word, but "cw"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006732 * will change only one character! This is done by setting
6733 * flag.
6734 */
6735 cap->oap->inclusive = TRUE;
6736 word_end = TRUE;
6737 flag = TRUE;
6738 }
6739 }
6740 }
6741
6742 cap->oap->motion_type = MCHAR;
6743 curwin->w_set_curswant = TRUE;
6744 if (word_end)
6745 n = end_word(cap->count1, cap->arg, flag, FALSE);
6746 else
6747 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
6748
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006749 // Don't leave the cursor on the NUL past the end of line. Unless we
6750 // didn't move it forward.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006751 if (LT_POS(startpos, curwin->w_cursor))
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006752 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006753
6754 if (n == FAIL && cap->oap->op_type == OP_NOP)
6755 clearopbeep(cap->oap);
6756 else
6757 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006759#ifdef FEAT_FOLDING
6760 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6761 foldOpenCursor();
6762#endif
6763 }
6764}
6765
6766/*
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006767 * Used after a movement command: If the cursor ends up on the NUL after the
6768 * end of the line, may move it back to the last character and make the motion
6769 * inclusive.
6770 */
6771 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006772adjust_cursor(oparg_T *oap)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006773{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006774 // The cursor cannot remain on the NUL when:
6775 // - the column is > 0
6776 // - not in Visual mode or 'selection' is "o"
6777 // - 'virtualedit' is not "all" and not "onemore".
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006778 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006779 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01006780 && !virtual_active() && (ve_flags & VE_ONEMORE) == 0)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006781 {
6782 --curwin->w_cursor.col;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006783 // prevent cursor from moving on the trail byte
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006784 if (has_mbyte)
6785 mb_adjust_cursor();
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006786 oap->inclusive = TRUE;
6787 }
6788}
6789
6790/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791 * "0" and "^" commands.
6792 * cap->arg is the argument for beginline().
6793 */
6794 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006795nv_beginline(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796{
6797 cap->oap->motion_type = MCHAR;
6798 cap->oap->inclusive = FALSE;
6799 beginline(cap->arg);
6800#ifdef FEAT_FOLDING
6801 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6802 foldOpenCursor();
6803#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006804 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6805 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006806}
6807
Bram Moolenaar071d4272004-06-13 20:20:40 +00006808/*
6809 * In exclusive Visual mode, may include the last character.
6810 */
6811 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006812adjust_for_sel(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006813{
6814 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006815 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006816 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817 if (has_mbyte)
6818 inc_cursor();
6819 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006820 ++curwin->w_cursor.col;
6821 cap->oap->inclusive = FALSE;
6822 }
6823}
6824
6825/*
6826 * Exclude last character at end of Visual area for 'selection' == "exclusive".
6827 * Should check VIsual_mode before calling this.
6828 * Returns TRUE when backed up to the previous line.
6829 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02006830 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006831unadjust_for_sel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006832{
6833 pos_T *pp;
6834
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006835 if (*p_sel == 'e' && !EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006837 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838 pp = &curwin->w_cursor;
6839 else
6840 pp = &VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006841 if (pp->coladd > 0)
6842 --pp->coladd;
6843 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006844 if (pp->col > 0)
6845 {
6846 --pp->col;
Bram Moolenaar03a807a2011-07-07 15:08:58 +02006847 mb_adjustpos(curbuf, pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848 }
6849 else if (pp->lnum > 1)
6850 {
6851 --pp->lnum;
6852 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
6853 return TRUE;
6854 }
6855 }
6856 return FALSE;
6857}
6858
6859/*
6860 * SELECT key in Normal or Visual mode: end of Select mode mapping.
6861 */
6862 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006863nv_select(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864{
6865 if (VIsual_active)
6866 VIsual_select = TRUE;
6867 else if (VIsual_reselect)
6868 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006869 cap->nchar = 'v'; // fake "gv" command
Bram Moolenaar071d4272004-06-13 20:20:40 +00006870 cap->arg = TRUE;
6871 nv_g_cmd(cap);
6872 }
6873}
6874
Bram Moolenaar071d4272004-06-13 20:20:40 +00006875
6876/*
6877 * "G", "gg", CTRL-END, CTRL-HOME.
6878 * cap->arg is TRUE for "G".
6879 */
6880 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006881nv_goto(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006882{
6883 linenr_T lnum;
6884
6885 if (cap->arg)
6886 lnum = curbuf->b_ml.ml_line_count;
6887 else
6888 lnum = 1L;
6889 cap->oap->motion_type = MLINE;
6890 setpcmark();
6891
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006892 // When a count is given, use it instead of the default lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00006893 if (cap->count0 != 0)
6894 lnum = cap->count0;
6895 if (lnum < 1L)
6896 lnum = 1L;
6897 else if (lnum > curbuf->b_ml.ml_line_count)
6898 lnum = curbuf->b_ml.ml_line_count;
6899 curwin->w_cursor.lnum = lnum;
6900 beginline(BL_SOL | BL_FIX);
6901#ifdef FEAT_FOLDING
6902 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
6903 foldOpenCursor();
6904#endif
6905}
6906
6907/*
6908 * CTRL-\ in Normal mode.
6909 */
6910 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006911nv_normal(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006912{
6913 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
6914 {
6915 clearop(cap->oap);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00006916 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006917 clear_cmdline = TRUE; // unshow mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00006918 restart_edit = 0;
6919#ifdef FEAT_CMDWIN
6920 if (cmdwin_type != 0)
6921 cmdwin_result = Ctrl_C;
6922#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006923 if (VIsual_active)
6924 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006925 end_visual_mode(); // stop Visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926 redraw_curbuf_later(INVERTED);
6927 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006928 // CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006929 if (cap->nchar == Ctrl_G && p_im)
6930 restart_edit = 'a';
6931 }
6932 else
6933 clearopbeep(cap->oap);
6934}
6935
6936/*
6937 * ESC in Normal mode: beep, but don't flush buffers.
6938 * Don't even beep if we are canceling a command.
6939 */
6940 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006941nv_esc(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942{
6943 int no_reason;
6944
6945 no_reason = (cap->oap->op_type == OP_NOP
6946 && cap->opcount == 0
6947 && cap->count0 == 0
6948 && cap->oap->regname == 0
6949 && !p_im);
6950
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006951 if (cap->arg) // TRUE for CTRL-C
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952 {
6953 if (restart_edit == 0
6954#ifdef FEAT_CMDWIN
6955 && cmdwin_type == 0
6956#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006957 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958 && no_reason)
Bram Moolenaara84a3dd2019-03-25 22:21:24 +01006959 {
6960 if (anyBufIsChanged())
6961 msg(_("Type :qa! and press <Enter> to abandon all changes and exit Vim"));
6962 else
6963 msg(_("Type :qa and press <Enter> to exit Vim"));
6964 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006965
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006966 // Don't reset "restart_edit" when 'insertmode' is set, it won't be
6967 // set again below when halfway a mapping.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006968 if (!p_im)
6969 restart_edit = 0;
6970#ifdef FEAT_CMDWIN
6971 if (cmdwin_type != 0)
6972 {
6973 cmdwin_result = K_IGNORE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006974 got_int = FALSE; // don't stop executing autocommands et al.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975 return;
6976 }
6977#endif
6978 }
Bram Moolenaar7d414102021-02-23 19:39:20 +01006979#ifdef FEAT_CMDWIN
6980 else if (cmdwin_type != 0 && ex_normal_busy)
6981 {
6982 // When :normal runs out of characters while in the command line window
6983 // vgetorpeek() will return ESC. Exit the cmdline window to break the
6984 // loop.
6985 cmdwin_result = K_IGNORE;
6986 return;
6987 }
6988#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989
Bram Moolenaar071d4272004-06-13 20:20:40 +00006990 if (VIsual_active)
6991 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006992 end_visual_mode(); // stop Visual
6993 check_cursor_col(); // make sure cursor is not beyond EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994 curwin->w_set_curswant = TRUE;
6995 redraw_curbuf_later(INVERTED);
6996 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006997 else if (no_reason)
Bram Moolenaar165bc692015-07-21 17:53:25 +02006998 vim_beep(BO_ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999 clearop(cap->oap);
7000
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007001 // A CTRL-C is often used at the start of a menu. When 'insertmode' is
7002 // set return to Insert mode afterwards.
Bram Moolenaare2c38102016-01-31 14:55:40 +01007003 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004 restart_edit = 'a';
7005}
7006
7007/*
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007008 * Move the cursor for the "A" command.
7009 */
7010 void
7011set_cursor_for_append_to_line(void)
7012{
7013 curwin->w_set_curswant = TRUE;
7014 if (ve_flags == VE_ALL)
7015 {
7016 int save_State = State;
7017
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007018 // Pretend Insert mode here to allow the cursor on the
7019 // character past the end of the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007020 State = INSERT;
7021 coladvance((colnr_T)MAXCOL);
7022 State = save_State;
7023 }
7024 else
7025 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
7026}
7027
7028/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029 * Handle "A", "a", "I", "i" and <Insert> commands.
Bram Moolenaarec2da362017-01-21 20:04:22 +01007030 * Also handle K_PS, start bracketed paste.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 */
7032 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007033nv_edit(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007035 // <Insert> is equal to "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
7037 cap->cmdchar = 'i';
7038
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007039 // in Visual mode "A" and "I" are an operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
Bram Moolenaareef9add2017-09-16 15:38:04 +02007041 {
7042#ifdef FEAT_TERMINAL
7043 if (term_in_normal_mode())
7044 {
7045 end_visual_mode();
7046 clearop(cap->oap);
7047 term_enter_job_mode();
7048 return;
7049 }
7050#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 v_visop(cap);
Bram Moolenaareef9add2017-09-16 15:38:04 +02007052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007054 // in Visual mode and after an operator "a" and "i" are for text objects
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007055 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
7056 && (cap->oap->op_type != OP_NOP || VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 {
7058#ifdef FEAT_TEXTOBJ
7059 nv_object(cap);
7060#else
7061 clearopbeep(cap->oap);
7062#endif
7063 }
Bram Moolenaar662d9382017-07-31 22:56:24 +02007064#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02007065 else if (term_in_normal_mode())
Bram Moolenaar662d9382017-07-31 22:56:24 +02007066 {
7067 clearop(cap->oap);
Bram Moolenaar6d819742017-08-06 14:57:49 +02007068 term_enter_job_mode();
Bram Moolenaar662d9382017-07-31 22:56:24 +02007069 return;
7070 }
7071#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007072 else if (!curbuf->b_p_ma && !p_im)
7073 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007074 // Only give this error when 'insertmode' is off.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007075 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007076 clearop(cap->oap);
Bram Moolenaarec2da362017-01-21 20:04:22 +01007077 if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007078 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01007079 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080 }
Bram Moolenaara1891842017-02-04 21:34:31 +01007081 else if (cap->cmdchar == K_PS && VIsual_active)
7082 {
7083 pos_T old_pos = curwin->w_cursor;
7084 pos_T old_visual = VIsual;
7085
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007086 // In Visual mode the selected text is deleted.
Bram Moolenaara1891842017-02-04 21:34:31 +01007087 if (VIsual_mode == 'V' || curwin->w_cursor.lnum != VIsual.lnum)
7088 {
7089 shift_delete_registers();
7090 cap->oap->regname = '1';
7091 }
7092 else
7093 cap->oap->regname = '-';
7094 cap->cmdchar = 'd';
7095 cap->nchar = NUL;
7096 nv_operator(cap);
7097 do_pending_operator(cap, 0, FALSE);
7098 cap->cmdchar = K_PS;
7099
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007100 // When the last char in the line was deleted then append. Detect this
7101 // by checking if the cursor moved to before the Visual area.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007102 if (*ml_get_cursor() != NUL && LT_POS(curwin->w_cursor, old_pos)
7103 && LT_POS(curwin->w_cursor, old_visual))
Bram Moolenaara1891842017-02-04 21:34:31 +01007104 inc_cursor();
7105
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007106 // Insert to replace the deleted text with the pasted text.
Bram Moolenaara1891842017-02-04 21:34:31 +01007107 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7108 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109 else if (!checkclearopq(cap->oap))
7110 {
7111 switch (cap->cmdchar)
7112 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007113 case 'A': // "A"ppend after the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007114 set_cursor_for_append_to_line();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115 break;
7116
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007117 case 'I': // "I"nsert before the first non-blank
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007118 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
7119 beginline(BL_WHITE);
7120 else
7121 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007122 break;
7123
Bram Moolenaara1891842017-02-04 21:34:31 +01007124 case K_PS:
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007125 // Bracketed paste works like "a"ppend, unless the cursor is in
7126 // the first column, then it inserts.
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007127 if (curwin->w_cursor.col == 0)
7128 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007129 // FALLTHROUGH
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007130
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007131 case 'a': // "a"ppend is like "i"nsert on the next character.
7132 // increment coladd when in virtual space, increment the
7133 // column otherwise, also to append after an unprintable char
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134 if (virtual_active()
7135 && (curwin->w_cursor.coladd > 0
7136 || *ml_get_cursor() == NUL
7137 || *ml_get_cursor() == TAB))
7138 curwin->w_cursor.coladd++;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01007139 else if (*ml_get_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007140 inc_cursor();
7141 break;
7142 }
7143
Bram Moolenaar071d4272004-06-13 20:20:40 +00007144 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
7145 {
7146 int save_State = State;
7147
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007148 // Pretend Insert mode here to allow the cursor on the
7149 // character past the end of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150 State = INSERT;
7151 coladvance(getviscol());
7152 State = save_State;
7153 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154
7155 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7156 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01007157 else if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007158 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01007159 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007160}
7161
7162/*
7163 * Invoke edit() and take care of "restart_edit" and the return value.
7164 */
7165 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007166invoke_edit(
7167 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007168 int repl, // "r" or "gr" command
Bram Moolenaar9b578142016-01-30 19:39:49 +01007169 int cmd,
7170 int startln)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171{
7172 int restart_edit_save = 0;
7173
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007174 // Complicated: When the user types "a<C-O>a" we don't want to do Insert
7175 // mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
7176 // it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007177 if (repl || !stuff_empty())
7178 restart_edit_save = restart_edit;
7179 else
7180 restart_edit_save = 0;
7181
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007182 // Always reset "restart_edit", this is not a restarted edit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007183 restart_edit = 0;
7184
7185 if (edit(cmd, startln, cap->count1))
7186 cap->retval |= CA_COMMAND_BUSY;
7187
7188 if (restart_edit == 0)
7189 restart_edit = restart_edit_save;
7190}
7191
7192#ifdef FEAT_TEXTOBJ
7193/*
7194 * "a" or "i" while an operator is pending or in Visual mode: object motion.
7195 */
7196 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007197nv_object(
7198 cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199{
7200 int flag;
7201 int include;
7202 char_u *mps_save;
7203
7204 if (cap->cmdchar == 'i')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007205 include = FALSE; // "ix" = inner object: exclude white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007206 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007207 include = TRUE; // "ax" = an object: include white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007208
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007209 // Make sure (), [], {} and <> are in 'matchpairs'
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210 mps_save = curbuf->b_p_mps;
7211 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
7212
7213 switch (cap->nchar)
7214 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007215 case 'w': // "aw" = a word
Bram Moolenaar071d4272004-06-13 20:20:40 +00007216 flag = current_word(cap->oap, cap->count1, include, FALSE);
7217 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007218 case 'W': // "aW" = a WORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007219 flag = current_word(cap->oap, cap->count1, include, TRUE);
7220 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007221 case 'b': // "ab" = a braces block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222 case '(':
7223 case ')':
7224 flag = current_block(cap->oap, cap->count1, include, '(', ')');
7225 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007226 case 'B': // "aB" = a Brackets block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007227 case '{':
7228 case '}':
7229 flag = current_block(cap->oap, cap->count1, include, '{', '}');
7230 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007231 case '[': // "a[" = a [] block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007232 case ']':
7233 flag = current_block(cap->oap, cap->count1, include, '[', ']');
7234 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007235 case '<': // "a<" = a <> block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007236 case '>':
7237 flag = current_block(cap->oap, cap->count1, include, '<', '>');
7238 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007239 case 't': // "at" = a tag block (xml and html)
7240 // Do not adjust oap->end in do_pending_operator()
7241 // otherwise there are different results for 'dit'
7242 // (note leading whitespace in last line):
7243 // 1) <b> 2) <b>
7244 // foobar foobar
7245 // </b> </b>
Bram Moolenaarb6c27352015-03-05 19:57:49 +01007246 cap->retval |= CA_NO_ADJ_OP_END;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00007247 flag = current_tagblock(cap->oap, cap->count1, include);
7248 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007249 case 'p': // "ap" = a paragraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250 flag = current_par(cap->oap, cap->count1, include, 'p');
7251 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007252 case 's': // "as" = a sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00007253 flag = current_sent(cap->oap, cap->count1, include);
7254 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007255 case '"': // "a"" = a double quoted string
7256 case '\'': // "a'" = a single quoted string
7257 case '`': // "a`" = a backtick quoted string
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007258 flag = current_quote(cap->oap, cap->count1, include,
7259 cap->nchar);
7260 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007261#if 0 // TODO
7262 case 'S': // "aS" = a section
7263 case 'f': // "af" = a filename
7264 case 'u': // "au" = a URL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265#endif
7266 default:
7267 flag = FAIL;
7268 break;
7269 }
7270
7271 curbuf->b_p_mps = mps_save;
7272 if (flag == FAIL)
7273 clearopbeep(cap->oap);
7274 adjust_cursor_col();
7275 curwin->w_set_curswant = TRUE;
7276}
7277#endif
7278
7279/*
7280 * "q" command: Start/stop recording.
7281 * "q:", "q/", "q?": edit command-line in command-line window.
7282 */
7283 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007284nv_record(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007285{
7286 if (cap->oap->op_type == OP_FORMAT)
7287 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007288 // "gqq" is the same as "gqgq": format line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007289 cap->cmdchar = 'g';
7290 cap->nchar = 'q';
7291 nv_operator(cap);
7292 }
7293 else if (!checkclearop(cap->oap))
7294 {
7295#ifdef FEAT_CMDWIN
7296 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
7297 {
7298 stuffcharReadbuff(cap->nchar);
7299 stuffcharReadbuff(K_CMDWIN);
7300 }
7301 else
7302#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007303 // (stop) recording into a named register, unless executing a
7304 // register
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02007305 if (reg_executing == 0 && do_record(cap->nchar) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007306 clearopbeep(cap->oap);
7307 }
7308}
7309
7310/*
7311 * Handle the "@r" command.
7312 */
7313 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007314nv_at(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007315{
7316 if (checkclearop(cap->oap))
7317 return;
7318#ifdef FEAT_EVAL
7319 if (cap->nchar == '=')
7320 {
7321 if (get_expr_register() == NUL)
7322 return;
7323 }
7324#endif
7325 while (cap->count1-- && !got_int)
7326 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00007327 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328 {
7329 clearopbeep(cap->oap);
7330 break;
7331 }
7332 line_breakcheck();
7333 }
7334}
7335
7336/*
7337 * Handle the CTRL-U and CTRL-D commands.
7338 */
7339 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007340nv_halfpage(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341{
7342 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
7343 || (cap->cmdchar == Ctrl_D
7344 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
7345 clearopbeep(cap->oap);
7346 else if (!checkclearop(cap->oap))
7347 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
7348}
7349
7350/*
7351 * Handle "J" or "gJ" command.
7352 */
7353 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007354nv_join(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007356 if (VIsual_active) // join the visual lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00007357 nv_operator(cap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007358 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007359 {
7360 if (cap->count0 <= 1)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007361 cap->count0 = 2; // default for join is two lines!
Bram Moolenaar071d4272004-06-13 20:20:40 +00007362 if (curwin->w_cursor.lnum + cap->count0 - 1 >
7363 curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007364 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007365 // can't join when on the last line
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007366 if (cap->count0 <= 2)
7367 {
7368 clearopbeep(cap->oap);
7369 return;
7370 }
7371 cap->count0 = curbuf->b_ml.ml_line_count
7372 - curwin->w_cursor.lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007373 }
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007374
7375 prep_redo(cap->oap->regname, cap->count0,
7376 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
7377 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007378 }
7379}
7380
7381/*
7382 * "P", "gP", "p" and "gp" commands.
7383 */
7384 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007385nv_put(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007386{
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007387 nv_put_opt(cap, FALSE);
7388}
7389
7390/*
7391 * "P", "gP", "p" and "gp" commands.
7392 * "fix_indent" is TRUE for "[p", "[P", "]p" and "]P".
7393 */
7394 static void
7395nv_put_opt(cmdarg_T *cap, int fix_indent)
7396{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007397 int regname = 0;
7398 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007399 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007400 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007401 int dir;
7402 int flags = 0;
7403
7404 if (cap->oap->op_type != OP_NOP)
7405 {
7406#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007407 // "dp" is ":diffput"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007408 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
7409 {
7410 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007411 nv_diffgetput(TRUE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007412 }
7413 else
7414#endif
7415 clearopbeep(cap->oap);
7416 }
Bram Moolenaarf2732452018-06-03 14:47:35 +02007417#ifdef FEAT_JOB_CHANNEL
7418 else if (bt_prompt(curbuf) && !prompt_curpos_editable())
7419 {
7420 clearopbeep(cap->oap);
7421 }
7422#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007423 else
7424 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007425 if (fix_indent)
7426 {
7427 dir = (cap->cmdchar == ']' && cap->nchar == 'p')
7428 ? FORWARD : BACKWARD;
7429 flags |= PUT_FIXINDENT;
7430 }
7431 else
7432 dir = (cap->cmdchar == 'P'
Christian Brabandt2fa93842021-05-30 22:17:25 +02007433 || ((cap->cmdchar == 'g' || cap->cmdchar == 'z')
7434 && cap->nchar == 'P')) ? BACKWARD : FORWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007435 prep_redo_cmd(cap);
7436 if (cap->cmdchar == 'g')
7437 flags |= PUT_CURSEND;
Christian Brabandt2fa93842021-05-30 22:17:25 +02007438 else if (cap->cmdchar == 'z')
7439 flags |= PUT_BLOCK_INNER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007440
Bram Moolenaar071d4272004-06-13 20:20:40 +00007441 if (VIsual_active)
7442 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007443 // Putting in Visual mode: The put text replaces the selected
7444 // text. First delete the selected text, then put the new text.
7445 // Need to save and restore the registers that the delete
7446 // overwrites if the old contents is being put.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007447 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007448 regname = cap->oap->regname;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007449#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450 adjust_clip_reg(&regname);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007451#endif
Bram Moolenaar7d311c52014-02-22 23:49:35 +01007452 if (regname == 0 || regname == '"'
Bram Moolenaarba6e8582012-12-12 18:20:32 +01007453 || VIM_ISDIGIT(regname) || regname == '-'
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007454#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007455 || (clip_unnamed && (regname == '*' || regname == '+'))
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007456#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007457
7458 )
7459 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007460 // The delete is going to overwrite the register we want to
7461 // put, save it first.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007462 reg1 = get_register(regname, TRUE);
7463 }
7464
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007465 // Now delete the selected text. Avoid messages here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007466 cap->cmdchar = 'd';
7467 cap->nchar = NUL;
7468 cap->oap->regname = NUL;
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007469 ++msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007470 nv_operator(cap);
7471 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007472 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007473 --msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007475 // delete PUT_LINE_BACKWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007476 cap->oap->regname = regname;
7477
7478 if (reg1 != NULL)
7479 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007480 // Delete probably changed the register we want to put, save
7481 // it first. Then put back what was there before the delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007482 reg2 = get_register(regname, FALSE);
7483 put_register(regname, reg1);
7484 }
7485
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007486 // When deleted a linewise Visual area, put the register as
7487 // lines to avoid it joined with the next line. When deletion was
7488 // characterwise, split a line when putting lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007489 if (VIsual_mode == 'V')
7490 flags |= PUT_LINE;
7491 else if (VIsual_mode == 'v')
7492 flags |= PUT_LINE_SPLIT;
7493 if (VIsual_mode == Ctrl_V && dir == FORWARD)
7494 flags |= PUT_LINE_FORWARD;
7495 dir = BACKWARD;
7496 if ((VIsual_mode != 'V'
7497 && curwin->w_cursor.col < curbuf->b_op_start.col)
7498 || (VIsual_mode == 'V'
7499 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007500 // cursor is at the end of the line or end of file, put
7501 // forward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007502 dir = FORWARD;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007503 // May have been reset in do_put().
Bram Moolenaarec11aef2013-09-22 15:23:44 +02007504 VIsual_active = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007505 }
Bram Moolenaarc3516f72020-09-08 22:45:35 +02007506 do_put(cap->oap->regname, NULL, dir, cap->count1, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007507
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007508 // If a register was saved, put it back now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007509 if (reg2 != NULL)
7510 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007511
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007512 // What to reselect with "gv"? Selecting the just put text seems to
7513 // be the most useful, since the original text was removed.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007514 if (was_visual)
7515 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007516 curbuf->b_visual.vi_start = curbuf->b_op_start;
7517 curbuf->b_visual.vi_end = curbuf->b_op_end;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007518 // need to adjust cursor position
Bram Moolenaard29c6fe2015-11-19 20:11:54 +01007519 if (*p_sel == 'e')
7520 inc(&curbuf->b_visual.vi_end);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007521 }
7522
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007523 // When all lines were selected and deleted do_put() leaves an empty
7524 // line that needs to be deleted now.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007525 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007526 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02007527 ml_delete_flags(curbuf->b_ml.ml_line_count, ML_DEL_MESSAGE);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007528 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1);
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007529
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007530 // If the cursor was in that line, move it to the end of the last
7531 // line.
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007532 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7533 {
7534 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7535 coladvance((colnr_T)MAXCOL);
7536 }
7537 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007538 auto_format(FALSE, TRUE);
7539 }
7540}
7541
7542/*
7543 * "o" and "O" commands.
7544 */
7545 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007546nv_open(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007547{
7548#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007549 // "do" is ":diffget"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007550 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
7551 {
7552 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007553 nv_diffgetput(FALSE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007554 }
7555 else
7556#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007557 if (VIsual_active) // switch start and end of visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00007558 v_swap_corners(cap->cmdchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007559#ifdef FEAT_JOB_CHANNEL
7560 else if (bt_prompt(curbuf))
Bram Moolenaarf2732452018-06-03 14:47:35 +02007561 clearopbeep(cap->oap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007562#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007563 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007564 n_opencmd(cap);
7565}
7566
Bram Moolenaar071d4272004-06-13 20:20:40 +00007567#ifdef FEAT_NETBEANS_INTG
7568 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007569nv_nbcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007570{
7571 netbeans_keycommand(cap->nchar);
7572}
7573#endif
7574
7575#ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007576 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007577nv_drop(cmdarg_T *cap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007578{
Bram Moolenaarc3516f72020-09-08 22:45:35 +02007579 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007580}
7581#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00007582
Bram Moolenaar3918c952005-03-15 22:34:55 +00007583/*
7584 * Trigger CursorHold event.
7585 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
7586 * input buffer. "did_cursorhold" is set to avoid retriggering.
7587 */
Bram Moolenaar3918c952005-03-15 22:34:55 +00007588 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007589nv_cursorhold(cmdarg_T *cap)
Bram Moolenaar3918c952005-03-15 22:34:55 +00007590{
7591 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
7592 did_cursorhold = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007593 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar3918c952005-03-15 22:34:55 +00007594}