blob: 1ef65092449ff7c80371d341a7dc115f2d94d737 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * normal.c: Contains the main routine for processing characters in command
11 * mode. Communicates closely with the code in ops.c to handle
12 * the operators.
13 */
14
15#include "vim.h"
16
Bram Moolenaar792cf5e2019-09-30 23:12:16 +020017static int VIsual_mode_orig = NUL; // saved Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +000018static int restart_VIsual_select = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
Bram Moolenaarf82a2d22010-12-17 18:53:01 +010020#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010021static void set_vcount_ca(cmdarg_T *cap, int *set_prevcount);
Bram Moolenaarf82a2d22010-12-17 18:53:01 +010022#endif
Bram Moolenaareae1b912019-05-09 15:12:55 +020023static int nv_compare(const void *s1, const void *s2);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010024static void unshift_special(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000025#ifdef FEAT_CMDL_INFO
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010026static void del_from_showcmd(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000027#endif
28
29/*
30 * nv_*(): functions called to handle Normal and Visual mode commands.
31 * n_*(): functions called to handle Normal mode commands.
32 * v_*(): functions called to handle Visual mode commands.
33 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010034static void nv_ignore(cmdarg_T *cap);
35static void nv_nop(cmdarg_T *cap);
36static void nv_error(cmdarg_T *cap);
37static void nv_help(cmdarg_T *cap);
38static void nv_addsub(cmdarg_T *cap);
39static void nv_page(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010040static void nv_zet(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000041#ifdef FEAT_GUI
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010042static void nv_ver_scrollbar(cmdarg_T *cap);
43static void nv_hor_scrollbar(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000044#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +000045#ifdef FEAT_GUI_TABLINE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010046static void nv_tabline(cmdarg_T *cap);
47static void nv_tabmenu(cmdarg_T *cap);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000048#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010049static void nv_exmode(cmdarg_T *cap);
50static void nv_colon(cmdarg_T *cap);
51static void nv_ctrlg(cmdarg_T *cap);
52static void nv_ctrlh(cmdarg_T *cap);
53static void nv_clear(cmdarg_T *cap);
54static void nv_ctrlo(cmdarg_T *cap);
55static void nv_hat(cmdarg_T *cap);
56static void nv_Zet(cmdarg_T *cap);
57static void nv_ident(cmdarg_T *cap);
58static void nv_tagpop(cmdarg_T *cap);
59static void nv_scroll(cmdarg_T *cap);
60static void nv_right(cmdarg_T *cap);
61static void nv_left(cmdarg_T *cap);
62static void nv_up(cmdarg_T *cap);
63static void nv_down(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010064static void nv_end(cmdarg_T *cap);
65static void nv_dollar(cmdarg_T *cap);
66static void nv_search(cmdarg_T *cap);
67static void nv_next(cmdarg_T *cap);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +020068static int normal_search(cmdarg_T *cap, int dir, char_u *pat, int opt, int *wrapped);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010069static void nv_csearch(cmdarg_T *cap);
70static void nv_brackets(cmdarg_T *cap);
71static void nv_percent(cmdarg_T *cap);
72static void nv_brace(cmdarg_T *cap);
73static void nv_mark(cmdarg_T *cap);
74static void nv_findpar(cmdarg_T *cap);
75static void nv_undo(cmdarg_T *cap);
76static void nv_kundo(cmdarg_T *cap);
77static void nv_Replace(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010078static void nv_replace(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010079static void nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos);
80static void v_visop(cmdarg_T *cap);
81static void nv_subst(cmdarg_T *cap);
82static void nv_abbrev(cmdarg_T *cap);
83static void nv_optrans(cmdarg_T *cap);
84static void nv_gomark(cmdarg_T *cap);
85static void nv_pcmark(cmdarg_T *cap);
86static void nv_regname(cmdarg_T *cap);
87static void nv_visual(cmdarg_T *cap);
88static void n_start_visual_mode(int c);
89static void nv_window(cmdarg_T *cap);
90static void nv_suspend(cmdarg_T *cap);
91static void nv_g_cmd(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010092static void nv_dot(cmdarg_T *cap);
93static void nv_redo(cmdarg_T *cap);
94static void nv_Undo(cmdarg_T *cap);
95static void nv_tilde(cmdarg_T *cap);
96static void nv_operator(cmdarg_T *cap);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +000097#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010098static void set_op_var(int optype);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +000099#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100100static void nv_lineop(cmdarg_T *cap);
101static void nv_home(cmdarg_T *cap);
102static void nv_pipe(cmdarg_T *cap);
103static void nv_bck_word(cmdarg_T *cap);
104static void nv_wordcmd(cmdarg_T *cap);
105static void nv_beginline(cmdarg_T *cap);
106static void adjust_cursor(oparg_T *oap);
107static void adjust_for_sel(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100108static void nv_select(cmdarg_T *cap);
109static void nv_goto(cmdarg_T *cap);
110static void nv_normal(cmdarg_T *cap);
111static void nv_esc(cmdarg_T *oap);
112static void nv_edit(cmdarg_T *cap);
113static void invoke_edit(cmdarg_T *cap, int repl, int cmd, int startln);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114#ifdef FEAT_TEXTOBJ
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100115static void nv_object(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100117static void nv_record(cmdarg_T *cap);
118static void nv_at(cmdarg_T *cap);
119static void nv_halfpage(cmdarg_T *cap);
120static void nv_join(cmdarg_T *cap);
121static void nv_put(cmdarg_T *cap);
Bram Moolenaar0ab190c2019-05-23 23:27:36 +0200122static void nv_put_opt(cmdarg_T *cap, int fix_indent);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100123static void nv_open(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100125static void nv_nbcmd(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126#endif
127#ifdef FEAT_DND
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100128static void nv_drop(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100130static void nv_cursorhold(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131
Bram Moolenaar9fd01c62008-11-01 12:52:38 +0000132static char *e_noident = N_("E349: No identifier under cursor");
133
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134/*
135 * Function to be called for a Normal or Visual mode command.
136 * The argument is a cmdarg_T.
137 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100138typedef void (*nv_func_T)(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100140// Values for cmd_flags.
141#define NV_NCH 0x01 // may need to get a second char
142#define NV_NCH_NOP (0x02|NV_NCH) // get second char when no operator pending
143#define NV_NCH_ALW (0x04|NV_NCH) // always get a second char
144#define NV_LANG 0x08 // second char needs language adjustment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100146#define NV_SS 0x10 // may start selection
147#define NV_SSS 0x20 // may start selection with shift modifier
148#define NV_STS 0x40 // may stop selection without shift modif.
149#define NV_RL 0x80 // 'rightleft' modifies command
150#define NV_KEEPREG 0x100 // don't clear regname
151#define NV_NCW 0x200 // not allowed in command-line window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152
153/*
154 * Generally speaking, every Normal mode command should either clear any
155 * pending operator (with *clearop*()), or set the motion type variable
156 * oap->motion_type.
157 *
158 * When a cursor motion command is made, it is marked as being a character or
159 * line oriented motion. Then, if an operator is in effect, the operation
160 * becomes character or line oriented accordingly.
161 */
162
163/*
164 * This table contains one entry for every Normal or Visual mode command.
165 * The order doesn't matter, init_normal_cmds() will create a sorted index.
166 * It is faster when all keys from zero to '~' are present.
167 */
168static const struct nv_cmd
169{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100170 int cmd_char; // (first) command character
171 nv_func_T cmd_func; // function for this command
172 short_u cmd_flags; // NV_ flags
173 short cmd_arg; // value for ca.arg
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174} nv_cmds[] =
175{
176 {NUL, nv_error, 0, 0},
177 {Ctrl_A, nv_addsub, 0, 0},
178 {Ctrl_B, nv_page, NV_STS, BACKWARD},
179 {Ctrl_C, nv_esc, 0, TRUE},
180 {Ctrl_D, nv_halfpage, 0, 0},
181 {Ctrl_E, nv_scroll_line, 0, TRUE},
182 {Ctrl_F, nv_page, NV_STS, FORWARD},
183 {Ctrl_G, nv_ctrlg, 0, 0},
184 {Ctrl_H, nv_ctrlh, 0, 0},
185 {Ctrl_I, nv_pcmark, 0, 0},
186 {NL, nv_down, 0, FALSE},
187 {Ctrl_K, nv_error, 0, 0},
188 {Ctrl_L, nv_clear, 0, 0},
Bram Moolenaar2c519cf2019-03-21 21:45:34 +0100189 {CAR, nv_down, 0, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190 {Ctrl_N, nv_down, NV_STS, FALSE},
191 {Ctrl_O, nv_ctrlo, 0, 0},
192 {Ctrl_P, nv_up, NV_STS, FALSE},
Bram Moolenaardf177f62005-02-22 08:39:57 +0000193 {Ctrl_Q, nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 {Ctrl_R, nv_redo, 0, 0},
195 {Ctrl_S, nv_ignore, 0, 0},
196 {Ctrl_T, nv_tagpop, NV_NCW, 0},
197 {Ctrl_U, nv_halfpage, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 {Ctrl_V, nv_visual, 0, FALSE},
199 {'V', nv_visual, 0, FALSE},
200 {'v', nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 {Ctrl_W, nv_window, 0, 0},
202 {Ctrl_X, nv_addsub, 0, 0},
203 {Ctrl_Y, nv_scroll_line, 0, FALSE},
204 {Ctrl_Z, nv_suspend, 0, 0},
205 {ESC, nv_esc, 0, FALSE},
206 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0},
207 {Ctrl_RSB, nv_ident, NV_NCW, 0},
208 {Ctrl_HAT, nv_hat, NV_NCW, 0},
209 {Ctrl__, nv_error, 0, 0},
210 {' ', nv_right, 0, 0},
211 {'!', nv_operator, 0, 0},
212 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0},
213 {'#', nv_ident, 0, 0},
214 {'$', nv_dollar, 0, 0},
215 {'%', nv_percent, 0, 0},
216 {'&', nv_optrans, 0, 0},
217 {'\'', nv_gomark, NV_NCH_ALW, TRUE},
218 {'(', nv_brace, 0, BACKWARD},
219 {')', nv_brace, 0, FORWARD},
220 {'*', nv_ident, 0, 0},
221 {'+', nv_down, 0, TRUE},
222 {',', nv_csearch, 0, TRUE},
223 {'-', nv_up, 0, TRUE},
224 {'.', nv_dot, NV_KEEPREG, 0},
225 {'/', nv_search, 0, FALSE},
226 {'0', nv_beginline, 0, 0},
227 {'1', nv_ignore, 0, 0},
228 {'2', nv_ignore, 0, 0},
229 {'3', nv_ignore, 0, 0},
230 {'4', nv_ignore, 0, 0},
231 {'5', nv_ignore, 0, 0},
232 {'6', nv_ignore, 0, 0},
233 {'7', nv_ignore, 0, 0},
234 {'8', nv_ignore, 0, 0},
235 {'9', nv_ignore, 0, 0},
236 {':', nv_colon, 0, 0},
237 {';', nv_csearch, 0, FALSE},
238 {'<', nv_operator, NV_RL, 0},
239 {'=', nv_operator, 0, 0},
240 {'>', nv_operator, NV_RL, 0},
241 {'?', nv_search, 0, FALSE},
242 {'@', nv_at, NV_NCH_NOP, FALSE},
243 {'A', nv_edit, 0, 0},
244 {'B', nv_bck_word, 0, 1},
245 {'C', nv_abbrev, NV_KEEPREG, 0},
246 {'D', nv_abbrev, NV_KEEPREG, 0},
247 {'E', nv_wordcmd, 0, TRUE},
248 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
249 {'G', nv_goto, 0, TRUE},
250 {'H', nv_scroll, 0, 0},
251 {'I', nv_edit, 0, 0},
252 {'J', nv_join, 0, 0},
253 {'K', nv_ident, 0, 0},
254 {'L', nv_scroll, 0, 0},
255 {'M', nv_scroll, 0, 0},
256 {'N', nv_next, 0, SEARCH_REV},
257 {'O', nv_open, 0, 0},
258 {'P', nv_put, 0, 0},
259 {'Q', nv_exmode, NV_NCW, 0},
260 {'R', nv_Replace, 0, FALSE},
261 {'S', nv_subst, NV_KEEPREG, 0},
262 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
263 {'U', nv_Undo, 0, 0},
264 {'W', nv_wordcmd, 0, TRUE},
265 {'X', nv_abbrev, NV_KEEPREG, 0},
266 {'Y', nv_abbrev, NV_KEEPREG, 0},
267 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0},
268 {'[', nv_brackets, NV_NCH_ALW, BACKWARD},
269 {'\\', nv_error, 0, 0},
270 {']', nv_brackets, NV_NCH_ALW, FORWARD},
271 {'^', nv_beginline, 0, BL_WHITE | BL_FIX},
272 {'_', nv_lineop, 0, 0},
273 {'`', nv_gomark, NV_NCH_ALW, FALSE},
274 {'a', nv_edit, NV_NCH, 0},
275 {'b', nv_bck_word, 0, 0},
276 {'c', nv_operator, 0, 0},
277 {'d', nv_operator, 0, 0},
278 {'e', nv_wordcmd, 0, FALSE},
279 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
280 {'g', nv_g_cmd, NV_NCH_ALW, FALSE},
281 {'h', nv_left, NV_RL, 0},
282 {'i', nv_edit, NV_NCH, 0},
283 {'j', nv_down, 0, FALSE},
284 {'k', nv_up, 0, FALSE},
285 {'l', nv_right, NV_RL, 0},
286 {'m', nv_mark, NV_NCH_NOP, 0},
287 {'n', nv_next, 0, 0},
288 {'o', nv_open, 0, 0},
289 {'p', nv_put, 0, 0},
290 {'q', nv_record, NV_NCH, 0},
291 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0},
292 {'s', nv_subst, NV_KEEPREG, 0},
293 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
294 {'u', nv_undo, 0, 0},
295 {'w', nv_wordcmd, 0, FALSE},
296 {'x', nv_abbrev, NV_KEEPREG, 0},
297 {'y', nv_operator, 0, 0},
298 {'z', nv_zet, NV_NCH_ALW, 0},
299 {'{', nv_findpar, 0, BACKWARD},
300 {'|', nv_pipe, 0, 0},
301 {'}', nv_findpar, 0, FORWARD},
302 {'~', nv_tilde, 0, 0},
303
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100304 // pound sign
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 {POUND, nv_ident, 0, 0},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200306 {K_MOUSEUP, nv_mousescroll, 0, MSCR_UP},
307 {K_MOUSEDOWN, nv_mousescroll, 0, MSCR_DOWN},
308 {K_MOUSELEFT, nv_mousescroll, 0, MSCR_LEFT},
309 {K_MOUSERIGHT, nv_mousescroll, 0, MSCR_RIGHT},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 {K_LEFTMOUSE, nv_mouse, 0, 0},
311 {K_LEFTMOUSE_NM, nv_mouse, 0, 0},
312 {K_LEFTDRAG, nv_mouse, 0, 0},
313 {K_LEFTRELEASE, nv_mouse, 0, 0},
314 {K_LEFTRELEASE_NM, nv_mouse, 0, 0},
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100315 {K_MOUSEMOVE, nv_mouse, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 {K_MIDDLEMOUSE, nv_mouse, 0, 0},
317 {K_MIDDLEDRAG, nv_mouse, 0, 0},
318 {K_MIDDLERELEASE, nv_mouse, 0, 0},
319 {K_RIGHTMOUSE, nv_mouse, 0, 0},
320 {K_RIGHTDRAG, nv_mouse, 0, 0},
321 {K_RIGHTRELEASE, nv_mouse, 0, 0},
322 {K_X1MOUSE, nv_mouse, 0, 0},
323 {K_X1DRAG, nv_mouse, 0, 0},
324 {K_X1RELEASE, nv_mouse, 0, 0},
325 {K_X2MOUSE, nv_mouse, 0, 0},
326 {K_X2DRAG, nv_mouse, 0, 0},
327 {K_X2RELEASE, nv_mouse, 0, 0},
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000328 {K_IGNORE, nv_ignore, NV_KEEPREG, 0},
Bram Moolenaarebefac62005-12-28 22:39:57 +0000329 {K_NOP, nv_nop, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330 {K_INS, nv_edit, 0, 0},
331 {K_KINS, nv_edit, 0, 0},
332 {K_BS, nv_ctrlh, 0, 0},
333 {K_UP, nv_up, NV_SSS|NV_STS, FALSE},
334 {K_S_UP, nv_page, NV_SS, BACKWARD},
335 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE},
336 {K_S_DOWN, nv_page, NV_SS, FORWARD},
337 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0},
338 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0},
339 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1},
340 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0},
341 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE},
342 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE},
343 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
344 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
345 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
346 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
347 {K_END, nv_end, NV_SSS|NV_STS, FALSE},
348 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 {K_S_END, nv_end, NV_SS, FALSE},
350 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE},
351 {K_HOME, nv_home, NV_SSS|NV_STS, 0},
352 {K_KHOME, nv_home, NV_SSS|NV_STS, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 {K_S_HOME, nv_home, NV_SS, 0},
354 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE},
355 {K_DEL, nv_abbrev, 0, 0},
356 {K_KDEL, nv_abbrev, 0, 0},
357 {K_UNDO, nv_kundo, 0, 0},
358 {K_HELP, nv_help, NV_NCW, 0},
359 {K_F1, nv_help, NV_NCW, 0},
360 {K_XF1, nv_help, NV_NCW, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 {K_SELECT, nv_select, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362#ifdef FEAT_GUI
363 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0},
364 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0},
365#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000366#ifdef FEAT_GUI_TABLINE
367 {K_TABLINE, nv_tabline, 0, 0},
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000368 {K_TABMENU, nv_tabmenu, 0, 0},
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370#ifdef FEAT_NETBEANS_INTG
371 {K_F21, nv_nbcmd, NV_NCH_ALW, 0},
372#endif
373#ifdef FEAT_DND
374 {K_DROP, nv_drop, NV_STS, 0},
375#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000376 {K_CURSORHOLD, nv_cursorhold, NV_KEEPREG, 0},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100377 {K_PS, nv_edit, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378};
379
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100380// Number of commands in nv_cmds[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381#define NV_CMDS_SIZE (sizeof(nv_cmds) / sizeof(struct nv_cmd))
382
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100383// Sorted index of commands in nv_cmds[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384static short nv_cmd_idx[NV_CMDS_SIZE];
385
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100386// The highest index for which
387// nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388static 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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100399 // The commands are sorted on absolute value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100417 // 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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100421 // Sort the commands by the command character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
423
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100424 // 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 Moolenaar6e0ce172019-12-05 20:12:41 +0100443 // A multi-byte character is never a command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 if (cmdchar >= 0x100)
445 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100447 // We use the absolute value of the character. Special keys have a
448 // negative value, but are sorted on their absolute value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 if (cmdchar < 0)
450 cmdchar = -cmdchar;
451
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100452 // If the character is in the first part: The character is the index into
453 // nv_cmd_idx[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 if (cmdchar <= nv_max_linear)
455 return nv_cmd_idx[cmdchar];
456
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100457 // Perform a binary search.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 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,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100486 int toplevel UNUSED) // TRUE when called from main()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100488 cmdarg_T ca; // command arguments
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 int c;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100490 int ctrl_w = FALSE; // got CTRL-W command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 int old_col = curwin->w_curswant;
492#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100493 int need_flushbuf; // need to call out_flush()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100495 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 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 Moolenaarb146e012020-07-19 23:06:05 +0200502 int save_did_cursorhold = did_cursorhold;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503
Bram Moolenaara80faa82020-04-12 19:37:17 +0200504 CLEAR_FIELD(ca); // also resets ca.retval
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 ca.oap = oap;
Bram Moolenaara983fe92008-07-31 20:04:27 +0000506
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100507 // Use a count remembered from before entering an operator. After typing
508 // "3d" we return from normal_cmd() and come back here, the "3" is
509 // remembered in "opcount".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 ca.opcount = opcount;
511
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 /*
513 * If there is an operator pending, then the command we take this time
514 * will terminate it. Finish_op tells us to finish the operation before
515 * returning this time (unless the operation was cancelled).
516 */
517#ifdef CURSOR_SHAPE
518 c = finish_op;
519#endif
520 finish_op = (oap->op_type != OP_NOP);
521#ifdef CURSOR_SHAPE
522 if (finish_op != c)
523 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100524 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525# ifdef FEAT_MOUSESHAPE
526 update_mouseshape(-1);
527# endif
528 }
529#endif
530
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100531 // When not finishing an operator and no register name typed, reset the
532 // count.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 if (!finish_op && !oap->regname)
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000534 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 ca.opcount = 0;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000536#ifdef FEAT_EVAL
537 set_prevcount = TRUE;
538#endif
539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100541 // Restore counts from before receiving K_CURSORHOLD. This means after
542 // typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not
543 // "3 * 2".
Bram Moolenaara983fe92008-07-31 20:04:27 +0000544 if (oap->prev_opcount > 0 || oap->prev_count0 > 0)
545 {
546 ca.opcount = oap->prev_opcount;
547 ca.count0 = oap->prev_count0;
548 oap->prev_opcount = 0;
549 oap->prev_count0 = 0;
550 }
Bram Moolenaara983fe92008-07-31 20:04:27 +0000551
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 mapped_len = typebuf_maplen();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553
554 State = NORMAL_BUSY;
555#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100556 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557#endif
558
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100559#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100560 // Set v:count here, when called from main() and not a stuffed
561 // command, so that v:count can be used in an expression mapping
562 // when there is no count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100563 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100564 set_vcount_ca(&ca, &set_prevcount);
565#endif
566
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 /*
568 * Get the command character from the user.
569 */
570 c = safe_vgetc();
Bram Moolenaar25281632016-01-21 23:32:32 +0100571 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572
573 /*
574 * If a mapping was started in Visual or Select mode, remember the length
575 * of the mapping. This is used below to not return to Insert mode for as
576 * long as the mapping is being executed.
577 */
578 if (restart_edit == 0)
579 old_mapped_len = 0;
580 else if (old_mapped_len
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000581 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 old_mapped_len = typebuf_maplen();
583
584 if (c == NUL)
585 c = K_ZERO;
586
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 /*
588 * In Select mode, typed text replaces the selection.
589 */
590 if (VIsual_active
591 && VIsual_select
592 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
593 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100594 // Fake a "c"hange command. When "restart_edit" is set (e.g., because
595 // 'insertmode' is set) fake a "d"elete command, Insert mode will
596 // restart automatically.
597 // Insert the typed character in the typeahead buffer, so that it can
598 // be mapped in Insert mode. Required for ":lmap" to work.
Bram Moolenaarb42c0d52020-05-29 22:41:41 +0200599 ins_char_typebuf(vgetc_char, vgetc_mod_mask);
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000600 if (restart_edit != 0)
601 c = 'd';
602 else
603 c = 'c';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100604 msg_nowait = TRUE; // don't delay going to insert mode
605 old_mapped_len = 0; // do go to Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607
608#ifdef FEAT_CMDL_INFO
609 need_flushbuf = add_to_showcmd(c);
610#endif
611
612getcount:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 if (!(VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 {
615 /*
616 * Handle a count before a command and compute ca.count0.
617 * Note that '0' is a command and not the start of a count, but it's
618 * part of a count after other digits.
619 */
620 while ( (c >= '1' && c <= '9')
621 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
622 {
623 if (c == K_DEL || c == K_KDEL)
624 {
625 ca.count0 /= 10;
626#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100627 del_from_showcmd(4); // delete the digit and ~@%
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628#endif
629 }
630 else
631 ca.count0 = ca.count0 * 10 + (c - '0');
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100632 if (ca.count0 < 0) // got too large!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 ca.count0 = 999999999L;
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000634#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100635 // Set v:count here, when called from main() and not a stuffed
636 // command, so that v:count can be used in an expression mapping
637 // right after the count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100638 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100639 set_vcount_ca(&ca, &set_prevcount);
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000640#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 if (ctrl_w)
642 {
643 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100644 ++allow_keys; // no mapping for nchar, but keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100646 ++no_zero_mapping; // don't map zero here
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000647 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 --no_zero_mapping;
650 if (ctrl_w)
651 {
652 --no_mapping;
653 --allow_keys;
654 }
655#ifdef FEAT_CMDL_INFO
656 need_flushbuf |= add_to_showcmd(c);
657#endif
658 }
659
660 /*
661 * If we got CTRL-W there may be a/another count
662 */
663 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
664 {
665 ctrl_w = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100666 ca.opcount = ca.count0; // remember first count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 ca.count0 = 0;
668 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100669 ++allow_keys; // no mapping for nchar, but keys
670 c = plain_vgetc(); // get next character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 --no_mapping;
673 --allow_keys;
674#ifdef FEAT_CMDL_INFO
675 need_flushbuf |= add_to_showcmd(c);
676#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100677 goto getcount; // jump back
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 }
679 }
680
Bram Moolenaara983fe92008-07-31 20:04:27 +0000681 if (c == K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100683 // Save the count values so that ca.opcount and ca.count0 are exactly
684 // the same when coming back here after handling K_CURSORHOLD.
Bram Moolenaara983fe92008-07-31 20:04:27 +0000685 oap->prev_opcount = ca.opcount;
686 oap->prev_count0 = ca.count0;
687 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100688 else if (ca.opcount != 0)
Bram Moolenaara983fe92008-07-31 20:04:27 +0000689 {
690 /*
691 * If we're in the middle of an operator (including after entering a
692 * yank buffer with '"') AND we had a count before the operator, then
693 * that count overrides the current value of ca.count0.
694 * What this means effectively, is that commands like "3dw" get turned
695 * into "d3w" which makes things fall into place pretty neatly.
696 * If you give a count before AND after the operator, they are
697 * multiplied.
698 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 if (ca.count0)
700 ca.count0 *= ca.opcount;
701 else
702 ca.count0 = ca.opcount;
703 }
704
705 /*
706 * Always remember the count. It will be set to zero (on the next call,
707 * above) when there is no pending operator.
708 * When called from main(), save the count for use by the "count" built-in
709 * variable.
710 */
711 ca.opcount = ca.count0;
712 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
713
714#ifdef FEAT_EVAL
715 /*
716 * Only set v:count when called from main() and not a stuffed command.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100717 * Do set it for redo.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100719 if (toplevel && readbuf1_empty())
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000720 set_vcount(ca.count0, ca.count1, set_prevcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721#endif
722
723 /*
724 * Find the command character in the table of commands.
725 * For CTRL-W we already got nchar when looking for a count.
726 */
727 if (ctrl_w)
728 {
729 ca.nchar = c;
730 ca.cmdchar = Ctrl_W;
731 }
732 else
733 ca.cmdchar = c;
734 idx = find_command(ca.cmdchar);
735 if (idx < 0)
736 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100737 // Not a known command: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 clearopbeep(oap);
739 goto normal_end;
740 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +0000741
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000742 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100744 // This command is not allowed while editing a cmdline: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 clearopbeep(oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000746 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 goto normal_end;
748 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000749 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
750 goto normal_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 /*
753 * In Visual/Select mode, a few keys are handled in a special way.
754 */
755 if (VIsual_active)
756 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100757 // when 'keymodel' contains "stopsel" may stop Select/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 if (km_stopsel
759 && (nv_cmds[idx].cmd_flags & NV_STS)
760 && !(mod_mask & MOD_MASK_SHIFT))
761 {
762 end_visual_mode();
763 redraw_curbuf_later(INVERTED);
764 }
765
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100766 // Keys that work different when 'keymodel' contains "startsel"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 if (km_startsel)
768 {
769 if (nv_cmds[idx].cmd_flags & NV_SS)
770 {
771 unshift_special(&ca);
772 idx = find_command(ca.cmdchar);
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000773 if (idx < 0)
774 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100775 // Just in case
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000776 clearopbeep(oap);
777 goto normal_end;
778 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 }
780 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
781 && (mod_mask & MOD_MASK_SHIFT))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 mod_mask &= ~MOD_MASK_SHIFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 }
784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785
786#ifdef FEAT_RIGHTLEFT
787 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
788 && (nv_cmds[idx].cmd_flags & NV_RL))
789 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100790 // Invert horizontal movements and operations. Only when typed by the
791 // user directly, not when the result of a mapping or "x" translated
792 // to "dl".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 switch (ca.cmdchar)
794 {
795 case 'l': ca.cmdchar = 'h'; break;
796 case K_RIGHT: ca.cmdchar = K_LEFT; break;
797 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
798 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
799 case 'h': ca.cmdchar = 'l'; break;
800 case K_LEFT: ca.cmdchar = K_RIGHT; break;
801 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
802 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
803 case '>': ca.cmdchar = '<'; break;
804 case '<': ca.cmdchar = '>'; break;
805 }
806 idx = find_command(ca.cmdchar);
807 }
808#endif
809
810 /*
811 * Get an additional character if we need one.
812 */
813 if ((nv_cmds[idx].cmd_flags & NV_NCH)
814 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
815 && oap->op_type == OP_NOP)
816 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
817 || (ca.cmdchar == 'q'
818 && oap->op_type == OP_NOP
Bram Moolenaar0b6d9112018-05-22 20:35:17 +0200819 && reg_recording == 0
820 && reg_executing == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100822 && (oap->op_type != OP_NOP || VIsual_active))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 {
824 int *cp;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100825 int repl = FALSE; // get character for replace mode
826 int lit = FALSE; // get extra character literally
827 int langmap_active = FALSE; // using :lmap mappings
828 int lang; // getting a text character
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100829#ifdef HAVE_INPUT_METHOD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100830 int save_smd; // saved value of p_smd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831#endif
832
833 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100834 ++allow_keys; // no mapping for nchar, but allow key codes
835 // Don't generate a CursorHold event here, most commands can't handle
836 // it, e.g., nv_replace(), nv_csearch().
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +0000837 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 if (ca.cmdchar == 'g')
839 {
840 /*
841 * For 'g' get the next character now, so that we can check for
842 * "gr", "g'" and "g`".
843 */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000844 ca.nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 LANGMAP_ADJUST(ca.nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846#ifdef FEAT_CMDL_INFO
847 need_flushbuf |= add_to_showcmd(ca.nchar);
848#endif
849 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
Bram Moolenaarba2d44f2013-11-28 19:27:30 +0100850 || ca.nchar == Ctrl_BSL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100852 cp = &ca.extra_char; // need to get a third character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 if (ca.nchar != 'r')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100854 lit = TRUE; // get it literally
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100856 repl = TRUE; // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 }
858 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100859 cp = NULL; // no third character needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 }
861 else
862 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100863 if (ca.cmdchar == 'r') // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 repl = TRUE;
865 cp = &ca.nchar;
866 }
867 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
868
869 /*
870 * Get a second or third character.
871 */
872 if (cp != NULL)
873 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 if (repl)
875 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100876 State = REPLACE; // pretend Replace mode
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100877#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100878 ui_cursor_shape(); // show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879#endif
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
882 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100883 // Allow mappings defined with ":lmap".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 --no_mapping;
885 --allow_keys;
886 if (repl)
887 State = LREPLACE;
888 else
889 State = LANGMAP;
890 langmap_active = TRUE;
891 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100892#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 save_smd = p_smd;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100894 p_smd = FALSE; // Don't let the IM code show the mode here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
896 im_set_active(TRUE);
897#endif
898
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000899 *cp = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900
901 if (langmap_active)
902 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100903 // Undo the decrement done above
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 ++no_mapping;
905 ++allow_keys;
906 State = NORMAL_BUSY;
907 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100908#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 if (lang)
910 {
911 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
912 im_save_status(&curbuf->b_p_iminsert);
913 im_set_active(FALSE);
914 }
915 p_smd = save_smd;
916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 State = NORMAL_BUSY;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918#ifdef FEAT_CMDL_INFO
919 need_flushbuf |= add_to_showcmd(*cp);
920#endif
921
922 if (!lit)
923 {
924#ifdef FEAT_DIGRAPHS
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100925 // Typing CTRL-K gets a digraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 if (*cp == Ctrl_K
927 && ((nv_cmds[idx].cmd_flags & NV_LANG)
928 || cp == &ca.extra_char)
929 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
930 {
931 c = get_digraph(FALSE);
932 if (c > 0)
933 {
934 *cp = c;
935# ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100936 // Guessing how to update showcmd here...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 del_from_showcmd(3);
938 need_flushbuf |= add_to_showcmd(*cp);
939# endif
940 }
941 }
942#endif
943
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100944 // adjust chars > 127, except after "tTfFr" commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945 LANGMAP_ADJUST(*cp, !lang);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100947 // adjust Hebrew mapped char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948 if (p_hkmap && lang && KeyTyped)
949 *cp = hkmap(*cp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950#endif
951 }
952
953 /*
954 * When the next character is CTRL-\ a following CTRL-N means the
955 * command is aborted and we go to Normal mode.
956 */
957 if (cp == &ca.extra_char
958 && ca.nchar == Ctrl_BSL
959 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
960 {
961 ca.cmdchar = Ctrl_BSL;
962 ca.nchar = ca.extra_char;
963 idx = find_command(ca.cmdchar);
964 }
Bram Moolenaar12a753a2012-10-23 05:08:53 +0200965 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g')
Bram Moolenaarf00dc262012-10-21 03:54:33 +0200966 ca.oap->op_type = get_op_type(*cp, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 else if (*cp == Ctrl_BSL)
968 {
969 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
970
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100971 // There is a busy wait here when typing "f<C-\>" and then
972 // something different from CTRL-N. Can't be avoided.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 while ((c = vpeekc()) <= 0 && towait > 0L)
974 {
975 do_sleep(towait > 50L ? 50L : towait);
976 towait -= 50L;
977 }
978 if (c > 0)
979 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000980 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 if (c != Ctrl_N && c != Ctrl_G)
982 vungetc(c);
983 else
984 {
985 ca.cmdchar = Ctrl_BSL;
986 ca.nchar = c;
987 idx = find_command(ca.cmdchar);
988 }
989 }
990 }
991
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100992 // When getting a text character and the next character is a
993 // multi-byte character, it could be a composing character.
994 // However, don't wait for it to arrive. Also, do enable mapping,
995 // because if it's put back with vungetc() it's too late to apply
996 // mapping.
Bram Moolenaar4f880622014-07-23 12:31:20 +0200997 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 while (enc_utf8 && lang && (c = vpeekc()) > 0
999 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1000 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001001 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 if (!utf_iscomposing(c))
1003 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001004 vungetc(c); // it wasn't, put it back
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 break;
1006 }
1007 else if (ca.ncharC1 == 0)
1008 ca.ncharC1 = c;
1009 else
1010 ca.ncharC2 = c;
1011 }
Bram Moolenaar4f880622014-07-23 12:31:20 +02001012 ++no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 }
1014 --no_mapping;
1015 --allow_keys;
1016 }
1017
1018#ifdef FEAT_CMDL_INFO
1019 /*
1020 * Flush the showcmd characters onto the screen so we can see them while
1021 * the command is being executed. Only do this when the shown command was
1022 * actually displayed, otherwise this will slow down a lot when executing
1023 * mappings.
1024 */
1025 if (need_flushbuf)
1026 out_flush();
1027#endif
Bram Moolenaard9205ca2008-10-02 20:55:54 +00001028 if (ca.cmdchar != K_IGNORE)
Bram Moolenaar08815a12020-07-20 23:10:56 +02001029 {
1030 if (ex_normal_busy)
1031 did_cursorhold = save_did_cursorhold;
1032 else
1033 did_cursorhold = FALSE;
1034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035
1036 State = NORMAL;
1037
1038 if (ca.nchar == ESC)
1039 {
1040 clearop(oap);
1041 if (restart_edit == 0 && goto_im())
1042 restart_edit = 'a';
1043 goto normal_end;
1044 }
1045
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001046 if (ca.cmdchar != K_IGNORE)
1047 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001048 msg_didout = FALSE; // don't scroll screen up for normal command
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001049 msg_col = 0;
1050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001052 old_pos = curwin->w_cursor; // remember where cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001054 // When 'keymodel' contains "startsel" some keys start Select/Visual
1055 // mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 if (!VIsual_active && km_startsel)
1057 {
1058 if (nv_cmds[idx].cmd_flags & NV_SS)
1059 {
1060 start_selection();
1061 unshift_special(&ca);
1062 idx = find_command(ca.cmdchar);
1063 }
1064 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1065 && (mod_mask & MOD_MASK_SHIFT))
1066 {
1067 start_selection();
1068 mod_mask &= ~MOD_MASK_SHIFT;
1069 }
1070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071
1072 /*
1073 * Execute the command!
1074 * Call the command function found in the commands table.
1075 */
1076 ca.arg = nv_cmds[idx].cmd_arg;
1077 (nv_cmds[idx].cmd_func)(&ca);
1078
1079 /*
1080 * If we didn't start or finish an operator, reset oap->regname, unless we
1081 * need it later.
1082 */
1083 if (!finish_op
1084 && !oap->op_type
1085 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1086 {
1087 clearop(oap);
1088#ifdef FEAT_EVAL
Bram Moolenaar439c0362020-06-06 15:58:03 +02001089 reset_reg_var();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090#endif
1091 }
1092
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001093 // Get the length of mapped chars again after typing a count, second
1094 // character or "z333<cr>".
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001095 if (old_mapped_len > 0)
1096 old_mapped_len = typebuf_maplen();
1097
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 /*
Bram Moolenaarfa5612c2019-12-01 19:37:07 +01001099 * If an operation is pending, handle it. But not for K_IGNORE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 */
Bram Moolenaarfa5612c2019-12-01 19:37:07 +01001101 if (ca.cmdchar != K_IGNORE)
1102 do_pending_operator(&ca, old_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103
1104 /*
1105 * Wait for a moment when a message is displayed that will be overwritten
1106 * by the mode message.
1107 * In Visual mode and with "^O" in Insert mode, a short message will be
1108 * overwritten by the mode message. Wait a bit, until a key is hit.
1109 * In Visual mode, it's more important to keep the Visual area updated
1110 * than keeping a message (e.g. from a /pat search).
1111 * Only do this if the command was typed, not from a mapping.
1112 * Don't wait when emsg_silent is non-zero.
1113 * Also wait a bit after an error message, e.g. for "^O:".
1114 * Don't redraw the screen, it would remove the message.
1115 */
1116 if ( ((p_smd
Bram Moolenaar09df3122006-01-23 22:23:09 +00001117 && msg_silent == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 && (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 || (VIsual_active
1120 && old_pos.lnum == curwin->w_cursor.lnum
1121 && old_pos.col == curwin->w_cursor.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 )
1123 && (clear_cmdline
1124 || redraw_cmdline)
1125 && (msg_didout || (msg_didany && msg_scroll))
1126 && !msg_nowait
1127 && KeyTyped)
1128 || (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 && (msg_scroll
1131 || emsg_on_display)))
1132 && oap->regname == 0
1133 && !(ca.retval & CA_COMMAND_BUSY)
1134 && stuff_empty()
1135 && typebuf_typed()
1136 && emsg_silent == 0
1137 && !did_wait_return
1138 && oap->op_type == OP_NOP)
1139 {
1140 int save_State = State;
1141
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001142 // Draw the cursor with the right shape here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 if (restart_edit != 0)
1144 State = INSERT;
1145
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001146 // If need to redraw, and there is a "keep_msg", redraw before the
1147 // delay
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1149 {
1150 char_u *kmsg;
1151
1152 kmsg = keep_msg;
1153 keep_msg = NULL;
Bram Moolenaar5715b312020-03-16 22:08:45 +01001154 // Showmode() will clear keep_msg, but we want to use it anyway.
1155 // First update w_topline.
1156 setcursor();
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();
Bram Moolenaar5715b312020-03-16 22:08:45 +01001169#ifdef CURSOR_SHAPE
1170 ui_cursor_shape(); // may show different cursor shape
1171#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 cursor_on();
1173 out_flush();
1174 if (msg_scroll || emsg_on_display)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001175 ui_delay(1003L, TRUE); // wait at least one second
1176 ui_delay(3003L, FALSE); // wait up to three seconds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 State = save_State;
1178
1179 msg_scroll = FALSE;
1180 emsg_on_display = FALSE;
1181 }
1182
1183 /*
1184 * Finish up after executing a Normal mode command.
1185 */
1186normal_end:
1187
1188 msg_nowait = FALSE;
1189
Bram Moolenaarcc613032020-06-07 21:31:18 +02001190#ifdef FEAT_EVAL
1191 if (finish_op)
1192 reset_reg_var();
1193#endif
1194
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001195 // Reset finish_op, in case it was set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196#ifdef CURSOR_SHAPE
1197 c = finish_op;
1198#endif
1199 finish_op = FALSE;
1200#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001201 // Redraw the cursor with another shape, if we were in Operator-pending
1202 // mode or did a replace command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 if (c || ca.cmdchar == 'r')
1204 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001205 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206# ifdef FEAT_MOUSESHAPE
1207 update_mouseshape(-1);
1208# endif
1209 }
1210#endif
1211
1212#ifdef FEAT_CMDL_INFO
Bram Moolenaara983fe92008-07-31 20:04:27 +00001213 if (oap->op_type == OP_NOP && oap->regname == 0
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001214 && ca.cmdchar != K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 clear_showcmd();
1216#endif
1217
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001218 checkpcmark(); // check if we moved since setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 vim_free(ca.searchbuf);
1220
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 if (has_mbyte)
1222 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 if (curwin->w_p_scb && toplevel)
1225 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001226 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 do_check_scrollbind(TRUE);
1228 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229
Bram Moolenaar860cae12010-06-05 23:22:07 +02001230 if (curwin->w_p_crb && toplevel)
1231 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001232 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar860cae12010-06-05 23:22:07 +02001233 do_check_cursorbind();
1234 }
Bram Moolenaar860cae12010-06-05 23:22:07 +02001235
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001236#ifdef FEAT_TERMINAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001237 // don't go to Insert mode if a terminal has a running job
Bram Moolenaareef9add2017-09-16 15:38:04 +02001238 if (term_job_running(curbuf->b_term))
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001239 restart_edit = 0;
1240#endif
1241
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 /*
1243 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1244 * if still inside a mapping that started in Visual mode).
1245 * May switch from Visual to Select mode after CTRL-O command.
1246 */
1247 if ( oap->op_type == OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1249 || restart_VIsual_select == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 && !(ca.retval & CA_COMMAND_BUSY)
1251 && stuff_empty()
1252 && oap->regname == 0)
1253 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 if (restart_VIsual_select == 1)
1255 {
1256 VIsual_select = TRUE;
1257 showmode();
1258 restart_VIsual_select = 0;
1259 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001260 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 (void)edit(restart_edit, FALSE, 1L);
1262 }
1263
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 if (restart_VIsual_select == 2)
1265 restart_VIsual_select = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001267 // Save count before an operator for next time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 opcount = ca.opcount;
1269}
1270
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001271#ifdef FEAT_EVAL
1272/*
1273 * Set v:count and v:count1 according to "cap".
1274 * Set v:prevcount only when "set_prevcount" is TRUE.
1275 */
1276 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001277set_vcount_ca(cmdarg_T *cap, int *set_prevcount)
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001278{
1279 long count = cap->count0;
1280
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001281 // multiply with cap->opcount the same way as above
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001282 if (cap->opcount != 0)
1283 count = cap->opcount * (count == 0 ? 1 : count);
1284 set_vcount(count, count == 0 ? 1 : count, *set_prevcount);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001285 *set_prevcount = FALSE; // only set v:prevcount once
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001286}
1287#endif
1288
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289/*
Bram Moolenaar5715b312020-03-16 22:08:45 +01001290 * Check if highlighting for Visual mode is possible, give a warning message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 * if not.
1292 */
1293 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001294check_visual_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295{
1296 static int did_check = FALSE;
1297
1298 if (full_screen)
1299 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001300 if (!did_check && HL_ATTR(HLF_V) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001301 msg(_("Warning: terminal cannot highlight"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 did_check = TRUE;
1303 }
1304}
1305
1306/*
Bram Moolenaar66fa2712006-01-22 23:22:22 +00001307 * End Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 * This function should ALWAYS be called to end Visual mode, except from
1309 * do_pending_operator().
1310 */
1311 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001312end_visual_mode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313{
1314#ifdef FEAT_CLIPBOARD
1315 /*
1316 * If we are using the clipboard, then remember what was selected in case
1317 * we need to paste it somewhere while we still own the selection.
1318 * Only do this when the clipboard is already owned. Don't want to grab
1319 * the selection when hitting ESC.
1320 */
1321 if (clip_star.available && clip_star.owned)
1322 clip_auto_select();
1323#endif
1324
1325 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 setmouse();
1327 mouse_dragging = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001329 // Save the current VIsual area for '< and '> marks, and "gv"
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001330 curbuf->b_visual.vi_mode = VIsual_mode;
1331 curbuf->b_visual.vi_start = VIsual;
1332 curbuf->b_visual.vi_end = curwin->w_cursor;
1333 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334#ifdef FEAT_EVAL
1335 curbuf->b_visual_mode_eval = VIsual_mode;
1336#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 if (!virtual_active())
1338 curwin->w_cursor.coladd = 0;
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001339 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001341 adjust_cursor_eol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342}
1343
1344/*
1345 * Reset VIsual_active and VIsual_reselect.
1346 */
1347 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001348reset_VIsual_and_resel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349{
1350 if (VIsual_active)
1351 {
1352 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001353 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 }
1355 VIsual_reselect = FALSE;
1356}
1357
1358/*
1359 * Reset VIsual_active and VIsual_reselect if it's set.
1360 */
1361 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001362reset_VIsual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363{
1364 if (VIsual_active)
1365 {
1366 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001367 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 VIsual_reselect = FALSE;
1369 }
1370}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001372 void
1373restore_visual_mode(void)
1374{
1375 if (VIsual_mode_orig != NUL)
1376 {
1377 curbuf->b_visual.vi_mode = VIsual_mode_orig;
1378 VIsual_mode_orig = NUL;
1379 }
1380}
1381
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382/*
1383 * Check for a balloon-eval special item to include when searching for an
1384 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
1385 * Returns TRUE if the character at "*ptr" should be included.
1386 * "dir" is FORWARD or BACKWARD, the direction of searching.
1387 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
1388 * "bnp" points to a counter for square brackets.
1389 */
1390 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001391find_is_eval_item(
1392 char_u *ptr,
1393 int *colp,
1394 int *bnp,
1395 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001397 // Accept everything inside [].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
1399 ++*bnp;
1400 if (*bnp > 0)
1401 {
1402 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
1403 --*bnp;
1404 return TRUE;
1405 }
1406
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001407 // skip over "s.var"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 if (*ptr == '.')
1409 return TRUE;
1410
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001411 // two-character item: s->var
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
1413 && ptr[dir == BACKWARD ? -1 : 0] == '-')
1414 {
1415 *colp += dir;
1416 return TRUE;
1417 }
1418 return FALSE;
1419}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420
1421/*
1422 * Find the identifier under or to the right of the cursor.
1423 * "find_type" can have one of three values:
1424 * FIND_IDENT: find an identifier (keyword)
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001425 * FIND_STRING: find any non-white text
1426 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001427 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 *
1429 * There are three steps:
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001430 * 1. Search forward for the start of an identifier/text. Doesn't move if
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 * already on one.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001432 * 2. Search backward for the start of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 * This doesn't match the real Vi but I like it a little better and it
1434 * shouldn't bother anyone.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001435 * 3. Search forward to the end of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 * When FIND_IDENT isn't defined, we backup until a blank.
1437 *
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001438 * Returns the length of the text, or zero if no text is found.
1439 * If text is found, a pointer to the text is put in "*text". This
1440 * points into the current buffer line and is not always NUL terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 */
1442 int
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001443find_ident_under_cursor(char_u **text, int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444{
1445 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001446 curwin->w_cursor.col, text, NULL, find_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447}
1448
1449/*
1450 * Like find_ident_under_cursor(), but for any window and any position.
1451 * However: Uses 'iskeyword' from the current window!.
1452 */
1453 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001454find_ident_at_pos(
1455 win_T *wp,
1456 linenr_T lnum,
1457 colnr_T startcol,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001458 char_u **text,
1459 int *textcol, // column where "text" starts, can be NULL
Bram Moolenaar9b578142016-01-30 19:39:49 +01001460 int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461{
1462 char_u *ptr;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001463 int col = 0; // init to shut up GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 int this_class = 0;
1466 int prev_class;
1467 int prevcol;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001468 int bn = 0; // bracket nesting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469
1470 /*
1471 * if i == 0: try to find an identifier
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001472 * if i == 1: try to find any non-white text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 */
1474 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
1475 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
1476 {
1477 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001478 * 1. skip to start of identifier/text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 */
1480 col = startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 if (has_mbyte)
1482 {
1483 while (ptr[col] != NUL)
1484 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001485 // Stop at a ']' to evaluate "a[x]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1487 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 this_class = mb_get_class(ptr + col);
1489 if (this_class != 0 && (i == 1 || this_class != 1))
1490 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001491 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 }
1493 }
1494 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 while (ptr[col] != NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01001496 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 )
1499 ++col;
1500
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001501 // When starting on a ']' count it, so that we include the '['.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 bn = ptr[col] == ']';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503
1504 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001505 * 2. Back up to start of identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 if (has_mbyte)
1508 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001509 // Remember class of character under cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1511 this_class = mb_get_class((char_u *)"a");
1512 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 this_class = mb_get_class(ptr + col);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001514 while (col > 0 && this_class != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 {
1516 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
1517 prev_class = mb_get_class(ptr + prevcol);
1518 if (this_class != prev_class
1519 && (i == 0
1520 || prev_class == 0
1521 || (find_type & FIND_IDENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 && (!(find_type & FIND_EVAL)
1523 || prevcol == 0
1524 || !find_is_eval_item(ptr + prevcol, &prevcol,
1525 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 )
1527 break;
1528 col = prevcol;
1529 }
1530
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001531 // If we don't want just any old text, or we've found an
1532 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 if (this_class > 2)
1534 this_class = 2;
1535 if (!(find_type & FIND_STRING) || this_class == 2)
1536 break;
1537 }
1538 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 {
1540 while (col > 0
1541 && ((i == 0
1542 ? vim_iswordc(ptr[col - 1])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001543 : (!VIM_ISWHITE(ptr[col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 && (!(find_type & FIND_IDENT)
1545 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 || ((find_type & FIND_EVAL)
1547 && col > 1
1548 && find_is_eval_item(ptr + col - 1, &col,
1549 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 ))
1551 --col;
1552
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001553 // If we don't want just any old text, or we've found an
1554 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
1556 break;
1557 }
1558 }
1559
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001560 if (ptr[col] == NUL || (i == 0
1561 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001563 // didn't find an identifier or text
Bram Moolenaar17627312019-06-02 19:53:44 +02001564 if ((find_type & FIND_NOERROR) == 0)
1565 {
1566 if (find_type & FIND_STRING)
1567 emsg(_("E348: No string under cursor"));
1568 else
1569 emsg(_(e_noident));
1570 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 return 0;
1572 }
1573 ptr += col;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001574 *text = ptr;
1575 if (textcol != NULL)
1576 *textcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577
1578 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001579 * 3. Find the end if the identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 bn = 0;
1582 startcol -= col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 if (has_mbyte)
1585 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001586 // Search for point of changing multibyte character class.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 this_class = mb_get_class(ptr);
1588 while (ptr[col] != NUL
1589 && ((i == 0 ? mb_get_class(ptr + col) == this_class
1590 : mb_get_class(ptr + col) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 || ((find_type & FIND_EVAL)
1592 && col <= (int)startcol
1593 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 ))
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001595 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 }
1597 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 while ((i == 0 ? vim_iswordc(ptr[col])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001599 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 || ((find_type & FIND_EVAL)
1601 && col <= (int)startcol
1602 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 ++col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605
1606 return col;
1607}
1608
1609/*
1610 * Prepare for redo of a normal command.
1611 */
1612 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001613prep_redo_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614{
1615 prep_redo(cap->oap->regname, cap->count0,
1616 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
1617}
1618
1619/*
1620 * Prepare for redo of any command.
1621 * Note that only the last argument can be a multi-byte char.
1622 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001623 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001624prep_redo(
1625 int regname,
1626 long num,
1627 int cmd1,
1628 int cmd2,
1629 int cmd3,
1630 int cmd4,
1631 int cmd5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632{
1633 ResetRedobuff();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001634 if (regname != 0) // yank from specified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 {
1636 AppendCharToRedobuff('"');
1637 AppendCharToRedobuff(regname);
1638 }
1639 if (num)
1640 AppendNumberToRedobuff(num);
1641
1642 if (cmd1 != NUL)
1643 AppendCharToRedobuff(cmd1);
1644 if (cmd2 != NUL)
1645 AppendCharToRedobuff(cmd2);
1646 if (cmd3 != NUL)
1647 AppendCharToRedobuff(cmd3);
1648 if (cmd4 != NUL)
1649 AppendCharToRedobuff(cmd4);
1650 if (cmd5 != NUL)
1651 AppendCharToRedobuff(cmd5);
1652}
1653
1654/*
1655 * check for operator active and clear it
1656 *
1657 * return TRUE if operator was active
1658 */
1659 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001660checkclearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661{
1662 if (oap->op_type == OP_NOP)
1663 return FALSE;
1664 clearopbeep(oap);
1665 return TRUE;
1666}
1667
1668/*
Bram Moolenaarc980de32007-05-06 11:59:04 +00001669 * Check for operator or Visual active. Clear active operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 *
Bram Moolenaarc980de32007-05-06 11:59:04 +00001671 * Return TRUE if operator or Visual was active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 */
1673 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001674checkclearopq(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001676 if (oap->op_type == OP_NOP && !VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 return FALSE;
1678 clearopbeep(oap);
1679 return TRUE;
1680}
1681
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001682 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001683clearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684{
1685 oap->op_type = OP_NOP;
1686 oap->regname = 0;
1687 oap->motion_force = NUL;
1688 oap->use_reg_one = FALSE;
1689}
1690
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001691 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001692clearopbeep(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693{
1694 clearop(oap);
1695 beep_flush();
1696}
1697
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698/*
1699 * Remove the shift modifier from a special key.
1700 */
1701 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001702unshift_special(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703{
1704 switch (cap->cmdchar)
1705 {
1706 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
1707 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
1708 case K_S_UP: cap->cmdchar = K_UP; break;
1709 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
1710 case K_S_HOME: cap->cmdchar = K_HOME; break;
1711 case K_S_END: cap->cmdchar = K_END; break;
1712 }
1713 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
1714}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001716/*
1717 * If the mode is currently displayed clear the command line or update the
1718 * command displayed.
1719 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001720 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001721may_clear_cmdline(void)
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001722{
1723 if (mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001724 clear_cmdline = TRUE; // unshow visual mode later
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001725#ifdef FEAT_CMDL_INFO
1726 else
1727 clear_showcmd();
1728#endif
1729}
1730
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731#if defined(FEAT_CMDL_INFO) || defined(PROTO)
1732/*
1733 * Routines for displaying a partly typed command
1734 */
1735
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001736#define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737static char_u showcmd_buf[SHOWCMD_BUFLEN];
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001738static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739static int showcmd_is_clear = TRUE;
1740static int showcmd_visual = FALSE;
1741
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001742static void display_showcmd(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743
1744 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001745clear_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746{
1747 if (!p_sc)
1748 return;
1749
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 if (VIsual_active && !char_avail())
1751 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001752 int cursor_bot = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 long lines;
1754 colnr_T leftcol, rightcol;
1755 linenr_T top, bot;
1756
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001757 // Show the size of the Visual area.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001758 if (cursor_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 {
1760 top = VIsual.lnum;
1761 bot = curwin->w_cursor.lnum;
1762 }
1763 else
1764 {
1765 top = curwin->w_cursor.lnum;
1766 bot = VIsual.lnum;
1767 }
1768# ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001769 // Include closed folds as a whole.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001770 (void)hasFolding(top, &top, NULL);
1771 (void)hasFolding(bot, NULL, &bot);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772# endif
1773 lines = bot - top + 1;
1774
1775 if (VIsual_mode == Ctrl_V)
1776 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001777# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001778 char_u *saved_sbr = p_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001779 char_u *saved_w_sbr = curwin->w_p_sbr;
Bram Moolenaar81d00072009-04-29 15:41:40 +00001780
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001781 // Make 'sbr' empty for a moment to get the correct size.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001782 p_sbr = empty_option;
Bram Moolenaaree857022019-11-09 23:26:40 +01001783 curwin->w_p_sbr = empty_option;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001784# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001786# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001787 p_sbr = saved_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001788 curwin->w_p_sbr = saved_w_sbr;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001789# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
1791 (long)(rightcol - leftcol + 1));
1792 }
1793 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
1794 sprintf((char *)showcmd_buf, "%ld", lines);
1795 else
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001796 {
1797 char_u *s, *e;
1798 int l;
1799 int bytes = 0;
1800 int chars = 0;
1801
1802 if (cursor_bot)
1803 {
1804 s = ml_get_pos(&VIsual);
1805 e = ml_get_cursor();
1806 }
1807 else
1808 {
1809 s = ml_get_cursor();
1810 e = ml_get_pos(&VIsual);
1811 }
1812 while ((*p_sel != 'e') ? s <= e : s < e)
1813 {
1814 l = (*mb_ptr2len)(s);
1815 if (l == 0)
1816 {
1817 ++bytes;
1818 ++chars;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001819 break; // end of line
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001820 }
1821 bytes += l;
1822 ++chars;
1823 s += l;
1824 }
1825 if (bytes == chars)
1826 sprintf((char *)showcmd_buf, "%d", chars);
1827 else
1828 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes);
1829 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001830 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 showcmd_visual = TRUE;
1832 }
1833 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 {
1835 showcmd_buf[0] = NUL;
1836 showcmd_visual = FALSE;
1837
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001838 // Don't actually display something if there is nothing to clear.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 if (showcmd_is_clear)
1840 return;
1841 }
1842
1843 display_showcmd();
1844}
1845
1846/*
1847 * Add 'c' to string of shown command chars.
1848 * Return TRUE if output has been written (and setcursor() has been called).
1849 */
1850 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001851add_to_showcmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852{
1853 char_u *p;
1854 int old_len;
1855 int extra_len;
1856 int overflow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 int i;
1858 static int ignore[] =
1859 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001860#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
1862 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001863#endif
Bram Moolenaarec2da362017-01-21 20:04:22 +01001864 K_IGNORE, K_PS,
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001865 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
1867 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001868 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001870 K_CURSORHOLD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 0
1872 };
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873
Bram Moolenaar09df3122006-01-23 22:23:09 +00001874 if (!p_sc || msg_silent != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 return FALSE;
1876
1877 if (showcmd_visual)
1878 {
1879 showcmd_buf[0] = NUL;
1880 showcmd_visual = FALSE;
1881 }
1882
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001883 // Ignore keys that are scrollbar updates and mouse clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 if (IS_SPECIAL(c))
1885 for (i = 0; ignore[i] != 0; ++i)
1886 if (ignore[i] == c)
1887 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888
1889 p = transchar(c);
Bram Moolenaar7ba07412013-12-11 14:55:01 +01001890 if (*p == ' ')
1891 STRCPY(p, "<20>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 old_len = (int)STRLEN(showcmd_buf);
1893 extra_len = (int)STRLEN(p);
1894 overflow = old_len + extra_len - SHOWCMD_COLS;
1895 if (overflow > 0)
Bram Moolenaarb0db5692007-08-14 20:54:49 +00001896 mch_memmove(showcmd_buf, showcmd_buf + overflow,
1897 old_len - overflow + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 STRCAT(showcmd_buf, p);
1899
1900 if (char_avail())
1901 return FALSE;
1902
1903 display_showcmd();
1904
1905 return TRUE;
1906}
1907
1908 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001909add_to_showcmd_c(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910{
1911 if (!add_to_showcmd(c))
1912 setcursor();
1913}
1914
1915/*
1916 * Delete 'len' characters from the end of the shown command.
1917 */
1918 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001919del_from_showcmd(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920{
1921 int old_len;
1922
1923 if (!p_sc)
1924 return;
1925
1926 old_len = (int)STRLEN(showcmd_buf);
1927 if (len > old_len)
1928 len = old_len;
1929 showcmd_buf[old_len - len] = NUL;
1930
1931 if (!char_avail())
1932 display_showcmd();
1933}
1934
1935/*
1936 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
1937 * something and there is a partial mapping.
1938 */
1939 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001940push_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941{
1942 if (p_sc)
1943 STRCPY(old_showcmd_buf, showcmd_buf);
1944}
1945
1946 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001947pop_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948{
1949 if (!p_sc)
1950 return;
1951
1952 STRCPY(showcmd_buf, old_showcmd_buf);
1953
1954 display_showcmd();
1955}
1956
1957 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001958display_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959{
1960 int len;
1961
1962 cursor_off();
1963
1964 len = (int)STRLEN(showcmd_buf);
1965 if (len == 0)
1966 showcmd_is_clear = TRUE;
1967 else
1968 {
1969 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
1970 showcmd_is_clear = FALSE;
1971 }
1972
1973 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00001974 * clear the rest of an old message by outputting up to SHOWCMD_COLS
1975 * spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 */
1977 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
1978
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001979 setcursor(); // put cursor back where it belongs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980}
1981#endif
1982
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983/*
1984 * When "check" is FALSE, prepare for commands that scroll the window.
1985 * When "check" is TRUE, take care of scroll-binding after the window has
1986 * scrolled. Called from normal_cmd() and edit().
1987 */
1988 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001989do_check_scrollbind(int check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990{
1991 static win_T *old_curwin = NULL;
1992 static linenr_T old_topline = 0;
1993#ifdef FEAT_DIFF
1994 static int old_topfill = 0;
1995#endif
1996 static buf_T *old_buf = NULL;
1997 static colnr_T old_leftcol = 0;
1998
1999 if (check && curwin->w_p_scb)
2000 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002001 // If a ":syncbind" command was just used, don't scroll, only reset
2002 // the values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 if (did_syncbind)
2004 did_syncbind = FALSE;
2005 else if (curwin == old_curwin)
2006 {
2007 /*
2008 * Synchronize other windows, as necessary according to
2009 * 'scrollbind'. Don't do this after an ":edit" command, except
2010 * when 'diff' is set.
2011 */
2012 if ((curwin->w_buffer == old_buf
2013#ifdef FEAT_DIFF
2014 || curwin->w_p_diff
2015#endif
2016 )
2017 && (curwin->w_topline != old_topline
2018#ifdef FEAT_DIFF
2019 || curwin->w_topfill != old_topfill
2020#endif
2021 || curwin->w_leftcol != old_leftcol))
2022 {
2023 check_scrollbind(curwin->w_topline - old_topline,
2024 (long)(curwin->w_leftcol - old_leftcol));
2025 }
2026 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002027 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 {
2029 /*
2030 * When switching between windows, make sure that the relative
2031 * vertical offset is valid for the new window. The relative
2032 * offset is invalid whenever another 'scrollbind' window has
2033 * scrolled to a point that would force the current window to
2034 * scroll past the beginning or end of its buffer. When the
2035 * resync is performed, some of the other 'scrollbind' windows may
2036 * need to jump so that the current window's relative position is
2037 * visible on-screen.
2038 */
2039 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
2040 }
2041 curwin->w_scbind_pos = curwin->w_topline;
2042 }
2043
2044 old_curwin = curwin;
2045 old_topline = curwin->w_topline;
2046#ifdef FEAT_DIFF
2047 old_topfill = curwin->w_topfill;
2048#endif
2049 old_buf = curwin->w_buffer;
2050 old_leftcol = curwin->w_leftcol;
2051}
2052
2053/*
2054 * Synchronize any windows that have "scrollbind" set, based on the
2055 * number of rows by which the current window has changed
2056 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
2057 */
2058 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002059check_scrollbind(linenr_T topline_diff, long leftcol_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060{
2061 int want_ver;
2062 int want_hor;
2063 win_T *old_curwin = curwin;
2064 buf_T *old_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 int old_VIsual_select = VIsual_select;
2066 int old_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 colnr_T tgt_leftcol = curwin->w_leftcol;
2068 long topline;
2069 long y;
2070
2071 /*
2072 * check 'scrollopt' string for vertical and horizontal scroll options
2073 */
2074 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
2075#ifdef FEAT_DIFF
2076 want_ver |= old_curwin->w_p_diff;
2077#endif
2078 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
2079
2080 /*
2081 * loop through the scrollbound windows and scroll accordingly
2082 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002084 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 {
2086 curbuf = curwin->w_buffer;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002087 // skip original window and windows with 'noscrollbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 if (curwin != old_curwin && curwin->w_p_scb)
2089 {
2090 /*
2091 * do the vertical scroll
2092 */
2093 if (want_ver)
2094 {
2095#ifdef FEAT_DIFF
2096 if (old_curwin->w_p_diff && curwin->w_p_diff)
2097 {
2098 diff_set_topline(old_curwin, curwin);
2099 }
2100 else
2101#endif
2102 {
2103 curwin->w_scbind_pos += topline_diff;
2104 topline = curwin->w_scbind_pos;
2105 if (topline > curbuf->b_ml.ml_line_count)
2106 topline = curbuf->b_ml.ml_line_count;
2107 if (topline < 1)
2108 topline = 1;
2109
2110 y = topline - curwin->w_topline;
2111 if (y > 0)
2112 scrollup(y, FALSE);
2113 else
2114 scrolldown(-y, FALSE);
2115 }
2116
2117 redraw_later(VALID);
2118 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 }
2121
2122 /*
2123 * do the horizontal scroll
2124 */
2125 if (want_hor && curwin->w_leftcol != tgt_leftcol)
2126 {
2127 curwin->w_leftcol = tgt_leftcol;
2128 leftcol_changed();
2129 }
2130 }
2131 }
2132
2133 /*
2134 * reset current-window
2135 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 VIsual_select = old_VIsual_select;
2137 VIsual_active = old_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 curwin = old_curwin;
2139 curbuf = old_curbuf;
2140}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141
2142/*
2143 * Command character that's ignored.
2144 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02002145 * xon/xoff.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002148nv_ignore(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002150 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151}
2152
2153/*
Bram Moolenaarebefac62005-12-28 22:39:57 +00002154 * Command character that doesn't do anything, but unlike nv_ignore() does
2155 * start edit(). Used for "startinsert" executed while starting up.
2156 */
Bram Moolenaarebefac62005-12-28 22:39:57 +00002157 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002158nv_nop(cmdarg_T *cap UNUSED)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002159{
2160}
2161
2162/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 * Command character doesn't exist.
2164 */
2165 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002166nv_error(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167{
2168 clearopbeep(cap->oap);
2169}
2170
2171/*
2172 * <Help> and <F1> commands.
2173 */
2174 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002175nv_help(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176{
2177 if (!checkclearopq(cap->oap))
2178 ex_help(NULL);
2179}
2180
2181/*
2182 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
2183 */
2184 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002185nv_addsub(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186{
Bram Moolenaarf2732452018-06-03 14:47:35 +02002187#ifdef FEAT_JOB_CHANNEL
2188 if (bt_prompt(curbuf) && !prompt_curpos_editable())
2189 clearopbeep(cap->oap);
2190 else
2191#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01002192 if (!VIsual_active && cap->oap->op_type == OP_NOP)
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002193 {
Bram Moolenaaref2b5032016-01-12 22:20:58 +01002194 prep_redo_cmd(cap);
Bram Moolenaard79e5502016-01-10 22:13:02 +01002195 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB;
2196 op_addsub(cap->oap, cap->count1, cap->arg);
2197 cap->oap->op_type = OP_NOP;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002198 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01002199 else if (VIsual_active)
2200 nv_operator(cap);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02002201 else
Bram Moolenaard79e5502016-01-10 22:13:02 +01002202 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203}
2204
2205/*
2206 * CTRL-F, CTRL-B, etc: Scroll page up or down.
2207 */
2208 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002209nv_page(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210{
2211 if (!checkclearop(cap->oap))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002212 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002213 if (mod_mask & MOD_MASK_CTRL)
2214 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002215 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002216 if (cap->arg == BACKWARD)
2217 goto_tabpage(-(int)cap->count1);
2218 else
2219 goto_tabpage((int)cap->count0);
2220 }
2221 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02002222 (void)onepage(cap->arg, cap->count1);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002223 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224}
2225
2226/*
2227 * Implementation of "gd" and "gD" command.
2228 */
2229 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002230nv_gd(
2231 oparg_T *oap,
2232 int nchar,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002233 int thisblock) // 1 for "1gd" and "1gD"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234{
2235 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 char_u *ptr;
2237
Bram Moolenaard9d30582005-05-18 22:10:28 +00002238 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
Bram Moolenaar1538fc32016-04-16 09:13:34 +02002239 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)
2240 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 clearopbeep(oap);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002242#ifdef FEAT_FOLDING
2243 else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
2244 foldOpenCursor();
2245#endif
2246}
2247
2248/*
Bram Moolenaar226630a2016-10-08 19:21:31 +02002249 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE
2250 * otherwise.
2251 */
2252 static int
2253is_ident(char_u *line, int offset)
2254{
2255 int i;
2256 int incomment = FALSE;
2257 int instring = 0;
2258 int prev = 0;
2259
2260 for (i = 0; i < offset && line[i] != NUL; i++)
2261 {
2262 if (instring != 0)
2263 {
2264 if (prev != '\\' && line[i] == instring)
2265 instring = 0;
2266 }
2267 else if ((line[i] == '"' || line[i] == '\'') && !incomment)
2268 {
2269 instring = line[i];
2270 }
2271 else
2272 {
2273 if (incomment)
2274 {
2275 if (prev == '*' && line[i] == '/')
2276 incomment = FALSE;
2277 }
2278 else if (prev == '/' && line[i] == '*')
2279 {
2280 incomment = TRUE;
2281 }
2282 else if (prev == '/' && line[i] == '/')
2283 {
2284 return FALSE;
2285 }
2286 }
2287
2288 prev = line[i];
2289 }
2290
2291 return incomment == FALSE && instring == 0;
2292}
2293
2294/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002295 * Search for variable declaration of "ptr[len]".
2296 * When "locally" is TRUE in the current function ("gd"), otherwise in the
2297 * current file ("gD").
2298 * When "thisblock" is TRUE check the {} block scope.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002299 * Return FAIL when not found.
2300 */
2301 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002302find_decl(
2303 char_u *ptr,
2304 int len,
2305 int locally,
2306 int thisblock,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002307 int flags_arg) // flags passed to searchit()
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002308{
2309 char_u *pat;
2310 pos_T old_pos;
2311 pos_T par_pos;
2312 pos_T found_pos;
2313 int t;
2314 int save_p_ws;
2315 int save_p_scs;
2316 int retval = OK;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002317 int incll;
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002318 int searchflags = flags_arg;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002319 int valid;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002320
2321 if ((pat = alloc(len + 7)) == NULL)
2322 return FAIL;
Bram Moolenaard9d30582005-05-18 22:10:28 +00002323
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002324 // Put "\V" before the pattern to avoid that the special meaning of "."
2325 // and "~" causes trouble.
Bram Moolenaard9d30582005-05-18 22:10:28 +00002326 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
2327 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 old_pos = curwin->w_cursor;
2329 save_p_ws = p_ws;
2330 save_p_scs = p_scs;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002331 p_ws = FALSE; // don't wrap around end of file now
2332 p_scs = FALSE; // don't switch ignorecase off now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333
2334 /*
2335 * With "gD" go to line 1.
2336 * With "gd" Search back for the start of the current function, then go
2337 * back until a blank line. If this fails go to line 1.
2338 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002339 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002341 setpcmark(); // Set in findpar() otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 curwin->w_cursor.lnum = 1;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002343 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 }
2345 else
2346 {
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002347 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
2349 --curwin->w_cursor.lnum;
2350 }
2351 curwin->w_cursor.col = 0;
2352
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002353 // Search forward for the identifier, ignore comment lines.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002354 CLEAR_POS(&found_pos);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002355 for (;;)
2356 {
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002357 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02002358 pat, 1L, searchflags, RE_LAST, NULL);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002359 if (curwin->w_cursor.lnum >= old_pos.lnum)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002360 t = FAIL; // match after start is failure too
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002361
Bram Moolenaar0fd92892006-03-09 22:27:48 +00002362 if (thisblock && t != FAIL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002363 {
2364 pos_T *pos;
2365
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002366 // Check that the block the match is in doesn't end before the
2367 // position where we started the search from.
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002368 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
2369 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
2370 && pos->lnum < old_pos.lnum)
Bram Moolenaar60402d62017-04-20 18:54:50 +02002371 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002372 // There can't be a useful match before the end of this block.
2373 // Skip to the end.
Bram Moolenaar60402d62017-04-20 18:54:50 +02002374 curwin->w_cursor = *pos;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002375 continue;
Bram Moolenaar60402d62017-04-20 18:54:50 +02002376 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002377 }
2378
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002379 if (t == FAIL)
2380 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002381 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002382 if (found_pos.lnum != 0)
2383 {
2384 curwin->w_cursor = found_pos;
2385 t = OK;
2386 }
2387 break;
2388 }
Bram Moolenaar81340392012-06-06 16:12:59 +02002389 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002390 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002391 // Ignore this line, continue at start of next line.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002392 ++curwin->w_cursor.lnum;
2393 curwin->w_cursor.col = 0;
2394 continue;
2395 }
Bram Moolenaar226630a2016-10-08 19:21:31 +02002396 valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
2397
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002398 // If the current position is not a valid identifier and a previous
2399 // match is present, favor that one instead.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002400 if (!valid && found_pos.lnum != 0)
2401 {
2402 curwin->w_cursor = found_pos;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002403 break;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002404 }
2405
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002406 // Global search: use first valid match found
Bram Moolenaar226630a2016-10-08 19:21:31 +02002407 if (valid && !locally)
2408 break;
2409 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002410 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002411 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002412 if (found_pos.lnum != 0)
2413 curwin->w_cursor = found_pos;
2414 break;
2415 }
2416
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002417 // For finding a local variable and the match is before the "{" or
2418 // inside a comment, continue searching. For K&R style function
2419 // declarations this skips the function header without types.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002420 if (!valid)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002421 CLEAR_POS(&found_pos);
Bram Moolenaar226630a2016-10-08 19:21:31 +02002422 else
Bram Moolenaar226630a2016-10-08 19:21:31 +02002423 found_pos = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002424 // Remove SEARCH_START from flags to avoid getting stuck at one
2425 // position.
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002426 searchflags &= ~SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002428
2429 if (t == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002431 retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 curwin->w_cursor = old_pos;
2433 }
2434 else
2435 {
2436 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002437 // "n" searches forward now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 reset_search_dir();
2439 }
2440
2441 vim_free(pat);
2442 p_ws = save_p_ws;
2443 p_scs = save_p_scs;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002444
2445 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446}
2447
2448/*
2449 * Move 'dist' lines in direction 'dir', counting lines by *screen*
2450 * lines rather than lines in the file.
2451 * 'dist' must be positive.
2452 *
2453 * Return OK if able to move cursor, FAIL otherwise.
2454 */
2455 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002456nv_screengo(oparg_T *oap, int dir, long dist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457{
2458 int linelen = linetabsize(ml_get_curline());
2459 int retval = OK;
2460 int atend = FALSE;
2461 int n;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002462 int col_off1; // margin offset for first screen line
2463 int col_off2; // margin offset for wrapped screen line
2464 int width1; // text width for first screen line
2465 int width2; // test width for wrapped screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466
2467 oap->motion_type = MCHAR;
Bram Moolenaar91b2bdb2013-07-14 13:32:15 +02002468 oap->inclusive = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469
2470 col_off1 = curwin_col_off();
2471 col_off2 = col_off1 - curwin_col_off2();
Bram Moolenaar02631462017-09-22 15:20:32 +02002472 width1 = curwin->w_width - col_off1;
2473 width2 = curwin->w_width - col_off2;
Bram Moolenaar7cc8ec42015-01-27 20:59:31 +01002474 if (width2 == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002475 width2 = 1; // avoid divide by zero
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 if (curwin->w_width != 0)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002478 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 /*
2480 * Instead of sticking at the last character of the buffer line we
2481 * try to stick in the last column of the screen.
2482 */
2483 if (curwin->w_curswant == MAXCOL)
2484 {
2485 atend = TRUE;
2486 validate_virtcol();
2487 if (width1 <= 0)
2488 curwin->w_curswant = 0;
2489 else
2490 {
2491 curwin->w_curswant = width1 - 1;
2492 if (curwin->w_virtcol > curwin->w_curswant)
2493 curwin->w_curswant += ((curwin->w_virtcol
2494 - curwin->w_curswant - 1) / width2 + 1) * width2;
2495 }
2496 }
2497 else
2498 {
2499 if (linelen > width1)
2500 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2501 else
2502 n = width1;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002503 if (curwin->w_curswant >= (colnr_T)n)
2504 curwin->w_curswant = n - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 }
2506
2507 while (dist--)
2508 {
2509 if (dir == BACKWARD)
2510 {
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002511 if ((long)curwin->w_curswant >= width1)
2512 // Move back within the line. This can give a negative value
2513 // for w_curswant if width1 < width2 (with cpoptions+=n),
2514 // which will get clipped to column 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 curwin->w_curswant -= width2;
2516 else
2517 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002518 // to previous line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 if (curwin->w_cursor.lnum == 1)
2520 {
2521 retval = FAIL;
2522 break;
2523 }
2524 --curwin->w_cursor.lnum;
2525#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002526 // Move to the start of a closed fold. Don't do that when
2527 // 'foldopen' contains "all": it will open in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 if (!(fdo_flags & FDO_ALL))
2529 (void)hasFolding(curwin->w_cursor.lnum,
2530 &curwin->w_cursor.lnum, NULL);
2531#endif
2532 linelen = linetabsize(ml_get_curline());
2533 if (linelen > width1)
2534 curwin->w_curswant += (((linelen - width1 - 1) / width2)
2535 + 1) * width2;
2536 }
2537 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002538 else // dir == FORWARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 {
2540 if (linelen > width1)
2541 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2542 else
2543 n = width1;
2544 if (curwin->w_curswant + width2 < (colnr_T)n)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002545 // move forward within line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 curwin->w_curswant += width2;
2547 else
2548 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002549 // to next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002551 // Move to the end of a closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2553 &curwin->w_cursor.lnum);
2554#endif
2555 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
2556 {
2557 retval = FAIL;
2558 break;
2559 }
2560 curwin->w_cursor.lnum++;
2561 curwin->w_curswant %= width2;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002562 // Check if the cursor has moved below the number display
2563 // when width1 < width2 (with cpoptions+=n). Subtract width2
2564 // to get a negative value for w_curswant, which will get
2565 // clipped to column 0.
2566 if (curwin->w_curswant >= width1)
2567 curwin->w_curswant -= width2;
Bram Moolenaar914968e2011-06-20 00:45:58 +02002568 linelen = linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 }
2570 }
2571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573
Bram Moolenaar6cd3aee2014-01-14 13:18:58 +01002574 if (virtual_active() && atend)
2575 coladvance(MAXCOL);
2576 else
2577 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
2580 {
Bram Moolenaar773b1582014-08-29 14:20:51 +02002581 colnr_T virtcol;
2582
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 /*
2584 * Check for landing on a character that got split at the end of the
2585 * last line. We want to advance a screenline, not end up in the same
2586 * screenline or move two screenlines.
2587 */
2588 validate_virtcol();
Bram Moolenaar773b1582014-08-29 14:20:51 +02002589 virtcol = curwin->w_virtcol;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002590#if defined(FEAT_LINEBREAK)
Bram Moolenaaree857022019-11-09 23:26:40 +01002591 if (virtcol > (colnr_T)width1 && *get_showbreak_value(curwin) != NUL)
2592 virtcol -= vim_strsize(get_showbreak_value(curwin));
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002593#endif
Bram Moolenaar773b1582014-08-29 14:20:51 +02002594
2595 if (virtcol > curwin->w_curswant
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 && (curwin->w_curswant < (colnr_T)width1
2597 ? (curwin->w_curswant > (colnr_T)width1 / 2)
2598 : ((curwin->w_curswant - width1) % width2
2599 > (colnr_T)width2 / 2)))
2600 --curwin->w_cursor.col;
2601 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602
2603 if (atend)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002604 curwin->w_curswant = MAXCOL; // stick in the last column
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605
2606 return retval;
2607}
2608
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609/*
2610 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
2611 * cap->arg must be TRUE for CTRL-E.
2612 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002613 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002614nv_scroll_line(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615{
2616 if (!checkclearop(cap->oap))
2617 scroll_redraw(cap->arg, cap->count1);
2618}
2619
2620/*
2621 * Scroll "count" lines up or down, and redraw.
2622 */
2623 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002624scroll_redraw(int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625{
2626 linenr_T prev_topline = curwin->w_topline;
2627#ifdef FEAT_DIFF
2628 int prev_topfill = curwin->w_topfill;
2629#endif
2630 linenr_T prev_lnum = curwin->w_cursor.lnum;
2631
2632 if (up)
2633 scrollup(count, TRUE);
2634 else
2635 scrolldown(count, TRUE);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002636 if (get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002638 // Adjust the cursor position for 'scrolloff'. Mark w_topline as
2639 // valid, otherwise the screen jumps back at the end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 cursor_correct();
2641 check_cursor_moved(curwin);
2642 curwin->w_valid |= VALID_TOPLINE;
2643
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002644 // If moved back to where we were, at least move the cursor, otherwise
2645 // we get stuck at one position. Don't move the cursor up if the
2646 // first line of the buffer is already on the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 while (curwin->w_topline == prev_topline
2648#ifdef FEAT_DIFF
2649 && curwin->w_topfill == prev_topfill
2650#endif
2651 )
2652 {
2653 if (up)
2654 {
2655 if (curwin->w_cursor.lnum > prev_lnum
2656 || cursor_down(1L, FALSE) == FAIL)
2657 break;
2658 }
2659 else
2660 {
2661 if (curwin->w_cursor.lnum < prev_lnum
2662 || prev_topline == 1L
2663 || cursor_up(1L, FALSE) == FAIL)
2664 break;
2665 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002666 // Mark w_topline as valid, otherwise the screen jumps back at the
2667 // end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 check_cursor_moved(curwin);
2669 curwin->w_valid |= VALID_TOPLINE;
2670 }
2671 }
2672 if (curwin->w_cursor.lnum != prev_lnum)
2673 coladvance(curwin->w_curswant);
2674 redraw_later(VALID);
2675}
2676
2677/*
2678 * Commands that start with "z".
2679 */
2680 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002681nv_zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682{
2683 long n;
2684 colnr_T col;
2685 int nchar = cap->nchar;
2686#ifdef FEAT_FOLDING
2687 long old_fdl = curwin->w_p_fdl;
2688 int old_fen = curwin->w_p_fen;
2689#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002690#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00002691 int undo = FALSE;
2692#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +01002693 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694
2695 if (VIM_ISDIGIT(nchar))
2696 {
2697 /*
2698 * "z123{nchar}": edit the count before obtaining {nchar}
2699 */
2700 if (checkclearop(cap->oap))
2701 return;
2702 n = nchar - '0';
2703 for (;;)
2704 {
2705#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002706 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707#endif
2708 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002709 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00002710 nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 --no_mapping;
2713 --allow_keys;
2714#ifdef FEAT_CMDL_INFO
2715 (void)add_to_showcmd(nchar);
2716#endif
2717 if (nchar == K_DEL || nchar == K_KDEL)
2718 n /= 10;
2719 else if (VIM_ISDIGIT(nchar))
2720 n = n * 10 + (nchar - '0');
2721 else if (nchar == CAR)
2722 {
2723#ifdef FEAT_GUI
2724 need_mouse_correct = TRUE;
2725#endif
2726 win_setheight((int)n);
2727 break;
2728 }
2729 else if (nchar == 'l'
2730 || nchar == 'h'
2731 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00002732 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 {
2734 cap->count1 = n ? n * cap->count1 : cap->count1;
2735 goto dozet;
2736 }
2737 else
2738 {
2739 clearopbeep(cap->oap);
2740 break;
2741 }
2742 }
2743 cap->oap->op_type = OP_NOP;
2744 return;
2745 }
2746
2747dozet:
2748 if (
2749#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002750 // "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
2751 // and "zC" only in Visual mode. "zj" and "zk" are motion
2752 // commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 cap->nchar != 'f' && cap->nchar != 'F'
2754 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
2755 && cap->nchar != 'j' && cap->nchar != 'k'
2756 &&
2757#endif
2758 checkclearop(cap->oap))
2759 return;
2760
2761 /*
2762 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
2763 * If line number given, set cursor.
2764 */
2765 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
2766 && cap->count0
2767 && cap->count0 != curwin->w_cursor.lnum)
2768 {
2769 setpcmark();
2770 if (cap->count0 > curbuf->b_ml.ml_line_count)
2771 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2772 else
2773 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002774 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 }
2776
2777 switch (nchar)
2778 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002779 // "z+", "z<CR>" and "zt": put cursor at top of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780 case '+':
2781 if (cap->count0 == 0)
2782 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002783 // No count given: put cursor at the line below screen
2784 validate_botline(); // make sure w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2786 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2787 else
2788 curwin->w_cursor.lnum = curwin->w_botline;
2789 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002790 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 case NL:
2792 case CAR:
2793 case K_KENTER:
2794 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002795 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796
2797 case 't': scroll_cursor_top(0, TRUE);
2798 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002799 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 break;
2801
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002802 // "z." and "zz": put cursor in middle of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 case '.': beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002804 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805
2806 case 'z': scroll_cursor_halfway(TRUE);
2807 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002808 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 break;
2810
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002811 // "z^", "z-" and "zb": put cursor at bottom of screen
2812 case '^': // Strange Vi behavior: <count>z^ finds line at top of window
2813 // when <count> is at bottom of window, and puts that one at
2814 // bottom of window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 if (cap->count0 != 0)
2816 {
2817 scroll_cursor_bot(0, TRUE);
2818 curwin->w_cursor.lnum = curwin->w_topline;
2819 }
2820 else if (curwin->w_topline == 1)
2821 curwin->w_cursor.lnum = 1;
2822 else
2823 curwin->w_cursor.lnum = curwin->w_topline - 1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002824 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 case '-':
2826 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002827 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828
2829 case 'b': scroll_cursor_bot(0, TRUE);
2830 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002831 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 break;
2833
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002834 // "zH" - scroll screen right half-page
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 case 'H':
Bram Moolenaar02631462017-09-22 15:20:32 +02002836 cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002837 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002839 // "zh" - scroll screen to the right
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 case 'h':
2841 case K_LEFT:
2842 if (!curwin->w_p_wrap)
2843 {
2844 if ((colnr_T)cap->count1 > curwin->w_leftcol)
2845 curwin->w_leftcol = 0;
2846 else
2847 curwin->w_leftcol -= (colnr_T)cap->count1;
2848 leftcol_changed();
2849 }
2850 break;
2851
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002852 // "zL" - scroll screen left half-page
Bram Moolenaar02631462017-09-22 15:20:32 +02002853 case 'L': cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002854 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002856 // "zl" - scroll screen to the left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 case 'l':
2858 case K_RIGHT:
2859 if (!curwin->w_p_wrap)
2860 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002861 // scroll the window left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 curwin->w_leftcol += (colnr_T)cap->count1;
2863 leftcol_changed();
2864 }
2865 break;
2866
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002867 // "zs" - scroll screen, cursor at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 case 's': if (!curwin->w_p_wrap)
2869 {
2870#ifdef FEAT_FOLDING
2871 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002872 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 else
2874#endif
2875 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002876 if ((long)col > siso)
2877 col -= siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 else
2879 col = 0;
2880 if (curwin->w_leftcol != col)
2881 {
2882 curwin->w_leftcol = col;
2883 redraw_later(NOT_VALID);
2884 }
2885 }
2886 break;
2887
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002888 // "ze" - scroll screen, cursor at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 case 'e': if (!curwin->w_p_wrap)
2890 {
2891#ifdef FEAT_FOLDING
2892 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002893 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 else
2895#endif
2896 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
Bram Moolenaar02631462017-09-22 15:20:32 +02002897 n = curwin->w_width - curwin_col_off();
Bram Moolenaar375e3392019-01-31 18:26:10 +01002898 if ((long)col + siso < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 col = 0;
2900 else
Bram Moolenaar375e3392019-01-31 18:26:10 +01002901 col = col + siso - n + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 if (curwin->w_leftcol != col)
2903 {
2904 curwin->w_leftcol = col;
2905 redraw_later(NOT_VALID);
2906 }
2907 }
2908 break;
2909
2910#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002911 // "zF": create fold command
2912 // "zf": create fold operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 case 'F':
2914 case 'f': if (foldManualAllowed(TRUE))
2915 {
2916 cap->nchar = 'f';
2917 nv_operator(cap);
2918 curwin->w_p_fen = TRUE;
2919
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002920 // "zF" is like "zfzf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
2922 {
2923 nv_operator(cap);
2924 finish_op = TRUE;
2925 }
2926 }
2927 else
2928 clearopbeep(cap->oap);
2929 break;
2930
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002931 // "zd": delete fold at cursor
2932 // "zD": delete fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 case 'd':
2934 case 'D': if (foldManualAllowed(FALSE))
2935 {
2936 if (VIsual_active)
2937 nv_operator(cap);
2938 else
2939 deleteFold(curwin->w_cursor.lnum,
2940 curwin->w_cursor.lnum, nchar == 'D', FALSE);
2941 }
2942 break;
2943
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002944 // "zE": erase all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 case 'E': if (foldmethodIsManual(curwin))
2946 {
2947 clearFolding(curwin);
2948 changed_window_setting();
2949 }
2950 else if (foldmethodIsMarker(curwin))
2951 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
2952 TRUE, FALSE);
2953 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002954 emsg(_("E352: Cannot erase folds with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 break;
2956
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002957 // "zn": fold none: reset 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 case 'n': curwin->w_p_fen = FALSE;
2959 break;
2960
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002961 // "zN": fold Normal: set 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 case 'N': curwin->w_p_fen = TRUE;
2963 break;
2964
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002965 // "zi": invert folding: toggle 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
2967 break;
2968
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002969 // "za": open closed fold or close open fold at cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
2971 openFold(curwin->w_cursor.lnum, cap->count1);
2972 else
2973 {
2974 closeFold(curwin->w_cursor.lnum, cap->count1);
2975 curwin->w_p_fen = TRUE;
2976 }
2977 break;
2978
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002979 // "zA": open fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
2981 openFoldRecurse(curwin->w_cursor.lnum);
2982 else
2983 {
2984 closeFoldRecurse(curwin->w_cursor.lnum);
2985 curwin->w_p_fen = TRUE;
2986 }
2987 break;
2988
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002989 // "zo": open fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 case 'o': if (VIsual_active)
2991 nv_operator(cap);
2992 else
2993 openFold(curwin->w_cursor.lnum, cap->count1);
2994 break;
2995
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002996 // "zO": open fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 case 'O': if (VIsual_active)
2998 nv_operator(cap);
2999 else
3000 openFoldRecurse(curwin->w_cursor.lnum);
3001 break;
3002
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003003 // "zc": close fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 case 'c': if (VIsual_active)
3005 nv_operator(cap);
3006 else
3007 closeFold(curwin->w_cursor.lnum, cap->count1);
3008 curwin->w_p_fen = TRUE;
3009 break;
3010
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003011 // "zC": close fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 case 'C': if (VIsual_active)
3013 nv_operator(cap);
3014 else
3015 closeFoldRecurse(curwin->w_cursor.lnum);
3016 curwin->w_p_fen = TRUE;
3017 break;
3018
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003019 // "zv": open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 case 'v': foldOpenCursor();
3021 break;
3022
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003023 // "zx": re-apply 'foldlevel' and open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 case 'x': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003025 curwin->w_foldinvalid = TRUE; // recompute folds
3026 newFoldLevel(); // update right now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 foldOpenCursor();
3028 break;
3029
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003030 // "zX": undo manual opens/closes, re-apply 'foldlevel'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 case 'X': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003032 curwin->w_foldinvalid = TRUE; // recompute folds
3033 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034 break;
3035
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003036 // "zm": fold more
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 case 'm': if (curwin->w_p_fdl > 0)
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003038 {
3039 curwin->w_p_fdl -= cap->count1;
3040 if (curwin->w_p_fdl < 0)
3041 curwin->w_p_fdl = 0;
3042 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003043 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 curwin->w_p_fen = TRUE;
3045 break;
3046
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003047 // "zM": close all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 case 'M': curwin->w_p_fdl = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003049 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 curwin->w_p_fen = TRUE;
3051 break;
3052
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003053 // "zr": reduce folding
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003054 case 'r': curwin->w_p_fdl += cap->count1;
3055 {
3056 int d = getDeepestNesting();
3057
3058 if (curwin->w_p_fdl >= d)
3059 curwin->w_p_fdl = d;
3060 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 break;
3062
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003063 // "zR": open all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 case 'R': curwin->w_p_fdl = getDeepestNesting();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003065 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066 break;
3067
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003068 case 'j': // "zj" move to next fold downwards
3069 case 'k': // "zk" move to next fold upwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
3071 cap->count1) == FAIL)
3072 clearopbeep(cap->oap);
3073 break;
3074
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003075#endif // FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00003077#ifdef FEAT_SPELL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003078 case 'u': // "zug" and "zuw": undo "zg" and "zw"
Bram Moolenaard0131a82006-03-04 21:46:13 +00003079 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003080 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003081 nchar = plain_vgetc();
Bram Moolenaard0131a82006-03-04 21:46:13 +00003082 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaard0131a82006-03-04 21:46:13 +00003083 --no_mapping;
3084 --allow_keys;
3085#ifdef FEAT_CMDL_INFO
3086 (void)add_to_showcmd(nchar);
3087#endif
3088 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
3089 {
3090 clearopbeep(cap->oap);
3091 break;
3092 }
3093 undo = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003094 // FALLTHROUGH
Bram Moolenaard0131a82006-03-04 21:46:13 +00003095
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003096 case 'g': // "zg": add good word to word list
3097 case 'w': // "zw": add wrong word to word list
3098 case 'G': // "zG": add good word to temp word list
3099 case 'W': // "zW": add wrong word to temp word list
Bram Moolenaarb765d632005-06-07 21:00:02 +00003100 {
3101 char_u *ptr = NULL;
3102 int len;
3103
3104 if (checkclearop(cap->oap))
3105 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003106 if (VIsual_active && get_visual_text(cap, &ptr, &len)
3107 == FAIL)
3108 return;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003109 if (ptr == NULL)
3110 {
3111 pos_T pos = curwin->w_cursor;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003112
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003113 // Find bad word under the cursor. When 'spell' is
3114 // off this fails and find_ident_under_cursor() is
3115 // used below.
Bram Moolenaar134bf072013-09-25 18:54:24 +02003116 emsg_off++;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003117 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
Bram Moolenaar134bf072013-09-25 18:54:24 +02003118 emsg_off--;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003119 if (len != 0 && curwin->w_cursor.col <= pos.col)
3120 ptr = ml_get_pos(&curwin->w_cursor);
3121 curwin->w_cursor = pos;
3122 }
3123
Bram Moolenaarb765d632005-06-07 21:00:02 +00003124 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
3125 FIND_IDENT)) == 0)
3126 return;
Bram Moolenaar08cc3742019-08-11 22:51:14 +02003127 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W'
3128 ? SPELL_ADD_BAD : SPELL_ADD_GOOD,
Bram Moolenaard0131a82006-03-04 21:46:13 +00003129 (nchar == 'G' || nchar == 'W')
3130 ? 0 : (int)cap->count1,
3131 undo);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003132 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00003133 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003134
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003135 case '=': // "z=": suggestions for a badly spelled word
Bram Moolenaar66fa2712006-01-22 23:22:22 +00003136 if (!checkclearop(cap->oap))
Bram Moolenaard12a1322005-08-21 22:08:24 +00003137 spell_suggest((int)cap->count0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003138 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003139#endif
3140
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 default: clearopbeep(cap->oap);
3142 }
3143
3144#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003145 // Redraw when 'foldenable' changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 if (old_fen != curwin->w_p_fen)
3147 {
3148# ifdef FEAT_DIFF
3149 win_T *wp;
3150
3151 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
3152 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003153 // Adjust 'foldenable' in diff-synced windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 FOR_ALL_WINDOWS(wp)
3155 {
3156 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
3157 {
3158 wp->w_p_fen = curwin->w_p_fen;
3159 changed_window_setting_win(wp);
3160 }
3161 }
3162 }
3163# endif
3164 changed_window_setting();
3165 }
3166
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003167 // Redraw when 'foldlevel' changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 if (old_fdl != curwin->w_p_fdl)
3169 newFoldLevel();
3170#endif
3171}
3172
3173#ifdef FEAT_GUI
3174/*
3175 * Vertical scrollbar movement.
3176 */
3177 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003178nv_ver_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179{
3180 if (cap->oap->op_type != OP_NOP)
3181 clearopbeep(cap->oap);
3182
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003183 // Even if an operator was pending, we still want to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 gui_do_scroll();
3185}
3186
3187/*
3188 * Horizontal scrollbar movement.
3189 */
3190 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003191nv_hor_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192{
3193 if (cap->oap->op_type != OP_NOP)
3194 clearopbeep(cap->oap);
3195
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003196 // Even if an operator was pending, we still want to scroll
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003197 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198}
3199#endif
3200
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003201#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003202/*
3203 * Click in GUI tab.
3204 */
3205 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003206nv_tabline(cmdarg_T *cap)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003207{
3208 if (cap->oap->op_type != OP_NOP)
3209 clearopbeep(cap->oap);
3210
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003211 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003212 goto_tabpage(current_tab);
3213}
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003214
3215/*
3216 * Selected item in tab line menu.
3217 */
3218 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003219nv_tabmenu(cmdarg_T *cap)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003220{
3221 if (cap->oap->op_type != OP_NOP)
3222 clearopbeep(cap->oap);
3223
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003224 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003225 handle_tabmenu();
3226}
3227
3228/*
3229 * Handle selecting an item of the GUI tab line menu.
3230 * Used in Normal and Insert mode.
3231 */
3232 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003233handle_tabmenu(void)
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003234{
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003235 switch (current_tabmenu)
3236 {
3237 case TABLINE_MENU_CLOSE:
3238 if (current_tab == 0)
3239 do_cmdline_cmd((char_u *)"tabclose");
3240 else
3241 {
3242 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
3243 current_tab);
3244 do_cmdline_cmd(IObuff);
3245 }
3246 break;
3247
3248 case TABLINE_MENU_NEW:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003249 if (current_tab == 0)
3250 do_cmdline_cmd((char_u *)"$tabnew");
3251 else
3252 {
3253 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
3254 current_tab - 1);
3255 do_cmdline_cmd(IObuff);
3256 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003257 break;
3258
3259 case TABLINE_MENU_OPEN:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003260 if (current_tab == 0)
3261 do_cmdline_cmd((char_u *)"browse $tabnew");
3262 else
3263 {
3264 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
3265 current_tab - 1);
3266 do_cmdline_cmd(IObuff);
3267 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003268 break;
3269 }
3270}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003271#endif
3272
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273/*
3274 * "Q" command.
3275 */
3276 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003277nv_exmode(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278{
3279 /*
3280 * Ignore 'Q' in Visual mode, just give a beep.
3281 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 if (VIsual_active)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003283 vim_beep(BO_EX);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003284 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 do_exmode(FALSE);
3286}
3287
3288/*
3289 * Handle a ":" command.
3290 */
3291 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003292nv_colon(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293{
3294 int old_p_im;
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003295 int cmd_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 if (VIsual_active)
3298 nv_operator(cap);
3299 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 {
3301 if (cap->oap->op_type != OP_NOP)
3302 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003303 // Using ":" as a movement is characterwise exclusive.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304 cap->oap->motion_type = MCHAR;
3305 cap->oap->inclusive = FALSE;
3306 }
3307 else if (cap->count0)
3308 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003309 // translate "count:" into ":.,.+(count - 1)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 stuffcharReadbuff('.');
3311 if (cap->count0 > 1)
3312 {
3313 stuffReadbuff((char_u *)",.+");
3314 stuffnumReadbuff((long)cap->count0 - 1L);
3315 }
3316 }
3317
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003318 // When typing, don't type below an old message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 if (KeyTyped)
3320 compute_cmdrow();
3321
3322 old_p_im = p_im;
3323
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003324 // get a command line and execute it
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003325 cmd_result = do_cmdline(NULL, getexline, NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
3327
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003328 // If 'insertmode' changed, enter or exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329 if (p_im != old_p_im)
3330 {
3331 if (p_im)
3332 restart_edit = 'i';
3333 else
3334 restart_edit = 0;
3335 }
3336
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003337 if (cmd_result == FAIL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003338 // The Ex command failed, do not execute the operator.
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003339 clearop(cap->oap);
3340 else if (cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
3342 || cap->oap->start.col >
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003343 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
3344 || did_emsg
3345 ))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003346 // The start of the operator has become invalid by the Ex command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 clearopbeep(cap->oap);
3348 }
3349}
3350
3351/*
3352 * Handle CTRL-G command.
3353 */
3354 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003355nv_ctrlg(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003357 if (VIsual_active) // toggle Selection/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 {
3359 VIsual_select = !VIsual_select;
3360 showmode();
3361 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003362 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003363 // print full name if count given or :cd used
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 fileinfo((int)cap->count0, FALSE, TRUE);
3365}
3366
3367/*
3368 * Handle CTRL-H <Backspace> command.
3369 */
3370 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003371nv_ctrlh(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373 if (VIsual_active && VIsual_select)
3374 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003375 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 v_visop(cap);
3377 }
3378 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 nv_left(cap);
3380}
3381
3382/*
3383 * CTRL-L: clear screen and redraw.
3384 */
3385 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003386nv_clear(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387{
3388 if (!checkclearop(cap->oap))
3389 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390#ifdef FEAT_SYN_HL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003391 // Clear all syntax states to force resyncing.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003392 syn_stack_free_all(curwin->w_s);
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02003393# ifdef FEAT_RELTIME
3394 {
3395 win_T *wp;
3396
3397 FOR_ALL_WINDOWS(wp)
3398 wp->w_s->b_syn_slow = FALSE;
3399 }
3400# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401#endif
3402 redraw_later(CLEAR);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003403#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3404# ifdef VIMDLL
3405 if (!gui.in_use)
3406# endif
3407 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01003408#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 }
3410}
3411
3412/*
3413 * CTRL-O: In Select mode: switch to Visual mode for one command.
3414 * Otherwise: Go to older pcmark.
3415 */
3416 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003417nv_ctrlo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 if (VIsual_active && VIsual_select)
3420 {
3421 VIsual_select = FALSE;
3422 showmode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003423 restart_VIsual_select = 2; // restart Select mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 }
3425 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 {
3427 cap->count1 = -cap->count1;
3428 nv_pcmark(cap);
3429 }
3430}
3431
3432/*
Bram Moolenaar1bbb6192018-11-10 16:02:01 +01003433 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is
3434 * not named.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435 */
3436 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003437nv_hat(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438{
3439 if (!checkclearopq(cap->oap))
3440 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
3441 GETF_SETMARK|GETF_ALT, FALSE);
3442}
3443
3444/*
3445 * "Z" commands.
3446 */
3447 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003448nv_Zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449{
3450 if (!checkclearopq(cap->oap))
3451 {
3452 switch (cap->nchar)
3453 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003454 // "ZZ": equivalent to ":x".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 case 'Z': do_cmdline_cmd((char_u *)"x");
3456 break;
3457
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003458 // "ZQ": equivalent to ":q!" (Elvis compatible).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 case 'Q': do_cmdline_cmd((char_u *)"q!");
3460 break;
3461
3462 default: clearopbeep(cap->oap);
3463 }
3464 }
3465}
3466
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467/*
3468 * Call nv_ident() as if "c1" was used, with "c2" as next character.
3469 */
3470 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003471do_nv_ident(int c1, int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472{
3473 oparg_T oa;
3474 cmdarg_T ca;
3475
3476 clear_oparg(&oa);
Bram Moolenaara80faa82020-04-12 19:37:17 +02003477 CLEAR_FIELD(ca);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 ca.oap = &oa;
3479 ca.cmdchar = c1;
3480 ca.nchar = c2;
3481 nv_ident(&ca);
3482}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483
3484/*
3485 * Handle the commands that use the word under the cursor.
3486 * [g] CTRL-] :ta to current identifier
3487 * [g] 'K' run program for current identifier
3488 * [g] '*' / to current identifier or string
3489 * [g] '#' ? to current identifier or string
3490 * g ']' :tselect for current identifier
3491 */
3492 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003493nv_ident(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494{
3495 char_u *ptr = NULL;
3496 char_u *buf;
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003497 unsigned buflen;
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003498 char_u *newbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 char_u *p;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003500 char_u *kp; // value of 'keywordprg'
3501 int kp_help; // 'keywordprg' is ":he"
3502 int kp_ex; // 'keywordprg' starts with ":"
3503 int n = 0; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 int cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003505 int g_cmd; // "g" command
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003506 int tag_cmd = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 char_u *aux_ptr;
3508 int isman;
3509 int isman_s;
3510
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003511 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 {
3513 cmdchar = cap->nchar;
3514 g_cmd = TRUE;
3515 }
3516 else
3517 {
3518 cmdchar = cap->cmdchar;
3519 g_cmd = FALSE;
3520 }
3521
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003522 if (cmdchar == POUND) // the pound sign, '#' for English keyboards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 cmdchar = '#';
3524
3525 /*
3526 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
3527 */
3528 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
3529 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
3531 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 if (checkclearopq(cap->oap))
3533 return;
3534 }
3535
3536 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
3537 (cmdchar == '*' || cmdchar == '#')
3538 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
3539 {
3540 clearop(cap->oap);
3541 return;
3542 }
3543
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003544 // Allocate buffer to put the command in. Inserting backslashes can
3545 // double the length of the word. p_kp / curbuf->b_p_kp could be added
3546 // and some numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
3548 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
3549 || STRCMP(kp, ":help") == 0);
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003550 if (kp_help && *skipwhite(ptr) == NUL)
3551 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003552 emsg(_(e_noident)); // found white space only
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003553 return;
3554 }
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003555 kp_ex = (*kp == ':');
3556 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp));
3557 buf = alloc(buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 if (buf == NULL)
3559 return;
3560 buf[0] = NUL;
3561
3562 switch (cmdchar)
3563 {
3564 case '*':
3565 case '#':
3566 /*
3567 * Put cursor at start of word, makes search skip the word
3568 * under the cursor.
3569 * Call setpcmark() first, so "*``" puts the cursor back where
3570 * it was.
3571 */
3572 setpcmark();
3573 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
3574
3575 if (!g_cmd && vim_iswordp(ptr))
3576 STRCPY(buf, "\\<");
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003577 no_smartcase = TRUE; // don't use 'smartcase' now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 break;
3579
3580 case 'K':
3581 if (kp_help)
3582 STRCPY(buf, "he! ");
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003583 else if (kp_ex)
3584 {
3585 if (cap->count0 != 0)
3586 vim_snprintf((char *)buf, buflen, "%s %ld",
3587 kp, cap->count0);
3588 else
3589 STRCPY(buf, kp);
3590 STRCAT(buf, " ");
3591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 else
3593 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003594 // An external command will probably use an argument starting
3595 // with "-" as an option. To avoid trouble we skip the "-".
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003596 while (*ptr == '-' && n > 0)
3597 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003598 ++ptr;
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003599 --n;
3600 }
3601 if (n == 0)
3602 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003603 emsg(_(e_noident)); // found dashes only
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003604 vim_free(buf);
3605 return;
3606 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003607
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003608 // When a count is given, turn it into a range. Is this
3609 // really what we want?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 isman = (STRCMP(kp, "man") == 0);
3611 isman_s = (STRCMP(kp, "man -s") == 0);
3612 if (cap->count0 != 0 && !(isman || isman_s))
3613 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
3614
3615 STRCAT(buf, "! ");
3616 if (cap->count0 == 0 && isman_s)
3617 STRCAT(buf, "man");
3618 else
3619 STRCAT(buf, kp);
3620 STRCAT(buf, " ");
3621 if (cap->count0 != 0 && (isman || isman_s))
3622 {
3623 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
3624 STRCAT(buf, " ");
3625 }
3626 }
3627 break;
3628
3629 case ']':
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003630 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631#ifdef FEAT_CSCOPE
3632 if (p_cst)
3633 STRCPY(buf, "cstag ");
3634 else
3635#endif
3636 STRCPY(buf, "ts ");
3637 break;
3638
3639 default:
Bram Moolenaar97e7a842010-03-17 13:07:08 +01003640 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 if (curbuf->b_help)
3642 STRCPY(buf, "he! ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 else
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003644 {
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003645 if (g_cmd)
3646 STRCPY(buf, "tj ");
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003647 else if (cap->count0 == 0)
3648 STRCPY(buf, "ta ");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003649 else
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003650 sprintf((char *)buf, ":%ldta ", cap->count0);
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003651 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 }
3653
3654 /*
3655 * Now grab the chars in the identifier
3656 */
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003657 if (cmdchar == 'K' && !kp_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 {
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003659 ptr = vim_strnsave(ptr, n);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003660 if (kp_ex)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003661 // Escape the argument properly for an Ex command
Bram Moolenaar426f3752016-11-04 21:22:37 +01003662 p = vim_strsave_fnameescape(ptr, FALSE);
3663 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003664 // Escape the argument properly for a shell command
Bram Moolenaar426f3752016-11-04 21:22:37 +01003665 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003666 vim_free(ptr);
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003667 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003669 vim_free(buf);
3670 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003672 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003673 if (newbuf == NULL)
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003674 {
3675 vim_free(buf);
3676 vim_free(p);
3677 return;
3678 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003679 buf = newbuf;
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003680 STRCAT(buf, p);
3681 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003683 else
3684 {
3685 if (cmdchar == '*')
3686 aux_ptr = (char_u *)(p_magic ? "/.*~[^$\\" : "/^$\\");
3687 else if (cmdchar == '#')
3688 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003689 else if (tag_cmd)
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003690 {
3691 if (curbuf->b_help)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003692 // ":help" handles unescaped argument
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003693 aux_ptr = (char_u *)"";
3694 else
3695 aux_ptr = (char_u *)"\\|\"\n[";
3696 }
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003697 else
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003698 aux_ptr = (char_u *)"\\|\"\n*?[";
3699
3700 p = buf + STRLEN(buf);
3701 while (n-- > 0)
3702 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003703 // put a backslash before \ and some others
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003704 if (vim_strchr(aux_ptr, *ptr) != NULL)
3705 *p++ = '\\';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003706 // When current byte is a part of multibyte character, copy all
3707 // bytes of that character.
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003708 if (has_mbyte)
3709 {
3710 int i;
3711 int len = (*mb_ptr2len)(ptr) - 1;
3712
3713 for (i = 0; i < len && n >= 1; ++i, --n)
3714 *p++ = *ptr++;
3715 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003716 *p++ = *ptr++;
3717 }
3718 *p = NUL;
3719 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720
3721 /*
3722 * Execute the command.
3723 */
3724 if (cmdchar == '*' || cmdchar == '#')
3725 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003726 if (!g_cmd && (has_mbyte
3727 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr))
3728 : vim_iswordc(ptr[-1])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 STRCAT(buf, "\\>");
Bram Moolenaard7663c22019-08-06 21:59:57 +02003730
3731 // put pattern in search history
Bram Moolenaarc7be3f32009-12-24 14:01:12 +00003732 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
Bram Moolenaard7663c22019-08-06 21:59:57 +02003734
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003735 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736 }
3737 else
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003738 {
3739 g_tag_at_cursor = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 do_cmdline_cmd(buf);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003741 g_tag_at_cursor = FALSE;
3742 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743
3744 vim_free(buf);
3745}
3746
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747/*
3748 * Get visually selected text, within one line only.
3749 * Returns FAIL if more than one line selected.
3750 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003751 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003752get_visual_text(
3753 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003754 char_u **pp, // return: start of selected text
3755 int *lenp) // return: length of selected text
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756{
3757 if (VIsual_mode != 'V')
3758 unadjust_for_sel();
3759 if (VIsual.lnum != curwin->w_cursor.lnum)
3760 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003761 if (cap != NULL)
3762 clearopbeep(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 return FAIL;
3764 }
3765 if (VIsual_mode == 'V')
3766 {
3767 *pp = ml_get_curline();
3768 *lenp = (int)STRLEN(*pp);
3769 }
3770 else
3771 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003772 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 {
3774 *pp = ml_get_pos(&curwin->w_cursor);
3775 *lenp = VIsual.col - curwin->w_cursor.col + 1;
3776 }
3777 else
3778 {
3779 *pp = ml_get_pos(&VIsual);
3780 *lenp = curwin->w_cursor.col - VIsual.col + 1;
3781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 if (has_mbyte)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003783 // Correct the length to include the whole last character.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003784 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 }
3786 reset_VIsual_and_resel();
3787 return OK;
3788}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789
3790/*
3791 * CTRL-T: backwards in tag stack
3792 */
3793 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003794nv_tagpop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795{
3796 if (!checkclearopq(cap->oap))
3797 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
3798}
3799
3800/*
3801 * Handle scrolling command 'H', 'L' and 'M'.
3802 */
3803 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003804nv_scroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805{
3806 int used = 0;
3807 long n;
3808#ifdef FEAT_FOLDING
3809 linenr_T lnum;
3810#endif
3811 int half;
3812
3813 cap->oap->motion_type = MLINE;
3814 setpcmark();
3815
3816 if (cap->cmdchar == 'L')
3817 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003818 validate_botline(); // make sure curwin->w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 curwin->w_cursor.lnum = curwin->w_botline - 1;
3820 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
3821 curwin->w_cursor.lnum = 1;
3822 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003823 {
3824#ifdef FEAT_FOLDING
3825 if (hasAnyFolding(curwin))
3826 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003827 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003828 for (n = cap->count1 - 1; n > 0
3829 && curwin->w_cursor.lnum > curwin->w_topline; --n)
3830 {
3831 (void)hasFolding(curwin->w_cursor.lnum,
3832 &curwin->w_cursor.lnum, NULL);
3833 --curwin->w_cursor.lnum;
3834 }
3835 }
3836 else
3837#endif
3838 curwin->w_cursor.lnum -= cap->count1 - 1;
3839 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 }
3841 else
3842 {
3843 if (cap->cmdchar == 'M')
3844 {
3845#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003846 // Don't count filler lines above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 used -= diff_check_fill(curwin, curwin->w_topline)
3848 - curwin->w_topfill;
3849#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003850 validate_botline(); // make sure w_empty_rows is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
3852 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
3853 {
3854#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003855 // Count half he number of filler lines to be "below this
3856 // line" and half to be "above the next line".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
3858 + n) / 2 >= half)
3859 {
3860 --n;
3861 break;
3862 }
3863#endif
3864 used += plines(curwin->w_topline + n);
3865 if (used >= half)
3866 break;
3867#ifdef FEAT_FOLDING
3868 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
3869 n = lnum - curwin->w_topline;
3870#endif
3871 }
3872 if (n > 0 && used > curwin->w_height)
3873 --n;
3874 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003875 else // (cap->cmdchar == 'H')
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003876 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003878#ifdef FEAT_FOLDING
3879 if (hasAnyFolding(curwin))
3880 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003881 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003882 lnum = curwin->w_topline;
3883 while (n-- > 0 && lnum < curwin->w_botline - 1)
3884 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02003885 (void)hasFolding(lnum, NULL, &lnum);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003886 ++lnum;
3887 }
3888 n = lnum - curwin->w_topline;
3889 }
3890#endif
3891 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 curwin->w_cursor.lnum = curwin->w_topline + n;
3893 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3894 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3895 }
3896
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003897 // Correct for 'so', except when an operator is pending.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02003898 if (cap->oap->op_type == OP_NOP)
3899 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 beginline(BL_SOL | BL_FIX);
3901}
3902
3903/*
3904 * Cursor right commands.
3905 */
3906 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003907nv_right(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908{
3909 long n;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003910 int past_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003912 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
3913 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003914 // <C-Right> and <S-Right> move a word or WORD right
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003915 if (mod_mask & MOD_MASK_CTRL)
3916 cap->arg = TRUE;
3917 nv_wordcmd(cap);
3918 return;
3919 }
3920
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 cap->oap->motion_type = MCHAR;
3922 cap->oap->inclusive = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003923 past_line = (VIsual_active && *p_sel != 'o');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 /*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003926 * In virtual edit mode, there's no such thing as "past_line", as lines
3927 * are (theoretically) infinitely long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 */
3929 if (virtual_active())
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003930 past_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931
3932 for (n = cap->count1; n > 0; --n)
3933 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003934 if ((!past_line && oneright() == FAIL)
3935 || (past_line && *ml_get_cursor() == NUL)
Bram Moolenaar78a15312009-05-15 19:33:18 +00003936 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 {
3938 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003939 * <Space> wraps to next line if 'whichwrap' has 's'.
3940 * 'l' wraps to next line if 'whichwrap' has 'l'.
3941 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 */
3943 if ( ((cap->cmdchar == ' '
3944 && vim_strchr(p_ww, 's') != NULL)
3945 || (cap->cmdchar == 'l'
3946 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00003947 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 && vim_strchr(p_ww, '>') != NULL))
3949 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3950 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003951 // When deleting we also count the NL as a character.
3952 // Set cap->oap->inclusive when last char in the line is
3953 // included, move to next line after that
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003954 if ( cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 && !cap->oap->inclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003956 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 cap->oap->inclusive = TRUE;
3958 else
3959 {
3960 ++curwin->w_cursor.lnum;
3961 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 curwin->w_set_curswant = TRUE;
3964 cap->oap->inclusive = FALSE;
3965 }
3966 continue;
3967 }
3968 if (cap->oap->op_type == OP_NOP)
3969 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003970 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 if (n == cap->count1)
3972 beep_flush();
3973 }
3974 else
3975 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003976 if (!LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 cap->oap->inclusive = TRUE;
3978 }
3979 break;
3980 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003981 else if (past_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 {
3983 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 if (virtual_active())
3985 oneright();
3986 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 if (has_mbyte)
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02003989 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 ++curwin->w_cursor.col;
3992 }
3993 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 }
3995#ifdef FEAT_FOLDING
3996 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
3997 && cap->oap->op_type == OP_NOP)
3998 foldOpenCursor();
3999#endif
4000}
4001
4002/*
4003 * Cursor left commands.
4004 *
4005 * Returns TRUE when operator end should not be adjusted.
4006 */
4007 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004008nv_left(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009{
4010 long n;
4011
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004012 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4013 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004014 // <C-Left> and <S-Left> move a word or WORD left
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004015 if (mod_mask & MOD_MASK_CTRL)
4016 cap->arg = 1;
4017 nv_bck_word(cap);
4018 return;
4019 }
4020
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 cap->oap->motion_type = MCHAR;
4022 cap->oap->inclusive = FALSE;
4023 for (n = cap->count1; n > 0; --n)
4024 {
4025 if (oneleft() == FAIL)
4026 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004027 // <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
4028 // 'h' wraps to previous line if 'whichwrap' has 'h'.
4029 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004043 // 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!
4046 // 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 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004064 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065 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 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004086 // <S-Up> is page up
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004087 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 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004109 // <S-Down> is page down
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004110 cap->arg = FORWARD;
4111 nv_page(cap);
4112 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02004113#if defined(FEAT_QUICKFIX)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004114 // Quickfix window only: view the result under the cursor.
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004115 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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004121 // 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
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004127 // In a prompt buffer a <CR> in the last line invokes the callback.
Bram Moolenaarf2732452018-06-03 14:47:35 +02004128 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 Moolenaar5aed0cc2020-05-12 22:02:21 +02004168#ifdef FEAT_PROP_POPUP
4169 if (ERROR_IF_TERM_POPUP_WINDOW)
4170 return;
4171#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004173 ptr = grab_file_name(cap->count1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174
4175 if (ptr != NULL)
4176 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004177 // do autowrite if necessary
Bram Moolenaareb44a682017-08-03 22:44:55 +02004178 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf))
Bram Moolenaarcde88542015-08-11 19:14:00 +02004179 (void)autowrite(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180 setpcmark();
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004181 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
Bram Moolenaareb44a682017-08-03 22:44:55 +02004182 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004183 && cap->nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004184 {
4185 curwin->w_cursor.lnum = lnum;
4186 check_cursor_lnum();
4187 beginline(BL_SOL | BL_FIX);
4188 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 vim_free(ptr);
4190 }
4191 else
4192 clearop(cap->oap);
4193}
4194#endif
4195
4196/*
4197 * <End> command: to end of current line or last line.
4198 */
4199 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004200nv_end(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004202 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004204 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 nv_goto(cap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004206 cap->count1 = 1; // to end of current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 }
4208 nv_dollar(cap);
4209}
4210
4211/*
4212 * Handle the "$" command.
4213 */
4214 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004215nv_dollar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216{
4217 cap->oap->motion_type = MCHAR;
4218 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004219 // In virtual mode when off the edge of a line and an operator
4220 // is pending (whew!) keep the cursor where it is.
4221 // Otherwise, send it to the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 if (!virtual_active() || gchar_cursor() != NUL
4223 || cap->oap->op_type == OP_NOP)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004224 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225 if (cursor_down((long)(cap->count1 - 1),
4226 cap->oap->op_type == OP_NOP) == FAIL)
4227 clearopbeep(cap->oap);
4228#ifdef FEAT_FOLDING
4229 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4230 foldOpenCursor();
4231#endif
4232}
4233
4234/*
4235 * Implementation of '?' and '/' commands.
4236 * If cap->arg is TRUE don't set PC mark.
4237 */
4238 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004239nv_search(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240{
4241 oparg_T *oap = cap->oap;
Bram Moolenaardda933d2016-09-03 21:04:58 +02004242 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243
4244 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
4245 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004246 // Translate "g??" to "g?g?"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 cap->cmdchar = 'g';
4248 cap->nchar = '?';
4249 nv_operator(cap);
4250 return;
4251 }
4252
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004253 // When using 'incsearch' the cursor may be moved to set a different search
4254 // start position.
Bram Moolenaare96a2492019-06-25 04:12:16 +02004255 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256
4257 if (cap->searchbuf == NULL)
4258 {
4259 clearop(oap);
4260 return;
4261 }
4262
Bram Moolenaar46539112015-02-17 15:43:57 +01004263 (void)normal_search(cap, cap->cmdchar, cap->searchbuf,
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004264 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor))
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004265 ? 0 : SEARCH_MARK, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266}
4267
4268/*
4269 * Handle "N" and "n" commands.
4270 * cap->arg is SEARCH_REV for "N", 0 for "n".
4271 */
4272 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004273nv_next(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274{
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004275 pos_T old = curwin->w_cursor;
4276 int wrapped = FALSE;
4277 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, &wrapped);
Bram Moolenaar46539112015-02-17 15:43:57 +01004278
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004279 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor))
Bram Moolenaar46539112015-02-17 15:43:57 +01004280 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004281 // Avoid getting stuck on the current cursor position, which can
4282 // happen when an offset is given and the cursor is on the last char
4283 // in the buffer: Repeat with count + 1.
Bram Moolenaar46539112015-02-17 15:43:57 +01004284 cap->count1 += 1;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004285 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL);
Bram Moolenaar46539112015-02-17 15:43:57 +01004286 cap->count1 -= 1;
4287 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288}
4289
4290/*
4291 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
4292 * Uses only cap->count1 and cap->oap from "cap".
Bram Moolenaar46539112015-02-17 15:43:57 +01004293 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 */
Bram Moolenaar46539112015-02-17 15:43:57 +01004295 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004296normal_search(
4297 cmdarg_T *cap,
4298 int dir,
4299 char_u *pat,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004300 int opt, // extra flags for do_search()
4301 int *wrapped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302{
4303 int i;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004304 searchit_arg_T sia;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305
4306 cap->oap->motion_type = MCHAR;
4307 cap->oap->inclusive = FALSE;
4308 cap->oap->use_reg_one = TRUE;
4309 curwin->w_set_curswant = TRUE;
4310
Bram Moolenaara80faa82020-04-12 19:37:17 +02004311 CLEAR_FIELD(sia);
Bram Moolenaarc036e872020-02-21 21:30:52 +01004312 i = do_search(cap->oap, dir, dir, pat, cap->count1,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004313 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, &sia);
4314 if (wrapped != NULL)
4315 *wrapped = sia.sa_wrapped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 if (i == 0)
4317 clearop(cap->oap);
4318 else
4319 {
4320 if (i == 2)
4321 cap->oap->motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323#ifdef FEAT_FOLDING
4324 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4325 foldOpenCursor();
4326#endif
4327 }
4328
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004329 // "/$" will put the cursor after the end of the line, may need to
4330 // correct that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 check_cursor();
Bram Moolenaar46539112015-02-17 15:43:57 +01004332 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333}
4334
4335/*
4336 * Character search commands.
4337 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
4338 * ',' and FALSE for ';'.
4339 * cap->nchar is NUL for ',' and ';' (repeat the search)
4340 */
4341 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004342nv_csearch(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343{
4344 int t_cmd;
4345
4346 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
4347 t_cmd = TRUE;
4348 else
4349 t_cmd = FALSE;
4350
4351 cap->oap->motion_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
4353 clearopbeep(cap->oap);
4354 else
4355 {
4356 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004357 // Include a Tab for "tx" and for "dfx".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
4359 && (t_cmd || cap->oap->op_type != OP_NOP))
4360 {
4361 colnr_T scol, ecol;
4362
4363 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4364 curwin->w_cursor.coladd = ecol - scol;
4365 }
4366 else
4367 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369#ifdef FEAT_FOLDING
4370 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4371 foldOpenCursor();
4372#endif
4373 }
4374}
4375
4376/*
4377 * "[" and "]" commands.
4378 * cap->arg is BACKWARD for "[" and FORWARD for "]".
4379 */
4380 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004381nv_brackets(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382{
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004383 pos_T new_pos = {0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 pos_T prev_pos;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004385 pos_T *pos = NULL; // init for GCC
4386 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 int flag;
4388 long n;
4389 int findc;
4390 int c;
4391
4392 cap->oap->motion_type = MCHAR;
4393 cap->oap->inclusive = FALSE;
4394 old_pos = curwin->w_cursor;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004395 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396
4397#ifdef FEAT_SEARCHPATH
4398 /*
4399 * "[f" or "]f" : Edit file under the cursor (same as "gf")
4400 */
4401 if (cap->nchar == 'f')
4402 nv_gotofile(cap);
4403 else
4404#endif
4405
4406#ifdef FEAT_FIND_ID
4407 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00004408 * Find the occurrence(s) of the identifier or define under cursor
4409 * in current and included files or jump to the first occurrence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 *
4411 * search list jump
4412 * fwd bwd fwd bwd fwd bwd
4413 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
4414 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
4415 */
4416 if (vim_strchr((char_u *)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004417# ifdef EBCDIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 "iI\005dD\067",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004419# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 "iI\011dD\004",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004421# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 cap->nchar) != NULL)
4423 {
4424 char_u *ptr;
4425 int len;
4426
4427 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
4428 clearop(cap->oap);
4429 else
4430 {
4431 find_pattern_in_path(ptr, 0, len, TRUE,
4432 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
4433 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
4434 cap->count1,
4435 isupper(cap->nchar) ? ACTION_SHOW_ALL :
4436 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
4437 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
4438 (linenr_T)MAXLNUM);
4439 curwin->w_set_curswant = TRUE;
4440 }
4441 }
4442 else
4443#endif
4444
4445 /*
4446 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
4447 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
4448 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
4449 * "[m" or "]m" search for prev/next start of (Java) method.
4450 * "[M" or "]M" search for prev/next end of (Java) method.
4451 */
4452 if ( (cap->cmdchar == '['
4453 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
4454 || (cap->cmdchar == ']'
4455 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
4456 {
4457 if (cap->nchar == '*')
4458 cap->nchar = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 prev_pos.lnum = 0;
4460 if (cap->nchar == 'm' || cap->nchar == 'M')
4461 {
4462 if (cap->cmdchar == '[')
4463 findc = '{';
4464 else
4465 findc = '}';
4466 n = 9999;
4467 }
4468 else
4469 {
4470 findc = cap->nchar;
4471 n = cap->count1;
4472 }
4473 for ( ; n > 0; --n)
4474 {
4475 if ((pos = findmatchlimit(cap->oap, findc,
4476 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
4477 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004478 if (new_pos.lnum == 0) // nothing found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 {
4480 if (cap->nchar != 'm' && cap->nchar != 'M')
4481 clearopbeep(cap->oap);
4482 }
4483 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004484 pos = &new_pos; // use last one found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 break;
4486 }
4487 prev_pos = new_pos;
4488 curwin->w_cursor = *pos;
4489 new_pos = *pos;
4490 }
4491 curwin->w_cursor = old_pos;
4492
4493 /*
4494 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
4495 * brought us to the match for "[m" and "]M" when inside a method.
4496 * Try finding the '{' or '}' we want to be at.
4497 * Also repeat for the given count.
4498 */
4499 if (cap->nchar == 'm' || cap->nchar == 'M')
4500 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004501 // norm is TRUE for "]M" and "[m"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 int norm = ((findc == '{') == (cap->nchar == 'm'));
4503
4504 n = cap->count1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004505 // found a match: we were inside a method
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 if (prev_pos.lnum != 0)
4507 {
4508 pos = &prev_pos;
4509 curwin->w_cursor = prev_pos;
4510 if (norm)
4511 --n;
4512 }
4513 else
4514 pos = NULL;
4515 while (n > 0)
4516 {
4517 for (;;)
4518 {
4519 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
4520 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004521 // if not found anything, that's an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 if (pos == NULL)
4523 clearopbeep(cap->oap);
4524 n = 0;
4525 break;
4526 }
4527 c = gchar_cursor();
4528 if (c == '{' || c == '}')
4529 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004530 // Must have found end/start of class: use it.
4531 // Or found the place to be at.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 if ((c == findc && norm) || (n == 1 && !norm))
4533 {
4534 new_pos = curwin->w_cursor;
4535 pos = &new_pos;
4536 n = 0;
4537 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004538 // if no match found at all, we started outside of the
4539 // class and we're inside now. Just go on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 else if (new_pos.lnum == 0)
4541 {
4542 new_pos = curwin->w_cursor;
4543 pos = &new_pos;
4544 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004545 // found start/end of other method: go to match
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 else if ((pos = findmatchlimit(cap->oap, findc,
4547 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
4548 0)) == NULL)
4549 n = 0;
4550 else
4551 curwin->w_cursor = *pos;
4552 break;
4553 }
4554 }
4555 --n;
4556 }
4557 curwin->w_cursor = old_pos;
4558 if (pos == NULL && new_pos.lnum != 0)
4559 clearopbeep(cap->oap);
4560 }
4561 if (pos != NULL)
4562 {
4563 setpcmark();
4564 curwin->w_cursor = *pos;
4565 curwin->w_set_curswant = TRUE;
4566#ifdef FEAT_FOLDING
4567 if ((fdo_flags & FDO_BLOCK) && KeyTyped
4568 && cap->oap->op_type == OP_NOP)
4569 foldOpenCursor();
4570#endif
4571 }
4572 }
4573
4574 /*
4575 * "[[", "[]", "]]" and "][": move to start or end of function
4576 */
4577 else if (cap->nchar == '[' || cap->nchar == ']')
4578 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004579 if (cap->nchar == cap->cmdchar) // "]]" or "[["
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 flag = '{';
4581 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004582 flag = '}'; // "][" or "[]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583
4584 curwin->w_set_curswant = TRUE;
4585 /*
4586 * Imitate strange Vi behaviour: When using "]]" with an operator
4587 * we also stop at '}'.
4588 */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004589 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 (cap->oap->op_type != OP_NOP
4591 && cap->arg == FORWARD && flag == '{')))
4592 clearopbeep(cap->oap);
4593 else
4594 {
4595 if (cap->oap->op_type == OP_NOP)
4596 beginline(BL_WHITE | BL_FIX);
4597#ifdef FEAT_FOLDING
4598 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4599 foldOpenCursor();
4600#endif
4601 }
4602 }
4603
4604 /*
4605 * "[p", "[P", "]P" and "]p": put with indent adjustment
4606 */
4607 else if (cap->nchar == 'p' || cap->nchar == 'P')
4608 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02004609 nv_put_opt(cap, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610 }
4611
4612 /*
4613 * "['", "[`", "]'" and "]`": jump to next mark
4614 */
4615 else if (cap->nchar == '\'' || cap->nchar == '`')
4616 {
4617 pos = &curwin->w_cursor;
4618 for (n = cap->count1; n > 0; --n)
4619 {
4620 prev_pos = *pos;
4621 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
4622 cap->nchar == '\'');
4623 if (pos == NULL)
4624 break;
4625 }
4626 if (pos == NULL)
4627 pos = &prev_pos;
4628 nv_cursormark(cap, cap->nchar == '\'', pos);
4629 }
4630
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 /*
4632 * [ or ] followed by a middle mouse click: put selected text with
4633 * indent adjustment. Any other button just does as usual.
4634 */
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02004635 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 {
4637 (void)do_mouse(cap->oap, cap->nchar,
4638 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
4639 cap->count1, PUT_FIXINDENT);
4640 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641
4642#ifdef FEAT_FOLDING
4643 /*
4644 * "[z" and "]z": move to start or end of open fold.
4645 */
4646 else if (cap->nchar == 'z')
4647 {
4648 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4649 cap->count1) == FAIL)
4650 clearopbeep(cap->oap);
4651 }
4652#endif
4653
4654#ifdef FEAT_DIFF
4655 /*
4656 * "[c" and "]c": move to next or previous diff-change.
4657 */
4658 else if (cap->nchar == 'c')
4659 {
4660 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
4661 cap->count1) == FAIL)
4662 clearopbeep(cap->oap);
4663 }
4664#endif
4665
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00004666#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004667 /*
4668 * "[s", "[S", "]s" and "]S": move to next spell error.
4669 */
4670 else if (cap->nchar == 's' || cap->nchar == 'S')
4671 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004672 setpcmark();
4673 for (n = 0; n < cap->count1; ++n)
Bram Moolenaar95529562005-08-25 21:21:38 +00004674 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4675 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004676 {
4677 clearopbeep(cap->oap);
4678 break;
4679 }
Bram Moolenaarb73fa622017-12-21 20:27:47 +01004680 else
4681 curwin->w_set_curswant = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004682# ifdef FEAT_FOLDING
4683 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4684 foldOpenCursor();
4685# endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004686 }
4687#endif
4688
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004689 // Not a valid cap->nchar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 else
4691 clearopbeep(cap->oap);
4692}
4693
4694/*
4695 * Handle Normal mode "%" command.
4696 */
4697 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004698nv_percent(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699{
4700 pos_T *pos;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02004701#if defined(FEAT_FOLDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 linenr_T lnum = curwin->w_cursor.lnum;
4703#endif
4704
4705 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004706 if (cap->count0) // {cnt}% : goto {cnt} percentage in file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 {
4708 if (cap->count0 > 100)
4709 clearopbeep(cap->oap);
4710 else
4711 {
4712 cap->oap->motion_type = MLINE;
4713 setpcmark();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004714 // Round up, so CTRL-G will give same value. Watch out for a
4715 // large line count, the line number must not go negative!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 if (curbuf->b_ml.ml_line_count > 1000000)
4717 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
4718 / 100L * cap->count0;
4719 else
4720 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
4721 cap->count0 + 99L) / 100L;
4722 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4723 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4724 beginline(BL_SOL | BL_FIX);
4725 }
4726 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004727 else // "%" : go to matching paren
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 {
4729 cap->oap->motion_type = MCHAR;
4730 cap->oap->use_reg_one = TRUE;
4731 if ((pos = findmatch(cap->oap, NUL)) == NULL)
4732 clearopbeep(cap->oap);
4733 else
4734 {
4735 setpcmark();
4736 curwin->w_cursor = *pos;
4737 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 }
4741 }
4742#ifdef FEAT_FOLDING
4743 if (cap->oap->op_type == OP_NOP
4744 && lnum != curwin->w_cursor.lnum
4745 && (fdo_flags & FDO_PERCENT)
4746 && KeyTyped)
4747 foldOpenCursor();
4748#endif
4749}
4750
4751/*
4752 * Handle "(" and ")" commands.
4753 * cap->arg is BACKWARD for "(" and FORWARD for ")".
4754 */
4755 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004756nv_brace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757{
4758 cap->oap->motion_type = MCHAR;
4759 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004760 // The motion used to be inclusive for "(", but that is not what Vi does.
Bram Moolenaarebefac62005-12-28 22:39:57 +00004761 cap->oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 curwin->w_set_curswant = TRUE;
4763
4764 if (findsent(cap->arg, cap->count1) == FAIL)
4765 clearopbeep(cap->oap);
4766 else
4767 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004768 // Don't leave the cursor on the NUL past end of line.
Bram Moolenaar1f14d572008-01-12 16:12:10 +00004769 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771#ifdef FEAT_FOLDING
4772 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4773 foldOpenCursor();
4774#endif
4775 }
4776}
4777
4778/*
4779 * "m" command: Mark a position.
4780 */
4781 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004782nv_mark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783{
4784 if (!checkclearop(cap->oap))
4785 {
4786 if (setmark(cap->nchar) == FAIL)
4787 clearopbeep(cap->oap);
4788 }
4789}
4790
4791/*
4792 * "{" and "}" commands.
4793 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
4794 */
4795 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004796nv_findpar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797{
4798 cap->oap->motion_type = MCHAR;
4799 cap->oap->inclusive = FALSE;
4800 cap->oap->use_reg_one = TRUE;
4801 curwin->w_set_curswant = TRUE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004802 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 clearopbeep(cap->oap);
4804 else
4805 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807#ifdef FEAT_FOLDING
4808 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4809 foldOpenCursor();
4810#endif
4811 }
4812}
4813
4814/*
4815 * "u" command: Undo or make lower case.
4816 */
4817 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004818nv_undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004820 if (cap->oap->op_type == OP_LOWER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004822 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 cap->cmdchar = 'g';
4824 cap->nchar = 'u';
4825 nv_operator(cap);
4826 }
4827 else
4828 nv_kundo(cap);
4829}
4830
4831/*
4832 * <Undo> command.
4833 */
4834 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004835nv_kundo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836{
4837 if (!checkclearopq(cap->oap))
4838 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02004839#ifdef FEAT_JOB_CHANNEL
4840 if (bt_prompt(curbuf))
4841 {
4842 clearopbeep(cap->oap);
4843 return;
4844 }
4845#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 u_undo((int)cap->count1);
4847 curwin->w_set_curswant = TRUE;
4848 }
4849}
4850
4851/*
4852 * Handle the "r" command.
4853 */
4854 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004855nv_replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856{
4857 char_u *ptr;
4858 int had_ctrl_v;
4859 long n;
4860
4861 if (checkclearop(cap->oap))
4862 return;
Bram Moolenaarf2732452018-06-03 14:47:35 +02004863#ifdef FEAT_JOB_CHANNEL
4864 if (bt_prompt(curbuf) && !prompt_curpos_editable())
4865 {
4866 clearopbeep(cap->oap);
4867 return;
4868 }
4869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004871 // get another character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 if (cap->nchar == Ctrl_V)
4873 {
4874 had_ctrl_v = Ctrl_V;
4875 cap->nchar = get_literal();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004876 // Don't redo a multibyte character with CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 if (cap->nchar > DEL)
4878 had_ctrl_v = NUL;
4879 }
4880 else
4881 had_ctrl_v = NUL;
4882
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004883 // Abort if the character is a special key.
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00004884 if (IS_SPECIAL(cap->nchar))
4885 {
4886 clearopbeep(cap->oap);
4887 return;
4888 }
4889
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004890 // Visual mode "r"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 if (VIsual_active)
4892 {
Bram Moolenaar57fb0da2009-02-04 10:46:25 +00004893 if (got_int)
4894 reset_VIsual();
Bram Moolenaard9820532013-11-04 01:41:17 +01004895 if (had_ctrl_v)
4896 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004897 // Use a special (negative) number to make a difference between a
4898 // literal CR or NL and a line break.
Bram Moolenaarf12519d2018-02-06 22:52:49 +01004899 if (cap->nchar == CAR)
4900 cap->nchar = REPLACE_CR_NCHAR;
4901 else if (cap->nchar == NL)
4902 cap->nchar = REPLACE_NL_NCHAR;
Bram Moolenaard9820532013-11-04 01:41:17 +01004903 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 nv_operator(cap);
4905 return;
4906 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004908 // Break tabs, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 if (virtual_active())
4910 {
4911 if (u_save_cursor() == FAIL)
4912 return;
4913 if (gchar_cursor() == NUL)
4914 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004915 // Add extra space and put the cursor on the first one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 coladvance_force((colnr_T)(getviscol() + cap->count1));
4917 curwin->w_cursor.col -= cap->count1;
4918 }
4919 else if (gchar_cursor() == TAB)
4920 coladvance_force(getviscol());
4921 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004923 // Abort if not enough characters to replace.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 ptr = ml_get_cursor();
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00004925 if (STRLEN(ptr) < (unsigned)cap->count1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004926 || (has_mbyte && mb_charlen(ptr) < cap->count1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 {
4928 clearopbeep(cap->oap);
4929 return;
4930 }
4931
4932 /*
4933 * Replacing with a TAB is done by edit() when it is complicated because
4934 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
4935 * Other characters are done below to avoid problems with things like
4936 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
4937 */
4938 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
4939 {
4940 stuffnumReadbuff(cap->count1);
4941 stuffcharReadbuff('R');
4942 stuffcharReadbuff('\t');
4943 stuffcharReadbuff(ESC);
4944 return;
4945 }
4946
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004947 // save line for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 if (u_save_cursor() == FAIL)
4949 return;
4950
4951 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
4952 {
4953 /*
4954 * Replace character(s) by a single newline.
4955 * Strange vi behaviour: Only one newline is inserted.
4956 * Delete the characters here.
4957 * Insert the newline with an insert command, takes care of
4958 * autoindent. The insert command depends on being on the last
4959 * character of a line or not.
4960 */
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004961 (void)del_chars(cap->count1, FALSE); // delete the characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 stuffcharReadbuff('\r');
4963 stuffcharReadbuff(ESC);
4964
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004965 // Give 'r' to edit(), to get the redo command right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 invoke_edit(cap, TRUE, 'r', FALSE);
4967 }
4968 else
4969 {
4970 prep_redo(cap->oap->regname, cap->count1,
4971 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
4972
4973 curbuf->b_op_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 if (has_mbyte)
4975 {
4976 int old_State = State;
4977
4978 if (cap->ncharC1 != 0)
4979 AppendCharToRedobuff(cap->ncharC1);
4980 if (cap->ncharC2 != 0)
4981 AppendCharToRedobuff(cap->ncharC2);
4982
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004983 // This is slow, but it handles replacing a single-byte with a
4984 // multi-byte and the other way around. Also handles adding
4985 // composing characters for utf-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 for (n = cap->count1; n > 0; --n)
4987 {
4988 State = REPLACE;
Bram Moolenaar8320da42012-04-30 18:18:47 +02004989 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
4990 {
4991 int c = ins_copychar(curwin->w_cursor.lnum
4992 + (cap->nchar == Ctrl_Y ? -1 : 1));
4993 if (c != NUL)
4994 ins_char(c);
4995 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004996 // will be decremented further down
Bram Moolenaar8320da42012-04-30 18:18:47 +02004997 ++curwin->w_cursor.col;
4998 }
4999 else
5000 ins_char(cap->nchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 State = old_State;
5002 if (cap->ncharC1 != 0)
5003 ins_char(cap->ncharC1);
5004 if (cap->ncharC2 != 0)
5005 ins_char(cap->ncharC2);
5006 }
5007 }
5008 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 {
5010 /*
5011 * Replace the characters within one line.
5012 */
5013 for (n = cap->count1; n > 0; --n)
5014 {
5015 /*
5016 * Get ptr again, because u_save and/or showmatch() will have
5017 * released the line. At the same time we let know that the
5018 * line will be changed.
5019 */
5020 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005021 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5022 {
5023 int c = ins_copychar(curwin->w_cursor.lnum
5024 + (cap->nchar == Ctrl_Y ? -1 : 1));
5025 if (c != NUL)
5026 ptr[curwin->w_cursor.col] = c;
5027 }
5028 else
5029 ptr[curwin->w_cursor.col] = cap->nchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 if (p_sm && msg_silent == 0)
5031 showmatch(cap->nchar);
5032 ++curwin->w_cursor.col;
5033 }
5034#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005035 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005037 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038
Bram Moolenaar009b2592004-10-24 19:18:58 +00005039 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005040 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005042 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 }
5044#endif
5045
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005046 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 changed_bytes(curwin->w_cursor.lnum,
5048 (colnr_T)(curwin->w_cursor.col - cap->count1));
5049 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005050 --curwin->w_cursor.col; // cursor on the last replaced char
5051 // if the character on the left of the current cursor is a multi-byte
5052 // character, move two characters left
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 if (has_mbyte)
5054 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 curbuf->b_op_end = curwin->w_cursor;
5056 curwin->w_set_curswant = TRUE;
5057 set_last_insert(cap->nchar);
5058 }
5059}
5060
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061/*
5062 * 'o': Exchange start and end of Visual area.
5063 * 'O': same, but in block mode exchange left and right corners.
5064 */
5065 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005066v_swap_corners(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067{
5068 pos_T old_cursor;
5069 colnr_T left, right;
5070
5071 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
5072 {
5073 old_cursor = curwin->w_cursor;
5074 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
5075 curwin->w_cursor.lnum = VIsual.lnum;
5076 coladvance(left);
5077 VIsual = curwin->w_cursor;
5078
5079 curwin->w_cursor.lnum = old_cursor.lnum;
5080 curwin->w_curswant = right;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005081 // 'selection "exclusive" and cursor at right-bottom corner: move it
5082 // right one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
5084 ++curwin->w_curswant;
5085 coladvance(curwin->w_curswant);
5086 if (curwin->w_cursor.col == old_cursor.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 && (!virtual_active()
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005088 || curwin->w_cursor.coladd == old_cursor.coladd))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 {
5090 curwin->w_cursor.lnum = VIsual.lnum;
5091 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
5092 ++right;
5093 coladvance(right);
5094 VIsual = curwin->w_cursor;
5095
5096 curwin->w_cursor.lnum = old_cursor.lnum;
5097 coladvance(left);
5098 curwin->w_curswant = left;
5099 }
5100 }
5101 else
5102 {
5103 old_cursor = curwin->w_cursor;
5104 curwin->w_cursor = VIsual;
5105 VIsual = old_cursor;
5106 curwin->w_set_curswant = TRUE;
5107 }
5108}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109
5110/*
5111 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
5112 */
5113 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005114nv_Replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005116 if (VIsual_active) // "R" is replace lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 {
5118 cap->cmdchar = 'c';
5119 cap->nchar = NUL;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005120 VIsual_mode_orig = VIsual_mode; // remember original area for gv
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 VIsual_mode = 'V';
5122 nv_operator(cap);
5123 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005124 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 {
5126 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005127 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 else
5129 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 if (virtual_active())
5131 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
5133 }
5134 }
5135}
5136
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137/*
5138 * "gr".
5139 */
5140 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005141nv_vreplace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 if (VIsual_active)
5144 {
5145 cap->cmdchar = 'r';
5146 cap->nchar = cap->extra_char;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005147 nv_replace(cap); // Do same as "r" in Visual mode for now
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005149 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 {
5151 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005152 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 else
5154 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005155 if (cap->extra_char == Ctrl_V) // get another character
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 cap->extra_char = get_literal();
5157 stuffcharReadbuff(cap->extra_char);
5158 stuffcharReadbuff(ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 if (virtual_active())
5160 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 invoke_edit(cap, TRUE, 'v', FALSE);
5162 }
5163 }
5164}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165
5166/*
5167 * Swap case for "~" command, when it does not work like an operator.
5168 */
5169 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005170n_swapchar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171{
5172 long n;
5173 pos_T startpos;
5174 int did_change = 0;
5175#ifdef FEAT_NETBEANS_INTG
5176 pos_T pos;
5177 char_u *ptr;
5178 int count;
5179#endif
5180
5181 if (checkclearopq(cap->oap))
5182 return;
5183
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005184 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 {
5186 clearopbeep(cap->oap);
5187 return;
5188 }
5189
5190 prep_redo_cmd(cap);
5191
5192 if (u_save_cursor() == FAIL)
5193 return;
5194
5195 startpos = curwin->w_cursor;
5196#ifdef FEAT_NETBEANS_INTG
5197 pos = startpos;
5198#endif
5199 for (n = cap->count1; n > 0; --n)
5200 {
5201 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
5202 inc_cursor();
5203 if (gchar_cursor() == NUL)
5204 {
5205 if (vim_strchr(p_ww, '~') != NULL
5206 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5207 {
5208#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005209 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 {
5211 if (did_change)
5212 {
5213 ptr = ml_get(pos.lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005214 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005215 netbeans_removed(curbuf, pos.lnum, pos.col,
5216 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005218 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005219 }
5220 pos.col = 0;
5221 pos.lnum++;
5222 }
5223#endif
5224 ++curwin->w_cursor.lnum;
5225 curwin->w_cursor.col = 0;
5226 if (n > 1)
5227 {
5228 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
5229 break;
5230 u_clearline();
5231 }
5232 }
5233 else
5234 break;
5235 }
5236 }
5237#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005238 if (did_change && netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 {
5240 ptr = ml_get(pos.lnum);
5241 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005242 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
5243 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 }
5245#endif
5246
5247
5248 check_cursor();
5249 curwin->w_set_curswant = TRUE;
5250 if (did_change)
5251 {
5252 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
5253 0L);
5254 curbuf->b_op_start = startpos;
5255 curbuf->b_op_end = curwin->w_cursor;
5256 if (curbuf->b_op_end.col > 0)
5257 --curbuf->b_op_end.col;
5258 }
5259}
5260
5261/*
5262 * Move cursor to mark.
5263 */
5264 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005265nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266{
5267 if (check_mark(pos) == FAIL)
5268 clearop(cap->oap);
5269 else
5270 {
5271 if (cap->cmdchar == '\''
5272 || cap->cmdchar == '`'
5273 || cap->cmdchar == '['
5274 || cap->cmdchar == ']')
5275 setpcmark();
5276 curwin->w_cursor = *pos;
5277 if (flag)
5278 beginline(BL_WHITE | BL_FIX);
5279 else
5280 check_cursor();
5281 }
5282 cap->oap->motion_type = flag ? MLINE : MCHAR;
5283 if (cap->cmdchar == '`')
5284 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005285 cap->oap->inclusive = FALSE; // ignored if not MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 curwin->w_set_curswant = TRUE;
5287}
5288
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289/*
5290 * Handle commands that are operators in Visual mode.
5291 */
5292 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005293v_visop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294{
5295 static char_u trans[] = "YyDdCcxdXdAAIIrr";
5296
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005297 // Uppercase means linewise, except in block mode, then "D" deletes till
5298 // the end of the line, and "C" replaces till EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 if (isupper(cap->cmdchar))
5300 {
5301 if (VIsual_mode != Ctrl_V)
Bram Moolenaara390bb62013-03-13 19:02:41 +01005302 {
5303 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005305 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
5307 curwin->w_curswant = MAXCOL;
5308 }
5309 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
5310 nv_operator(cap);
5311}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312
5313/*
5314 * "s" and "S" commands.
5315 */
5316 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005317nv_subst(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318{
Bram Moolenaard96ff162018-02-18 22:13:29 +01005319#ifdef FEAT_TERMINAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005320 // When showing output of term_dumpdiff() swap the top and botom.
Bram Moolenaard96ff162018-02-18 22:13:29 +01005321 if (term_swap_diff() == OK)
5322 return;
5323#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005324#ifdef FEAT_JOB_CHANNEL
5325 if (bt_prompt(curbuf) && !prompt_curpos_editable())
5326 {
5327 clearopbeep(cap->oap);
5328 return;
5329 }
5330#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005331 if (VIsual_active) // "vs" and "vS" are the same as "vc"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332 {
5333 if (cap->cmdchar == 'S')
Bram Moolenaara390bb62013-03-13 19:02:41 +01005334 {
5335 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 cap->cmdchar = 'c';
5339 nv_operator(cap);
5340 }
5341 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 nv_optrans(cap);
5343}
5344
5345/*
5346 * Abbreviated commands.
5347 */
5348 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005349nv_abbrev(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350{
5351 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005352 cap->cmdchar = 'x'; // DEL key behaves like 'x'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005354 // in Visual mode these commands are operators
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 if (VIsual_active)
5356 v_visop(cap);
5357 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 nv_optrans(cap);
5359}
5360
5361/*
5362 * Translate a command into another command.
5363 */
5364 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005365nv_optrans(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366{
5367 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
5368 (char_u *)"d$", (char_u *)"c$",
5369 (char_u *)"cl", (char_u *)"cc",
5370 (char_u *)"yy", (char_u *)":s\r"};
5371 static char_u *str = (char_u *)"xXDCsSY&";
5372
5373 if (!checkclearopq(cap->oap))
5374 {
Bram Moolenaar7a9bd7c2019-09-17 22:42:55 +02005375 // In Vi "2D" doesn't delete the next line. Can't translate it
5376 // either, because "2." should also not use the count.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005377 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
5378 {
5379 cap->oap->start = curwin->w_cursor;
5380 cap->oap->op_type = OP_DELETE;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00005381#ifdef FEAT_EVAL
5382 set_op_var(OP_DELETE);
5383#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005384 cap->count1 = 1;
5385 nv_dollar(cap);
5386 finish_op = TRUE;
5387 ResetRedobuff();
5388 AppendCharToRedobuff('D');
5389 }
5390 else
5391 {
5392 if (cap->count0)
5393 stuffnumReadbuff(cap->count0);
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02005394 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005395 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 }
5397 cap->opcount = 0;
5398}
5399
5400/*
5401 * "'" and "`" commands. Also for "g'" and "g`".
5402 * cap->arg is TRUE for "'" and "g'".
5403 */
5404 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005405nv_gomark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406{
5407 pos_T *pos;
5408 int c;
5409#ifdef FEAT_FOLDING
Bram Moolenaar8754deb2013-01-17 13:24:08 +01005410 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005411 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412#endif
5413
5414 if (cap->cmdchar == 'g')
5415 c = cap->extra_char;
5416 else
5417 c = cap->nchar;
5418 pos = getmark(c, (cap->oap->op_type == OP_NOP));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005419 if (pos == (pos_T *)-1) // jumped to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 {
5421 if (cap->arg)
5422 {
5423 check_cursor_lnum();
5424 beginline(BL_WHITE | BL_FIX);
5425 }
5426 else
5427 check_cursor();
5428 }
5429 else
5430 nv_cursormark(cap, cap->arg, pos);
5431
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005432 // May need to clear the coladd that a mark includes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 if (!virtual_active())
5434 curwin->w_cursor.coladd = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02005435 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436#ifdef FEAT_FOLDING
5437 if (cap->oap->op_type == OP_NOP
Bram Moolenaar15364d72013-01-24 21:00:20 +01005438 && pos != NULL
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005439 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 && (fdo_flags & FDO_MARK)
5441 && old_KeyTyped)
5442 foldOpenCursor();
5443#endif
5444}
5445
5446/*
Bram Moolenaar62a23252020-08-09 14:04:42 +02005447 * Handle CTRL-O, CTRL-I, "g;", "g," and "CTRL-Tab" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 */
5449 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005450nv_pcmark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451{
5452#ifdef FEAT_JUMPLIST
5453 pos_T *pos;
5454# ifdef FEAT_FOLDING
5455 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005456 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457# endif
5458
5459 if (!checkclearopq(cap->oap))
5460 {
Bram Moolenaar62a23252020-08-09 14:04:42 +02005461 if (cap->cmdchar == TAB && mod_mask == MOD_MASK_CTRL)
5462 {
5463 if (goto_tabpage_lastused() == FAIL)
5464 clearopbeep(cap->oap);
5465 return;
5466 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 if (cap->cmdchar == 'g')
5468 pos = movechangelist((int)cap->count1);
5469 else
5470 pos = movemark((int)cap->count1);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005471 if (pos == (pos_T *)-1) // jump to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472 {
5473 curwin->w_set_curswant = TRUE;
5474 check_cursor();
5475 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005476 else if (pos != NULL) // can jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 nv_cursormark(cap, FALSE, pos);
5478 else if (cap->cmdchar == 'g')
5479 {
5480 if (curbuf->b_changelistlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005481 emsg(_("E664: changelist is empty"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 else if (cap->count1 < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005483 emsg(_("E662: At start of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005485 emsg(_("E663: At end of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 }
5487 else
5488 clearopbeep(cap->oap);
5489# ifdef FEAT_FOLDING
5490 if (cap->oap->op_type == OP_NOP
5491 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
5492 && (fdo_flags & FDO_MARK)
5493 && old_KeyTyped)
5494 foldOpenCursor();
5495# endif
5496 }
5497#else
5498 clearopbeep(cap->oap);
5499#endif
5500}
5501
5502/*
5503 * Handle '"' command.
5504 */
5505 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005506nv_regname(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507{
5508 if (checkclearop(cap->oap))
5509 return;
5510#ifdef FEAT_EVAL
5511 if (cap->nchar == '=')
5512 cap->nchar = get_expr_register();
5513#endif
5514 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
5515 {
5516 cap->oap->regname = cap->nchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005517 cap->opcount = cap->count0; // remember count before '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518#ifdef FEAT_EVAL
5519 set_reg_var(cap->oap->regname);
5520#endif
5521 }
5522 else
5523 clearopbeep(cap->oap);
5524}
5525
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526/*
5527 * Handle "v", "V" and "CTRL-V" commands.
5528 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
5529 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005530 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 */
5532 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005533nv_visual(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534{
Bram Moolenaardf177f62005-02-22 08:39:57 +00005535 if (cap->cmdchar == Ctrl_Q)
5536 cap->cmdchar = Ctrl_V;
5537
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005538 // 'v', 'V' and CTRL-V can be used while an operator is pending to make it
5539 // characterwise, linewise, or blockwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540 if (cap->oap->op_type != OP_NOP)
5541 {
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01005542 motion_force = cap->oap->motion_force = cap->cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005543 finish_op = FALSE; // operator doesn't finish now but later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 return;
5545 }
5546
5547 VIsual_select = cap->arg;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005548 if (VIsual_active) // change Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005550 if (VIsual_mode == cap->cmdchar) // stop visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005552 else // toggle char/block mode
5553 { // or char/line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 VIsual_mode = cap->cmdchar;
5555 showmode();
5556 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005557 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005559 else // start Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 {
5561 check_visual_highlight();
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005562 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005564 // use previously selected part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 VIsual = curwin->w_cursor;
5566
5567 VIsual_active = TRUE;
5568 VIsual_reselect = TRUE;
5569 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005570 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 setmouse();
Bram Moolenaar09df3122006-01-23 22:23:09 +00005573 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005574 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 /*
5576 * For V and ^V, we multiply the number of lines even if there
5577 * was only one -- webb
5578 */
5579 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
5580 {
5581 curwin->w_cursor.lnum +=
5582 resel_VIsual_line_count * cap->count0 - 1;
5583 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5584 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5585 }
5586 VIsual_mode = resel_VIsual_mode;
5587 if (VIsual_mode == 'v')
5588 {
5589 if (resel_VIsual_line_count <= 1)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005590 {
5591 validate_virtcol();
5592 curwin->w_curswant = curwin->w_virtcol
5593 + resel_VIsual_vcol * cap->count0 - 1;
5594 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005596 curwin->w_curswant = resel_VIsual_vcol;
5597 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 }
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005599 if (resel_VIsual_vcol == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600 {
5601 curwin->w_curswant = MAXCOL;
5602 coladvance((colnr_T)MAXCOL);
5603 }
5604 else if (VIsual_mode == Ctrl_V)
5605 {
5606 validate_virtcol();
5607 curwin->w_curswant = curwin->w_virtcol
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005608 + resel_VIsual_vcol * cap->count0 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609 coladvance(curwin->w_curswant);
5610 }
5611 else
5612 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005613 redraw_curbuf_later(INVERTED); // show the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 }
5615 else
5616 {
5617 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005618 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 may_start_select('c');
5620 n_start_visual_mode(cap->cmdchar);
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005621 if (VIsual_mode != 'V' && *p_sel == 'e')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005622 ++cap->count1; // include one more char
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005623 if (cap->count0 > 0 && --cap->count1 > 0)
5624 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005625 // With a count select that many characters or lines.
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005626 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
5627 nv_right(cap);
5628 else if (VIsual_mode == 'V')
5629 nv_down(cap);
5630 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005631 }
5632 }
5633}
5634
5635/*
5636 * Start selection for Shift-movement keys.
5637 */
5638 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005639start_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005641 // if 'selectmode' contains "key", start Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 may_start_select('k');
5643 n_start_visual_mode('v');
5644}
5645
5646/*
5647 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
5648 */
5649 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005650may_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651{
5652 VIsual_select = (stuff_empty() && typebuf_typed()
5653 && (vim_strchr(p_slm, c) != NULL));
5654}
5655
5656/*
5657 * Start Visual mode "c".
5658 * Should set VIsual_select before calling this.
5659 */
5660 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005661n_start_visual_mode(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662{
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005663#ifdef FEAT_CONCEAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005664 // Check for redraw before changing the state.
Bram Moolenaarb9464822018-05-10 15:09:49 +02005665 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005666#endif
5667
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668 VIsual_mode = c;
5669 VIsual_active = TRUE;
5670 VIsual_reselect = TRUE;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005671
5672 // Corner case: the 0 position in a tab may change when going into
Bram Moolenaar4b96df52020-01-26 22:00:26 +01005673 // virtualedit. Recalculate curwin->w_cursor to avoid bad highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB)
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005675 {
5676 validate_virtcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 coladvance(curwin->w_virtcol);
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005678 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679 VIsual = curwin->w_cursor;
5680
5681#ifdef FEAT_FOLDING
5682 foldAdjustVisual();
5683#endif
5684
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 setmouse();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005686#ifdef FEAT_CONCEAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005687 // Check for redraw after changing the state.
Bram Moolenaarb9464822018-05-10 15:09:49 +02005688 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005689#endif
5690
Bram Moolenaar09df3122006-01-23 22:23:09 +00005691 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005692 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005694 // Make sure the clipboard gets updated. Needed because start and
5695 // end may still be the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005696 clip_star.vmode = NUL;
5697#endif
5698
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005699 // Only need to redraw this line, unless still need to redraw an old
5700 // Visual area (when 'lazyredraw' is set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 if (curwin->w_redr_type < INVERTED)
5702 {
5703 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
5704 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
5705 }
5706}
5707
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708
5709/*
5710 * CTRL-W: Window commands
5711 */
5712 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005713nv_window(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714{
Bram Moolenaar938783d2017-07-16 20:13:26 +02005715 if (cap->nchar == ':')
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005716 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005717 // "CTRL-W :" is the same as typing ":"; useful in a terminal window
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005718 cap->cmdchar = ':';
5719 cap->nchar = NUL;
Bram Moolenaar938783d2017-07-16 20:13:26 +02005720 nv_colon(cap);
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005721 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02005722 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005723 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724}
5725
5726/*
5727 * CTRL-Z: Suspend
5728 */
5729 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005730nv_suspend(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731{
5732 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 if (VIsual_active)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005734 end_visual_mode(); // stop Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735 do_cmdline_cmd((char_u *)"st");
5736}
5737
5738/*
5739 * Commands starting with "g".
5740 */
5741 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005742nv_g_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743{
5744 oparg_T *oap = cap->oap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745 pos_T tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 int i;
5747 int flag = FALSE;
5748
5749 switch (cap->nchar)
5750 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005751 case Ctrl_A:
5752 case Ctrl_X:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753#ifdef MEM_PROFILE
5754 /*
5755 * "g^A": dump log of used memory.
5756 */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005757 if (!VIsual_active && cap->nchar == Ctrl_A)
5758 vim_mem_profile_dump();
5759 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005761 /*
5762 * "g^A/g^X": sequentially increment visually selected region
5763 */
5764 if (VIsual_active)
5765 {
5766 cap->arg = TRUE;
5767 cap->cmdchar = cap->nchar;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005768 cap->nchar = NUL;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005769 nv_addsub(cap);
5770 }
5771 else
5772 clearopbeep(oap);
5773 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775 /*
5776 * "gR": Enter virtual replace mode.
5777 */
5778 case 'R':
5779 cap->arg = TRUE;
5780 nv_Replace(cap);
5781 break;
5782
5783 case 'r':
5784 nv_vreplace(cap);
5785 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786
5787 case '&':
5788 do_cmdline_cmd((char_u *)"%s//~/&");
5789 break;
5790
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791 /*
5792 * "gv": Reselect the previous Visual area. If Visual already active,
5793 * exchange previous and current Visual area.
5794 */
5795 case 'v':
5796 if (checkclearop(oap))
5797 break;
5798
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005799 if ( curbuf->b_visual.vi_start.lnum == 0
5800 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
5801 || curbuf->b_visual.vi_end.lnum == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802 beep_flush();
5803 else
5804 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005805 // set w_cursor to the start of the Visual area, tpos to the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 if (VIsual_active)
5807 {
5808 i = VIsual_mode;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005809 VIsual_mode = curbuf->b_visual.vi_mode;
5810 curbuf->b_visual.vi_mode = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811# ifdef FEAT_EVAL
5812 curbuf->b_visual_mode_eval = i;
5813# endif
5814 i = curwin->w_curswant;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005815 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5816 curbuf->b_visual.vi_curswant = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005818 tpos = curbuf->b_visual.vi_end;
5819 curbuf->b_visual.vi_end = curwin->w_cursor;
5820 curwin->w_cursor = curbuf->b_visual.vi_start;
5821 curbuf->b_visual.vi_start = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822 }
5823 else
5824 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005825 VIsual_mode = curbuf->b_visual.vi_mode;
5826 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5827 tpos = curbuf->b_visual.vi_end;
5828 curwin->w_cursor = curbuf->b_visual.vi_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829 }
5830
5831 VIsual_active = TRUE;
5832 VIsual_reselect = TRUE;
5833
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005834 // Set Visual to the start and w_cursor to the end of the Visual
5835 // area. Make sure they are on an existing character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836 check_cursor();
5837 VIsual = curwin->w_cursor;
5838 curwin->w_cursor = tpos;
5839 check_cursor();
5840 update_topline();
5841 /*
5842 * When called from normal "g" command: start Select mode when
5843 * 'selectmode' contains "cmd". When called for K_SELECT, always
5844 * start Select mode.
5845 */
5846 if (cap->arg)
5847 VIsual_select = TRUE;
5848 else
5849 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005852 // Make sure the clipboard gets updated. Needed because start and
5853 // end are still the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 clip_star.vmode = NUL;
5855#endif
5856 redraw_curbuf_later(INVERTED);
5857 showmode();
5858 }
5859 break;
5860 /*
5861 * "gV": Don't reselect the previous Visual area after a Select mode
5862 * mapping of menu.
5863 */
5864 case 'V':
5865 VIsual_reselect = FALSE;
5866 break;
5867
5868 /*
5869 * "gh": start Select mode.
5870 * "gH": start Select line mode.
5871 * "g^H": start Select block mode.
5872 */
5873 case K_BS:
5874 cap->nchar = Ctrl_H;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005875 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 case 'h':
5877 case 'H':
5878 case Ctrl_H:
5879# ifdef EBCDIC
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005880 // EBCDIC: 'v'-'h' != '^v'-'^h'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881 if (cap->nchar == Ctrl_H)
5882 cap->cmdchar = Ctrl_V;
5883 else
5884# endif
5885 cap->cmdchar = cap->nchar + ('v' - 'h');
5886 cap->arg = TRUE;
5887 nv_visual(cap);
5888 break;
Bram Moolenaar641e2862012-07-25 15:06:34 +02005889
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005890 // "gn", "gN" visually select next/previous search match
5891 // "gn" selects next match
5892 // "gN" selects previous match
Bram Moolenaar641e2862012-07-25 15:06:34 +02005893 case 'N':
5894 case 'n':
5895 if (!current_search(cap->count1, cap->nchar == 'n'))
Bram Moolenaarf00dc262012-10-21 03:54:33 +02005896 clearopbeep(oap);
Bram Moolenaar641e2862012-07-25 15:06:34 +02005897 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898
5899 /*
5900 * "gj" and "gk" two new funny movement keys -- up and down
5901 * movement based on *screen* line rather than *file* line.
5902 */
5903 case 'j':
5904 case K_DOWN:
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005905 // with 'nowrap' it works just like the normal "j" command; also when
5906 // in a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907 if (!curwin->w_p_wrap
5908#ifdef FEAT_FOLDING
5909 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
5910#endif
5911 )
5912 {
5913 oap->motion_type = MLINE;
5914 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
5915 }
5916 else
5917 i = nv_screengo(oap, FORWARD, cap->count1);
5918 if (i == FAIL)
5919 clearopbeep(oap);
5920 break;
5921
5922 case 'k':
5923 case K_UP:
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005924 // with 'nowrap' it works just like the normal "k" command; also when
5925 // in a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005926 if (!curwin->w_p_wrap
5927#ifdef FEAT_FOLDING
5928 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
5929#endif
5930 )
5931 {
5932 oap->motion_type = MLINE;
5933 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
5934 }
5935 else
5936 i = nv_screengo(oap, BACKWARD, cap->count1);
5937 if (i == FAIL)
5938 clearopbeep(oap);
5939 break;
5940
5941 /*
5942 * "gJ": join two lines without inserting a space.
5943 */
5944 case 'J':
5945 nv_join(cap);
5946 break;
5947
5948 /*
5949 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
5950 * "gm": middle of "g0" and "g$".
5951 */
5952 case '^':
5953 flag = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005954 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955
5956 case '0':
5957 case 'm':
5958 case K_HOME:
5959 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005960 oap->motion_type = MCHAR;
5961 oap->inclusive = FALSE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005962 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 {
Bram Moolenaar02631462017-09-22 15:20:32 +02005964 int width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 int width2 = width1 + curwin_col_off2();
5966
5967 validate_virtcol();
5968 i = 0;
5969 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
5970 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
5971 }
5972 else
5973 i = curwin->w_leftcol;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005974 // Go to the middle of the screen line. When 'number' or
5975 // 'relativenumber' is on and lines are wrapping the middle can be more
5976 // to the left.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 if (cap->nchar == 'm')
Bram Moolenaar02631462017-09-22 15:20:32 +02005978 i += (curwin->w_width - curwin_col_off()
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 + ((curwin->w_p_wrap && i > 0)
5980 ? curwin_col_off2() : 0)) / 2;
5981 coladvance((colnr_T)i);
5982 if (flag)
5983 {
5984 do
5985 i = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01005986 while (VIM_ISWHITE(i) && oneright() == OK);
Bram Moolenaarf9514162018-11-22 03:08:29 +01005987 curwin->w_valid &= ~VALID_WCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988 }
5989 curwin->w_set_curswant = TRUE;
5990 break;
5991
Bram Moolenaar8b530c12019-10-28 02:13:05 +01005992 case 'M':
5993 {
5994 char_u *ptr = ml_get_curline();
5995
5996 oap->motion_type = MCHAR;
5997 oap->inclusive = FALSE;
5998 if (has_mbyte)
Bram Moolenaar69bf6342019-10-29 04:16:57 +01005999 i = mb_string2cells(ptr, (int)STRLEN(ptr));
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006000 else
6001 i = (int)STRLEN(ptr);
6002 if (cap->count0 > 0 && cap->count0 <= 100)
6003 coladvance((colnr_T)(i * cap->count0 / 100));
6004 else
6005 coladvance((colnr_T)(i / 2));
6006 curwin->w_set_curswant = TRUE;
6007 }
6008 break;
6009
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010 case '_':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006011 // "g_": to the last non-blank character in the line or <count> lines
6012 // downward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 cap->oap->motion_type = MCHAR;
6014 cap->oap->inclusive = TRUE;
6015 curwin->w_curswant = MAXCOL;
6016 if (cursor_down((long)(cap->count1 - 1),
6017 cap->oap->op_type == OP_NOP) == FAIL)
6018 clearopbeep(cap->oap);
6019 else
6020 {
6021 char_u *ptr = ml_get_curline();
6022
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006023 // In Visual mode we may end up after the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
6025 --curwin->w_cursor.col;
6026
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006027 // Decrease the cursor column until it's on a non-blank.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 while (curwin->w_cursor.col > 0
Bram Moolenaar1c465442017-03-12 20:10:05 +01006029 && VIM_ISWHITE(ptr[curwin->w_cursor.col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 --curwin->w_cursor.col;
6031 curwin->w_set_curswant = TRUE;
Bram Moolenaar5890b2c2010-01-12 15:42:37 +01006032 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006033 }
6034 break;
6035
6036 case '$':
6037 case K_END:
6038 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039 {
6040 int col_off = curwin_col_off();
6041
6042 oap->motion_type = MCHAR;
6043 oap->inclusive = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006044 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006046 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00006047 if (cap->count1 == 1)
6048 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006049 int width1 = curwin->w_width - col_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006050 int width2 = width1 + curwin_col_off2();
6051
6052 validate_virtcol();
6053 i = width1 - 1;
6054 if (curwin->w_virtcol >= (colnr_T)width1)
6055 i += ((curwin->w_virtcol - width1) / width2 + 1)
6056 * width2;
6057 coladvance((colnr_T)i);
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006058
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006059 // Make sure we stick in this column.
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006060 validate_virtcol();
6061 curwin->w_curswant = curwin->w_virtcol;
6062 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
6064 {
6065 /*
6066 * Check for landing on a character that got split at
6067 * the end of the line. We do not want to advance to
6068 * the next screen line.
6069 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070 if (curwin->w_virtcol > (colnr_T)i)
6071 --curwin->w_cursor.col;
6072 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073 }
6074 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
6075 clearopbeep(oap);
6076 }
6077 else
6078 {
Bram Moolenaard5c82342019-07-27 18:44:57 +02006079 if (cap->count1 > 1)
6080 // if it fails, let the cursor still move to the last char
Bram Moolenaar9c272a92019-08-16 21:54:27 +02006081 (void)cursor_down(cap->count1 - 1, FALSE);
Bram Moolenaard5c82342019-07-27 18:44:57 +02006082
Bram Moolenaar02631462017-09-22 15:20:32 +02006083 i = curwin->w_leftcol + curwin->w_width - col_off - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006085
Bram Moolenaard5c82342019-07-27 18:44:57 +02006086 // Make sure we stick in this column.
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006087 validate_virtcol();
6088 curwin->w_curswant = curwin->w_virtcol;
6089 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 }
6091 }
6092 break;
6093
6094 /*
6095 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
6096 */
6097 case '*':
6098 case '#':
6099#if POUND != '#'
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006100 case POUND: // pound sign (sometimes equal to '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006102 case Ctrl_RSB: // :tag or :tselect for current identifier
6103 case ']': // :tselect for current identifier
Bram Moolenaar071d4272004-06-13 20:20:40 +00006104 nv_ident(cap);
6105 break;
6106
6107 /*
6108 * ge and gE: go back to end of word
6109 */
6110 case 'e':
6111 case 'E':
6112 oap->motion_type = MCHAR;
6113 curwin->w_set_curswant = TRUE;
6114 oap->inclusive = TRUE;
6115 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
6116 clearopbeep(oap);
6117 break;
6118
6119 /*
6120 * "g CTRL-G": display info about cursor position
6121 */
6122 case Ctrl_G:
Bram Moolenaared767a22016-01-03 22:49:16 +01006123 cursor_pos_info(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006124 break;
6125
6126 /*
6127 * "gi": start Insert at the last position.
6128 */
6129 case 'i':
6130 if (curbuf->b_last_insert.lnum != 0)
6131 {
6132 curwin->w_cursor = curbuf->b_last_insert;
6133 check_cursor_lnum();
6134 i = (int)STRLEN(ml_get_curline());
6135 if (curwin->w_cursor.col > (colnr_T)i)
6136 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137 if (virtual_active())
6138 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139 curwin->w_cursor.col = i;
6140 }
6141 }
6142 cap->cmdchar = 'i';
6143 nv_edit(cap);
6144 break;
6145
6146 /*
6147 * "gI": Start insert in column 1.
6148 */
6149 case 'I':
6150 beginline(0);
6151 if (!checkclearopq(oap))
6152 invoke_edit(cap, FALSE, 'g', FALSE);
6153 break;
6154
6155#ifdef FEAT_SEARCHPATH
6156 /*
6157 * "gf": goto file, edit file under cursor
6158 * "]f" and "[f": can also be used.
6159 */
6160 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006161 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162 nv_gotofile(cap);
6163 break;
6164#endif
6165
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006166 // "g'm" and "g`m": jump to mark without setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167 case '\'':
6168 cap->arg = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006169 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170 case '`':
6171 nv_gomark(cap);
6172 break;
6173
6174 /*
6175 * "gs": Goto sleep.
6176 */
6177 case 's':
6178 do_sleep(cap->count1 * 1000L);
6179 break;
6180
6181 /*
6182 * "ga": Display the ascii value of the character under the
6183 * cursor. It is displayed in decimal, hex, and octal. -- webb
6184 */
6185 case 'a':
6186 do_ascii(NULL);
6187 break;
6188
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 /*
6190 * "g8": Display the bytes used for the UTF-8 character under the
6191 * cursor. It is displayed in hex.
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006192 * "8g8" finds illegal byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006193 */
6194 case '8':
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006195 if (cap->count0 == 8)
6196 utf_find_illegal();
6197 else
6198 show_utf8();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006201 // "g<": show scrollback text
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00006202 case '<':
6203 show_sb_text();
6204 break;
6205
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206 /*
6207 * "gg": Goto the first line in file. With a count it goes to
6208 * that line number like for "G". -- webb
6209 */
6210 case 'g':
6211 cap->arg = FALSE;
6212 nv_goto(cap);
6213 break;
6214
6215 /*
6216 * Two-character operators:
6217 * "gq" Format text
6218 * "gw" Format text and keep cursor position
6219 * "g~" Toggle the case of the text.
6220 * "gu" Change text to lower case.
6221 * "gU" Change text to upper case.
6222 * "g?" rot13 encoding
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006223 * "g@" call 'operatorfunc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006224 */
6225 case 'q':
6226 case 'w':
6227 oap->cursor_start = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006228 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006229 case '~':
6230 case 'u':
6231 case 'U':
6232 case '?':
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006233 case '@':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006234 nv_operator(cap);
6235 break;
6236
6237 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00006238 * "gd": Find first occurrence of pattern under the cursor in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00006239 * current function
6240 * "gD": idem, but in the current file.
6241 */
6242 case 'd':
6243 case 'D':
Bram Moolenaarf75a9632005-09-13 21:20:47 +00006244 nv_gd(oap, cap->nchar, (int)cap->count0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006245 break;
6246
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 /*
6248 * g<*Mouse> : <C-*mouse>
6249 */
6250 case K_MIDDLEMOUSE:
6251 case K_MIDDLEDRAG:
6252 case K_MIDDLERELEASE:
6253 case K_LEFTMOUSE:
6254 case K_LEFTDRAG:
6255 case K_LEFTRELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01006256 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 case K_RIGHTMOUSE:
6258 case K_RIGHTDRAG:
6259 case K_RIGHTRELEASE:
6260 case K_X1MOUSE:
6261 case K_X1DRAG:
6262 case K_X1RELEASE:
6263 case K_X2MOUSE:
6264 case K_X2DRAG:
6265 case K_X2RELEASE:
6266 mod_mask = MOD_MASK_CTRL;
6267 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
6268 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269
6270 case K_IGNORE:
6271 break;
6272
6273 /*
6274 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
6275 */
6276 case 'p':
6277 case 'P':
6278 nv_put(cap);
6279 break;
6280
6281#ifdef FEAT_BYTEOFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006282 // "go": goto byte count from start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283 case 'o':
6284 goto_byte(cap->count0);
6285 break;
6286#endif
6287
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006288 // "gQ": improved Ex mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289 case 'Q':
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006290 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291 {
6292 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006293 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006294 break;
6295 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006296
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297 if (!checkclearopq(oap))
6298 do_exmode(TRUE);
6299 break;
6300
6301#ifdef FEAT_JUMPLIST
6302 case ',':
6303 nv_pcmark(cap);
6304 break;
6305
6306 case ';':
6307 cap->count1 = -cap->count1;
6308 nv_pcmark(cap);
6309 break;
6310#endif
6311
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006312 case 't':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006313 if (!checkclearop(oap))
6314 goto_tabpage((int)cap->count0);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006315 break;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006316 case 'T':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006317 if (!checkclearop(oap))
6318 goto_tabpage(-(int)cap->count1);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006319 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006320
Bram Moolenaar62a23252020-08-09 14:04:42 +02006321 case TAB:
6322 if (!checkclearop(oap) && goto_tabpage_lastused() == FAIL)
6323 clearopbeep(oap);
6324 break;
6325
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006326 case '+':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006327 case '-': // "g+" and "g-": undo or redo along the timeline
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006328 if (!checkclearopq(oap))
Bram Moolenaard3667a22006-03-16 21:35:52 +00006329 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
Bram Moolenaar730cde92010-06-27 05:18:54 +02006330 FALSE, FALSE, FALSE);
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006331 break;
6332
Bram Moolenaar071d4272004-06-13 20:20:40 +00006333 default:
6334 clearopbeep(oap);
6335 break;
6336 }
6337}
6338
6339/*
6340 * Handle "o" and "O" commands.
6341 */
6342 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006343n_opencmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006344{
Bram Moolenaar860cae12010-06-05 23:22:07 +02006345#ifdef FEAT_CONCEAL
6346 linenr_T oldline = curwin->w_cursor.lnum;
6347#endif
6348
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349 if (!checkclearopq(cap->oap))
6350 {
6351#ifdef FEAT_FOLDING
6352 if (cap->cmdchar == 'O')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006353 // Open above the first line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006354 (void)hasFolding(curwin->w_cursor.lnum,
6355 &curwin->w_cursor.lnum, NULL);
6356 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006357 // Open below the last line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 (void)hasFolding(curwin->w_cursor.lnum,
6359 NULL, &curwin->w_cursor.lnum);
6360#endif
6361 if (u_save((linenr_T)(curwin->w_cursor.lnum -
6362 (cap->cmdchar == 'O' ? 1 : 0)),
6363 (linenr_T)(curwin->w_cursor.lnum +
6364 (cap->cmdchar == 'o' ? 1 : 0))
6365 ) == OK
6366 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02006367 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0,
6368 0) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02006370#ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02006371 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01006372 redrawWinline(curwin, oldline);
Bram Moolenaar860cae12010-06-05 23:22:07 +02006373#endif
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006374#ifdef FEAT_SYN_HL
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006375 if (curwin->w_p_cul)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006376 // force redraw of cursorline
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006377 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006378#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006379 // When '#' is in 'cpoptions' ignore the count.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006380 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
6381 cap->count1 = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
6383 }
6384 }
6385}
6386
6387/*
6388 * "." command: redo last change.
6389 */
6390 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006391nv_dot(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392{
6393 if (!checkclearopq(cap->oap))
6394 {
6395 /*
6396 * If "restart_edit" is TRUE, the last but one command is repeated
6397 * instead of the last command (inserting text). This is used for
6398 * CTRL-O <.> in insert mode.
6399 */
6400 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
6401 clearopbeep(cap->oap);
6402 }
6403}
6404
6405/*
6406 * CTRL-R: undo undo
6407 */
6408 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006409nv_redo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410{
6411 if (!checkclearopq(cap->oap))
6412 {
6413 u_redo((int)cap->count1);
6414 curwin->w_set_curswant = TRUE;
6415 }
6416}
6417
6418/*
6419 * Handle "U" command.
6420 */
6421 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006422nv_Undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006424 // In Visual mode and typing "gUU" triggers an operator
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006425 if (cap->oap->op_type == OP_UPPER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006427 // translate "gUU" to "gUgU"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428 cap->cmdchar = 'g';
6429 cap->nchar = 'U';
6430 nv_operator(cap);
6431 }
6432 else if (!checkclearopq(cap->oap))
6433 {
6434 u_undoline();
6435 curwin->w_set_curswant = TRUE;
6436 }
6437}
6438
6439/*
6440 * '~' command: If tilde is not an operator and Visual is off: swap case of a
6441 * single character.
6442 */
6443 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006444nv_tilde(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006446 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE)
Bram Moolenaarf2732452018-06-03 14:47:35 +02006447 {
6448#ifdef FEAT_JOB_CHANNEL
6449 if (bt_prompt(curbuf) && !prompt_curpos_editable())
6450 {
6451 clearopbeep(cap->oap);
6452 return;
6453 }
6454#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455 n_swapchar(cap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006456 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457 else
6458 nv_operator(cap);
6459}
6460
6461/*
6462 * Handle an operator command.
6463 * The actual work is done by do_pending_operator().
6464 */
6465 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006466nv_operator(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006467{
6468 int op_type;
6469
6470 op_type = get_op_type(cap->cmdchar, cap->nchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006471#ifdef FEAT_JOB_CHANNEL
6472 if (bt_prompt(curbuf) && op_is_change(op_type) && !prompt_curpos_editable())
6473 {
6474 clearopbeep(cap->oap);
6475 return;
6476 }
6477#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006478
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006479 if (op_type == cap->oap->op_type) // double operator works on lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480 nv_lineop(cap);
6481 else if (!checkclearop(cap->oap))
6482 {
6483 cap->oap->start = curwin->w_cursor;
6484 cap->oap->op_type = op_type;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006485#ifdef FEAT_EVAL
6486 set_op_var(op_type);
6487#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 }
6489}
6490
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006491#ifdef FEAT_EVAL
6492/*
6493 * Set v:operator to the characters for "optype".
6494 */
6495 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006496set_op_var(int optype)
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006497{
6498 char_u opchars[3];
6499
6500 if (optype == OP_NOP)
6501 set_vim_var_string(VV_OP, NULL, 0);
6502 else
6503 {
6504 opchars[0] = get_op_char(optype);
6505 opchars[1] = get_extra_op_char(optype);
6506 opchars[2] = NUL;
6507 set_vim_var_string(VV_OP, opchars, -1);
6508 }
6509}
6510#endif
6511
Bram Moolenaar071d4272004-06-13 20:20:40 +00006512/*
6513 * Handle linewise operator "dd", "yy", etc.
6514 *
6515 * "_" is is a strange motion command that helps make operators more logical.
6516 * It is actually implemented, but not documented in the real Vi. This motion
6517 * command actually refers to "the current line". Commands like "dd" and "yy"
6518 * are really an alternate form of "d_" and "y_". It does accept a count, so
6519 * "d3_" works to delete 3 lines.
6520 */
6521 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006522nv_lineop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523{
6524 cap->oap->motion_type = MLINE;
6525 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
6526 clearopbeep(cap->oap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006527 else if ( (cap->oap->op_type == OP_DELETE // only with linewise motions
Bram Moolenaar83dadaf2012-12-12 17:33:32 +01006528 && cap->oap->motion_force != 'v'
6529 && cap->oap->motion_force != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530 || cap->oap->op_type == OP_LSHIFT
6531 || cap->oap->op_type == OP_RSHIFT)
6532 beginline(BL_SOL | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006533 else if (cap->oap->op_type != OP_YANK) // 'Y' does not move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00006534 beginline(BL_WHITE | BL_FIX);
6535}
6536
6537/*
6538 * <Home> command.
6539 */
6540 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006541nv_home(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006542{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006543 // CTRL-HOME is like "gg"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006544 if (mod_mask & MOD_MASK_CTRL)
6545 nv_goto(cap);
6546 else
6547 {
6548 cap->count0 = 1;
6549 nv_pipe(cap);
6550 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006551 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6552 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553}
6554
6555/*
6556 * "|" command.
6557 */
6558 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006559nv_pipe(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560{
6561 cap->oap->motion_type = MCHAR;
6562 cap->oap->inclusive = FALSE;
6563 beginline(0);
6564 if (cap->count0 > 0)
6565 {
6566 coladvance((colnr_T)(cap->count0 - 1));
6567 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
6568 }
6569 else
6570 curwin->w_curswant = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006571 // keep curswant at the column where we wanted to go, not where
6572 // we ended; differs if line is too short
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573 curwin->w_set_curswant = FALSE;
6574}
6575
6576/*
6577 * Handle back-word command "b" and "B".
6578 * cap->arg is 1 for "B"
6579 */
6580 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006581nv_bck_word(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582{
6583 cap->oap->motion_type = MCHAR;
6584 cap->oap->inclusive = FALSE;
6585 curwin->w_set_curswant = TRUE;
6586 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
6587 clearopbeep(cap->oap);
6588#ifdef FEAT_FOLDING
6589 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6590 foldOpenCursor();
6591#endif
6592}
6593
6594/*
6595 * Handle word motion commands "e", "E", "w" and "W".
6596 * cap->arg is TRUE for "E" and "W".
6597 */
6598 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006599nv_wordcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006600{
6601 int n;
6602 int word_end;
6603 int flag = FALSE;
Bram Moolenaardfefb982008-04-01 10:06:39 +00006604 pos_T startpos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006605
6606 /*
6607 * Set inclusive for the "E" and "e" command.
6608 */
6609 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
6610 word_end = TRUE;
6611 else
6612 word_end = FALSE;
6613 cap->oap->inclusive = word_end;
6614
6615 /*
6616 * "cw" and "cW" are a special case.
6617 */
6618 if (!word_end && cap->oap->op_type == OP_CHANGE)
6619 {
6620 n = gchar_cursor();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006621 if (n != NUL) // not an empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006622 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01006623 if (VIM_ISWHITE(n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006624 {
6625 /*
6626 * Reproduce a funny Vi behaviour: "cw" on a blank only
6627 * changes one character, not all blanks until the start of
6628 * the next word. Only do this when the 'w' flag is included
6629 * in 'cpoptions'.
6630 */
6631 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
6632 {
6633 cap->oap->inclusive = TRUE;
6634 cap->oap->motion_type = MCHAR;
6635 return;
6636 }
6637 }
6638 else
6639 {
6640 /*
6641 * This is a little strange. To match what the real Vi does,
6642 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
6643 * that we are not on a space or a TAB. This seems impolite
6644 * at first, but it's really more what we mean when we say
6645 * 'cw'.
6646 * Another strangeness: When standing on the end of a word
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02006647 * "ce" will change until the end of the next word, but "cw"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006648 * will change only one character! This is done by setting
6649 * flag.
6650 */
6651 cap->oap->inclusive = TRUE;
6652 word_end = TRUE;
6653 flag = TRUE;
6654 }
6655 }
6656 }
6657
6658 cap->oap->motion_type = MCHAR;
6659 curwin->w_set_curswant = TRUE;
6660 if (word_end)
6661 n = end_word(cap->count1, cap->arg, flag, FALSE);
6662 else
6663 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
6664
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006665 // Don't leave the cursor on the NUL past the end of line. Unless we
6666 // didn't move it forward.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006667 if (LT_POS(startpos, curwin->w_cursor))
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006668 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669
6670 if (n == FAIL && cap->oap->op_type == OP_NOP)
6671 clearopbeep(cap->oap);
6672 else
6673 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006674 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006675#ifdef FEAT_FOLDING
6676 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6677 foldOpenCursor();
6678#endif
6679 }
6680}
6681
6682/*
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006683 * Used after a movement command: If the cursor ends up on the NUL after the
6684 * end of the line, may move it back to the last character and make the motion
6685 * inclusive.
6686 */
6687 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006688adjust_cursor(oparg_T *oap)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006689{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006690 // The cursor cannot remain on the NUL when:
6691 // - the column is > 0
6692 // - not in Visual mode or 'selection' is "o"
6693 // - 'virtualedit' is not "all" and not "onemore".
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006694 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006695 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01006696 && !virtual_active() && (ve_flags & VE_ONEMORE) == 0)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006697 {
6698 --curwin->w_cursor.col;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006699 // prevent cursor from moving on the trail byte
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006700 if (has_mbyte)
6701 mb_adjust_cursor();
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006702 oap->inclusive = TRUE;
6703 }
6704}
6705
6706/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006707 * "0" and "^" commands.
6708 * cap->arg is the argument for beginline().
6709 */
6710 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006711nv_beginline(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712{
6713 cap->oap->motion_type = MCHAR;
6714 cap->oap->inclusive = FALSE;
6715 beginline(cap->arg);
6716#ifdef FEAT_FOLDING
6717 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6718 foldOpenCursor();
6719#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006720 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6721 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006722}
6723
Bram Moolenaar071d4272004-06-13 20:20:40 +00006724/*
6725 * In exclusive Visual mode, may include the last character.
6726 */
6727 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006728adjust_for_sel(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729{
6730 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006731 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006732 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733 if (has_mbyte)
6734 inc_cursor();
6735 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736 ++curwin->w_cursor.col;
6737 cap->oap->inclusive = FALSE;
6738 }
6739}
6740
6741/*
6742 * Exclude last character at end of Visual area for 'selection' == "exclusive".
6743 * Should check VIsual_mode before calling this.
6744 * Returns TRUE when backed up to the previous line.
6745 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02006746 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006747unadjust_for_sel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748{
6749 pos_T *pp;
6750
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006751 if (*p_sel == 'e' && !EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006752 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006753 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754 pp = &curwin->w_cursor;
6755 else
6756 pp = &VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006757 if (pp->coladd > 0)
6758 --pp->coladd;
6759 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006760 if (pp->col > 0)
6761 {
6762 --pp->col;
Bram Moolenaar03a807a2011-07-07 15:08:58 +02006763 mb_adjustpos(curbuf, pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006764 }
6765 else if (pp->lnum > 1)
6766 {
6767 --pp->lnum;
6768 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
6769 return TRUE;
6770 }
6771 }
6772 return FALSE;
6773}
6774
6775/*
6776 * SELECT key in Normal or Visual mode: end of Select mode mapping.
6777 */
6778 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006779nv_select(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780{
6781 if (VIsual_active)
6782 VIsual_select = TRUE;
6783 else if (VIsual_reselect)
6784 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006785 cap->nchar = 'v'; // fake "gv" command
Bram Moolenaar071d4272004-06-13 20:20:40 +00006786 cap->arg = TRUE;
6787 nv_g_cmd(cap);
6788 }
6789}
6790
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791
6792/*
6793 * "G", "gg", CTRL-END, CTRL-HOME.
6794 * cap->arg is TRUE for "G".
6795 */
6796 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006797nv_goto(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798{
6799 linenr_T lnum;
6800
6801 if (cap->arg)
6802 lnum = curbuf->b_ml.ml_line_count;
6803 else
6804 lnum = 1L;
6805 cap->oap->motion_type = MLINE;
6806 setpcmark();
6807
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006808 // When a count is given, use it instead of the default lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00006809 if (cap->count0 != 0)
6810 lnum = cap->count0;
6811 if (lnum < 1L)
6812 lnum = 1L;
6813 else if (lnum > curbuf->b_ml.ml_line_count)
6814 lnum = curbuf->b_ml.ml_line_count;
6815 curwin->w_cursor.lnum = lnum;
6816 beginline(BL_SOL | BL_FIX);
6817#ifdef FEAT_FOLDING
6818 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
6819 foldOpenCursor();
6820#endif
6821}
6822
6823/*
6824 * CTRL-\ in Normal mode.
6825 */
6826 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006827nv_normal(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006828{
6829 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
6830 {
6831 clearop(cap->oap);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00006832 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006833 clear_cmdline = TRUE; // unshow mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00006834 restart_edit = 0;
6835#ifdef FEAT_CMDWIN
6836 if (cmdwin_type != 0)
6837 cmdwin_result = Ctrl_C;
6838#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006839 if (VIsual_active)
6840 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006841 end_visual_mode(); // stop Visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842 redraw_curbuf_later(INVERTED);
6843 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006844 // CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845 if (cap->nchar == Ctrl_G && p_im)
6846 restart_edit = 'a';
6847 }
6848 else
6849 clearopbeep(cap->oap);
6850}
6851
6852/*
6853 * ESC in Normal mode: beep, but don't flush buffers.
6854 * Don't even beep if we are canceling a command.
6855 */
6856 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006857nv_esc(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006858{
6859 int no_reason;
6860
6861 no_reason = (cap->oap->op_type == OP_NOP
6862 && cap->opcount == 0
6863 && cap->count0 == 0
6864 && cap->oap->regname == 0
6865 && !p_im);
6866
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006867 if (cap->arg) // TRUE for CTRL-C
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868 {
6869 if (restart_edit == 0
6870#ifdef FEAT_CMDWIN
6871 && cmdwin_type == 0
6872#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00006874 && no_reason)
Bram Moolenaara84a3dd2019-03-25 22:21:24 +01006875 {
6876 if (anyBufIsChanged())
6877 msg(_("Type :qa! and press <Enter> to abandon all changes and exit Vim"));
6878 else
6879 msg(_("Type :qa and press <Enter> to exit Vim"));
6880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006881
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006882 // Don't reset "restart_edit" when 'insertmode' is set, it won't be
6883 // set again below when halfway a mapping.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884 if (!p_im)
6885 restart_edit = 0;
6886#ifdef FEAT_CMDWIN
6887 if (cmdwin_type != 0)
6888 {
6889 cmdwin_result = K_IGNORE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006890 got_int = FALSE; // don't stop executing autocommands et al.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891 return;
6892 }
6893#endif
6894 }
6895
Bram Moolenaar071d4272004-06-13 20:20:40 +00006896 if (VIsual_active)
6897 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006898 end_visual_mode(); // stop Visual
6899 check_cursor_col(); // make sure cursor is not beyond EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900 curwin->w_set_curswant = TRUE;
6901 redraw_curbuf_later(INVERTED);
6902 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006903 else if (no_reason)
Bram Moolenaar165bc692015-07-21 17:53:25 +02006904 vim_beep(BO_ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 clearop(cap->oap);
6906
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006907 // A CTRL-C is often used at the start of a menu. When 'insertmode' is
6908 // set return to Insert mode afterwards.
Bram Moolenaare2c38102016-01-31 14:55:40 +01006909 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910 restart_edit = 'a';
6911}
6912
6913/*
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02006914 * Move the cursor for the "A" command.
6915 */
6916 void
6917set_cursor_for_append_to_line(void)
6918{
6919 curwin->w_set_curswant = TRUE;
6920 if (ve_flags == VE_ALL)
6921 {
6922 int save_State = State;
6923
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006924 // Pretend Insert mode here to allow the cursor on the
6925 // character past the end of the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02006926 State = INSERT;
6927 coladvance((colnr_T)MAXCOL);
6928 State = save_State;
6929 }
6930 else
6931 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
6932}
6933
6934/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935 * Handle "A", "a", "I", "i" and <Insert> commands.
Bram Moolenaarec2da362017-01-21 20:04:22 +01006936 * Also handle K_PS, start bracketed paste.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 */
6938 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006939nv_edit(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006941 // <Insert> is equal to "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
6943 cap->cmdchar = 'i';
6944
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006945 // in Visual mode "A" and "I" are an operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00006946 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
Bram Moolenaareef9add2017-09-16 15:38:04 +02006947 {
6948#ifdef FEAT_TERMINAL
6949 if (term_in_normal_mode())
6950 {
6951 end_visual_mode();
6952 clearop(cap->oap);
6953 term_enter_job_mode();
6954 return;
6955 }
6956#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006957 v_visop(cap);
Bram Moolenaareef9add2017-09-16 15:38:04 +02006958 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006960 // in Visual mode and after an operator "a" and "i" are for text objects
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006961 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
6962 && (cap->oap->op_type != OP_NOP || VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963 {
6964#ifdef FEAT_TEXTOBJ
6965 nv_object(cap);
6966#else
6967 clearopbeep(cap->oap);
6968#endif
6969 }
Bram Moolenaar662d9382017-07-31 22:56:24 +02006970#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02006971 else if (term_in_normal_mode())
Bram Moolenaar662d9382017-07-31 22:56:24 +02006972 {
6973 clearop(cap->oap);
Bram Moolenaar6d819742017-08-06 14:57:49 +02006974 term_enter_job_mode();
Bram Moolenaar662d9382017-07-31 22:56:24 +02006975 return;
6976 }
6977#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978 else if (!curbuf->b_p_ma && !p_im)
6979 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006980 // Only give this error when 'insertmode' is off.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006981 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006982 clearop(cap->oap);
Bram Moolenaarec2da362017-01-21 20:04:22 +01006983 if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006984 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01006985 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986 }
Bram Moolenaara1891842017-02-04 21:34:31 +01006987 else if (cap->cmdchar == K_PS && VIsual_active)
6988 {
6989 pos_T old_pos = curwin->w_cursor;
6990 pos_T old_visual = VIsual;
6991
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006992 // In Visual mode the selected text is deleted.
Bram Moolenaara1891842017-02-04 21:34:31 +01006993 if (VIsual_mode == 'V' || curwin->w_cursor.lnum != VIsual.lnum)
6994 {
6995 shift_delete_registers();
6996 cap->oap->regname = '1';
6997 }
6998 else
6999 cap->oap->regname = '-';
7000 cap->cmdchar = 'd';
7001 cap->nchar = NUL;
7002 nv_operator(cap);
7003 do_pending_operator(cap, 0, FALSE);
7004 cap->cmdchar = K_PS;
7005
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007006 // When the last char in the line was deleted then append. Detect this
7007 // by checking if the cursor moved to before the Visual area.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007008 if (*ml_get_cursor() != NUL && LT_POS(curwin->w_cursor, old_pos)
7009 && LT_POS(curwin->w_cursor, old_visual))
Bram Moolenaara1891842017-02-04 21:34:31 +01007010 inc_cursor();
7011
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007012 // Insert to replace the deleted text with the pasted text.
Bram Moolenaara1891842017-02-04 21:34:31 +01007013 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7014 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007015 else if (!checkclearopq(cap->oap))
7016 {
7017 switch (cap->cmdchar)
7018 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007019 case 'A': // "A"ppend after the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007020 set_cursor_for_append_to_line();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021 break;
7022
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007023 case 'I': // "I"nsert before the first non-blank
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007024 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
7025 beginline(BL_WHITE);
7026 else
7027 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007028 break;
7029
Bram Moolenaara1891842017-02-04 21:34:31 +01007030 case K_PS:
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007031 // Bracketed paste works like "a"ppend, unless the cursor is in
7032 // the first column, then it inserts.
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007033 if (curwin->w_cursor.col == 0)
7034 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007035 // FALLTHROUGH
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007036
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007037 case 'a': // "a"ppend is like "i"nsert on the next character.
7038 // increment coladd when in virtual space, increment the
7039 // column otherwise, also to append after an unprintable char
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040 if (virtual_active()
7041 && (curwin->w_cursor.coladd > 0
7042 || *ml_get_cursor() == NUL
7043 || *ml_get_cursor() == TAB))
7044 curwin->w_cursor.coladd++;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01007045 else if (*ml_get_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007046 inc_cursor();
7047 break;
7048 }
7049
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
7051 {
7052 int save_State = State;
7053
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007054 // Pretend Insert mode here to allow the cursor on the
7055 // character past the end of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056 State = INSERT;
7057 coladvance(getviscol());
7058 State = save_State;
7059 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060
7061 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7062 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01007063 else if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007064 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01007065 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066}
7067
7068/*
7069 * Invoke edit() and take care of "restart_edit" and the return value.
7070 */
7071 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007072invoke_edit(
7073 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007074 int repl, // "r" or "gr" command
Bram Moolenaar9b578142016-01-30 19:39:49 +01007075 int cmd,
7076 int startln)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077{
7078 int restart_edit_save = 0;
7079
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007080 // Complicated: When the user types "a<C-O>a" we don't want to do Insert
7081 // mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
7082 // it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007083 if (repl || !stuff_empty())
7084 restart_edit_save = restart_edit;
7085 else
7086 restart_edit_save = 0;
7087
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007088 // Always reset "restart_edit", this is not a restarted edit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089 restart_edit = 0;
7090
7091 if (edit(cmd, startln, cap->count1))
7092 cap->retval |= CA_COMMAND_BUSY;
7093
7094 if (restart_edit == 0)
7095 restart_edit = restart_edit_save;
7096}
7097
7098#ifdef FEAT_TEXTOBJ
7099/*
7100 * "a" or "i" while an operator is pending or in Visual mode: object motion.
7101 */
7102 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007103nv_object(
7104 cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007105{
7106 int flag;
7107 int include;
7108 char_u *mps_save;
7109
7110 if (cap->cmdchar == 'i')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007111 include = FALSE; // "ix" = inner object: exclude white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007112 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007113 include = TRUE; // "ax" = an object: include white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007114
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007115 // Make sure (), [], {} and <> are in 'matchpairs'
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 mps_save = curbuf->b_p_mps;
7117 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
7118
7119 switch (cap->nchar)
7120 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007121 case 'w': // "aw" = a word
Bram Moolenaar071d4272004-06-13 20:20:40 +00007122 flag = current_word(cap->oap, cap->count1, include, FALSE);
7123 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007124 case 'W': // "aW" = a WORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007125 flag = current_word(cap->oap, cap->count1, include, TRUE);
7126 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007127 case 'b': // "ab" = a braces block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007128 case '(':
7129 case ')':
7130 flag = current_block(cap->oap, cap->count1, include, '(', ')');
7131 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007132 case 'B': // "aB" = a Brackets block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007133 case '{':
7134 case '}':
7135 flag = current_block(cap->oap, cap->count1, include, '{', '}');
7136 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007137 case '[': // "a[" = a [] block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138 case ']':
7139 flag = current_block(cap->oap, cap->count1, include, '[', ']');
7140 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007141 case '<': // "a<" = a <> block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007142 case '>':
7143 flag = current_block(cap->oap, cap->count1, include, '<', '>');
7144 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007145 case 't': // "at" = a tag block (xml and html)
7146 // Do not adjust oap->end in do_pending_operator()
7147 // otherwise there are different results for 'dit'
7148 // (note leading whitespace in last line):
7149 // 1) <b> 2) <b>
7150 // foobar foobar
7151 // </b> </b>
Bram Moolenaarb6c27352015-03-05 19:57:49 +01007152 cap->retval |= CA_NO_ADJ_OP_END;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00007153 flag = current_tagblock(cap->oap, cap->count1, include);
7154 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007155 case 'p': // "ap" = a paragraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156 flag = current_par(cap->oap, cap->count1, include, 'p');
7157 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007158 case 's': // "as" = a sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159 flag = current_sent(cap->oap, cap->count1, include);
7160 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007161 case '"': // "a"" = a double quoted string
7162 case '\'': // "a'" = a single quoted string
7163 case '`': // "a`" = a backtick quoted string
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007164 flag = current_quote(cap->oap, cap->count1, include,
7165 cap->nchar);
7166 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007167#if 0 // TODO
7168 case 'S': // "aS" = a section
7169 case 'f': // "af" = a filename
7170 case 'u': // "au" = a URL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171#endif
7172 default:
7173 flag = FAIL;
7174 break;
7175 }
7176
7177 curbuf->b_p_mps = mps_save;
7178 if (flag == FAIL)
7179 clearopbeep(cap->oap);
7180 adjust_cursor_col();
7181 curwin->w_set_curswant = TRUE;
7182}
7183#endif
7184
7185/*
7186 * "q" command: Start/stop recording.
7187 * "q:", "q/", "q?": edit command-line in command-line window.
7188 */
7189 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007190nv_record(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007191{
7192 if (cap->oap->op_type == OP_FORMAT)
7193 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007194 // "gqq" is the same as "gqgq": format line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007195 cap->cmdchar = 'g';
7196 cap->nchar = 'q';
7197 nv_operator(cap);
7198 }
7199 else if (!checkclearop(cap->oap))
7200 {
7201#ifdef FEAT_CMDWIN
7202 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
7203 {
7204 stuffcharReadbuff(cap->nchar);
7205 stuffcharReadbuff(K_CMDWIN);
7206 }
7207 else
7208#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007209 // (stop) recording into a named register, unless executing a
7210 // register
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02007211 if (reg_executing == 0 && do_record(cap->nchar) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007212 clearopbeep(cap->oap);
7213 }
7214}
7215
7216/*
7217 * Handle the "@r" command.
7218 */
7219 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007220nv_at(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007221{
7222 if (checkclearop(cap->oap))
7223 return;
7224#ifdef FEAT_EVAL
7225 if (cap->nchar == '=')
7226 {
7227 if (get_expr_register() == NUL)
7228 return;
7229 }
7230#endif
7231 while (cap->count1-- && !got_int)
7232 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00007233 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234 {
7235 clearopbeep(cap->oap);
7236 break;
7237 }
7238 line_breakcheck();
7239 }
7240}
7241
7242/*
7243 * Handle the CTRL-U and CTRL-D commands.
7244 */
7245 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007246nv_halfpage(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247{
7248 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
7249 || (cap->cmdchar == Ctrl_D
7250 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
7251 clearopbeep(cap->oap);
7252 else if (!checkclearop(cap->oap))
7253 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
7254}
7255
7256/*
7257 * Handle "J" or "gJ" command.
7258 */
7259 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007260nv_join(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007261{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007262 if (VIsual_active) // join the visual lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00007263 nv_operator(cap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007264 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265 {
7266 if (cap->count0 <= 1)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007267 cap->count0 = 2; // default for join is two lines!
Bram Moolenaar071d4272004-06-13 20:20:40 +00007268 if (curwin->w_cursor.lnum + cap->count0 - 1 >
7269 curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007270 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007271 // can't join when on the last line
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007272 if (cap->count0 <= 2)
7273 {
7274 clearopbeep(cap->oap);
7275 return;
7276 }
7277 cap->count0 = curbuf->b_ml.ml_line_count
7278 - curwin->w_cursor.lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007279 }
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007280
7281 prep_redo(cap->oap->regname, cap->count0,
7282 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
7283 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007284 }
7285}
7286
7287/*
7288 * "P", "gP", "p" and "gp" commands.
7289 */
7290 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007291nv_put(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007292{
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007293 nv_put_opt(cap, FALSE);
7294}
7295
7296/*
7297 * "P", "gP", "p" and "gp" commands.
7298 * "fix_indent" is TRUE for "[p", "[P", "]p" and "]P".
7299 */
7300 static void
7301nv_put_opt(cmdarg_T *cap, int fix_indent)
7302{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007303 int regname = 0;
7304 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007305 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007306 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007307 int dir;
7308 int flags = 0;
7309
7310 if (cap->oap->op_type != OP_NOP)
7311 {
7312#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007313 // "dp" is ":diffput"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
7315 {
7316 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007317 nv_diffgetput(TRUE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007318 }
7319 else
7320#endif
7321 clearopbeep(cap->oap);
7322 }
Bram Moolenaarf2732452018-06-03 14:47:35 +02007323#ifdef FEAT_JOB_CHANNEL
7324 else if (bt_prompt(curbuf) && !prompt_curpos_editable())
7325 {
7326 clearopbeep(cap->oap);
7327 }
7328#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007329 else
7330 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007331 if (fix_indent)
7332 {
7333 dir = (cap->cmdchar == ']' && cap->nchar == 'p')
7334 ? FORWARD : BACKWARD;
7335 flags |= PUT_FIXINDENT;
7336 }
7337 else
7338 dir = (cap->cmdchar == 'P'
7339 || (cap->cmdchar == 'g' && cap->nchar == 'P'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007340 ? BACKWARD : FORWARD;
7341 prep_redo_cmd(cap);
7342 if (cap->cmdchar == 'g')
7343 flags |= PUT_CURSEND;
7344
Bram Moolenaar071d4272004-06-13 20:20:40 +00007345 if (VIsual_active)
7346 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007347 // Putting in Visual mode: The put text replaces the selected
7348 // text. First delete the selected text, then put the new text.
7349 // Need to save and restore the registers that the delete
7350 // overwrites if the old contents is being put.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007351 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007352 regname = cap->oap->regname;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007353#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007354 adjust_clip_reg(&regname);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007355#endif
Bram Moolenaar7d311c52014-02-22 23:49:35 +01007356 if (regname == 0 || regname == '"'
Bram Moolenaarba6e8582012-12-12 18:20:32 +01007357 || VIM_ISDIGIT(regname) || regname == '-'
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007358#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007359 || (clip_unnamed && (regname == '*' || regname == '+'))
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007360#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007361
7362 )
7363 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007364 // The delete is going to overwrite the register we want to
7365 // put, save it first.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007366 reg1 = get_register(regname, TRUE);
7367 }
7368
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007369 // Now delete the selected text. Avoid messages here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007370 cap->cmdchar = 'd';
7371 cap->nchar = NUL;
7372 cap->oap->regname = NUL;
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007373 ++msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374 nv_operator(cap);
7375 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007376 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007377 --msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007378
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007379 // delete PUT_LINE_BACKWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007380 cap->oap->regname = regname;
7381
7382 if (reg1 != NULL)
7383 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007384 // Delete probably changed the register we want to put, save
7385 // it first. Then put back what was there before the delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007386 reg2 = get_register(regname, FALSE);
7387 put_register(regname, reg1);
7388 }
7389
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007390 // When deleted a linewise Visual area, put the register as
7391 // lines to avoid it joined with the next line. When deletion was
7392 // characterwise, split a line when putting lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393 if (VIsual_mode == 'V')
7394 flags |= PUT_LINE;
7395 else if (VIsual_mode == 'v')
7396 flags |= PUT_LINE_SPLIT;
7397 if (VIsual_mode == Ctrl_V && dir == FORWARD)
7398 flags |= PUT_LINE_FORWARD;
7399 dir = BACKWARD;
7400 if ((VIsual_mode != 'V'
7401 && curwin->w_cursor.col < curbuf->b_op_start.col)
7402 || (VIsual_mode == 'V'
7403 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007404 // cursor is at the end of the line or end of file, put
7405 // forward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007406 dir = FORWARD;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007407 // May have been reset in do_put().
Bram Moolenaarec11aef2013-09-22 15:23:44 +02007408 VIsual_active = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007410 do_put(cap->oap->regname, dir, cap->count1, flags);
7411
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007412 // If a register was saved, put it back now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007413 if (reg2 != NULL)
7414 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007415
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007416 // What to reselect with "gv"? Selecting the just put text seems to
7417 // be the most useful, since the original text was removed.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007418 if (was_visual)
7419 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007420 curbuf->b_visual.vi_start = curbuf->b_op_start;
7421 curbuf->b_visual.vi_end = curbuf->b_op_end;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007422 // need to adjust cursor position
Bram Moolenaard29c6fe2015-11-19 20:11:54 +01007423 if (*p_sel == 'e')
7424 inc(&curbuf->b_visual.vi_end);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007425 }
7426
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007427 // When all lines were selected and deleted do_put() leaves an empty
7428 // line that needs to be deleted now.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007429 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007430 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02007431 ml_delete_flags(curbuf->b_ml.ml_line_count, ML_DEL_MESSAGE);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007432 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1);
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007433
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007434 // If the cursor was in that line, move it to the end of the last
7435 // line.
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007436 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7437 {
7438 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7439 coladvance((colnr_T)MAXCOL);
7440 }
7441 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007442 auto_format(FALSE, TRUE);
7443 }
7444}
7445
7446/*
7447 * "o" and "O" commands.
7448 */
7449 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007450nv_open(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007451{
7452#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007453 // "do" is ":diffget"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007454 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
7455 {
7456 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007457 nv_diffgetput(FALSE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007458 }
7459 else
7460#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007461 if (VIsual_active) // switch start and end of visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00007462 v_swap_corners(cap->cmdchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007463#ifdef FEAT_JOB_CHANNEL
7464 else if (bt_prompt(curbuf))
Bram Moolenaarf2732452018-06-03 14:47:35 +02007465 clearopbeep(cap->oap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007466#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007467 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007468 n_opencmd(cap);
7469}
7470
Bram Moolenaar071d4272004-06-13 20:20:40 +00007471#ifdef FEAT_NETBEANS_INTG
7472 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007473nv_nbcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474{
7475 netbeans_keycommand(cap->nchar);
7476}
7477#endif
7478
7479#ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007480 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007481nv_drop(cmdarg_T *cap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007482{
7483 do_put('~', BACKWARD, 1L, PUT_CURSEND);
7484}
7485#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00007486
Bram Moolenaar3918c952005-03-15 22:34:55 +00007487/*
7488 * Trigger CursorHold event.
7489 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
7490 * input buffer. "did_cursorhold" is set to avoid retriggering.
7491 */
Bram Moolenaar3918c952005-03-15 22:34:55 +00007492 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007493nv_cursorhold(cmdarg_T *cap)
Bram Moolenaar3918c952005-03-15 22:34:55 +00007494{
7495 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
7496 did_cursorhold = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007497 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar3918c952005-03-15 22:34:55 +00007498}