blob: 363f539c738df7af0c715c59b2771e07dd650609 [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
140/* 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 */
145
146#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 */
152
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{
170 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 */
174} 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
304 /* pound sign */
305 {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 Moolenaar071d4272004-06-13 20:20:40 +0000378};
379
380/* Number of commands in nv_cmds[]. */
381#define NV_CMDS_SIZE (sizeof(nv_cmds) / sizeof(struct nv_cmd))
382
383/* Sorted index of commands in nv_cmds[]. */
384static short nv_cmd_idx[NV_CMDS_SIZE];
385
386/* The highest index for which
387 * nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char] */
388static int nv_max_linear;
389
390/*
391 * Compare functions for qsort() below, that checks the command character
392 * through the index in nv_cmd_idx[].
393 */
394 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100395nv_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396{
397 int c1, c2;
398
399 /* The commands are sorted on absolute value. */
400 c1 = nv_cmds[*(const short *)s1].cmd_char;
401 c2 = nv_cmds[*(const short *)s2].cmd_char;
402 if (c1 < 0)
403 c1 = -c1;
404 if (c2 < 0)
405 c2 = -c2;
406 return c1 - c2;
407}
408
409/*
410 * Initialize the nv_cmd_idx[] table.
411 */
412 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100413init_normal_cmds(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414{
415 int i;
416
417 /* Fill the index table with a one to one relation. */
Bram Moolenaar78a15312009-05-15 19:33:18 +0000418 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419 nv_cmd_idx[i] = i;
420
421 /* Sort the commands by the command character. */
422 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
423
424 /* Find the first entry that can't be indexed by the command character. */
Bram Moolenaar78a15312009-05-15 19:33:18 +0000425 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char)
427 break;
428 nv_max_linear = i - 1;
429}
430
431/*
432 * Search for a command in the commands table.
433 * Returns -1 for invalid command.
434 */
435 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100436find_command(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437{
438 int i;
439 int idx;
440 int top, bot;
441 int c;
442
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 /* A multi-byte character is never a command. */
444 if (cmdchar >= 0x100)
445 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446
447 /* We use the absolute value of the character. Special keys have a
448 * negative value, but are sorted on their absolute value. */
449 if (cmdchar < 0)
450 cmdchar = -cmdchar;
451
452 /* If the character is in the first part: The character is the index into
453 * nv_cmd_idx[]. */
454 if (cmdchar <= nv_max_linear)
455 return nv_cmd_idx[cmdchar];
456
457 /* Perform a binary search. */
458 bot = nv_max_linear + 1;
459 top = NV_CMDS_SIZE - 1;
460 idx = -1;
461 while (bot <= top)
462 {
463 i = (top + bot) / 2;
464 c = nv_cmds[nv_cmd_idx[i]].cmd_char;
465 if (c < 0)
466 c = -c;
467 if (cmdchar == c)
468 {
469 idx = nv_cmd_idx[i];
470 break;
471 }
472 if (cmdchar > c)
473 bot = i + 1;
474 else
475 top = i - 1;
476 }
477 return idx;
478}
479
480/*
481 * Execute a command in Normal mode.
482 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100484normal_cmd(
485 oparg_T *oap,
486 int toplevel UNUSED) /* TRUE when called from main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488 cmdarg_T ca; /* command arguments */
489 int c;
490 int ctrl_w = FALSE; /* got CTRL-W command */
491 int old_col = curwin->w_curswant;
492#ifdef FEAT_CMDL_INFO
493 int need_flushbuf; /* need to call out_flush() */
494#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 pos_T old_pos; /* cursor position before command */
496 int mapped_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 static int old_mapped_len = 0;
498 int idx;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000499#ifdef FEAT_EVAL
500 int set_prevcount = FALSE;
501#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502
503 vim_memset(&ca, 0, sizeof(ca)); /* also resets ca.retval */
504 ca.oap = oap;
Bram Moolenaara983fe92008-07-31 20:04:27 +0000505
506 /* Use a count remembered from before entering an operator. After typing
507 * "3d" we return from normal_cmd() and come back here, the "3" is
508 * remembered in "opcount". */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509 ca.opcount = opcount;
510
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 /*
512 * If there is an operator pending, then the command we take this time
513 * will terminate it. Finish_op tells us to finish the operation before
514 * returning this time (unless the operation was cancelled).
515 */
516#ifdef CURSOR_SHAPE
517 c = finish_op;
518#endif
519 finish_op = (oap->op_type != OP_NOP);
520#ifdef CURSOR_SHAPE
521 if (finish_op != c)
522 {
523 ui_cursor_shape(); /* may show different cursor shape */
524# ifdef FEAT_MOUSESHAPE
525 update_mouseshape(-1);
526# endif
527 }
528#endif
529
Bram Moolenaara983fe92008-07-31 20:04:27 +0000530 /* When not finishing an operator and no register name typed, reset the
531 * count. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 if (!finish_op && !oap->regname)
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000533 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 ca.opcount = 0;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000535#ifdef FEAT_EVAL
536 set_prevcount = TRUE;
537#endif
538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539
Bram Moolenaara983fe92008-07-31 20:04:27 +0000540 /* Restore counts from before receiving K_CURSORHOLD. This means after
541 * typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not
542 * "3 * 2". */
543 if (oap->prev_opcount > 0 || oap->prev_count0 > 0)
544 {
545 ca.opcount = oap->prev_opcount;
546 ca.count0 = oap->prev_count0;
547 oap->prev_opcount = 0;
548 oap->prev_count0 = 0;
549 }
Bram Moolenaara983fe92008-07-31 20:04:27 +0000550
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 mapped_len = typebuf_maplen();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552
553 State = NORMAL_BUSY;
554#ifdef USE_ON_FLY_SCROLL
555 dont_scroll = FALSE; /* allow scrolling here */
556#endif
557
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100558#ifdef FEAT_EVAL
559 /* Set v:count here, when called from main() and not a stuffed
560 * command, so that v:count can be used in an expression mapping
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100561 * when there is no count. Do set it for redo. */
562 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100563 set_vcount_ca(&ca, &set_prevcount);
564#endif
565
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 /*
567 * Get the command character from the user.
568 */
569 c = safe_vgetc();
Bram Moolenaar25281632016-01-21 23:32:32 +0100570 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571
572 /*
573 * If a mapping was started in Visual or Select mode, remember the length
574 * of the mapping. This is used below to not return to Insert mode for as
575 * long as the mapping is being executed.
576 */
577 if (restart_edit == 0)
578 old_mapped_len = 0;
579 else if (old_mapped_len
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000580 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 old_mapped_len = typebuf_maplen();
582
583 if (c == NUL)
584 c = K_ZERO;
585
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 /*
587 * In Select mode, typed text replaces the selection.
588 */
589 if (VIsual_active
590 && VIsual_select
591 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
592 {
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000593 /* Fake a "c"hange command. When "restart_edit" is set (e.g., because
594 * 'insertmode' is set) fake a "d"elete command, Insert mode will
595 * restart automatically.
Bram Moolenaarcf8e7d12006-12-05 20:43:17 +0000596 * Insert the typed character in the typeahead buffer, so that it can
597 * be mapped in Insert mode. Required for ":lmap" to work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +0000598 ins_char_typebuf(c);
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000599 if (restart_edit != 0)
600 c = 'd';
601 else
602 c = 'c';
Bram Moolenaarb388adb2006-02-28 23:50:17 +0000603 msg_nowait = TRUE; /* don't delay going to insert mode */
Bram Moolenaar9bad29d2013-05-21 12:46:02 +0200604 old_mapped_len = 0; /* do go to Insert mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606
607#ifdef FEAT_CMDL_INFO
608 need_flushbuf = add_to_showcmd(c);
609#endif
610
611getcount:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 if (!(VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 {
614 /*
615 * Handle a count before a command and compute ca.count0.
616 * Note that '0' is a command and not the start of a count, but it's
617 * part of a count after other digits.
618 */
619 while ( (c >= '1' && c <= '9')
620 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
621 {
622 if (c == K_DEL || c == K_KDEL)
623 {
624 ca.count0 /= 10;
625#ifdef FEAT_CMDL_INFO
626 del_from_showcmd(4); /* delete the digit and ~@% */
627#endif
628 }
629 else
630 ca.count0 = ca.count0 * 10 + (c - '0');
631 if (ca.count0 < 0) /* got too large! */
632 ca.count0 = 999999999L;
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000633#ifdef FEAT_EVAL
634 /* Set v:count here, when called from main() and not a stuffed
635 * command, so that v:count can be used in an expression mapping
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100636 * right after the count. Do set it for redo. */
637 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100638 set_vcount_ca(&ca, &set_prevcount);
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000639#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 if (ctrl_w)
641 {
642 ++no_mapping;
643 ++allow_keys; /* no mapping for nchar, but keys */
644 }
645 ++no_zero_mapping; /* don't map zero here */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000646 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648 --no_zero_mapping;
649 if (ctrl_w)
650 {
651 --no_mapping;
652 --allow_keys;
653 }
654#ifdef FEAT_CMDL_INFO
655 need_flushbuf |= add_to_showcmd(c);
656#endif
657 }
658
659 /*
660 * If we got CTRL-W there may be a/another count
661 */
662 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
663 {
664 ctrl_w = TRUE;
665 ca.opcount = ca.count0; /* remember first count */
666 ca.count0 = 0;
667 ++no_mapping;
668 ++allow_keys; /* no mapping for nchar, but keys */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000669 c = plain_vgetc(); /* get next character */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 --no_mapping;
672 --allow_keys;
673#ifdef FEAT_CMDL_INFO
674 need_flushbuf |= add_to_showcmd(c);
675#endif
676 goto getcount; /* jump back */
677 }
678 }
679
Bram Moolenaara983fe92008-07-31 20:04:27 +0000680 if (c == K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 {
Bram Moolenaara983fe92008-07-31 20:04:27 +0000682 /* Save the count values so that ca.opcount and ca.count0 are exactly
683 * the same when coming back here after handling K_CURSORHOLD. */
684 oap->prev_opcount = ca.opcount;
685 oap->prev_count0 = ca.count0;
686 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100687 else if (ca.opcount != 0)
Bram Moolenaara983fe92008-07-31 20:04:27 +0000688 {
689 /*
690 * If we're in the middle of an operator (including after entering a
691 * yank buffer with '"') AND we had a count before the operator, then
692 * that count overrides the current value of ca.count0.
693 * What this means effectively, is that commands like "3dw" get turned
694 * into "d3w" which makes things fall into place pretty neatly.
695 * If you give a count before AND after the operator, they are
696 * multiplied.
697 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 if (ca.count0)
699 ca.count0 *= ca.opcount;
700 else
701 ca.count0 = ca.opcount;
702 }
703
704 /*
705 * Always remember the count. It will be set to zero (on the next call,
706 * above) when there is no pending operator.
707 * When called from main(), save the count for use by the "count" built-in
708 * variable.
709 */
710 ca.opcount = ca.count0;
711 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
712
713#ifdef FEAT_EVAL
714 /*
715 * Only set v:count when called from main() and not a stuffed command.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100716 * Do set it for redo.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100718 if (toplevel && readbuf1_empty())
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000719 set_vcount(ca.count0, ca.count1, set_prevcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720#endif
721
722 /*
723 * Find the command character in the table of commands.
724 * For CTRL-W we already got nchar when looking for a count.
725 */
726 if (ctrl_w)
727 {
728 ca.nchar = c;
729 ca.cmdchar = Ctrl_W;
730 }
731 else
732 ca.cmdchar = c;
733 idx = find_command(ca.cmdchar);
734 if (idx < 0)
735 {
736 /* Not a known command: beep. */
737 clearopbeep(oap);
738 goto normal_end;
739 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +0000740
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000741 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 {
Bram Moolenaard69bd9a2014-04-29 12:15:40 +0200743 /* This command is not allowed while editing a cmdline: beep. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 clearopbeep(oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000745 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 goto normal_end;
747 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000748 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
749 goto normal_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 /*
752 * In Visual/Select mode, a few keys are handled in a special way.
753 */
754 if (VIsual_active)
755 {
756 /* when 'keymodel' contains "stopsel" may stop Select/Visual mode */
757 if (km_stopsel
758 && (nv_cmds[idx].cmd_flags & NV_STS)
759 && !(mod_mask & MOD_MASK_SHIFT))
760 {
761 end_visual_mode();
762 redraw_curbuf_later(INVERTED);
763 }
764
765 /* Keys that work different when 'keymodel' contains "startsel" */
766 if (km_startsel)
767 {
768 if (nv_cmds[idx].cmd_flags & NV_SS)
769 {
770 unshift_special(&ca);
771 idx = find_command(ca.cmdchar);
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000772 if (idx < 0)
773 {
774 /* Just in case */
775 clearopbeep(oap);
776 goto normal_end;
777 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 }
779 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
780 && (mod_mask & MOD_MASK_SHIFT))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 mod_mask &= ~MOD_MASK_SHIFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 }
783 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784
785#ifdef FEAT_RIGHTLEFT
786 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
787 && (nv_cmds[idx].cmd_flags & NV_RL))
788 {
789 /* Invert horizontal movements and operations. Only when typed by the
790 * user directly, not when the result of a mapping or "x" translated
791 * to "dl". */
792 switch (ca.cmdchar)
793 {
794 case 'l': ca.cmdchar = 'h'; break;
795 case K_RIGHT: ca.cmdchar = K_LEFT; break;
796 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
797 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
798 case 'h': ca.cmdchar = 'l'; break;
799 case K_LEFT: ca.cmdchar = K_RIGHT; break;
800 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
801 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
802 case '>': ca.cmdchar = '<'; break;
803 case '<': ca.cmdchar = '>'; break;
804 }
805 idx = find_command(ca.cmdchar);
806 }
807#endif
808
809 /*
810 * Get an additional character if we need one.
811 */
812 if ((nv_cmds[idx].cmd_flags & NV_NCH)
813 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
814 && oap->op_type == OP_NOP)
815 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
816 || (ca.cmdchar == 'q'
817 && oap->op_type == OP_NOP
Bram Moolenaar0b6d9112018-05-22 20:35:17 +0200818 && reg_recording == 0
819 && reg_executing == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100821 && (oap->op_type != OP_NOP || VIsual_active))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 {
823 int *cp;
824 int repl = FALSE; /* get character for replace mode */
825 int lit = FALSE; /* get extra character literally */
826 int langmap_active = FALSE; /* using :lmap mappings */
827 int lang; /* getting a text character */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100828#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 int save_smd; /* saved value of p_smd */
830#endif
831
832 ++no_mapping;
833 ++allow_keys; /* no mapping for nchar, but allow key codes */
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +0000834 /* Don't generate a CursorHold event here, most commands can't handle
835 * it, e.g., nv_replace(), nv_csearch(). */
836 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 if (ca.cmdchar == 'g')
838 {
839 /*
840 * For 'g' get the next character now, so that we can check for
841 * "gr", "g'" and "g`".
842 */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000843 ca.nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 LANGMAP_ADJUST(ca.nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845#ifdef FEAT_CMDL_INFO
846 need_flushbuf |= add_to_showcmd(ca.nchar);
847#endif
848 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
Bram Moolenaarba2d44f2013-11-28 19:27:30 +0100849 || ca.nchar == Ctrl_BSL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 {
851 cp = &ca.extra_char; /* need to get a third character */
852 if (ca.nchar != 'r')
853 lit = TRUE; /* get it literally */
854 else
855 repl = TRUE; /* get it in replace mode */
856 }
857 else
858 cp = NULL; /* no third character needed */
859 }
860 else
861 {
862 if (ca.cmdchar == 'r') /* get it in replace mode */
863 repl = TRUE;
864 cp = &ca.nchar;
865 }
866 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
867
868 /*
869 * Get a second or third character.
870 */
871 if (cp != NULL)
872 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 if (repl)
874 {
875 State = REPLACE; /* pretend Replace mode */
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100876#ifdef CURSOR_SHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 ui_cursor_shape(); /* show different cursor shape */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878#endif
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100879 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
881 {
882 /* Allow mappings defined with ":lmap". */
883 --no_mapping;
884 --allow_keys;
885 if (repl)
886 State = LREPLACE;
887 else
888 State = LANGMAP;
889 langmap_active = TRUE;
890 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100891#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 save_smd = p_smd;
893 p_smd = FALSE; /* Don't let the IM code show the mode here */
894 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
895 im_set_active(TRUE);
896#endif
897
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000898 *cp = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899
900 if (langmap_active)
901 {
902 /* Undo the decrement done above */
903 ++no_mapping;
904 ++allow_keys;
905 State = NORMAL_BUSY;
906 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100907#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 if (lang)
909 {
910 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
911 im_save_status(&curbuf->b_p_iminsert);
912 im_set_active(FALSE);
913 }
914 p_smd = save_smd;
915#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 State = NORMAL_BUSY;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917#ifdef FEAT_CMDL_INFO
918 need_flushbuf |= add_to_showcmd(*cp);
919#endif
920
921 if (!lit)
922 {
923#ifdef FEAT_DIGRAPHS
924 /* Typing CTRL-K gets a digraph. */
925 if (*cp == Ctrl_K
926 && ((nv_cmds[idx].cmd_flags & NV_LANG)
927 || cp == &ca.extra_char)
928 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
929 {
930 c = get_digraph(FALSE);
931 if (c > 0)
932 {
933 *cp = c;
934# ifdef FEAT_CMDL_INFO
935 /* Guessing how to update showcmd here... */
936 del_from_showcmd(3);
937 need_flushbuf |= add_to_showcmd(*cp);
938# endif
939 }
940 }
941#endif
942
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 /* adjust chars > 127, except after "tTfFr" commands */
944 LANGMAP_ADJUST(*cp, !lang);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945#ifdef FEAT_RIGHTLEFT
946 /* adjust Hebrew mapped char */
947 if (p_hkmap && lang && KeyTyped)
948 *cp = hkmap(*cp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949#endif
950 }
951
952 /*
953 * When the next character is CTRL-\ a following CTRL-N means the
954 * command is aborted and we go to Normal mode.
955 */
956 if (cp == &ca.extra_char
957 && ca.nchar == Ctrl_BSL
958 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
959 {
960 ca.cmdchar = Ctrl_BSL;
961 ca.nchar = ca.extra_char;
962 idx = find_command(ca.cmdchar);
963 }
Bram Moolenaar12a753a2012-10-23 05:08:53 +0200964 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g')
Bram Moolenaarf00dc262012-10-21 03:54:33 +0200965 ca.oap->op_type = get_op_type(*cp, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 else if (*cp == Ctrl_BSL)
967 {
968 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
969
970 /* There is a busy wait here when typing "f<C-\>" and then
971 * something different from CTRL-N. Can't be avoided. */
972 while ((c = vpeekc()) <= 0 && towait > 0L)
973 {
974 do_sleep(towait > 50L ? 50L : towait);
975 towait -= 50L;
976 }
977 if (c > 0)
978 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000979 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 if (c != Ctrl_N && c != Ctrl_G)
981 vungetc(c);
982 else
983 {
984 ca.cmdchar = Ctrl_BSL;
985 ca.nchar = c;
986 idx = find_command(ca.cmdchar);
987 }
988 }
989 }
990
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 /* When getting a text character and the next character is a
992 * multi-byte character, it could be a composing character.
Bram Moolenaar4f880622014-07-23 12:31:20 +0200993 * However, don't wait for it to arrive. Also, do enable mapping,
994 * because if it's put back with vungetc() it's too late to apply
995 * mapping. */
996 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 while (enc_utf8 && lang && (c = vpeekc()) > 0
998 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
999 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001000 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 if (!utf_iscomposing(c))
1002 {
1003 vungetc(c); /* it wasn't, put it back */
1004 break;
1005 }
1006 else if (ca.ncharC1 == 0)
1007 ca.ncharC1 = c;
1008 else
1009 ca.ncharC2 = c;
1010 }
Bram Moolenaar4f880622014-07-23 12:31:20 +02001011 ++no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 }
1013 --no_mapping;
1014 --allow_keys;
1015 }
1016
1017#ifdef FEAT_CMDL_INFO
1018 /*
1019 * Flush the showcmd characters onto the screen so we can see them while
1020 * the command is being executed. Only do this when the shown command was
1021 * actually displayed, otherwise this will slow down a lot when executing
1022 * mappings.
1023 */
1024 if (need_flushbuf)
1025 out_flush();
1026#endif
Bram Moolenaard9205ca2008-10-02 20:55:54 +00001027 if (ca.cmdchar != K_IGNORE)
1028 did_cursorhold = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029
1030 State = NORMAL;
1031
1032 if (ca.nchar == ESC)
1033 {
1034 clearop(oap);
1035 if (restart_edit == 0 && goto_im())
1036 restart_edit = 'a';
1037 goto normal_end;
1038 }
1039
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001040 if (ca.cmdchar != K_IGNORE)
1041 {
1042 msg_didout = FALSE; /* don't scroll screen up for normal command */
1043 msg_col = 0;
1044 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 old_pos = curwin->w_cursor; /* remember where cursor was */
1047
1048 /* When 'keymodel' contains "startsel" some keys start Select/Visual
1049 * mode. */
1050 if (!VIsual_active && km_startsel)
1051 {
1052 if (nv_cmds[idx].cmd_flags & NV_SS)
1053 {
1054 start_selection();
1055 unshift_special(&ca);
1056 idx = find_command(ca.cmdchar);
1057 }
1058 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1059 && (mod_mask & MOD_MASK_SHIFT))
1060 {
1061 start_selection();
1062 mod_mask &= ~MOD_MASK_SHIFT;
1063 }
1064 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065
1066 /*
1067 * Execute the command!
1068 * Call the command function found in the commands table.
1069 */
1070 ca.arg = nv_cmds[idx].cmd_arg;
1071 (nv_cmds[idx].cmd_func)(&ca);
1072
1073 /*
1074 * If we didn't start or finish an operator, reset oap->regname, unless we
1075 * need it later.
1076 */
1077 if (!finish_op
1078 && !oap->op_type
1079 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1080 {
1081 clearop(oap);
1082#ifdef FEAT_EVAL
Bram Moolenaar536681b2011-05-10 16:12:45 +02001083 {
1084 int regname = 0;
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001085
Bram Moolenaar536681b2011-05-10 16:12:45 +02001086 /* Adjust the register according to 'clipboard', so that when
1087 * "unnamed" is present it becomes '*' or '+' instead of '"'. */
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001088# ifdef FEAT_CLIPBOARD
Bram Moolenaar536681b2011-05-10 16:12:45 +02001089 adjust_clip_reg(&regname);
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001090# endif
Bram Moolenaar536681b2011-05-10 16:12:45 +02001091 set_reg_var(regname);
1092 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093#endif
1094 }
1095
Bram Moolenaarc6039d82005-12-02 00:44:04 +00001096 /* Get the length of mapped chars again after typing a count, second
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001097 * character or "z333<cr>". */
1098 if (old_mapped_len > 0)
1099 old_mapped_len = typebuf_maplen();
1100
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 /*
1102 * If an operation is pending, handle it...
1103 */
1104 do_pending_operator(&ca, old_col, FALSE);
1105
1106 /*
1107 * Wait for a moment when a message is displayed that will be overwritten
1108 * by the mode message.
1109 * In Visual mode and with "^O" in Insert mode, a short message will be
1110 * overwritten by the mode message. Wait a bit, until a key is hit.
1111 * In Visual mode, it's more important to keep the Visual area updated
1112 * than keeping a message (e.g. from a /pat search).
1113 * Only do this if the command was typed, not from a mapping.
1114 * Don't wait when emsg_silent is non-zero.
1115 * Also wait a bit after an error message, e.g. for "^O:".
1116 * Don't redraw the screen, it would remove the message.
1117 */
1118 if ( ((p_smd
Bram Moolenaar09df3122006-01-23 22:23:09 +00001119 && msg_silent == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 && (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 || (VIsual_active
1122 && old_pos.lnum == curwin->w_cursor.lnum
1123 && old_pos.col == curwin->w_cursor.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 )
1125 && (clear_cmdline
1126 || redraw_cmdline)
1127 && (msg_didout || (msg_didany && msg_scroll))
1128 && !msg_nowait
1129 && KeyTyped)
1130 || (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 && (msg_scroll
1133 || emsg_on_display)))
1134 && oap->regname == 0
1135 && !(ca.retval & CA_COMMAND_BUSY)
1136 && stuff_empty()
1137 && typebuf_typed()
1138 && emsg_silent == 0
1139 && !did_wait_return
1140 && oap->op_type == OP_NOP)
1141 {
1142 int save_State = State;
1143
1144 /* Draw the cursor with the right shape here */
1145 if (restart_edit != 0)
1146 State = INSERT;
1147
1148 /* If need to redraw, and there is a "keep_msg", redraw before the
1149 * delay */
1150 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1151 {
1152 char_u *kmsg;
1153
1154 kmsg = keep_msg;
1155 keep_msg = NULL;
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001156 // showmode() will clear keep_msg, but we want to use it anyway
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 update_screen(0);
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001158 // now reset it, otherwise it's put in the history again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 keep_msg = kmsg;
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001160
1161 kmsg = vim_strsave(keep_msg);
1162 if (kmsg != NULL)
1163 {
1164 msg_attr((char *)kmsg, keep_msg_attr);
1165 vim_free(kmsg);
1166 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167 }
1168 setcursor();
1169 cursor_on();
1170 out_flush();
1171 if (msg_scroll || emsg_on_display)
Bram Moolenaareda1da02019-11-17 17:06:33 +01001172 ui_delay(1003L, TRUE); /* wait at least one second */
1173 ui_delay(3003L, FALSE); /* wait up to three seconds */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 State = save_State;
1175
1176 msg_scroll = FALSE;
1177 emsg_on_display = FALSE;
1178 }
1179
1180 /*
1181 * Finish up after executing a Normal mode command.
1182 */
1183normal_end:
1184
1185 msg_nowait = FALSE;
1186
1187 /* Reset finish_op, in case it was set */
1188#ifdef CURSOR_SHAPE
1189 c = finish_op;
1190#endif
1191 finish_op = FALSE;
1192#ifdef CURSOR_SHAPE
1193 /* Redraw the cursor with another shape, if we were in Operator-pending
1194 * mode or did a replace command. */
1195 if (c || ca.cmdchar == 'r')
1196 {
1197 ui_cursor_shape(); /* may show different cursor shape */
1198# ifdef FEAT_MOUSESHAPE
1199 update_mouseshape(-1);
1200# endif
1201 }
1202#endif
1203
1204#ifdef FEAT_CMDL_INFO
Bram Moolenaara983fe92008-07-31 20:04:27 +00001205 if (oap->op_type == OP_NOP && oap->regname == 0
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001206 && ca.cmdchar != K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 clear_showcmd();
1208#endif
1209
1210 checkpcmark(); /* check if we moved since setting pcmark */
1211 vim_free(ca.searchbuf);
1212
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 if (has_mbyte)
1214 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 if (curwin->w_p_scb && toplevel)
1217 {
1218 validate_cursor(); /* may need to update w_leftcol */
1219 do_check_scrollbind(TRUE);
1220 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221
Bram Moolenaar860cae12010-06-05 23:22:07 +02001222 if (curwin->w_p_crb && toplevel)
1223 {
1224 validate_cursor(); /* may need to update w_leftcol */
1225 do_check_cursorbind();
1226 }
Bram Moolenaar860cae12010-06-05 23:22:07 +02001227
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001228#ifdef FEAT_TERMINAL
Bram Moolenaareef9add2017-09-16 15:38:04 +02001229 /* don't go to Insert mode if a terminal has a running job */
1230 if (term_job_running(curbuf->b_term))
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001231 restart_edit = 0;
1232#endif
1233
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 /*
1235 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1236 * if still inside a mapping that started in Visual mode).
1237 * May switch from Visual to Select mode after CTRL-O command.
1238 */
1239 if ( oap->op_type == OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1241 || restart_VIsual_select == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 && !(ca.retval & CA_COMMAND_BUSY)
1243 && stuff_empty()
1244 && oap->regname == 0)
1245 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246 if (restart_VIsual_select == 1)
1247 {
1248 VIsual_select = TRUE;
1249 showmode();
1250 restart_VIsual_select = 0;
1251 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001252 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 (void)edit(restart_edit, FALSE, 1L);
1254 }
1255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 if (restart_VIsual_select == 2)
1257 restart_VIsual_select = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258
1259 /* Save count before an operator for next time. */
1260 opcount = ca.opcount;
1261}
1262
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001263#ifdef FEAT_EVAL
1264/*
1265 * Set v:count and v:count1 according to "cap".
1266 * Set v:prevcount only when "set_prevcount" is TRUE.
1267 */
1268 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001269set_vcount_ca(cmdarg_T *cap, int *set_prevcount)
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001270{
1271 long count = cap->count0;
1272
1273 /* multiply with cap->opcount the same way as above */
1274 if (cap->opcount != 0)
1275 count = cap->opcount * (count == 0 ? 1 : count);
1276 set_vcount(count, count == 0 ? 1 : count, *set_prevcount);
1277 *set_prevcount = FALSE; /* only set v:prevcount once */
1278}
1279#endif
1280
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 * Check if highlighting for visual mode is possible, give a warning message
1283 * if not.
1284 */
1285 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001286check_visual_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287{
1288 static int did_check = FALSE;
1289
1290 if (full_screen)
1291 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001292 if (!did_check && HL_ATTR(HLF_V) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001293 msg(_("Warning: terminal cannot highlight"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 did_check = TRUE;
1295 }
1296}
1297
1298/*
Bram Moolenaar66fa2712006-01-22 23:22:22 +00001299 * End Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 * This function should ALWAYS be called to end Visual mode, except from
1301 * do_pending_operator().
1302 */
1303 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001304end_visual_mode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305{
1306#ifdef FEAT_CLIPBOARD
1307 /*
1308 * If we are using the clipboard, then remember what was selected in case
1309 * we need to paste it somewhere while we still own the selection.
1310 * Only do this when the clipboard is already owned. Don't want to grab
1311 * the selection when hitting ESC.
1312 */
1313 if (clip_star.available && clip_star.owned)
1314 clip_auto_select();
1315#endif
1316
1317 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 setmouse();
1319 mouse_dragging = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320
1321 /* Save the current VIsual area for '< and '> marks, and "gv" */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001322 curbuf->b_visual.vi_mode = VIsual_mode;
1323 curbuf->b_visual.vi_start = VIsual;
1324 curbuf->b_visual.vi_end = curwin->w_cursor;
1325 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326#ifdef FEAT_EVAL
1327 curbuf->b_visual_mode_eval = VIsual_mode;
1328#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 if (!virtual_active())
1330 curwin->w_cursor.coladd = 0;
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001331 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001333 adjust_cursor_eol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334}
1335
1336/*
1337 * Reset VIsual_active and VIsual_reselect.
1338 */
1339 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001340reset_VIsual_and_resel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341{
1342 if (VIsual_active)
1343 {
1344 end_visual_mode();
1345 redraw_curbuf_later(INVERTED); /* delete the inversion later */
1346 }
1347 VIsual_reselect = FALSE;
1348}
1349
1350/*
1351 * Reset VIsual_active and VIsual_reselect if it's set.
1352 */
1353 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001354reset_VIsual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355{
1356 if (VIsual_active)
1357 {
1358 end_visual_mode();
1359 redraw_curbuf_later(INVERTED); /* delete the inversion later */
1360 VIsual_reselect = FALSE;
1361 }
1362}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001364 void
1365restore_visual_mode(void)
1366{
1367 if (VIsual_mode_orig != NUL)
1368 {
1369 curbuf->b_visual.vi_mode = VIsual_mode_orig;
1370 VIsual_mode_orig = NUL;
1371 }
1372}
1373
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374/*
1375 * Check for a balloon-eval special item to include when searching for an
1376 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
1377 * Returns TRUE if the character at "*ptr" should be included.
1378 * "dir" is FORWARD or BACKWARD, the direction of searching.
1379 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
1380 * "bnp" points to a counter for square brackets.
1381 */
1382 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001383find_is_eval_item(
1384 char_u *ptr,
1385 int *colp,
1386 int *bnp,
1387 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388{
1389 /* Accept everything inside []. */
1390 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
1391 ++*bnp;
1392 if (*bnp > 0)
1393 {
1394 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
1395 --*bnp;
1396 return TRUE;
1397 }
1398
1399 /* skip over "s.var" */
1400 if (*ptr == '.')
1401 return TRUE;
1402
1403 /* two-character item: s->var */
1404 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
1405 && ptr[dir == BACKWARD ? -1 : 0] == '-')
1406 {
1407 *colp += dir;
1408 return TRUE;
1409 }
1410 return FALSE;
1411}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412
1413/*
1414 * Find the identifier under or to the right of the cursor.
1415 * "find_type" can have one of three values:
1416 * FIND_IDENT: find an identifier (keyword)
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001417 * FIND_STRING: find any non-white text
1418 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001419 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 *
1421 * There are three steps:
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001422 * 1. Search forward for the start of an identifier/text. Doesn't move if
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 * already on one.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001424 * 2. Search backward for the start of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 * This doesn't match the real Vi but I like it a little better and it
1426 * shouldn't bother anyone.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001427 * 3. Search forward to the end of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 * When FIND_IDENT isn't defined, we backup until a blank.
1429 *
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001430 * Returns the length of the text, or zero if no text is found.
1431 * If text is found, a pointer to the text is put in "*text". This
1432 * points into the current buffer line and is not always NUL terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 */
1434 int
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001435find_ident_under_cursor(char_u **text, int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436{
1437 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001438 curwin->w_cursor.col, text, NULL, find_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439}
1440
1441/*
1442 * Like find_ident_under_cursor(), but for any window and any position.
1443 * However: Uses 'iskeyword' from the current window!.
1444 */
1445 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001446find_ident_at_pos(
1447 win_T *wp,
1448 linenr_T lnum,
1449 colnr_T startcol,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001450 char_u **text,
1451 int *textcol, // column where "text" starts, can be NULL
Bram Moolenaar9b578142016-01-30 19:39:49 +01001452 int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453{
1454 char_u *ptr;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001455 int col = 0; // init to shut up GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 int this_class = 0;
1458 int prev_class;
1459 int prevcol;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001460 int bn = 0; // bracket nesting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461
1462 /*
1463 * if i == 0: try to find an identifier
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001464 * if i == 1: try to find any non-white text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 */
1466 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
1467 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
1468 {
1469 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001470 * 1. skip to start of identifier/text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471 */
1472 col = startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 if (has_mbyte)
1474 {
1475 while (ptr[col] != NUL)
1476 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001477 // Stop at a ']' to evaluate "a[x]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1479 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 this_class = mb_get_class(ptr + col);
1481 if (this_class != 0 && (i == 1 || this_class != 1))
1482 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001483 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 }
1485 }
1486 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487 while (ptr[col] != NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01001488 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 )
1491 ++col;
1492
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001493 // When starting on a ']' count it, so that we include the '['.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 bn = ptr[col] == ']';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495
1496 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001497 * 2. Back up to start of identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 if (has_mbyte)
1500 {
1501 /* Remember class of character under cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1503 this_class = mb_get_class((char_u *)"a");
1504 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 this_class = mb_get_class(ptr + col);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001506 while (col > 0 && this_class != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 {
1508 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
1509 prev_class = mb_get_class(ptr + prevcol);
1510 if (this_class != prev_class
1511 && (i == 0
1512 || prev_class == 0
1513 || (find_type & FIND_IDENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 && (!(find_type & FIND_EVAL)
1515 || prevcol == 0
1516 || !find_is_eval_item(ptr + prevcol, &prevcol,
1517 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 )
1519 break;
1520 col = prevcol;
1521 }
1522
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001523 // If we don't want just any old text, or we've found an
1524 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 if (this_class > 2)
1526 this_class = 2;
1527 if (!(find_type & FIND_STRING) || this_class == 2)
1528 break;
1529 }
1530 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 {
1532 while (col > 0
1533 && ((i == 0
1534 ? vim_iswordc(ptr[col - 1])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001535 : (!VIM_ISWHITE(ptr[col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 && (!(find_type & FIND_IDENT)
1537 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 || ((find_type & FIND_EVAL)
1539 && col > 1
1540 && find_is_eval_item(ptr + col - 1, &col,
1541 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 ))
1543 --col;
1544
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001545 // If we don't want just any old text, or we've found an
1546 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
1548 break;
1549 }
1550 }
1551
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001552 if (ptr[col] == NUL || (i == 0
1553 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001555 // didn't find an identifier or text
Bram Moolenaar17627312019-06-02 19:53:44 +02001556 if ((find_type & FIND_NOERROR) == 0)
1557 {
1558 if (find_type & FIND_STRING)
1559 emsg(_("E348: No string under cursor"));
1560 else
1561 emsg(_(e_noident));
1562 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 return 0;
1564 }
1565 ptr += col;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001566 *text = ptr;
1567 if (textcol != NULL)
1568 *textcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569
1570 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001571 * 3. Find the end if the identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 bn = 0;
1574 startcol -= col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 if (has_mbyte)
1577 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001578 // Search for point of changing multibyte character class.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 this_class = mb_get_class(ptr);
1580 while (ptr[col] != NUL
1581 && ((i == 0 ? mb_get_class(ptr + col) == this_class
1582 : mb_get_class(ptr + col) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 || ((find_type & FIND_EVAL)
1584 && col <= (int)startcol
1585 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 ))
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001587 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 }
1589 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 while ((i == 0 ? vim_iswordc(ptr[col])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001591 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 || ((find_type & FIND_EVAL)
1593 && col <= (int)startcol
1594 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 ++col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597
1598 return col;
1599}
1600
1601/*
1602 * Prepare for redo of a normal command.
1603 */
1604 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001605prep_redo_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606{
1607 prep_redo(cap->oap->regname, cap->count0,
1608 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
1609}
1610
1611/*
1612 * Prepare for redo of any command.
1613 * Note that only the last argument can be a multi-byte char.
1614 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001615 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001616prep_redo(
1617 int regname,
1618 long num,
1619 int cmd1,
1620 int cmd2,
1621 int cmd3,
1622 int cmd4,
1623 int cmd5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624{
1625 ResetRedobuff();
1626 if (regname != 0) /* yank from specified buffer */
1627 {
1628 AppendCharToRedobuff('"');
1629 AppendCharToRedobuff(regname);
1630 }
1631 if (num)
1632 AppendNumberToRedobuff(num);
1633
1634 if (cmd1 != NUL)
1635 AppendCharToRedobuff(cmd1);
1636 if (cmd2 != NUL)
1637 AppendCharToRedobuff(cmd2);
1638 if (cmd3 != NUL)
1639 AppendCharToRedobuff(cmd3);
1640 if (cmd4 != NUL)
1641 AppendCharToRedobuff(cmd4);
1642 if (cmd5 != NUL)
1643 AppendCharToRedobuff(cmd5);
1644}
1645
1646/*
1647 * check for operator active and clear it
1648 *
1649 * return TRUE if operator was active
1650 */
1651 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001652checkclearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653{
1654 if (oap->op_type == OP_NOP)
1655 return FALSE;
1656 clearopbeep(oap);
1657 return TRUE;
1658}
1659
1660/*
Bram Moolenaarc980de32007-05-06 11:59:04 +00001661 * Check for operator or Visual active. Clear active operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 *
Bram Moolenaarc980de32007-05-06 11:59:04 +00001663 * Return TRUE if operator or Visual was active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 */
1665 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001666checkclearopq(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001668 if (oap->op_type == OP_NOP && !VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 return FALSE;
1670 clearopbeep(oap);
1671 return TRUE;
1672}
1673
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001674 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001675clearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676{
1677 oap->op_type = OP_NOP;
1678 oap->regname = 0;
1679 oap->motion_force = NUL;
1680 oap->use_reg_one = FALSE;
1681}
1682
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001683 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001684clearopbeep(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685{
1686 clearop(oap);
1687 beep_flush();
1688}
1689
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690/*
1691 * Remove the shift modifier from a special key.
1692 */
1693 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001694unshift_special(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695{
1696 switch (cap->cmdchar)
1697 {
1698 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
1699 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
1700 case K_S_UP: cap->cmdchar = K_UP; break;
1701 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
1702 case K_S_HOME: cap->cmdchar = K_HOME; break;
1703 case K_S_END: cap->cmdchar = K_END; break;
1704 }
1705 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
1706}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001708/*
1709 * If the mode is currently displayed clear the command line or update the
1710 * command displayed.
1711 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001712 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001713may_clear_cmdline(void)
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001714{
1715 if (mode_displayed)
1716 clear_cmdline = TRUE; /* unshow visual mode later */
1717#ifdef FEAT_CMDL_INFO
1718 else
1719 clear_showcmd();
1720#endif
1721}
1722
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723#if defined(FEAT_CMDL_INFO) || defined(PROTO)
1724/*
1725 * Routines for displaying a partly typed command
1726 */
1727
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001728#define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729static char_u showcmd_buf[SHOWCMD_BUFLEN];
1730static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; /* For push_showcmd() */
1731static int showcmd_is_clear = TRUE;
1732static int showcmd_visual = FALSE;
1733
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001734static void display_showcmd(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735
1736 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001737clear_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738{
1739 if (!p_sc)
1740 return;
1741
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 if (VIsual_active && !char_avail())
1743 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001744 int cursor_bot = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 long lines;
1746 colnr_T leftcol, rightcol;
1747 linenr_T top, bot;
1748
1749 /* Show the size of the Visual area. */
Bram Moolenaar81d00072009-04-29 15:41:40 +00001750 if (cursor_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 {
1752 top = VIsual.lnum;
1753 bot = curwin->w_cursor.lnum;
1754 }
1755 else
1756 {
1757 top = curwin->w_cursor.lnum;
1758 bot = VIsual.lnum;
1759 }
1760# ifdef FEAT_FOLDING
1761 /* Include closed folds as a whole. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02001762 (void)hasFolding(top, &top, NULL);
1763 (void)hasFolding(bot, NULL, &bot);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764# endif
1765 lines = bot - top + 1;
1766
1767 if (VIsual_mode == Ctrl_V)
1768 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001769# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001770 char_u *saved_sbr = p_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001771 char_u *saved_w_sbr = curwin->w_p_sbr;
Bram Moolenaar81d00072009-04-29 15:41:40 +00001772
1773 /* Make 'sbr' empty for a moment to get the correct size. */
1774 p_sbr = empty_option;
Bram Moolenaaree857022019-11-09 23:26:40 +01001775 curwin->w_p_sbr = empty_option;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001776# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001778# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001779 p_sbr = saved_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001780 curwin->w_p_sbr = saved_w_sbr;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001781# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
1783 (long)(rightcol - leftcol + 1));
1784 }
1785 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
1786 sprintf((char *)showcmd_buf, "%ld", lines);
1787 else
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001788 {
1789 char_u *s, *e;
1790 int l;
1791 int bytes = 0;
1792 int chars = 0;
1793
1794 if (cursor_bot)
1795 {
1796 s = ml_get_pos(&VIsual);
1797 e = ml_get_cursor();
1798 }
1799 else
1800 {
1801 s = ml_get_cursor();
1802 e = ml_get_pos(&VIsual);
1803 }
1804 while ((*p_sel != 'e') ? s <= e : s < e)
1805 {
1806 l = (*mb_ptr2len)(s);
1807 if (l == 0)
1808 {
1809 ++bytes;
1810 ++chars;
1811 break; /* end of line */
1812 }
1813 bytes += l;
1814 ++chars;
1815 s += l;
1816 }
1817 if (bytes == chars)
1818 sprintf((char *)showcmd_buf, "%d", chars);
1819 else
1820 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes);
1821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 showcmd_buf[SHOWCMD_COLS] = NUL; /* truncate */
1823 showcmd_visual = TRUE;
1824 }
1825 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 {
1827 showcmd_buf[0] = NUL;
1828 showcmd_visual = FALSE;
1829
1830 /* Don't actually display something if there is nothing to clear. */
1831 if (showcmd_is_clear)
1832 return;
1833 }
1834
1835 display_showcmd();
1836}
1837
1838/*
1839 * Add 'c' to string of shown command chars.
1840 * Return TRUE if output has been written (and setcursor() has been called).
1841 */
1842 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001843add_to_showcmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844{
1845 char_u *p;
1846 int old_len;
1847 int extra_len;
1848 int overflow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 int i;
1850 static int ignore[] =
1851 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001852#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
1854 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001855#endif
Bram Moolenaarec2da362017-01-21 20:04:22 +01001856 K_IGNORE, K_PS,
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001857 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
1859 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001860 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001862 K_CURSORHOLD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 0
1864 };
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865
Bram Moolenaar09df3122006-01-23 22:23:09 +00001866 if (!p_sc || msg_silent != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 return FALSE;
1868
1869 if (showcmd_visual)
1870 {
1871 showcmd_buf[0] = NUL;
1872 showcmd_visual = FALSE;
1873 }
1874
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 /* Ignore keys that are scrollbar updates and mouse clicks */
1876 if (IS_SPECIAL(c))
1877 for (i = 0; ignore[i] != 0; ++i)
1878 if (ignore[i] == c)
1879 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880
1881 p = transchar(c);
Bram Moolenaar7ba07412013-12-11 14:55:01 +01001882 if (*p == ' ')
1883 STRCPY(p, "<20>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 old_len = (int)STRLEN(showcmd_buf);
1885 extra_len = (int)STRLEN(p);
1886 overflow = old_len + extra_len - SHOWCMD_COLS;
1887 if (overflow > 0)
Bram Moolenaarb0db5692007-08-14 20:54:49 +00001888 mch_memmove(showcmd_buf, showcmd_buf + overflow,
1889 old_len - overflow + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 STRCAT(showcmd_buf, p);
1891
1892 if (char_avail())
1893 return FALSE;
1894
1895 display_showcmd();
1896
1897 return TRUE;
1898}
1899
1900 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001901add_to_showcmd_c(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902{
1903 if (!add_to_showcmd(c))
1904 setcursor();
1905}
1906
1907/*
1908 * Delete 'len' characters from the end of the shown command.
1909 */
1910 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001911del_from_showcmd(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912{
1913 int old_len;
1914
1915 if (!p_sc)
1916 return;
1917
1918 old_len = (int)STRLEN(showcmd_buf);
1919 if (len > old_len)
1920 len = old_len;
1921 showcmd_buf[old_len - len] = NUL;
1922
1923 if (!char_avail())
1924 display_showcmd();
1925}
1926
1927/*
1928 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
1929 * something and there is a partial mapping.
1930 */
1931 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001932push_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933{
1934 if (p_sc)
1935 STRCPY(old_showcmd_buf, showcmd_buf);
1936}
1937
1938 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001939pop_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940{
1941 if (!p_sc)
1942 return;
1943
1944 STRCPY(showcmd_buf, old_showcmd_buf);
1945
1946 display_showcmd();
1947}
1948
1949 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001950display_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951{
1952 int len;
1953
1954 cursor_off();
1955
1956 len = (int)STRLEN(showcmd_buf);
1957 if (len == 0)
1958 showcmd_is_clear = TRUE;
1959 else
1960 {
1961 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
1962 showcmd_is_clear = FALSE;
1963 }
1964
1965 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00001966 * clear the rest of an old message by outputting up to SHOWCMD_COLS
1967 * spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 */
1969 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
1970
1971 setcursor(); /* put cursor back where it belongs */
1972}
1973#endif
1974
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975/*
1976 * When "check" is FALSE, prepare for commands that scroll the window.
1977 * When "check" is TRUE, take care of scroll-binding after the window has
1978 * scrolled. Called from normal_cmd() and edit().
1979 */
1980 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001981do_check_scrollbind(int check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982{
1983 static win_T *old_curwin = NULL;
1984 static linenr_T old_topline = 0;
1985#ifdef FEAT_DIFF
1986 static int old_topfill = 0;
1987#endif
1988 static buf_T *old_buf = NULL;
1989 static colnr_T old_leftcol = 0;
1990
1991 if (check && curwin->w_p_scb)
1992 {
1993 /* If a ":syncbind" command was just used, don't scroll, only reset
1994 * the values. */
1995 if (did_syncbind)
1996 did_syncbind = FALSE;
1997 else if (curwin == old_curwin)
1998 {
1999 /*
2000 * Synchronize other windows, as necessary according to
2001 * 'scrollbind'. Don't do this after an ":edit" command, except
2002 * when 'diff' is set.
2003 */
2004 if ((curwin->w_buffer == old_buf
2005#ifdef FEAT_DIFF
2006 || curwin->w_p_diff
2007#endif
2008 )
2009 && (curwin->w_topline != old_topline
2010#ifdef FEAT_DIFF
2011 || curwin->w_topfill != old_topfill
2012#endif
2013 || curwin->w_leftcol != old_leftcol))
2014 {
2015 check_scrollbind(curwin->w_topline - old_topline,
2016 (long)(curwin->w_leftcol - old_leftcol));
2017 }
2018 }
2019 else if (vim_strchr(p_sbo, 'j')) /* jump flag set in 'scrollopt' */
2020 {
2021 /*
2022 * When switching between windows, make sure that the relative
2023 * vertical offset is valid for the new window. The relative
2024 * offset is invalid whenever another 'scrollbind' window has
2025 * scrolled to a point that would force the current window to
2026 * scroll past the beginning or end of its buffer. When the
2027 * resync is performed, some of the other 'scrollbind' windows may
2028 * need to jump so that the current window's relative position is
2029 * visible on-screen.
2030 */
2031 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
2032 }
2033 curwin->w_scbind_pos = curwin->w_topline;
2034 }
2035
2036 old_curwin = curwin;
2037 old_topline = curwin->w_topline;
2038#ifdef FEAT_DIFF
2039 old_topfill = curwin->w_topfill;
2040#endif
2041 old_buf = curwin->w_buffer;
2042 old_leftcol = curwin->w_leftcol;
2043}
2044
2045/*
2046 * Synchronize any windows that have "scrollbind" set, based on the
2047 * number of rows by which the current window has changed
2048 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
2049 */
2050 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002051check_scrollbind(linenr_T topline_diff, long leftcol_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052{
2053 int want_ver;
2054 int want_hor;
2055 win_T *old_curwin = curwin;
2056 buf_T *old_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 int old_VIsual_select = VIsual_select;
2058 int old_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 colnr_T tgt_leftcol = curwin->w_leftcol;
2060 long topline;
2061 long y;
2062
2063 /*
2064 * check 'scrollopt' string for vertical and horizontal scroll options
2065 */
2066 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
2067#ifdef FEAT_DIFF
2068 want_ver |= old_curwin->w_p_diff;
2069#endif
2070 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
2071
2072 /*
2073 * loop through the scrollbound windows and scroll accordingly
2074 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002076 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 {
2078 curbuf = curwin->w_buffer;
2079 /* skip original window and windows with 'noscrollbind' */
2080 if (curwin != old_curwin && curwin->w_p_scb)
2081 {
2082 /*
2083 * do the vertical scroll
2084 */
2085 if (want_ver)
2086 {
2087#ifdef FEAT_DIFF
2088 if (old_curwin->w_p_diff && curwin->w_p_diff)
2089 {
2090 diff_set_topline(old_curwin, curwin);
2091 }
2092 else
2093#endif
2094 {
2095 curwin->w_scbind_pos += topline_diff;
2096 topline = curwin->w_scbind_pos;
2097 if (topline > curbuf->b_ml.ml_line_count)
2098 topline = curbuf->b_ml.ml_line_count;
2099 if (topline < 1)
2100 topline = 1;
2101
2102 y = topline - curwin->w_topline;
2103 if (y > 0)
2104 scrollup(y, FALSE);
2105 else
2106 scrolldown(-y, FALSE);
2107 }
2108
2109 redraw_later(VALID);
2110 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 }
2113
2114 /*
2115 * do the horizontal scroll
2116 */
2117 if (want_hor && curwin->w_leftcol != tgt_leftcol)
2118 {
2119 curwin->w_leftcol = tgt_leftcol;
2120 leftcol_changed();
2121 }
2122 }
2123 }
2124
2125 /*
2126 * reset current-window
2127 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 VIsual_select = old_VIsual_select;
2129 VIsual_active = old_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 curwin = old_curwin;
2131 curbuf = old_curbuf;
2132}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133
2134/*
2135 * Command character that's ignored.
2136 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02002137 * xon/xoff.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002140nv_ignore(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141{
Bram Moolenaarfc735152005-03-22 22:54:12 +00002142 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143}
2144
2145/*
Bram Moolenaarebefac62005-12-28 22:39:57 +00002146 * Command character that doesn't do anything, but unlike nv_ignore() does
2147 * start edit(). Used for "startinsert" executed while starting up.
2148 */
Bram Moolenaarebefac62005-12-28 22:39:57 +00002149 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002150nv_nop(cmdarg_T *cap UNUSED)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002151{
2152}
2153
2154/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 * Command character doesn't exist.
2156 */
2157 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002158nv_error(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159{
2160 clearopbeep(cap->oap);
2161}
2162
2163/*
2164 * <Help> and <F1> commands.
2165 */
2166 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002167nv_help(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168{
2169 if (!checkclearopq(cap->oap))
2170 ex_help(NULL);
2171}
2172
2173/*
2174 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
2175 */
2176 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002177nv_addsub(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178{
Bram Moolenaarf2732452018-06-03 14:47:35 +02002179#ifdef FEAT_JOB_CHANNEL
2180 if (bt_prompt(curbuf) && !prompt_curpos_editable())
2181 clearopbeep(cap->oap);
2182 else
2183#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01002184 if (!VIsual_active && cap->oap->op_type == OP_NOP)
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002185 {
Bram Moolenaaref2b5032016-01-12 22:20:58 +01002186 prep_redo_cmd(cap);
Bram Moolenaard79e5502016-01-10 22:13:02 +01002187 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB;
2188 op_addsub(cap->oap, cap->count1, cap->arg);
2189 cap->oap->op_type = OP_NOP;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002190 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01002191 else if (VIsual_active)
2192 nv_operator(cap);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02002193 else
Bram Moolenaard79e5502016-01-10 22:13:02 +01002194 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195}
2196
2197/*
2198 * CTRL-F, CTRL-B, etc: Scroll page up or down.
2199 */
2200 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002201nv_page(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202{
2203 if (!checkclearop(cap->oap))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002204 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002205 if (mod_mask & MOD_MASK_CTRL)
2206 {
2207 /* <C-PageUp>: tab page back; <C-PageDown>: tab page forward */
2208 if (cap->arg == BACKWARD)
2209 goto_tabpage(-(int)cap->count1);
2210 else
2211 goto_tabpage((int)cap->count0);
2212 }
2213 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02002214 (void)onepage(cap->arg, cap->count1);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002215 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216}
2217
2218/*
2219 * Implementation of "gd" and "gD" command.
2220 */
2221 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002222nv_gd(
2223 oparg_T *oap,
2224 int nchar,
2225 int thisblock) /* 1 for "1gd" and "1gD" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226{
2227 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 char_u *ptr;
2229
Bram Moolenaard9d30582005-05-18 22:10:28 +00002230 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
Bram Moolenaar1538fc32016-04-16 09:13:34 +02002231 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)
2232 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 clearopbeep(oap);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002234#ifdef FEAT_FOLDING
2235 else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
2236 foldOpenCursor();
2237#endif
2238}
2239
2240/*
Bram Moolenaar226630a2016-10-08 19:21:31 +02002241 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE
2242 * otherwise.
2243 */
2244 static int
2245is_ident(char_u *line, int offset)
2246{
2247 int i;
2248 int incomment = FALSE;
2249 int instring = 0;
2250 int prev = 0;
2251
2252 for (i = 0; i < offset && line[i] != NUL; i++)
2253 {
2254 if (instring != 0)
2255 {
2256 if (prev != '\\' && line[i] == instring)
2257 instring = 0;
2258 }
2259 else if ((line[i] == '"' || line[i] == '\'') && !incomment)
2260 {
2261 instring = line[i];
2262 }
2263 else
2264 {
2265 if (incomment)
2266 {
2267 if (prev == '*' && line[i] == '/')
2268 incomment = FALSE;
2269 }
2270 else if (prev == '/' && line[i] == '*')
2271 {
2272 incomment = TRUE;
2273 }
2274 else if (prev == '/' && line[i] == '/')
2275 {
2276 return FALSE;
2277 }
2278 }
2279
2280 prev = line[i];
2281 }
2282
2283 return incomment == FALSE && instring == 0;
2284}
2285
2286/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002287 * Search for variable declaration of "ptr[len]".
2288 * When "locally" is TRUE in the current function ("gd"), otherwise in the
2289 * current file ("gD").
2290 * When "thisblock" is TRUE check the {} block scope.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002291 * Return FAIL when not found.
2292 */
2293 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002294find_decl(
2295 char_u *ptr,
2296 int len,
2297 int locally,
2298 int thisblock,
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002299 int flags_arg) /* flags passed to searchit() */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002300{
2301 char_u *pat;
2302 pos_T old_pos;
2303 pos_T par_pos;
2304 pos_T found_pos;
2305 int t;
2306 int save_p_ws;
2307 int save_p_scs;
2308 int retval = OK;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002309 int incll;
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002310 int searchflags = flags_arg;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002311 int valid;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002312
2313 if ((pat = alloc(len + 7)) == NULL)
2314 return FAIL;
Bram Moolenaard9d30582005-05-18 22:10:28 +00002315
2316 /* Put "\V" before the pattern to avoid that the special meaning of "."
2317 * and "~" causes trouble. */
2318 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
2319 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 old_pos = curwin->w_cursor;
2321 save_p_ws = p_ws;
2322 save_p_scs = p_scs;
2323 p_ws = FALSE; /* don't wrap around end of file now */
2324 p_scs = FALSE; /* don't switch ignorecase off now */
2325
2326 /*
2327 * With "gD" go to line 1.
2328 * With "gd" Search back for the start of the current function, then go
2329 * back until a blank line. If this fails go to line 1.
2330 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002331 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 {
2333 setpcmark(); /* Set in findpar() otherwise */
2334 curwin->w_cursor.lnum = 1;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002335 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 }
2337 else
2338 {
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002339 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
2341 --curwin->w_cursor.lnum;
2342 }
2343 curwin->w_cursor.col = 0;
2344
2345 /* Search forward for the identifier, ignore comment lines. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002346 CLEAR_POS(&found_pos);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002347 for (;;)
2348 {
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002349 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02002350 pat, 1L, searchflags, RE_LAST, NULL);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002351 if (curwin->w_cursor.lnum >= old_pos.lnum)
2352 t = FAIL; /* match after start is failure too */
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002353
Bram Moolenaar0fd92892006-03-09 22:27:48 +00002354 if (thisblock && t != FAIL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002355 {
2356 pos_T *pos;
2357
2358 /* Check that the block the match is in doesn't end before the
2359 * position where we started the search from. */
2360 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
2361 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
2362 && pos->lnum < old_pos.lnum)
Bram Moolenaar60402d62017-04-20 18:54:50 +02002363 {
2364 /* There can't be a useful match before the end of this block.
2365 * Skip to the end. */
2366 curwin->w_cursor = *pos;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002367 continue;
Bram Moolenaar60402d62017-04-20 18:54:50 +02002368 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002369 }
2370
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002371 if (t == FAIL)
2372 {
2373 /* If we previously found a valid position, use it. */
2374 if (found_pos.lnum != 0)
2375 {
2376 curwin->w_cursor = found_pos;
2377 t = OK;
2378 }
2379 break;
2380 }
Bram Moolenaar81340392012-06-06 16:12:59 +02002381 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002382 {
2383 /* Ignore this line, continue at start of next line. */
2384 ++curwin->w_cursor.lnum;
2385 curwin->w_cursor.col = 0;
2386 continue;
2387 }
Bram Moolenaar226630a2016-10-08 19:21:31 +02002388 valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
2389
2390 /* If the current position is not a valid identifier and a previous
2391 * match is present, favor that one instead. */
2392 if (!valid && found_pos.lnum != 0)
2393 {
2394 curwin->w_cursor = found_pos;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002395 break;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002396 }
2397
2398 /* Global search: use first valid match found */
2399 if (valid && !locally)
2400 break;
2401 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002402 {
2403 /* If we previously found a valid position, use it. */
2404 if (found_pos.lnum != 0)
2405 curwin->w_cursor = found_pos;
2406 break;
2407 }
2408
Bram Moolenaar226630a2016-10-08 19:21:31 +02002409 /* For finding a local variable and the match is before the "{" or
2410 * inside a comment, continue searching. For K&R style function
2411 * declarations this skips the function header without types. */
2412 if (!valid)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002413 CLEAR_POS(&found_pos);
Bram Moolenaar226630a2016-10-08 19:21:31 +02002414 else
Bram Moolenaar226630a2016-10-08 19:21:31 +02002415 found_pos = curwin->w_cursor;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002416 /* Remove SEARCH_START from flags to avoid getting stuck at one
2417 * position. */
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002418 searchflags &= ~SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002420
2421 if (t == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002423 retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 curwin->w_cursor = old_pos;
2425 }
2426 else
2427 {
2428 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 /* "n" searches forward now */
2430 reset_search_dir();
2431 }
2432
2433 vim_free(pat);
2434 p_ws = save_p_ws;
2435 p_scs = save_p_scs;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002436
2437 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438}
2439
2440/*
2441 * Move 'dist' lines in direction 'dir', counting lines by *screen*
2442 * lines rather than lines in the file.
2443 * 'dist' must be positive.
2444 *
2445 * Return OK if able to move cursor, FAIL otherwise.
2446 */
2447 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002448nv_screengo(oparg_T *oap, int dir, long dist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449{
2450 int linelen = linetabsize(ml_get_curline());
2451 int retval = OK;
2452 int atend = FALSE;
2453 int n;
2454 int col_off1; /* margin offset for first screen line */
2455 int col_off2; /* margin offset for wrapped screen line */
2456 int width1; /* text width for first screen line */
2457 int width2; /* test width for wrapped screen line */
2458
2459 oap->motion_type = MCHAR;
Bram Moolenaar91b2bdb2013-07-14 13:32:15 +02002460 oap->inclusive = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461
2462 col_off1 = curwin_col_off();
2463 col_off2 = col_off1 - curwin_col_off2();
Bram Moolenaar02631462017-09-22 15:20:32 +02002464 width1 = curwin->w_width - col_off1;
2465 width2 = curwin->w_width - col_off2;
Bram Moolenaar7cc8ec42015-01-27 20:59:31 +01002466 if (width2 == 0)
2467 width2 = 1; /* avoid divide by zero */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 if (curwin->w_width != 0)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002470 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 /*
2472 * Instead of sticking at the last character of the buffer line we
2473 * try to stick in the last column of the screen.
2474 */
2475 if (curwin->w_curswant == MAXCOL)
2476 {
2477 atend = TRUE;
2478 validate_virtcol();
2479 if (width1 <= 0)
2480 curwin->w_curswant = 0;
2481 else
2482 {
2483 curwin->w_curswant = width1 - 1;
2484 if (curwin->w_virtcol > curwin->w_curswant)
2485 curwin->w_curswant += ((curwin->w_virtcol
2486 - curwin->w_curswant - 1) / width2 + 1) * width2;
2487 }
2488 }
2489 else
2490 {
2491 if (linelen > width1)
2492 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2493 else
2494 n = width1;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002495 if (curwin->w_curswant >= (colnr_T)n)
2496 curwin->w_curswant = n - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 }
2498
2499 while (dist--)
2500 {
2501 if (dir == BACKWARD)
2502 {
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002503 if ((long)curwin->w_curswant >= width1)
2504 // Move back within the line. This can give a negative value
2505 // for w_curswant if width1 < width2 (with cpoptions+=n),
2506 // which will get clipped to column 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 curwin->w_curswant -= width2;
2508 else
2509 {
2510 /* to previous line */
2511 if (curwin->w_cursor.lnum == 1)
2512 {
2513 retval = FAIL;
2514 break;
2515 }
2516 --curwin->w_cursor.lnum;
2517#ifdef FEAT_FOLDING
2518 /* Move to the start of a closed fold. Don't do that when
2519 * 'foldopen' contains "all": it will open in a moment. */
2520 if (!(fdo_flags & FDO_ALL))
2521 (void)hasFolding(curwin->w_cursor.lnum,
2522 &curwin->w_cursor.lnum, NULL);
2523#endif
2524 linelen = linetabsize(ml_get_curline());
2525 if (linelen > width1)
2526 curwin->w_curswant += (((linelen - width1 - 1) / width2)
2527 + 1) * width2;
2528 }
2529 }
2530 else /* dir == FORWARD */
2531 {
2532 if (linelen > width1)
2533 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2534 else
2535 n = width1;
2536 if (curwin->w_curswant + width2 < (colnr_T)n)
2537 /* move forward within line */
2538 curwin->w_curswant += width2;
2539 else
2540 {
2541 /* to next line */
2542#ifdef FEAT_FOLDING
2543 /* Move to the end of a closed fold. */
2544 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2545 &curwin->w_cursor.lnum);
2546#endif
2547 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
2548 {
2549 retval = FAIL;
2550 break;
2551 }
2552 curwin->w_cursor.lnum++;
2553 curwin->w_curswant %= width2;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002554 // Check if the cursor has moved below the number display
2555 // when width1 < width2 (with cpoptions+=n). Subtract width2
2556 // to get a negative value for w_curswant, which will get
2557 // clipped to column 0.
2558 if (curwin->w_curswant >= width1)
2559 curwin->w_curswant -= width2;
Bram Moolenaar914968e2011-06-20 00:45:58 +02002560 linelen = linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 }
2562 }
2563 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565
Bram Moolenaar6cd3aee2014-01-14 13:18:58 +01002566 if (virtual_active() && atend)
2567 coladvance(MAXCOL);
2568 else
2569 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
2572 {
Bram Moolenaar773b1582014-08-29 14:20:51 +02002573 colnr_T virtcol;
2574
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 /*
2576 * Check for landing on a character that got split at the end of the
2577 * last line. We want to advance a screenline, not end up in the same
2578 * screenline or move two screenlines.
2579 */
2580 validate_virtcol();
Bram Moolenaar773b1582014-08-29 14:20:51 +02002581 virtcol = curwin->w_virtcol;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002582#if defined(FEAT_LINEBREAK)
Bram Moolenaaree857022019-11-09 23:26:40 +01002583 if (virtcol > (colnr_T)width1 && *get_showbreak_value(curwin) != NUL)
2584 virtcol -= vim_strsize(get_showbreak_value(curwin));
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002585#endif
Bram Moolenaar773b1582014-08-29 14:20:51 +02002586
2587 if (virtcol > curwin->w_curswant
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 && (curwin->w_curswant < (colnr_T)width1
2589 ? (curwin->w_curswant > (colnr_T)width1 / 2)
2590 : ((curwin->w_curswant - width1) % width2
2591 > (colnr_T)width2 / 2)))
2592 --curwin->w_cursor.col;
2593 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594
2595 if (atend)
2596 curwin->w_curswant = MAXCOL; /* stick in the last column */
2597
2598 return retval;
2599}
2600
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601/*
2602 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
2603 * cap->arg must be TRUE for CTRL-E.
2604 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002605 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002606nv_scroll_line(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607{
2608 if (!checkclearop(cap->oap))
2609 scroll_redraw(cap->arg, cap->count1);
2610}
2611
2612/*
2613 * Scroll "count" lines up or down, and redraw.
2614 */
2615 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002616scroll_redraw(int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617{
2618 linenr_T prev_topline = curwin->w_topline;
2619#ifdef FEAT_DIFF
2620 int prev_topfill = curwin->w_topfill;
2621#endif
2622 linenr_T prev_lnum = curwin->w_cursor.lnum;
2623
2624 if (up)
2625 scrollup(count, TRUE);
2626 else
2627 scrolldown(count, TRUE);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002628 if (get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 {
2630 /* Adjust the cursor position for 'scrolloff'. Mark w_topline as
2631 * valid, otherwise the screen jumps back at the end of the file. */
2632 cursor_correct();
2633 check_cursor_moved(curwin);
2634 curwin->w_valid |= VALID_TOPLINE;
2635
2636 /* If moved back to where we were, at least move the cursor, otherwise
2637 * we get stuck at one position. Don't move the cursor up if the
2638 * first line of the buffer is already on the screen */
2639 while (curwin->w_topline == prev_topline
2640#ifdef FEAT_DIFF
2641 && curwin->w_topfill == prev_topfill
2642#endif
2643 )
2644 {
2645 if (up)
2646 {
2647 if (curwin->w_cursor.lnum > prev_lnum
2648 || cursor_down(1L, FALSE) == FAIL)
2649 break;
2650 }
2651 else
2652 {
2653 if (curwin->w_cursor.lnum < prev_lnum
2654 || prev_topline == 1L
2655 || cursor_up(1L, FALSE) == FAIL)
2656 break;
2657 }
2658 /* Mark w_topline as valid, otherwise the screen jumps back at the
2659 * end of the file. */
2660 check_cursor_moved(curwin);
2661 curwin->w_valid |= VALID_TOPLINE;
2662 }
2663 }
2664 if (curwin->w_cursor.lnum != prev_lnum)
2665 coladvance(curwin->w_curswant);
2666 redraw_later(VALID);
2667}
2668
2669/*
2670 * Commands that start with "z".
2671 */
2672 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002673nv_zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674{
2675 long n;
2676 colnr_T col;
2677 int nchar = cap->nchar;
2678#ifdef FEAT_FOLDING
2679 long old_fdl = curwin->w_p_fdl;
2680 int old_fen = curwin->w_p_fen;
2681#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002682#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00002683 int undo = FALSE;
2684#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +01002685 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686
2687 if (VIM_ISDIGIT(nchar))
2688 {
2689 /*
2690 * "z123{nchar}": edit the count before obtaining {nchar}
2691 */
2692 if (checkclearop(cap->oap))
2693 return;
2694 n = nchar - '0';
2695 for (;;)
2696 {
2697#ifdef USE_ON_FLY_SCROLL
2698 dont_scroll = TRUE; /* disallow scrolling here */
2699#endif
2700 ++no_mapping;
2701 ++allow_keys; /* no mapping for nchar, but allow key codes */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00002702 nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 --no_mapping;
2705 --allow_keys;
2706#ifdef FEAT_CMDL_INFO
2707 (void)add_to_showcmd(nchar);
2708#endif
2709 if (nchar == K_DEL || nchar == K_KDEL)
2710 n /= 10;
2711 else if (VIM_ISDIGIT(nchar))
2712 n = n * 10 + (nchar - '0');
2713 else if (nchar == CAR)
2714 {
2715#ifdef FEAT_GUI
2716 need_mouse_correct = TRUE;
2717#endif
2718 win_setheight((int)n);
2719 break;
2720 }
2721 else if (nchar == 'l'
2722 || nchar == 'h'
2723 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00002724 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 {
2726 cap->count1 = n ? n * cap->count1 : cap->count1;
2727 goto dozet;
2728 }
2729 else
2730 {
2731 clearopbeep(cap->oap);
2732 break;
2733 }
2734 }
2735 cap->oap->op_type = OP_NOP;
2736 return;
2737 }
2738
2739dozet:
2740 if (
2741#ifdef FEAT_FOLDING
2742 /* "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
2743 * and "zC" only in Visual mode. "zj" and "zk" are motion
2744 * commands. */
2745 cap->nchar != 'f' && cap->nchar != 'F'
2746 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
2747 && cap->nchar != 'j' && cap->nchar != 'k'
2748 &&
2749#endif
2750 checkclearop(cap->oap))
2751 return;
2752
2753 /*
2754 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
2755 * If line number given, set cursor.
2756 */
2757 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
2758 && cap->count0
2759 && cap->count0 != curwin->w_cursor.lnum)
2760 {
2761 setpcmark();
2762 if (cap->count0 > curbuf->b_ml.ml_line_count)
2763 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2764 else
2765 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002766 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 }
2768
2769 switch (nchar)
2770 {
2771 /* "z+", "z<CR>" and "zt": put cursor at top of screen */
2772 case '+':
2773 if (cap->count0 == 0)
2774 {
2775 /* No count given: put cursor at the line below screen */
2776 validate_botline(); /* make sure w_botline is valid */
2777 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2778 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2779 else
2780 curwin->w_cursor.lnum = curwin->w_botline;
2781 }
2782 /* FALLTHROUGH */
2783 case NL:
2784 case CAR:
2785 case K_KENTER:
2786 beginline(BL_WHITE | BL_FIX);
2787 /* FALLTHROUGH */
2788
2789 case 't': scroll_cursor_top(0, TRUE);
2790 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002791 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 break;
2793
2794 /* "z." and "zz": put cursor in middle of screen */
2795 case '.': beginline(BL_WHITE | BL_FIX);
2796 /* FALLTHROUGH */
2797
2798 case 'z': scroll_cursor_halfway(TRUE);
2799 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002800 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 break;
2802
2803 /* "z^", "z-" and "zb": put cursor at bottom of screen */
2804 case '^': /* Strange Vi behavior: <count>z^ finds line at top of window
2805 * when <count> is at bottom of window, and puts that one at
2806 * bottom of window. */
2807 if (cap->count0 != 0)
2808 {
2809 scroll_cursor_bot(0, TRUE);
2810 curwin->w_cursor.lnum = curwin->w_topline;
2811 }
2812 else if (curwin->w_topline == 1)
2813 curwin->w_cursor.lnum = 1;
2814 else
2815 curwin->w_cursor.lnum = curwin->w_topline - 1;
2816 /* FALLTHROUGH */
2817 case '-':
2818 beginline(BL_WHITE | BL_FIX);
2819 /* FALLTHROUGH */
2820
2821 case 'b': scroll_cursor_bot(0, TRUE);
2822 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002823 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 break;
2825
2826 /* "zH" - scroll screen right half-page */
2827 case 'H':
Bram Moolenaar02631462017-09-22 15:20:32 +02002828 cap->count1 *= curwin->w_width / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 /* FALLTHROUGH */
2830
2831 /* "zh" - scroll screen to the right */
2832 case 'h':
2833 case K_LEFT:
2834 if (!curwin->w_p_wrap)
2835 {
2836 if ((colnr_T)cap->count1 > curwin->w_leftcol)
2837 curwin->w_leftcol = 0;
2838 else
2839 curwin->w_leftcol -= (colnr_T)cap->count1;
2840 leftcol_changed();
2841 }
2842 break;
2843
2844 /* "zL" - scroll screen left half-page */
Bram Moolenaar02631462017-09-22 15:20:32 +02002845 case 'L': cap->count1 *= curwin->w_width / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 /* FALLTHROUGH */
2847
2848 /* "zl" - scroll screen to the left */
2849 case 'l':
2850 case K_RIGHT:
2851 if (!curwin->w_p_wrap)
2852 {
2853 /* scroll the window left */
2854 curwin->w_leftcol += (colnr_T)cap->count1;
2855 leftcol_changed();
2856 }
2857 break;
2858
2859 /* "zs" - scroll screen, cursor at the start */
2860 case 's': if (!curwin->w_p_wrap)
2861 {
2862#ifdef FEAT_FOLDING
2863 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
2864 col = 0; /* like the cursor is in col 0 */
2865 else
2866#endif
2867 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002868 if ((long)col > siso)
2869 col -= siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 else
2871 col = 0;
2872 if (curwin->w_leftcol != col)
2873 {
2874 curwin->w_leftcol = col;
2875 redraw_later(NOT_VALID);
2876 }
2877 }
2878 break;
2879
2880 /* "ze" - scroll screen, cursor at the end */
2881 case 'e': if (!curwin->w_p_wrap)
2882 {
2883#ifdef FEAT_FOLDING
2884 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
2885 col = 0; /* like the cursor is in col 0 */
2886 else
2887#endif
2888 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
Bram Moolenaar02631462017-09-22 15:20:32 +02002889 n = curwin->w_width - curwin_col_off();
Bram Moolenaar375e3392019-01-31 18:26:10 +01002890 if ((long)col + siso < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 col = 0;
2892 else
Bram Moolenaar375e3392019-01-31 18:26:10 +01002893 col = col + siso - n + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 if (curwin->w_leftcol != col)
2895 {
2896 curwin->w_leftcol = col;
2897 redraw_later(NOT_VALID);
2898 }
2899 }
2900 break;
2901
2902#ifdef FEAT_FOLDING
2903 /* "zF": create fold command */
2904 /* "zf": create fold operator */
2905 case 'F':
2906 case 'f': if (foldManualAllowed(TRUE))
2907 {
2908 cap->nchar = 'f';
2909 nv_operator(cap);
2910 curwin->w_p_fen = TRUE;
2911
2912 /* "zF" is like "zfzf" */
2913 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
2914 {
2915 nv_operator(cap);
2916 finish_op = TRUE;
2917 }
2918 }
2919 else
2920 clearopbeep(cap->oap);
2921 break;
2922
2923 /* "zd": delete fold at cursor */
2924 /* "zD": delete fold at cursor recursively */
2925 case 'd':
2926 case 'D': if (foldManualAllowed(FALSE))
2927 {
2928 if (VIsual_active)
2929 nv_operator(cap);
2930 else
2931 deleteFold(curwin->w_cursor.lnum,
2932 curwin->w_cursor.lnum, nchar == 'D', FALSE);
2933 }
2934 break;
2935
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002936 /* "zE": erase all folds */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 case 'E': if (foldmethodIsManual(curwin))
2938 {
2939 clearFolding(curwin);
2940 changed_window_setting();
2941 }
2942 else if (foldmethodIsMarker(curwin))
2943 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
2944 TRUE, FALSE);
2945 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002946 emsg(_("E352: Cannot erase folds with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 break;
2948
2949 /* "zn": fold none: reset 'foldenable' */
2950 case 'n': curwin->w_p_fen = FALSE;
2951 break;
2952
2953 /* "zN": fold Normal: set 'foldenable' */
2954 case 'N': curwin->w_p_fen = TRUE;
2955 break;
2956
2957 /* "zi": invert folding: toggle 'foldenable' */
2958 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
2959 break;
2960
2961 /* "za": open closed fold or close open fold at cursor */
2962 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
2963 openFold(curwin->w_cursor.lnum, cap->count1);
2964 else
2965 {
2966 closeFold(curwin->w_cursor.lnum, cap->count1);
2967 curwin->w_p_fen = TRUE;
2968 }
2969 break;
2970
2971 /* "zA": open fold at cursor recursively */
2972 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
2973 openFoldRecurse(curwin->w_cursor.lnum);
2974 else
2975 {
2976 closeFoldRecurse(curwin->w_cursor.lnum);
2977 curwin->w_p_fen = TRUE;
2978 }
2979 break;
2980
2981 /* "zo": open fold at cursor or Visual area */
2982 case 'o': if (VIsual_active)
2983 nv_operator(cap);
2984 else
2985 openFold(curwin->w_cursor.lnum, cap->count1);
2986 break;
2987
2988 /* "zO": open fold recursively */
2989 case 'O': if (VIsual_active)
2990 nv_operator(cap);
2991 else
2992 openFoldRecurse(curwin->w_cursor.lnum);
2993 break;
2994
2995 /* "zc": close fold at cursor or Visual area */
2996 case 'c': if (VIsual_active)
2997 nv_operator(cap);
2998 else
2999 closeFold(curwin->w_cursor.lnum, cap->count1);
3000 curwin->w_p_fen = TRUE;
3001 break;
3002
3003 /* "zC": close fold recursively */
3004 case 'C': if (VIsual_active)
3005 nv_operator(cap);
3006 else
3007 closeFoldRecurse(curwin->w_cursor.lnum);
3008 curwin->w_p_fen = TRUE;
3009 break;
3010
3011 /* "zv": open folds at the cursor */
3012 case 'v': foldOpenCursor();
3013 break;
3014
3015 /* "zx": re-apply 'foldlevel' and open folds at the cursor */
3016 case 'x': curwin->w_p_fen = TRUE;
Bram Moolenaar38ab0e22010-05-13 17:35:59 +02003017 curwin->w_foldinvalid = TRUE; /* recompute folds */
3018 newFoldLevel(); /* update right now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 foldOpenCursor();
3020 break;
3021
3022 /* "zX": undo manual opens/closes, re-apply 'foldlevel' */
3023 case 'X': curwin->w_p_fen = TRUE;
Bram Moolenaar38ab0e22010-05-13 17:35:59 +02003024 curwin->w_foldinvalid = TRUE; /* recompute folds */
3025 old_fdl = -1; /* force an update */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 break;
3027
3028 /* "zm": fold more */
3029 case 'm': if (curwin->w_p_fdl > 0)
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003030 {
3031 curwin->w_p_fdl -= cap->count1;
3032 if (curwin->w_p_fdl < 0)
3033 curwin->w_p_fdl = 0;
3034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 old_fdl = -1; /* force an update */
3036 curwin->w_p_fen = TRUE;
3037 break;
3038
3039 /* "zM": close all folds */
3040 case 'M': curwin->w_p_fdl = 0;
3041 old_fdl = -1; /* force an update */
3042 curwin->w_p_fen = TRUE;
3043 break;
3044
3045 /* "zr": reduce folding */
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003046 case 'r': curwin->w_p_fdl += cap->count1;
3047 {
3048 int d = getDeepestNesting();
3049
3050 if (curwin->w_p_fdl >= d)
3051 curwin->w_p_fdl = d;
3052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053 break;
3054
3055 /* "zR": open all folds */
3056 case 'R': curwin->w_p_fdl = getDeepestNesting();
3057 old_fdl = -1; /* force an update */
3058 break;
3059
3060 case 'j': /* "zj" move to next fold downwards */
3061 case 'k': /* "zk" move to next fold upwards */
3062 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
3063 cap->count1) == FAIL)
3064 clearopbeep(cap->oap);
3065 break;
3066
3067#endif /* FEAT_FOLDING */
3068
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00003069#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00003070 case 'u': /* "zug" and "zuw": undo "zg" and "zw" */
3071 ++no_mapping;
3072 ++allow_keys; /* no mapping for nchar, but allow key codes */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003073 nchar = plain_vgetc();
Bram Moolenaard0131a82006-03-04 21:46:13 +00003074 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaard0131a82006-03-04 21:46:13 +00003075 --no_mapping;
3076 --allow_keys;
3077#ifdef FEAT_CMDL_INFO
3078 (void)add_to_showcmd(nchar);
3079#endif
3080 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
3081 {
3082 clearopbeep(cap->oap);
3083 break;
3084 }
3085 undo = TRUE;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02003086 /* FALLTHROUGH */
Bram Moolenaard0131a82006-03-04 21:46:13 +00003087
Bram Moolenaarb765d632005-06-07 21:00:02 +00003088 case 'g': /* "zg": add good word to word list */
3089 case 'w': /* "zw": add wrong word to word list */
Bram Moolenaar7887d882005-07-01 22:33:52 +00003090 case 'G': /* "zG": add good word to temp word list */
3091 case 'W': /* "zW": add wrong word to temp word list */
Bram Moolenaarb765d632005-06-07 21:00:02 +00003092 {
3093 char_u *ptr = NULL;
3094 int len;
3095
3096 if (checkclearop(cap->oap))
3097 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003098 if (VIsual_active && get_visual_text(cap, &ptr, &len)
3099 == FAIL)
3100 return;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003101 if (ptr == NULL)
3102 {
3103 pos_T pos = curwin->w_cursor;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003104
Bram Moolenaar134bf072013-09-25 18:54:24 +02003105 /* Find bad word under the cursor. When 'spell' is
3106 * off this fails and find_ident_under_cursor() is
3107 * used below. */
3108 emsg_off++;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003109 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
Bram Moolenaar134bf072013-09-25 18:54:24 +02003110 emsg_off--;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003111 if (len != 0 && curwin->w_cursor.col <= pos.col)
3112 ptr = ml_get_pos(&curwin->w_cursor);
3113 curwin->w_cursor = pos;
3114 }
3115
Bram Moolenaarb765d632005-06-07 21:00:02 +00003116 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
3117 FIND_IDENT)) == 0)
3118 return;
Bram Moolenaar08cc3742019-08-11 22:51:14 +02003119 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W'
3120 ? SPELL_ADD_BAD : SPELL_ADD_GOOD,
Bram Moolenaard0131a82006-03-04 21:46:13 +00003121 (nchar == 'G' || nchar == 'W')
3122 ? 0 : (int)cap->count1,
3123 undo);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003124 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00003125 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003126
Bram Moolenaar43abc522005-12-10 20:15:02 +00003127 case '=': /* "z=": suggestions for a badly spelled word */
Bram Moolenaar66fa2712006-01-22 23:22:22 +00003128 if (!checkclearop(cap->oap))
Bram Moolenaard12a1322005-08-21 22:08:24 +00003129 spell_suggest((int)cap->count0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003130 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003131#endif
3132
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 default: clearopbeep(cap->oap);
3134 }
3135
3136#ifdef FEAT_FOLDING
3137 /* Redraw when 'foldenable' changed */
3138 if (old_fen != curwin->w_p_fen)
3139 {
3140# ifdef FEAT_DIFF
3141 win_T *wp;
3142
3143 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
3144 {
3145 /* Adjust 'foldenable' in diff-synced windows. */
3146 FOR_ALL_WINDOWS(wp)
3147 {
3148 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
3149 {
3150 wp->w_p_fen = curwin->w_p_fen;
3151 changed_window_setting_win(wp);
3152 }
3153 }
3154 }
3155# endif
3156 changed_window_setting();
3157 }
3158
3159 /* Redraw when 'foldlevel' changed. */
3160 if (old_fdl != curwin->w_p_fdl)
3161 newFoldLevel();
3162#endif
3163}
3164
3165#ifdef FEAT_GUI
3166/*
3167 * Vertical scrollbar movement.
3168 */
3169 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003170nv_ver_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171{
3172 if (cap->oap->op_type != OP_NOP)
3173 clearopbeep(cap->oap);
3174
3175 /* Even if an operator was pending, we still want to scroll */
3176 gui_do_scroll();
3177}
3178
3179/*
3180 * Horizontal scrollbar movement.
3181 */
3182 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003183nv_hor_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184{
3185 if (cap->oap->op_type != OP_NOP)
3186 clearopbeep(cap->oap);
3187
3188 /* Even if an operator was pending, we still want to scroll */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003189 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190}
3191#endif
3192
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003193#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003194/*
3195 * Click in GUI tab.
3196 */
3197 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003198nv_tabline(cmdarg_T *cap)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003199{
3200 if (cap->oap->op_type != OP_NOP)
3201 clearopbeep(cap->oap);
3202
3203 /* Even if an operator was pending, we still want to jump tabs. */
3204 goto_tabpage(current_tab);
3205}
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003206
3207/*
3208 * Selected item in tab line menu.
3209 */
3210 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003211nv_tabmenu(cmdarg_T *cap)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003212{
3213 if (cap->oap->op_type != OP_NOP)
3214 clearopbeep(cap->oap);
3215
3216 /* Even if an operator was pending, we still want to jump tabs. */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003217 handle_tabmenu();
3218}
3219
3220/*
3221 * Handle selecting an item of the GUI tab line menu.
3222 * Used in Normal and Insert mode.
3223 */
3224 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003225handle_tabmenu(void)
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003226{
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003227 switch (current_tabmenu)
3228 {
3229 case TABLINE_MENU_CLOSE:
3230 if (current_tab == 0)
3231 do_cmdline_cmd((char_u *)"tabclose");
3232 else
3233 {
3234 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
3235 current_tab);
3236 do_cmdline_cmd(IObuff);
3237 }
3238 break;
3239
3240 case TABLINE_MENU_NEW:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003241 if (current_tab == 0)
3242 do_cmdline_cmd((char_u *)"$tabnew");
3243 else
3244 {
3245 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
3246 current_tab - 1);
3247 do_cmdline_cmd(IObuff);
3248 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003249 break;
3250
3251 case TABLINE_MENU_OPEN:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003252 if (current_tab == 0)
3253 do_cmdline_cmd((char_u *)"browse $tabnew");
3254 else
3255 {
3256 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
3257 current_tab - 1);
3258 do_cmdline_cmd(IObuff);
3259 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003260 break;
3261 }
3262}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003263#endif
3264
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265/*
3266 * "Q" command.
3267 */
3268 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003269nv_exmode(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270{
3271 /*
3272 * Ignore 'Q' in Visual mode, just give a beep.
3273 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 if (VIsual_active)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003275 vim_beep(BO_EX);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003276 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 do_exmode(FALSE);
3278}
3279
3280/*
3281 * Handle a ":" command.
3282 */
3283 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003284nv_colon(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285{
3286 int old_p_im;
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003287 int cmd_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 if (VIsual_active)
3290 nv_operator(cap);
3291 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 {
3293 if (cap->oap->op_type != OP_NOP)
3294 {
3295 /* Using ":" as a movement is characterwise exclusive. */
3296 cap->oap->motion_type = MCHAR;
3297 cap->oap->inclusive = FALSE;
3298 }
3299 else if (cap->count0)
3300 {
3301 /* translate "count:" into ":.,.+(count - 1)" */
3302 stuffcharReadbuff('.');
3303 if (cap->count0 > 1)
3304 {
3305 stuffReadbuff((char_u *)",.+");
3306 stuffnumReadbuff((long)cap->count0 - 1L);
3307 }
3308 }
3309
3310 /* When typing, don't type below an old message */
3311 if (KeyTyped)
3312 compute_cmdrow();
3313
3314 old_p_im = p_im;
3315
3316 /* get a command line and execute it */
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003317 cmd_result = do_cmdline(NULL, getexline, NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
3319
3320 /* If 'insertmode' changed, enter or exit Insert mode */
3321 if (p_im != old_p_im)
3322 {
3323 if (p_im)
3324 restart_edit = 'i';
3325 else
3326 restart_edit = 0;
3327 }
3328
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003329 if (cmd_result == FAIL)
3330 /* The Ex command failed, do not execute the operator. */
3331 clearop(cap->oap);
3332 else if (cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
3334 || cap->oap->start.col >
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003335 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
3336 || did_emsg
3337 ))
3338 /* The start of the operator has become invalid by the Ex command.
3339 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 clearopbeep(cap->oap);
3341 }
3342}
3343
3344/*
3345 * Handle CTRL-G command.
3346 */
3347 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003348nv_ctrlg(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 if (VIsual_active) /* toggle Selection/Visual mode */
3351 {
3352 VIsual_select = !VIsual_select;
3353 showmode();
3354 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003355 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 /* print full name if count given or :cd used */
3357 fileinfo((int)cap->count0, FALSE, TRUE);
3358}
3359
3360/*
3361 * Handle CTRL-H <Backspace> command.
3362 */
3363 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003364nv_ctrlh(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 if (VIsual_active && VIsual_select)
3367 {
3368 cap->cmdchar = 'x'; /* BS key behaves like 'x' in Select mode */
3369 v_visop(cap);
3370 }
3371 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 nv_left(cap);
3373}
3374
3375/*
3376 * CTRL-L: clear screen and redraw.
3377 */
3378 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003379nv_clear(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380{
3381 if (!checkclearop(cap->oap))
3382 {
3383#if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
3384 /*
3385 * Right now, the BeBox doesn't seem to have an easy way to detect
3386 * window resizing, so we cheat and make the user detect it
3387 * manually with CTRL-L instead
3388 */
3389 ui_get_shellsize();
3390#endif
3391#ifdef FEAT_SYN_HL
3392 /* Clear all syntax states to force resyncing. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003393 syn_stack_free_all(curwin->w_s);
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02003394# ifdef FEAT_RELTIME
3395 {
3396 win_T *wp;
3397
3398 FOR_ALL_WINDOWS(wp)
3399 wp->w_s->b_syn_slow = FALSE;
3400 }
3401# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402#endif
3403 redraw_later(CLEAR);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003404#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3405# ifdef VIMDLL
3406 if (!gui.in_use)
3407# endif
3408 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01003409#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 }
3411}
3412
3413/*
3414 * CTRL-O: In Select mode: switch to Visual mode for one command.
3415 * Otherwise: Go to older pcmark.
3416 */
3417 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003418nv_ctrlo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 if (VIsual_active && VIsual_select)
3421 {
3422 VIsual_select = FALSE;
3423 showmode();
3424 restart_VIsual_select = 2; /* restart Select mode later */
3425 }
3426 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 {
3428 cap->count1 = -cap->count1;
3429 nv_pcmark(cap);
3430 }
3431}
3432
3433/*
Bram Moolenaar1bbb6192018-11-10 16:02:01 +01003434 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is
3435 * not named.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 */
3437 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003438nv_hat(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439{
3440 if (!checkclearopq(cap->oap))
3441 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
3442 GETF_SETMARK|GETF_ALT, FALSE);
3443}
3444
3445/*
3446 * "Z" commands.
3447 */
3448 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003449nv_Zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450{
3451 if (!checkclearopq(cap->oap))
3452 {
3453 switch (cap->nchar)
3454 {
3455 /* "ZZ": equivalent to ":x". */
3456 case 'Z': do_cmdline_cmd((char_u *)"x");
3457 break;
3458
3459 /* "ZQ": equivalent to ":q!" (Elvis compatible). */
3460 case 'Q': do_cmdline_cmd((char_u *)"q!");
3461 break;
3462
3463 default: clearopbeep(cap->oap);
3464 }
3465 }
3466}
3467
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468/*
3469 * Call nv_ident() as if "c1" was used, with "c2" as next character.
3470 */
3471 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003472do_nv_ident(int c1, int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473{
3474 oparg_T oa;
3475 cmdarg_T ca;
3476
3477 clear_oparg(&oa);
3478 vim_memset(&ca, 0, sizeof(ca));
3479 ca.oap = &oa;
3480 ca.cmdchar = c1;
3481 ca.nchar = c2;
3482 nv_ident(&ca);
3483}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484
3485/*
3486 * Handle the commands that use the word under the cursor.
3487 * [g] CTRL-] :ta to current identifier
3488 * [g] 'K' run program for current identifier
3489 * [g] '*' / to current identifier or string
3490 * [g] '#' ? to current identifier or string
3491 * g ']' :tselect for current identifier
3492 */
3493 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003494nv_ident(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495{
3496 char_u *ptr = NULL;
3497 char_u *buf;
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003498 unsigned buflen;
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003499 char_u *newbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 char_u *p;
3501 char_u *kp; /* value of 'keywordprg' */
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003502 int kp_help; /* 'keywordprg' is ":he" */
3503 int kp_ex; /* 'keywordprg' starts with ":" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 int n = 0; /* init for GCC */
3505 int cmdchar;
3506 int g_cmd; /* "g" command */
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003507 int tag_cmd = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 char_u *aux_ptr;
3509 int isman;
3510 int isman_s;
3511
3512 if (cap->cmdchar == 'g') /* "g*", "g#", "g]" and "gCTRL-]" */
3513 {
3514 cmdchar = cap->nchar;
3515 g_cmd = TRUE;
3516 }
3517 else
3518 {
3519 cmdchar = cap->cmdchar;
3520 g_cmd = FALSE;
3521 }
3522
3523 if (cmdchar == POUND) /* the pound sign, '#' for English keyboards */
3524 cmdchar = '#';
3525
3526 /*
3527 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
3528 */
3529 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
3530 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
3532 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 if (checkclearopq(cap->oap))
3534 return;
3535 }
3536
3537 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
3538 (cmdchar == '*' || cmdchar == '#')
3539 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
3540 {
3541 clearop(cap->oap);
3542 return;
3543 }
3544
3545 /* Allocate buffer to put the command in. Inserting backslashes can
3546 * double the length of the word. p_kp / curbuf->b_p_kp could be added
3547 * and some numbers. */
3548 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
3549 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
3550 || STRCMP(kp, ":help") == 0);
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003551 if (kp_help && *skipwhite(ptr) == NUL)
3552 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003553 emsg(_(e_noident)); /* found white space only */
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003554 return;
3555 }
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003556 kp_ex = (*kp == ':');
3557 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp));
3558 buf = alloc(buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 if (buf == NULL)
3560 return;
3561 buf[0] = NUL;
3562
3563 switch (cmdchar)
3564 {
3565 case '*':
3566 case '#':
3567 /*
3568 * Put cursor at start of word, makes search skip the word
3569 * under the cursor.
3570 * Call setpcmark() first, so "*``" puts the cursor back where
3571 * it was.
3572 */
3573 setpcmark();
3574 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
3575
3576 if (!g_cmd && vim_iswordp(ptr))
3577 STRCPY(buf, "\\<");
3578 no_smartcase = TRUE; /* don't use 'smartcase' now */
3579 break;
3580
3581 case 'K':
3582 if (kp_help)
3583 STRCPY(buf, "he! ");
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003584 else if (kp_ex)
3585 {
3586 if (cap->count0 != 0)
3587 vim_snprintf((char *)buf, buflen, "%s %ld",
3588 kp, cap->count0);
3589 else
3590 STRCPY(buf, kp);
3591 STRCAT(buf, " ");
3592 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 else
3594 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003595 /* An external command will probably use an argument starting
3596 * with "-" as an option. To avoid trouble we skip the "-". */
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003597 while (*ptr == '-' && n > 0)
3598 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003599 ++ptr;
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003600 --n;
3601 }
3602 if (n == 0)
3603 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003604 emsg(_(e_noident)); /* found dashes only */
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003605 vim_free(buf);
3606 return;
3607 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003608
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 /* When a count is given, turn it into a range. Is this
3610 * really what we want? */
3611 isman = (STRCMP(kp, "man") == 0);
3612 isman_s = (STRCMP(kp, "man -s") == 0);
3613 if (cap->count0 != 0 && !(isman || isman_s))
3614 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
3615
3616 STRCAT(buf, "! ");
3617 if (cap->count0 == 0 && isman_s)
3618 STRCAT(buf, "man");
3619 else
3620 STRCAT(buf, kp);
3621 STRCAT(buf, " ");
3622 if (cap->count0 != 0 && (isman || isman_s))
3623 {
3624 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
3625 STRCAT(buf, " ");
3626 }
3627 }
3628 break;
3629
3630 case ']':
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003631 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632#ifdef FEAT_CSCOPE
3633 if (p_cst)
3634 STRCPY(buf, "cstag ");
3635 else
3636#endif
3637 STRCPY(buf, "ts ");
3638 break;
3639
3640 default:
Bram Moolenaar97e7a842010-03-17 13:07:08 +01003641 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 if (curbuf->b_help)
3643 STRCPY(buf, "he! ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 else
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003645 {
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003646 if (g_cmd)
3647 STRCPY(buf, "tj ");
3648 else
3649 sprintf((char *)buf, "%ldta ", cap->count0);
3650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 }
3652
3653 /*
3654 * Now grab the chars in the identifier
3655 */
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003656 if (cmdchar == 'K' && !kp_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 {
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003658 ptr = vim_strnsave(ptr, n);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003659 if (kp_ex)
3660 /* Escape the argument properly for an Ex command */
3661 p = vim_strsave_fnameescape(ptr, FALSE);
3662 else
3663 /* Escape the argument properly for a shell command */
3664 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003665 vim_free(ptr);
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003666 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003668 vim_free(buf);
3669 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003671 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003672 if (newbuf == NULL)
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003673 {
3674 vim_free(buf);
3675 vim_free(p);
3676 return;
3677 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003678 buf = newbuf;
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003679 STRCAT(buf, p);
3680 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003682 else
3683 {
3684 if (cmdchar == '*')
3685 aux_ptr = (char_u *)(p_magic ? "/.*~[^$\\" : "/^$\\");
3686 else if (cmdchar == '#')
3687 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003688 else if (tag_cmd)
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003689 {
3690 if (curbuf->b_help)
3691 /* ":help" handles unescaped argument */
3692 aux_ptr = (char_u *)"";
3693 else
3694 aux_ptr = (char_u *)"\\|\"\n[";
3695 }
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003696 else
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003697 aux_ptr = (char_u *)"\\|\"\n*?[";
3698
3699 p = buf + STRLEN(buf);
3700 while (n-- > 0)
3701 {
3702 /* put a backslash before \ and some others */
3703 if (vim_strchr(aux_ptr, *ptr) != NULL)
3704 *p++ = '\\';
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003705 /* When current byte is a part of multibyte character, copy all
3706 * bytes of that character. */
3707 if (has_mbyte)
3708 {
3709 int i;
3710 int len = (*mb_ptr2len)(ptr) - 1;
3711
3712 for (i = 0; i < len && n >= 1; ++i, --n)
3713 *p++ = *ptr++;
3714 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003715 *p++ = *ptr++;
3716 }
3717 *p = NUL;
3718 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719
3720 /*
3721 * Execute the command.
3722 */
3723 if (cmdchar == '*' || cmdchar == '#')
3724 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003725 if (!g_cmd && (has_mbyte
3726 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr))
3727 : vim_iswordc(ptr[-1])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728 STRCAT(buf, "\\>");
Bram Moolenaard7663c22019-08-06 21:59:57 +02003729
3730 // put pattern in search history
Bram Moolenaarc7be3f32009-12-24 14:01:12 +00003731 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
Bram Moolenaard7663c22019-08-06 21:59:57 +02003733
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003734 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 }
3736 else
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003737 {
3738 g_tag_at_cursor = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 do_cmdline_cmd(buf);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003740 g_tag_at_cursor = FALSE;
3741 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742
3743 vim_free(buf);
3744}
3745
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746/*
3747 * Get visually selected text, within one line only.
3748 * Returns FAIL if more than one line selected.
3749 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003750 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003751get_visual_text(
3752 cmdarg_T *cap,
3753 char_u **pp, /* return: start of selected text */
3754 int *lenp) /* return: length of selected text */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755{
3756 if (VIsual_mode != 'V')
3757 unadjust_for_sel();
3758 if (VIsual.lnum != curwin->w_cursor.lnum)
3759 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003760 if (cap != NULL)
3761 clearopbeep(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 return FAIL;
3763 }
3764 if (VIsual_mode == 'V')
3765 {
3766 *pp = ml_get_curline();
3767 *lenp = (int)STRLEN(*pp);
3768 }
3769 else
3770 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003771 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 {
3773 *pp = ml_get_pos(&curwin->w_cursor);
3774 *lenp = VIsual.col - curwin->w_cursor.col + 1;
3775 }
3776 else
3777 {
3778 *pp = ml_get_pos(&VIsual);
3779 *lenp = curwin->w_cursor.col - VIsual.col + 1;
3780 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 if (has_mbyte)
3782 /* Correct the length to include the whole last character. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003783 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 }
3785 reset_VIsual_and_resel();
3786 return OK;
3787}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788
3789/*
3790 * CTRL-T: backwards in tag stack
3791 */
3792 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003793nv_tagpop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794{
3795 if (!checkclearopq(cap->oap))
3796 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
3797}
3798
3799/*
3800 * Handle scrolling command 'H', 'L' and 'M'.
3801 */
3802 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003803nv_scroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804{
3805 int used = 0;
3806 long n;
3807#ifdef FEAT_FOLDING
3808 linenr_T lnum;
3809#endif
3810 int half;
3811
3812 cap->oap->motion_type = MLINE;
3813 setpcmark();
3814
3815 if (cap->cmdchar == 'L')
3816 {
3817 validate_botline(); /* make sure curwin->w_botline is valid */
3818 curwin->w_cursor.lnum = curwin->w_botline - 1;
3819 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
3820 curwin->w_cursor.lnum = 1;
3821 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003822 {
3823#ifdef FEAT_FOLDING
3824 if (hasAnyFolding(curwin))
3825 {
3826 /* Count a fold for one screen line. */
3827 for (n = cap->count1 - 1; n > 0
3828 && curwin->w_cursor.lnum > curwin->w_topline; --n)
3829 {
3830 (void)hasFolding(curwin->w_cursor.lnum,
3831 &curwin->w_cursor.lnum, NULL);
3832 --curwin->w_cursor.lnum;
3833 }
3834 }
3835 else
3836#endif
3837 curwin->w_cursor.lnum -= cap->count1 - 1;
3838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 }
3840 else
3841 {
3842 if (cap->cmdchar == 'M')
3843 {
3844#ifdef FEAT_DIFF
3845 /* Don't count filler lines above the window. */
3846 used -= diff_check_fill(curwin, curwin->w_topline)
3847 - curwin->w_topfill;
3848#endif
3849 validate_botline(); /* make sure w_empty_rows is valid */
3850 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
3851 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
3852 {
3853#ifdef FEAT_DIFF
3854 /* Count half he number of filler lines to be "below this
3855 * line" and half to be "above the next line". */
3856 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
3857 + n) / 2 >= half)
3858 {
3859 --n;
3860 break;
3861 }
3862#endif
3863 used += plines(curwin->w_topline + n);
3864 if (used >= half)
3865 break;
3866#ifdef FEAT_FOLDING
3867 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
3868 n = lnum - curwin->w_topline;
3869#endif
3870 }
3871 if (n > 0 && used > curwin->w_height)
3872 --n;
3873 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003874 else /* (cap->cmdchar == 'H') */
3875 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003877#ifdef FEAT_FOLDING
3878 if (hasAnyFolding(curwin))
3879 {
3880 /* Count a fold for one screen line. */
3881 lnum = curwin->w_topline;
3882 while (n-- > 0 && lnum < curwin->w_botline - 1)
3883 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02003884 (void)hasFolding(lnum, NULL, &lnum);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003885 ++lnum;
3886 }
3887 n = lnum - curwin->w_topline;
3888 }
3889#endif
3890 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 curwin->w_cursor.lnum = curwin->w_topline + n;
3892 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3893 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3894 }
3895
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02003896 /* Correct for 'so', except when an operator is pending. */
3897 if (cap->oap->op_type == OP_NOP)
3898 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 beginline(BL_SOL | BL_FIX);
3900}
3901
3902/*
3903 * Cursor right commands.
3904 */
3905 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003906nv_right(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907{
3908 long n;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003909 int past_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003911 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
3912 {
3913 /* <C-Right> and <S-Right> move a word or WORD right */
3914 if (mod_mask & MOD_MASK_CTRL)
3915 cap->arg = TRUE;
3916 nv_wordcmd(cap);
3917 return;
3918 }
3919
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 cap->oap->motion_type = MCHAR;
3921 cap->oap->inclusive = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003922 past_line = (VIsual_active && *p_sel != 'o');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 /*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003925 * In virtual edit mode, there's no such thing as "past_line", as lines
3926 * are (theoretically) infinitely long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 */
3928 if (virtual_active())
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003929 past_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930
3931 for (n = cap->count1; n > 0; --n)
3932 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003933 if ((!past_line && oneright() == FAIL)
3934 || (past_line && *ml_get_cursor() == NUL)
Bram Moolenaar78a15312009-05-15 19:33:18 +00003935 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 {
3937 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003938 * <Space> wraps to next line if 'whichwrap' has 's'.
3939 * 'l' wraps to next line if 'whichwrap' has 'l'.
3940 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 */
3942 if ( ((cap->cmdchar == ' '
3943 && vim_strchr(p_ww, 's') != NULL)
3944 || (cap->cmdchar == 'l'
3945 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00003946 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 && vim_strchr(p_ww, '>') != NULL))
3948 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3949 {
3950 /* When deleting we also count the NL as a character.
3951 * Set cap->oap->inclusive when last char in the line is
3952 * included, move to next line after that */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003953 if ( cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 && !cap->oap->inclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003955 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 cap->oap->inclusive = TRUE;
3957 else
3958 {
3959 ++curwin->w_cursor.lnum;
3960 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 curwin->w_set_curswant = TRUE;
3963 cap->oap->inclusive = FALSE;
3964 }
3965 continue;
3966 }
3967 if (cap->oap->op_type == OP_NOP)
3968 {
3969 /* Only beep and flush if not moved at all */
3970 if (n == cap->count1)
3971 beep_flush();
3972 }
3973 else
3974 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003975 if (!LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 cap->oap->inclusive = TRUE;
3977 }
3978 break;
3979 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003980 else if (past_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 {
3982 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 if (virtual_active())
3984 oneright();
3985 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 if (has_mbyte)
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02003988 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 ++curwin->w_cursor.col;
3991 }
3992 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 }
3994#ifdef FEAT_FOLDING
3995 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
3996 && cap->oap->op_type == OP_NOP)
3997 foldOpenCursor();
3998#endif
3999}
4000
4001/*
4002 * Cursor left commands.
4003 *
4004 * Returns TRUE when operator end should not be adjusted.
4005 */
4006 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004007nv_left(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008{
4009 long n;
4010
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004011 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4012 {
4013 /* <C-Left> and <S-Left> move a word or WORD left */
4014 if (mod_mask & MOD_MASK_CTRL)
4015 cap->arg = 1;
4016 nv_bck_word(cap);
4017 return;
4018 }
4019
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 cap->oap->motion_type = MCHAR;
4021 cap->oap->inclusive = FALSE;
4022 for (n = cap->count1; n > 0; --n)
4023 {
4024 if (oneleft() == FAIL)
4025 {
4026 /* <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
4027 * 'h' wraps to previous line if 'whichwrap' has 'h'.
4028 * CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
4029 */
4030 if ( (((cap->cmdchar == K_BS
4031 || cap->cmdchar == Ctrl_H)
4032 && vim_strchr(p_ww, 'b') != NULL)
4033 || (cap->cmdchar == 'h'
4034 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004035 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 && vim_strchr(p_ww, '<') != NULL))
4037 && curwin->w_cursor.lnum > 1)
4038 {
4039 --(curwin->w_cursor.lnum);
4040 coladvance((colnr_T)MAXCOL);
4041 curwin->w_set_curswant = TRUE;
4042
4043 /* When the NL before the first char has to be deleted we
4044 * put the cursor on the NUL after the previous line.
4045 * This is a very special case, be careful!
Bram Moolenaarad8958b2008-01-02 15:26:04 +00004046 * Don't adjust op_end now, otherwise it won't work. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 if ( (cap->oap->op_type == OP_DELETE
4048 || cap->oap->op_type == OP_CHANGE)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004049 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004051 char_u *cp = ml_get_cursor();
4052
4053 if (*cp != NUL)
4054 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004055 if (has_mbyte)
4056 curwin->w_cursor.col += (*mb_ptr2len)(cp);
4057 else
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004058 ++curwin->w_cursor.col;
4059 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 cap->retval |= CA_NO_ADJ_OP_END;
4061 }
4062 continue;
4063 }
4064 /* Only beep and flush if not moved at all */
4065 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
4066 beep_flush();
4067 break;
4068 }
4069 }
4070#ifdef FEAT_FOLDING
4071 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4072 && cap->oap->op_type == OP_NOP)
4073 foldOpenCursor();
4074#endif
4075}
4076
4077/*
4078 * Cursor up commands.
4079 * cap->arg is TRUE for "-": Move cursor to first non-blank.
4080 */
4081 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004082nv_up(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004084 if (mod_mask & MOD_MASK_SHIFT)
4085 {
4086 /* <S-Up> is page up */
4087 cap->arg = BACKWARD;
4088 nv_page(cap);
4089 }
4090 else
4091 {
4092 cap->oap->motion_type = MLINE;
4093 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4094 clearopbeep(cap->oap);
4095 else if (cap->arg)
4096 beginline(BL_WHITE | BL_FIX);
4097 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098}
4099
4100/*
4101 * Cursor down commands.
4102 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
4103 */
4104 static void
Bram Moolenaar1b010052016-09-12 12:24:11 +02004105nv_down(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004107 if (mod_mask & MOD_MASK_SHIFT)
4108 {
4109 /* <S-Down> is page down */
4110 cap->arg = FORWARD;
4111 nv_page(cap);
4112 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02004113#if defined(FEAT_QUICKFIX)
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004114 /* Quickfix window only: view the result under the cursor. */
4115 else if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
4116 qf_view_result(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117#endif
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004118 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 {
4120#ifdef FEAT_CMDWIN
4121 /* In the cmdline window a <CR> executes the command. */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004122 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 cmdwin_result = CAR;
4124 else
4125#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02004126#ifdef FEAT_JOB_CHANNEL
4127 /* In a prompt buffer a <CR> in the last line invokes the callback. */
4128 if (bt_prompt(curbuf) && cap->cmdchar == CAR
4129 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4130 {
4131 invoke_prompt_callback();
4132 if (restart_edit == 0)
4133 restart_edit = 'a';
4134 }
4135 else
4136#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 {
4138 cap->oap->motion_type = MLINE;
4139 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4140 clearopbeep(cap->oap);
4141 else if (cap->arg)
4142 beginline(BL_WHITE | BL_FIX);
4143 }
4144 }
4145}
4146
4147#ifdef FEAT_SEARCHPATH
4148/*
4149 * Grab the file name under the cursor and edit it.
4150 */
4151 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004152nv_gotofile(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153{
4154 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004155 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004157 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 {
4159 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004160 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 return;
4162 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004163 if (curbuf_locked())
4164 {
4165 clearop(cap->oap);
4166 return;
4167 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004169 ptr = grab_file_name(cap->count1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170
4171 if (ptr != NULL)
4172 {
4173 /* do autowrite if necessary */
Bram Moolenaareb44a682017-08-03 22:44:55 +02004174 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf))
Bram Moolenaarcde88542015-08-11 19:14:00 +02004175 (void)autowrite(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 setpcmark();
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004177 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
Bram Moolenaareb44a682017-08-03 22:44:55 +02004178 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004179 && cap->nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004180 {
4181 curwin->w_cursor.lnum = lnum;
4182 check_cursor_lnum();
4183 beginline(BL_SOL | BL_FIX);
4184 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185 vim_free(ptr);
4186 }
4187 else
4188 clearop(cap->oap);
4189}
4190#endif
4191
4192/*
4193 * <End> command: to end of current line or last line.
4194 */
4195 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004196nv_end(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004198 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) /* CTRL-END = goto last line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004200 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201 nv_goto(cap);
4202 cap->count1 = 1; /* to end of current line */
4203 }
4204 nv_dollar(cap);
4205}
4206
4207/*
4208 * Handle the "$" command.
4209 */
4210 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004211nv_dollar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212{
4213 cap->oap->motion_type = MCHAR;
4214 cap->oap->inclusive = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 /* In virtual mode when off the edge of a line and an operator
4216 * is pending (whew!) keep the cursor where it is.
4217 * Otherwise, send it to the end of the line. */
4218 if (!virtual_active() || gchar_cursor() != NUL
4219 || cap->oap->op_type == OP_NOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 curwin->w_curswant = MAXCOL; /* so we stay at the end */
4221 if (cursor_down((long)(cap->count1 - 1),
4222 cap->oap->op_type == OP_NOP) == FAIL)
4223 clearopbeep(cap->oap);
4224#ifdef FEAT_FOLDING
4225 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4226 foldOpenCursor();
4227#endif
4228}
4229
4230/*
4231 * Implementation of '?' and '/' commands.
4232 * If cap->arg is TRUE don't set PC mark.
4233 */
4234 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004235nv_search(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236{
4237 oparg_T *oap = cap->oap;
Bram Moolenaardda933d2016-09-03 21:04:58 +02004238 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239
4240 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
4241 {
4242 /* Translate "g??" to "g?g?" */
4243 cap->cmdchar = 'g';
4244 cap->nchar = '?';
4245 nv_operator(cap);
4246 return;
4247 }
4248
Bram Moolenaardda933d2016-09-03 21:04:58 +02004249 /* When using 'incsearch' the cursor may be moved to set a different search
4250 * start position. */
Bram Moolenaare96a2492019-06-25 04:12:16 +02004251 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252
4253 if (cap->searchbuf == NULL)
4254 {
4255 clearop(oap);
4256 return;
4257 }
4258
Bram Moolenaar46539112015-02-17 15:43:57 +01004259 (void)normal_search(cap, cap->cmdchar, cap->searchbuf,
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004260 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor))
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004261 ? 0 : SEARCH_MARK, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262}
4263
4264/*
4265 * Handle "N" and "n" commands.
4266 * cap->arg is SEARCH_REV for "N", 0 for "n".
4267 */
4268 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004269nv_next(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270{
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004271 pos_T old = curwin->w_cursor;
4272 int wrapped = FALSE;
4273 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, &wrapped);
Bram Moolenaar46539112015-02-17 15:43:57 +01004274
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004275 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor))
Bram Moolenaar46539112015-02-17 15:43:57 +01004276 {
4277 /* Avoid getting stuck on the current cursor position, which can
4278 * happen when an offset is given and the cursor is on the last char
4279 * in the buffer: Repeat with count + 1. */
4280 cap->count1 += 1;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004281 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL);
Bram Moolenaar46539112015-02-17 15:43:57 +01004282 cap->count1 -= 1;
4283 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284}
4285
4286/*
4287 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
4288 * Uses only cap->count1 and cap->oap from "cap".
Bram Moolenaar46539112015-02-17 15:43:57 +01004289 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 */
Bram Moolenaar46539112015-02-17 15:43:57 +01004291 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004292normal_search(
4293 cmdarg_T *cap,
4294 int dir,
4295 char_u *pat,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004296 int opt, // extra flags for do_search()
4297 int *wrapped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298{
4299 int i;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004300 searchit_arg_T sia;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301
4302 cap->oap->motion_type = MCHAR;
4303 cap->oap->inclusive = FALSE;
4304 cap->oap->use_reg_one = TRUE;
4305 curwin->w_set_curswant = TRUE;
4306
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004307 vim_memset(&sia, 0, sizeof(sia));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 i = do_search(cap->oap, dir, pat, cap->count1,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004309 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, &sia);
4310 if (wrapped != NULL)
4311 *wrapped = sia.sa_wrapped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 if (i == 0)
4313 clearop(cap->oap);
4314 else
4315 {
4316 if (i == 2)
4317 cap->oap->motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319#ifdef FEAT_FOLDING
4320 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4321 foldOpenCursor();
4322#endif
4323 }
4324
4325 /* "/$" will put the cursor after the end of the line, may need to
4326 * correct that here */
4327 check_cursor();
Bram Moolenaar46539112015-02-17 15:43:57 +01004328 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329}
4330
4331/*
4332 * Character search commands.
4333 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
4334 * ',' and FALSE for ';'.
4335 * cap->nchar is NUL for ',' and ';' (repeat the search)
4336 */
4337 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004338nv_csearch(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339{
4340 int t_cmd;
4341
4342 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
4343 t_cmd = TRUE;
4344 else
4345 t_cmd = FALSE;
4346
4347 cap->oap->motion_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
4349 clearopbeep(cap->oap);
4350 else
4351 {
4352 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 /* Include a Tab for "tx" and for "dfx". */
4354 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
4355 && (t_cmd || cap->oap->op_type != OP_NOP))
4356 {
4357 colnr_T scol, ecol;
4358
4359 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4360 curwin->w_cursor.coladd = ecol - scol;
4361 }
4362 else
4363 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365#ifdef FEAT_FOLDING
4366 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4367 foldOpenCursor();
4368#endif
4369 }
4370}
4371
4372/*
4373 * "[" and "]" commands.
4374 * cap->arg is BACKWARD for "[" and FORWARD for "]".
4375 */
4376 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004377nv_brackets(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378{
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004379 pos_T new_pos = {0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 pos_T prev_pos;
4381 pos_T *pos = NULL; /* init for GCC */
4382 pos_T old_pos; /* cursor position before command */
4383 int flag;
4384 long n;
4385 int findc;
4386 int c;
4387
4388 cap->oap->motion_type = MCHAR;
4389 cap->oap->inclusive = FALSE;
4390 old_pos = curwin->w_cursor;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004391 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392
4393#ifdef FEAT_SEARCHPATH
4394 /*
4395 * "[f" or "]f" : Edit file under the cursor (same as "gf")
4396 */
4397 if (cap->nchar == 'f')
4398 nv_gotofile(cap);
4399 else
4400#endif
4401
4402#ifdef FEAT_FIND_ID
4403 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00004404 * Find the occurrence(s) of the identifier or define under cursor
4405 * in current and included files or jump to the first occurrence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 *
4407 * search list jump
4408 * fwd bwd fwd bwd fwd bwd
4409 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
4410 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
4411 */
4412 if (vim_strchr((char_u *)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004413# ifdef EBCDIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 "iI\005dD\067",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004415# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 "iI\011dD\004",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004417# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 cap->nchar) != NULL)
4419 {
4420 char_u *ptr;
4421 int len;
4422
4423 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
4424 clearop(cap->oap);
4425 else
4426 {
4427 find_pattern_in_path(ptr, 0, len, TRUE,
4428 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
4429 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
4430 cap->count1,
4431 isupper(cap->nchar) ? ACTION_SHOW_ALL :
4432 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
4433 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
4434 (linenr_T)MAXLNUM);
4435 curwin->w_set_curswant = TRUE;
4436 }
4437 }
4438 else
4439#endif
4440
4441 /*
4442 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
4443 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
4444 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
4445 * "[m" or "]m" search for prev/next start of (Java) method.
4446 * "[M" or "]M" search for prev/next end of (Java) method.
4447 */
4448 if ( (cap->cmdchar == '['
4449 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
4450 || (cap->cmdchar == ']'
4451 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
4452 {
4453 if (cap->nchar == '*')
4454 cap->nchar = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 prev_pos.lnum = 0;
4456 if (cap->nchar == 'm' || cap->nchar == 'M')
4457 {
4458 if (cap->cmdchar == '[')
4459 findc = '{';
4460 else
4461 findc = '}';
4462 n = 9999;
4463 }
4464 else
4465 {
4466 findc = cap->nchar;
4467 n = cap->count1;
4468 }
4469 for ( ; n > 0; --n)
4470 {
4471 if ((pos = findmatchlimit(cap->oap, findc,
4472 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
4473 {
4474 if (new_pos.lnum == 0) /* nothing found */
4475 {
4476 if (cap->nchar != 'm' && cap->nchar != 'M')
4477 clearopbeep(cap->oap);
4478 }
4479 else
4480 pos = &new_pos; /* use last one found */
4481 break;
4482 }
4483 prev_pos = new_pos;
4484 curwin->w_cursor = *pos;
4485 new_pos = *pos;
4486 }
4487 curwin->w_cursor = old_pos;
4488
4489 /*
4490 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
4491 * brought us to the match for "[m" and "]M" when inside a method.
4492 * Try finding the '{' or '}' we want to be at.
4493 * Also repeat for the given count.
4494 */
4495 if (cap->nchar == 'm' || cap->nchar == 'M')
4496 {
4497 /* norm is TRUE for "]M" and "[m" */
4498 int norm = ((findc == '{') == (cap->nchar == 'm'));
4499
4500 n = cap->count1;
4501 /* found a match: we were inside a method */
4502 if (prev_pos.lnum != 0)
4503 {
4504 pos = &prev_pos;
4505 curwin->w_cursor = prev_pos;
4506 if (norm)
4507 --n;
4508 }
4509 else
4510 pos = NULL;
4511 while (n > 0)
4512 {
4513 for (;;)
4514 {
4515 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
4516 {
4517 /* if not found anything, that's an error */
4518 if (pos == NULL)
4519 clearopbeep(cap->oap);
4520 n = 0;
4521 break;
4522 }
4523 c = gchar_cursor();
4524 if (c == '{' || c == '}')
4525 {
4526 /* Must have found end/start of class: use it.
4527 * Or found the place to be at. */
4528 if ((c == findc && norm) || (n == 1 && !norm))
4529 {
4530 new_pos = curwin->w_cursor;
4531 pos = &new_pos;
4532 n = 0;
4533 }
4534 /* if no match found at all, we started outside of the
4535 * class and we're inside now. Just go on. */
4536 else if (new_pos.lnum == 0)
4537 {
4538 new_pos = curwin->w_cursor;
4539 pos = &new_pos;
4540 }
4541 /* found start/end of other method: go to match */
4542 else if ((pos = findmatchlimit(cap->oap, findc,
4543 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
4544 0)) == NULL)
4545 n = 0;
4546 else
4547 curwin->w_cursor = *pos;
4548 break;
4549 }
4550 }
4551 --n;
4552 }
4553 curwin->w_cursor = old_pos;
4554 if (pos == NULL && new_pos.lnum != 0)
4555 clearopbeep(cap->oap);
4556 }
4557 if (pos != NULL)
4558 {
4559 setpcmark();
4560 curwin->w_cursor = *pos;
4561 curwin->w_set_curswant = TRUE;
4562#ifdef FEAT_FOLDING
4563 if ((fdo_flags & FDO_BLOCK) && KeyTyped
4564 && cap->oap->op_type == OP_NOP)
4565 foldOpenCursor();
4566#endif
4567 }
4568 }
4569
4570 /*
4571 * "[[", "[]", "]]" and "][": move to start or end of function
4572 */
4573 else if (cap->nchar == '[' || cap->nchar == ']')
4574 {
4575 if (cap->nchar == cap->cmdchar) /* "]]" or "[[" */
4576 flag = '{';
4577 else
4578 flag = '}'; /* "][" or "[]" */
4579
4580 curwin->w_set_curswant = TRUE;
4581 /*
4582 * Imitate strange Vi behaviour: When using "]]" with an operator
4583 * we also stop at '}'.
4584 */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004585 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 (cap->oap->op_type != OP_NOP
4587 && cap->arg == FORWARD && flag == '{')))
4588 clearopbeep(cap->oap);
4589 else
4590 {
4591 if (cap->oap->op_type == OP_NOP)
4592 beginline(BL_WHITE | BL_FIX);
4593#ifdef FEAT_FOLDING
4594 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4595 foldOpenCursor();
4596#endif
4597 }
4598 }
4599
4600 /*
4601 * "[p", "[P", "]P" and "]p": put with indent adjustment
4602 */
4603 else if (cap->nchar == 'p' || cap->nchar == 'P')
4604 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02004605 nv_put_opt(cap, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 }
4607
4608 /*
4609 * "['", "[`", "]'" and "]`": jump to next mark
4610 */
4611 else if (cap->nchar == '\'' || cap->nchar == '`')
4612 {
4613 pos = &curwin->w_cursor;
4614 for (n = cap->count1; n > 0; --n)
4615 {
4616 prev_pos = *pos;
4617 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
4618 cap->nchar == '\'');
4619 if (pos == NULL)
4620 break;
4621 }
4622 if (pos == NULL)
4623 pos = &prev_pos;
4624 nv_cursormark(cap, cap->nchar == '\'', pos);
4625 }
4626
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 /*
4628 * [ or ] followed by a middle mouse click: put selected text with
4629 * indent adjustment. Any other button just does as usual.
4630 */
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02004631 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 {
4633 (void)do_mouse(cap->oap, cap->nchar,
4634 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
4635 cap->count1, PUT_FIXINDENT);
4636 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637
4638#ifdef FEAT_FOLDING
4639 /*
4640 * "[z" and "]z": move to start or end of open fold.
4641 */
4642 else if (cap->nchar == 'z')
4643 {
4644 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4645 cap->count1) == FAIL)
4646 clearopbeep(cap->oap);
4647 }
4648#endif
4649
4650#ifdef FEAT_DIFF
4651 /*
4652 * "[c" and "]c": move to next or previous diff-change.
4653 */
4654 else if (cap->nchar == 'c')
4655 {
4656 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
4657 cap->count1) == FAIL)
4658 clearopbeep(cap->oap);
4659 }
4660#endif
4661
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00004662#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004663 /*
4664 * "[s", "[S", "]s" and "]S": move to next spell error.
4665 */
4666 else if (cap->nchar == 's' || cap->nchar == 'S')
4667 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004668 setpcmark();
4669 for (n = 0; n < cap->count1; ++n)
Bram Moolenaar95529562005-08-25 21:21:38 +00004670 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4671 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004672 {
4673 clearopbeep(cap->oap);
4674 break;
4675 }
Bram Moolenaarb73fa622017-12-21 20:27:47 +01004676 else
4677 curwin->w_set_curswant = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004678# ifdef FEAT_FOLDING
4679 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4680 foldOpenCursor();
4681# endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004682 }
4683#endif
4684
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685 /* Not a valid cap->nchar. */
4686 else
4687 clearopbeep(cap->oap);
4688}
4689
4690/*
4691 * Handle Normal mode "%" command.
4692 */
4693 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004694nv_percent(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695{
4696 pos_T *pos;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02004697#if defined(FEAT_FOLDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 linenr_T lnum = curwin->w_cursor.lnum;
4699#endif
4700
4701 cap->oap->inclusive = TRUE;
4702 if (cap->count0) /* {cnt}% : goto {cnt} percentage in file */
4703 {
4704 if (cap->count0 > 100)
4705 clearopbeep(cap->oap);
4706 else
4707 {
4708 cap->oap->motion_type = MLINE;
4709 setpcmark();
4710 /* Round up, so CTRL-G will give same value. Watch out for a
4711 * large line count, the line number must not go negative! */
4712 if (curbuf->b_ml.ml_line_count > 1000000)
4713 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
4714 / 100L * cap->count0;
4715 else
4716 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
4717 cap->count0 + 99L) / 100L;
4718 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4719 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4720 beginline(BL_SOL | BL_FIX);
4721 }
4722 }
4723 else /* "%" : go to matching paren */
4724 {
4725 cap->oap->motion_type = MCHAR;
4726 cap->oap->use_reg_one = TRUE;
4727 if ((pos = findmatch(cap->oap, NUL)) == NULL)
4728 clearopbeep(cap->oap);
4729 else
4730 {
4731 setpcmark();
4732 curwin->w_cursor = *pos;
4733 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 }
4737 }
4738#ifdef FEAT_FOLDING
4739 if (cap->oap->op_type == OP_NOP
4740 && lnum != curwin->w_cursor.lnum
4741 && (fdo_flags & FDO_PERCENT)
4742 && KeyTyped)
4743 foldOpenCursor();
4744#endif
4745}
4746
4747/*
4748 * Handle "(" and ")" commands.
4749 * cap->arg is BACKWARD for "(" and FORWARD for ")".
4750 */
4751 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004752nv_brace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753{
4754 cap->oap->motion_type = MCHAR;
4755 cap->oap->use_reg_one = TRUE;
Bram Moolenaarebefac62005-12-28 22:39:57 +00004756 /* The motion used to be inclusive for "(", but that is not what Vi does. */
4757 cap->oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 curwin->w_set_curswant = TRUE;
4759
4760 if (findsent(cap->arg, cap->count1) == FAIL)
4761 clearopbeep(cap->oap);
4762 else
4763 {
Bram Moolenaar1f14d572008-01-12 16:12:10 +00004764 /* Don't leave the cursor on the NUL past end of line. */
4765 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767#ifdef FEAT_FOLDING
4768 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4769 foldOpenCursor();
4770#endif
4771 }
4772}
4773
4774/*
4775 * "m" command: Mark a position.
4776 */
4777 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004778nv_mark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779{
4780 if (!checkclearop(cap->oap))
4781 {
4782 if (setmark(cap->nchar) == FAIL)
4783 clearopbeep(cap->oap);
4784 }
4785}
4786
4787/*
4788 * "{" and "}" commands.
4789 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
4790 */
4791 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004792nv_findpar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793{
4794 cap->oap->motion_type = MCHAR;
4795 cap->oap->inclusive = FALSE;
4796 cap->oap->use_reg_one = TRUE;
4797 curwin->w_set_curswant = TRUE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004798 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 clearopbeep(cap->oap);
4800 else
4801 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803#ifdef FEAT_FOLDING
4804 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4805 foldOpenCursor();
4806#endif
4807 }
4808}
4809
4810/*
4811 * "u" command: Undo or make lower case.
4812 */
4813 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004814nv_undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004816 if (cap->oap->op_type == OP_LOWER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 {
4818 /* translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" */
4819 cap->cmdchar = 'g';
4820 cap->nchar = 'u';
4821 nv_operator(cap);
4822 }
4823 else
4824 nv_kundo(cap);
4825}
4826
4827/*
4828 * <Undo> command.
4829 */
4830 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004831nv_kundo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832{
4833 if (!checkclearopq(cap->oap))
4834 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02004835#ifdef FEAT_JOB_CHANNEL
4836 if (bt_prompt(curbuf))
4837 {
4838 clearopbeep(cap->oap);
4839 return;
4840 }
4841#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 u_undo((int)cap->count1);
4843 curwin->w_set_curswant = TRUE;
4844 }
4845}
4846
4847/*
4848 * Handle the "r" command.
4849 */
4850 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004851nv_replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852{
4853 char_u *ptr;
4854 int had_ctrl_v;
4855 long n;
4856
4857 if (checkclearop(cap->oap))
4858 return;
Bram Moolenaarf2732452018-06-03 14:47:35 +02004859#ifdef FEAT_JOB_CHANNEL
4860 if (bt_prompt(curbuf) && !prompt_curpos_editable())
4861 {
4862 clearopbeep(cap->oap);
4863 return;
4864 }
4865#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866
4867 /* get another character */
4868 if (cap->nchar == Ctrl_V)
4869 {
4870 had_ctrl_v = Ctrl_V;
4871 cap->nchar = get_literal();
4872 /* Don't redo a multibyte character with CTRL-V. */
4873 if (cap->nchar > DEL)
4874 had_ctrl_v = NUL;
4875 }
4876 else
4877 had_ctrl_v = NUL;
4878
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00004879 /* Abort if the character is a special key. */
4880 if (IS_SPECIAL(cap->nchar))
4881 {
4882 clearopbeep(cap->oap);
4883 return;
4884 }
4885
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 /* Visual mode "r" */
4887 if (VIsual_active)
4888 {
Bram Moolenaar57fb0da2009-02-04 10:46:25 +00004889 if (got_int)
4890 reset_VIsual();
Bram Moolenaard9820532013-11-04 01:41:17 +01004891 if (had_ctrl_v)
4892 {
Bram Moolenaarf12519d2018-02-06 22:52:49 +01004893 /* Use a special (negative) number to make a difference between a
4894 * literal CR or NL and a line break. */
4895 if (cap->nchar == CAR)
4896 cap->nchar = REPLACE_CR_NCHAR;
4897 else if (cap->nchar == NL)
4898 cap->nchar = REPLACE_NL_NCHAR;
Bram Moolenaard9820532013-11-04 01:41:17 +01004899 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900 nv_operator(cap);
4901 return;
4902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 /* Break tabs, etc. */
4905 if (virtual_active())
4906 {
4907 if (u_save_cursor() == FAIL)
4908 return;
4909 if (gchar_cursor() == NUL)
4910 {
4911 /* Add extra space and put the cursor on the first one. */
4912 coladvance_force((colnr_T)(getviscol() + cap->count1));
4913 curwin->w_cursor.col -= cap->count1;
4914 }
4915 else if (gchar_cursor() == TAB)
4916 coladvance_force(getviscol());
4917 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00004919 /* Abort if not enough characters to replace. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 ptr = ml_get_cursor();
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00004921 if (STRLEN(ptr) < (unsigned)cap->count1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004922 || (has_mbyte && mb_charlen(ptr) < cap->count1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 {
4924 clearopbeep(cap->oap);
4925 return;
4926 }
4927
4928 /*
4929 * Replacing with a TAB is done by edit() when it is complicated because
4930 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
4931 * Other characters are done below to avoid problems with things like
4932 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
4933 */
4934 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
4935 {
4936 stuffnumReadbuff(cap->count1);
4937 stuffcharReadbuff('R');
4938 stuffcharReadbuff('\t');
4939 stuffcharReadbuff(ESC);
4940 return;
4941 }
4942
4943 /* save line for undo */
4944 if (u_save_cursor() == FAIL)
4945 return;
4946
4947 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
4948 {
4949 /*
4950 * Replace character(s) by a single newline.
4951 * Strange vi behaviour: Only one newline is inserted.
4952 * Delete the characters here.
4953 * Insert the newline with an insert command, takes care of
4954 * autoindent. The insert command depends on being on the last
4955 * character of a line or not.
4956 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 (void)del_chars(cap->count1, FALSE); /* delete the characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958 stuffcharReadbuff('\r');
4959 stuffcharReadbuff(ESC);
4960
4961 /* Give 'r' to edit(), to get the redo command right. */
4962 invoke_edit(cap, TRUE, 'r', FALSE);
4963 }
4964 else
4965 {
4966 prep_redo(cap->oap->regname, cap->count1,
4967 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
4968
4969 curbuf->b_op_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 if (has_mbyte)
4971 {
4972 int old_State = State;
4973
4974 if (cap->ncharC1 != 0)
4975 AppendCharToRedobuff(cap->ncharC1);
4976 if (cap->ncharC2 != 0)
4977 AppendCharToRedobuff(cap->ncharC2);
4978
4979 /* This is slow, but it handles replacing a single-byte with a
4980 * multi-byte and the other way around. Also handles adding
4981 * composing characters for utf-8. */
4982 for (n = cap->count1; n > 0; --n)
4983 {
4984 State = REPLACE;
Bram Moolenaar8320da42012-04-30 18:18:47 +02004985 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
4986 {
4987 int c = ins_copychar(curwin->w_cursor.lnum
4988 + (cap->nchar == Ctrl_Y ? -1 : 1));
4989 if (c != NUL)
4990 ins_char(c);
4991 else
4992 /* will be decremented further down */
4993 ++curwin->w_cursor.col;
4994 }
4995 else
4996 ins_char(cap->nchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 State = old_State;
4998 if (cap->ncharC1 != 0)
4999 ins_char(cap->ncharC1);
5000 if (cap->ncharC2 != 0)
5001 ins_char(cap->ncharC2);
5002 }
5003 }
5004 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 {
5006 /*
5007 * Replace the characters within one line.
5008 */
5009 for (n = cap->count1; n > 0; --n)
5010 {
5011 /*
5012 * Get ptr again, because u_save and/or showmatch() will have
5013 * released the line. At the same time we let know that the
5014 * line will be changed.
5015 */
5016 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005017 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5018 {
5019 int c = ins_copychar(curwin->w_cursor.lnum
5020 + (cap->nchar == Ctrl_Y ? -1 : 1));
5021 if (c != NUL)
5022 ptr[curwin->w_cursor.col] = c;
5023 }
5024 else
5025 ptr[curwin->w_cursor.col] = cap->nchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 if (p_sm && msg_silent == 0)
5027 showmatch(cap->nchar);
5028 ++curwin->w_cursor.col;
5029 }
5030#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005031 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005033 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034
Bram Moolenaar009b2592004-10-24 19:18:58 +00005035 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005036 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005038 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 }
5040#endif
5041
5042 /* mark the buffer as changed and prepare for displaying */
5043 changed_bytes(curwin->w_cursor.lnum,
5044 (colnr_T)(curwin->w_cursor.col - cap->count1));
5045 }
5046 --curwin->w_cursor.col; /* cursor on the last replaced char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 /* if the character on the left of the current cursor is a multi-byte
5048 * character, move two characters left */
5049 if (has_mbyte)
5050 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051 curbuf->b_op_end = curwin->w_cursor;
5052 curwin->w_set_curswant = TRUE;
5053 set_last_insert(cap->nchar);
5054 }
5055}
5056
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057/*
5058 * 'o': Exchange start and end of Visual area.
5059 * 'O': same, but in block mode exchange left and right corners.
5060 */
5061 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005062v_swap_corners(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063{
5064 pos_T old_cursor;
5065 colnr_T left, right;
5066
5067 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
5068 {
5069 old_cursor = curwin->w_cursor;
5070 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
5071 curwin->w_cursor.lnum = VIsual.lnum;
5072 coladvance(left);
5073 VIsual = curwin->w_cursor;
5074
5075 curwin->w_cursor.lnum = old_cursor.lnum;
5076 curwin->w_curswant = right;
5077 /* 'selection "exclusive" and cursor at right-bottom corner: move it
5078 * right one column */
5079 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
5080 ++curwin->w_curswant;
5081 coladvance(curwin->w_curswant);
5082 if (curwin->w_cursor.col == old_cursor.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 && (!virtual_active()
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005084 || curwin->w_cursor.coladd == old_cursor.coladd))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 {
5086 curwin->w_cursor.lnum = VIsual.lnum;
5087 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
5088 ++right;
5089 coladvance(right);
5090 VIsual = curwin->w_cursor;
5091
5092 curwin->w_cursor.lnum = old_cursor.lnum;
5093 coladvance(left);
5094 curwin->w_curswant = left;
5095 }
5096 }
5097 else
5098 {
5099 old_cursor = curwin->w_cursor;
5100 curwin->w_cursor = VIsual;
5101 VIsual = old_cursor;
5102 curwin->w_set_curswant = TRUE;
5103 }
5104}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105
5106/*
5107 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
5108 */
5109 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005110nv_Replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 if (VIsual_active) /* "R" is replace lines */
5113 {
5114 cap->cmdchar = 'c';
5115 cap->nchar = NUL;
Bram Moolenaara390bb62013-03-13 19:02:41 +01005116 VIsual_mode_orig = VIsual_mode; /* remember original area for gv */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 VIsual_mode = 'V';
5118 nv_operator(cap);
5119 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005120 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 {
5122 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005123 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124 else
5125 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126 if (virtual_active())
5127 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
5129 }
5130 }
5131}
5132
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133/*
5134 * "gr".
5135 */
5136 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005137nv_vreplace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 if (VIsual_active)
5140 {
5141 cap->cmdchar = 'r';
5142 cap->nchar = cap->extra_char;
5143 nv_replace(cap); /* Do same as "r" in Visual mode for now */
5144 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005145 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 {
5147 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005148 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 else
5150 {
5151 if (cap->extra_char == Ctrl_V) /* get another character */
5152 cap->extra_char = get_literal();
5153 stuffcharReadbuff(cap->extra_char);
5154 stuffcharReadbuff(ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 if (virtual_active())
5156 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 invoke_edit(cap, TRUE, 'v', FALSE);
5158 }
5159 }
5160}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161
5162/*
5163 * Swap case for "~" command, when it does not work like an operator.
5164 */
5165 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005166n_swapchar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167{
5168 long n;
5169 pos_T startpos;
5170 int did_change = 0;
5171#ifdef FEAT_NETBEANS_INTG
5172 pos_T pos;
5173 char_u *ptr;
5174 int count;
5175#endif
5176
5177 if (checkclearopq(cap->oap))
5178 return;
5179
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005180 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 {
5182 clearopbeep(cap->oap);
5183 return;
5184 }
5185
5186 prep_redo_cmd(cap);
5187
5188 if (u_save_cursor() == FAIL)
5189 return;
5190
5191 startpos = curwin->w_cursor;
5192#ifdef FEAT_NETBEANS_INTG
5193 pos = startpos;
5194#endif
5195 for (n = cap->count1; n > 0; --n)
5196 {
5197 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
5198 inc_cursor();
5199 if (gchar_cursor() == NUL)
5200 {
5201 if (vim_strchr(p_ww, '~') != NULL
5202 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5203 {
5204#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005205 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 {
5207 if (did_change)
5208 {
5209 ptr = ml_get(pos.lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005210 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005211 netbeans_removed(curbuf, pos.lnum, pos.col,
5212 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005214 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 }
5216 pos.col = 0;
5217 pos.lnum++;
5218 }
5219#endif
5220 ++curwin->w_cursor.lnum;
5221 curwin->w_cursor.col = 0;
5222 if (n > 1)
5223 {
5224 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
5225 break;
5226 u_clearline();
5227 }
5228 }
5229 else
5230 break;
5231 }
5232 }
5233#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005234 if (did_change && netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 {
5236 ptr = ml_get(pos.lnum);
5237 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005238 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
5239 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 }
5241#endif
5242
5243
5244 check_cursor();
5245 curwin->w_set_curswant = TRUE;
5246 if (did_change)
5247 {
5248 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
5249 0L);
5250 curbuf->b_op_start = startpos;
5251 curbuf->b_op_end = curwin->w_cursor;
5252 if (curbuf->b_op_end.col > 0)
5253 --curbuf->b_op_end.col;
5254 }
5255}
5256
5257/*
5258 * Move cursor to mark.
5259 */
5260 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005261nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262{
5263 if (check_mark(pos) == FAIL)
5264 clearop(cap->oap);
5265 else
5266 {
5267 if (cap->cmdchar == '\''
5268 || cap->cmdchar == '`'
5269 || cap->cmdchar == '['
5270 || cap->cmdchar == ']')
5271 setpcmark();
5272 curwin->w_cursor = *pos;
5273 if (flag)
5274 beginline(BL_WHITE | BL_FIX);
5275 else
5276 check_cursor();
5277 }
5278 cap->oap->motion_type = flag ? MLINE : MCHAR;
5279 if (cap->cmdchar == '`')
5280 cap->oap->use_reg_one = TRUE;
5281 cap->oap->inclusive = FALSE; /* ignored if not MCHAR */
5282 curwin->w_set_curswant = TRUE;
5283}
5284
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285/*
5286 * Handle commands that are operators in Visual mode.
5287 */
5288 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005289v_visop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290{
5291 static char_u trans[] = "YyDdCcxdXdAAIIrr";
5292
5293 /* Uppercase means linewise, except in block mode, then "D" deletes till
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02005294 * the end of the line, and "C" replaces till EOL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 if (isupper(cap->cmdchar))
5296 {
5297 if (VIsual_mode != Ctrl_V)
Bram Moolenaara390bb62013-03-13 19:02:41 +01005298 {
5299 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005301 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
5303 curwin->w_curswant = MAXCOL;
5304 }
5305 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
5306 nv_operator(cap);
5307}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308
5309/*
5310 * "s" and "S" commands.
5311 */
5312 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005313nv_subst(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314{
Bram Moolenaard96ff162018-02-18 22:13:29 +01005315#ifdef FEAT_TERMINAL
5316 /* When showing output of term_dumpdiff() swap the top and botom. */
5317 if (term_swap_diff() == OK)
5318 return;
5319#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005320#ifdef FEAT_JOB_CHANNEL
5321 if (bt_prompt(curbuf) && !prompt_curpos_editable())
5322 {
5323 clearopbeep(cap->oap);
5324 return;
5325 }
5326#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 if (VIsual_active) /* "vs" and "vS" are the same as "vc" */
5328 {
5329 if (cap->cmdchar == 'S')
Bram Moolenaara390bb62013-03-13 19:02:41 +01005330 {
5331 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005333 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 cap->cmdchar = 'c';
5335 nv_operator(cap);
5336 }
5337 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 nv_optrans(cap);
5339}
5340
5341/*
5342 * Abbreviated commands.
5343 */
5344 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005345nv_abbrev(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346{
5347 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
5348 cap->cmdchar = 'x'; /* DEL key behaves like 'x' */
5349
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 /* in Visual mode these commands are operators */
5351 if (VIsual_active)
5352 v_visop(cap);
5353 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 nv_optrans(cap);
5355}
5356
5357/*
5358 * Translate a command into another command.
5359 */
5360 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005361nv_optrans(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362{
5363 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
5364 (char_u *)"d$", (char_u *)"c$",
5365 (char_u *)"cl", (char_u *)"cc",
5366 (char_u *)"yy", (char_u *)":s\r"};
5367 static char_u *str = (char_u *)"xXDCsSY&";
5368
5369 if (!checkclearopq(cap->oap))
5370 {
Bram Moolenaar7a9bd7c2019-09-17 22:42:55 +02005371 // In Vi "2D" doesn't delete the next line. Can't translate it
5372 // either, because "2." should also not use the count.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005373 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
5374 {
5375 cap->oap->start = curwin->w_cursor;
5376 cap->oap->op_type = OP_DELETE;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00005377#ifdef FEAT_EVAL
5378 set_op_var(OP_DELETE);
5379#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005380 cap->count1 = 1;
5381 nv_dollar(cap);
5382 finish_op = TRUE;
5383 ResetRedobuff();
5384 AppendCharToRedobuff('D');
5385 }
5386 else
5387 {
5388 if (cap->count0)
5389 stuffnumReadbuff(cap->count0);
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02005390 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005391 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392 }
5393 cap->opcount = 0;
5394}
5395
5396/*
5397 * "'" and "`" commands. Also for "g'" and "g`".
5398 * cap->arg is TRUE for "'" and "g'".
5399 */
5400 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005401nv_gomark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005402{
5403 pos_T *pos;
5404 int c;
5405#ifdef FEAT_FOLDING
Bram Moolenaar8754deb2013-01-17 13:24:08 +01005406 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 int old_KeyTyped = KeyTyped; /* getting file may reset it */
5408#endif
5409
5410 if (cap->cmdchar == 'g')
5411 c = cap->extra_char;
5412 else
5413 c = cap->nchar;
5414 pos = getmark(c, (cap->oap->op_type == OP_NOP));
5415 if (pos == (pos_T *)-1) /* jumped to other file */
5416 {
5417 if (cap->arg)
5418 {
5419 check_cursor_lnum();
5420 beginline(BL_WHITE | BL_FIX);
5421 }
5422 else
5423 check_cursor();
5424 }
5425 else
5426 nv_cursormark(cap, cap->arg, pos);
5427
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 /* May need to clear the coladd that a mark includes. */
5429 if (!virtual_active())
5430 curwin->w_cursor.coladd = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02005431 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432#ifdef FEAT_FOLDING
5433 if (cap->oap->op_type == OP_NOP
Bram Moolenaar15364d72013-01-24 21:00:20 +01005434 && pos != NULL
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005435 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 && (fdo_flags & FDO_MARK)
5437 && old_KeyTyped)
5438 foldOpenCursor();
5439#endif
5440}
5441
5442/*
5443 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
5444 */
5445 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005446nv_pcmark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447{
5448#ifdef FEAT_JUMPLIST
5449 pos_T *pos;
5450# ifdef FEAT_FOLDING
5451 linenr_T lnum = curwin->w_cursor.lnum;
5452 int old_KeyTyped = KeyTyped; /* getting file may reset it */
5453# endif
5454
5455 if (!checkclearopq(cap->oap))
5456 {
5457 if (cap->cmdchar == 'g')
5458 pos = movechangelist((int)cap->count1);
5459 else
5460 pos = movemark((int)cap->count1);
5461 if (pos == (pos_T *)-1) /* jump to other file */
5462 {
5463 curwin->w_set_curswant = TRUE;
5464 check_cursor();
5465 }
5466 else if (pos != NULL) /* can jump */
5467 nv_cursormark(cap, FALSE, pos);
5468 else if (cap->cmdchar == 'g')
5469 {
5470 if (curbuf->b_changelistlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005471 emsg(_("E664: changelist is empty"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472 else if (cap->count1 < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005473 emsg(_("E662: At start of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005475 emsg(_("E663: At end of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 }
5477 else
5478 clearopbeep(cap->oap);
5479# ifdef FEAT_FOLDING
5480 if (cap->oap->op_type == OP_NOP
5481 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
5482 && (fdo_flags & FDO_MARK)
5483 && old_KeyTyped)
5484 foldOpenCursor();
5485# endif
5486 }
5487#else
5488 clearopbeep(cap->oap);
5489#endif
5490}
5491
5492/*
5493 * Handle '"' command.
5494 */
5495 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005496nv_regname(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497{
5498 if (checkclearop(cap->oap))
5499 return;
5500#ifdef FEAT_EVAL
5501 if (cap->nchar == '=')
5502 cap->nchar = get_expr_register();
5503#endif
5504 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
5505 {
5506 cap->oap->regname = cap->nchar;
5507 cap->opcount = cap->count0; /* remember count before '"' */
5508#ifdef FEAT_EVAL
5509 set_reg_var(cap->oap->regname);
5510#endif
5511 }
5512 else
5513 clearopbeep(cap->oap);
5514}
5515
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516/*
5517 * Handle "v", "V" and "CTRL-V" commands.
5518 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
5519 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005520 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 */
5522 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005523nv_visual(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524{
Bram Moolenaardf177f62005-02-22 08:39:57 +00005525 if (cap->cmdchar == Ctrl_Q)
5526 cap->cmdchar = Ctrl_V;
5527
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528 /* 'v', 'V' and CTRL-V can be used while an operator is pending to make it
5529 * characterwise, linewise, or blockwise. */
5530 if (cap->oap->op_type != OP_NOP)
5531 {
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01005532 motion_force = cap->oap->motion_force = cap->cmdchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533 finish_op = FALSE; /* operator doesn't finish now but later */
5534 return;
5535 }
5536
5537 VIsual_select = cap->arg;
5538 if (VIsual_active) /* change Visual mode */
5539 {
5540 if (VIsual_mode == cap->cmdchar) /* stop visual mode */
5541 end_visual_mode();
5542 else /* toggle char/block mode */
5543 { /* or char/line mode */
5544 VIsual_mode = cap->cmdchar;
5545 showmode();
5546 }
5547 redraw_curbuf_later(INVERTED); /* update the inversion */
5548 }
5549 else /* start Visual mode */
5550 {
5551 check_visual_highlight();
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005552 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 {
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005554 /* use previously selected part */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 VIsual = curwin->w_cursor;
5556
5557 VIsual_active = TRUE;
5558 VIsual_reselect = TRUE;
5559 if (!cap->arg)
5560 /* start Select mode when 'selectmode' contains "cmd" */
5561 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562 setmouse();
Bram Moolenaar09df3122006-01-23 22:23:09 +00005563 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 redraw_cmdline = TRUE; /* show visual mode later */
5565 /*
5566 * For V and ^V, we multiply the number of lines even if there
5567 * was only one -- webb
5568 */
5569 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
5570 {
5571 curwin->w_cursor.lnum +=
5572 resel_VIsual_line_count * cap->count0 - 1;
5573 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5574 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5575 }
5576 VIsual_mode = resel_VIsual_mode;
5577 if (VIsual_mode == 'v')
5578 {
5579 if (resel_VIsual_line_count <= 1)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005580 {
5581 validate_virtcol();
5582 curwin->w_curswant = curwin->w_virtcol
5583 + resel_VIsual_vcol * cap->count0 - 1;
5584 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005586 curwin->w_curswant = resel_VIsual_vcol;
5587 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 }
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005589 if (resel_VIsual_vcol == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 {
5591 curwin->w_curswant = MAXCOL;
5592 coladvance((colnr_T)MAXCOL);
5593 }
5594 else if (VIsual_mode == Ctrl_V)
5595 {
5596 validate_virtcol();
5597 curwin->w_curswant = curwin->w_virtcol
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005598 + resel_VIsual_vcol * cap->count0 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599 coladvance(curwin->w_curswant);
5600 }
5601 else
5602 curwin->w_set_curswant = TRUE;
5603 redraw_curbuf_later(INVERTED); /* show the inversion */
5604 }
5605 else
5606 {
5607 if (!cap->arg)
5608 /* start Select mode when 'selectmode' contains "cmd" */
5609 may_start_select('c');
5610 n_start_visual_mode(cap->cmdchar);
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005611 if (VIsual_mode != 'V' && *p_sel == 'e')
5612 ++cap->count1; /* include one more char */
5613 if (cap->count0 > 0 && --cap->count1 > 0)
5614 {
5615 /* With a count select that many characters or lines. */
5616 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
5617 nv_right(cap);
5618 else if (VIsual_mode == 'V')
5619 nv_down(cap);
5620 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 }
5622 }
5623}
5624
5625/*
5626 * Start selection for Shift-movement keys.
5627 */
5628 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005629start_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630{
5631 /* if 'selectmode' contains "key", start Select mode */
5632 may_start_select('k');
5633 n_start_visual_mode('v');
5634}
5635
5636/*
5637 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
5638 */
5639 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005640may_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005641{
5642 VIsual_select = (stuff_empty() && typebuf_typed()
5643 && (vim_strchr(p_slm, c) != NULL));
5644}
5645
5646/*
5647 * Start Visual mode "c".
5648 * Should set VIsual_select before calling this.
5649 */
5650 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005651n_start_visual_mode(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652{
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005653#ifdef FEAT_CONCEAL
5654 /* Check for redraw before changing the state. */
Bram Moolenaarb9464822018-05-10 15:09:49 +02005655 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005656#endif
5657
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 VIsual_mode = c;
5659 VIsual_active = TRUE;
5660 VIsual_reselect = TRUE;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005661
5662 // Corner case: the 0 position in a tab may change when going into
5663 // virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB)
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005665 {
5666 validate_virtcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667 coladvance(curwin->w_virtcol);
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005668 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669 VIsual = curwin->w_cursor;
5670
5671#ifdef FEAT_FOLDING
5672 foldAdjustVisual();
5673#endif
5674
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675 setmouse();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005676#ifdef FEAT_CONCEAL
5677 /* Check for redraw after changing the state. */
Bram Moolenaarb9464822018-05-10 15:09:49 +02005678 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005679#endif
5680
Bram Moolenaar09df3122006-01-23 22:23:09 +00005681 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682 redraw_cmdline = TRUE; /* show visual mode later */
5683#ifdef FEAT_CLIPBOARD
5684 /* Make sure the clipboard gets updated. Needed because start and
5685 * end may still be the same, and the selection needs to be owned */
5686 clip_star.vmode = NUL;
5687#endif
5688
5689 /* Only need to redraw this line, unless still need to redraw an old
5690 * Visual area (when 'lazyredraw' is set). */
5691 if (curwin->w_redr_type < INVERTED)
5692 {
5693 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
5694 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
5695 }
5696}
5697
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698
5699/*
5700 * CTRL-W: Window commands
5701 */
5702 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005703nv_window(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704{
Bram Moolenaar938783d2017-07-16 20:13:26 +02005705 if (cap->nchar == ':')
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005706 {
Bram Moolenaar938783d2017-07-16 20:13:26 +02005707 /* "CTRL-W :" is the same as typing ":"; useful in a terminal window */
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005708 cap->cmdchar = ':';
5709 cap->nchar = NUL;
Bram Moolenaar938783d2017-07-16 20:13:26 +02005710 nv_colon(cap);
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005711 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02005712 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 do_window(cap->nchar, cap->count0, NUL); /* everything is in window.c */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714}
5715
5716/*
5717 * CTRL-Z: Suspend
5718 */
5719 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005720nv_suspend(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721{
5722 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 if (VIsual_active)
5724 end_visual_mode(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725 do_cmdline_cmd((char_u *)"st");
5726}
5727
5728/*
5729 * Commands starting with "g".
5730 */
5731 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005732nv_g_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733{
5734 oparg_T *oap = cap->oap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735 pos_T tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 int i;
5737 int flag = FALSE;
5738
5739 switch (cap->nchar)
5740 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005741 case Ctrl_A:
5742 case Ctrl_X:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743#ifdef MEM_PROFILE
5744 /*
5745 * "g^A": dump log of used memory.
5746 */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005747 if (!VIsual_active && cap->nchar == Ctrl_A)
5748 vim_mem_profile_dump();
5749 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005751 /*
5752 * "g^A/g^X": sequentially increment visually selected region
5753 */
5754 if (VIsual_active)
5755 {
5756 cap->arg = TRUE;
5757 cap->cmdchar = cap->nchar;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005758 cap->nchar = NUL;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005759 nv_addsub(cap);
5760 }
5761 else
5762 clearopbeep(oap);
5763 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 /*
5766 * "gR": Enter virtual replace mode.
5767 */
5768 case 'R':
5769 cap->arg = TRUE;
5770 nv_Replace(cap);
5771 break;
5772
5773 case 'r':
5774 nv_vreplace(cap);
5775 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776
5777 case '&':
5778 do_cmdline_cmd((char_u *)"%s//~/&");
5779 break;
5780
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 /*
5782 * "gv": Reselect the previous Visual area. If Visual already active,
5783 * exchange previous and current Visual area.
5784 */
5785 case 'v':
5786 if (checkclearop(oap))
5787 break;
5788
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005789 if ( curbuf->b_visual.vi_start.lnum == 0
5790 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
5791 || curbuf->b_visual.vi_end.lnum == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 beep_flush();
5793 else
5794 {
5795 /* set w_cursor to the start of the Visual area, tpos to the end */
5796 if (VIsual_active)
5797 {
5798 i = VIsual_mode;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005799 VIsual_mode = curbuf->b_visual.vi_mode;
5800 curbuf->b_visual.vi_mode = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801# ifdef FEAT_EVAL
5802 curbuf->b_visual_mode_eval = i;
5803# endif
5804 i = curwin->w_curswant;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005805 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5806 curbuf->b_visual.vi_curswant = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005808 tpos = curbuf->b_visual.vi_end;
5809 curbuf->b_visual.vi_end = curwin->w_cursor;
5810 curwin->w_cursor = curbuf->b_visual.vi_start;
5811 curbuf->b_visual.vi_start = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812 }
5813 else
5814 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005815 VIsual_mode = curbuf->b_visual.vi_mode;
5816 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5817 tpos = curbuf->b_visual.vi_end;
5818 curwin->w_cursor = curbuf->b_visual.vi_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819 }
5820
5821 VIsual_active = TRUE;
5822 VIsual_reselect = TRUE;
5823
5824 /* Set Visual to the start and w_cursor to the end of the Visual
5825 * area. Make sure they are on an existing character. */
5826 check_cursor();
5827 VIsual = curwin->w_cursor;
5828 curwin->w_cursor = tpos;
5829 check_cursor();
5830 update_topline();
5831 /*
5832 * When called from normal "g" command: start Select mode when
5833 * 'selectmode' contains "cmd". When called for K_SELECT, always
5834 * start Select mode.
5835 */
5836 if (cap->arg)
5837 VIsual_select = TRUE;
5838 else
5839 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005840 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841#ifdef FEAT_CLIPBOARD
5842 /* Make sure the clipboard gets updated. Needed because start and
5843 * end are still the same, and the selection needs to be owned */
5844 clip_star.vmode = NUL;
5845#endif
5846 redraw_curbuf_later(INVERTED);
5847 showmode();
5848 }
5849 break;
5850 /*
5851 * "gV": Don't reselect the previous Visual area after a Select mode
5852 * mapping of menu.
5853 */
5854 case 'V':
5855 VIsual_reselect = FALSE;
5856 break;
5857
5858 /*
5859 * "gh": start Select mode.
5860 * "gH": start Select line mode.
5861 * "g^H": start Select block mode.
5862 */
5863 case K_BS:
5864 cap->nchar = Ctrl_H;
5865 /* FALLTHROUGH */
5866 case 'h':
5867 case 'H':
5868 case Ctrl_H:
5869# ifdef EBCDIC
5870 /* EBCDIC: 'v'-'h' != '^v'-'^h' */
5871 if (cap->nchar == Ctrl_H)
5872 cap->cmdchar = Ctrl_V;
5873 else
5874# endif
5875 cap->cmdchar = cap->nchar + ('v' - 'h');
5876 cap->arg = TRUE;
5877 nv_visual(cap);
5878 break;
Bram Moolenaar641e2862012-07-25 15:06:34 +02005879
5880 /* "gn", "gN" visually select next/previous search match
5881 * "gn" selects next match
5882 * "gN" selects previous match
5883 */
5884 case 'N':
5885 case 'n':
5886 if (!current_search(cap->count1, cap->nchar == 'n'))
Bram Moolenaarf00dc262012-10-21 03:54:33 +02005887 clearopbeep(oap);
Bram Moolenaar641e2862012-07-25 15:06:34 +02005888 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889
5890 /*
5891 * "gj" and "gk" two new funny movement keys -- up and down
5892 * movement based on *screen* line rather than *file* line.
5893 */
5894 case 'j':
5895 case K_DOWN:
5896 /* with 'nowrap' it works just like the normal "j" command; also when
5897 * in a closed fold */
5898 if (!curwin->w_p_wrap
5899#ifdef FEAT_FOLDING
5900 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
5901#endif
5902 )
5903 {
5904 oap->motion_type = MLINE;
5905 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
5906 }
5907 else
5908 i = nv_screengo(oap, FORWARD, cap->count1);
5909 if (i == FAIL)
5910 clearopbeep(oap);
5911 break;
5912
5913 case 'k':
5914 case K_UP:
5915 /* with 'nowrap' it works just like the normal "k" command; also when
5916 * in a closed fold */
5917 if (!curwin->w_p_wrap
5918#ifdef FEAT_FOLDING
5919 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
5920#endif
5921 )
5922 {
5923 oap->motion_type = MLINE;
5924 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
5925 }
5926 else
5927 i = nv_screengo(oap, BACKWARD, cap->count1);
5928 if (i == FAIL)
5929 clearopbeep(oap);
5930 break;
5931
5932 /*
5933 * "gJ": join two lines without inserting a space.
5934 */
5935 case 'J':
5936 nv_join(cap);
5937 break;
5938
5939 /*
5940 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
5941 * "gm": middle of "g0" and "g$".
5942 */
5943 case '^':
5944 flag = TRUE;
5945 /* FALLTHROUGH */
5946
5947 case '0':
5948 case 'm':
5949 case K_HOME:
5950 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005951 oap->motion_type = MCHAR;
5952 oap->inclusive = FALSE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005953 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005954 {
Bram Moolenaar02631462017-09-22 15:20:32 +02005955 int width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005956 int width2 = width1 + curwin_col_off2();
5957
5958 validate_virtcol();
5959 i = 0;
5960 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
5961 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
5962 }
5963 else
5964 i = curwin->w_leftcol;
Bram Moolenaar64486672010-05-16 15:46:46 +02005965 /* Go to the middle of the screen line. When 'number' or
5966 * 'relativenumber' is on and lines are wrapping the middle can be more
5967 * to the left. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968 if (cap->nchar == 'm')
Bram Moolenaar02631462017-09-22 15:20:32 +02005969 i += (curwin->w_width - curwin_col_off()
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970 + ((curwin->w_p_wrap && i > 0)
5971 ? curwin_col_off2() : 0)) / 2;
5972 coladvance((colnr_T)i);
5973 if (flag)
5974 {
5975 do
5976 i = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01005977 while (VIM_ISWHITE(i) && oneright() == OK);
Bram Moolenaarf9514162018-11-22 03:08:29 +01005978 curwin->w_valid &= ~VALID_WCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 }
5980 curwin->w_set_curswant = TRUE;
5981 break;
5982
Bram Moolenaar8b530c12019-10-28 02:13:05 +01005983 case 'M':
5984 {
5985 char_u *ptr = ml_get_curline();
5986
5987 oap->motion_type = MCHAR;
5988 oap->inclusive = FALSE;
5989 if (has_mbyte)
Bram Moolenaar69bf6342019-10-29 04:16:57 +01005990 i = mb_string2cells(ptr, (int)STRLEN(ptr));
Bram Moolenaar8b530c12019-10-28 02:13:05 +01005991 else
5992 i = (int)STRLEN(ptr);
5993 if (cap->count0 > 0 && cap->count0 <= 100)
5994 coladvance((colnr_T)(i * cap->count0 / 100));
5995 else
5996 coladvance((colnr_T)(i / 2));
5997 curwin->w_set_curswant = TRUE;
5998 }
5999 break;
6000
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 case '_':
6002 /* "g_": to the last non-blank character in the line or <count> lines
6003 * downward. */
6004 cap->oap->motion_type = MCHAR;
6005 cap->oap->inclusive = TRUE;
6006 curwin->w_curswant = MAXCOL;
6007 if (cursor_down((long)(cap->count1 - 1),
6008 cap->oap->op_type == OP_NOP) == FAIL)
6009 clearopbeep(cap->oap);
6010 else
6011 {
6012 char_u *ptr = ml_get_curline();
6013
6014 /* In Visual mode we may end up after the line. */
6015 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
6016 --curwin->w_cursor.col;
6017
6018 /* Decrease the cursor column until it's on a non-blank. */
6019 while (curwin->w_cursor.col > 0
Bram Moolenaar1c465442017-03-12 20:10:05 +01006020 && VIM_ISWHITE(ptr[curwin->w_cursor.col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021 --curwin->w_cursor.col;
6022 curwin->w_set_curswant = TRUE;
Bram Moolenaar5890b2c2010-01-12 15:42:37 +01006023 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024 }
6025 break;
6026
6027 case '$':
6028 case K_END:
6029 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 {
6031 int col_off = curwin_col_off();
6032
6033 oap->motion_type = MCHAR;
6034 oap->inclusive = TRUE;
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 {
6037 curwin->w_curswant = MAXCOL; /* so we stay at the end */
6038 if (cap->count1 == 1)
6039 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006040 int width1 = curwin->w_width - col_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006041 int width2 = width1 + curwin_col_off2();
6042
6043 validate_virtcol();
6044 i = width1 - 1;
6045 if (curwin->w_virtcol >= (colnr_T)width1)
6046 i += ((curwin->w_virtcol - width1) / width2 + 1)
6047 * width2;
6048 coladvance((colnr_T)i);
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006049
6050 /* Make sure we stick in this column. */
6051 validate_virtcol();
6052 curwin->w_curswant = curwin->w_virtcol;
6053 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
6055 {
6056 /*
6057 * Check for landing on a character that got split at
6058 * the end of the line. We do not want to advance to
6059 * the next screen line.
6060 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 if (curwin->w_virtcol > (colnr_T)i)
6062 --curwin->w_cursor.col;
6063 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064 }
6065 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
6066 clearopbeep(oap);
6067 }
6068 else
6069 {
Bram Moolenaard5c82342019-07-27 18:44:57 +02006070 if (cap->count1 > 1)
6071 // if it fails, let the cursor still move to the last char
Bram Moolenaar9c272a92019-08-16 21:54:27 +02006072 (void)cursor_down(cap->count1 - 1, FALSE);
Bram Moolenaard5c82342019-07-27 18:44:57 +02006073
Bram Moolenaar02631462017-09-22 15:20:32 +02006074 i = curwin->w_leftcol + curwin->w_width - col_off - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006076
Bram Moolenaard5c82342019-07-27 18:44:57 +02006077 // Make sure we stick in this column.
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006078 validate_virtcol();
6079 curwin->w_curswant = curwin->w_virtcol;
6080 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081 }
6082 }
6083 break;
6084
6085 /*
6086 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
6087 */
6088 case '*':
6089 case '#':
6090#if POUND != '#'
6091 case POUND: /* pound sign (sometimes equal to '#') */
6092#endif
6093 case Ctrl_RSB: /* :tag or :tselect for current identifier */
6094 case ']': /* :tselect for current identifier */
6095 nv_ident(cap);
6096 break;
6097
6098 /*
6099 * ge and gE: go back to end of word
6100 */
6101 case 'e':
6102 case 'E':
6103 oap->motion_type = MCHAR;
6104 curwin->w_set_curswant = TRUE;
6105 oap->inclusive = TRUE;
6106 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
6107 clearopbeep(oap);
6108 break;
6109
6110 /*
6111 * "g CTRL-G": display info about cursor position
6112 */
6113 case Ctrl_G:
Bram Moolenaared767a22016-01-03 22:49:16 +01006114 cursor_pos_info(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115 break;
6116
6117 /*
6118 * "gi": start Insert at the last position.
6119 */
6120 case 'i':
6121 if (curbuf->b_last_insert.lnum != 0)
6122 {
6123 curwin->w_cursor = curbuf->b_last_insert;
6124 check_cursor_lnum();
6125 i = (int)STRLEN(ml_get_curline());
6126 if (curwin->w_cursor.col > (colnr_T)i)
6127 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128 if (virtual_active())
6129 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006130 curwin->w_cursor.col = i;
6131 }
6132 }
6133 cap->cmdchar = 'i';
6134 nv_edit(cap);
6135 break;
6136
6137 /*
6138 * "gI": Start insert in column 1.
6139 */
6140 case 'I':
6141 beginline(0);
6142 if (!checkclearopq(oap))
6143 invoke_edit(cap, FALSE, 'g', FALSE);
6144 break;
6145
6146#ifdef FEAT_SEARCHPATH
6147 /*
6148 * "gf": goto file, edit file under cursor
6149 * "]f" and "[f": can also be used.
6150 */
6151 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006152 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153 nv_gotofile(cap);
6154 break;
6155#endif
6156
6157 /* "g'm" and "g`m": jump to mark without setting pcmark */
6158 case '\'':
6159 cap->arg = TRUE;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02006160 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 case '`':
6162 nv_gomark(cap);
6163 break;
6164
6165 /*
6166 * "gs": Goto sleep.
6167 */
6168 case 's':
6169 do_sleep(cap->count1 * 1000L);
6170 break;
6171
6172 /*
6173 * "ga": Display the ascii value of the character under the
6174 * cursor. It is displayed in decimal, hex, and octal. -- webb
6175 */
6176 case 'a':
6177 do_ascii(NULL);
6178 break;
6179
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180 /*
6181 * "g8": Display the bytes used for the UTF-8 character under the
6182 * cursor. It is displayed in hex.
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006183 * "8g8" finds illegal byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184 */
6185 case '8':
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006186 if (cap->count0 == 8)
6187 utf_find_illegal();
6188 else
6189 show_utf8();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191
Bram Moolenaar60402d62017-04-20 18:54:50 +02006192 /* "g<": show scrollback text */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00006193 case '<':
6194 show_sb_text();
6195 break;
6196
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 /*
6198 * "gg": Goto the first line in file. With a count it goes to
6199 * that line number like for "G". -- webb
6200 */
6201 case 'g':
6202 cap->arg = FALSE;
6203 nv_goto(cap);
6204 break;
6205
6206 /*
6207 * Two-character operators:
6208 * "gq" Format text
6209 * "gw" Format text and keep cursor position
6210 * "g~" Toggle the case of the text.
6211 * "gu" Change text to lower case.
6212 * "gU" Change text to upper case.
6213 * "g?" rot13 encoding
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006214 * "g@" call 'operatorfunc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 */
6216 case 'q':
6217 case 'w':
6218 oap->cursor_start = curwin->w_cursor;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02006219 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220 case '~':
6221 case 'u':
6222 case 'U':
6223 case '?':
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006224 case '@':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225 nv_operator(cap);
6226 break;
6227
6228 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00006229 * "gd": Find first occurrence of pattern under the cursor in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230 * current function
6231 * "gD": idem, but in the current file.
6232 */
6233 case 'd':
6234 case 'D':
Bram Moolenaarf75a9632005-09-13 21:20:47 +00006235 nv_gd(oap, cap->nchar, (int)cap->count0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006236 break;
6237
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238 /*
6239 * g<*Mouse> : <C-*mouse>
6240 */
6241 case K_MIDDLEMOUSE:
6242 case K_MIDDLEDRAG:
6243 case K_MIDDLERELEASE:
6244 case K_LEFTMOUSE:
6245 case K_LEFTDRAG:
6246 case K_LEFTRELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01006247 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248 case K_RIGHTMOUSE:
6249 case K_RIGHTDRAG:
6250 case K_RIGHTRELEASE:
6251 case K_X1MOUSE:
6252 case K_X1DRAG:
6253 case K_X1RELEASE:
6254 case K_X2MOUSE:
6255 case K_X2DRAG:
6256 case K_X2RELEASE:
6257 mod_mask = MOD_MASK_CTRL;
6258 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
6259 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260
6261 case K_IGNORE:
6262 break;
6263
6264 /*
6265 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
6266 */
6267 case 'p':
6268 case 'P':
6269 nv_put(cap);
6270 break;
6271
6272#ifdef FEAT_BYTEOFF
6273 /* "go": goto byte count from start of buffer */
6274 case 'o':
6275 goto_byte(cap->count0);
6276 break;
6277#endif
6278
6279 /* "gQ": improved Ex mode */
6280 case 'Q':
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006281 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 {
6283 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006284 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 break;
6286 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006287
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288 if (!checkclearopq(oap))
6289 do_exmode(TRUE);
6290 break;
6291
6292#ifdef FEAT_JUMPLIST
6293 case ',':
6294 nv_pcmark(cap);
6295 break;
6296
6297 case ';':
6298 cap->count1 = -cap->count1;
6299 nv_pcmark(cap);
6300 break;
6301#endif
6302
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006303 case 't':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006304 if (!checkclearop(oap))
6305 goto_tabpage((int)cap->count0);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006306 break;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006307 case 'T':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006308 if (!checkclearop(oap))
6309 goto_tabpage(-(int)cap->count1);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006310 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006311
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006312 case '+':
6313 case '-': /* "g+" and "g-": undo or redo along the timeline */
6314 if (!checkclearopq(oap))
Bram Moolenaard3667a22006-03-16 21:35:52 +00006315 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
Bram Moolenaar730cde92010-06-27 05:18:54 +02006316 FALSE, FALSE, FALSE);
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006317 break;
6318
Bram Moolenaar071d4272004-06-13 20:20:40 +00006319 default:
6320 clearopbeep(oap);
6321 break;
6322 }
6323}
6324
6325/*
6326 * Handle "o" and "O" commands.
6327 */
6328 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006329n_opencmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330{
Bram Moolenaar860cae12010-06-05 23:22:07 +02006331#ifdef FEAT_CONCEAL
6332 linenr_T oldline = curwin->w_cursor.lnum;
6333#endif
6334
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 if (!checkclearopq(cap->oap))
6336 {
6337#ifdef FEAT_FOLDING
6338 if (cap->cmdchar == 'O')
6339 /* Open above the first line of a folded sequence of lines */
6340 (void)hasFolding(curwin->w_cursor.lnum,
6341 &curwin->w_cursor.lnum, NULL);
6342 else
6343 /* Open below the last line of a folded sequence of lines */
6344 (void)hasFolding(curwin->w_cursor.lnum,
6345 NULL, &curwin->w_cursor.lnum);
6346#endif
6347 if (u_save((linenr_T)(curwin->w_cursor.lnum -
6348 (cap->cmdchar == 'O' ? 1 : 0)),
6349 (linenr_T)(curwin->w_cursor.lnum +
6350 (cap->cmdchar == 'o' ? 1 : 0))
6351 ) == OK
6352 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02006353 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0,
6354 0) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02006356#ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02006357 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01006358 redrawWinline(curwin, oldline);
Bram Moolenaar860cae12010-06-05 23:22:07 +02006359#endif
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006360#ifdef FEAT_SYN_HL
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006361 if (curwin->w_p_cul)
6362 /* force redraw of cursorline */
6363 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006364#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006365 /* When '#' is in 'cpoptions' ignore the count. */
6366 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
6367 cap->count1 = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
6369 }
6370 }
6371}
6372
6373/*
6374 * "." command: redo last change.
6375 */
6376 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006377nv_dot(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006378{
6379 if (!checkclearopq(cap->oap))
6380 {
6381 /*
6382 * If "restart_edit" is TRUE, the last but one command is repeated
6383 * instead of the last command (inserting text). This is used for
6384 * CTRL-O <.> in insert mode.
6385 */
6386 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
6387 clearopbeep(cap->oap);
6388 }
6389}
6390
6391/*
6392 * CTRL-R: undo undo
6393 */
6394 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006395nv_redo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006396{
6397 if (!checkclearopq(cap->oap))
6398 {
6399 u_redo((int)cap->count1);
6400 curwin->w_set_curswant = TRUE;
6401 }
6402}
6403
6404/*
6405 * Handle "U" command.
6406 */
6407 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006408nv_Undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006409{
6410 /* In Visual mode and typing "gUU" triggers an operator */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006411 if (cap->oap->op_type == OP_UPPER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006412 {
6413 /* translate "gUU" to "gUgU" */
6414 cap->cmdchar = 'g';
6415 cap->nchar = 'U';
6416 nv_operator(cap);
6417 }
6418 else if (!checkclearopq(cap->oap))
6419 {
6420 u_undoline();
6421 curwin->w_set_curswant = TRUE;
6422 }
6423}
6424
6425/*
6426 * '~' command: If tilde is not an operator and Visual is off: swap case of a
6427 * single character.
6428 */
6429 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006430nv_tilde(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006432 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE)
Bram Moolenaarf2732452018-06-03 14:47:35 +02006433 {
6434#ifdef FEAT_JOB_CHANNEL
6435 if (bt_prompt(curbuf) && !prompt_curpos_editable())
6436 {
6437 clearopbeep(cap->oap);
6438 return;
6439 }
6440#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441 n_swapchar(cap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006442 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443 else
6444 nv_operator(cap);
6445}
6446
6447/*
6448 * Handle an operator command.
6449 * The actual work is done by do_pending_operator().
6450 */
6451 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006452nv_operator(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453{
6454 int op_type;
6455
6456 op_type = get_op_type(cap->cmdchar, cap->nchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006457#ifdef FEAT_JOB_CHANNEL
6458 if (bt_prompt(curbuf) && op_is_change(op_type) && !prompt_curpos_editable())
6459 {
6460 clearopbeep(cap->oap);
6461 return;
6462 }
6463#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006464
6465 if (op_type == cap->oap->op_type) /* double operator works on lines */
6466 nv_lineop(cap);
6467 else if (!checkclearop(cap->oap))
6468 {
6469 cap->oap->start = curwin->w_cursor;
6470 cap->oap->op_type = op_type;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006471#ifdef FEAT_EVAL
6472 set_op_var(op_type);
6473#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006474 }
6475}
6476
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006477#ifdef FEAT_EVAL
6478/*
6479 * Set v:operator to the characters for "optype".
6480 */
6481 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006482set_op_var(int optype)
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006483{
6484 char_u opchars[3];
6485
6486 if (optype == OP_NOP)
6487 set_vim_var_string(VV_OP, NULL, 0);
6488 else
6489 {
6490 opchars[0] = get_op_char(optype);
6491 opchars[1] = get_extra_op_char(optype);
6492 opchars[2] = NUL;
6493 set_vim_var_string(VV_OP, opchars, -1);
6494 }
6495}
6496#endif
6497
Bram Moolenaar071d4272004-06-13 20:20:40 +00006498/*
6499 * Handle linewise operator "dd", "yy", etc.
6500 *
6501 * "_" is is a strange motion command that helps make operators more logical.
6502 * It is actually implemented, but not documented in the real Vi. This motion
6503 * command actually refers to "the current line". Commands like "dd" and "yy"
6504 * are really an alternate form of "d_" and "y_". It does accept a count, so
6505 * "d3_" works to delete 3 lines.
6506 */
6507 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006508nv_lineop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006509{
6510 cap->oap->motion_type = MLINE;
6511 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
6512 clearopbeep(cap->oap);
Bram Moolenaar83dadaf2012-12-12 17:33:32 +01006513 else if ( (cap->oap->op_type == OP_DELETE /* only with linewise motions */
6514 && cap->oap->motion_force != 'v'
6515 && cap->oap->motion_force != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516 || cap->oap->op_type == OP_LSHIFT
6517 || cap->oap->op_type == OP_RSHIFT)
6518 beginline(BL_SOL | BL_FIX);
6519 else if (cap->oap->op_type != OP_YANK) /* 'Y' does not move cursor */
6520 beginline(BL_WHITE | BL_FIX);
6521}
6522
6523/*
6524 * <Home> command.
6525 */
6526 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006527nv_home(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006529 /* CTRL-HOME is like "gg" */
6530 if (mod_mask & MOD_MASK_CTRL)
6531 nv_goto(cap);
6532 else
6533 {
6534 cap->count0 = 1;
6535 nv_pipe(cap);
6536 }
Bram Moolenaara88d9682005-03-25 21:45:43 +00006537 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
6538 one-character line). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539}
6540
6541/*
6542 * "|" command.
6543 */
6544 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006545nv_pipe(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546{
6547 cap->oap->motion_type = MCHAR;
6548 cap->oap->inclusive = FALSE;
6549 beginline(0);
6550 if (cap->count0 > 0)
6551 {
6552 coladvance((colnr_T)(cap->count0 - 1));
6553 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
6554 }
6555 else
6556 curwin->w_curswant = 0;
6557 /* keep curswant at the column where we wanted to go, not where
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01006558 * we ended; differs if line is too short */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559 curwin->w_set_curswant = FALSE;
6560}
6561
6562/*
6563 * Handle back-word command "b" and "B".
6564 * cap->arg is 1 for "B"
6565 */
6566 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006567nv_bck_word(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006568{
6569 cap->oap->motion_type = MCHAR;
6570 cap->oap->inclusive = FALSE;
6571 curwin->w_set_curswant = TRUE;
6572 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
6573 clearopbeep(cap->oap);
6574#ifdef FEAT_FOLDING
6575 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6576 foldOpenCursor();
6577#endif
6578}
6579
6580/*
6581 * Handle word motion commands "e", "E", "w" and "W".
6582 * cap->arg is TRUE for "E" and "W".
6583 */
6584 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006585nv_wordcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586{
6587 int n;
6588 int word_end;
6589 int flag = FALSE;
Bram Moolenaardfefb982008-04-01 10:06:39 +00006590 pos_T startpos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591
6592 /*
6593 * Set inclusive for the "E" and "e" command.
6594 */
6595 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
6596 word_end = TRUE;
6597 else
6598 word_end = FALSE;
6599 cap->oap->inclusive = word_end;
6600
6601 /*
6602 * "cw" and "cW" are a special case.
6603 */
6604 if (!word_end && cap->oap->op_type == OP_CHANGE)
6605 {
6606 n = gchar_cursor();
6607 if (n != NUL) /* not an empty line */
6608 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01006609 if (VIM_ISWHITE(n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006610 {
6611 /*
6612 * Reproduce a funny Vi behaviour: "cw" on a blank only
6613 * changes one character, not all blanks until the start of
6614 * the next word. Only do this when the 'w' flag is included
6615 * in 'cpoptions'.
6616 */
6617 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
6618 {
6619 cap->oap->inclusive = TRUE;
6620 cap->oap->motion_type = MCHAR;
6621 return;
6622 }
6623 }
6624 else
6625 {
6626 /*
6627 * This is a little strange. To match what the real Vi does,
6628 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
6629 * that we are not on a space or a TAB. This seems impolite
6630 * at first, but it's really more what we mean when we say
6631 * 'cw'.
6632 * Another strangeness: When standing on the end of a word
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02006633 * "ce" will change until the end of the next word, but "cw"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006634 * will change only one character! This is done by setting
6635 * flag.
6636 */
6637 cap->oap->inclusive = TRUE;
6638 word_end = TRUE;
6639 flag = TRUE;
6640 }
6641 }
6642 }
6643
6644 cap->oap->motion_type = MCHAR;
6645 curwin->w_set_curswant = TRUE;
6646 if (word_end)
6647 n = end_word(cap->count1, cap->arg, flag, FALSE);
6648 else
6649 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
6650
Bram Moolenaardfefb982008-04-01 10:06:39 +00006651 /* Don't leave the cursor on the NUL past the end of line. Unless we
6652 * didn't move it forward. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006653 if (LT_POS(startpos, curwin->w_cursor))
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006654 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006655
6656 if (n == FAIL && cap->oap->op_type == OP_NOP)
6657 clearopbeep(cap->oap);
6658 else
6659 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661#ifdef FEAT_FOLDING
6662 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6663 foldOpenCursor();
6664#endif
6665 }
6666}
6667
6668/*
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006669 * Used after a movement command: If the cursor ends up on the NUL after the
6670 * end of the line, may move it back to the last character and make the motion
6671 * inclusive.
6672 */
6673 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006674adjust_cursor(oparg_T *oap)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006675{
6676 /* The cursor cannot remain on the NUL when:
6677 * - the column is > 0
6678 * - not in Visual mode or 'selection' is "o"
6679 * - 'virtualedit' is not "all" and not "onemore".
6680 */
6681 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006682 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01006683 && !virtual_active() && (ve_flags & VE_ONEMORE) == 0)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006684 {
6685 --curwin->w_cursor.col;
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006686 /* prevent cursor from moving on the trail byte */
6687 if (has_mbyte)
6688 mb_adjust_cursor();
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006689 oap->inclusive = TRUE;
6690 }
6691}
6692
6693/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006694 * "0" and "^" commands.
6695 * cap->arg is the argument for beginline().
6696 */
6697 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006698nv_beginline(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699{
6700 cap->oap->motion_type = MCHAR;
6701 cap->oap->inclusive = FALSE;
6702 beginline(cap->arg);
6703#ifdef FEAT_FOLDING
6704 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6705 foldOpenCursor();
6706#endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00006707 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
6708 one-character line). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709}
6710
Bram Moolenaar071d4272004-06-13 20:20:40 +00006711/*
6712 * In exclusive Visual mode, may include the last character.
6713 */
6714 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006715adjust_for_sel(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716{
6717 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006718 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006719 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006720 if (has_mbyte)
6721 inc_cursor();
6722 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006723 ++curwin->w_cursor.col;
6724 cap->oap->inclusive = FALSE;
6725 }
6726}
6727
6728/*
6729 * Exclude last character at end of Visual area for 'selection' == "exclusive".
6730 * Should check VIsual_mode before calling this.
6731 * Returns TRUE when backed up to the previous line.
6732 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02006733 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006734unadjust_for_sel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006735{
6736 pos_T *pp;
6737
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006738 if (*p_sel == 'e' && !EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006739 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006740 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741 pp = &curwin->w_cursor;
6742 else
6743 pp = &VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006744 if (pp->coladd > 0)
6745 --pp->coladd;
6746 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006747 if (pp->col > 0)
6748 {
6749 --pp->col;
Bram Moolenaar03a807a2011-07-07 15:08:58 +02006750 mb_adjustpos(curbuf, pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006751 }
6752 else if (pp->lnum > 1)
6753 {
6754 --pp->lnum;
6755 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
6756 return TRUE;
6757 }
6758 }
6759 return FALSE;
6760}
6761
6762/*
6763 * SELECT key in Normal or Visual mode: end of Select mode mapping.
6764 */
6765 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006766nv_select(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006767{
6768 if (VIsual_active)
6769 VIsual_select = TRUE;
6770 else if (VIsual_reselect)
6771 {
6772 cap->nchar = 'v'; /* fake "gv" command */
6773 cap->arg = TRUE;
6774 nv_g_cmd(cap);
6775 }
6776}
6777
Bram Moolenaar071d4272004-06-13 20:20:40 +00006778
6779/*
6780 * "G", "gg", CTRL-END, CTRL-HOME.
6781 * cap->arg is TRUE for "G".
6782 */
6783 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006784nv_goto(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785{
6786 linenr_T lnum;
6787
6788 if (cap->arg)
6789 lnum = curbuf->b_ml.ml_line_count;
6790 else
6791 lnum = 1L;
6792 cap->oap->motion_type = MLINE;
6793 setpcmark();
6794
6795 /* When a count is given, use it instead of the default lnum */
6796 if (cap->count0 != 0)
6797 lnum = cap->count0;
6798 if (lnum < 1L)
6799 lnum = 1L;
6800 else if (lnum > curbuf->b_ml.ml_line_count)
6801 lnum = curbuf->b_ml.ml_line_count;
6802 curwin->w_cursor.lnum = lnum;
6803 beginline(BL_SOL | BL_FIX);
6804#ifdef FEAT_FOLDING
6805 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
6806 foldOpenCursor();
6807#endif
6808}
6809
6810/*
6811 * CTRL-\ in Normal mode.
6812 */
6813 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006814nv_normal(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815{
6816 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
6817 {
6818 clearop(cap->oap);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00006819 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006820 clear_cmdline = TRUE; /* unshow mode later */
6821 restart_edit = 0;
6822#ifdef FEAT_CMDWIN
6823 if (cmdwin_type != 0)
6824 cmdwin_result = Ctrl_C;
6825#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826 if (VIsual_active)
6827 {
6828 end_visual_mode(); /* stop Visual */
6829 redraw_curbuf_later(INVERTED);
6830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006831 /* CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. */
6832 if (cap->nchar == Ctrl_G && p_im)
6833 restart_edit = 'a';
6834 }
6835 else
6836 clearopbeep(cap->oap);
6837}
6838
6839/*
6840 * ESC in Normal mode: beep, but don't flush buffers.
6841 * Don't even beep if we are canceling a command.
6842 */
6843 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006844nv_esc(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845{
6846 int no_reason;
6847
6848 no_reason = (cap->oap->op_type == OP_NOP
6849 && cap->opcount == 0
6850 && cap->count0 == 0
6851 && cap->oap->regname == 0
6852 && !p_im);
6853
6854 if (cap->arg) /* TRUE for CTRL-C */
6855 {
6856 if (restart_edit == 0
6857#ifdef FEAT_CMDWIN
6858 && cmdwin_type == 0
6859#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006860 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861 && no_reason)
Bram Moolenaara84a3dd2019-03-25 22:21:24 +01006862 {
6863 if (anyBufIsChanged())
6864 msg(_("Type :qa! and press <Enter> to abandon all changes and exit Vim"));
6865 else
6866 msg(_("Type :qa and press <Enter> to exit Vim"));
6867 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868
6869 /* Don't reset "restart_edit" when 'insertmode' is set, it won't be
6870 * set again below when halfway a mapping. */
6871 if (!p_im)
6872 restart_edit = 0;
6873#ifdef FEAT_CMDWIN
6874 if (cmdwin_type != 0)
6875 {
6876 cmdwin_result = K_IGNORE;
6877 got_int = FALSE; /* don't stop executing autocommands et al. */
6878 return;
6879 }
6880#endif
6881 }
6882
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883 if (VIsual_active)
6884 {
6885 end_visual_mode(); /* stop Visual */
6886 check_cursor_col(); /* make sure cursor is not beyond EOL */
6887 curwin->w_set_curswant = TRUE;
6888 redraw_curbuf_later(INVERTED);
6889 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006890 else if (no_reason)
Bram Moolenaar165bc692015-07-21 17:53:25 +02006891 vim_beep(BO_ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006892 clearop(cap->oap);
6893
6894 /* A CTRL-C is often used at the start of a menu. When 'insertmode' is
6895 * set return to Insert mode afterwards. */
Bram Moolenaare2c38102016-01-31 14:55:40 +01006896 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897 restart_edit = 'a';
6898}
6899
6900/*
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02006901 * Move the cursor for the "A" command.
6902 */
6903 void
6904set_cursor_for_append_to_line(void)
6905{
6906 curwin->w_set_curswant = TRUE;
6907 if (ve_flags == VE_ALL)
6908 {
6909 int save_State = State;
6910
6911 /* Pretend Insert mode here to allow the cursor on the
6912 * character past the end of the line */
6913 State = INSERT;
6914 coladvance((colnr_T)MAXCOL);
6915 State = save_State;
6916 }
6917 else
6918 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
6919}
6920
6921/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006922 * Handle "A", "a", "I", "i" and <Insert> commands.
Bram Moolenaarec2da362017-01-21 20:04:22 +01006923 * Also handle K_PS, start bracketed paste.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924 */
6925 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006926nv_edit(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927{
6928 /* <Insert> is equal to "i" */
6929 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
6930 cap->cmdchar = 'i';
6931
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932 /* in Visual mode "A" and "I" are an operator */
6933 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
Bram Moolenaareef9add2017-09-16 15:38:04 +02006934 {
6935#ifdef FEAT_TERMINAL
6936 if (term_in_normal_mode())
6937 {
6938 end_visual_mode();
6939 clearop(cap->oap);
6940 term_enter_job_mode();
6941 return;
6942 }
6943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006944 v_visop(cap);
Bram Moolenaareef9add2017-09-16 15:38:04 +02006945 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006946
6947 /* in Visual mode and after an operator "a" and "i" are for text objects */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006948 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
6949 && (cap->oap->op_type != OP_NOP || VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 {
6951#ifdef FEAT_TEXTOBJ
6952 nv_object(cap);
6953#else
6954 clearopbeep(cap->oap);
6955#endif
6956 }
Bram Moolenaar662d9382017-07-31 22:56:24 +02006957#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02006958 else if (term_in_normal_mode())
Bram Moolenaar662d9382017-07-31 22:56:24 +02006959 {
6960 clearop(cap->oap);
Bram Moolenaar6d819742017-08-06 14:57:49 +02006961 term_enter_job_mode();
Bram Moolenaar662d9382017-07-31 22:56:24 +02006962 return;
6963 }
6964#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006965 else if (!curbuf->b_p_ma && !p_im)
6966 {
6967 /* Only give this error when 'insertmode' is off. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006968 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969 clearop(cap->oap);
Bram Moolenaarec2da362017-01-21 20:04:22 +01006970 if (cap->cmdchar == K_PS)
6971 /* drop the pasted text */
6972 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006973 }
Bram Moolenaara1891842017-02-04 21:34:31 +01006974 else if (cap->cmdchar == K_PS && VIsual_active)
6975 {
6976 pos_T old_pos = curwin->w_cursor;
6977 pos_T old_visual = VIsual;
6978
6979 /* In Visual mode the selected text is deleted. */
6980 if (VIsual_mode == 'V' || curwin->w_cursor.lnum != VIsual.lnum)
6981 {
6982 shift_delete_registers();
6983 cap->oap->regname = '1';
6984 }
6985 else
6986 cap->oap->regname = '-';
6987 cap->cmdchar = 'd';
6988 cap->nchar = NUL;
6989 nv_operator(cap);
6990 do_pending_operator(cap, 0, FALSE);
6991 cap->cmdchar = K_PS;
6992
6993 /* When the last char in the line was deleted then append. Detect this
6994 * by checking if the cursor moved to before the Visual area. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006995 if (*ml_get_cursor() != NUL && LT_POS(curwin->w_cursor, old_pos)
6996 && LT_POS(curwin->w_cursor, old_visual))
Bram Moolenaara1891842017-02-04 21:34:31 +01006997 inc_cursor();
6998
6999 /* Insert to replace the deleted text with the pasted text. */
7000 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7001 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002 else if (!checkclearopq(cap->oap))
7003 {
7004 switch (cap->cmdchar)
7005 {
7006 case 'A': /* "A"ppend after the line */
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007007 set_cursor_for_append_to_line();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008 break;
7009
7010 case 'I': /* "I"nsert before the first non-blank */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007011 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
7012 beginline(BL_WHITE);
7013 else
7014 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007015 break;
7016
Bram Moolenaara1891842017-02-04 21:34:31 +01007017 case K_PS:
7018 /* Bracketed paste works like "a"ppend, unless the cursor is in
7019 * the first column, then it inserts. */
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007020 if (curwin->w_cursor.col == 0)
7021 break;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02007022 /* FALLTHROUGH */
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007023
Bram Moolenaar071d4272004-06-13 20:20:40 +00007024 case 'a': /* "a"ppend is like "i"nsert on the next character. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025 /* increment coladd when in virtual space, increment the
7026 * column otherwise, also to append after an unprintable char */
7027 if (virtual_active()
7028 && (curwin->w_cursor.coladd > 0
7029 || *ml_get_cursor() == NUL
7030 || *ml_get_cursor() == TAB))
7031 curwin->w_cursor.coladd++;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01007032 else if (*ml_get_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033 inc_cursor();
7034 break;
7035 }
7036
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
7038 {
7039 int save_State = State;
7040
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02007041 /* Pretend Insert mode here to allow the cursor on the
Bram Moolenaar071d4272004-06-13 20:20:40 +00007042 * character past the end of the line */
7043 State = INSERT;
7044 coladvance(getviscol());
7045 State = save_State;
7046 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047
7048 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7049 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01007050 else if (cap->cmdchar == K_PS)
7051 /* drop the pasted text */
7052 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053}
7054
7055/*
7056 * Invoke edit() and take care of "restart_edit" and the return value.
7057 */
7058 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007059invoke_edit(
7060 cmdarg_T *cap,
7061 int repl, /* "r" or "gr" command */
7062 int cmd,
7063 int startln)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064{
7065 int restart_edit_save = 0;
7066
7067 /* Complicated: When the user types "a<C-O>a" we don't want to do Insert
7068 * mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
7069 * it. */
7070 if (repl || !stuff_empty())
7071 restart_edit_save = restart_edit;
7072 else
7073 restart_edit_save = 0;
7074
7075 /* Always reset "restart_edit", this is not a restarted edit. */
7076 restart_edit = 0;
7077
7078 if (edit(cmd, startln, cap->count1))
7079 cap->retval |= CA_COMMAND_BUSY;
7080
7081 if (restart_edit == 0)
7082 restart_edit = restart_edit_save;
7083}
7084
7085#ifdef FEAT_TEXTOBJ
7086/*
7087 * "a" or "i" while an operator is pending or in Visual mode: object motion.
7088 */
7089 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007090nv_object(
7091 cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092{
7093 int flag;
7094 int include;
7095 char_u *mps_save;
7096
7097 if (cap->cmdchar == 'i')
7098 include = FALSE; /* "ix" = inner object: exclude white space */
7099 else
7100 include = TRUE; /* "ax" = an object: include white space */
7101
7102 /* Make sure (), [], {} and <> are in 'matchpairs' */
7103 mps_save = curbuf->b_p_mps;
7104 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
7105
7106 switch (cap->nchar)
7107 {
7108 case 'w': /* "aw" = a word */
7109 flag = current_word(cap->oap, cap->count1, include, FALSE);
7110 break;
7111 case 'W': /* "aW" = a WORD */
7112 flag = current_word(cap->oap, cap->count1, include, TRUE);
7113 break;
7114 case 'b': /* "ab" = a braces block */
7115 case '(':
7116 case ')':
7117 flag = current_block(cap->oap, cap->count1, include, '(', ')');
7118 break;
7119 case 'B': /* "aB" = a Brackets block */
7120 case '{':
7121 case '}':
7122 flag = current_block(cap->oap, cap->count1, include, '{', '}');
7123 break;
7124 case '[': /* "a[" = a [] block */
7125 case ']':
7126 flag = current_block(cap->oap, cap->count1, include, '[', ']');
7127 break;
7128 case '<': /* "a<" = a <> block */
7129 case '>':
7130 flag = current_block(cap->oap, cap->count1, include, '<', '>');
7131 break;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00007132 case 't': /* "at" = a tag block (xml and html) */
Bram Moolenaarb6c27352015-03-05 19:57:49 +01007133 /* Do not adjust oap->end in do_pending_operator()
7134 * otherwise there are different results for 'dit'
7135 * (note leading whitespace in last line):
7136 * 1) <b> 2) <b>
7137 * foobar foobar
7138 * </b> </b>
7139 */
7140 cap->retval |= CA_NO_ADJ_OP_END;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00007141 flag = current_tagblock(cap->oap, cap->count1, include);
7142 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007143 case 'p': /* "ap" = a paragraph */
7144 flag = current_par(cap->oap, cap->count1, include, 'p');
7145 break;
7146 case 's': /* "as" = a sentence */
7147 flag = current_sent(cap->oap, cap->count1, include);
7148 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007149 case '"': /* "a"" = a double quoted string */
7150 case '\'': /* "a'" = a single quoted string */
7151 case '`': /* "a`" = a backtick quoted string */
7152 flag = current_quote(cap->oap, cap->count1, include,
7153 cap->nchar);
7154 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155#if 0 /* TODO */
7156 case 'S': /* "aS" = a section */
7157 case 'f': /* "af" = a filename */
7158 case 'u': /* "au" = a URL */
7159#endif
7160 default:
7161 flag = FAIL;
7162 break;
7163 }
7164
7165 curbuf->b_p_mps = mps_save;
7166 if (flag == FAIL)
7167 clearopbeep(cap->oap);
7168 adjust_cursor_col();
7169 curwin->w_set_curswant = TRUE;
7170}
7171#endif
7172
7173/*
7174 * "q" command: Start/stop recording.
7175 * "q:", "q/", "q?": edit command-line in command-line window.
7176 */
7177 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007178nv_record(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179{
7180 if (cap->oap->op_type == OP_FORMAT)
7181 {
7182 /* "gqq" is the same as "gqgq": format line */
7183 cap->cmdchar = 'g';
7184 cap->nchar = 'q';
7185 nv_operator(cap);
7186 }
7187 else if (!checkclearop(cap->oap))
7188 {
7189#ifdef FEAT_CMDWIN
7190 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
7191 {
7192 stuffcharReadbuff(cap->nchar);
7193 stuffcharReadbuff(K_CMDWIN);
7194 }
7195 else
7196#endif
7197 /* (stop) recording into a named register, unless executing a
7198 * register */
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02007199 if (reg_executing == 0 && do_record(cap->nchar) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007200 clearopbeep(cap->oap);
7201 }
7202}
7203
7204/*
7205 * Handle the "@r" command.
7206 */
7207 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007208nv_at(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007209{
7210 if (checkclearop(cap->oap))
7211 return;
7212#ifdef FEAT_EVAL
7213 if (cap->nchar == '=')
7214 {
7215 if (get_expr_register() == NUL)
7216 return;
7217 }
7218#endif
7219 while (cap->count1-- && !got_int)
7220 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00007221 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222 {
7223 clearopbeep(cap->oap);
7224 break;
7225 }
7226 line_breakcheck();
7227 }
7228}
7229
7230/*
7231 * Handle the CTRL-U and CTRL-D commands.
7232 */
7233 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007234nv_halfpage(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007235{
7236 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
7237 || (cap->cmdchar == Ctrl_D
7238 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
7239 clearopbeep(cap->oap);
7240 else if (!checkclearop(cap->oap))
7241 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
7242}
7243
7244/*
7245 * Handle "J" or "gJ" command.
7246 */
7247 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007248nv_join(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007249{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250 if (VIsual_active) /* join the visual lines */
7251 nv_operator(cap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007252 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007253 {
7254 if (cap->count0 <= 1)
7255 cap->count0 = 2; /* default for join is two lines! */
7256 if (curwin->w_cursor.lnum + cap->count0 - 1 >
7257 curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007258 {
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007259 /* can't join when on the last line */
7260 if (cap->count0 <= 2)
7261 {
7262 clearopbeep(cap->oap);
7263 return;
7264 }
7265 cap->count0 = curbuf->b_ml.ml_line_count
7266 - curwin->w_cursor.lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267 }
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007268
7269 prep_redo(cap->oap->regname, cap->count0,
7270 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
7271 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272 }
7273}
7274
7275/*
7276 * "P", "gP", "p" and "gp" commands.
7277 */
7278 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007279nv_put(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007280{
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007281 nv_put_opt(cap, FALSE);
7282}
7283
7284/*
7285 * "P", "gP", "p" and "gp" commands.
7286 * "fix_indent" is TRUE for "[p", "[P", "]p" and "]P".
7287 */
7288 static void
7289nv_put_opt(cmdarg_T *cap, int fix_indent)
7290{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007291 int regname = 0;
7292 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007293 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007294 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007295 int dir;
7296 int flags = 0;
7297
7298 if (cap->oap->op_type != OP_NOP)
7299 {
7300#ifdef FEAT_DIFF
7301 /* "dp" is ":diffput" */
7302 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
7303 {
7304 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007305 nv_diffgetput(TRUE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007306 }
7307 else
7308#endif
7309 clearopbeep(cap->oap);
7310 }
Bram Moolenaarf2732452018-06-03 14:47:35 +02007311#ifdef FEAT_JOB_CHANNEL
7312 else if (bt_prompt(curbuf) && !prompt_curpos_editable())
7313 {
7314 clearopbeep(cap->oap);
7315 }
7316#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007317 else
7318 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007319 if (fix_indent)
7320 {
7321 dir = (cap->cmdchar == ']' && cap->nchar == 'p')
7322 ? FORWARD : BACKWARD;
7323 flags |= PUT_FIXINDENT;
7324 }
7325 else
7326 dir = (cap->cmdchar == 'P'
7327 || (cap->cmdchar == 'g' && cap->nchar == 'P'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328 ? BACKWARD : FORWARD;
7329 prep_redo_cmd(cap);
7330 if (cap->cmdchar == 'g')
7331 flags |= PUT_CURSEND;
7332
Bram Moolenaar071d4272004-06-13 20:20:40 +00007333 if (VIsual_active)
7334 {
7335 /* Putting in Visual mode: The put text replaces the selected
7336 * text. First delete the selected text, then put the new text.
7337 * Need to save and restore the registers that the delete
7338 * overwrites if the old contents is being put.
7339 */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007340 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341 regname = cap->oap->regname;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007342#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007343 adjust_clip_reg(&regname);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007344#endif
Bram Moolenaar7d311c52014-02-22 23:49:35 +01007345 if (regname == 0 || regname == '"'
Bram Moolenaarba6e8582012-12-12 18:20:32 +01007346 || VIM_ISDIGIT(regname) || regname == '-'
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007347#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348 || (clip_unnamed && (regname == '*' || regname == '+'))
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007349#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350
7351 )
7352 {
Bram Moolenaarba6e8582012-12-12 18:20:32 +01007353 /* The delete is going to overwrite the register we want to
Bram Moolenaar071d4272004-06-13 20:20:40 +00007354 * put, save it first. */
7355 reg1 = get_register(regname, TRUE);
7356 }
7357
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007358 // Now delete the selected text. Avoid messages here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007359 cap->cmdchar = 'd';
7360 cap->nchar = NUL;
7361 cap->oap->regname = NUL;
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007362 ++msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007363 nv_operator(cap);
7364 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007365 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007366 --msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007367
7368 /* delete PUT_LINE_BACKWARD; */
7369 cap->oap->regname = regname;
7370
7371 if (reg1 != NULL)
7372 {
7373 /* Delete probably changed the register we want to put, save
7374 * it first. Then put back what was there before the delete. */
7375 reg2 = get_register(regname, FALSE);
7376 put_register(regname, reg1);
7377 }
7378
7379 /* When deleted a linewise Visual area, put the register as
7380 * lines to avoid it joined with the next line. When deletion was
7381 * characterwise, split a line when putting lines. */
7382 if (VIsual_mode == 'V')
7383 flags |= PUT_LINE;
7384 else if (VIsual_mode == 'v')
7385 flags |= PUT_LINE_SPLIT;
7386 if (VIsual_mode == Ctrl_V && dir == FORWARD)
7387 flags |= PUT_LINE_FORWARD;
7388 dir = BACKWARD;
7389 if ((VIsual_mode != 'V'
7390 && curwin->w_cursor.col < curbuf->b_op_start.col)
7391 || (VIsual_mode == 'V'
7392 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
7393 /* cursor is at the end of the line or end of file, put
7394 * forward. */
7395 dir = FORWARD;
Bram Moolenaarec11aef2013-09-22 15:23:44 +02007396 /* May have been reset in do_put(). */
7397 VIsual_active = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007398 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007399 do_put(cap->oap->regname, dir, cap->count1, flags);
7400
Bram Moolenaar071d4272004-06-13 20:20:40 +00007401 /* If a register was saved, put it back now. */
7402 if (reg2 != NULL)
7403 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007404
7405 /* What to reselect with "gv"? Selecting the just put text seems to
7406 * be the most useful, since the original text was removed. */
7407 if (was_visual)
7408 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007409 curbuf->b_visual.vi_start = curbuf->b_op_start;
7410 curbuf->b_visual.vi_end = curbuf->b_op_end;
Bram Moolenaard29c6fe2015-11-19 20:11:54 +01007411 /* need to adjust cursor position */
7412 if (*p_sel == 'e')
7413 inc(&curbuf->b_visual.vi_end);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007414 }
7415
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007416 /* When all lines were selected and deleted do_put() leaves an empty
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007417 * line that needs to be deleted now. */
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007418 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007419 {
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007420 ml_delete(curbuf->b_ml.ml_line_count, TRUE);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007421 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1);
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007422
7423 /* If the cursor was in that line, move it to the end of the last
7424 * line. */
7425 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7426 {
7427 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7428 coladvance((colnr_T)MAXCOL);
7429 }
7430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007431 auto_format(FALSE, TRUE);
7432 }
7433}
7434
7435/*
7436 * "o" and "O" commands.
7437 */
7438 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007439nv_open(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007440{
7441#ifdef FEAT_DIFF
7442 /* "do" is ":diffget" */
7443 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
7444 {
7445 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007446 nv_diffgetput(FALSE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007447 }
7448 else
7449#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450 if (VIsual_active) /* switch start and end of visual */
7451 v_swap_corners(cap->cmdchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007452#ifdef FEAT_JOB_CHANNEL
7453 else if (bt_prompt(curbuf))
Bram Moolenaarf2732452018-06-03 14:47:35 +02007454 clearopbeep(cap->oap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007455#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007456 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007457 n_opencmd(cap);
7458}
7459
Bram Moolenaar071d4272004-06-13 20:20:40 +00007460#ifdef FEAT_NETBEANS_INTG
7461 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007462nv_nbcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007463{
7464 netbeans_keycommand(cap->nchar);
7465}
7466#endif
7467
7468#ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007469 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007470nv_drop(cmdarg_T *cap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007471{
7472 do_put('~', BACKWARD, 1L, PUT_CURSEND);
7473}
7474#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00007475
Bram Moolenaar3918c952005-03-15 22:34:55 +00007476/*
7477 * Trigger CursorHold event.
7478 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
7479 * input buffer. "did_cursorhold" is set to avoid retriggering.
7480 */
Bram Moolenaar3918c952005-03-15 22:34:55 +00007481 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007482nv_cursorhold(cmdarg_T *cap)
Bram Moolenaar3918c952005-03-15 22:34:55 +00007483{
7484 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
7485 did_cursorhold = TRUE;
Bram Moolenaarfc735152005-03-22 22:54:12 +00007486 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar3918c952005-03-15 22:34:55 +00007487}