blob: 0ab3db43004c619dab9958af6e6dc2f14b4d7aae [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 Moolenaar071d4272004-06-13 20:20:40 +000017/*
18 * The Visual area is remembered for reselection.
19 */
20static int resel_VIsual_mode = NUL; /* 'v', 'V', or Ctrl-V */
21static linenr_T resel_VIsual_line_count; /* number of lines */
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +020022static colnr_T resel_VIsual_vcol; /* nr of cols or end col */
Bram Moolenaar7d311c52014-02-22 23:49:35 +010023static int VIsual_mode_orig = NUL; /* saved Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +000024
25static int restart_VIsual_select = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000026
Bram Moolenaarf82a2d22010-12-17 18:53:01 +010027#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010028static void set_vcount_ca(cmdarg_T *cap, int *set_prevcount);
Bram Moolenaarf82a2d22010-12-17 18:53:01 +010029#endif
Bram Moolenaareae1b912019-05-09 15:12:55 +020030static int nv_compare(const void *s1, const void *s2);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010031static void op_colon(oparg_T *oap);
32static void op_function(oparg_T *oap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +010033#if defined(FEAT_MOUSE)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010034static void find_start_of_word(pos_T *);
35static void find_end_of_word(pos_T *);
36static int get_mouse_class(char_u *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000037#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010038static void prep_redo(int regname, long, int, int, int, int, int);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010039static void clearop(oparg_T *oap);
40static void clearopbeep(oparg_T *oap);
41static void unshift_special(cmdarg_T *cap);
42static void may_clear_cmdline(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000043#ifdef FEAT_CMDL_INFO
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010044static void del_from_showcmd(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000045#endif
46
47/*
48 * nv_*(): functions called to handle Normal and Visual mode commands.
49 * n_*(): functions called to handle Normal mode commands.
50 * v_*(): functions called to handle Visual mode commands.
51 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010052static void nv_ignore(cmdarg_T *cap);
53static void nv_nop(cmdarg_T *cap);
54static void nv_error(cmdarg_T *cap);
55static void nv_help(cmdarg_T *cap);
56static void nv_addsub(cmdarg_T *cap);
57static void nv_page(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000058#ifdef FEAT_MOUSE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010059static void nv_mousescroll(cmdarg_T *cap);
60static void nv_mouse(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000061#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010062static void nv_scroll_line(cmdarg_T *cap);
63static void nv_zet(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000064#ifdef FEAT_GUI
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010065static void nv_ver_scrollbar(cmdarg_T *cap);
66static void nv_hor_scrollbar(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000067#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +000068#ifdef FEAT_GUI_TABLINE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010069static void nv_tabline(cmdarg_T *cap);
70static void nv_tabmenu(cmdarg_T *cap);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000071#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010072static void nv_exmode(cmdarg_T *cap);
73static void nv_colon(cmdarg_T *cap);
74static void nv_ctrlg(cmdarg_T *cap);
75static void nv_ctrlh(cmdarg_T *cap);
76static void nv_clear(cmdarg_T *cap);
77static void nv_ctrlo(cmdarg_T *cap);
78static void nv_hat(cmdarg_T *cap);
79static void nv_Zet(cmdarg_T *cap);
80static void nv_ident(cmdarg_T *cap);
81static void nv_tagpop(cmdarg_T *cap);
82static void nv_scroll(cmdarg_T *cap);
83static void nv_right(cmdarg_T *cap);
84static void nv_left(cmdarg_T *cap);
85static void nv_up(cmdarg_T *cap);
86static void nv_down(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010087static void nv_end(cmdarg_T *cap);
88static void nv_dollar(cmdarg_T *cap);
89static void nv_search(cmdarg_T *cap);
90static void nv_next(cmdarg_T *cap);
91static int normal_search(cmdarg_T *cap, int dir, char_u *pat, int opt);
92static void nv_csearch(cmdarg_T *cap);
93static void nv_brackets(cmdarg_T *cap);
94static void nv_percent(cmdarg_T *cap);
95static void nv_brace(cmdarg_T *cap);
96static void nv_mark(cmdarg_T *cap);
97static void nv_findpar(cmdarg_T *cap);
98static void nv_undo(cmdarg_T *cap);
99static void nv_kundo(cmdarg_T *cap);
100static void nv_Replace(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100101static void nv_replace(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100102static void nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos);
103static void v_visop(cmdarg_T *cap);
104static void nv_subst(cmdarg_T *cap);
105static void nv_abbrev(cmdarg_T *cap);
106static void nv_optrans(cmdarg_T *cap);
107static void nv_gomark(cmdarg_T *cap);
108static void nv_pcmark(cmdarg_T *cap);
109static void nv_regname(cmdarg_T *cap);
110static void nv_visual(cmdarg_T *cap);
111static void n_start_visual_mode(int c);
112static void nv_window(cmdarg_T *cap);
113static void nv_suspend(cmdarg_T *cap);
114static void nv_g_cmd(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100115static void nv_dot(cmdarg_T *cap);
116static void nv_redo(cmdarg_T *cap);
117static void nv_Undo(cmdarg_T *cap);
118static void nv_tilde(cmdarg_T *cap);
119static void nv_operator(cmdarg_T *cap);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +0000120#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100121static void set_op_var(int optype);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +0000122#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100123static void nv_lineop(cmdarg_T *cap);
124static void nv_home(cmdarg_T *cap);
125static void nv_pipe(cmdarg_T *cap);
126static void nv_bck_word(cmdarg_T *cap);
127static void nv_wordcmd(cmdarg_T *cap);
128static void nv_beginline(cmdarg_T *cap);
129static void adjust_cursor(oparg_T *oap);
130static void adjust_for_sel(cmdarg_T *cap);
131static int unadjust_for_sel(void);
132static void nv_select(cmdarg_T *cap);
133static void nv_goto(cmdarg_T *cap);
134static void nv_normal(cmdarg_T *cap);
135static void nv_esc(cmdarg_T *oap);
136static void nv_edit(cmdarg_T *cap);
137static void invoke_edit(cmdarg_T *cap, int repl, int cmd, int startln);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138#ifdef FEAT_TEXTOBJ
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100139static void nv_object(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100141static void nv_record(cmdarg_T *cap);
142static void nv_at(cmdarg_T *cap);
143static void nv_halfpage(cmdarg_T *cap);
144static void nv_join(cmdarg_T *cap);
145static void nv_put(cmdarg_T *cap);
Bram Moolenaar0ab190c2019-05-23 23:27:36 +0200146static void nv_put_opt(cmdarg_T *cap, int fix_indent);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100147static void nv_open(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100149static void nv_nbcmd(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150#endif
151#ifdef FEAT_DND
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100152static void nv_drop(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100154static void nv_cursorhold(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100155static void get_op_vcol(oparg_T *oap, colnr_T col, int initial);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156
Bram Moolenaar9fd01c62008-11-01 12:52:38 +0000157static char *e_noident = N_("E349: No identifier under cursor");
158
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159/*
160 * Function to be called for a Normal or Visual mode command.
161 * The argument is a cmdarg_T.
162 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100163typedef void (*nv_func_T)(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164
165/* Values for cmd_flags. */
166#define NV_NCH 0x01 /* may need to get a second char */
167#define NV_NCH_NOP (0x02|NV_NCH) /* get second char when no operator pending */
168#define NV_NCH_ALW (0x04|NV_NCH) /* always get a second char */
169#define NV_LANG 0x08 /* second char needs language adjustment */
170
171#define NV_SS 0x10 /* may start selection */
172#define NV_SSS 0x20 /* may start selection with shift modifier */
173#define NV_STS 0x40 /* may stop selection without shift modif. */
174#define NV_RL 0x80 /* 'rightleft' modifies command */
175#define NV_KEEPREG 0x100 /* don't clear regname */
176#define NV_NCW 0x200 /* not allowed in command-line window */
177
178/*
179 * Generally speaking, every Normal mode command should either clear any
180 * pending operator (with *clearop*()), or set the motion type variable
181 * oap->motion_type.
182 *
183 * When a cursor motion command is made, it is marked as being a character or
184 * line oriented motion. Then, if an operator is in effect, the operation
185 * becomes character or line oriented accordingly.
186 */
187
188/*
189 * This table contains one entry for every Normal or Visual mode command.
190 * The order doesn't matter, init_normal_cmds() will create a sorted index.
191 * It is faster when all keys from zero to '~' are present.
192 */
193static const struct nv_cmd
194{
195 int cmd_char; /* (first) command character */
196 nv_func_T cmd_func; /* function for this command */
197 short_u cmd_flags; /* NV_ flags */
198 short cmd_arg; /* value for ca.arg */
199} nv_cmds[] =
200{
201 {NUL, nv_error, 0, 0},
202 {Ctrl_A, nv_addsub, 0, 0},
203 {Ctrl_B, nv_page, NV_STS, BACKWARD},
204 {Ctrl_C, nv_esc, 0, TRUE},
205 {Ctrl_D, nv_halfpage, 0, 0},
206 {Ctrl_E, nv_scroll_line, 0, TRUE},
207 {Ctrl_F, nv_page, NV_STS, FORWARD},
208 {Ctrl_G, nv_ctrlg, 0, 0},
209 {Ctrl_H, nv_ctrlh, 0, 0},
210 {Ctrl_I, nv_pcmark, 0, 0},
211 {NL, nv_down, 0, FALSE},
212 {Ctrl_K, nv_error, 0, 0},
213 {Ctrl_L, nv_clear, 0, 0},
Bram Moolenaar2c519cf2019-03-21 21:45:34 +0100214 {CAR, nv_down, 0, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 {Ctrl_N, nv_down, NV_STS, FALSE},
216 {Ctrl_O, nv_ctrlo, 0, 0},
217 {Ctrl_P, nv_up, NV_STS, FALSE},
Bram Moolenaardf177f62005-02-22 08:39:57 +0000218 {Ctrl_Q, nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 {Ctrl_R, nv_redo, 0, 0},
220 {Ctrl_S, nv_ignore, 0, 0},
221 {Ctrl_T, nv_tagpop, NV_NCW, 0},
222 {Ctrl_U, nv_halfpage, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223 {Ctrl_V, nv_visual, 0, FALSE},
224 {'V', nv_visual, 0, FALSE},
225 {'v', nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 {Ctrl_W, nv_window, 0, 0},
227 {Ctrl_X, nv_addsub, 0, 0},
228 {Ctrl_Y, nv_scroll_line, 0, FALSE},
229 {Ctrl_Z, nv_suspend, 0, 0},
230 {ESC, nv_esc, 0, FALSE},
231 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0},
232 {Ctrl_RSB, nv_ident, NV_NCW, 0},
233 {Ctrl_HAT, nv_hat, NV_NCW, 0},
234 {Ctrl__, nv_error, 0, 0},
235 {' ', nv_right, 0, 0},
236 {'!', nv_operator, 0, 0},
237 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0},
238 {'#', nv_ident, 0, 0},
239 {'$', nv_dollar, 0, 0},
240 {'%', nv_percent, 0, 0},
241 {'&', nv_optrans, 0, 0},
242 {'\'', nv_gomark, NV_NCH_ALW, TRUE},
243 {'(', nv_brace, 0, BACKWARD},
244 {')', nv_brace, 0, FORWARD},
245 {'*', nv_ident, 0, 0},
246 {'+', nv_down, 0, TRUE},
247 {',', nv_csearch, 0, TRUE},
248 {'-', nv_up, 0, TRUE},
249 {'.', nv_dot, NV_KEEPREG, 0},
250 {'/', nv_search, 0, FALSE},
251 {'0', nv_beginline, 0, 0},
252 {'1', nv_ignore, 0, 0},
253 {'2', nv_ignore, 0, 0},
254 {'3', nv_ignore, 0, 0},
255 {'4', nv_ignore, 0, 0},
256 {'5', nv_ignore, 0, 0},
257 {'6', nv_ignore, 0, 0},
258 {'7', nv_ignore, 0, 0},
259 {'8', nv_ignore, 0, 0},
260 {'9', nv_ignore, 0, 0},
261 {':', nv_colon, 0, 0},
262 {';', nv_csearch, 0, FALSE},
263 {'<', nv_operator, NV_RL, 0},
264 {'=', nv_operator, 0, 0},
265 {'>', nv_operator, NV_RL, 0},
266 {'?', nv_search, 0, FALSE},
267 {'@', nv_at, NV_NCH_NOP, FALSE},
268 {'A', nv_edit, 0, 0},
269 {'B', nv_bck_word, 0, 1},
270 {'C', nv_abbrev, NV_KEEPREG, 0},
271 {'D', nv_abbrev, NV_KEEPREG, 0},
272 {'E', nv_wordcmd, 0, TRUE},
273 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
274 {'G', nv_goto, 0, TRUE},
275 {'H', nv_scroll, 0, 0},
276 {'I', nv_edit, 0, 0},
277 {'J', nv_join, 0, 0},
278 {'K', nv_ident, 0, 0},
279 {'L', nv_scroll, 0, 0},
280 {'M', nv_scroll, 0, 0},
281 {'N', nv_next, 0, SEARCH_REV},
282 {'O', nv_open, 0, 0},
283 {'P', nv_put, 0, 0},
284 {'Q', nv_exmode, NV_NCW, 0},
285 {'R', nv_Replace, 0, FALSE},
286 {'S', nv_subst, NV_KEEPREG, 0},
287 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
288 {'U', nv_Undo, 0, 0},
289 {'W', nv_wordcmd, 0, TRUE},
290 {'X', nv_abbrev, NV_KEEPREG, 0},
291 {'Y', nv_abbrev, NV_KEEPREG, 0},
292 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0},
293 {'[', nv_brackets, NV_NCH_ALW, BACKWARD},
294 {'\\', nv_error, 0, 0},
295 {']', nv_brackets, NV_NCH_ALW, FORWARD},
296 {'^', nv_beginline, 0, BL_WHITE | BL_FIX},
297 {'_', nv_lineop, 0, 0},
298 {'`', nv_gomark, NV_NCH_ALW, FALSE},
299 {'a', nv_edit, NV_NCH, 0},
300 {'b', nv_bck_word, 0, 0},
301 {'c', nv_operator, 0, 0},
302 {'d', nv_operator, 0, 0},
303 {'e', nv_wordcmd, 0, FALSE},
304 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
305 {'g', nv_g_cmd, NV_NCH_ALW, FALSE},
306 {'h', nv_left, NV_RL, 0},
307 {'i', nv_edit, NV_NCH, 0},
308 {'j', nv_down, 0, FALSE},
309 {'k', nv_up, 0, FALSE},
310 {'l', nv_right, NV_RL, 0},
311 {'m', nv_mark, NV_NCH_NOP, 0},
312 {'n', nv_next, 0, 0},
313 {'o', nv_open, 0, 0},
314 {'p', nv_put, 0, 0},
315 {'q', nv_record, NV_NCH, 0},
316 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0},
317 {'s', nv_subst, NV_KEEPREG, 0},
318 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
319 {'u', nv_undo, 0, 0},
320 {'w', nv_wordcmd, 0, FALSE},
321 {'x', nv_abbrev, NV_KEEPREG, 0},
322 {'y', nv_operator, 0, 0},
323 {'z', nv_zet, NV_NCH_ALW, 0},
324 {'{', nv_findpar, 0, BACKWARD},
325 {'|', nv_pipe, 0, 0},
326 {'}', nv_findpar, 0, FORWARD},
327 {'~', nv_tilde, 0, 0},
328
329 /* pound sign */
330 {POUND, nv_ident, 0, 0},
331#ifdef FEAT_MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200332 {K_MOUSEUP, nv_mousescroll, 0, MSCR_UP},
333 {K_MOUSEDOWN, nv_mousescroll, 0, MSCR_DOWN},
334 {K_MOUSELEFT, nv_mousescroll, 0, MSCR_LEFT},
335 {K_MOUSERIGHT, nv_mousescroll, 0, MSCR_RIGHT},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 {K_LEFTMOUSE, nv_mouse, 0, 0},
337 {K_LEFTMOUSE_NM, nv_mouse, 0, 0},
338 {K_LEFTDRAG, nv_mouse, 0, 0},
339 {K_LEFTRELEASE, nv_mouse, 0, 0},
340 {K_LEFTRELEASE_NM, nv_mouse, 0, 0},
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100341 {K_MOUSEMOVE, nv_mouse, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 {K_MIDDLEMOUSE, nv_mouse, 0, 0},
343 {K_MIDDLEDRAG, nv_mouse, 0, 0},
344 {K_MIDDLERELEASE, nv_mouse, 0, 0},
345 {K_RIGHTMOUSE, nv_mouse, 0, 0},
346 {K_RIGHTDRAG, nv_mouse, 0, 0},
347 {K_RIGHTRELEASE, nv_mouse, 0, 0},
348 {K_X1MOUSE, nv_mouse, 0, 0},
349 {K_X1DRAG, nv_mouse, 0, 0},
350 {K_X1RELEASE, nv_mouse, 0, 0},
351 {K_X2MOUSE, nv_mouse, 0, 0},
352 {K_X2DRAG, nv_mouse, 0, 0},
353 {K_X2RELEASE, nv_mouse, 0, 0},
354#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000355 {K_IGNORE, nv_ignore, NV_KEEPREG, 0},
Bram Moolenaarebefac62005-12-28 22:39:57 +0000356 {K_NOP, nv_nop, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357 {K_INS, nv_edit, 0, 0},
358 {K_KINS, nv_edit, 0, 0},
359 {K_BS, nv_ctrlh, 0, 0},
360 {K_UP, nv_up, NV_SSS|NV_STS, FALSE},
361 {K_S_UP, nv_page, NV_SS, BACKWARD},
362 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE},
363 {K_S_DOWN, nv_page, NV_SS, FORWARD},
364 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0},
365 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0},
366 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1},
367 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0},
368 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE},
369 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE},
370 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
371 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
372 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
373 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
374 {K_END, nv_end, NV_SSS|NV_STS, FALSE},
375 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 {K_S_END, nv_end, NV_SS, FALSE},
377 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE},
378 {K_HOME, nv_home, NV_SSS|NV_STS, 0},
379 {K_KHOME, nv_home, NV_SSS|NV_STS, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 {K_S_HOME, nv_home, NV_SS, 0},
381 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE},
382 {K_DEL, nv_abbrev, 0, 0},
383 {K_KDEL, nv_abbrev, 0, 0},
384 {K_UNDO, nv_kundo, 0, 0},
385 {K_HELP, nv_help, NV_NCW, 0},
386 {K_F1, nv_help, NV_NCW, 0},
387 {K_XF1, nv_help, NV_NCW, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 {K_SELECT, nv_select, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389#ifdef FEAT_GUI
390 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0},
391 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0},
392#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000393#ifdef FEAT_GUI_TABLINE
394 {K_TABLINE, nv_tabline, 0, 0},
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000395 {K_TABMENU, nv_tabmenu, 0, 0},
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000396#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397#ifdef FEAT_NETBEANS_INTG
398 {K_F21, nv_nbcmd, NV_NCH_ALW, 0},
399#endif
400#ifdef FEAT_DND
401 {K_DROP, nv_drop, NV_STS, 0},
402#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000403 {K_CURSORHOLD, nv_cursorhold, NV_KEEPREG, 0},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100404 {K_PS, nv_edit, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405};
406
407/* Number of commands in nv_cmds[]. */
408#define NV_CMDS_SIZE (sizeof(nv_cmds) / sizeof(struct nv_cmd))
409
410/* Sorted index of commands in nv_cmds[]. */
411static short nv_cmd_idx[NV_CMDS_SIZE];
412
413/* The highest index for which
414 * nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char] */
415static int nv_max_linear;
416
417/*
418 * Compare functions for qsort() below, that checks the command character
419 * through the index in nv_cmd_idx[].
420 */
421 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100422nv_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423{
424 int c1, c2;
425
426 /* The commands are sorted on absolute value. */
427 c1 = nv_cmds[*(const short *)s1].cmd_char;
428 c2 = nv_cmds[*(const short *)s2].cmd_char;
429 if (c1 < 0)
430 c1 = -c1;
431 if (c2 < 0)
432 c2 = -c2;
433 return c1 - c2;
434}
435
436/*
437 * Initialize the nv_cmd_idx[] table.
438 */
439 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100440init_normal_cmds(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441{
442 int i;
443
444 /* Fill the index table with a one to one relation. */
Bram Moolenaar78a15312009-05-15 19:33:18 +0000445 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446 nv_cmd_idx[i] = i;
447
448 /* Sort the commands by the command character. */
449 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
450
451 /* Find the first entry that can't be indexed by the command character. */
Bram Moolenaar78a15312009-05-15 19:33:18 +0000452 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char)
454 break;
455 nv_max_linear = i - 1;
456}
457
458/*
459 * Search for a command in the commands table.
460 * Returns -1 for invalid command.
461 */
462 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100463find_command(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464{
465 int i;
466 int idx;
467 int top, bot;
468 int c;
469
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 /* A multi-byte character is never a command. */
471 if (cmdchar >= 0x100)
472 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473
474 /* We use the absolute value of the character. Special keys have a
475 * negative value, but are sorted on their absolute value. */
476 if (cmdchar < 0)
477 cmdchar = -cmdchar;
478
479 /* If the character is in the first part: The character is the index into
480 * nv_cmd_idx[]. */
481 if (cmdchar <= nv_max_linear)
482 return nv_cmd_idx[cmdchar];
483
484 /* Perform a binary search. */
485 bot = nv_max_linear + 1;
486 top = NV_CMDS_SIZE - 1;
487 idx = -1;
488 while (bot <= top)
489 {
490 i = (top + bot) / 2;
491 c = nv_cmds[nv_cmd_idx[i]].cmd_char;
492 if (c < 0)
493 c = -c;
494 if (cmdchar == c)
495 {
496 idx = nv_cmd_idx[i];
497 break;
498 }
499 if (cmdchar > c)
500 bot = i + 1;
501 else
502 top = i - 1;
503 }
504 return idx;
505}
506
507/*
508 * Execute a command in Normal mode.
509 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100511normal_cmd(
512 oparg_T *oap,
513 int toplevel UNUSED) /* TRUE when called from main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 cmdarg_T ca; /* command arguments */
516 int c;
517 int ctrl_w = FALSE; /* got CTRL-W command */
518 int old_col = curwin->w_curswant;
519#ifdef FEAT_CMDL_INFO
520 int need_flushbuf; /* need to call out_flush() */
521#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 pos_T old_pos; /* cursor position before command */
523 int mapped_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524 static int old_mapped_len = 0;
525 int idx;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000526#ifdef FEAT_EVAL
527 int set_prevcount = FALSE;
528#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529
530 vim_memset(&ca, 0, sizeof(ca)); /* also resets ca.retval */
531 ca.oap = oap;
Bram Moolenaara983fe92008-07-31 20:04:27 +0000532
533 /* Use a count remembered from before entering an operator. After typing
534 * "3d" we return from normal_cmd() and come back here, the "3" is
535 * remembered in "opcount". */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 ca.opcount = opcount;
537
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 /*
539 * If there is an operator pending, then the command we take this time
540 * will terminate it. Finish_op tells us to finish the operation before
541 * returning this time (unless the operation was cancelled).
542 */
543#ifdef CURSOR_SHAPE
544 c = finish_op;
545#endif
546 finish_op = (oap->op_type != OP_NOP);
547#ifdef CURSOR_SHAPE
548 if (finish_op != c)
549 {
550 ui_cursor_shape(); /* may show different cursor shape */
551# ifdef FEAT_MOUSESHAPE
552 update_mouseshape(-1);
553# endif
554 }
555#endif
556
Bram Moolenaara983fe92008-07-31 20:04:27 +0000557 /* When not finishing an operator and no register name typed, reset the
558 * count. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 if (!finish_op && !oap->regname)
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000560 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 ca.opcount = 0;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000562#ifdef FEAT_EVAL
563 set_prevcount = TRUE;
564#endif
565 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566
Bram Moolenaara983fe92008-07-31 20:04:27 +0000567 /* Restore counts from before receiving K_CURSORHOLD. This means after
568 * typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not
569 * "3 * 2". */
570 if (oap->prev_opcount > 0 || oap->prev_count0 > 0)
571 {
572 ca.opcount = oap->prev_opcount;
573 ca.count0 = oap->prev_count0;
574 oap->prev_opcount = 0;
575 oap->prev_count0 = 0;
576 }
Bram Moolenaara983fe92008-07-31 20:04:27 +0000577
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 mapped_len = typebuf_maplen();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579
580 State = NORMAL_BUSY;
581#ifdef USE_ON_FLY_SCROLL
582 dont_scroll = FALSE; /* allow scrolling here */
583#endif
584
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100585#ifdef FEAT_EVAL
586 /* Set v:count here, when called from main() and not a stuffed
587 * command, so that v:count can be used in an expression mapping
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100588 * when there is no count. Do set it for redo. */
589 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100590 set_vcount_ca(&ca, &set_prevcount);
591#endif
592
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 /*
594 * Get the command character from the user.
595 */
596 c = safe_vgetc();
Bram Moolenaar25281632016-01-21 23:32:32 +0100597 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598
599 /*
600 * If a mapping was started in Visual or Select mode, remember the length
601 * of the mapping. This is used below to not return to Insert mode for as
602 * long as the mapping is being executed.
603 */
604 if (restart_edit == 0)
605 old_mapped_len = 0;
606 else if (old_mapped_len
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000607 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 old_mapped_len = typebuf_maplen();
609
610 if (c == NUL)
611 c = K_ZERO;
612
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 /*
614 * In Select mode, typed text replaces the selection.
615 */
616 if (VIsual_active
617 && VIsual_select
618 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
619 {
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000620 /* Fake a "c"hange command. When "restart_edit" is set (e.g., because
621 * 'insertmode' is set) fake a "d"elete command, Insert mode will
622 * restart automatically.
Bram Moolenaarcf8e7d12006-12-05 20:43:17 +0000623 * Insert the typed character in the typeahead buffer, so that it can
624 * be mapped in Insert mode. Required for ":lmap" to work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +0000625 ins_char_typebuf(c);
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000626 if (restart_edit != 0)
627 c = 'd';
628 else
629 c = 'c';
Bram Moolenaarb388adb2006-02-28 23:50:17 +0000630 msg_nowait = TRUE; /* don't delay going to insert mode */
Bram Moolenaar9bad29d2013-05-21 12:46:02 +0200631 old_mapped_len = 0; /* do go to Insert mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633
634#ifdef FEAT_CMDL_INFO
635 need_flushbuf = add_to_showcmd(c);
636#endif
637
638getcount:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 if (!(VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 {
641 /*
642 * Handle a count before a command and compute ca.count0.
643 * Note that '0' is a command and not the start of a count, but it's
644 * part of a count after other digits.
645 */
646 while ( (c >= '1' && c <= '9')
647 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
648 {
649 if (c == K_DEL || c == K_KDEL)
650 {
651 ca.count0 /= 10;
652#ifdef FEAT_CMDL_INFO
653 del_from_showcmd(4); /* delete the digit and ~@% */
654#endif
655 }
656 else
657 ca.count0 = ca.count0 * 10 + (c - '0');
658 if (ca.count0 < 0) /* got too large! */
659 ca.count0 = 999999999L;
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000660#ifdef FEAT_EVAL
661 /* Set v:count here, when called from main() and not a stuffed
662 * command, so that v:count can be used in an expression mapping
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100663 * right after the count. Do set it for redo. */
664 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100665 set_vcount_ca(&ca, &set_prevcount);
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000666#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 if (ctrl_w)
668 {
669 ++no_mapping;
670 ++allow_keys; /* no mapping for nchar, but keys */
671 }
672 ++no_zero_mapping; /* don't map zero here */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000673 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 --no_zero_mapping;
676 if (ctrl_w)
677 {
678 --no_mapping;
679 --allow_keys;
680 }
681#ifdef FEAT_CMDL_INFO
682 need_flushbuf |= add_to_showcmd(c);
683#endif
684 }
685
686 /*
687 * If we got CTRL-W there may be a/another count
688 */
689 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
690 {
691 ctrl_w = TRUE;
692 ca.opcount = ca.count0; /* remember first count */
693 ca.count0 = 0;
694 ++no_mapping;
695 ++allow_keys; /* no mapping for nchar, but keys */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000696 c = plain_vgetc(); /* get next character */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 --no_mapping;
699 --allow_keys;
700#ifdef FEAT_CMDL_INFO
701 need_flushbuf |= add_to_showcmd(c);
702#endif
703 goto getcount; /* jump back */
704 }
705 }
706
Bram Moolenaara983fe92008-07-31 20:04:27 +0000707 if (c == K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 {
Bram Moolenaara983fe92008-07-31 20:04:27 +0000709 /* Save the count values so that ca.opcount and ca.count0 are exactly
710 * the same when coming back here after handling K_CURSORHOLD. */
711 oap->prev_opcount = ca.opcount;
712 oap->prev_count0 = ca.count0;
713 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100714 else if (ca.opcount != 0)
Bram Moolenaara983fe92008-07-31 20:04:27 +0000715 {
716 /*
717 * If we're in the middle of an operator (including after entering a
718 * yank buffer with '"') AND we had a count before the operator, then
719 * that count overrides the current value of ca.count0.
720 * What this means effectively, is that commands like "3dw" get turned
721 * into "d3w" which makes things fall into place pretty neatly.
722 * If you give a count before AND after the operator, they are
723 * multiplied.
724 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 if (ca.count0)
726 ca.count0 *= ca.opcount;
727 else
728 ca.count0 = ca.opcount;
729 }
730
731 /*
732 * Always remember the count. It will be set to zero (on the next call,
733 * above) when there is no pending operator.
734 * When called from main(), save the count for use by the "count" built-in
735 * variable.
736 */
737 ca.opcount = ca.count0;
738 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
739
740#ifdef FEAT_EVAL
741 /*
742 * Only set v:count when called from main() and not a stuffed command.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100743 * Do set it for redo.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100745 if (toplevel && readbuf1_empty())
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000746 set_vcount(ca.count0, ca.count1, set_prevcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747#endif
748
749 /*
750 * Find the command character in the table of commands.
751 * For CTRL-W we already got nchar when looking for a count.
752 */
753 if (ctrl_w)
754 {
755 ca.nchar = c;
756 ca.cmdchar = Ctrl_W;
757 }
758 else
759 ca.cmdchar = c;
760 idx = find_command(ca.cmdchar);
761 if (idx < 0)
762 {
763 /* Not a known command: beep. */
764 clearopbeep(oap);
765 goto normal_end;
766 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +0000767
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000768 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 {
Bram Moolenaard69bd9a2014-04-29 12:15:40 +0200770 /* This command is not allowed while editing a cmdline: beep. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 clearopbeep(oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000772 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 goto normal_end;
774 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000775 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
776 goto normal_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 /*
779 * In Visual/Select mode, a few keys are handled in a special way.
780 */
781 if (VIsual_active)
782 {
783 /* when 'keymodel' contains "stopsel" may stop Select/Visual mode */
784 if (km_stopsel
785 && (nv_cmds[idx].cmd_flags & NV_STS)
786 && !(mod_mask & MOD_MASK_SHIFT))
787 {
788 end_visual_mode();
789 redraw_curbuf_later(INVERTED);
790 }
791
792 /* Keys that work different when 'keymodel' contains "startsel" */
793 if (km_startsel)
794 {
795 if (nv_cmds[idx].cmd_flags & NV_SS)
796 {
797 unshift_special(&ca);
798 idx = find_command(ca.cmdchar);
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000799 if (idx < 0)
800 {
801 /* Just in case */
802 clearopbeep(oap);
803 goto normal_end;
804 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 }
806 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
807 && (mod_mask & MOD_MASK_SHIFT))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 mod_mask &= ~MOD_MASK_SHIFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 }
810 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
812#ifdef FEAT_RIGHTLEFT
813 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
814 && (nv_cmds[idx].cmd_flags & NV_RL))
815 {
816 /* Invert horizontal movements and operations. Only when typed by the
817 * user directly, not when the result of a mapping or "x" translated
818 * to "dl". */
819 switch (ca.cmdchar)
820 {
821 case 'l': ca.cmdchar = 'h'; break;
822 case K_RIGHT: ca.cmdchar = K_LEFT; break;
823 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
824 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
825 case 'h': ca.cmdchar = 'l'; break;
826 case K_LEFT: ca.cmdchar = K_RIGHT; break;
827 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
828 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
829 case '>': ca.cmdchar = '<'; break;
830 case '<': ca.cmdchar = '>'; break;
831 }
832 idx = find_command(ca.cmdchar);
833 }
834#endif
835
836 /*
837 * Get an additional character if we need one.
838 */
839 if ((nv_cmds[idx].cmd_flags & NV_NCH)
840 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
841 && oap->op_type == OP_NOP)
842 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
843 || (ca.cmdchar == 'q'
844 && oap->op_type == OP_NOP
Bram Moolenaar0b6d9112018-05-22 20:35:17 +0200845 && reg_recording == 0
846 && reg_executing == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100848 && (oap->op_type != OP_NOP || VIsual_active))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 {
850 int *cp;
851 int repl = FALSE; /* get character for replace mode */
852 int lit = FALSE; /* get extra character literally */
853 int langmap_active = FALSE; /* using :lmap mappings */
854 int lang; /* getting a text character */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100855#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 int save_smd; /* saved value of p_smd */
857#endif
858
859 ++no_mapping;
860 ++allow_keys; /* no mapping for nchar, but allow key codes */
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +0000861 /* Don't generate a CursorHold event here, most commands can't handle
862 * it, e.g., nv_replace(), nv_csearch(). */
863 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 if (ca.cmdchar == 'g')
865 {
866 /*
867 * For 'g' get the next character now, so that we can check for
868 * "gr", "g'" and "g`".
869 */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000870 ca.nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 LANGMAP_ADJUST(ca.nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872#ifdef FEAT_CMDL_INFO
873 need_flushbuf |= add_to_showcmd(ca.nchar);
874#endif
875 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
Bram Moolenaarba2d44f2013-11-28 19:27:30 +0100876 || ca.nchar == Ctrl_BSL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 {
878 cp = &ca.extra_char; /* need to get a third character */
879 if (ca.nchar != 'r')
880 lit = TRUE; /* get it literally */
881 else
882 repl = TRUE; /* get it in replace mode */
883 }
884 else
885 cp = NULL; /* no third character needed */
886 }
887 else
888 {
889 if (ca.cmdchar == 'r') /* get it in replace mode */
890 repl = TRUE;
891 cp = &ca.nchar;
892 }
893 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
894
895 /*
896 * Get a second or third character.
897 */
898 if (cp != NULL)
899 {
900#ifdef CURSOR_SHAPE
901 if (repl)
902 {
903 State = REPLACE; /* pretend Replace mode */
904 ui_cursor_shape(); /* show different cursor shape */
905 }
906#endif
907 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
908 {
909 /* Allow mappings defined with ":lmap". */
910 --no_mapping;
911 --allow_keys;
912 if (repl)
913 State = LREPLACE;
914 else
915 State = LANGMAP;
916 langmap_active = TRUE;
917 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100918#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 save_smd = p_smd;
920 p_smd = FALSE; /* Don't let the IM code show the mode here */
921 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
922 im_set_active(TRUE);
923#endif
924
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000925 *cp = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926
927 if (langmap_active)
928 {
929 /* Undo the decrement done above */
930 ++no_mapping;
931 ++allow_keys;
932 State = NORMAL_BUSY;
933 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100934#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 if (lang)
936 {
937 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
938 im_save_status(&curbuf->b_p_iminsert);
939 im_set_active(FALSE);
940 }
941 p_smd = save_smd;
942#endif
943#ifdef CURSOR_SHAPE
944 State = NORMAL_BUSY;
945#endif
946#ifdef FEAT_CMDL_INFO
947 need_flushbuf |= add_to_showcmd(*cp);
948#endif
949
950 if (!lit)
951 {
952#ifdef FEAT_DIGRAPHS
953 /* Typing CTRL-K gets a digraph. */
954 if (*cp == Ctrl_K
955 && ((nv_cmds[idx].cmd_flags & NV_LANG)
956 || cp == &ca.extra_char)
957 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
958 {
959 c = get_digraph(FALSE);
960 if (c > 0)
961 {
962 *cp = c;
963# ifdef FEAT_CMDL_INFO
964 /* Guessing how to update showcmd here... */
965 del_from_showcmd(3);
966 need_flushbuf |= add_to_showcmd(*cp);
967# endif
968 }
969 }
970#endif
971
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 /* adjust chars > 127, except after "tTfFr" commands */
973 LANGMAP_ADJUST(*cp, !lang);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974#ifdef FEAT_RIGHTLEFT
975 /* adjust Hebrew mapped char */
976 if (p_hkmap && lang && KeyTyped)
977 *cp = hkmap(*cp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978#endif
979 }
980
981 /*
982 * When the next character is CTRL-\ a following CTRL-N means the
983 * command is aborted and we go to Normal mode.
984 */
985 if (cp == &ca.extra_char
986 && ca.nchar == Ctrl_BSL
987 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
988 {
989 ca.cmdchar = Ctrl_BSL;
990 ca.nchar = ca.extra_char;
991 idx = find_command(ca.cmdchar);
992 }
Bram Moolenaar12a753a2012-10-23 05:08:53 +0200993 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g')
Bram Moolenaarf00dc262012-10-21 03:54:33 +0200994 ca.oap->op_type = get_op_type(*cp, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 else if (*cp == Ctrl_BSL)
996 {
997 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
998
999 /* There is a busy wait here when typing "f<C-\>" and then
1000 * something different from CTRL-N. Can't be avoided. */
1001 while ((c = vpeekc()) <= 0 && towait > 0L)
1002 {
1003 do_sleep(towait > 50L ? 50L : towait);
1004 towait -= 50L;
1005 }
1006 if (c > 0)
1007 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001008 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 if (c != Ctrl_N && c != Ctrl_G)
1010 vungetc(c);
1011 else
1012 {
1013 ca.cmdchar = Ctrl_BSL;
1014 ca.nchar = c;
1015 idx = find_command(ca.cmdchar);
1016 }
1017 }
1018 }
1019
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 /* When getting a text character and the next character is a
1021 * multi-byte character, it could be a composing character.
Bram Moolenaar4f880622014-07-23 12:31:20 +02001022 * However, don't wait for it to arrive. Also, do enable mapping,
1023 * because if it's put back with vungetc() it's too late to apply
1024 * mapping. */
1025 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 while (enc_utf8 && lang && (c = vpeekc()) > 0
1027 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1028 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001029 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 if (!utf_iscomposing(c))
1031 {
1032 vungetc(c); /* it wasn't, put it back */
1033 break;
1034 }
1035 else if (ca.ncharC1 == 0)
1036 ca.ncharC1 = c;
1037 else
1038 ca.ncharC2 = c;
1039 }
Bram Moolenaar4f880622014-07-23 12:31:20 +02001040 ++no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 }
1042 --no_mapping;
1043 --allow_keys;
1044 }
1045
1046#ifdef FEAT_CMDL_INFO
1047 /*
1048 * Flush the showcmd characters onto the screen so we can see them while
1049 * the command is being executed. Only do this when the shown command was
1050 * actually displayed, otherwise this will slow down a lot when executing
1051 * mappings.
1052 */
1053 if (need_flushbuf)
1054 out_flush();
1055#endif
Bram Moolenaard9205ca2008-10-02 20:55:54 +00001056 if (ca.cmdchar != K_IGNORE)
1057 did_cursorhold = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058
1059 State = NORMAL;
1060
1061 if (ca.nchar == ESC)
1062 {
1063 clearop(oap);
1064 if (restart_edit == 0 && goto_im())
1065 restart_edit = 'a';
1066 goto normal_end;
1067 }
1068
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001069 if (ca.cmdchar != K_IGNORE)
1070 {
1071 msg_didout = FALSE; /* don't scroll screen up for normal command */
1072 msg_col = 0;
1073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 old_pos = curwin->w_cursor; /* remember where cursor was */
1076
1077 /* When 'keymodel' contains "startsel" some keys start Select/Visual
1078 * mode. */
1079 if (!VIsual_active && km_startsel)
1080 {
1081 if (nv_cmds[idx].cmd_flags & NV_SS)
1082 {
1083 start_selection();
1084 unshift_special(&ca);
1085 idx = find_command(ca.cmdchar);
1086 }
1087 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1088 && (mod_mask & MOD_MASK_SHIFT))
1089 {
1090 start_selection();
1091 mod_mask &= ~MOD_MASK_SHIFT;
1092 }
1093 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094
1095 /*
1096 * Execute the command!
1097 * Call the command function found in the commands table.
1098 */
1099 ca.arg = nv_cmds[idx].cmd_arg;
1100 (nv_cmds[idx].cmd_func)(&ca);
1101
1102 /*
1103 * If we didn't start or finish an operator, reset oap->regname, unless we
1104 * need it later.
1105 */
1106 if (!finish_op
1107 && !oap->op_type
1108 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1109 {
1110 clearop(oap);
1111#ifdef FEAT_EVAL
Bram Moolenaar536681b2011-05-10 16:12:45 +02001112 {
1113 int regname = 0;
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001114
Bram Moolenaar536681b2011-05-10 16:12:45 +02001115 /* Adjust the register according to 'clipboard', so that when
1116 * "unnamed" is present it becomes '*' or '+' instead of '"'. */
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001117# ifdef FEAT_CLIPBOARD
Bram Moolenaar536681b2011-05-10 16:12:45 +02001118 adjust_clip_reg(&regname);
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001119# endif
Bram Moolenaar536681b2011-05-10 16:12:45 +02001120 set_reg_var(regname);
1121 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122#endif
1123 }
1124
Bram Moolenaarc6039d82005-12-02 00:44:04 +00001125 /* Get the length of mapped chars again after typing a count, second
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001126 * character or "z333<cr>". */
1127 if (old_mapped_len > 0)
1128 old_mapped_len = typebuf_maplen();
1129
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 /*
1131 * If an operation is pending, handle it...
1132 */
1133 do_pending_operator(&ca, old_col, FALSE);
1134
1135 /*
1136 * Wait for a moment when a message is displayed that will be overwritten
1137 * by the mode message.
1138 * In Visual mode and with "^O" in Insert mode, a short message will be
1139 * overwritten by the mode message. Wait a bit, until a key is hit.
1140 * In Visual mode, it's more important to keep the Visual area updated
1141 * than keeping a message (e.g. from a /pat search).
1142 * Only do this if the command was typed, not from a mapping.
1143 * Don't wait when emsg_silent is non-zero.
1144 * Also wait a bit after an error message, e.g. for "^O:".
1145 * Don't redraw the screen, it would remove the message.
1146 */
1147 if ( ((p_smd
Bram Moolenaar09df3122006-01-23 22:23:09 +00001148 && msg_silent == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 && (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 || (VIsual_active
1151 && old_pos.lnum == curwin->w_cursor.lnum
1152 && old_pos.col == curwin->w_cursor.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 )
1154 && (clear_cmdline
1155 || redraw_cmdline)
1156 && (msg_didout || (msg_didany && msg_scroll))
1157 && !msg_nowait
1158 && KeyTyped)
1159 || (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 && (msg_scroll
1162 || emsg_on_display)))
1163 && oap->regname == 0
1164 && !(ca.retval & CA_COMMAND_BUSY)
1165 && stuff_empty()
1166 && typebuf_typed()
1167 && emsg_silent == 0
1168 && !did_wait_return
1169 && oap->op_type == OP_NOP)
1170 {
1171 int save_State = State;
1172
1173 /* Draw the cursor with the right shape here */
1174 if (restart_edit != 0)
1175 State = INSERT;
1176
1177 /* If need to redraw, and there is a "keep_msg", redraw before the
1178 * delay */
1179 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1180 {
1181 char_u *kmsg;
1182
1183 kmsg = keep_msg;
1184 keep_msg = NULL;
1185 /* showmode() will clear keep_msg, but we want to use it anyway */
1186 update_screen(0);
1187 /* now reset it, otherwise it's put in the history again */
1188 keep_msg = kmsg;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001189 msg_attr((char *)kmsg, keep_msg_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 vim_free(kmsg);
1191 }
1192 setcursor();
1193 cursor_on();
1194 out_flush();
1195 if (msg_scroll || emsg_on_display)
1196 ui_delay(1000L, TRUE); /* wait at least one second */
1197 ui_delay(3000L, FALSE); /* wait up to three seconds */
1198 State = save_State;
1199
1200 msg_scroll = FALSE;
1201 emsg_on_display = FALSE;
1202 }
1203
1204 /*
1205 * Finish up after executing a Normal mode command.
1206 */
1207normal_end:
1208
1209 msg_nowait = FALSE;
1210
1211 /* Reset finish_op, in case it was set */
1212#ifdef CURSOR_SHAPE
1213 c = finish_op;
1214#endif
1215 finish_op = FALSE;
1216#ifdef CURSOR_SHAPE
1217 /* Redraw the cursor with another shape, if we were in Operator-pending
1218 * mode or did a replace command. */
1219 if (c || ca.cmdchar == 'r')
1220 {
1221 ui_cursor_shape(); /* may show different cursor shape */
1222# ifdef FEAT_MOUSESHAPE
1223 update_mouseshape(-1);
1224# endif
1225 }
1226#endif
1227
1228#ifdef FEAT_CMDL_INFO
Bram Moolenaara983fe92008-07-31 20:04:27 +00001229 if (oap->op_type == OP_NOP && oap->regname == 0
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001230 && ca.cmdchar != K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 clear_showcmd();
1232#endif
1233
1234 checkpcmark(); /* check if we moved since setting pcmark */
1235 vim_free(ca.searchbuf);
1236
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 if (has_mbyte)
1238 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 if (curwin->w_p_scb && toplevel)
1241 {
1242 validate_cursor(); /* may need to update w_leftcol */
1243 do_check_scrollbind(TRUE);
1244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245
Bram Moolenaar860cae12010-06-05 23:22:07 +02001246 if (curwin->w_p_crb && toplevel)
1247 {
1248 validate_cursor(); /* may need to update w_leftcol */
1249 do_check_cursorbind();
1250 }
Bram Moolenaar860cae12010-06-05 23:22:07 +02001251
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001252#ifdef FEAT_TERMINAL
Bram Moolenaareef9add2017-09-16 15:38:04 +02001253 /* don't go to Insert mode if a terminal has a running job */
1254 if (term_job_running(curbuf->b_term))
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001255 restart_edit = 0;
1256#endif
1257
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 /*
1259 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1260 * if still inside a mapping that started in Visual mode).
1261 * May switch from Visual to Select mode after CTRL-O command.
1262 */
1263 if ( oap->op_type == OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1265 || restart_VIsual_select == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 && !(ca.retval & CA_COMMAND_BUSY)
1267 && stuff_empty()
1268 && oap->regname == 0)
1269 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 if (restart_VIsual_select == 1)
1271 {
1272 VIsual_select = TRUE;
1273 showmode();
1274 restart_VIsual_select = 0;
1275 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001276 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 (void)edit(restart_edit, FALSE, 1L);
1278 }
1279
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 if (restart_VIsual_select == 2)
1281 restart_VIsual_select = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282
1283 /* Save count before an operator for next time. */
1284 opcount = ca.opcount;
1285}
1286
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001287#ifdef FEAT_EVAL
1288/*
1289 * Set v:count and v:count1 according to "cap".
1290 * Set v:prevcount only when "set_prevcount" is TRUE.
1291 */
1292 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001293set_vcount_ca(cmdarg_T *cap, int *set_prevcount)
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001294{
1295 long count = cap->count0;
1296
1297 /* multiply with cap->opcount the same way as above */
1298 if (cap->opcount != 0)
1299 count = cap->opcount * (count == 0 ? 1 : count);
1300 set_vcount(count, count == 0 ? 1 : count, *set_prevcount);
1301 *set_prevcount = FALSE; /* only set v:prevcount once */
1302}
1303#endif
1304
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305/*
Bram Moolenaar5823f842019-01-03 22:58:08 +01001306 * Handle an operator after Visual mode or when the movement is finished.
1307 * "gui_yank" is true when yanking text for the clipboard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 */
1309 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001310do_pending_operator(cmdarg_T *cap, int old_col, int gui_yank)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311{
1312 oparg_T *oap = cap->oap;
1313 pos_T old_cursor;
1314 int empty_region_error;
1315 int restart_edit_save;
Bram Moolenaar404406a2014-10-09 13:24:43 +02001316#ifdef FEAT_LINEBREAK
1317 int lbr_saved = curwin->w_p_lbr;
Bram Moolenaar404406a2014-10-09 13:24:43 +02001318#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 /* The visual area is remembered for redo */
1321 static int redo_VIsual_mode = NUL; /* 'v', 'V', or Ctrl-V */
1322 static linenr_T redo_VIsual_line_count; /* number of lines */
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001323 static colnr_T redo_VIsual_vcol; /* number of cols or end column */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 static long redo_VIsual_count; /* count for Visual operator */
Bram Moolenaard79e5502016-01-10 22:13:02 +01001325 static int redo_VIsual_arg; /* extra argument */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 int include_line_break = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327
1328#if defined(FEAT_CLIPBOARD)
1329 /*
1330 * Yank the visual area into the GUI selection register before we operate
1331 * on it and lose it forever.
1332 * Don't do it if a specific register was specified, so that ""x"*P works.
1333 * This could call do_pending_operator() recursively, but that's OK
1334 * because gui_yank will be TRUE for the nested call.
1335 */
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001336 if ((clip_star.available || clip_plus.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 && oap->op_type != OP_NOP
1338 && !gui_yank
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 && VIsual_active
1340 && !redo_VIsual_busy
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 && oap->regname == 0)
1342 clip_auto_select();
1343#endif
1344 old_cursor = curwin->w_cursor;
1345
1346 /*
1347 * If an operation is pending, handle it...
1348 */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001349 if ((finish_op || VIsual_active) && oap->op_type != OP_NOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 {
Bram Moolenaar5823f842019-01-03 22:58:08 +01001351 // Yank can be redone when 'y' is in 'cpoptions', but not when yanking
1352 // for the clipboard.
1353 int redo_yank = vim_strchr(p_cpo, CPO_YANK) != NULL && !gui_yank;
1354
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001355#ifdef FEAT_LINEBREAK
1356 /* Avoid a problem with unwanted linebreaks in block mode. */
Bram Moolenaar74db34c2015-06-25 13:30:46 +02001357 if (curwin->w_p_lbr)
1358 curwin->w_valid &= ~VALID_VIRTCOL;
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001359 curwin->w_p_lbr = FALSE;
1360#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 oap->is_VIsual = VIsual_active;
1362 if (oap->motion_force == 'V')
1363 oap->motion_type = MLINE;
1364 else if (oap->motion_force == 'v')
1365 {
1366 /* If the motion was linewise, "inclusive" will not have been set.
1367 * Use "exclusive" to be consistent. Makes "dvj" work nice. */
1368 if (oap->motion_type == MLINE)
1369 oap->inclusive = FALSE;
1370 /* If the motion already was characterwise, toggle "inclusive" */
1371 else if (oap->motion_type == MCHAR)
1372 oap->inclusive = !oap->inclusive;
1373 oap->motion_type = MCHAR;
1374 }
1375 else if (oap->motion_force == Ctrl_V)
1376 {
1377 /* Change line- or characterwise motion into Visual block mode. */
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01001378 if (!VIsual_active)
1379 {
1380 VIsual_active = TRUE;
1381 VIsual = oap->start;
1382 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 VIsual_mode = Ctrl_V;
1384 VIsual_select = FALSE;
1385 VIsual_reselect = FALSE;
1386 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387
Bram Moolenaar7afea822013-04-24 18:34:45 +02001388 /* Only redo yank when 'y' flag is in 'cpoptions'. */
1389 /* Never redo "zf" (define fold). */
Bram Moolenaar5823f842019-01-03 22:58:08 +01001390 if ((redo_yank || oap->op_type != OP_YANK)
Bram Moolenaar7afea822013-04-24 18:34:45 +02001391 && ((!VIsual_active || oap->motion_force)
1392 /* Also redo Operator-pending Visual mode mappings */
1393 || (VIsual_active && cap->cmdchar == ':'
1394 && oap->op_type != OP_COLON))
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001395 && cap->cmdchar != 'D'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396#ifdef FEAT_FOLDING
1397 && oap->op_type != OP_FOLD
1398 && oap->op_type != OP_FOLDOPEN
1399 && oap->op_type != OP_FOLDOPENREC
1400 && oap->op_type != OP_FOLDCLOSE
1401 && oap->op_type != OP_FOLDCLOSEREC
1402 && oap->op_type != OP_FOLDDEL
1403 && oap->op_type != OP_FOLDDELREC
1404#endif
1405 )
1406 {
1407 prep_redo(oap->regname, cap->count0,
1408 get_op_char(oap->op_type), get_extra_op_char(oap->op_type),
1409 oap->motion_force, cap->cmdchar, cap->nchar);
1410 if (cap->cmdchar == '/' || cap->cmdchar == '?') /* was a search */
1411 {
1412 /*
1413 * If 'cpoptions' does not contain 'r', insert the search
1414 * pattern to really repeat the same command.
1415 */
1416 if (vim_strchr(p_cpo, CPO_REDO) == NULL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00001417 AppendToRedobuffLit(cap->searchbuf, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 AppendToRedobuff(NL_STR);
1419 }
1420 else if (cap->cmdchar == ':')
1421 {
1422 /* do_cmdline() has stored the first typed line in
1423 * "repeat_cmdline". When several lines are typed repeating
1424 * won't be possible. */
1425 if (repeat_cmdline == NULL)
1426 ResetRedobuff();
1427 else
1428 {
Bram Moolenaarebefac62005-12-28 22:39:57 +00001429 AppendToRedobuffLit(repeat_cmdline, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 AppendToRedobuff(NL_STR);
Bram Moolenaard23a8232018-02-10 18:45:26 +01001431 VIM_CLEAR(repeat_cmdline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 }
1433 }
1434 }
1435
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 if (redo_VIsual_busy)
1437 {
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001438 /* Redo of an operation on a Visual area. Use the same size from
1439 * redo_VIsual_line_count and redo_VIsual_vcol. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 oap->start = curwin->w_cursor;
1441 curwin->w_cursor.lnum += redo_VIsual_line_count - 1;
1442 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1443 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1444 VIsual_mode = redo_VIsual_mode;
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001445 if (redo_VIsual_vcol == MAXCOL || VIsual_mode == 'v')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 {
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001447 if (VIsual_mode == 'v')
1448 {
1449 if (redo_VIsual_line_count <= 1)
1450 {
1451 validate_virtcol();
1452 curwin->w_curswant =
1453 curwin->w_virtcol + redo_VIsual_vcol - 1;
1454 }
1455 else
1456 curwin->w_curswant = redo_VIsual_vcol;
1457 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001459 {
1460 curwin->w_curswant = MAXCOL;
1461 }
1462 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 }
1464 cap->count0 = redo_VIsual_count;
1465 if (redo_VIsual_count != 0)
1466 cap->count1 = redo_VIsual_count;
1467 else
1468 cap->count1 = 1;
1469 }
1470 else if (VIsual_active)
1471 {
Bram Moolenaar6179c612006-10-10 11:26:53 +00001472 if (!gui_yank)
1473 {
1474 /* Save the current VIsual area for '< and '> marks, and "gv" */
1475 curbuf->b_visual.vi_start = VIsual;
1476 curbuf->b_visual.vi_end = curwin->w_cursor;
1477 curbuf->b_visual.vi_mode = VIsual_mode;
Bram Moolenaara390bb62013-03-13 19:02:41 +01001478 if (VIsual_mode_orig != NUL)
1479 {
1480 curbuf->b_visual.vi_mode = VIsual_mode_orig;
1481 VIsual_mode_orig = NUL;
1482 }
Bram Moolenaar6179c612006-10-10 11:26:53 +00001483 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484# ifdef FEAT_EVAL
Bram Moolenaar6179c612006-10-10 11:26:53 +00001485 curbuf->b_visual_mode_eval = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486# endif
Bram Moolenaar6179c612006-10-10 11:26:53 +00001487 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488
1489 /* In Select mode, a linewise selection is operated upon like a
Bram Moolenaard009e862015-06-09 20:20:03 +02001490 * characterwise selection.
1491 * Special case: gH<Del> deletes the last line. */
1492 if (VIsual_select && VIsual_mode == 'V'
1493 && cap->oap->op_type != OP_DELETE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001495 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 {
1497 VIsual.col = 0;
1498 curwin->w_cursor.col =
1499 (colnr_T)STRLEN(ml_get(curwin->w_cursor.lnum));
1500 }
1501 else
1502 {
1503 curwin->w_cursor.col = 0;
1504 VIsual.col = (colnr_T)STRLEN(ml_get(VIsual.lnum));
1505 }
1506 VIsual_mode = 'v';
1507 }
1508 /* If 'selection' is "exclusive", backup one character for
1509 * charwise selections. */
1510 else if (VIsual_mode == 'v')
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01001511 include_line_break = unadjust_for_sel();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512
1513 oap->start = VIsual;
1514 if (VIsual_mode == 'V')
Bram Moolenaar9aa15692017-08-19 15:05:32 +02001515 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 oap->start.col = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02001517 oap->start.coladd = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02001518 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520
1521 /*
1522 * Set oap->start to the first position of the operated text, oap->end
1523 * to the end of the operated text. w_cursor is equal to oap->start.
1524 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001525 if (LT_POS(oap->start, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 {
1527#ifdef FEAT_FOLDING
1528 /* Include folded lines completely. */
1529 if (!VIsual_active)
1530 {
1531 if (hasFolding(oap->start.lnum, &oap->start.lnum, NULL))
1532 oap->start.col = 0;
1533 if (hasFolding(curwin->w_cursor.lnum, NULL,
1534 &curwin->w_cursor.lnum))
1535 curwin->w_cursor.col = (colnr_T)STRLEN(ml_get_curline());
1536 }
1537#endif
1538 oap->end = curwin->w_cursor;
1539 curwin->w_cursor = oap->start;
1540
1541 /* w_virtcol may have been updated; if the cursor goes back to its
1542 * previous position w_virtcol becomes invalid and isn't updated
1543 * automatically. */
1544 curwin->w_valid &= ~VALID_VIRTCOL;
1545 }
1546 else
1547 {
1548#ifdef FEAT_FOLDING
1549 /* Include folded lines completely. */
1550 if (!VIsual_active && oap->motion_type == MLINE)
1551 {
1552 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum,
1553 NULL))
1554 curwin->w_cursor.col = 0;
1555 if (hasFolding(oap->start.lnum, NULL, &oap->start.lnum))
1556 oap->start.col = (colnr_T)STRLEN(ml_get(oap->start.lnum));
1557 }
1558#endif
1559 oap->end = oap->start;
1560 oap->start = curwin->w_cursor;
1561 }
1562
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001563 /* Just in case lines were deleted that make the position invalid. */
1564 check_pos(curwin->w_buffer, &oap->end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 oap->line_count = oap->end.lnum - oap->start.lnum + 1;
1566
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 /* Set "virtual_op" before resetting VIsual_active. */
1568 virtual_op = virtual_active();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 if (VIsual_active || redo_VIsual_busy)
1571 {
Bram Moolenaar74db34c2015-06-25 13:30:46 +02001572 get_op_vcol(oap, redo_VIsual_vcol, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573
1574 if (!redo_VIsual_busy && !gui_yank)
1575 {
1576 /*
1577 * Prepare to reselect and redo Visual: this is based on the
1578 * size of the Visual text
1579 */
1580 resel_VIsual_mode = VIsual_mode;
1581 if (curwin->w_curswant == MAXCOL)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001582 resel_VIsual_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001584 {
1585 if (VIsual_mode != Ctrl_V)
1586 getvvcol(curwin, &(oap->end),
1587 NULL, NULL, &oap->end_vcol);
1588 if (VIsual_mode == Ctrl_V || oap->line_count <= 1)
1589 {
1590 if (VIsual_mode != Ctrl_V)
1591 getvvcol(curwin, &(oap->start),
1592 &oap->start_vcol, NULL, NULL);
1593 resel_VIsual_vcol = oap->end_vcol - oap->start_vcol + 1;
1594 }
1595 else
1596 resel_VIsual_vcol = oap->end_vcol;
1597 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 resel_VIsual_line_count = oap->line_count;
1599 }
1600
1601 /* can't redo yank (unless 'y' is in 'cpoptions') and ":" */
Bram Moolenaar5823f842019-01-03 22:58:08 +01001602 if ((redo_yank || oap->op_type != OP_YANK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 && oap->op_type != OP_COLON
1604#ifdef FEAT_FOLDING
1605 && oap->op_type != OP_FOLD
1606 && oap->op_type != OP_FOLDOPEN
1607 && oap->op_type != OP_FOLDOPENREC
1608 && oap->op_type != OP_FOLDCLOSE
1609 && oap->op_type != OP_FOLDCLOSEREC
1610 && oap->op_type != OP_FOLDDEL
1611 && oap->op_type != OP_FOLDDELREC
1612#endif
1613 && oap->motion_force == NUL
1614 )
1615 {
1616 /* Prepare for redoing. Only use the nchar field for "r",
1617 * otherwise it might be the second char of the operator. */
Bram Moolenaar641e2862012-07-25 15:06:34 +02001618 if (cap->cmdchar == 'g' && (cap->nchar == 'n'
1619 || cap->nchar == 'N'))
Bram Moolenaarba2d44f2013-11-28 19:27:30 +01001620 prep_redo(oap->regname, cap->count0,
1621 get_op_char(oap->op_type), get_extra_op_char(oap->op_type),
1622 oap->motion_force, cap->cmdchar, cap->nchar);
Bram Moolenaar7afea822013-04-24 18:34:45 +02001623 else if (cap->cmdchar != ':')
Bram Moolenaarf12519d2018-02-06 22:52:49 +01001624 {
1625 int nchar = oap->op_type == OP_REPLACE ? cap->nchar : NUL;
1626
1627 /* reverse what nv_replace() did */
1628 if (nchar == REPLACE_CR_NCHAR)
1629 nchar = CAR;
1630 else if (nchar == REPLACE_NL_NCHAR)
1631 nchar = NL;
Bram Moolenaar641e2862012-07-25 15:06:34 +02001632 prep_redo(oap->regname, 0L, NUL, 'v',
1633 get_op_char(oap->op_type),
1634 get_extra_op_char(oap->op_type),
Bram Moolenaarf12519d2018-02-06 22:52:49 +01001635 nchar);
1636 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 if (!redo_VIsual_busy)
1638 {
1639 redo_VIsual_mode = resel_VIsual_mode;
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001640 redo_VIsual_vcol = resel_VIsual_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 redo_VIsual_line_count = resel_VIsual_line_count;
1642 redo_VIsual_count = cap->count0;
Bram Moolenaard79e5502016-01-10 22:13:02 +01001643 redo_VIsual_arg = cap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 }
1645 }
1646
1647 /*
1648 * oap->inclusive defaults to TRUE.
1649 * If oap->end is on a NUL (empty line) oap->inclusive becomes
1650 * FALSE. This makes "d}P" and "v}dP" work the same.
1651 */
1652 if (oap->motion_force == NUL || oap->motion_type == MLINE)
1653 oap->inclusive = TRUE;
1654 if (VIsual_mode == 'V')
1655 oap->motion_type = MLINE;
1656 else
1657 {
1658 oap->motion_type = MCHAR;
1659 if (VIsual_mode != Ctrl_V && *ml_get_pos(&(oap->end)) == NUL
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01001660 && (include_line_break || !virtual_op))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 {
1662 oap->inclusive = FALSE;
1663 /* Try to include the newline, unless it's an operator
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001664 * that works on lines only. */
Bram Moolenaard009e862015-06-09 20:20:03 +02001665 if (*p_sel != 'o'
1666 && !op_on_lines(oap->op_type)
1667 && oap->end.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 {
Bram Moolenaard009e862015-06-09 20:20:03 +02001669 ++oap->end.lnum;
1670 oap->end.col = 0;
Bram Moolenaard009e862015-06-09 20:20:03 +02001671 oap->end.coladd = 0;
Bram Moolenaard009e862015-06-09 20:20:03 +02001672 ++oap->line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 }
1674 }
1675 }
1676
1677 redo_VIsual_busy = FALSE;
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00001678
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 /*
1680 * Switch Visual off now, so screen updating does
1681 * not show inverted text when the screen is redrawn.
1682 * With OP_YANK and sometimes with OP_COLON and OP_FILTER there is
1683 * no screen redraw, so it is done here to remove the inverted
1684 * part.
1685 */
1686 if (!gui_yank)
1687 {
1688 VIsual_active = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001689#ifdef FEAT_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 setmouse();
1691 mouse_dragging = 0;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001692#endif
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001693 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 if ((oap->op_type == OP_YANK
1695 || oap->op_type == OP_COLON
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00001696 || oap->op_type == OP_FUNCTION
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 || oap->op_type == OP_FILTER)
1698 && oap->motion_force == NUL)
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001699 {
1700#ifdef FEAT_LINEBREAK
1701 /* make sure redrawing is correct */
1702 curwin->w_p_lbr = lbr_saved;
1703#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 redraw_curbuf_later(INVERTED);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001705 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 }
1707 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 /* Include the trailing byte of a multi-byte char. */
1710 if (has_mbyte && oap->inclusive)
1711 {
1712 int l;
1713
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001714 l = (*mb_ptr2len)(ml_get_pos(&oap->end));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 if (l > 1)
1716 oap->end.col += l - 1;
1717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 curwin->w_set_curswant = TRUE;
1719
1720 /*
1721 * oap->empty is set when start and end are the same. The inclusive
1722 * flag affects this too, unless yanking and the end is on a NUL.
1723 */
1724 oap->empty = (oap->motion_type == MCHAR
1725 && (!oap->inclusive
1726 || (oap->op_type == OP_YANK
1727 && gchar_pos(&oap->end) == NUL))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001728 && EQUAL_POS(oap->start, oap->end)
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01001729 && !(virtual_op && oap->start.coladd != oap->end.coladd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 /*
1731 * For delete, change and yank, it's an error to operate on an
1732 * empty region, when 'E' included in 'cpoptions' (Vi compatible).
1733 */
1734 empty_region_error = (oap->empty
1735 && vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL);
1736
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 /* Force a redraw when operating on an empty Visual region, when
1738 * 'modifiable is off or creating a fold. */
1739 if (oap->is_VIsual && (oap->empty || !curbuf->b_p_ma
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001740#ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 || oap->op_type == OP_FOLD
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001742#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 ))
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001744 {
1745#ifdef FEAT_LINEBREAK
1746 curwin->w_p_lbr = lbr_saved;
1747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 redraw_curbuf_later(INVERTED);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001749 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750
1751 /*
1752 * If the end of an operator is in column one while oap->motion_type
1753 * is MCHAR and oap->inclusive is FALSE, we put op_end after the last
1754 * character in the previous line. If op_start is on or before the
1755 * first non-blank in the line, the operator becomes linewise
1756 * (strange, but that's the way vi does it).
1757 */
1758 if ( oap->motion_type == MCHAR
1759 && oap->inclusive == FALSE
1760 && !(cap->retval & CA_NO_ADJ_OP_END)
1761 && oap->end.col == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaar34114692005-01-02 11:28:13 +00001763 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 && oap->line_count > 1)
1765 {
1766 oap->end_adjusted = TRUE; /* remember that we did this */
1767 --oap->line_count;
1768 --oap->end.lnum;
1769 if (inindent(0))
1770 oap->motion_type = MLINE;
1771 else
1772 {
1773 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
1774 if (oap->end.col)
1775 {
1776 --oap->end.col;
1777 oap->inclusive = TRUE;
1778 }
1779 }
1780 }
1781 else
1782 oap->end_adjusted = FALSE;
1783
1784 switch (oap->op_type)
1785 {
1786 case OP_LSHIFT:
1787 case OP_RSHIFT:
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001788 op_shift(oap, TRUE, oap->is_VIsual ? (int)cap->count1 : 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 auto_format(FALSE, TRUE);
1790 break;
1791
1792 case OP_JOIN_NS:
1793 case OP_JOIN:
1794 if (oap->line_count < 2)
1795 oap->line_count = 2;
1796 if (curwin->w_cursor.lnum + oap->line_count - 1 >
1797 curbuf->b_ml.ml_line_count)
1798 beep_flush();
1799 else
1800 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001801 (void)do_join(oap->line_count, oap->op_type == OP_JOIN,
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02001802 TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 auto_format(FALSE, TRUE);
1804 }
1805 break;
1806
1807 case OP_DELETE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 VIsual_reselect = FALSE; /* don't reselect now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 if (empty_region_error)
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001810 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02001811 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001812 CancelRedo();
1813 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 else
1815 {
1816 (void)op_delete(oap);
1817 if (oap->motion_type == MLINE && has_format_option(FO_AUTO))
1818 u_save_cursor(); /* cursor line wasn't saved yet */
1819 auto_format(FALSE, TRUE);
1820 }
1821 break;
1822
1823 case OP_YANK:
1824 if (empty_region_error)
1825 {
1826 if (!gui_yank)
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001827 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02001828 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001829 CancelRedo();
1830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 }
1832 else
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001833 {
1834#ifdef FEAT_LINEBREAK
1835 curwin->w_p_lbr = lbr_saved;
1836#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 (void)op_yank(oap, FALSE, !gui_yank);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 check_cursor_col();
1840 break;
1841
1842 case OP_CHANGE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 VIsual_reselect = FALSE; /* don't reselect now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 if (empty_region_error)
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001845 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02001846 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001847 CancelRedo();
1848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 else
1850 {
1851 /* This is a new edit command, not a restart. Need to
1852 * remember it to make 'insertmode' work with mappings for
1853 * Visual mode. But do this only once and not when typed and
1854 * 'insertmode' isn't set. */
1855 if (p_im || !KeyTyped)
1856 restart_edit_save = restart_edit;
1857 else
1858 restart_edit_save = 0;
1859 restart_edit = 0;
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001860#ifdef FEAT_LINEBREAK
1861 /* Restore linebreak, so that when the user edits it looks as
1862 * before. */
Bram Moolenaar74db34c2015-06-25 13:30:46 +02001863 if (curwin->w_p_lbr != lbr_saved)
1864 {
1865 curwin->w_p_lbr = lbr_saved;
1866 get_op_vcol(oap, redo_VIsual_mode, FALSE);
1867 }
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001868#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 /* Reset finish_op now, don't want it set inside edit(). */
1870 finish_op = FALSE;
1871 if (op_change(oap)) /* will call edit() */
1872 cap->retval |= CA_COMMAND_BUSY;
1873 if (restart_edit == 0)
1874 restart_edit = restart_edit_save;
1875 }
1876 break;
1877
1878 case OP_FILTER:
1879 if (vim_strchr(p_cpo, CPO_FILTER) != NULL)
1880 AppendToRedobuff((char_u *)"!\r"); /* use any last used !cmd */
1881 else
1882 bangredo = TRUE; /* do_bang() will put cmd in redo buffer */
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001883 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884
1885 case OP_INDENT:
1886 case OP_COLON:
1887
1888#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
1889 /*
1890 * If 'equalprg' is empty, do the indenting internally.
1891 */
1892 if (oap->op_type == OP_INDENT && *get_equalprg() == NUL)
1893 {
1894# ifdef FEAT_LISP
1895 if (curbuf->b_p_lisp)
1896 {
1897 op_reindent(oap, get_lisp_indent);
1898 break;
1899 }
1900# endif
1901# ifdef FEAT_CINDENT
1902 op_reindent(oap,
1903# ifdef FEAT_EVAL
1904 *curbuf->b_p_inde != NUL ? get_expr_indent :
1905# endif
1906 get_c_indent);
1907 break;
1908# endif
1909 }
1910#endif
1911
1912 op_colon(oap);
1913 break;
1914
1915 case OP_TILDE:
1916 case OP_UPPER:
1917 case OP_LOWER:
1918 case OP_ROT13:
1919 if (empty_region_error)
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001920 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02001921 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001922 CancelRedo();
1923 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 else
1925 op_tilde(oap);
1926 check_cursor_col();
1927 break;
1928
1929 case OP_FORMAT:
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001930#if defined(FEAT_EVAL)
1931 if (*curbuf->b_p_fex != NUL)
1932 op_formatexpr(oap); /* use expression */
1933 else
1934#endif
Bram Moolenaar9be7c042017-01-14 14:28:30 +01001935 if (*p_fp != NUL || *curbuf->b_p_fp != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 op_colon(oap); /* use external command */
1937 else
1938 op_format(oap, FALSE); /* use internal function */
1939 break;
1940
1941 case OP_FORMAT2:
1942 op_format(oap, TRUE); /* use internal function */
1943 break;
1944
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00001945 case OP_FUNCTION:
Bram Moolenaar4a08b0d2016-11-05 21:55:13 +01001946#ifdef FEAT_LINEBREAK
1947 /* Restore linebreak, so that when the user edits it looks as
1948 * before. */
1949 curwin->w_p_lbr = lbr_saved;
1950#endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00001951 op_function(oap); /* call 'operatorfunc' */
1952 break;
1953
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 case OP_INSERT:
1955 case OP_APPEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 VIsual_reselect = FALSE; /* don't reselect now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 if (empty_region_error)
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001958 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02001959 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001960 CancelRedo();
1961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 else
1963 {
1964 /* This is a new edit command, not a restart. Need to
1965 * remember it to make 'insertmode' work with mappings for
1966 * Visual mode. But do this only once. */
1967 restart_edit_save = restart_edit;
1968 restart_edit = 0;
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001969#ifdef FEAT_LINEBREAK
1970 /* Restore linebreak, so that when the user edits it looks as
1971 * before. */
Bram Moolenaar74db34c2015-06-25 13:30:46 +02001972 if (curwin->w_p_lbr != lbr_saved)
1973 {
1974 curwin->w_p_lbr = lbr_saved;
1975 get_op_vcol(oap, redo_VIsual_mode, FALSE);
1976 }
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001977#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 op_insert(oap, cap->count1);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001979#ifdef FEAT_LINEBREAK
1980 /* Reset linebreak, so that formatting works correctly. */
1981 curwin->w_p_lbr = FALSE;
1982#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983
1984 /* TODO: when inserting in several lines, should format all
1985 * the lines. */
1986 auto_format(FALSE, TRUE);
1987
1988 if (restart_edit == 0)
1989 restart_edit = restart_edit_save;
Bram Moolenaar0b5c93a2017-02-01 15:03:30 +01001990 else
1991 cap->retval |= CA_COMMAND_BUSY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 break;
1994
1995 case OP_REPLACE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 VIsual_reselect = FALSE; /* don't reselect now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 if (empty_region_error)
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001998 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02001999 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01002000 CancelRedo();
2001 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 else
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002003 {
Bram Moolenaar870ba5f2019-01-11 14:37:20 +01002004#ifdef FEAT_LINEBREAK
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002005 /* Restore linebreak, so that when the user edits it looks as
2006 * before. */
Bram Moolenaar74db34c2015-06-25 13:30:46 +02002007 if (curwin->w_p_lbr != lbr_saved)
2008 {
2009 curwin->w_p_lbr = lbr_saved;
2010 get_op_vcol(oap, redo_VIsual_mode, FALSE);
2011 }
Bram Moolenaar870ba5f2019-01-11 14:37:20 +01002012#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 op_replace(oap, cap->nchar);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002014 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 break;
2016
2017#ifdef FEAT_FOLDING
2018 case OP_FOLD:
2019 VIsual_reselect = FALSE; /* don't reselect now */
2020 foldCreate(oap->start.lnum, oap->end.lnum);
2021 break;
2022
2023 case OP_FOLDOPEN:
2024 case OP_FOLDOPENREC:
2025 case OP_FOLDCLOSE:
2026 case OP_FOLDCLOSEREC:
2027 VIsual_reselect = FALSE; /* don't reselect now */
2028 opFoldRange(oap->start.lnum, oap->end.lnum,
2029 oap->op_type == OP_FOLDOPEN
2030 || oap->op_type == OP_FOLDOPENREC,
2031 oap->op_type == OP_FOLDOPENREC
2032 || oap->op_type == OP_FOLDCLOSEREC,
2033 oap->is_VIsual);
2034 break;
2035
2036 case OP_FOLDDEL:
2037 case OP_FOLDDELREC:
2038 VIsual_reselect = FALSE; /* don't reselect now */
2039 deleteFold(oap->start.lnum, oap->end.lnum,
2040 oap->op_type == OP_FOLDDELREC, oap->is_VIsual);
2041 break;
2042#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01002043 case OP_NR_ADD:
2044 case OP_NR_SUB:
2045 if (empty_region_error)
2046 {
2047 vim_beep(BO_OPER);
2048 CancelRedo();
2049 }
2050 else
2051 {
2052 VIsual_active = TRUE;
2053#ifdef FEAT_LINEBREAK
2054 curwin->w_p_lbr = lbr_saved;
2055#endif
2056 op_addsub(oap, cap->count1, redo_VIsual_arg);
2057 VIsual_active = FALSE;
2058 }
2059 check_cursor_col();
2060 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 default:
2062 clearopbeep(oap);
2063 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 virtual_op = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 if (!gui_yank)
2066 {
2067 /*
2068 * if 'sol' not set, go back to old column for some commands
2069 */
2070 if (!p_sol && oap->motion_type == MLINE && !oap->end_adjusted
2071 && (oap->op_type == OP_LSHIFT || oap->op_type == OP_RSHIFT
2072 || oap->op_type == OP_DELETE))
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002073 {
2074#ifdef FEAT_LINEBREAK
2075 curwin->w_p_lbr = FALSE;
2076#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 coladvance(curwin->w_curswant = old_col);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 }
2080 else
2081 {
2082 curwin->w_cursor = old_cursor;
2083 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 oap->block_mode = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 clearop(oap);
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01002086 motion_force = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 }
Bram Moolenaar404406a2014-10-09 13:24:43 +02002088#ifdef FEAT_LINEBREAK
2089 curwin->w_p_lbr = lbr_saved;
2090#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091}
2092
2093/*
2094 * Handle indent and format operators and visual mode ":".
2095 */
2096 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002097op_colon(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098{
2099 stuffcharReadbuff(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 if (oap->is_VIsual)
2101 stuffReadbuff((char_u *)"'<,'>");
2102 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 {
2104 /*
2105 * Make the range look nice, so it can be repeated.
2106 */
2107 if (oap->start.lnum == curwin->w_cursor.lnum)
2108 stuffcharReadbuff('.');
2109 else
2110 stuffnumReadbuff((long)oap->start.lnum);
2111 if (oap->end.lnum != oap->start.lnum)
2112 {
2113 stuffcharReadbuff(',');
2114 if (oap->end.lnum == curwin->w_cursor.lnum)
2115 stuffcharReadbuff('.');
2116 else if (oap->end.lnum == curbuf->b_ml.ml_line_count)
2117 stuffcharReadbuff('$');
2118 else if (oap->start.lnum == curwin->w_cursor.lnum)
2119 {
2120 stuffReadbuff((char_u *)".+");
2121 stuffnumReadbuff((long)oap->line_count - 1);
2122 }
2123 else
2124 stuffnumReadbuff((long)oap->end.lnum);
2125 }
2126 }
2127 if (oap->op_type != OP_COLON)
2128 stuffReadbuff((char_u *)"!");
2129 if (oap->op_type == OP_INDENT)
2130 {
2131#ifndef FEAT_CINDENT
2132 if (*get_equalprg() == NUL)
2133 stuffReadbuff((char_u *)"indent");
2134 else
2135#endif
2136 stuffReadbuff(get_equalprg());
2137 stuffReadbuff((char_u *)"\n");
2138 }
2139 else if (oap->op_type == OP_FORMAT)
2140 {
Bram Moolenaar9be7c042017-01-14 14:28:30 +01002141 if (*curbuf->b_p_fp != NUL)
2142 stuffReadbuff(curbuf->b_p_fp);
2143 else if (*p_fp != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 stuffReadbuff(p_fp);
Bram Moolenaar9be7c042017-01-14 14:28:30 +01002145 else
2146 stuffReadbuff((char_u *)"fmt");
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002147 stuffReadbuff((char_u *)"\n']");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 }
2149
2150 /*
2151 * do_cmdline() does the rest
2152 */
2153}
2154
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002155/*
Bram Moolenaar12033fb2005-12-16 21:49:31 +00002156 * Handle the "g@" operator: call 'operatorfunc'.
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002157 */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002158 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002159op_function(oparg_T *oap UNUSED)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002160{
2161#ifdef FEAT_EVAL
Bram Moolenaarffa96842018-06-12 22:05:14 +02002162 typval_T argv[2];
Bram Moolenaar61d281a2012-03-28 12:59:57 +02002163 int save_virtual_op = virtual_op;
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002164
2165 if (*p_opfunc == NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002166 emsg(_("E774: 'operatorfunc' is empty"));
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002167 else
2168 {
2169 /* Set '[ and '] marks to text to be operated on. */
2170 curbuf->b_op_start = oap->start;
2171 curbuf->b_op_end = oap->end;
2172 if (oap->motion_type != MLINE && !oap->inclusive)
2173 /* Exclude the end position. */
2174 decl(&curbuf->b_op_end);
2175
Bram Moolenaarffa96842018-06-12 22:05:14 +02002176 argv[0].v_type = VAR_STRING;
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002177 if (oap->block_mode)
Bram Moolenaarffa96842018-06-12 22:05:14 +02002178 argv[0].vval.v_string = (char_u *)"block";
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002179 else if (oap->motion_type == MLINE)
Bram Moolenaarffa96842018-06-12 22:05:14 +02002180 argv[0].vval.v_string = (char_u *)"line";
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002181 else
Bram Moolenaarffa96842018-06-12 22:05:14 +02002182 argv[0].vval.v_string = (char_u *)"char";
2183 argv[1].v_type = VAR_UNKNOWN;
Bram Moolenaar61d281a2012-03-28 12:59:57 +02002184
2185 /* Reset virtual_op so that 'virtualedit' can be changed in the
2186 * function. */
2187 virtual_op = MAYBE;
2188
Bram Moolenaarded27a12018-08-01 19:06:03 +02002189 (void)call_func_retnr(p_opfunc, 1, argv);
Bram Moolenaar61d281a2012-03-28 12:59:57 +02002190
2191 virtual_op = save_virtual_op;
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002192 }
2193#else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002194 emsg(_("E775: Eval feature not available"));
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002195#endif
2196}
2197
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198#if defined(FEAT_MOUSE) || defined(PROTO)
2199/*
2200 * Do the appropriate action for the current mouse click in the current mode.
2201 * Not used for Command-line mode.
2202 *
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002203 * Normal and Visual Mode:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 * event modi- position visual change action
2205 * fier cursor window
2206 * left press - yes end yes
2207 * left press C yes end yes "^]" (2)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002208 * left press S yes end (popup: extend) yes "*" (2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 * left drag - yes start if moved no
2210 * left relse - yes start if moved no
2211 * middle press - yes if not active no put register
2212 * middle press - yes if active no yank and put
2213 * right press - yes start or extend yes
2214 * right press S yes no change yes "#" (2)
2215 * right drag - yes extend no
2216 * right relse - yes extend no
2217 *
2218 * Insert or Replace Mode:
2219 * event modi- position visual change action
2220 * fier cursor window
2221 * left press - yes (cannot be active) yes
2222 * left press C yes (cannot be active) yes "CTRL-O^]" (2)
2223 * left press S yes (cannot be active) yes "CTRL-O*" (2)
2224 * left drag - yes start or extend (1) no CTRL-O (1)
2225 * left relse - yes start or extend (1) no CTRL-O (1)
2226 * middle press - no (cannot be active) no put register
2227 * right press - yes start or extend yes CTRL-O
2228 * right press S yes (cannot be active) yes "CTRL-O#" (2)
2229 *
2230 * (1) only if mouse pointer moved since press
2231 * (2) only if click is in same buffer
2232 *
2233 * Return TRUE if start_arrow() should be called for edit mode.
2234 */
2235 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002236do_mouse(
2237 oparg_T *oap, /* operator argument, can be NULL */
2238 int c, /* K_LEFTMOUSE, etc */
2239 int dir, /* Direction to 'put' if necessary */
2240 long count,
2241 int fixindent) /* PUT_FIXINDENT if fixing indent necessary */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242{
2243 static int do_always = FALSE; /* ignore 'mouse' setting next time */
2244 static int got_click = FALSE; /* got a click some time back */
2245
2246 int which_button; /* MOUSE_LEFT, _MIDDLE or _RIGHT */
2247 int is_click; /* If FALSE it's a drag or release event */
2248 int is_drag; /* If TRUE it's a drag event */
2249 int jump_flags = 0; /* flags for jump_to_mouse() */
2250 pos_T start_visual;
2251 int moved; /* Has cursor moved? */
2252 int in_status_line; /* mouse in status line */
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002253 static int in_tab_line = FALSE; /* mouse clicked in tab line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 int in_sep_line; /* mouse in vertical separator line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 int c1, c2;
2256#if defined(FEAT_FOLDING)
2257 pos_T save_cursor;
2258#endif
2259 win_T *old_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 static pos_T orig_cursor;
2261 colnr_T leftcol, rightcol;
2262 pos_T end_visual;
2263 int diff;
2264 int old_active = VIsual_active;
2265 int old_mode = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 int regname;
2267
2268#if defined(FEAT_FOLDING)
2269 save_cursor = curwin->w_cursor;
2270#endif
2271
2272 /*
2273 * When GUI is active, always recognize mouse events, otherwise:
2274 * - Ignore mouse event in normal mode if 'mouse' doesn't include 'n'.
2275 * - Ignore mouse event in visual mode if 'mouse' doesn't include 'v'.
2276 * - For command line and insert mode 'mouse' is checked before calling
2277 * do_mouse().
2278 */
2279 if (do_always)
2280 do_always = FALSE;
2281 else
2282#ifdef FEAT_GUI
2283 if (!gui.in_use)
2284#endif
2285 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 if (VIsual_active)
2287 {
2288 if (!mouse_has(MOUSE_VISUAL))
2289 return FALSE;
2290 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002291 else if (State == NORMAL && !mouse_has(MOUSE_NORMAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 return FALSE;
2293 }
2294
Bram Moolenaar2526ef22013-03-16 14:20:51 +01002295 for (;;)
2296 {
2297 which_button = get_mouse_button(KEY2TERMCAP1(c), &is_click, &is_drag);
2298 if (is_drag)
2299 {
2300 /* If the next character is the same mouse event then use that
2301 * one. Speeds up dragging the status line. */
2302 if (vpeekc() != NUL)
2303 {
2304 int nc;
2305 int save_mouse_row = mouse_row;
2306 int save_mouse_col = mouse_col;
2307
2308 /* Need to get the character, peeking doesn't get the actual
2309 * one. */
2310 nc = safe_vgetc();
2311 if (c == nc)
2312 continue;
2313 vungetc(nc);
2314 mouse_row = save_mouse_row;
2315 mouse_col = save_mouse_col;
2316 }
2317 }
2318 break;
2319 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002321 if (c == K_MOUSEMOVE)
2322 {
Bram Moolenaar06bd8242019-05-08 22:55:16 +02002323 // Mouse moved without a button pressed.
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01002324#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002325 ui_may_remove_balloon();
Bram Moolenaar06bd8242019-05-08 22:55:16 +02002326 if (p_bevalterm)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002327 {
2328 profile_setlimit(p_bdlay, &bevalexpr_due);
2329 bevalexpr_due_set = TRUE;
2330 }
2331#endif
2332 return FALSE;
2333 }
2334
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335#ifdef FEAT_MOUSESHAPE
2336 /* May have stopped dragging the status or separator line. The pointer is
2337 * most likely still on the status or separator line. */
2338 if (!is_drag && drag_status_line)
2339 {
2340 drag_status_line = FALSE;
2341 update_mouseshape(SHAPE_IDX_STATUS);
2342 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 if (!is_drag && drag_sep_line)
2344 {
2345 drag_sep_line = FALSE;
2346 update_mouseshape(SHAPE_IDX_VSEP);
2347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348#endif
2349
2350 /*
2351 * Ignore drag and release events if we didn't get a click.
2352 */
2353 if (is_click)
2354 got_click = TRUE;
2355 else
2356 {
2357 if (!got_click) /* didn't get click, ignore */
2358 return FALSE;
2359 if (!is_drag) /* release, reset got_click */
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002360 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 got_click = FALSE;
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002362 if (in_tab_line)
2363 {
2364 in_tab_line = FALSE;
2365 return FALSE;
2366 }
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002367 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 }
2369
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 /*
2371 * CTRL right mouse button does CTRL-T
2372 */
2373 if (is_click && (mod_mask & MOD_MASK_CTRL) && which_button == MOUSE_RIGHT)
2374 {
2375 if (State & INSERT)
2376 stuffcharReadbuff(Ctrl_O);
2377 if (count > 1)
2378 stuffnumReadbuff(count);
2379 stuffcharReadbuff(Ctrl_T);
2380 got_click = FALSE; /* ignore drag&release now */
2381 return FALSE;
2382 }
2383
2384 /*
2385 * CTRL only works with left mouse button
2386 */
2387 if ((mod_mask & MOD_MASK_CTRL) && which_button != MOUSE_LEFT)
2388 return FALSE;
2389
2390 /*
2391 * When a modifier is down, ignore drag and release events, as well as
2392 * multiple clicks and the middle mouse button.
2393 * Accept shift-leftmouse drags when 'mousemodel' is "popup.*".
2394 */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002395 if ((mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT
2396 | MOD_MASK_META))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 && (!is_click
2398 || (mod_mask & MOD_MASK_MULTI_CLICK)
2399 || which_button == MOUSE_MIDDLE)
Bram Moolenaar64969662005-12-14 21:59:55 +00002400 && !((mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 && mouse_model_popup()
2402 && which_button == MOUSE_LEFT)
Bram Moolenaar64969662005-12-14 21:59:55 +00002403 && !((mod_mask & MOD_MASK_ALT)
2404 && !mouse_model_popup()
2405 && which_button == MOUSE_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 )
2407 return FALSE;
2408
2409 /*
2410 * If the button press was used as the movement command for an operator
2411 * (eg "d<MOUSE>"), or it is the middle button that is held down, ignore
2412 * drag/release events.
2413 */
2414 if (!is_click && which_button == MOUSE_MIDDLE)
2415 return FALSE;
2416
2417 if (oap != NULL)
2418 regname = oap->regname;
2419 else
2420 regname = 0;
2421
2422 /*
2423 * Middle mouse button does a 'put' of the selected text
2424 */
2425 if (which_button == MOUSE_MIDDLE)
2426 {
2427 if (State == NORMAL)
2428 {
2429 /*
2430 * If an operator was pending, we don't know what the user wanted
2431 * to do. Go back to normal mode: Clear the operator and beep().
2432 */
2433 if (oap != NULL && oap->op_type != OP_NOP)
2434 {
2435 clearopbeep(oap);
2436 return FALSE;
2437 }
2438
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 /*
2440 * If visual was active, yank the highlighted text and put it
2441 * before the mouse pointer position.
Bram Moolenaara350f4a2006-10-17 14:54:03 +00002442 * In Select mode replace the highlighted text with the clipboard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 */
2444 if (VIsual_active)
2445 {
Bram Moolenaara350f4a2006-10-17 14:54:03 +00002446 if (VIsual_select)
2447 {
2448 stuffcharReadbuff(Ctrl_G);
Bram Moolenaar2d8b2d82006-10-17 20:38:28 +00002449 stuffReadbuff((char_u *)"\"+p");
Bram Moolenaara350f4a2006-10-17 14:54:03 +00002450 }
2451 else
2452 {
2453 stuffcharReadbuff('y');
2454 stuffcharReadbuff(K_MIDDLEMOUSE);
2455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 do_always = TRUE; /* ignore 'mouse' setting next time */
2457 return FALSE;
2458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 /*
2460 * The rest is below jump_to_mouse()
2461 */
2462 }
2463
2464 else if ((State & INSERT) == 0)
2465 return FALSE;
2466
2467 /*
2468 * Middle click in insert mode doesn't move the mouse, just insert the
2469 * contents of a register. '.' register is special, can't insert that
2470 * with do_put().
2471 * Also paste at the cursor if the current mode isn't in 'mouse' (only
2472 * happens for the GUI).
2473 */
2474 if ((State & INSERT) || !mouse_has(MOUSE_NORMAL))
2475 {
2476 if (regname == '.')
2477 insert_reg(regname, TRUE);
2478 else
2479 {
2480#ifdef FEAT_CLIPBOARD
2481 if (clip_star.available && regname == 0)
2482 regname = '*';
2483#endif
2484 if ((State & REPLACE_FLAG) && !yank_register_mline(regname))
2485 insert_reg(regname, TRUE);
2486 else
2487 {
2488 do_put(regname, BACKWARD, 1L, fixindent | PUT_CURSEND);
2489
2490 /* Repeat it with CTRL-R CTRL-O r or CTRL-R CTRL-P r */
2491 AppendCharToRedobuff(Ctrl_R);
2492 AppendCharToRedobuff(fixindent ? Ctrl_P : Ctrl_O);
2493 AppendCharToRedobuff(regname == 0 ? '"' : regname);
2494 }
2495 }
2496 return FALSE;
2497 }
2498 }
2499
2500 /* When dragging or button-up stay in the same window. */
2501 if (!is_click)
2502 jump_flags |= MOUSE_FOCUS | MOUSE_DID_MOVE;
2503
2504 start_visual.lnum = 0;
2505
Bram Moolenaarf740b292006-02-16 22:11:02 +00002506 /* Check for clicking in the tab page line. */
2507 if (mouse_row == 0 && firstwin->w_winrow > 0)
2508 {
Bram Moolenaara7241f52008-06-24 20:39:31 +00002509 if (is_drag)
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002510 {
2511 if (in_tab_line)
2512 {
2513 c1 = TabPageIdxs[mouse_col];
Bram Moolenaar4a4b8212015-09-08 17:50:41 +02002514 tabpage_move(c1 <= 0 ? 9999 : c1 < tabpage_index(curtab)
2515 ? c1 - 1 : c1);
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002516 }
Bram Moolenaara7241f52008-06-24 20:39:31 +00002517 return FALSE;
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002518 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002519
Bram Moolenaarf740b292006-02-16 22:11:02 +00002520 /* click in a tab selects that tab page */
2521 if (is_click
2522# ifdef FEAT_CMDWIN
2523 && cmdwin_type == 0
2524# endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002525 && mouse_col < Columns)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002526 {
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002527 in_tab_line = TRUE;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002528 c1 = TabPageIdxs[mouse_col];
2529 if (c1 >= 0)
2530 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002531 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2532 {
2533 /* double click opens new page */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002534 end_visual_mode();
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002535 tabpage_new();
2536 tabpage_move(c1 == 0 ? 9999 : c1 - 1);
2537 }
2538 else
2539 {
2540 /* Go to specified tab page, or next one if not clicking
2541 * on a label. */
2542 goto_tabpage(c1);
2543
2544 /* It's like clicking on the status line of a window. */
2545 if (curwin != old_curwin)
2546 end_visual_mode();
2547 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002548 }
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002549 else
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002550 {
2551 tabpage_T *tp;
2552
2553 /* Close the current or specified tab page. */
2554 if (c1 == -999)
2555 tp = curtab;
2556 else
2557 tp = find_tabpage(-c1);
2558 if (tp == curtab)
2559 {
2560 if (first_tabpage->tp_next != NULL)
2561 tabpage_close(FALSE);
2562 }
2563 else if (tp != NULL)
2564 tabpage_close_other(tp, FALSE);
2565 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002566 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002567 return TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002568 }
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002569 else if (is_drag && in_tab_line)
2570 {
2571 c1 = TabPageIdxs[mouse_col];
2572 tabpage_move(c1 <= 0 ? 9999 : c1 - 1);
2573 return FALSE;
2574 }
2575
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 /*
2577 * When 'mousemodel' is "popup" or "popup_setpos", translate mouse events:
2578 * right button up -> pop-up menu
2579 * shift-left button -> right button
Bram Moolenaar64969662005-12-14 21:59:55 +00002580 * alt-left button -> alt-right button
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 */
2582 if (mouse_model_popup())
2583 {
2584 if (which_button == MOUSE_RIGHT
2585 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2586 {
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00002587#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002589 || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_PHOTON) \
2590 || defined(FEAT_TERM_POPUP_MENU)
2591# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 if (gui.in_use)
2593 {
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002594# if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
2595 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2596 if (!is_click)
2597 /* Ignore right button release events, only shows the popup
2598 * menu on the button down event. */
2599 return FALSE;
2600# endif
2601# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN)
2602 if (is_click || is_drag)
2603 /* Ignore right button down and drag mouse events. Windows
2604 * only shows the popup menu on the button up event. */
2605 return FALSE;
2606# endif
2607 }
2608# endif
2609# if defined(FEAT_GUI) && defined(FEAT_TERM_POPUP_MENU)
2610 else
2611# endif
2612# if defined(FEAT_TERM_POPUP_MENU)
2613 if (!is_click)
2614 /* Ignore right button release events, only shows the popup
2615 * menu on the button down event. */
2616 return FALSE;
2617#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002619 jump_flags = 0;
2620 if (STRCMP(p_mousem, "popup_setpos") == 0)
2621 {
2622 /* First set the cursor position before showing the popup
2623 * menu. */
2624 if (VIsual_active)
2625 {
2626 pos_T m_pos;
2627
2628 /*
2629 * set MOUSE_MAY_STOP_VIS if we are outside the
2630 * selection or the current window (might have false
2631 * negative here)
2632 */
2633 if (mouse_row < curwin->w_winrow
2634 || mouse_row
2635 > (curwin->w_winrow + curwin->w_height))
2636 jump_flags = MOUSE_MAY_STOP_VIS;
2637 else if (get_fpos_of_mouse(&m_pos) != IN_BUFFER)
2638 jump_flags = MOUSE_MAY_STOP_VIS;
2639 else
2640 {
2641 if ((LT_POS(curwin->w_cursor, VIsual)
2642 && (LT_POS(m_pos, curwin->w_cursor)
2643 || LT_POS(VIsual, m_pos)))
2644 || (LT_POS(VIsual, curwin->w_cursor)
2645 && (LT_POS(m_pos, VIsual)
2646 || LT_POS(curwin->w_cursor, m_pos))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 {
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002648 jump_flags = MOUSE_MAY_STOP_VIS;
2649 }
2650 else if (VIsual_mode == Ctrl_V)
2651 {
2652 getvcols(curwin, &curwin->w_cursor, &VIsual,
2653 &leftcol, &rightcol);
2654 getvcol(curwin, &m_pos, NULL, &m_pos.col, NULL);
2655 if (m_pos.col < leftcol || m_pos.col > rightcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 jump_flags = MOUSE_MAY_STOP_VIS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 }
2658 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 }
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002660 else
2661 jump_flags = MOUSE_MAY_STOP_VIS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 }
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002663 if (jump_flags)
2664 {
2665 jump_flags = jump_to_mouse(jump_flags, NULL, which_button);
2666 update_curbuf(VIsual_active ? INVERTED : VALID);
2667 setcursor();
2668 out_flush(); /* Update before showing popup menu */
2669 }
2670# ifdef FEAT_MENU
2671 show_popupmenu();
2672 got_click = FALSE; /* ignore release events */
2673# endif
2674 return (jump_flags & CURSOR_MOVED) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675#else
2676 return FALSE;
2677#endif
2678 }
Bram Moolenaar64969662005-12-14 21:59:55 +00002679 if (which_button == MOUSE_LEFT
2680 && (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 {
2682 which_button = MOUSE_RIGHT;
2683 mod_mask &= ~MOD_MASK_SHIFT;
2684 }
2685 }
2686
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 if ((State & (NORMAL | INSERT))
2688 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2689 {
2690 if (which_button == MOUSE_LEFT)
2691 {
2692 if (is_click)
2693 {
2694 /* stop Visual mode for a left click in a window, but not when
2695 * on a status line */
2696 if (VIsual_active)
2697 jump_flags |= MOUSE_MAY_STOP_VIS;
2698 }
2699 else if (mouse_has(MOUSE_VISUAL))
2700 jump_flags |= MOUSE_MAY_VIS;
2701 }
2702 else if (which_button == MOUSE_RIGHT)
2703 {
2704 if (is_click && VIsual_active)
2705 {
2706 /*
2707 * Remember the start and end of visual before moving the
2708 * cursor.
2709 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002710 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 {
2712 start_visual = curwin->w_cursor;
2713 end_visual = VIsual;
2714 }
2715 else
2716 {
2717 start_visual = VIsual;
2718 end_visual = curwin->w_cursor;
2719 }
2720 }
2721 jump_flags |= MOUSE_FOCUS;
2722 if (mouse_has(MOUSE_VISUAL))
2723 jump_flags |= MOUSE_MAY_VIS;
2724 }
2725 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726
2727 /*
2728 * If an operator is pending, ignore all drags and releases until the
2729 * next mouse click.
2730 */
2731 if (!is_drag && oap != NULL && oap->op_type != OP_NOP)
2732 {
2733 got_click = FALSE;
2734 oap->motion_type = MCHAR;
2735 }
2736
2737 /* When releasing the button let jump_to_mouse() know. */
2738 if (!is_click && !is_drag)
2739 jump_flags |= MOUSE_RELEASED;
2740
2741 /*
2742 * JUMP!
2743 */
2744 jump_flags = jump_to_mouse(jump_flags,
2745 oap == NULL ? NULL : &(oap->inclusive), which_button);
Bram Moolenaareb163d72017-09-23 15:08:17 +02002746
2747#ifdef FEAT_MENU
2748 /* A click in the window toolbar has no side effects. */
2749 if (jump_flags & MOUSE_WINBAR)
2750 return FALSE;
2751#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 moved = (jump_flags & CURSOR_MOVED);
2753 in_status_line = (jump_flags & IN_STATUS_LINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 in_sep_line = (jump_flags & IN_SEP_LINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755
2756#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002757 if (isNetbeansBuffer(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 && !(jump_flags & (IN_STATUS_LINE | IN_SEP_LINE)))
2759 {
2760 int key = KEY2TERMCAP1(c);
2761
2762 if (key == (int)KE_LEFTRELEASE || key == (int)KE_MIDDLERELEASE
2763 || key == (int)KE_RIGHTRELEASE)
2764 netbeans_button_release(which_button);
2765 }
2766#endif
2767
2768 /* When jumping to another window, clear a pending operator. That's a bit
2769 * friendlier than beeping and not jumping to that window. */
2770 if (curwin != old_curwin && oap != NULL && oap->op_type != OP_NOP)
2771 clearop(oap);
2772
2773#ifdef FEAT_FOLDING
2774 if (mod_mask == 0
2775 && !is_drag
2776 && (jump_flags & (MOUSE_FOLD_CLOSE | MOUSE_FOLD_OPEN))
2777 && which_button == MOUSE_LEFT)
2778 {
2779 /* open or close a fold at this line */
2780 if (jump_flags & MOUSE_FOLD_OPEN)
2781 openFold(curwin->w_cursor.lnum, 1L);
2782 else
2783 closeFold(curwin->w_cursor.lnum, 1L);
2784 /* don't move the cursor if still in the same window */
2785 if (curwin == old_curwin)
2786 curwin->w_cursor = save_cursor;
2787 }
2788#endif
2789
2790#if defined(FEAT_CLIPBOARD) && defined(FEAT_CMDWIN)
2791 if ((jump_flags & IN_OTHER_WIN) && !VIsual_active && clip_star.available)
2792 {
2793 clip_modeless(which_button, is_click, is_drag);
2794 return FALSE;
2795 }
2796#endif
2797
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 /* Set global flag that we are extending the Visual area with mouse
Bram Moolenaarf711faf2007-05-10 16:48:19 +00002799 * dragging; temporarily minimize 'scrolloff'. */
Bram Moolenaar375e3392019-01-31 18:26:10 +01002800 if (VIsual_active && is_drag && get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 {
2802 /* In the very first line, allow scrolling one line */
2803 if (mouse_row == 0)
2804 mouse_dragging = 2;
2805 else
2806 mouse_dragging = 1;
2807 }
2808
2809 /* When dragging the mouse above the window, scroll down. */
2810 if (is_drag && mouse_row < 0 && !in_status_line)
2811 {
2812 scroll_redraw(FALSE, 1L);
2813 mouse_row = 0;
2814 }
2815
2816 if (start_visual.lnum) /* right click in visual mode */
2817 {
Bram Moolenaar64969662005-12-14 21:59:55 +00002818 /* When ALT is pressed make Visual mode blockwise. */
2819 if (mod_mask & MOD_MASK_ALT)
2820 VIsual_mode = Ctrl_V;
2821
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 /*
2823 * In Visual-block mode, divide the area in four, pick up the corner
2824 * that is in the quarter that the cursor is in.
2825 */
2826 if (VIsual_mode == Ctrl_V)
2827 {
2828 getvcols(curwin, &start_visual, &end_visual, &leftcol, &rightcol);
2829 if (curwin->w_curswant > (leftcol + rightcol) / 2)
2830 end_visual.col = leftcol;
2831 else
2832 end_visual.col = rightcol;
Bram Moolenaarcde88542015-08-11 19:14:00 +02002833 if (curwin->w_cursor.lnum >=
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 (start_visual.lnum + end_visual.lnum) / 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 end_visual.lnum = start_visual.lnum;
2836
2837 /* move VIsual to the right column */
2838 start_visual = curwin->w_cursor; /* save the cursor pos */
2839 curwin->w_cursor = end_visual;
2840 coladvance(end_visual.col);
2841 VIsual = curwin->w_cursor;
2842 curwin->w_cursor = start_visual; /* restore the cursor */
2843 }
2844 else
2845 {
2846 /*
2847 * If the click is before the start of visual, change the start.
2848 * If the click is after the end of visual, change the end. If
2849 * the click is inside the visual, change the closest side.
2850 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002851 if (LT_POS(curwin->w_cursor, start_visual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 VIsual = end_visual;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002853 else if (LT_POS(end_visual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 VIsual = start_visual;
2855 else
2856 {
2857 /* In the same line, compare column number */
2858 if (end_visual.lnum == start_visual.lnum)
2859 {
2860 if (curwin->w_cursor.col - start_visual.col >
2861 end_visual.col - curwin->w_cursor.col)
2862 VIsual = start_visual;
2863 else
2864 VIsual = end_visual;
2865 }
2866
2867 /* In different lines, compare line number */
2868 else
2869 {
2870 diff = (curwin->w_cursor.lnum - start_visual.lnum) -
2871 (end_visual.lnum - curwin->w_cursor.lnum);
2872
2873 if (diff > 0) /* closest to end */
2874 VIsual = start_visual;
2875 else if (diff < 0) /* closest to start */
2876 VIsual = end_visual;
2877 else /* in the middle line */
2878 {
2879 if (curwin->w_cursor.col <
2880 (start_visual.col + end_visual.col) / 2)
2881 VIsual = end_visual;
2882 else
2883 VIsual = start_visual;
2884 }
2885 }
2886 }
2887 }
2888 }
2889 /*
2890 * If Visual mode started in insert mode, execute "CTRL-O"
2891 */
2892 else if ((State & INSERT) && VIsual_active)
2893 stuffcharReadbuff(Ctrl_O);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894
2895 /*
2896 * Middle mouse click: Put text before cursor.
2897 */
2898 if (which_button == MOUSE_MIDDLE)
2899 {
2900#ifdef FEAT_CLIPBOARD
2901 if (clip_star.available && regname == 0)
2902 regname = '*';
2903#endif
2904 if (yank_register_mline(regname))
2905 {
2906 if (mouse_past_bottom)
2907 dir = FORWARD;
2908 }
2909 else if (mouse_past_eol)
2910 dir = FORWARD;
2911
2912 if (fixindent)
2913 {
2914 c1 = (dir == BACKWARD) ? '[' : ']';
2915 c2 = 'p';
2916 }
2917 else
2918 {
2919 c1 = (dir == FORWARD) ? 'p' : 'P';
2920 c2 = NUL;
2921 }
2922 prep_redo(regname, count, NUL, c1, NUL, c2, NUL);
2923
2924 /*
2925 * Remember where the paste started, so in edit() Insstart can be set
2926 * to this position
2927 */
2928 if (restart_edit != 0)
2929 where_paste_started = curwin->w_cursor;
2930 do_put(regname, dir, count, fixindent | PUT_CURSEND);
2931 }
2932
Bram Moolenaar4033c552017-09-16 20:54:51 +02002933#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 /*
2935 * Ctrl-Mouse click or double click in a quickfix window jumps to the
2936 * error under the mouse pointer.
2937 */
2938 else if (((mod_mask & MOD_MASK_CTRL)
2939 || (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2940 && bt_quickfix(curbuf))
2941 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00002942 if (curwin->w_llist_ref == NULL) /* quickfix window */
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +01002943 do_cmdline_cmd((char_u *)".cc");
Bram Moolenaar28c258f2006-01-25 22:02:51 +00002944 else /* location list window */
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +01002945 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 got_click = FALSE; /* ignore drag&release now */
2947 }
2948#endif
2949
2950 /*
2951 * Ctrl-Mouse click (or double click in a help window) jumps to the tag
2952 * under the mouse pointer.
2953 */
2954 else if ((mod_mask & MOD_MASK_CTRL) || (curbuf->b_help
2955 && (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK))
2956 {
2957 if (State & INSERT)
2958 stuffcharReadbuff(Ctrl_O);
2959 stuffcharReadbuff(Ctrl_RSB);
2960 got_click = FALSE; /* ignore drag&release now */
2961 }
2962
2963 /*
2964 * Shift-Mouse click searches for the next occurrence of the word under
2965 * the mouse pointer
2966 */
2967 else if ((mod_mask & MOD_MASK_SHIFT))
2968 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002969 if ((State & INSERT) || (VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 stuffcharReadbuff(Ctrl_O);
2971 if (which_button == MOUSE_LEFT)
2972 stuffcharReadbuff('*');
2973 else /* MOUSE_RIGHT */
2974 stuffcharReadbuff('#');
2975 }
2976
2977 /* Handle double clicks, unless on status line */
2978 else if (in_status_line)
2979 {
2980#ifdef FEAT_MOUSESHAPE
2981 if ((is_drag || is_click) && !drag_status_line)
2982 {
2983 drag_status_line = TRUE;
2984 update_mouseshape(-1);
2985 }
2986#endif
2987 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 else if (in_sep_line)
2989 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02002990#ifdef FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 if ((is_drag || is_click) && !drag_sep_line)
2992 {
2993 drag_sep_line = TRUE;
2994 update_mouseshape(-1);
2995 }
Bram Moolenaar829c8e32016-03-19 23:07:23 +01002996#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02002997 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 else if ((mod_mask & MOD_MASK_MULTI_CLICK) && (State & (NORMAL | INSERT))
2999 && mouse_has(MOUSE_VISUAL))
3000 {
3001 if (is_click || !VIsual_active)
3002 {
3003 if (VIsual_active)
3004 orig_cursor = VIsual;
3005 else
3006 {
3007 check_visual_highlight();
3008 VIsual = curwin->w_cursor;
3009 orig_cursor = VIsual;
3010 VIsual_active = TRUE;
3011 VIsual_reselect = TRUE;
3012 /* start Select mode if 'selectmode' contains "mouse" */
3013 may_start_select('o');
3014 setmouse();
3015 }
3016 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
Bram Moolenaar64969662005-12-14 21:59:55 +00003017 {
3018 /* Double click with ALT pressed makes it blockwise. */
3019 if (mod_mask & MOD_MASK_ALT)
3020 VIsual_mode = Ctrl_V;
3021 else
3022 VIsual_mode = 'v';
3023 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_3CLICK)
3025 VIsual_mode = 'V';
3026 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_4CLICK)
3027 VIsual_mode = Ctrl_V;
3028#ifdef FEAT_CLIPBOARD
3029 /* Make sure the clipboard gets updated. Needed because start and
3030 * end may still be the same, and the selection needs to be owned */
3031 clip_star.vmode = NUL;
3032#endif
3033 }
3034 /*
3035 * A double click selects a word or a block.
3036 */
3037 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
3038 {
3039 pos_T *pos = NULL;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003040 int gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041
3042 if (is_click)
3043 {
3044 /* If the character under the cursor (skipping white space) is
3045 * not a word character, try finding a match and select a (),
3046 * {}, [], #if/#endif, etc. block. */
3047 end_visual = curwin->w_cursor;
Bram Moolenaar1c465442017-03-12 20:10:05 +01003048 while (gc = gchar_pos(&end_visual), VIM_ISWHITE(gc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 inc(&end_visual);
3050 if (oap != NULL)
3051 oap->motion_type = MCHAR;
3052 if (oap != NULL
3053 && VIsual_mode == 'v'
3054 && !vim_iswordc(gchar_pos(&end_visual))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003055 && EQUAL_POS(curwin->w_cursor, VIsual)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 && (pos = findmatch(oap, NUL)) != NULL)
3057 {
3058 curwin->w_cursor = *pos;
3059 if (oap->motion_type == MLINE)
3060 VIsual_mode = 'V';
3061 else if (*p_sel == 'e')
3062 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003063 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 ++VIsual.col;
3065 else
3066 ++curwin->w_cursor.col;
3067 }
3068 }
3069 }
3070
3071 if (pos == NULL && (is_click || is_drag))
3072 {
3073 /* When not found a match or when dragging: extend to include
3074 * a word. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003075 if (LT_POS(curwin->w_cursor, orig_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 {
3077 find_start_of_word(&curwin->w_cursor);
3078 find_end_of_word(&VIsual);
3079 }
3080 else
3081 {
3082 find_start_of_word(&VIsual);
3083 if (*p_sel == 'e' && *ml_get_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 curwin->w_cursor.col +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003085 (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 find_end_of_word(&curwin->w_cursor);
3087 }
3088 }
3089 curwin->w_set_curswant = TRUE;
3090 }
3091 if (is_click)
3092 redraw_curbuf_later(INVERTED); /* update the inversion */
3093 }
3094 else if (VIsual_active && !old_active)
Bram Moolenaar64969662005-12-14 21:59:55 +00003095 {
3096 if (mod_mask & MOD_MASK_ALT)
3097 VIsual_mode = Ctrl_V;
3098 else
3099 VIsual_mode = 'v';
3100 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101
3102 /* If Visual mode changed show it later. */
Bram Moolenaar28c258f2006-01-25 22:02:51 +00003103 if ((!VIsual_active && old_active && mode_displayed)
3104 || (VIsual_active && p_smd && msg_silent == 0
3105 && (!old_active || VIsual_mode != old_mode)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 redraw_cmdline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107
3108 return moved;
3109}
3110
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111/*
3112 * Move "pos" back to the start of the word it's in.
3113 */
3114 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003115find_start_of_word(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116{
3117 char_u *line;
3118 int cclass;
3119 int col;
3120
3121 line = ml_get(pos->lnum);
3122 cclass = get_mouse_class(line + pos->col);
3123
3124 while (pos->col > 0)
3125 {
3126 col = pos->col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 col -= (*mb_head_off)(line, line + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 if (get_mouse_class(line + col) != cclass)
3129 break;
3130 pos->col = col;
3131 }
3132}
3133
3134/*
3135 * Move "pos" forward to the end of the word it's in.
3136 * When 'selection' is "exclusive", the position is just after the word.
3137 */
3138 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003139find_end_of_word(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140{
3141 char_u *line;
3142 int cclass;
3143 int col;
3144
3145 line = ml_get(pos->lnum);
3146 if (*p_sel == 'e' && pos->col > 0)
3147 {
3148 --pos->col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 pos->col -= (*mb_head_off)(line, line + pos->col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 }
3151 cclass = get_mouse_class(line + pos->col);
3152 while (line[pos->col] != NUL)
3153 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003154 col = pos->col + (*mb_ptr2len)(line + pos->col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 if (get_mouse_class(line + col) != cclass)
3156 {
3157 if (*p_sel == 'e')
3158 pos->col = col;
3159 break;
3160 }
3161 pos->col = col;
3162 }
3163}
3164
3165/*
3166 * Get class of a character for selection: same class means same word.
3167 * 0: blank
3168 * 1: punctuation groups
3169 * 2: normal word character
3170 * >2: multi-byte word character.
3171 */
3172 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003173get_mouse_class(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174{
3175 int c;
3176
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 if (has_mbyte && MB_BYTE2LEN(p[0]) > 1)
3178 return mb_get_class(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179
3180 c = *p;
3181 if (c == ' ' || c == '\t')
3182 return 0;
3183
3184 if (vim_iswordc(c))
3185 return 2;
3186
3187 /*
3188 * There are a few special cases where we want certain combinations of
3189 * characters to be considered as a single word. These are things like
3190 * "->", "/ *", "*=", "+=", "&=", "<=", ">=", "!=" etc. Otherwise, each
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02003191 * character is in its own class.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 */
3193 if (c != NUL && vim_strchr((char_u *)"-+*/%<>&|^!=", c) != NULL)
3194 return 1;
3195 return c;
3196}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197#endif /* FEAT_MOUSE */
3198
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199/*
3200 * Check if highlighting for visual mode is possible, give a warning message
3201 * if not.
3202 */
3203 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003204check_visual_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205{
3206 static int did_check = FALSE;
3207
3208 if (full_screen)
3209 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01003210 if (!did_check && HL_ATTR(HLF_V) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003211 msg(_("Warning: terminal cannot highlight"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 did_check = TRUE;
3213 }
3214}
3215
3216/*
Bram Moolenaar66fa2712006-01-22 23:22:22 +00003217 * End Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 * This function should ALWAYS be called to end Visual mode, except from
3219 * do_pending_operator().
3220 */
3221 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003222end_visual_mode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223{
3224#ifdef FEAT_CLIPBOARD
3225 /*
3226 * If we are using the clipboard, then remember what was selected in case
3227 * we need to paste it somewhere while we still own the selection.
3228 * Only do this when the clipboard is already owned. Don't want to grab
3229 * the selection when hitting ESC.
3230 */
3231 if (clip_star.available && clip_star.owned)
3232 clip_auto_select();
3233#endif
3234
3235 VIsual_active = FALSE;
3236#ifdef FEAT_MOUSE
3237 setmouse();
3238 mouse_dragging = 0;
3239#endif
3240
3241 /* Save the current VIsual area for '< and '> marks, and "gv" */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003242 curbuf->b_visual.vi_mode = VIsual_mode;
3243 curbuf->b_visual.vi_start = VIsual;
3244 curbuf->b_visual.vi_end = curwin->w_cursor;
3245 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246#ifdef FEAT_EVAL
3247 curbuf->b_visual_mode_eval = VIsual_mode;
3248#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249 if (!virtual_active())
3250 curwin->w_cursor.coladd = 0;
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02003251 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003253 adjust_cursor_eol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254}
3255
3256/*
3257 * Reset VIsual_active and VIsual_reselect.
3258 */
3259 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003260reset_VIsual_and_resel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261{
3262 if (VIsual_active)
3263 {
3264 end_visual_mode();
3265 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3266 }
3267 VIsual_reselect = FALSE;
3268}
3269
3270/*
3271 * Reset VIsual_active and VIsual_reselect if it's set.
3272 */
3273 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003274reset_VIsual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275{
3276 if (VIsual_active)
3277 {
3278 end_visual_mode();
3279 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3280 VIsual_reselect = FALSE;
3281 }
3282}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284/*
3285 * Check for a balloon-eval special item to include when searching for an
3286 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
3287 * Returns TRUE if the character at "*ptr" should be included.
3288 * "dir" is FORWARD or BACKWARD, the direction of searching.
3289 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
3290 * "bnp" points to a counter for square brackets.
3291 */
3292 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003293find_is_eval_item(
3294 char_u *ptr,
3295 int *colp,
3296 int *bnp,
3297 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298{
3299 /* Accept everything inside []. */
3300 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
3301 ++*bnp;
3302 if (*bnp > 0)
3303 {
3304 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
3305 --*bnp;
3306 return TRUE;
3307 }
3308
3309 /* skip over "s.var" */
3310 if (*ptr == '.')
3311 return TRUE;
3312
3313 /* two-character item: s->var */
3314 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
3315 && ptr[dir == BACKWARD ? -1 : 0] == '-')
3316 {
3317 *colp += dir;
3318 return TRUE;
3319 }
3320 return FALSE;
3321}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322
3323/*
3324 * Find the identifier under or to the right of the cursor.
3325 * "find_type" can have one of three values:
3326 * FIND_IDENT: find an identifier (keyword)
3327 * FIND_STRING: find any non-white string
3328 * FIND_IDENT + FIND_STRING: find any non-white string, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003329 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330 *
3331 * There are three steps:
3332 * 1. Search forward for the start of an identifier/string. Doesn't move if
3333 * already on one.
3334 * 2. Search backward for the start of this identifier/string.
3335 * This doesn't match the real Vi but I like it a little better and it
3336 * shouldn't bother anyone.
3337 * 3. Search forward to the end of this identifier/string.
3338 * When FIND_IDENT isn't defined, we backup until a blank.
3339 *
3340 * Returns the length of the string, or zero if no string is found.
3341 * If a string is found, a pointer to the string is put in "*string". This
3342 * string is not always NUL terminated.
3343 */
3344 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003345find_ident_under_cursor(char_u **string, int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346{
3347 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
3348 curwin->w_cursor.col, string, find_type);
3349}
3350
3351/*
3352 * Like find_ident_under_cursor(), but for any window and any position.
3353 * However: Uses 'iskeyword' from the current window!.
3354 */
3355 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003356find_ident_at_pos(
3357 win_T *wp,
3358 linenr_T lnum,
3359 colnr_T startcol,
3360 char_u **string,
3361 int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362{
3363 char_u *ptr;
3364 int col = 0; /* init to shut up GCC */
3365 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 int this_class = 0;
3367 int prev_class;
3368 int prevcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 int bn = 0; /* bracket nesting */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370
3371 /*
3372 * if i == 0: try to find an identifier
3373 * if i == 1: try to find any non-white string
3374 */
3375 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
3376 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
3377 {
3378 /*
3379 * 1. skip to start of identifier/string
3380 */
3381 col = startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 if (has_mbyte)
3383 {
3384 while (ptr[col] != NUL)
3385 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 /* Stop at a ']' to evaluate "a[x]". */
3387 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3388 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389 this_class = mb_get_class(ptr + col);
3390 if (this_class != 0 && (i == 1 || this_class != 1))
3391 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003392 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393 }
3394 }
3395 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 while (ptr[col] != NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01003397 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 )
3400 ++col;
3401
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 /* When starting on a ']' count it, so that we include the '['. */
3403 bn = ptr[col] == ']';
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404
3405 /*
3406 * 2. Back up to start of identifier/string.
3407 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 if (has_mbyte)
3409 {
3410 /* Remember class of character under cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3412 this_class = mb_get_class((char_u *)"a");
3413 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 this_class = mb_get_class(ptr + col);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003415 while (col > 0 && this_class != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 {
3417 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
3418 prev_class = mb_get_class(ptr + prevcol);
3419 if (this_class != prev_class
3420 && (i == 0
3421 || prev_class == 0
3422 || (find_type & FIND_IDENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423 && (!(find_type & FIND_EVAL)
3424 || prevcol == 0
3425 || !find_is_eval_item(ptr + prevcol, &prevcol,
3426 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 )
3428 break;
3429 col = prevcol;
3430 }
3431
3432 /* If we don't want just any old string, or we've found an
3433 * identifier, stop searching. */
3434 if (this_class > 2)
3435 this_class = 2;
3436 if (!(find_type & FIND_STRING) || this_class == 2)
3437 break;
3438 }
3439 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 {
3441 while (col > 0
3442 && ((i == 0
3443 ? vim_iswordc(ptr[col - 1])
Bram Moolenaar1c465442017-03-12 20:10:05 +01003444 : (!VIM_ISWHITE(ptr[col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 && (!(find_type & FIND_IDENT)
3446 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 || ((find_type & FIND_EVAL)
3448 && col > 1
3449 && find_is_eval_item(ptr + col - 1, &col,
3450 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 ))
3452 --col;
3453
3454 /* If we don't want just any old string, or we've found an
3455 * identifier, stop searching. */
3456 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
3457 break;
3458 }
3459 }
3460
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003461 if (ptr[col] == NUL || (i == 0
3462 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 {
Bram Moolenaar17627312019-06-02 19:53:44 +02003464 // didn't find an identifier or string
3465 if ((find_type & FIND_NOERROR) == 0)
3466 {
3467 if (find_type & FIND_STRING)
3468 emsg(_("E348: No string under cursor"));
3469 else
3470 emsg(_(e_noident));
3471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 return 0;
3473 }
3474 ptr += col;
3475 *string = ptr;
3476
3477 /*
3478 * 3. Find the end if the identifier/string.
3479 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 bn = 0;
3481 startcol -= col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 if (has_mbyte)
3484 {
3485 /* Search for point of changing multibyte character class. */
3486 this_class = mb_get_class(ptr);
3487 while (ptr[col] != NUL
3488 && ((i == 0 ? mb_get_class(ptr + col) == this_class
3489 : mb_get_class(ptr + col) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 || ((find_type & FIND_EVAL)
3491 && col <= (int)startcol
3492 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 ))
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003494 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 }
3496 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 while ((i == 0 ? vim_iswordc(ptr[col])
Bram Moolenaar1c465442017-03-12 20:10:05 +01003498 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 || ((find_type & FIND_EVAL)
3500 && col <= (int)startcol
3501 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503 ++col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504
3505 return col;
3506}
3507
3508/*
3509 * Prepare for redo of a normal command.
3510 */
3511 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003512prep_redo_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513{
3514 prep_redo(cap->oap->regname, cap->count0,
3515 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
3516}
3517
3518/*
3519 * Prepare for redo of any command.
3520 * Note that only the last argument can be a multi-byte char.
3521 */
3522 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003523prep_redo(
3524 int regname,
3525 long num,
3526 int cmd1,
3527 int cmd2,
3528 int cmd3,
3529 int cmd4,
3530 int cmd5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531{
3532 ResetRedobuff();
3533 if (regname != 0) /* yank from specified buffer */
3534 {
3535 AppendCharToRedobuff('"');
3536 AppendCharToRedobuff(regname);
3537 }
3538 if (num)
3539 AppendNumberToRedobuff(num);
3540
3541 if (cmd1 != NUL)
3542 AppendCharToRedobuff(cmd1);
3543 if (cmd2 != NUL)
3544 AppendCharToRedobuff(cmd2);
3545 if (cmd3 != NUL)
3546 AppendCharToRedobuff(cmd3);
3547 if (cmd4 != NUL)
3548 AppendCharToRedobuff(cmd4);
3549 if (cmd5 != NUL)
3550 AppendCharToRedobuff(cmd5);
3551}
3552
3553/*
3554 * check for operator active and clear it
3555 *
3556 * return TRUE if operator was active
3557 */
3558 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003559checkclearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560{
3561 if (oap->op_type == OP_NOP)
3562 return FALSE;
3563 clearopbeep(oap);
3564 return TRUE;
3565}
3566
3567/*
Bram Moolenaarc980de32007-05-06 11:59:04 +00003568 * Check for operator or Visual active. Clear active operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 *
Bram Moolenaarc980de32007-05-06 11:59:04 +00003570 * Return TRUE if operator or Visual was active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 */
3572 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003573checkclearopq(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003575 if (oap->op_type == OP_NOP && !VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 return FALSE;
3577 clearopbeep(oap);
3578 return TRUE;
3579}
3580
3581 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003582clearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583{
3584 oap->op_type = OP_NOP;
3585 oap->regname = 0;
3586 oap->motion_force = NUL;
3587 oap->use_reg_one = FALSE;
3588}
3589
3590 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003591clearopbeep(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592{
3593 clearop(oap);
3594 beep_flush();
3595}
3596
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597/*
3598 * Remove the shift modifier from a special key.
3599 */
3600 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003601unshift_special(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602{
3603 switch (cap->cmdchar)
3604 {
3605 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
3606 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
3607 case K_S_UP: cap->cmdchar = K_UP; break;
3608 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
3609 case K_S_HOME: cap->cmdchar = K_HOME; break;
3610 case K_S_END: cap->cmdchar = K_END; break;
3611 }
3612 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
3613}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02003615/*
3616 * If the mode is currently displayed clear the command line or update the
3617 * command displayed.
3618 */
3619 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003620may_clear_cmdline(void)
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02003621{
3622 if (mode_displayed)
3623 clear_cmdline = TRUE; /* unshow visual mode later */
3624#ifdef FEAT_CMDL_INFO
3625 else
3626 clear_showcmd();
3627#endif
3628}
3629
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630#if defined(FEAT_CMDL_INFO) || defined(PROTO)
3631/*
3632 * Routines for displaying a partly typed command
3633 */
3634
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003635#define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636static char_u showcmd_buf[SHOWCMD_BUFLEN];
3637static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; /* For push_showcmd() */
3638static int showcmd_is_clear = TRUE;
3639static int showcmd_visual = FALSE;
3640
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003641static void display_showcmd(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642
3643 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003644clear_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645{
3646 if (!p_sc)
3647 return;
3648
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 if (VIsual_active && !char_avail())
3650 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003651 int cursor_bot = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 long lines;
3653 colnr_T leftcol, rightcol;
3654 linenr_T top, bot;
3655
3656 /* Show the size of the Visual area. */
Bram Moolenaar81d00072009-04-29 15:41:40 +00003657 if (cursor_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 {
3659 top = VIsual.lnum;
3660 bot = curwin->w_cursor.lnum;
3661 }
3662 else
3663 {
3664 top = curwin->w_cursor.lnum;
3665 bot = VIsual.lnum;
3666 }
3667# ifdef FEAT_FOLDING
3668 /* Include closed folds as a whole. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02003669 (void)hasFolding(top, &top, NULL);
3670 (void)hasFolding(bot, NULL, &bot);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671# endif
3672 lines = bot - top + 1;
3673
3674 if (VIsual_mode == Ctrl_V)
3675 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003676# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00003677 char_u *saved_sbr = p_sbr;
3678
3679 /* Make 'sbr' empty for a moment to get the correct size. */
3680 p_sbr = empty_option;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003681# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003683# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00003684 p_sbr = saved_sbr;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003685# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
3687 (long)(rightcol - leftcol + 1));
3688 }
3689 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
3690 sprintf((char *)showcmd_buf, "%ld", lines);
3691 else
Bram Moolenaarf91787c2010-07-17 12:47:16 +02003692 {
3693 char_u *s, *e;
3694 int l;
3695 int bytes = 0;
3696 int chars = 0;
3697
3698 if (cursor_bot)
3699 {
3700 s = ml_get_pos(&VIsual);
3701 e = ml_get_cursor();
3702 }
3703 else
3704 {
3705 s = ml_get_cursor();
3706 e = ml_get_pos(&VIsual);
3707 }
3708 while ((*p_sel != 'e') ? s <= e : s < e)
3709 {
3710 l = (*mb_ptr2len)(s);
3711 if (l == 0)
3712 {
3713 ++bytes;
3714 ++chars;
3715 break; /* end of line */
3716 }
3717 bytes += l;
3718 ++chars;
3719 s += l;
3720 }
3721 if (bytes == chars)
3722 sprintf((char *)showcmd_buf, "%d", chars);
3723 else
3724 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes);
3725 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 showcmd_buf[SHOWCMD_COLS] = NUL; /* truncate */
3727 showcmd_visual = TRUE;
3728 }
3729 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 {
3731 showcmd_buf[0] = NUL;
3732 showcmd_visual = FALSE;
3733
3734 /* Don't actually display something if there is nothing to clear. */
3735 if (showcmd_is_clear)
3736 return;
3737 }
3738
3739 display_showcmd();
3740}
3741
3742/*
3743 * Add 'c' to string of shown command chars.
3744 * Return TRUE if output has been written (and setcursor() has been called).
3745 */
3746 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003747add_to_showcmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748{
3749 char_u *p;
3750 int old_len;
3751 int extra_len;
3752 int overflow;
3753#if defined(FEAT_MOUSE)
3754 int i;
3755 static int ignore[] =
3756 {
Bram Moolenaarcf0c5542006-02-09 23:48:02 +00003757# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
3759 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
Bram Moolenaarcf0c5542006-02-09 23:48:02 +00003760# endif
Bram Moolenaarec2da362017-01-21 20:04:22 +01003761 K_IGNORE, K_PS,
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003762 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
3764 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003765 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003767 K_CURSORHOLD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 0
3769 };
3770#endif
3771
Bram Moolenaar09df3122006-01-23 22:23:09 +00003772 if (!p_sc || msg_silent != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 return FALSE;
3774
3775 if (showcmd_visual)
3776 {
3777 showcmd_buf[0] = NUL;
3778 showcmd_visual = FALSE;
3779 }
3780
3781#if defined(FEAT_MOUSE)
3782 /* Ignore keys that are scrollbar updates and mouse clicks */
3783 if (IS_SPECIAL(c))
3784 for (i = 0; ignore[i] != 0; ++i)
3785 if (ignore[i] == c)
3786 return FALSE;
3787#endif
3788
3789 p = transchar(c);
Bram Moolenaar7ba07412013-12-11 14:55:01 +01003790 if (*p == ' ')
3791 STRCPY(p, "<20>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792 old_len = (int)STRLEN(showcmd_buf);
3793 extra_len = (int)STRLEN(p);
3794 overflow = old_len + extra_len - SHOWCMD_COLS;
3795 if (overflow > 0)
Bram Moolenaarb0db5692007-08-14 20:54:49 +00003796 mch_memmove(showcmd_buf, showcmd_buf + overflow,
3797 old_len - overflow + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 STRCAT(showcmd_buf, p);
3799
3800 if (char_avail())
3801 return FALSE;
3802
3803 display_showcmd();
3804
3805 return TRUE;
3806}
3807
3808 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003809add_to_showcmd_c(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810{
3811 if (!add_to_showcmd(c))
3812 setcursor();
3813}
3814
3815/*
3816 * Delete 'len' characters from the end of the shown command.
3817 */
3818 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003819del_from_showcmd(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820{
3821 int old_len;
3822
3823 if (!p_sc)
3824 return;
3825
3826 old_len = (int)STRLEN(showcmd_buf);
3827 if (len > old_len)
3828 len = old_len;
3829 showcmd_buf[old_len - len] = NUL;
3830
3831 if (!char_avail())
3832 display_showcmd();
3833}
3834
3835/*
3836 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
3837 * something and there is a partial mapping.
3838 */
3839 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003840push_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841{
3842 if (p_sc)
3843 STRCPY(old_showcmd_buf, showcmd_buf);
3844}
3845
3846 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003847pop_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848{
3849 if (!p_sc)
3850 return;
3851
3852 STRCPY(showcmd_buf, old_showcmd_buf);
3853
3854 display_showcmd();
3855}
3856
3857 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003858display_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859{
3860 int len;
3861
3862 cursor_off();
3863
3864 len = (int)STRLEN(showcmd_buf);
3865 if (len == 0)
3866 showcmd_is_clear = TRUE;
3867 else
3868 {
3869 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
3870 showcmd_is_clear = FALSE;
3871 }
3872
3873 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00003874 * clear the rest of an old message by outputting up to SHOWCMD_COLS
3875 * spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 */
3877 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
3878
3879 setcursor(); /* put cursor back where it belongs */
3880}
3881#endif
3882
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883/*
3884 * When "check" is FALSE, prepare for commands that scroll the window.
3885 * When "check" is TRUE, take care of scroll-binding after the window has
3886 * scrolled. Called from normal_cmd() and edit().
3887 */
3888 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003889do_check_scrollbind(int check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890{
3891 static win_T *old_curwin = NULL;
3892 static linenr_T old_topline = 0;
3893#ifdef FEAT_DIFF
3894 static int old_topfill = 0;
3895#endif
3896 static buf_T *old_buf = NULL;
3897 static colnr_T old_leftcol = 0;
3898
3899 if (check && curwin->w_p_scb)
3900 {
3901 /* If a ":syncbind" command was just used, don't scroll, only reset
3902 * the values. */
3903 if (did_syncbind)
3904 did_syncbind = FALSE;
3905 else if (curwin == old_curwin)
3906 {
3907 /*
3908 * Synchronize other windows, as necessary according to
3909 * 'scrollbind'. Don't do this after an ":edit" command, except
3910 * when 'diff' is set.
3911 */
3912 if ((curwin->w_buffer == old_buf
3913#ifdef FEAT_DIFF
3914 || curwin->w_p_diff
3915#endif
3916 )
3917 && (curwin->w_topline != old_topline
3918#ifdef FEAT_DIFF
3919 || curwin->w_topfill != old_topfill
3920#endif
3921 || curwin->w_leftcol != old_leftcol))
3922 {
3923 check_scrollbind(curwin->w_topline - old_topline,
3924 (long)(curwin->w_leftcol - old_leftcol));
3925 }
3926 }
3927 else if (vim_strchr(p_sbo, 'j')) /* jump flag set in 'scrollopt' */
3928 {
3929 /*
3930 * When switching between windows, make sure that the relative
3931 * vertical offset is valid for the new window. The relative
3932 * offset is invalid whenever another 'scrollbind' window has
3933 * scrolled to a point that would force the current window to
3934 * scroll past the beginning or end of its buffer. When the
3935 * resync is performed, some of the other 'scrollbind' windows may
3936 * need to jump so that the current window's relative position is
3937 * visible on-screen.
3938 */
3939 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
3940 }
3941 curwin->w_scbind_pos = curwin->w_topline;
3942 }
3943
3944 old_curwin = curwin;
3945 old_topline = curwin->w_topline;
3946#ifdef FEAT_DIFF
3947 old_topfill = curwin->w_topfill;
3948#endif
3949 old_buf = curwin->w_buffer;
3950 old_leftcol = curwin->w_leftcol;
3951}
3952
3953/*
3954 * Synchronize any windows that have "scrollbind" set, based on the
3955 * number of rows by which the current window has changed
3956 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
3957 */
3958 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003959check_scrollbind(linenr_T topline_diff, long leftcol_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960{
3961 int want_ver;
3962 int want_hor;
3963 win_T *old_curwin = curwin;
3964 buf_T *old_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 int old_VIsual_select = VIsual_select;
3966 int old_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 colnr_T tgt_leftcol = curwin->w_leftcol;
3968 long topline;
3969 long y;
3970
3971 /*
3972 * check 'scrollopt' string for vertical and horizontal scroll options
3973 */
3974 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
3975#ifdef FEAT_DIFF
3976 want_ver |= old_curwin->w_p_diff;
3977#endif
3978 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
3979
3980 /*
3981 * loop through the scrollbound windows and scroll accordingly
3982 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02003984 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 {
3986 curbuf = curwin->w_buffer;
3987 /* skip original window and windows with 'noscrollbind' */
3988 if (curwin != old_curwin && curwin->w_p_scb)
3989 {
3990 /*
3991 * do the vertical scroll
3992 */
3993 if (want_ver)
3994 {
3995#ifdef FEAT_DIFF
3996 if (old_curwin->w_p_diff && curwin->w_p_diff)
3997 {
3998 diff_set_topline(old_curwin, curwin);
3999 }
4000 else
4001#endif
4002 {
4003 curwin->w_scbind_pos += topline_diff;
4004 topline = curwin->w_scbind_pos;
4005 if (topline > curbuf->b_ml.ml_line_count)
4006 topline = curbuf->b_ml.ml_line_count;
4007 if (topline < 1)
4008 topline = 1;
4009
4010 y = topline - curwin->w_topline;
4011 if (y > 0)
4012 scrollup(y, FALSE);
4013 else
4014 scrolldown(-y, FALSE);
4015 }
4016
4017 redraw_later(VALID);
4018 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 }
4021
4022 /*
4023 * do the horizontal scroll
4024 */
4025 if (want_hor && curwin->w_leftcol != tgt_leftcol)
4026 {
4027 curwin->w_leftcol = tgt_leftcol;
4028 leftcol_changed();
4029 }
4030 }
4031 }
4032
4033 /*
4034 * reset current-window
4035 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 VIsual_select = old_VIsual_select;
4037 VIsual_active = old_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038 curwin = old_curwin;
4039 curbuf = old_curbuf;
4040}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041
4042/*
4043 * Command character that's ignored.
4044 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02004045 * xon/xoff.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004048nv_ignore(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049{
Bram Moolenaarfc735152005-03-22 22:54:12 +00004050 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051}
4052
4053/*
Bram Moolenaarebefac62005-12-28 22:39:57 +00004054 * Command character that doesn't do anything, but unlike nv_ignore() does
4055 * start edit(). Used for "startinsert" executed while starting up.
4056 */
Bram Moolenaarebefac62005-12-28 22:39:57 +00004057 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004058nv_nop(cmdarg_T *cap UNUSED)
Bram Moolenaarebefac62005-12-28 22:39:57 +00004059{
4060}
4061
4062/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 * Command character doesn't exist.
4064 */
4065 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004066nv_error(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067{
4068 clearopbeep(cap->oap);
4069}
4070
4071/*
4072 * <Help> and <F1> commands.
4073 */
4074 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004075nv_help(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076{
4077 if (!checkclearopq(cap->oap))
4078 ex_help(NULL);
4079}
4080
4081/*
4082 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
4083 */
4084 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004085nv_addsub(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086{
Bram Moolenaarf2732452018-06-03 14:47:35 +02004087#ifdef FEAT_JOB_CHANNEL
4088 if (bt_prompt(curbuf) && !prompt_curpos_editable())
4089 clearopbeep(cap->oap);
4090 else
4091#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01004092 if (!VIsual_active && cap->oap->op_type == OP_NOP)
Bram Moolenaar9bb19302015-07-03 12:44:07 +02004093 {
Bram Moolenaaref2b5032016-01-12 22:20:58 +01004094 prep_redo_cmd(cap);
Bram Moolenaard79e5502016-01-10 22:13:02 +01004095 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB;
4096 op_addsub(cap->oap, cap->count1, cap->arg);
4097 cap->oap->op_type = OP_NOP;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02004098 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01004099 else if (VIsual_active)
4100 nv_operator(cap);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02004101 else
Bram Moolenaard79e5502016-01-10 22:13:02 +01004102 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103}
4104
4105/*
4106 * CTRL-F, CTRL-B, etc: Scroll page up or down.
4107 */
4108 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004109nv_page(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110{
4111 if (!checkclearop(cap->oap))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004112 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004113 if (mod_mask & MOD_MASK_CTRL)
4114 {
4115 /* <C-PageUp>: tab page back; <C-PageDown>: tab page forward */
4116 if (cap->arg == BACKWARD)
4117 goto_tabpage(-(int)cap->count1);
4118 else
4119 goto_tabpage((int)cap->count0);
4120 }
4121 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02004122 (void)onepage(cap->arg, cap->count1);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004123 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124}
4125
4126/*
4127 * Implementation of "gd" and "gD" command.
4128 */
4129 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004130nv_gd(
4131 oparg_T *oap,
4132 int nchar,
4133 int thisblock) /* 1 for "1gd" and "1gD" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134{
4135 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 char_u *ptr;
4137
Bram Moolenaard9d30582005-05-18 22:10:28 +00004138 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
Bram Moolenaar1538fc32016-04-16 09:13:34 +02004139 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)
4140 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141 clearopbeep(oap);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004142#ifdef FEAT_FOLDING
4143 else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
4144 foldOpenCursor();
4145#endif
4146}
4147
4148/*
Bram Moolenaar226630a2016-10-08 19:21:31 +02004149 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE
4150 * otherwise.
4151 */
4152 static int
4153is_ident(char_u *line, int offset)
4154{
4155 int i;
4156 int incomment = FALSE;
4157 int instring = 0;
4158 int prev = 0;
4159
4160 for (i = 0; i < offset && line[i] != NUL; i++)
4161 {
4162 if (instring != 0)
4163 {
4164 if (prev != '\\' && line[i] == instring)
4165 instring = 0;
4166 }
4167 else if ((line[i] == '"' || line[i] == '\'') && !incomment)
4168 {
4169 instring = line[i];
4170 }
4171 else
4172 {
4173 if (incomment)
4174 {
4175 if (prev == '*' && line[i] == '/')
4176 incomment = FALSE;
4177 }
4178 else if (prev == '/' && line[i] == '*')
4179 {
4180 incomment = TRUE;
4181 }
4182 else if (prev == '/' && line[i] == '/')
4183 {
4184 return FALSE;
4185 }
4186 }
4187
4188 prev = line[i];
4189 }
4190
4191 return incomment == FALSE && instring == 0;
4192}
4193
4194/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004195 * Search for variable declaration of "ptr[len]".
4196 * When "locally" is TRUE in the current function ("gd"), otherwise in the
4197 * current file ("gD").
4198 * When "thisblock" is TRUE check the {} block scope.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004199 * Return FAIL when not found.
4200 */
4201 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004202find_decl(
4203 char_u *ptr,
4204 int len,
4205 int locally,
4206 int thisblock,
Bram Moolenaar23c60f22016-06-15 22:03:48 +02004207 int flags_arg) /* flags passed to searchit() */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004208{
4209 char_u *pat;
4210 pos_T old_pos;
4211 pos_T par_pos;
4212 pos_T found_pos;
4213 int t;
4214 int save_p_ws;
4215 int save_p_scs;
4216 int retval = OK;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004217 int incll;
Bram Moolenaar23c60f22016-06-15 22:03:48 +02004218 int searchflags = flags_arg;
Bram Moolenaar226630a2016-10-08 19:21:31 +02004219 int valid;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004220
4221 if ((pat = alloc(len + 7)) == NULL)
4222 return FAIL;
Bram Moolenaard9d30582005-05-18 22:10:28 +00004223
4224 /* Put "\V" before the pattern to avoid that the special meaning of "."
4225 * and "~" causes trouble. */
4226 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
4227 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 old_pos = curwin->w_cursor;
4229 save_p_ws = p_ws;
4230 save_p_scs = p_scs;
4231 p_ws = FALSE; /* don't wrap around end of file now */
4232 p_scs = FALSE; /* don't switch ignorecase off now */
4233
4234 /*
4235 * With "gD" go to line 1.
4236 * With "gd" Search back for the start of the current function, then go
4237 * back until a blank line. If this fails go to line 1.
4238 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00004239 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 {
4241 setpcmark(); /* Set in findpar() otherwise */
4242 curwin->w_cursor.lnum = 1;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00004243 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 }
4245 else
4246 {
Bram Moolenaarbb15b652005-10-03 21:52:09 +00004247 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
4249 --curwin->w_cursor.lnum;
4250 }
4251 curwin->w_cursor.col = 0;
4252
4253 /* Search forward for the identifier, ignore comment lines. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004254 CLEAR_POS(&found_pos);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004255 for (;;)
4256 {
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004257 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004258 pat, 1L, searchflags, RE_LAST, (linenr_T)0, NULL, NULL);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004259 if (curwin->w_cursor.lnum >= old_pos.lnum)
4260 t = FAIL; /* match after start is failure too */
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004261
Bram Moolenaar0fd92892006-03-09 22:27:48 +00004262 if (thisblock && t != FAIL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004263 {
4264 pos_T *pos;
4265
4266 /* Check that the block the match is in doesn't end before the
4267 * position where we started the search from. */
4268 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
4269 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
4270 && pos->lnum < old_pos.lnum)
Bram Moolenaar60402d62017-04-20 18:54:50 +02004271 {
4272 /* There can't be a useful match before the end of this block.
4273 * Skip to the end. */
4274 curwin->w_cursor = *pos;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004275 continue;
Bram Moolenaar60402d62017-04-20 18:54:50 +02004276 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004277 }
4278
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004279 if (t == FAIL)
4280 {
4281 /* If we previously found a valid position, use it. */
4282 if (found_pos.lnum != 0)
4283 {
4284 curwin->w_cursor = found_pos;
4285 t = OK;
4286 }
4287 break;
4288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289#ifdef FEAT_COMMENTS
Bram Moolenaar81340392012-06-06 16:12:59 +02004290 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004291 {
4292 /* Ignore this line, continue at start of next line. */
4293 ++curwin->w_cursor.lnum;
4294 curwin->w_cursor.col = 0;
4295 continue;
4296 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297#endif
Bram Moolenaar226630a2016-10-08 19:21:31 +02004298 valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
4299
4300 /* If the current position is not a valid identifier and a previous
4301 * match is present, favor that one instead. */
4302 if (!valid && found_pos.lnum != 0)
4303 {
4304 curwin->w_cursor = found_pos;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004305 break;
Bram Moolenaar226630a2016-10-08 19:21:31 +02004306 }
4307
4308 /* Global search: use first valid match found */
4309 if (valid && !locally)
4310 break;
4311 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004312 {
4313 /* If we previously found a valid position, use it. */
4314 if (found_pos.lnum != 0)
4315 curwin->w_cursor = found_pos;
4316 break;
4317 }
4318
Bram Moolenaar226630a2016-10-08 19:21:31 +02004319 /* For finding a local variable and the match is before the "{" or
4320 * inside a comment, continue searching. For K&R style function
4321 * declarations this skips the function header without types. */
4322 if (!valid)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004323 CLEAR_POS(&found_pos);
Bram Moolenaar226630a2016-10-08 19:21:31 +02004324 else
Bram Moolenaar226630a2016-10-08 19:21:31 +02004325 found_pos = curwin->w_cursor;
Bram Moolenaar226630a2016-10-08 19:21:31 +02004326 /* Remove SEARCH_START from flags to avoid getting stuck at one
4327 * position. */
Bram Moolenaar23c60f22016-06-15 22:03:48 +02004328 searchflags &= ~SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004330
4331 if (t == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004333 retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 curwin->w_cursor = old_pos;
4335 }
4336 else
4337 {
4338 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 /* "n" searches forward now */
4340 reset_search_dir();
4341 }
4342
4343 vim_free(pat);
4344 p_ws = save_p_ws;
4345 p_scs = save_p_scs;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004346
4347 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348}
4349
4350/*
4351 * Move 'dist' lines in direction 'dir', counting lines by *screen*
4352 * lines rather than lines in the file.
4353 * 'dist' must be positive.
4354 *
4355 * Return OK if able to move cursor, FAIL otherwise.
4356 */
4357 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004358nv_screengo(oparg_T *oap, int dir, long dist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359{
4360 int linelen = linetabsize(ml_get_curline());
4361 int retval = OK;
4362 int atend = FALSE;
4363 int n;
4364 int col_off1; /* margin offset for first screen line */
4365 int col_off2; /* margin offset for wrapped screen line */
4366 int width1; /* text width for first screen line */
4367 int width2; /* test width for wrapped screen line */
4368
4369 oap->motion_type = MCHAR;
Bram Moolenaar91b2bdb2013-07-14 13:32:15 +02004370 oap->inclusive = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371
4372 col_off1 = curwin_col_off();
4373 col_off2 = col_off1 - curwin_col_off2();
Bram Moolenaar02631462017-09-22 15:20:32 +02004374 width1 = curwin->w_width - col_off1;
4375 width2 = curwin->w_width - col_off2;
Bram Moolenaar7cc8ec42015-01-27 20:59:31 +01004376 if (width2 == 0)
4377 width2 = 1; /* avoid divide by zero */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 if (curwin->w_width != 0)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004380 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 /*
4382 * Instead of sticking at the last character of the buffer line we
4383 * try to stick in the last column of the screen.
4384 */
4385 if (curwin->w_curswant == MAXCOL)
4386 {
4387 atend = TRUE;
4388 validate_virtcol();
4389 if (width1 <= 0)
4390 curwin->w_curswant = 0;
4391 else
4392 {
4393 curwin->w_curswant = width1 - 1;
4394 if (curwin->w_virtcol > curwin->w_curswant)
4395 curwin->w_curswant += ((curwin->w_virtcol
4396 - curwin->w_curswant - 1) / width2 + 1) * width2;
4397 }
4398 }
4399 else
4400 {
4401 if (linelen > width1)
4402 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4403 else
4404 n = width1;
4405 if (curwin->w_curswant > (colnr_T)n + 1)
4406 curwin->w_curswant -= ((curwin->w_curswant - n) / width2 + 1)
4407 * width2;
4408 }
4409
4410 while (dist--)
4411 {
4412 if (dir == BACKWARD)
4413 {
4414 if ((long)curwin->w_curswant >= width2)
4415 /* move back within line */
4416 curwin->w_curswant -= width2;
4417 else
4418 {
4419 /* to previous line */
4420 if (curwin->w_cursor.lnum == 1)
4421 {
4422 retval = FAIL;
4423 break;
4424 }
4425 --curwin->w_cursor.lnum;
4426#ifdef FEAT_FOLDING
4427 /* Move to the start of a closed fold. Don't do that when
4428 * 'foldopen' contains "all": it will open in a moment. */
4429 if (!(fdo_flags & FDO_ALL))
4430 (void)hasFolding(curwin->w_cursor.lnum,
4431 &curwin->w_cursor.lnum, NULL);
4432#endif
4433 linelen = linetabsize(ml_get_curline());
4434 if (linelen > width1)
4435 curwin->w_curswant += (((linelen - width1 - 1) / width2)
4436 + 1) * width2;
4437 }
4438 }
4439 else /* dir == FORWARD */
4440 {
4441 if (linelen > width1)
4442 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4443 else
4444 n = width1;
4445 if (curwin->w_curswant + width2 < (colnr_T)n)
4446 /* move forward within line */
4447 curwin->w_curswant += width2;
4448 else
4449 {
4450 /* to next line */
4451#ifdef FEAT_FOLDING
4452 /* Move to the end of a closed fold. */
4453 (void)hasFolding(curwin->w_cursor.lnum, NULL,
4454 &curwin->w_cursor.lnum);
4455#endif
4456 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4457 {
4458 retval = FAIL;
4459 break;
4460 }
4461 curwin->w_cursor.lnum++;
4462 curwin->w_curswant %= width2;
Bram Moolenaar914968e2011-06-20 00:45:58 +02004463 linelen = linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 }
4465 }
4466 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468
Bram Moolenaar6cd3aee2014-01-14 13:18:58 +01004469 if (virtual_active() && atend)
4470 coladvance(MAXCOL);
4471 else
4472 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
4475 {
Bram Moolenaar773b1582014-08-29 14:20:51 +02004476 colnr_T virtcol;
4477
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 /*
4479 * Check for landing on a character that got split at the end of the
4480 * last line. We want to advance a screenline, not end up in the same
4481 * screenline or move two screenlines.
4482 */
4483 validate_virtcol();
Bram Moolenaar773b1582014-08-29 14:20:51 +02004484 virtcol = curwin->w_virtcol;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004485#if defined(FEAT_LINEBREAK)
Bram Moolenaar773b1582014-08-29 14:20:51 +02004486 if (virtcol > (colnr_T)width1 && *p_sbr != NUL)
4487 virtcol -= vim_strsize(p_sbr);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004488#endif
Bram Moolenaar773b1582014-08-29 14:20:51 +02004489
4490 if (virtcol > curwin->w_curswant
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 && (curwin->w_curswant < (colnr_T)width1
4492 ? (curwin->w_curswant > (colnr_T)width1 / 2)
4493 : ((curwin->w_curswant - width1) % width2
4494 > (colnr_T)width2 / 2)))
4495 --curwin->w_cursor.col;
4496 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497
4498 if (atend)
4499 curwin->w_curswant = MAXCOL; /* stick in the last column */
4500
4501 return retval;
4502}
4503
4504#ifdef FEAT_MOUSE
4505/*
4506 * Mouse scroll wheel: Default action is to scroll three lines, or one page
4507 * when Shift or Ctrl is used.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004508 * K_MOUSEUP (cap->arg == 1) or K_MOUSEDOWN (cap->arg == 0) or
4509 * K_MOUSELEFT (cap->arg == -1) or K_MOUSERIGHT (cap->arg == -2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 */
4511 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004512nv_mousescroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513{
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004514 win_T *old_curwin = curwin, *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515
Bram Moolenaar40cf4b42013-02-26 13:30:32 +01004516 if (mouse_row >= 0 && mouse_col >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 {
4518 int row, col;
4519
4520 row = mouse_row;
4521 col = mouse_col;
4522
4523 /* find the window at the pointer coordinates */
Bram Moolenaar68acb412019-06-26 03:40:36 +02004524 wp = mouse_find_win(&row, &col, FIND_POPUP);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004525 if (wp == NULL)
4526 return;
Bram Moolenaar68acb412019-06-26 03:40:36 +02004527#ifdef FEAT_TEXT_PROP
4528 if (bt_popup(wp->w_buffer) && !wp->w_has_scrollbar)
4529 return;
4530#endif
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004531 curwin = wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 curbuf = curwin->w_buffer;
4533 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004535 if (cap->arg == MSCR_UP || cap->arg == MSCR_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 {
Bram Moolenaar98fd66d2017-08-05 19:34:47 +02004537# ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02004538 if (term_use_loop())
Bram Moolenaar73675fb2017-11-20 21:49:19 +01004539 /* This window is a terminal window, send the mouse event there.
4540 * Set "typed" to FALSE to avoid an endless loop. */
4541 send_keys_to_term(curbuf->b_term, cap->cmdchar, FALSE);
Bram Moolenaar98fd66d2017-08-05 19:34:47 +02004542 else
4543# endif
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004544 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4545 {
4546 (void)onepage(cap->arg ? FORWARD : BACKWARD, 1L);
4547 }
4548 else
4549 {
Bram Moolenaar68acb412019-06-26 03:40:36 +02004550 // Don't scroll more than half the window height.
4551 if (curwin->w_height < 6)
4552 {
4553 cap->count1 = curwin->w_height / 2;
4554 if (cap->count1 == 0)
4555 cap->count1 = 1;
4556 }
4557 else
4558 cap->count1 = 3;
4559 cap->count0 = cap->count1;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004560 nv_scroll_line(cap);
4561 }
Bram Moolenaar68acb412019-06-26 03:40:36 +02004562#ifdef FEAT_TEXT_PROP
Bram Moolenaar6efd76a2019-06-26 04:06:57 +02004563 if (bt_popup(curwin->w_buffer))
Bram Moolenaar68acb412019-06-26 03:40:36 +02004564 {
Bram Moolenaar6efd76a2019-06-26 04:06:57 +02004565 int height = curwin->w_height;
Bram Moolenaar68acb412019-06-26 03:40:36 +02004566
4567 curwin->w_firstline = curwin->w_topline;
4568 popup_adjust_position(curwin);
4569
4570 // we don't want the popup to get smaller, decrement the first line
4571 // until it doesn't
4572 while (curwin->w_firstline > 1 && curwin->w_height < height)
4573 {
4574 --curwin->w_firstline;
4575 popup_adjust_position(curwin);
4576 }
4577 }
4578#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 }
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004580# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 else
4582 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004583 /* Horizontal scroll - only allowed when 'wrap' is disabled */
4584 if (!curwin->w_p_wrap)
4585 {
4586 int val, step = 6;
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004587
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004588 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
Bram Moolenaar02631462017-09-22 15:20:32 +02004589 step = curwin->w_width;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004590 val = curwin->w_leftcol + (cap->arg == MSCR_RIGHT ? -step : +step);
4591 if (val < 0)
4592 val = 0;
4593
4594 gui_do_horiz_scroll(val, TRUE);
4595 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 }
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004597# endif
Bram Moolenaarbbb5f8d2019-01-31 13:22:32 +01004598# ifdef FEAT_SYN_HL
4599 if (curwin != old_curwin && curwin->w_p_cul)
4600 redraw_for_cursorline(curwin);
4601# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 curwin->w_redr_status = TRUE;
4604
4605 curwin = old_curwin;
4606 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607}
4608
4609/*
4610 * Mouse clicks and drags.
4611 */
4612 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004613nv_mouse(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614{
4615 (void)do_mouse(cap->oap, cap->cmdchar, BACKWARD, cap->count1, 0);
4616}
4617#endif
4618
4619/*
4620 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
4621 * cap->arg must be TRUE for CTRL-E.
4622 */
4623 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004624nv_scroll_line(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625{
4626 if (!checkclearop(cap->oap))
4627 scroll_redraw(cap->arg, cap->count1);
4628}
4629
4630/*
4631 * Scroll "count" lines up or down, and redraw.
4632 */
4633 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004634scroll_redraw(int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635{
4636 linenr_T prev_topline = curwin->w_topline;
4637#ifdef FEAT_DIFF
4638 int prev_topfill = curwin->w_topfill;
4639#endif
4640 linenr_T prev_lnum = curwin->w_cursor.lnum;
4641
4642 if (up)
4643 scrollup(count, TRUE);
4644 else
4645 scrolldown(count, TRUE);
Bram Moolenaar375e3392019-01-31 18:26:10 +01004646 if (get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 {
4648 /* Adjust the cursor position for 'scrolloff'. Mark w_topline as
4649 * valid, otherwise the screen jumps back at the end of the file. */
4650 cursor_correct();
4651 check_cursor_moved(curwin);
4652 curwin->w_valid |= VALID_TOPLINE;
4653
4654 /* If moved back to where we were, at least move the cursor, otherwise
4655 * we get stuck at one position. Don't move the cursor up if the
4656 * first line of the buffer is already on the screen */
4657 while (curwin->w_topline == prev_topline
4658#ifdef FEAT_DIFF
4659 && curwin->w_topfill == prev_topfill
4660#endif
4661 )
4662 {
4663 if (up)
4664 {
4665 if (curwin->w_cursor.lnum > prev_lnum
4666 || cursor_down(1L, FALSE) == FAIL)
4667 break;
4668 }
4669 else
4670 {
4671 if (curwin->w_cursor.lnum < prev_lnum
4672 || prev_topline == 1L
4673 || cursor_up(1L, FALSE) == FAIL)
4674 break;
4675 }
4676 /* Mark w_topline as valid, otherwise the screen jumps back at the
4677 * end of the file. */
4678 check_cursor_moved(curwin);
4679 curwin->w_valid |= VALID_TOPLINE;
4680 }
4681 }
4682 if (curwin->w_cursor.lnum != prev_lnum)
4683 coladvance(curwin->w_curswant);
4684 redraw_later(VALID);
4685}
4686
4687/*
4688 * Commands that start with "z".
4689 */
4690 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004691nv_zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692{
4693 long n;
4694 colnr_T col;
4695 int nchar = cap->nchar;
4696#ifdef FEAT_FOLDING
4697 long old_fdl = curwin->w_p_fdl;
4698 int old_fen = curwin->w_p_fen;
4699#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00004700#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00004701 int undo = FALSE;
4702#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +01004703 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704
4705 if (VIM_ISDIGIT(nchar))
4706 {
4707 /*
4708 * "z123{nchar}": edit the count before obtaining {nchar}
4709 */
4710 if (checkclearop(cap->oap))
4711 return;
4712 n = nchar - '0';
4713 for (;;)
4714 {
4715#ifdef USE_ON_FLY_SCROLL
4716 dont_scroll = TRUE; /* disallow scrolling here */
4717#endif
4718 ++no_mapping;
4719 ++allow_keys; /* no mapping for nchar, but allow key codes */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00004720 nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 --no_mapping;
4723 --allow_keys;
4724#ifdef FEAT_CMDL_INFO
4725 (void)add_to_showcmd(nchar);
4726#endif
4727 if (nchar == K_DEL || nchar == K_KDEL)
4728 n /= 10;
4729 else if (VIM_ISDIGIT(nchar))
4730 n = n * 10 + (nchar - '0');
4731 else if (nchar == CAR)
4732 {
4733#ifdef FEAT_GUI
4734 need_mouse_correct = TRUE;
4735#endif
4736 win_setheight((int)n);
4737 break;
4738 }
4739 else if (nchar == 'l'
4740 || nchar == 'h'
4741 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00004742 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 {
4744 cap->count1 = n ? n * cap->count1 : cap->count1;
4745 goto dozet;
4746 }
4747 else
4748 {
4749 clearopbeep(cap->oap);
4750 break;
4751 }
4752 }
4753 cap->oap->op_type = OP_NOP;
4754 return;
4755 }
4756
4757dozet:
4758 if (
4759#ifdef FEAT_FOLDING
4760 /* "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
4761 * and "zC" only in Visual mode. "zj" and "zk" are motion
4762 * commands. */
4763 cap->nchar != 'f' && cap->nchar != 'F'
4764 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
4765 && cap->nchar != 'j' && cap->nchar != 'k'
4766 &&
4767#endif
4768 checkclearop(cap->oap))
4769 return;
4770
4771 /*
4772 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
4773 * If line number given, set cursor.
4774 */
4775 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
4776 && cap->count0
4777 && cap->count0 != curwin->w_cursor.lnum)
4778 {
4779 setpcmark();
4780 if (cap->count0 > curbuf->b_ml.ml_line_count)
4781 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4782 else
4783 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004784 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 }
4786
4787 switch (nchar)
4788 {
4789 /* "z+", "z<CR>" and "zt": put cursor at top of screen */
4790 case '+':
4791 if (cap->count0 == 0)
4792 {
4793 /* No count given: put cursor at the line below screen */
4794 validate_botline(); /* make sure w_botline is valid */
4795 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
4796 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4797 else
4798 curwin->w_cursor.lnum = curwin->w_botline;
4799 }
4800 /* FALLTHROUGH */
4801 case NL:
4802 case CAR:
4803 case K_KENTER:
4804 beginline(BL_WHITE | BL_FIX);
4805 /* FALLTHROUGH */
4806
4807 case 't': scroll_cursor_top(0, TRUE);
4808 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01004809 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 break;
4811
4812 /* "z." and "zz": put cursor in middle of screen */
4813 case '.': beginline(BL_WHITE | BL_FIX);
4814 /* FALLTHROUGH */
4815
4816 case 'z': scroll_cursor_halfway(TRUE);
4817 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01004818 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819 break;
4820
4821 /* "z^", "z-" and "zb": put cursor at bottom of screen */
4822 case '^': /* Strange Vi behavior: <count>z^ finds line at top of window
4823 * when <count> is at bottom of window, and puts that one at
4824 * bottom of window. */
4825 if (cap->count0 != 0)
4826 {
4827 scroll_cursor_bot(0, TRUE);
4828 curwin->w_cursor.lnum = curwin->w_topline;
4829 }
4830 else if (curwin->w_topline == 1)
4831 curwin->w_cursor.lnum = 1;
4832 else
4833 curwin->w_cursor.lnum = curwin->w_topline - 1;
4834 /* FALLTHROUGH */
4835 case '-':
4836 beginline(BL_WHITE | BL_FIX);
4837 /* FALLTHROUGH */
4838
4839 case 'b': scroll_cursor_bot(0, TRUE);
4840 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01004841 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 break;
4843
4844 /* "zH" - scroll screen right half-page */
4845 case 'H':
Bram Moolenaar02631462017-09-22 15:20:32 +02004846 cap->count1 *= curwin->w_width / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 /* FALLTHROUGH */
4848
4849 /* "zh" - scroll screen to the right */
4850 case 'h':
4851 case K_LEFT:
4852 if (!curwin->w_p_wrap)
4853 {
4854 if ((colnr_T)cap->count1 > curwin->w_leftcol)
4855 curwin->w_leftcol = 0;
4856 else
4857 curwin->w_leftcol -= (colnr_T)cap->count1;
4858 leftcol_changed();
4859 }
4860 break;
4861
4862 /* "zL" - scroll screen left half-page */
Bram Moolenaar02631462017-09-22 15:20:32 +02004863 case 'L': cap->count1 *= curwin->w_width / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 /* FALLTHROUGH */
4865
4866 /* "zl" - scroll screen to the left */
4867 case 'l':
4868 case K_RIGHT:
4869 if (!curwin->w_p_wrap)
4870 {
4871 /* scroll the window left */
4872 curwin->w_leftcol += (colnr_T)cap->count1;
4873 leftcol_changed();
4874 }
4875 break;
4876
4877 /* "zs" - scroll screen, cursor at the start */
4878 case 's': if (!curwin->w_p_wrap)
4879 {
4880#ifdef FEAT_FOLDING
4881 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4882 col = 0; /* like the cursor is in col 0 */
4883 else
4884#endif
4885 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
Bram Moolenaar375e3392019-01-31 18:26:10 +01004886 if ((long)col > siso)
4887 col -= siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 else
4889 col = 0;
4890 if (curwin->w_leftcol != col)
4891 {
4892 curwin->w_leftcol = col;
4893 redraw_later(NOT_VALID);
4894 }
4895 }
4896 break;
4897
4898 /* "ze" - scroll screen, cursor at the end */
4899 case 'e': if (!curwin->w_p_wrap)
4900 {
4901#ifdef FEAT_FOLDING
4902 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4903 col = 0; /* like the cursor is in col 0 */
4904 else
4905#endif
4906 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
Bram Moolenaar02631462017-09-22 15:20:32 +02004907 n = curwin->w_width - curwin_col_off();
Bram Moolenaar375e3392019-01-31 18:26:10 +01004908 if ((long)col + siso < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 col = 0;
4910 else
Bram Moolenaar375e3392019-01-31 18:26:10 +01004911 col = col + siso - n + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 if (curwin->w_leftcol != col)
4913 {
4914 curwin->w_leftcol = col;
4915 redraw_later(NOT_VALID);
4916 }
4917 }
4918 break;
4919
4920#ifdef FEAT_FOLDING
4921 /* "zF": create fold command */
4922 /* "zf": create fold operator */
4923 case 'F':
4924 case 'f': if (foldManualAllowed(TRUE))
4925 {
4926 cap->nchar = 'f';
4927 nv_operator(cap);
4928 curwin->w_p_fen = TRUE;
4929
4930 /* "zF" is like "zfzf" */
4931 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
4932 {
4933 nv_operator(cap);
4934 finish_op = TRUE;
4935 }
4936 }
4937 else
4938 clearopbeep(cap->oap);
4939 break;
4940
4941 /* "zd": delete fold at cursor */
4942 /* "zD": delete fold at cursor recursively */
4943 case 'd':
4944 case 'D': if (foldManualAllowed(FALSE))
4945 {
4946 if (VIsual_active)
4947 nv_operator(cap);
4948 else
4949 deleteFold(curwin->w_cursor.lnum,
4950 curwin->w_cursor.lnum, nchar == 'D', FALSE);
4951 }
4952 break;
4953
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02004954 /* "zE": erase all folds */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 case 'E': if (foldmethodIsManual(curwin))
4956 {
4957 clearFolding(curwin);
4958 changed_window_setting();
4959 }
4960 else if (foldmethodIsMarker(curwin))
4961 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
4962 TRUE, FALSE);
4963 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004964 emsg(_("E352: Cannot erase folds with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 break;
4966
4967 /* "zn": fold none: reset 'foldenable' */
4968 case 'n': curwin->w_p_fen = FALSE;
4969 break;
4970
4971 /* "zN": fold Normal: set 'foldenable' */
4972 case 'N': curwin->w_p_fen = TRUE;
4973 break;
4974
4975 /* "zi": invert folding: toggle 'foldenable' */
4976 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
4977 break;
4978
4979 /* "za": open closed fold or close open fold at cursor */
4980 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4981 openFold(curwin->w_cursor.lnum, cap->count1);
4982 else
4983 {
4984 closeFold(curwin->w_cursor.lnum, cap->count1);
4985 curwin->w_p_fen = TRUE;
4986 }
4987 break;
4988
4989 /* "zA": open fold at cursor recursively */
4990 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4991 openFoldRecurse(curwin->w_cursor.lnum);
4992 else
4993 {
4994 closeFoldRecurse(curwin->w_cursor.lnum);
4995 curwin->w_p_fen = TRUE;
4996 }
4997 break;
4998
4999 /* "zo": open fold at cursor or Visual area */
5000 case 'o': if (VIsual_active)
5001 nv_operator(cap);
5002 else
5003 openFold(curwin->w_cursor.lnum, cap->count1);
5004 break;
5005
5006 /* "zO": open fold recursively */
5007 case 'O': if (VIsual_active)
5008 nv_operator(cap);
5009 else
5010 openFoldRecurse(curwin->w_cursor.lnum);
5011 break;
5012
5013 /* "zc": close fold at cursor or Visual area */
5014 case 'c': if (VIsual_active)
5015 nv_operator(cap);
5016 else
5017 closeFold(curwin->w_cursor.lnum, cap->count1);
5018 curwin->w_p_fen = TRUE;
5019 break;
5020
5021 /* "zC": close fold recursively */
5022 case 'C': if (VIsual_active)
5023 nv_operator(cap);
5024 else
5025 closeFoldRecurse(curwin->w_cursor.lnum);
5026 curwin->w_p_fen = TRUE;
5027 break;
5028
5029 /* "zv": open folds at the cursor */
5030 case 'v': foldOpenCursor();
5031 break;
5032
5033 /* "zx": re-apply 'foldlevel' and open folds at the cursor */
5034 case 'x': curwin->w_p_fen = TRUE;
Bram Moolenaar38ab0e22010-05-13 17:35:59 +02005035 curwin->w_foldinvalid = TRUE; /* recompute folds */
5036 newFoldLevel(); /* update right now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 foldOpenCursor();
5038 break;
5039
5040 /* "zX": undo manual opens/closes, re-apply 'foldlevel' */
5041 case 'X': curwin->w_p_fen = TRUE;
Bram Moolenaar38ab0e22010-05-13 17:35:59 +02005042 curwin->w_foldinvalid = TRUE; /* recompute folds */
5043 old_fdl = -1; /* force an update */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 break;
5045
5046 /* "zm": fold more */
5047 case 'm': if (curwin->w_p_fdl > 0)
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02005048 {
5049 curwin->w_p_fdl -= cap->count1;
5050 if (curwin->w_p_fdl < 0)
5051 curwin->w_p_fdl = 0;
5052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 old_fdl = -1; /* force an update */
5054 curwin->w_p_fen = TRUE;
5055 break;
5056
5057 /* "zM": close all folds */
5058 case 'M': curwin->w_p_fdl = 0;
5059 old_fdl = -1; /* force an update */
5060 curwin->w_p_fen = TRUE;
5061 break;
5062
5063 /* "zr": reduce folding */
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02005064 case 'r': curwin->w_p_fdl += cap->count1;
5065 {
5066 int d = getDeepestNesting();
5067
5068 if (curwin->w_p_fdl >= d)
5069 curwin->w_p_fdl = d;
5070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 break;
5072
5073 /* "zR": open all folds */
5074 case 'R': curwin->w_p_fdl = getDeepestNesting();
5075 old_fdl = -1; /* force an update */
5076 break;
5077
5078 case 'j': /* "zj" move to next fold downwards */
5079 case 'k': /* "zk" move to next fold upwards */
5080 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
5081 cap->count1) == FAIL)
5082 clearopbeep(cap->oap);
5083 break;
5084
5085#endif /* FEAT_FOLDING */
5086
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005087#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00005088 case 'u': /* "zug" and "zuw": undo "zg" and "zw" */
5089 ++no_mapping;
5090 ++allow_keys; /* no mapping for nchar, but allow key codes */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005091 nchar = plain_vgetc();
Bram Moolenaard0131a82006-03-04 21:46:13 +00005092 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaard0131a82006-03-04 21:46:13 +00005093 --no_mapping;
5094 --allow_keys;
5095#ifdef FEAT_CMDL_INFO
5096 (void)add_to_showcmd(nchar);
5097#endif
5098 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
5099 {
5100 clearopbeep(cap->oap);
5101 break;
5102 }
5103 undo = TRUE;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02005104 /* FALLTHROUGH */
Bram Moolenaard0131a82006-03-04 21:46:13 +00005105
Bram Moolenaarb765d632005-06-07 21:00:02 +00005106 case 'g': /* "zg": add good word to word list */
5107 case 'w': /* "zw": add wrong word to word list */
Bram Moolenaar7887d882005-07-01 22:33:52 +00005108 case 'G': /* "zG": add good word to temp word list */
5109 case 'W': /* "zW": add wrong word to temp word list */
Bram Moolenaarb765d632005-06-07 21:00:02 +00005110 {
5111 char_u *ptr = NULL;
5112 int len;
5113
5114 if (checkclearop(cap->oap))
5115 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00005116 if (VIsual_active && get_visual_text(cap, &ptr, &len)
5117 == FAIL)
5118 return;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00005119 if (ptr == NULL)
5120 {
5121 pos_T pos = curwin->w_cursor;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00005122
Bram Moolenaar134bf072013-09-25 18:54:24 +02005123 /* Find bad word under the cursor. When 'spell' is
5124 * off this fails and find_ident_under_cursor() is
5125 * used below. */
5126 emsg_off++;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005127 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
Bram Moolenaar134bf072013-09-25 18:54:24 +02005128 emsg_off--;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00005129 if (len != 0 && curwin->w_cursor.col <= pos.col)
5130 ptr = ml_get_pos(&curwin->w_cursor);
5131 curwin->w_cursor = pos;
5132 }
5133
Bram Moolenaarb765d632005-06-07 21:00:02 +00005134 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
5135 FIND_IDENT)) == 0)
5136 return;
Bram Moolenaar7887d882005-07-01 22:33:52 +00005137 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W',
Bram Moolenaard0131a82006-03-04 21:46:13 +00005138 (nchar == 'G' || nchar == 'W')
5139 ? 0 : (int)cap->count1,
5140 undo);
Bram Moolenaarb765d632005-06-07 21:00:02 +00005141 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00005142 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005143
Bram Moolenaar43abc522005-12-10 20:15:02 +00005144 case '=': /* "z=": suggestions for a badly spelled word */
Bram Moolenaar66fa2712006-01-22 23:22:22 +00005145 if (!checkclearop(cap->oap))
Bram Moolenaard12a1322005-08-21 22:08:24 +00005146 spell_suggest((int)cap->count0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005147 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00005148#endif
5149
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 default: clearopbeep(cap->oap);
5151 }
5152
5153#ifdef FEAT_FOLDING
5154 /* Redraw when 'foldenable' changed */
5155 if (old_fen != curwin->w_p_fen)
5156 {
5157# ifdef FEAT_DIFF
5158 win_T *wp;
5159
5160 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
5161 {
5162 /* Adjust 'foldenable' in diff-synced windows. */
5163 FOR_ALL_WINDOWS(wp)
5164 {
5165 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
5166 {
5167 wp->w_p_fen = curwin->w_p_fen;
5168 changed_window_setting_win(wp);
5169 }
5170 }
5171 }
5172# endif
5173 changed_window_setting();
5174 }
5175
5176 /* Redraw when 'foldlevel' changed. */
5177 if (old_fdl != curwin->w_p_fdl)
5178 newFoldLevel();
5179#endif
5180}
5181
5182#ifdef FEAT_GUI
5183/*
5184 * Vertical scrollbar movement.
5185 */
5186 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005187nv_ver_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188{
5189 if (cap->oap->op_type != OP_NOP)
5190 clearopbeep(cap->oap);
5191
5192 /* Even if an operator was pending, we still want to scroll */
5193 gui_do_scroll();
5194}
5195
5196/*
5197 * Horizontal scrollbar movement.
5198 */
5199 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005200nv_hor_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201{
5202 if (cap->oap->op_type != OP_NOP)
5203 clearopbeep(cap->oap);
5204
5205 /* Even if an operator was pending, we still want to scroll */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005206 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207}
5208#endif
5209
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005210#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005211/*
5212 * Click in GUI tab.
5213 */
5214 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005215nv_tabline(cmdarg_T *cap)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005216{
5217 if (cap->oap->op_type != OP_NOP)
5218 clearopbeep(cap->oap);
5219
5220 /* Even if an operator was pending, we still want to jump tabs. */
5221 goto_tabpage(current_tab);
5222}
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005223
5224/*
5225 * Selected item in tab line menu.
5226 */
5227 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005228nv_tabmenu(cmdarg_T *cap)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005229{
5230 if (cap->oap->op_type != OP_NOP)
5231 clearopbeep(cap->oap);
5232
5233 /* Even if an operator was pending, we still want to jump tabs. */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005234 handle_tabmenu();
5235}
5236
5237/*
5238 * Handle selecting an item of the GUI tab line menu.
5239 * Used in Normal and Insert mode.
5240 */
5241 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005242handle_tabmenu(void)
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005243{
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005244 switch (current_tabmenu)
5245 {
5246 case TABLINE_MENU_CLOSE:
5247 if (current_tab == 0)
5248 do_cmdline_cmd((char_u *)"tabclose");
5249 else
5250 {
5251 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
5252 current_tab);
5253 do_cmdline_cmd(IObuff);
5254 }
5255 break;
5256
5257 case TABLINE_MENU_NEW:
Bram Moolenaardfd76912015-02-27 15:03:58 +01005258 if (current_tab == 0)
5259 do_cmdline_cmd((char_u *)"$tabnew");
5260 else
5261 {
5262 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
5263 current_tab - 1);
5264 do_cmdline_cmd(IObuff);
5265 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005266 break;
5267
5268 case TABLINE_MENU_OPEN:
Bram Moolenaardfd76912015-02-27 15:03:58 +01005269 if (current_tab == 0)
5270 do_cmdline_cmd((char_u *)"browse $tabnew");
5271 else
5272 {
5273 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
5274 current_tab - 1);
5275 do_cmdline_cmd(IObuff);
5276 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005277 break;
5278 }
5279}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005280#endif
5281
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282/*
5283 * "Q" command.
5284 */
5285 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005286nv_exmode(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287{
5288 /*
5289 * Ignore 'Q' in Visual mode, just give a beep.
5290 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 if (VIsual_active)
Bram Moolenaar165bc692015-07-21 17:53:25 +02005292 vim_beep(BO_EX);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005293 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 do_exmode(FALSE);
5295}
5296
5297/*
5298 * Handle a ":" command.
5299 */
5300 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005301nv_colon(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302{
5303 int old_p_im;
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005304 int cmd_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 if (VIsual_active)
5307 nv_operator(cap);
5308 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 {
5310 if (cap->oap->op_type != OP_NOP)
5311 {
5312 /* Using ":" as a movement is characterwise exclusive. */
5313 cap->oap->motion_type = MCHAR;
5314 cap->oap->inclusive = FALSE;
5315 }
5316 else if (cap->count0)
5317 {
5318 /* translate "count:" into ":.,.+(count - 1)" */
5319 stuffcharReadbuff('.');
5320 if (cap->count0 > 1)
5321 {
5322 stuffReadbuff((char_u *)",.+");
5323 stuffnumReadbuff((long)cap->count0 - 1L);
5324 }
5325 }
5326
5327 /* When typing, don't type below an old message */
5328 if (KeyTyped)
5329 compute_cmdrow();
5330
5331 old_p_im = p_im;
5332
5333 /* get a command line and execute it */
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005334 cmd_result = do_cmdline(NULL, getexline, NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
5336
5337 /* If 'insertmode' changed, enter or exit Insert mode */
5338 if (p_im != old_p_im)
5339 {
5340 if (p_im)
5341 restart_edit = 'i';
5342 else
5343 restart_edit = 0;
5344 }
5345
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005346 if (cmd_result == FAIL)
5347 /* The Ex command failed, do not execute the operator. */
5348 clearop(cap->oap);
5349 else if (cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
5351 || cap->oap->start.col >
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005352 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
5353 || did_emsg
5354 ))
5355 /* The start of the operator has become invalid by the Ex command.
5356 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 clearopbeep(cap->oap);
5358 }
5359}
5360
5361/*
5362 * Handle CTRL-G command.
5363 */
5364 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005365nv_ctrlg(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 if (VIsual_active) /* toggle Selection/Visual mode */
5368 {
5369 VIsual_select = !VIsual_select;
5370 showmode();
5371 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005372 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 /* print full name if count given or :cd used */
5374 fileinfo((int)cap->count0, FALSE, TRUE);
5375}
5376
5377/*
5378 * Handle CTRL-H <Backspace> command.
5379 */
5380 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005381nv_ctrlh(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 if (VIsual_active && VIsual_select)
5384 {
5385 cap->cmdchar = 'x'; /* BS key behaves like 'x' in Select mode */
5386 v_visop(cap);
5387 }
5388 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389 nv_left(cap);
5390}
5391
5392/*
5393 * CTRL-L: clear screen and redraw.
5394 */
5395 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005396nv_clear(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397{
5398 if (!checkclearop(cap->oap))
5399 {
5400#if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
5401 /*
5402 * Right now, the BeBox doesn't seem to have an easy way to detect
5403 * window resizing, so we cheat and make the user detect it
5404 * manually with CTRL-L instead
5405 */
5406 ui_get_shellsize();
5407#endif
5408#ifdef FEAT_SYN_HL
5409 /* Clear all syntax states to force resyncing. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02005410 syn_stack_free_all(curwin->w_s);
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02005411# ifdef FEAT_RELTIME
5412 {
5413 win_T *wp;
5414
5415 FOR_ALL_WINDOWS(wp)
5416 wp->w_s->b_syn_slow = FALSE;
5417 }
5418# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419#endif
5420 redraw_later(CLEAR);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005421#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
5422# ifdef VIMDLL
5423 if (!gui.in_use)
5424# endif
5425 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01005426#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 }
5428}
5429
5430/*
5431 * CTRL-O: In Select mode: switch to Visual mode for one command.
5432 * Otherwise: Go to older pcmark.
5433 */
5434 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005435nv_ctrlo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 if (VIsual_active && VIsual_select)
5438 {
5439 VIsual_select = FALSE;
5440 showmode();
5441 restart_VIsual_select = 2; /* restart Select mode later */
5442 }
5443 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 {
5445 cap->count1 = -cap->count1;
5446 nv_pcmark(cap);
5447 }
5448}
5449
5450/*
Bram Moolenaar1bbb6192018-11-10 16:02:01 +01005451 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is
5452 * not named.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453 */
5454 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005455nv_hat(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456{
5457 if (!checkclearopq(cap->oap))
5458 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
5459 GETF_SETMARK|GETF_ALT, FALSE);
5460}
5461
5462/*
5463 * "Z" commands.
5464 */
5465 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005466nv_Zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467{
5468 if (!checkclearopq(cap->oap))
5469 {
5470 switch (cap->nchar)
5471 {
5472 /* "ZZ": equivalent to ":x". */
5473 case 'Z': do_cmdline_cmd((char_u *)"x");
5474 break;
5475
5476 /* "ZQ": equivalent to ":q!" (Elvis compatible). */
5477 case 'Q': do_cmdline_cmd((char_u *)"q!");
5478 break;
5479
5480 default: clearopbeep(cap->oap);
5481 }
5482 }
5483}
5484
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485/*
5486 * Call nv_ident() as if "c1" was used, with "c2" as next character.
5487 */
5488 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005489do_nv_ident(int c1, int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490{
5491 oparg_T oa;
5492 cmdarg_T ca;
5493
5494 clear_oparg(&oa);
5495 vim_memset(&ca, 0, sizeof(ca));
5496 ca.oap = &oa;
5497 ca.cmdchar = c1;
5498 ca.nchar = c2;
5499 nv_ident(&ca);
5500}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501
5502/*
5503 * Handle the commands that use the word under the cursor.
5504 * [g] CTRL-] :ta to current identifier
5505 * [g] 'K' run program for current identifier
5506 * [g] '*' / to current identifier or string
5507 * [g] '#' ? to current identifier or string
5508 * g ']' :tselect for current identifier
5509 */
5510 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005511nv_ident(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512{
5513 char_u *ptr = NULL;
5514 char_u *buf;
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005515 unsigned buflen;
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005516 char_u *newbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517 char_u *p;
5518 char_u *kp; /* value of 'keywordprg' */
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005519 int kp_help; /* 'keywordprg' is ":he" */
5520 int kp_ex; /* 'keywordprg' starts with ":" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 int n = 0; /* init for GCC */
5522 int cmdchar;
5523 int g_cmd; /* "g" command */
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005524 int tag_cmd = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 char_u *aux_ptr;
5526 int isman;
5527 int isman_s;
5528
5529 if (cap->cmdchar == 'g') /* "g*", "g#", "g]" and "gCTRL-]" */
5530 {
5531 cmdchar = cap->nchar;
5532 g_cmd = TRUE;
5533 }
5534 else
5535 {
5536 cmdchar = cap->cmdchar;
5537 g_cmd = FALSE;
5538 }
5539
5540 if (cmdchar == POUND) /* the pound sign, '#' for English keyboards */
5541 cmdchar = '#';
5542
5543 /*
5544 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
5545 */
5546 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
5547 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
5549 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 if (checkclearopq(cap->oap))
5551 return;
5552 }
5553
5554 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
5555 (cmdchar == '*' || cmdchar == '#')
5556 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
5557 {
5558 clearop(cap->oap);
5559 return;
5560 }
5561
5562 /* Allocate buffer to put the command in. Inserting backslashes can
5563 * double the length of the word. p_kp / curbuf->b_p_kp could be added
5564 * and some numbers. */
5565 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
5566 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
5567 || STRCMP(kp, ":help") == 0);
Bram Moolenaara4f99f52017-08-26 16:25:32 +02005568 if (kp_help && *skipwhite(ptr) == NUL)
5569 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005570 emsg(_(e_noident)); /* found white space only */
Bram Moolenaara4f99f52017-08-26 16:25:32 +02005571 return;
5572 }
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005573 kp_ex = (*kp == ':');
5574 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp));
5575 buf = alloc(buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576 if (buf == NULL)
5577 return;
5578 buf[0] = NUL;
5579
5580 switch (cmdchar)
5581 {
5582 case '*':
5583 case '#':
5584 /*
5585 * Put cursor at start of word, makes search skip the word
5586 * under the cursor.
5587 * Call setpcmark() first, so "*``" puts the cursor back where
5588 * it was.
5589 */
5590 setpcmark();
5591 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
5592
5593 if (!g_cmd && vim_iswordp(ptr))
5594 STRCPY(buf, "\\<");
5595 no_smartcase = TRUE; /* don't use 'smartcase' now */
5596 break;
5597
5598 case 'K':
5599 if (kp_help)
5600 STRCPY(buf, "he! ");
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005601 else if (kp_ex)
5602 {
5603 if (cap->count0 != 0)
5604 vim_snprintf((char *)buf, buflen, "%s %ld",
5605 kp, cap->count0);
5606 else
5607 STRCPY(buf, kp);
5608 STRCAT(buf, " ");
5609 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 else
5611 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005612 /* An external command will probably use an argument starting
5613 * with "-" as an option. To avoid trouble we skip the "-". */
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005614 while (*ptr == '-' && n > 0)
5615 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005616 ++ptr;
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005617 --n;
5618 }
5619 if (n == 0)
5620 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005621 emsg(_(e_noident)); /* found dashes only */
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005622 vim_free(buf);
5623 return;
5624 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005625
Bram Moolenaar071d4272004-06-13 20:20:40 +00005626 /* When a count is given, turn it into a range. Is this
5627 * really what we want? */
5628 isman = (STRCMP(kp, "man") == 0);
5629 isman_s = (STRCMP(kp, "man -s") == 0);
5630 if (cap->count0 != 0 && !(isman || isman_s))
5631 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
5632
5633 STRCAT(buf, "! ");
5634 if (cap->count0 == 0 && isman_s)
5635 STRCAT(buf, "man");
5636 else
5637 STRCAT(buf, kp);
5638 STRCAT(buf, " ");
5639 if (cap->count0 != 0 && (isman || isman_s))
5640 {
5641 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
5642 STRCAT(buf, " ");
5643 }
5644 }
5645 break;
5646
5647 case ']':
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005648 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649#ifdef FEAT_CSCOPE
5650 if (p_cst)
5651 STRCPY(buf, "cstag ");
5652 else
5653#endif
5654 STRCPY(buf, "ts ");
5655 break;
5656
5657 default:
Bram Moolenaar97e7a842010-03-17 13:07:08 +01005658 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 if (curbuf->b_help)
5660 STRCPY(buf, "he! ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005661 else
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005662 {
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005663 if (g_cmd)
5664 STRCPY(buf, "tj ");
5665 else
5666 sprintf((char *)buf, "%ldta ", cap->count0);
5667 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668 }
5669
5670 /*
5671 * Now grab the chars in the identifier
5672 */
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005673 if (cmdchar == 'K' && !kp_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 {
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005675 ptr = vim_strnsave(ptr, n);
Bram Moolenaar426f3752016-11-04 21:22:37 +01005676 if (kp_ex)
5677 /* Escape the argument properly for an Ex command */
5678 p = vim_strsave_fnameescape(ptr, FALSE);
5679 else
5680 /* Escape the argument properly for a shell command */
5681 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005682 vim_free(ptr);
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005683 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005685 vim_free(buf);
5686 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005688 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005689 if (newbuf == NULL)
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005690 {
5691 vim_free(buf);
5692 vim_free(p);
5693 return;
5694 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005695 buf = newbuf;
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005696 STRCAT(buf, p);
5697 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005699 else
5700 {
5701 if (cmdchar == '*')
5702 aux_ptr = (char_u *)(p_magic ? "/.*~[^$\\" : "/^$\\");
5703 else if (cmdchar == '#')
5704 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005705 else if (tag_cmd)
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02005706 {
5707 if (curbuf->b_help)
5708 /* ":help" handles unescaped argument */
5709 aux_ptr = (char_u *)"";
5710 else
5711 aux_ptr = (char_u *)"\\|\"\n[";
5712 }
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005713 else
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005714 aux_ptr = (char_u *)"\\|\"\n*?[";
5715
5716 p = buf + STRLEN(buf);
5717 while (n-- > 0)
5718 {
5719 /* put a backslash before \ and some others */
5720 if (vim_strchr(aux_ptr, *ptr) != NULL)
5721 *p++ = '\\';
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005722 /* When current byte is a part of multibyte character, copy all
5723 * bytes of that character. */
5724 if (has_mbyte)
5725 {
5726 int i;
5727 int len = (*mb_ptr2len)(ptr) - 1;
5728
5729 for (i = 0; i < len && n >= 1; ++i, --n)
5730 *p++ = *ptr++;
5731 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005732 *p++ = *ptr++;
5733 }
5734 *p = NUL;
5735 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736
5737 /*
5738 * Execute the command.
5739 */
5740 if (cmdchar == '*' || cmdchar == '#')
5741 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005742 if (!g_cmd && (has_mbyte
5743 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr))
5744 : vim_iswordc(ptr[-1])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745 STRCAT(buf, "\\>");
5746#ifdef FEAT_CMDHIST
5747 /* put pattern in search history */
Bram Moolenaarc7be3f32009-12-24 14:01:12 +00005748 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
5750#endif
Bram Moolenaar46539112015-02-17 15:43:57 +01005751 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005752 }
5753 else
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02005754 {
5755 g_tag_at_cursor = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756 do_cmdline_cmd(buf);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02005757 g_tag_at_cursor = FALSE;
5758 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759
5760 vim_free(buf);
5761}
5762
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763/*
5764 * Get visually selected text, within one line only.
5765 * Returns FAIL if more than one line selected.
5766 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005767 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005768get_visual_text(
5769 cmdarg_T *cap,
5770 char_u **pp, /* return: start of selected text */
5771 int *lenp) /* return: length of selected text */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772{
5773 if (VIsual_mode != 'V')
5774 unadjust_for_sel();
5775 if (VIsual.lnum != curwin->w_cursor.lnum)
5776 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005777 if (cap != NULL)
5778 clearopbeep(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 return FAIL;
5780 }
5781 if (VIsual_mode == 'V')
5782 {
5783 *pp = ml_get_curline();
5784 *lenp = (int)STRLEN(*pp);
5785 }
5786 else
5787 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005788 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789 {
5790 *pp = ml_get_pos(&curwin->w_cursor);
5791 *lenp = VIsual.col - curwin->w_cursor.col + 1;
5792 }
5793 else
5794 {
5795 *pp = ml_get_pos(&VIsual);
5796 *lenp = curwin->w_cursor.col - VIsual.col + 1;
5797 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 if (has_mbyte)
5799 /* Correct the length to include the whole last character. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005800 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801 }
5802 reset_VIsual_and_resel();
5803 return OK;
5804}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805
5806/*
5807 * CTRL-T: backwards in tag stack
5808 */
5809 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005810nv_tagpop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811{
5812 if (!checkclearopq(cap->oap))
5813 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
5814}
5815
5816/*
5817 * Handle scrolling command 'H', 'L' and 'M'.
5818 */
5819 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005820nv_scroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821{
5822 int used = 0;
5823 long n;
5824#ifdef FEAT_FOLDING
5825 linenr_T lnum;
5826#endif
5827 int half;
5828
5829 cap->oap->motion_type = MLINE;
5830 setpcmark();
5831
5832 if (cap->cmdchar == 'L')
5833 {
5834 validate_botline(); /* make sure curwin->w_botline is valid */
5835 curwin->w_cursor.lnum = curwin->w_botline - 1;
5836 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
5837 curwin->w_cursor.lnum = 1;
5838 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005839 {
5840#ifdef FEAT_FOLDING
5841 if (hasAnyFolding(curwin))
5842 {
5843 /* Count a fold for one screen line. */
5844 for (n = cap->count1 - 1; n > 0
5845 && curwin->w_cursor.lnum > curwin->w_topline; --n)
5846 {
5847 (void)hasFolding(curwin->w_cursor.lnum,
5848 &curwin->w_cursor.lnum, NULL);
5849 --curwin->w_cursor.lnum;
5850 }
5851 }
5852 else
5853#endif
5854 curwin->w_cursor.lnum -= cap->count1 - 1;
5855 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 }
5857 else
5858 {
5859 if (cap->cmdchar == 'M')
5860 {
5861#ifdef FEAT_DIFF
5862 /* Don't count filler lines above the window. */
5863 used -= diff_check_fill(curwin, curwin->w_topline)
5864 - curwin->w_topfill;
5865#endif
5866 validate_botline(); /* make sure w_empty_rows is valid */
5867 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
5868 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
5869 {
5870#ifdef FEAT_DIFF
5871 /* Count half he number of filler lines to be "below this
5872 * line" and half to be "above the next line". */
5873 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
5874 + n) / 2 >= half)
5875 {
5876 --n;
5877 break;
5878 }
5879#endif
5880 used += plines(curwin->w_topline + n);
5881 if (used >= half)
5882 break;
5883#ifdef FEAT_FOLDING
5884 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
5885 n = lnum - curwin->w_topline;
5886#endif
5887 }
5888 if (n > 0 && used > curwin->w_height)
5889 --n;
5890 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005891 else /* (cap->cmdchar == 'H') */
5892 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005894#ifdef FEAT_FOLDING
5895 if (hasAnyFolding(curwin))
5896 {
5897 /* Count a fold for one screen line. */
5898 lnum = curwin->w_topline;
5899 while (n-- > 0 && lnum < curwin->w_botline - 1)
5900 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02005901 (void)hasFolding(lnum, NULL, &lnum);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005902 ++lnum;
5903 }
5904 n = lnum - curwin->w_topline;
5905 }
5906#endif
5907 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 curwin->w_cursor.lnum = curwin->w_topline + n;
5909 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5910 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5911 }
5912
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02005913 /* Correct for 'so', except when an operator is pending. */
5914 if (cap->oap->op_type == OP_NOP)
5915 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 beginline(BL_SOL | BL_FIX);
5917}
5918
5919/*
5920 * Cursor right commands.
5921 */
5922 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005923nv_right(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924{
5925 long n;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005926 int past_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005928 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
5929 {
5930 /* <C-Right> and <S-Right> move a word or WORD right */
5931 if (mod_mask & MOD_MASK_CTRL)
5932 cap->arg = TRUE;
5933 nv_wordcmd(cap);
5934 return;
5935 }
5936
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937 cap->oap->motion_type = MCHAR;
5938 cap->oap->inclusive = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005939 past_line = (VIsual_active && *p_sel != 'o');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941 /*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005942 * In virtual edit mode, there's no such thing as "past_line", as lines
5943 * are (theoretically) infinitely long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005944 */
5945 if (virtual_active())
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005946 past_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947
5948 for (n = cap->count1; n > 0; --n)
5949 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005950 if ((!past_line && oneright() == FAIL)
5951 || (past_line && *ml_get_cursor() == NUL)
Bram Moolenaar78a15312009-05-15 19:33:18 +00005952 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953 {
5954 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005955 * <Space> wraps to next line if 'whichwrap' has 's'.
5956 * 'l' wraps to next line if 'whichwrap' has 'l'.
5957 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958 */
5959 if ( ((cap->cmdchar == ' '
5960 && vim_strchr(p_ww, 's') != NULL)
5961 || (cap->cmdchar == 'l'
5962 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00005963 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964 && vim_strchr(p_ww, '>') != NULL))
5965 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5966 {
5967 /* When deleting we also count the NL as a character.
5968 * Set cap->oap->inclusive when last char in the line is
5969 * included, move to next line after that */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005970 if ( cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971 && !cap->oap->inclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005972 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 cap->oap->inclusive = TRUE;
5974 else
5975 {
5976 ++curwin->w_cursor.lnum;
5977 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 curwin->w_set_curswant = TRUE;
5980 cap->oap->inclusive = FALSE;
5981 }
5982 continue;
5983 }
5984 if (cap->oap->op_type == OP_NOP)
5985 {
5986 /* Only beep and flush if not moved at all */
5987 if (n == cap->count1)
5988 beep_flush();
5989 }
5990 else
5991 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005992 if (!LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993 cap->oap->inclusive = TRUE;
5994 }
5995 break;
5996 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005997 else if (past_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998 {
5999 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000 if (virtual_active())
6001 oneright();
6002 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006004 if (has_mbyte)
6005 curwin->w_cursor.col +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006006 (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006008 ++curwin->w_cursor.col;
6009 }
6010 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 }
6012#ifdef FEAT_FOLDING
6013 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
6014 && cap->oap->op_type == OP_NOP)
6015 foldOpenCursor();
6016#endif
6017}
6018
6019/*
6020 * Cursor left commands.
6021 *
6022 * Returns TRUE when operator end should not be adjusted.
6023 */
6024 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006025nv_left(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026{
6027 long n;
6028
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006029 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
6030 {
6031 /* <C-Left> and <S-Left> move a word or WORD left */
6032 if (mod_mask & MOD_MASK_CTRL)
6033 cap->arg = 1;
6034 nv_bck_word(cap);
6035 return;
6036 }
6037
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038 cap->oap->motion_type = MCHAR;
6039 cap->oap->inclusive = FALSE;
6040 for (n = cap->count1; n > 0; --n)
6041 {
6042 if (oneleft() == FAIL)
6043 {
6044 /* <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
6045 * 'h' wraps to previous line if 'whichwrap' has 'h'.
6046 * CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
6047 */
6048 if ( (((cap->cmdchar == K_BS
6049 || cap->cmdchar == Ctrl_H)
6050 && vim_strchr(p_ww, 'b') != NULL)
6051 || (cap->cmdchar == 'h'
6052 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00006053 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054 && vim_strchr(p_ww, '<') != NULL))
6055 && curwin->w_cursor.lnum > 1)
6056 {
6057 --(curwin->w_cursor.lnum);
6058 coladvance((colnr_T)MAXCOL);
6059 curwin->w_set_curswant = TRUE;
6060
6061 /* When the NL before the first char has to be deleted we
6062 * put the cursor on the NUL after the previous line.
6063 * This is a very special case, be careful!
Bram Moolenaarad8958b2008-01-02 15:26:04 +00006064 * Don't adjust op_end now, otherwise it won't work. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 if ( (cap->oap->op_type == OP_DELETE
6066 || cap->oap->op_type == OP_CHANGE)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006067 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01006069 char_u *cp = ml_get_cursor();
6070
6071 if (*cp != NUL)
6072 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01006073 if (has_mbyte)
6074 curwin->w_cursor.col += (*mb_ptr2len)(cp);
6075 else
Bram Moolenaar7d311c52014-02-22 23:49:35 +01006076 ++curwin->w_cursor.col;
6077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006078 cap->retval |= CA_NO_ADJ_OP_END;
6079 }
6080 continue;
6081 }
6082 /* Only beep and flush if not moved at all */
6083 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
6084 beep_flush();
6085 break;
6086 }
6087 }
6088#ifdef FEAT_FOLDING
6089 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
6090 && cap->oap->op_type == OP_NOP)
6091 foldOpenCursor();
6092#endif
6093}
6094
6095/*
6096 * Cursor up commands.
6097 * cap->arg is TRUE for "-": Move cursor to first non-blank.
6098 */
6099 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006100nv_up(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006102 if (mod_mask & MOD_MASK_SHIFT)
6103 {
6104 /* <S-Up> is page up */
6105 cap->arg = BACKWARD;
6106 nv_page(cap);
6107 }
6108 else
6109 {
6110 cap->oap->motion_type = MLINE;
6111 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
6112 clearopbeep(cap->oap);
6113 else if (cap->arg)
6114 beginline(BL_WHITE | BL_FIX);
6115 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116}
6117
6118/*
6119 * Cursor down commands.
6120 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
6121 */
6122 static void
Bram Moolenaar1b010052016-09-12 12:24:11 +02006123nv_down(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006124{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006125 if (mod_mask & MOD_MASK_SHIFT)
6126 {
6127 /* <S-Down> is page down */
6128 cap->arg = FORWARD;
6129 nv_page(cap);
6130 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02006131#if defined(FEAT_QUICKFIX)
Bram Moolenaar0a08c632018-07-25 22:36:52 +02006132 /* Quickfix window only: view the result under the cursor. */
6133 else if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
6134 qf_view_result(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135#endif
Bram Moolenaar0a08c632018-07-25 22:36:52 +02006136 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137 {
6138#ifdef FEAT_CMDWIN
6139 /* In the cmdline window a <CR> executes the command. */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006140 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141 cmdwin_result = CAR;
6142 else
6143#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02006144#ifdef FEAT_JOB_CHANNEL
6145 /* In a prompt buffer a <CR> in the last line invokes the callback. */
6146 if (bt_prompt(curbuf) && cap->cmdchar == CAR
6147 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
6148 {
6149 invoke_prompt_callback();
6150 if (restart_edit == 0)
6151 restart_edit = 'a';
6152 }
6153 else
6154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155 {
6156 cap->oap->motion_type = MLINE;
6157 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
6158 clearopbeep(cap->oap);
6159 else if (cap->arg)
6160 beginline(BL_WHITE | BL_FIX);
6161 }
6162 }
6163}
6164
6165#ifdef FEAT_SEARCHPATH
6166/*
6167 * Grab the file name under the cursor and edit it.
6168 */
6169 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006170nv_gotofile(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171{
6172 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006173 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006175 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176 {
6177 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006178 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179 return;
6180 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006181 if (curbuf_locked())
6182 {
6183 clearop(cap->oap);
6184 return;
6185 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006187 ptr = grab_file_name(cap->count1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188
6189 if (ptr != NULL)
6190 {
6191 /* do autowrite if necessary */
Bram Moolenaareb44a682017-08-03 22:44:55 +02006192 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf))
Bram Moolenaarcde88542015-08-11 19:14:00 +02006193 (void)autowrite(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194 setpcmark();
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02006195 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
Bram Moolenaareb44a682017-08-03 22:44:55 +02006196 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02006197 && cap->nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006198 {
6199 curwin->w_cursor.lnum = lnum;
6200 check_cursor_lnum();
6201 beginline(BL_SOL | BL_FIX);
6202 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203 vim_free(ptr);
6204 }
6205 else
6206 clearop(cap->oap);
6207}
6208#endif
6209
6210/*
6211 * <End> command: to end of current line or last line.
6212 */
6213 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006214nv_end(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006216 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) /* CTRL-END = goto last line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006218 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006219 nv_goto(cap);
6220 cap->count1 = 1; /* to end of current line */
6221 }
6222 nv_dollar(cap);
6223}
6224
6225/*
6226 * Handle the "$" command.
6227 */
6228 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006229nv_dollar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230{
6231 cap->oap->motion_type = MCHAR;
6232 cap->oap->inclusive = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 /* In virtual mode when off the edge of a line and an operator
6234 * is pending (whew!) keep the cursor where it is.
6235 * Otherwise, send it to the end of the line. */
6236 if (!virtual_active() || gchar_cursor() != NUL
6237 || cap->oap->op_type == OP_NOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238 curwin->w_curswant = MAXCOL; /* so we stay at the end */
6239 if (cursor_down((long)(cap->count1 - 1),
6240 cap->oap->op_type == OP_NOP) == FAIL)
6241 clearopbeep(cap->oap);
6242#ifdef FEAT_FOLDING
6243 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6244 foldOpenCursor();
6245#endif
6246}
6247
6248/*
6249 * Implementation of '?' and '/' commands.
6250 * If cap->arg is TRUE don't set PC mark.
6251 */
6252 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006253nv_search(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254{
6255 oparg_T *oap = cap->oap;
Bram Moolenaardda933d2016-09-03 21:04:58 +02006256 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257
6258 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
6259 {
6260 /* Translate "g??" to "g?g?" */
6261 cap->cmdchar = 'g';
6262 cap->nchar = '?';
6263 nv_operator(cap);
6264 return;
6265 }
6266
Bram Moolenaardda933d2016-09-03 21:04:58 +02006267 /* When using 'incsearch' the cursor may be moved to set a different search
6268 * start position. */
Bram Moolenaare96a2492019-06-25 04:12:16 +02006269 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270
6271 if (cap->searchbuf == NULL)
6272 {
6273 clearop(oap);
6274 return;
6275 }
6276
Bram Moolenaar46539112015-02-17 15:43:57 +01006277 (void)normal_search(cap, cap->cmdchar, cap->searchbuf,
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006278 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor))
Bram Moolenaardda933d2016-09-03 21:04:58 +02006279 ? 0 : SEARCH_MARK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280}
6281
6282/*
6283 * Handle "N" and "n" commands.
6284 * cap->arg is SEARCH_REV for "N", 0 for "n".
6285 */
6286 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006287nv_next(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288{
Bram Moolenaar46539112015-02-17 15:43:57 +01006289 pos_T old = curwin->w_cursor;
6290 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg);
6291
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006292 if (i == 1 && EQUAL_POS(old, curwin->w_cursor))
Bram Moolenaar46539112015-02-17 15:43:57 +01006293 {
6294 /* Avoid getting stuck on the current cursor position, which can
6295 * happen when an offset is given and the cursor is on the last char
6296 * in the buffer: Repeat with count + 1. */
6297 cap->count1 += 1;
6298 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg);
6299 cap->count1 -= 1;
6300 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301}
6302
6303/*
6304 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
6305 * Uses only cap->count1 and cap->oap from "cap".
Bram Moolenaar46539112015-02-17 15:43:57 +01006306 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307 */
Bram Moolenaar46539112015-02-17 15:43:57 +01006308 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006309normal_search(
6310 cmdarg_T *cap,
6311 int dir,
6312 char_u *pat,
6313 int opt) /* extra flags for do_search() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006314{
6315 int i;
6316
6317 cap->oap->motion_type = MCHAR;
6318 cap->oap->inclusive = FALSE;
6319 cap->oap->use_reg_one = TRUE;
6320 curwin->w_set_curswant = TRUE;
6321
6322 i = do_search(cap->oap, dir, pat, cap->count1,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006323 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324 if (i == 0)
6325 clearop(cap->oap);
6326 else
6327 {
6328 if (i == 2)
6329 cap->oap->motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331#ifdef FEAT_FOLDING
6332 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
6333 foldOpenCursor();
6334#endif
6335 }
6336
6337 /* "/$" will put the cursor after the end of the line, may need to
6338 * correct that here */
6339 check_cursor();
Bram Moolenaar46539112015-02-17 15:43:57 +01006340 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341}
6342
6343/*
6344 * Character search commands.
6345 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
6346 * ',' and FALSE for ';'.
6347 * cap->nchar is NUL for ',' and ';' (repeat the search)
6348 */
6349 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006350nv_csearch(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351{
6352 int t_cmd;
6353
6354 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
6355 t_cmd = TRUE;
6356 else
6357 t_cmd = FALSE;
6358
6359 cap->oap->motion_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006360 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
6361 clearopbeep(cap->oap);
6362 else
6363 {
6364 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365 /* Include a Tab for "tx" and for "dfx". */
6366 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
6367 && (t_cmd || cap->oap->op_type != OP_NOP))
6368 {
6369 colnr_T scol, ecol;
6370
6371 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
6372 curwin->w_cursor.coladd = ecol - scol;
6373 }
6374 else
6375 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006377#ifdef FEAT_FOLDING
6378 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6379 foldOpenCursor();
6380#endif
6381 }
6382}
6383
6384/*
6385 * "[" and "]" commands.
6386 * cap->arg is BACKWARD for "[" and FORWARD for "]".
6387 */
6388 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006389nv_brackets(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390{
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01006391 pos_T new_pos = {0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392 pos_T prev_pos;
6393 pos_T *pos = NULL; /* init for GCC */
6394 pos_T old_pos; /* cursor position before command */
6395 int flag;
6396 long n;
6397 int findc;
6398 int c;
6399
6400 cap->oap->motion_type = MCHAR;
6401 cap->oap->inclusive = FALSE;
6402 old_pos = curwin->w_cursor;
Bram Moolenaar32526b32019-01-19 17:43:09 +01006403 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404
6405#ifdef FEAT_SEARCHPATH
6406 /*
6407 * "[f" or "]f" : Edit file under the cursor (same as "gf")
6408 */
6409 if (cap->nchar == 'f')
6410 nv_gotofile(cap);
6411 else
6412#endif
6413
6414#ifdef FEAT_FIND_ID
6415 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00006416 * Find the occurrence(s) of the identifier or define under cursor
6417 * in current and included files or jump to the first occurrence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418 *
6419 * search list jump
6420 * fwd bwd fwd bwd fwd bwd
6421 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
6422 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
6423 */
6424 if (vim_strchr((char_u *)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006425# ifdef EBCDIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426 "iI\005dD\067",
Bram Moolenaar32526b32019-01-19 17:43:09 +01006427# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428 "iI\011dD\004",
Bram Moolenaar32526b32019-01-19 17:43:09 +01006429# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430 cap->nchar) != NULL)
6431 {
6432 char_u *ptr;
6433 int len;
6434
6435 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
6436 clearop(cap->oap);
6437 else
6438 {
6439 find_pattern_in_path(ptr, 0, len, TRUE,
6440 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
6441 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
6442 cap->count1,
6443 isupper(cap->nchar) ? ACTION_SHOW_ALL :
6444 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
6445 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
6446 (linenr_T)MAXLNUM);
6447 curwin->w_set_curswant = TRUE;
6448 }
6449 }
6450 else
6451#endif
6452
6453 /*
6454 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
6455 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
6456 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
6457 * "[m" or "]m" search for prev/next start of (Java) method.
6458 * "[M" or "]M" search for prev/next end of (Java) method.
6459 */
6460 if ( (cap->cmdchar == '['
6461 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
6462 || (cap->cmdchar == ']'
6463 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
6464 {
6465 if (cap->nchar == '*')
6466 cap->nchar = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00006467 prev_pos.lnum = 0;
6468 if (cap->nchar == 'm' || cap->nchar == 'M')
6469 {
6470 if (cap->cmdchar == '[')
6471 findc = '{';
6472 else
6473 findc = '}';
6474 n = 9999;
6475 }
6476 else
6477 {
6478 findc = cap->nchar;
6479 n = cap->count1;
6480 }
6481 for ( ; n > 0; --n)
6482 {
6483 if ((pos = findmatchlimit(cap->oap, findc,
6484 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
6485 {
6486 if (new_pos.lnum == 0) /* nothing found */
6487 {
6488 if (cap->nchar != 'm' && cap->nchar != 'M')
6489 clearopbeep(cap->oap);
6490 }
6491 else
6492 pos = &new_pos; /* use last one found */
6493 break;
6494 }
6495 prev_pos = new_pos;
6496 curwin->w_cursor = *pos;
6497 new_pos = *pos;
6498 }
6499 curwin->w_cursor = old_pos;
6500
6501 /*
6502 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
6503 * brought us to the match for "[m" and "]M" when inside a method.
6504 * Try finding the '{' or '}' we want to be at.
6505 * Also repeat for the given count.
6506 */
6507 if (cap->nchar == 'm' || cap->nchar == 'M')
6508 {
6509 /* norm is TRUE for "]M" and "[m" */
6510 int norm = ((findc == '{') == (cap->nchar == 'm'));
6511
6512 n = cap->count1;
6513 /* found a match: we were inside a method */
6514 if (prev_pos.lnum != 0)
6515 {
6516 pos = &prev_pos;
6517 curwin->w_cursor = prev_pos;
6518 if (norm)
6519 --n;
6520 }
6521 else
6522 pos = NULL;
6523 while (n > 0)
6524 {
6525 for (;;)
6526 {
6527 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
6528 {
6529 /* if not found anything, that's an error */
6530 if (pos == NULL)
6531 clearopbeep(cap->oap);
6532 n = 0;
6533 break;
6534 }
6535 c = gchar_cursor();
6536 if (c == '{' || c == '}')
6537 {
6538 /* Must have found end/start of class: use it.
6539 * Or found the place to be at. */
6540 if ((c == findc && norm) || (n == 1 && !norm))
6541 {
6542 new_pos = curwin->w_cursor;
6543 pos = &new_pos;
6544 n = 0;
6545 }
6546 /* if no match found at all, we started outside of the
6547 * class and we're inside now. Just go on. */
6548 else if (new_pos.lnum == 0)
6549 {
6550 new_pos = curwin->w_cursor;
6551 pos = &new_pos;
6552 }
6553 /* found start/end of other method: go to match */
6554 else if ((pos = findmatchlimit(cap->oap, findc,
6555 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
6556 0)) == NULL)
6557 n = 0;
6558 else
6559 curwin->w_cursor = *pos;
6560 break;
6561 }
6562 }
6563 --n;
6564 }
6565 curwin->w_cursor = old_pos;
6566 if (pos == NULL && new_pos.lnum != 0)
6567 clearopbeep(cap->oap);
6568 }
6569 if (pos != NULL)
6570 {
6571 setpcmark();
6572 curwin->w_cursor = *pos;
6573 curwin->w_set_curswant = TRUE;
6574#ifdef FEAT_FOLDING
6575 if ((fdo_flags & FDO_BLOCK) && KeyTyped
6576 && cap->oap->op_type == OP_NOP)
6577 foldOpenCursor();
6578#endif
6579 }
6580 }
6581
6582 /*
6583 * "[[", "[]", "]]" and "][": move to start or end of function
6584 */
6585 else if (cap->nchar == '[' || cap->nchar == ']')
6586 {
6587 if (cap->nchar == cap->cmdchar) /* "]]" or "[[" */
6588 flag = '{';
6589 else
6590 flag = '}'; /* "][" or "[]" */
6591
6592 curwin->w_set_curswant = TRUE;
6593 /*
6594 * Imitate strange Vi behaviour: When using "]]" with an operator
6595 * we also stop at '}'.
6596 */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00006597 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598 (cap->oap->op_type != OP_NOP
6599 && cap->arg == FORWARD && flag == '{')))
6600 clearopbeep(cap->oap);
6601 else
6602 {
6603 if (cap->oap->op_type == OP_NOP)
6604 beginline(BL_WHITE | BL_FIX);
6605#ifdef FEAT_FOLDING
6606 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6607 foldOpenCursor();
6608#endif
6609 }
6610 }
6611
6612 /*
6613 * "[p", "[P", "]P" and "]p": put with indent adjustment
6614 */
6615 else if (cap->nchar == 'p' || cap->nchar == 'P')
6616 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02006617 nv_put_opt(cap, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006618 }
6619
6620 /*
6621 * "['", "[`", "]'" and "]`": jump to next mark
6622 */
6623 else if (cap->nchar == '\'' || cap->nchar == '`')
6624 {
6625 pos = &curwin->w_cursor;
6626 for (n = cap->count1; n > 0; --n)
6627 {
6628 prev_pos = *pos;
6629 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
6630 cap->nchar == '\'');
6631 if (pos == NULL)
6632 break;
6633 }
6634 if (pos == NULL)
6635 pos = &prev_pos;
6636 nv_cursormark(cap, cap->nchar == '\'', pos);
6637 }
6638
6639#ifdef FEAT_MOUSE
6640 /*
6641 * [ or ] followed by a middle mouse click: put selected text with
6642 * indent adjustment. Any other button just does as usual.
6643 */
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02006644 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006645 {
6646 (void)do_mouse(cap->oap, cap->nchar,
6647 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
6648 cap->count1, PUT_FIXINDENT);
6649 }
6650#endif /* FEAT_MOUSE */
6651
6652#ifdef FEAT_FOLDING
6653 /*
6654 * "[z" and "]z": move to start or end of open fold.
6655 */
6656 else if (cap->nchar == 'z')
6657 {
6658 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6659 cap->count1) == FAIL)
6660 clearopbeep(cap->oap);
6661 }
6662#endif
6663
6664#ifdef FEAT_DIFF
6665 /*
6666 * "[c" and "]c": move to next or previous diff-change.
6667 */
6668 else if (cap->nchar == 'c')
6669 {
6670 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
6671 cap->count1) == FAIL)
6672 clearopbeep(cap->oap);
6673 }
6674#endif
6675
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00006676#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006677 /*
6678 * "[s", "[S", "]s" and "]S": move to next spell error.
6679 */
6680 else if (cap->nchar == 's' || cap->nchar == 'S')
6681 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00006682 setpcmark();
6683 for (n = 0; n < cap->count1; ++n)
Bram Moolenaar95529562005-08-25 21:21:38 +00006684 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6685 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00006686 {
6687 clearopbeep(cap->oap);
6688 break;
6689 }
Bram Moolenaarb73fa622017-12-21 20:27:47 +01006690 else
6691 curwin->w_set_curswant = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006692# ifdef FEAT_FOLDING
6693 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
6694 foldOpenCursor();
6695# endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006696 }
6697#endif
6698
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699 /* Not a valid cap->nchar. */
6700 else
6701 clearopbeep(cap->oap);
6702}
6703
6704/*
6705 * Handle Normal mode "%" command.
6706 */
6707 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006708nv_percent(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709{
6710 pos_T *pos;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02006711#if defined(FEAT_FOLDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712 linenr_T lnum = curwin->w_cursor.lnum;
6713#endif
6714
6715 cap->oap->inclusive = TRUE;
6716 if (cap->count0) /* {cnt}% : goto {cnt} percentage in file */
6717 {
6718 if (cap->count0 > 100)
6719 clearopbeep(cap->oap);
6720 else
6721 {
6722 cap->oap->motion_type = MLINE;
6723 setpcmark();
6724 /* Round up, so CTRL-G will give same value. Watch out for a
6725 * large line count, the line number must not go negative! */
6726 if (curbuf->b_ml.ml_line_count > 1000000)
6727 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
6728 / 100L * cap->count0;
6729 else
6730 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
6731 cap->count0 + 99L) / 100L;
6732 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6733 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6734 beginline(BL_SOL | BL_FIX);
6735 }
6736 }
6737 else /* "%" : go to matching paren */
6738 {
6739 cap->oap->motion_type = MCHAR;
6740 cap->oap->use_reg_one = TRUE;
6741 if ((pos = findmatch(cap->oap, NUL)) == NULL)
6742 clearopbeep(cap->oap);
6743 else
6744 {
6745 setpcmark();
6746 curwin->w_cursor = *pos;
6747 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006749 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750 }
6751 }
6752#ifdef FEAT_FOLDING
6753 if (cap->oap->op_type == OP_NOP
6754 && lnum != curwin->w_cursor.lnum
6755 && (fdo_flags & FDO_PERCENT)
6756 && KeyTyped)
6757 foldOpenCursor();
6758#endif
6759}
6760
6761/*
6762 * Handle "(" and ")" commands.
6763 * cap->arg is BACKWARD for "(" and FORWARD for ")".
6764 */
6765 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006766nv_brace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006767{
6768 cap->oap->motion_type = MCHAR;
6769 cap->oap->use_reg_one = TRUE;
Bram Moolenaarebefac62005-12-28 22:39:57 +00006770 /* The motion used to be inclusive for "(", but that is not what Vi does. */
6771 cap->oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772 curwin->w_set_curswant = TRUE;
6773
6774 if (findsent(cap->arg, cap->count1) == FAIL)
6775 clearopbeep(cap->oap);
6776 else
6777 {
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006778 /* Don't leave the cursor on the NUL past end of line. */
6779 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781#ifdef FEAT_FOLDING
6782 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6783 foldOpenCursor();
6784#endif
6785 }
6786}
6787
6788/*
6789 * "m" command: Mark a position.
6790 */
6791 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006792nv_mark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006793{
6794 if (!checkclearop(cap->oap))
6795 {
6796 if (setmark(cap->nchar) == FAIL)
6797 clearopbeep(cap->oap);
6798 }
6799}
6800
6801/*
6802 * "{" and "}" commands.
6803 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
6804 */
6805 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006806nv_findpar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006807{
6808 cap->oap->motion_type = MCHAR;
6809 cap->oap->inclusive = FALSE;
6810 cap->oap->use_reg_one = TRUE;
6811 curwin->w_set_curswant = TRUE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00006812 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006813 clearopbeep(cap->oap);
6814 else
6815 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006816 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817#ifdef FEAT_FOLDING
6818 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6819 foldOpenCursor();
6820#endif
6821 }
6822}
6823
6824/*
6825 * "u" command: Undo or make lower case.
6826 */
6827 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006828nv_undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006829{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006830 if (cap->oap->op_type == OP_LOWER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006831 {
6832 /* translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" */
6833 cap->cmdchar = 'g';
6834 cap->nchar = 'u';
6835 nv_operator(cap);
6836 }
6837 else
6838 nv_kundo(cap);
6839}
6840
6841/*
6842 * <Undo> command.
6843 */
6844 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006845nv_kundo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846{
6847 if (!checkclearopq(cap->oap))
6848 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02006849#ifdef FEAT_JOB_CHANNEL
6850 if (bt_prompt(curbuf))
6851 {
6852 clearopbeep(cap->oap);
6853 return;
6854 }
6855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856 u_undo((int)cap->count1);
6857 curwin->w_set_curswant = TRUE;
6858 }
6859}
6860
6861/*
6862 * Handle the "r" command.
6863 */
6864 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006865nv_replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866{
6867 char_u *ptr;
6868 int had_ctrl_v;
6869 long n;
6870
6871 if (checkclearop(cap->oap))
6872 return;
Bram Moolenaarf2732452018-06-03 14:47:35 +02006873#ifdef FEAT_JOB_CHANNEL
6874 if (bt_prompt(curbuf) && !prompt_curpos_editable())
6875 {
6876 clearopbeep(cap->oap);
6877 return;
6878 }
6879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006880
6881 /* get another character */
6882 if (cap->nchar == Ctrl_V)
6883 {
6884 had_ctrl_v = Ctrl_V;
6885 cap->nchar = get_literal();
6886 /* Don't redo a multibyte character with CTRL-V. */
6887 if (cap->nchar > DEL)
6888 had_ctrl_v = NUL;
6889 }
6890 else
6891 had_ctrl_v = NUL;
6892
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00006893 /* Abort if the character is a special key. */
6894 if (IS_SPECIAL(cap->nchar))
6895 {
6896 clearopbeep(cap->oap);
6897 return;
6898 }
6899
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900 /* Visual mode "r" */
6901 if (VIsual_active)
6902 {
Bram Moolenaar57fb0da2009-02-04 10:46:25 +00006903 if (got_int)
6904 reset_VIsual();
Bram Moolenaard9820532013-11-04 01:41:17 +01006905 if (had_ctrl_v)
6906 {
Bram Moolenaarf12519d2018-02-06 22:52:49 +01006907 /* Use a special (negative) number to make a difference between a
6908 * literal CR or NL and a line break. */
6909 if (cap->nchar == CAR)
6910 cap->nchar = REPLACE_CR_NCHAR;
6911 else if (cap->nchar == NL)
6912 cap->nchar = REPLACE_NL_NCHAR;
Bram Moolenaard9820532013-11-04 01:41:17 +01006913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006914 nv_operator(cap);
6915 return;
6916 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006917
Bram Moolenaar071d4272004-06-13 20:20:40 +00006918 /* Break tabs, etc. */
6919 if (virtual_active())
6920 {
6921 if (u_save_cursor() == FAIL)
6922 return;
6923 if (gchar_cursor() == NUL)
6924 {
6925 /* Add extra space and put the cursor on the first one. */
6926 coladvance_force((colnr_T)(getviscol() + cap->count1));
6927 curwin->w_cursor.col -= cap->count1;
6928 }
6929 else if (gchar_cursor() == TAB)
6930 coladvance_force(getviscol());
6931 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00006933 /* Abort if not enough characters to replace. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006934 ptr = ml_get_cursor();
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00006935 if (STRLEN(ptr) < (unsigned)cap->count1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01006936 || (has_mbyte && mb_charlen(ptr) < cap->count1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 {
6938 clearopbeep(cap->oap);
6939 return;
6940 }
6941
6942 /*
6943 * Replacing with a TAB is done by edit() when it is complicated because
6944 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
6945 * Other characters are done below to avoid problems with things like
6946 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
6947 */
6948 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
6949 {
6950 stuffnumReadbuff(cap->count1);
6951 stuffcharReadbuff('R');
6952 stuffcharReadbuff('\t');
6953 stuffcharReadbuff(ESC);
6954 return;
6955 }
6956
6957 /* save line for undo */
6958 if (u_save_cursor() == FAIL)
6959 return;
6960
6961 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
6962 {
6963 /*
6964 * Replace character(s) by a single newline.
6965 * Strange vi behaviour: Only one newline is inserted.
6966 * Delete the characters here.
6967 * Insert the newline with an insert command, takes care of
6968 * autoindent. The insert command depends on being on the last
6969 * character of a line or not.
6970 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006971 (void)del_chars(cap->count1, FALSE); /* delete the characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006972 stuffcharReadbuff('\r');
6973 stuffcharReadbuff(ESC);
6974
6975 /* Give 'r' to edit(), to get the redo command right. */
6976 invoke_edit(cap, TRUE, 'r', FALSE);
6977 }
6978 else
6979 {
6980 prep_redo(cap->oap->regname, cap->count1,
6981 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
6982
6983 curbuf->b_op_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984 if (has_mbyte)
6985 {
6986 int old_State = State;
6987
6988 if (cap->ncharC1 != 0)
6989 AppendCharToRedobuff(cap->ncharC1);
6990 if (cap->ncharC2 != 0)
6991 AppendCharToRedobuff(cap->ncharC2);
6992
6993 /* This is slow, but it handles replacing a single-byte with a
6994 * multi-byte and the other way around. Also handles adding
6995 * composing characters for utf-8. */
6996 for (n = cap->count1; n > 0; --n)
6997 {
6998 State = REPLACE;
Bram Moolenaar8320da42012-04-30 18:18:47 +02006999 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
7000 {
7001 int c = ins_copychar(curwin->w_cursor.lnum
7002 + (cap->nchar == Ctrl_Y ? -1 : 1));
7003 if (c != NUL)
7004 ins_char(c);
7005 else
7006 /* will be decremented further down */
7007 ++curwin->w_cursor.col;
7008 }
7009 else
7010 ins_char(cap->nchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007011 State = old_State;
7012 if (cap->ncharC1 != 0)
7013 ins_char(cap->ncharC1);
7014 if (cap->ncharC2 != 0)
7015 ins_char(cap->ncharC2);
7016 }
7017 }
7018 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007019 {
7020 /*
7021 * Replace the characters within one line.
7022 */
7023 for (n = cap->count1; n > 0; --n)
7024 {
7025 /*
7026 * Get ptr again, because u_save and/or showmatch() will have
7027 * released the line. At the same time we let know that the
7028 * line will be changed.
7029 */
7030 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02007031 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
7032 {
7033 int c = ins_copychar(curwin->w_cursor.lnum
7034 + (cap->nchar == Ctrl_Y ? -1 : 1));
7035 if (c != NUL)
7036 ptr[curwin->w_cursor.col] = c;
7037 }
7038 else
7039 ptr[curwin->w_cursor.col] = cap->nchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040 if (p_sm && msg_silent == 0)
7041 showmatch(cap->nchar);
7042 ++curwin->w_cursor.col;
7043 }
7044#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007045 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007046 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007047 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007048
Bram Moolenaar009b2592004-10-24 19:18:58 +00007049 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007050 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00007052 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053 }
7054#endif
7055
7056 /* mark the buffer as changed and prepare for displaying */
7057 changed_bytes(curwin->w_cursor.lnum,
7058 (colnr_T)(curwin->w_cursor.col - cap->count1));
7059 }
7060 --curwin->w_cursor.col; /* cursor on the last replaced char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061 /* if the character on the left of the current cursor is a multi-byte
7062 * character, move two characters left */
7063 if (has_mbyte)
7064 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 curbuf->b_op_end = curwin->w_cursor;
7066 curwin->w_set_curswant = TRUE;
7067 set_last_insert(cap->nchar);
7068 }
7069}
7070
Bram Moolenaar071d4272004-06-13 20:20:40 +00007071/*
7072 * 'o': Exchange start and end of Visual area.
7073 * 'O': same, but in block mode exchange left and right corners.
7074 */
7075 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007076v_swap_corners(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077{
7078 pos_T old_cursor;
7079 colnr_T left, right;
7080
7081 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
7082 {
7083 old_cursor = curwin->w_cursor;
7084 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
7085 curwin->w_cursor.lnum = VIsual.lnum;
7086 coladvance(left);
7087 VIsual = curwin->w_cursor;
7088
7089 curwin->w_cursor.lnum = old_cursor.lnum;
7090 curwin->w_curswant = right;
7091 /* 'selection "exclusive" and cursor at right-bottom corner: move it
7092 * right one column */
7093 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
7094 ++curwin->w_curswant;
7095 coladvance(curwin->w_curswant);
7096 if (curwin->w_cursor.col == old_cursor.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097 && (!virtual_active()
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01007098 || curwin->w_cursor.coladd == old_cursor.coladd))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007099 {
7100 curwin->w_cursor.lnum = VIsual.lnum;
7101 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
7102 ++right;
7103 coladvance(right);
7104 VIsual = curwin->w_cursor;
7105
7106 curwin->w_cursor.lnum = old_cursor.lnum;
7107 coladvance(left);
7108 curwin->w_curswant = left;
7109 }
7110 }
7111 else
7112 {
7113 old_cursor = curwin->w_cursor;
7114 curwin->w_cursor = VIsual;
7115 VIsual = old_cursor;
7116 curwin->w_set_curswant = TRUE;
7117 }
7118}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119
7120/*
7121 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
7122 */
7123 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007124nv_Replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007125{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 if (VIsual_active) /* "R" is replace lines */
7127 {
7128 cap->cmdchar = 'c';
7129 cap->nchar = NUL;
Bram Moolenaara390bb62013-03-13 19:02:41 +01007130 VIsual_mode_orig = VIsual_mode; /* remember original area for gv */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131 VIsual_mode = 'V';
7132 nv_operator(cap);
7133 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007134 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135 {
7136 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007137 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138 else
7139 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007140 if (virtual_active())
7141 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00007142 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
7143 }
7144 }
7145}
7146
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147/*
7148 * "gr".
7149 */
7150 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007151nv_vreplace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007153 if (VIsual_active)
7154 {
7155 cap->cmdchar = 'r';
7156 cap->nchar = cap->extra_char;
7157 nv_replace(cap); /* Do same as "r" in Visual mode for now */
7158 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007159 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007160 {
7161 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007162 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007163 else
7164 {
7165 if (cap->extra_char == Ctrl_V) /* get another character */
7166 cap->extra_char = get_literal();
7167 stuffcharReadbuff(cap->extra_char);
7168 stuffcharReadbuff(ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007169 if (virtual_active())
7170 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171 invoke_edit(cap, TRUE, 'v', FALSE);
7172 }
7173 }
7174}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175
7176/*
7177 * Swap case for "~" command, when it does not work like an operator.
7178 */
7179 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007180n_swapchar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181{
7182 long n;
7183 pos_T startpos;
7184 int did_change = 0;
7185#ifdef FEAT_NETBEANS_INTG
7186 pos_T pos;
7187 char_u *ptr;
7188 int count;
7189#endif
7190
7191 if (checkclearopq(cap->oap))
7192 return;
7193
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007194 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007195 {
7196 clearopbeep(cap->oap);
7197 return;
7198 }
7199
7200 prep_redo_cmd(cap);
7201
7202 if (u_save_cursor() == FAIL)
7203 return;
7204
7205 startpos = curwin->w_cursor;
7206#ifdef FEAT_NETBEANS_INTG
7207 pos = startpos;
7208#endif
7209 for (n = cap->count1; n > 0; --n)
7210 {
7211 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
7212 inc_cursor();
7213 if (gchar_cursor() == NUL)
7214 {
7215 if (vim_strchr(p_ww, '~') != NULL
7216 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
7217 {
7218#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007219 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007220 {
7221 if (did_change)
7222 {
7223 ptr = ml_get(pos.lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007224 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00007225 netbeans_removed(curbuf, pos.lnum, pos.col,
7226 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007227 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00007228 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007229 }
7230 pos.col = 0;
7231 pos.lnum++;
7232 }
7233#endif
7234 ++curwin->w_cursor.lnum;
7235 curwin->w_cursor.col = 0;
7236 if (n > 1)
7237 {
7238 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
7239 break;
7240 u_clearline();
7241 }
7242 }
7243 else
7244 break;
7245 }
7246 }
7247#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007248 if (did_change && netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007249 {
7250 ptr = ml_get(pos.lnum);
7251 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00007252 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
7253 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007254 }
7255#endif
7256
7257
7258 check_cursor();
7259 curwin->w_set_curswant = TRUE;
7260 if (did_change)
7261 {
7262 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
7263 0L);
7264 curbuf->b_op_start = startpos;
7265 curbuf->b_op_end = curwin->w_cursor;
7266 if (curbuf->b_op_end.col > 0)
7267 --curbuf->b_op_end.col;
7268 }
7269}
7270
7271/*
7272 * Move cursor to mark.
7273 */
7274 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007275nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007276{
7277 if (check_mark(pos) == FAIL)
7278 clearop(cap->oap);
7279 else
7280 {
7281 if (cap->cmdchar == '\''
7282 || cap->cmdchar == '`'
7283 || cap->cmdchar == '['
7284 || cap->cmdchar == ']')
7285 setpcmark();
7286 curwin->w_cursor = *pos;
7287 if (flag)
7288 beginline(BL_WHITE | BL_FIX);
7289 else
7290 check_cursor();
7291 }
7292 cap->oap->motion_type = flag ? MLINE : MCHAR;
7293 if (cap->cmdchar == '`')
7294 cap->oap->use_reg_one = TRUE;
7295 cap->oap->inclusive = FALSE; /* ignored if not MCHAR */
7296 curwin->w_set_curswant = TRUE;
7297}
7298
Bram Moolenaar071d4272004-06-13 20:20:40 +00007299/*
7300 * Handle commands that are operators in Visual mode.
7301 */
7302 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007303v_visop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007304{
7305 static char_u trans[] = "YyDdCcxdXdAAIIrr";
7306
7307 /* Uppercase means linewise, except in block mode, then "D" deletes till
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02007308 * the end of the line, and "C" replaces till EOL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007309 if (isupper(cap->cmdchar))
7310 {
7311 if (VIsual_mode != Ctrl_V)
Bram Moolenaara390bb62013-03-13 19:02:41 +01007312 {
7313 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01007315 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
7317 curwin->w_curswant = MAXCOL;
7318 }
7319 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
7320 nv_operator(cap);
7321}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007322
7323/*
7324 * "s" and "S" commands.
7325 */
7326 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007327nv_subst(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328{
Bram Moolenaard96ff162018-02-18 22:13:29 +01007329#ifdef FEAT_TERMINAL
7330 /* When showing output of term_dumpdiff() swap the top and botom. */
7331 if (term_swap_diff() == OK)
7332 return;
7333#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02007334#ifdef FEAT_JOB_CHANNEL
7335 if (bt_prompt(curbuf) && !prompt_curpos_editable())
7336 {
7337 clearopbeep(cap->oap);
7338 return;
7339 }
7340#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341 if (VIsual_active) /* "vs" and "vS" are the same as "vc" */
7342 {
7343 if (cap->cmdchar == 'S')
Bram Moolenaara390bb62013-03-13 19:02:41 +01007344 {
7345 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007346 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01007347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348 cap->cmdchar = 'c';
7349 nv_operator(cap);
7350 }
7351 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007352 nv_optrans(cap);
7353}
7354
7355/*
7356 * Abbreviated commands.
7357 */
7358 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007359nv_abbrev(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007360{
7361 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
7362 cap->cmdchar = 'x'; /* DEL key behaves like 'x' */
7363
Bram Moolenaar071d4272004-06-13 20:20:40 +00007364 /* in Visual mode these commands are operators */
7365 if (VIsual_active)
7366 v_visop(cap);
7367 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007368 nv_optrans(cap);
7369}
7370
7371/*
7372 * Translate a command into another command.
7373 */
7374 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007375nv_optrans(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007376{
7377 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
7378 (char_u *)"d$", (char_u *)"c$",
7379 (char_u *)"cl", (char_u *)"cc",
7380 (char_u *)"yy", (char_u *)":s\r"};
7381 static char_u *str = (char_u *)"xXDCsSY&";
7382
7383 if (!checkclearopq(cap->oap))
7384 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007385 /* In Vi "2D" doesn't delete the next line. Can't translate it
7386 * either, because "2." should also not use the count. */
7387 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
7388 {
7389 cap->oap->start = curwin->w_cursor;
7390 cap->oap->op_type = OP_DELETE;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00007391#ifdef FEAT_EVAL
7392 set_op_var(OP_DELETE);
7393#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007394 cap->count1 = 1;
7395 nv_dollar(cap);
7396 finish_op = TRUE;
7397 ResetRedobuff();
7398 AppendCharToRedobuff('D');
7399 }
7400 else
7401 {
7402 if (cap->count0)
7403 stuffnumReadbuff(cap->count0);
7404 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
7405 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007406 }
7407 cap->opcount = 0;
7408}
7409
7410/*
7411 * "'" and "`" commands. Also for "g'" and "g`".
7412 * cap->arg is TRUE for "'" and "g'".
7413 */
7414 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007415nv_gomark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007416{
7417 pos_T *pos;
7418 int c;
7419#ifdef FEAT_FOLDING
Bram Moolenaar8754deb2013-01-17 13:24:08 +01007420 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421 int old_KeyTyped = KeyTyped; /* getting file may reset it */
7422#endif
7423
7424 if (cap->cmdchar == 'g')
7425 c = cap->extra_char;
7426 else
7427 c = cap->nchar;
7428 pos = getmark(c, (cap->oap->op_type == OP_NOP));
7429 if (pos == (pos_T *)-1) /* jumped to other file */
7430 {
7431 if (cap->arg)
7432 {
7433 check_cursor_lnum();
7434 beginline(BL_WHITE | BL_FIX);
7435 }
7436 else
7437 check_cursor();
7438 }
7439 else
7440 nv_cursormark(cap, cap->arg, pos);
7441
Bram Moolenaar071d4272004-06-13 20:20:40 +00007442 /* May need to clear the coladd that a mark includes. */
7443 if (!virtual_active())
7444 curwin->w_cursor.coladd = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02007445 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007446#ifdef FEAT_FOLDING
7447 if (cap->oap->op_type == OP_NOP
Bram Moolenaar15364d72013-01-24 21:00:20 +01007448 && pos != NULL
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007449 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450 && (fdo_flags & FDO_MARK)
7451 && old_KeyTyped)
7452 foldOpenCursor();
7453#endif
7454}
7455
7456/*
7457 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
7458 */
7459 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007460nv_pcmark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007461{
7462#ifdef FEAT_JUMPLIST
7463 pos_T *pos;
7464# ifdef FEAT_FOLDING
7465 linenr_T lnum = curwin->w_cursor.lnum;
7466 int old_KeyTyped = KeyTyped; /* getting file may reset it */
7467# endif
7468
7469 if (!checkclearopq(cap->oap))
7470 {
7471 if (cap->cmdchar == 'g')
7472 pos = movechangelist((int)cap->count1);
7473 else
7474 pos = movemark((int)cap->count1);
7475 if (pos == (pos_T *)-1) /* jump to other file */
7476 {
7477 curwin->w_set_curswant = TRUE;
7478 check_cursor();
7479 }
7480 else if (pos != NULL) /* can jump */
7481 nv_cursormark(cap, FALSE, pos);
7482 else if (cap->cmdchar == 'g')
7483 {
7484 if (curbuf->b_changelistlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007485 emsg(_("E664: changelist is empty"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007486 else if (cap->count1 < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007487 emsg(_("E662: At start of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007488 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007489 emsg(_("E663: At end of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007490 }
7491 else
7492 clearopbeep(cap->oap);
7493# ifdef FEAT_FOLDING
7494 if (cap->oap->op_type == OP_NOP
7495 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
7496 && (fdo_flags & FDO_MARK)
7497 && old_KeyTyped)
7498 foldOpenCursor();
7499# endif
7500 }
7501#else
7502 clearopbeep(cap->oap);
7503#endif
7504}
7505
7506/*
7507 * Handle '"' command.
7508 */
7509 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007510nv_regname(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007511{
7512 if (checkclearop(cap->oap))
7513 return;
7514#ifdef FEAT_EVAL
7515 if (cap->nchar == '=')
7516 cap->nchar = get_expr_register();
7517#endif
7518 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
7519 {
7520 cap->oap->regname = cap->nchar;
7521 cap->opcount = cap->count0; /* remember count before '"' */
7522#ifdef FEAT_EVAL
7523 set_reg_var(cap->oap->regname);
7524#endif
7525 }
7526 else
7527 clearopbeep(cap->oap);
7528}
7529
Bram Moolenaar071d4272004-06-13 20:20:40 +00007530/*
7531 * Handle "v", "V" and "CTRL-V" commands.
7532 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
7533 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00007534 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007535 */
7536 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007537nv_visual(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007538{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007539 if (cap->cmdchar == Ctrl_Q)
7540 cap->cmdchar = Ctrl_V;
7541
Bram Moolenaar071d4272004-06-13 20:20:40 +00007542 /* 'v', 'V' and CTRL-V can be used while an operator is pending to make it
7543 * characterwise, linewise, or blockwise. */
7544 if (cap->oap->op_type != OP_NOP)
7545 {
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01007546 motion_force = cap->oap->motion_force = cap->cmdchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007547 finish_op = FALSE; /* operator doesn't finish now but later */
7548 return;
7549 }
7550
7551 VIsual_select = cap->arg;
7552 if (VIsual_active) /* change Visual mode */
7553 {
7554 if (VIsual_mode == cap->cmdchar) /* stop visual mode */
7555 end_visual_mode();
7556 else /* toggle char/block mode */
7557 { /* or char/line mode */
7558 VIsual_mode = cap->cmdchar;
7559 showmode();
7560 }
7561 redraw_curbuf_later(INVERTED); /* update the inversion */
7562 }
7563 else /* start Visual mode */
7564 {
7565 check_visual_highlight();
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02007566 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007567 {
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02007568 /* use previously selected part */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007569 VIsual = curwin->w_cursor;
7570
7571 VIsual_active = TRUE;
7572 VIsual_reselect = TRUE;
7573 if (!cap->arg)
7574 /* start Select mode when 'selectmode' contains "cmd" */
7575 may_start_select('c');
7576#ifdef FEAT_MOUSE
7577 setmouse();
7578#endif
Bram Moolenaar09df3122006-01-23 22:23:09 +00007579 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007580 redraw_cmdline = TRUE; /* show visual mode later */
7581 /*
7582 * For V and ^V, we multiply the number of lines even if there
7583 * was only one -- webb
7584 */
7585 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
7586 {
7587 curwin->w_cursor.lnum +=
7588 resel_VIsual_line_count * cap->count0 - 1;
7589 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7590 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7591 }
7592 VIsual_mode = resel_VIsual_mode;
7593 if (VIsual_mode == 'v')
7594 {
7595 if (resel_VIsual_line_count <= 1)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007596 {
7597 validate_virtcol();
7598 curwin->w_curswant = curwin->w_virtcol
7599 + resel_VIsual_vcol * cap->count0 - 1;
7600 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007601 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007602 curwin->w_curswant = resel_VIsual_vcol;
7603 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007604 }
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007605 if (resel_VIsual_vcol == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007606 {
7607 curwin->w_curswant = MAXCOL;
7608 coladvance((colnr_T)MAXCOL);
7609 }
7610 else if (VIsual_mode == Ctrl_V)
7611 {
7612 validate_virtcol();
7613 curwin->w_curswant = curwin->w_virtcol
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007614 + resel_VIsual_vcol * cap->count0 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007615 coladvance(curwin->w_curswant);
7616 }
7617 else
7618 curwin->w_set_curswant = TRUE;
7619 redraw_curbuf_later(INVERTED); /* show the inversion */
7620 }
7621 else
7622 {
7623 if (!cap->arg)
7624 /* start Select mode when 'selectmode' contains "cmd" */
7625 may_start_select('c');
7626 n_start_visual_mode(cap->cmdchar);
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02007627 if (VIsual_mode != 'V' && *p_sel == 'e')
7628 ++cap->count1; /* include one more char */
7629 if (cap->count0 > 0 && --cap->count1 > 0)
7630 {
7631 /* With a count select that many characters or lines. */
7632 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
7633 nv_right(cap);
7634 else if (VIsual_mode == 'V')
7635 nv_down(cap);
7636 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007637 }
7638 }
7639}
7640
7641/*
7642 * Start selection for Shift-movement keys.
7643 */
7644 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007645start_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007646{
7647 /* if 'selectmode' contains "key", start Select mode */
7648 may_start_select('k');
7649 n_start_visual_mode('v');
7650}
7651
7652/*
7653 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
7654 */
7655 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007656may_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007657{
7658 VIsual_select = (stuff_empty() && typebuf_typed()
7659 && (vim_strchr(p_slm, c) != NULL));
7660}
7661
7662/*
7663 * Start Visual mode "c".
7664 * Should set VIsual_select before calling this.
7665 */
7666 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007667n_start_visual_mode(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007668{
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007669#ifdef FEAT_CONCEAL
7670 /* Check for redraw before changing the state. */
Bram Moolenaarb9464822018-05-10 15:09:49 +02007671 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007672#endif
7673
Bram Moolenaar071d4272004-06-13 20:20:40 +00007674 VIsual_mode = c;
7675 VIsual_active = TRUE;
7676 VIsual_reselect = TRUE;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01007677
7678 // Corner case: the 0 position in a tab may change when going into
7679 // virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007680 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB)
Bram Moolenaar2dac2132012-08-15 13:31:00 +02007681 {
7682 validate_virtcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007683 coladvance(curwin->w_virtcol);
Bram Moolenaar2dac2132012-08-15 13:31:00 +02007684 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007685 VIsual = curwin->w_cursor;
7686
7687#ifdef FEAT_FOLDING
7688 foldAdjustVisual();
7689#endif
7690
7691#ifdef FEAT_MOUSE
7692 setmouse();
7693#endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007694#ifdef FEAT_CONCEAL
7695 /* Check for redraw after changing the state. */
Bram Moolenaarb9464822018-05-10 15:09:49 +02007696 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007697#endif
7698
Bram Moolenaar09df3122006-01-23 22:23:09 +00007699 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007700 redraw_cmdline = TRUE; /* show visual mode later */
7701#ifdef FEAT_CLIPBOARD
7702 /* Make sure the clipboard gets updated. Needed because start and
7703 * end may still be the same, and the selection needs to be owned */
7704 clip_star.vmode = NUL;
7705#endif
7706
7707 /* Only need to redraw this line, unless still need to redraw an old
7708 * Visual area (when 'lazyredraw' is set). */
7709 if (curwin->w_redr_type < INVERTED)
7710 {
7711 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
7712 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
7713 }
7714}
7715
Bram Moolenaar071d4272004-06-13 20:20:40 +00007716
7717/*
7718 * CTRL-W: Window commands
7719 */
7720 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007721nv_window(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007722{
Bram Moolenaar938783d2017-07-16 20:13:26 +02007723 if (cap->nchar == ':')
Bram Moolenaar2efb3232017-12-19 12:27:23 +01007724 {
Bram Moolenaar938783d2017-07-16 20:13:26 +02007725 /* "CTRL-W :" is the same as typing ":"; useful in a terminal window */
Bram Moolenaar2efb3232017-12-19 12:27:23 +01007726 cap->cmdchar = ':';
7727 cap->nchar = NUL;
Bram Moolenaar938783d2017-07-16 20:13:26 +02007728 nv_colon(cap);
Bram Moolenaar2efb3232017-12-19 12:27:23 +01007729 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02007730 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007731 do_window(cap->nchar, cap->count0, NUL); /* everything is in window.c */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007732}
7733
7734/*
7735 * CTRL-Z: Suspend
7736 */
7737 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007738nv_suspend(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007739{
7740 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007741 if (VIsual_active)
7742 end_visual_mode(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007743 do_cmdline_cmd((char_u *)"st");
7744}
7745
7746/*
7747 * Commands starting with "g".
7748 */
7749 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007750nv_g_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007751{
7752 oparg_T *oap = cap->oap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007753 pos_T tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007754 int i;
7755 int flag = FALSE;
7756
7757 switch (cap->nchar)
7758 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007759 case Ctrl_A:
7760 case Ctrl_X:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007761#ifdef MEM_PROFILE
7762 /*
7763 * "g^A": dump log of used memory.
7764 */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007765 if (!VIsual_active && cap->nchar == Ctrl_A)
7766 vim_mem_profile_dump();
7767 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007768#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007769 /*
7770 * "g^A/g^X": sequentially increment visually selected region
7771 */
7772 if (VIsual_active)
7773 {
7774 cap->arg = TRUE;
7775 cap->cmdchar = cap->nchar;
Bram Moolenaard79e5502016-01-10 22:13:02 +01007776 cap->nchar = NUL;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007777 nv_addsub(cap);
7778 }
7779 else
7780 clearopbeep(oap);
7781 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007782
Bram Moolenaar071d4272004-06-13 20:20:40 +00007783 /*
7784 * "gR": Enter virtual replace mode.
7785 */
7786 case 'R':
7787 cap->arg = TRUE;
7788 nv_Replace(cap);
7789 break;
7790
7791 case 'r':
7792 nv_vreplace(cap);
7793 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007794
7795 case '&':
7796 do_cmdline_cmd((char_u *)"%s//~/&");
7797 break;
7798
Bram Moolenaar071d4272004-06-13 20:20:40 +00007799 /*
7800 * "gv": Reselect the previous Visual area. If Visual already active,
7801 * exchange previous and current Visual area.
7802 */
7803 case 'v':
7804 if (checkclearop(oap))
7805 break;
7806
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007807 if ( curbuf->b_visual.vi_start.lnum == 0
7808 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
7809 || curbuf->b_visual.vi_end.lnum == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007810 beep_flush();
7811 else
7812 {
7813 /* set w_cursor to the start of the Visual area, tpos to the end */
7814 if (VIsual_active)
7815 {
7816 i = VIsual_mode;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007817 VIsual_mode = curbuf->b_visual.vi_mode;
7818 curbuf->b_visual.vi_mode = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007819# ifdef FEAT_EVAL
7820 curbuf->b_visual_mode_eval = i;
7821# endif
7822 i = curwin->w_curswant;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007823 curwin->w_curswant = curbuf->b_visual.vi_curswant;
7824 curbuf->b_visual.vi_curswant = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007825
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007826 tpos = curbuf->b_visual.vi_end;
7827 curbuf->b_visual.vi_end = curwin->w_cursor;
7828 curwin->w_cursor = curbuf->b_visual.vi_start;
7829 curbuf->b_visual.vi_start = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007830 }
7831 else
7832 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007833 VIsual_mode = curbuf->b_visual.vi_mode;
7834 curwin->w_curswant = curbuf->b_visual.vi_curswant;
7835 tpos = curbuf->b_visual.vi_end;
7836 curwin->w_cursor = curbuf->b_visual.vi_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007837 }
7838
7839 VIsual_active = TRUE;
7840 VIsual_reselect = TRUE;
7841
7842 /* Set Visual to the start and w_cursor to the end of the Visual
7843 * area. Make sure they are on an existing character. */
7844 check_cursor();
7845 VIsual = curwin->w_cursor;
7846 curwin->w_cursor = tpos;
7847 check_cursor();
7848 update_topline();
7849 /*
7850 * When called from normal "g" command: start Select mode when
7851 * 'selectmode' contains "cmd". When called for K_SELECT, always
7852 * start Select mode.
7853 */
7854 if (cap->arg)
7855 VIsual_select = TRUE;
7856 else
7857 may_start_select('c');
7858#ifdef FEAT_MOUSE
7859 setmouse();
7860#endif
7861#ifdef FEAT_CLIPBOARD
7862 /* Make sure the clipboard gets updated. Needed because start and
7863 * end are still the same, and the selection needs to be owned */
7864 clip_star.vmode = NUL;
7865#endif
7866 redraw_curbuf_later(INVERTED);
7867 showmode();
7868 }
7869 break;
7870 /*
7871 * "gV": Don't reselect the previous Visual area after a Select mode
7872 * mapping of menu.
7873 */
7874 case 'V':
7875 VIsual_reselect = FALSE;
7876 break;
7877
7878 /*
7879 * "gh": start Select mode.
7880 * "gH": start Select line mode.
7881 * "g^H": start Select block mode.
7882 */
7883 case K_BS:
7884 cap->nchar = Ctrl_H;
7885 /* FALLTHROUGH */
7886 case 'h':
7887 case 'H':
7888 case Ctrl_H:
7889# ifdef EBCDIC
7890 /* EBCDIC: 'v'-'h' != '^v'-'^h' */
7891 if (cap->nchar == Ctrl_H)
7892 cap->cmdchar = Ctrl_V;
7893 else
7894# endif
7895 cap->cmdchar = cap->nchar + ('v' - 'h');
7896 cap->arg = TRUE;
7897 nv_visual(cap);
7898 break;
Bram Moolenaar641e2862012-07-25 15:06:34 +02007899
7900 /* "gn", "gN" visually select next/previous search match
7901 * "gn" selects next match
7902 * "gN" selects previous match
7903 */
7904 case 'N':
7905 case 'n':
7906 if (!current_search(cap->count1, cap->nchar == 'n'))
Bram Moolenaarf00dc262012-10-21 03:54:33 +02007907 clearopbeep(oap);
Bram Moolenaar641e2862012-07-25 15:06:34 +02007908 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007909
7910 /*
7911 * "gj" and "gk" two new funny movement keys -- up and down
7912 * movement based on *screen* line rather than *file* line.
7913 */
7914 case 'j':
7915 case K_DOWN:
7916 /* with 'nowrap' it works just like the normal "j" command; also when
7917 * in a closed fold */
7918 if (!curwin->w_p_wrap
7919#ifdef FEAT_FOLDING
7920 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7921#endif
7922 )
7923 {
7924 oap->motion_type = MLINE;
7925 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
7926 }
7927 else
7928 i = nv_screengo(oap, FORWARD, cap->count1);
7929 if (i == FAIL)
7930 clearopbeep(oap);
7931 break;
7932
7933 case 'k':
7934 case K_UP:
7935 /* with 'nowrap' it works just like the normal "k" command; also when
7936 * in a closed fold */
7937 if (!curwin->w_p_wrap
7938#ifdef FEAT_FOLDING
7939 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7940#endif
7941 )
7942 {
7943 oap->motion_type = MLINE;
7944 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
7945 }
7946 else
7947 i = nv_screengo(oap, BACKWARD, cap->count1);
7948 if (i == FAIL)
7949 clearopbeep(oap);
7950 break;
7951
7952 /*
7953 * "gJ": join two lines without inserting a space.
7954 */
7955 case 'J':
7956 nv_join(cap);
7957 break;
7958
7959 /*
7960 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
7961 * "gm": middle of "g0" and "g$".
7962 */
7963 case '^':
7964 flag = TRUE;
7965 /* FALLTHROUGH */
7966
7967 case '0':
7968 case 'm':
7969 case K_HOME:
7970 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007971 oap->motion_type = MCHAR;
7972 oap->inclusive = FALSE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02007973 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007974 {
Bram Moolenaar02631462017-09-22 15:20:32 +02007975 int width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007976 int width2 = width1 + curwin_col_off2();
7977
7978 validate_virtcol();
7979 i = 0;
7980 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
7981 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
7982 }
7983 else
7984 i = curwin->w_leftcol;
Bram Moolenaar64486672010-05-16 15:46:46 +02007985 /* Go to the middle of the screen line. When 'number' or
7986 * 'relativenumber' is on and lines are wrapping the middle can be more
7987 * to the left. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007988 if (cap->nchar == 'm')
Bram Moolenaar02631462017-09-22 15:20:32 +02007989 i += (curwin->w_width - curwin_col_off()
Bram Moolenaar071d4272004-06-13 20:20:40 +00007990 + ((curwin->w_p_wrap && i > 0)
7991 ? curwin_col_off2() : 0)) / 2;
7992 coladvance((colnr_T)i);
7993 if (flag)
7994 {
7995 do
7996 i = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01007997 while (VIM_ISWHITE(i) && oneright() == OK);
Bram Moolenaarf9514162018-11-22 03:08:29 +01007998 curwin->w_valid &= ~VALID_WCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007999 }
8000 curwin->w_set_curswant = TRUE;
8001 break;
8002
8003 case '_':
8004 /* "g_": to the last non-blank character in the line or <count> lines
8005 * downward. */
8006 cap->oap->motion_type = MCHAR;
8007 cap->oap->inclusive = TRUE;
8008 curwin->w_curswant = MAXCOL;
8009 if (cursor_down((long)(cap->count1 - 1),
8010 cap->oap->op_type == OP_NOP) == FAIL)
8011 clearopbeep(cap->oap);
8012 else
8013 {
8014 char_u *ptr = ml_get_curline();
8015
8016 /* In Visual mode we may end up after the line. */
8017 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
8018 --curwin->w_cursor.col;
8019
8020 /* Decrease the cursor column until it's on a non-blank. */
8021 while (curwin->w_cursor.col > 0
Bram Moolenaar1c465442017-03-12 20:10:05 +01008022 && VIM_ISWHITE(ptr[curwin->w_cursor.col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008023 --curwin->w_cursor.col;
8024 curwin->w_set_curswant = TRUE;
Bram Moolenaar5890b2c2010-01-12 15:42:37 +01008025 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008026 }
8027 break;
8028
8029 case '$':
8030 case K_END:
8031 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008032 {
8033 int col_off = curwin_col_off();
8034
8035 oap->motion_type = MCHAR;
8036 oap->inclusive = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02008037 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008038 {
8039 curwin->w_curswant = MAXCOL; /* so we stay at the end */
8040 if (cap->count1 == 1)
8041 {
Bram Moolenaar02631462017-09-22 15:20:32 +02008042 int width1 = curwin->w_width - col_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008043 int width2 = width1 + curwin_col_off2();
8044
8045 validate_virtcol();
8046 i = width1 - 1;
8047 if (curwin->w_virtcol >= (colnr_T)width1)
8048 i += ((curwin->w_virtcol - width1) / width2 + 1)
8049 * width2;
8050 coladvance((colnr_T)i);
Bram Moolenaarb69510e2013-07-09 17:08:29 +02008051
8052 /* Make sure we stick in this column. */
8053 validate_virtcol();
8054 curwin->w_curswant = curwin->w_virtcol;
8055 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008056 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
8057 {
8058 /*
8059 * Check for landing on a character that got split at
8060 * the end of the line. We do not want to advance to
8061 * the next screen line.
8062 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008063 if (curwin->w_virtcol > (colnr_T)i)
8064 --curwin->w_cursor.col;
8065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008066 }
8067 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
8068 clearopbeep(oap);
8069 }
8070 else
8071 {
Bram Moolenaar02631462017-09-22 15:20:32 +02008072 i = curwin->w_leftcol + curwin->w_width - col_off - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008073 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008074
8075 /* Make sure we stick in this column. */
8076 validate_virtcol();
8077 curwin->w_curswant = curwin->w_virtcol;
8078 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008079 }
8080 }
8081 break;
8082
8083 /*
8084 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
8085 */
8086 case '*':
8087 case '#':
8088#if POUND != '#'
8089 case POUND: /* pound sign (sometimes equal to '#') */
8090#endif
8091 case Ctrl_RSB: /* :tag or :tselect for current identifier */
8092 case ']': /* :tselect for current identifier */
8093 nv_ident(cap);
8094 break;
8095
8096 /*
8097 * ge and gE: go back to end of word
8098 */
8099 case 'e':
8100 case 'E':
8101 oap->motion_type = MCHAR;
8102 curwin->w_set_curswant = TRUE;
8103 oap->inclusive = TRUE;
8104 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
8105 clearopbeep(oap);
8106 break;
8107
8108 /*
8109 * "g CTRL-G": display info about cursor position
8110 */
8111 case Ctrl_G:
Bram Moolenaared767a22016-01-03 22:49:16 +01008112 cursor_pos_info(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008113 break;
8114
8115 /*
8116 * "gi": start Insert at the last position.
8117 */
8118 case 'i':
8119 if (curbuf->b_last_insert.lnum != 0)
8120 {
8121 curwin->w_cursor = curbuf->b_last_insert;
8122 check_cursor_lnum();
8123 i = (int)STRLEN(ml_get_curline());
8124 if (curwin->w_cursor.col > (colnr_T)i)
8125 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008126 if (virtual_active())
8127 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008128 curwin->w_cursor.col = i;
8129 }
8130 }
8131 cap->cmdchar = 'i';
8132 nv_edit(cap);
8133 break;
8134
8135 /*
8136 * "gI": Start insert in column 1.
8137 */
8138 case 'I':
8139 beginline(0);
8140 if (!checkclearopq(oap))
8141 invoke_edit(cap, FALSE, 'g', FALSE);
8142 break;
8143
8144#ifdef FEAT_SEARCHPATH
8145 /*
8146 * "gf": goto file, edit file under cursor
8147 * "]f" and "[f": can also be used.
8148 */
8149 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +00008150 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +00008151 nv_gotofile(cap);
8152 break;
8153#endif
8154
8155 /* "g'm" and "g`m": jump to mark without setting pcmark */
8156 case '\'':
8157 cap->arg = TRUE;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02008158 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008159 case '`':
8160 nv_gomark(cap);
8161 break;
8162
8163 /*
8164 * "gs": Goto sleep.
8165 */
8166 case 's':
8167 do_sleep(cap->count1 * 1000L);
8168 break;
8169
8170 /*
8171 * "ga": Display the ascii value of the character under the
8172 * cursor. It is displayed in decimal, hex, and octal. -- webb
8173 */
8174 case 'a':
8175 do_ascii(NULL);
8176 break;
8177
Bram Moolenaar071d4272004-06-13 20:20:40 +00008178 /*
8179 * "g8": Display the bytes used for the UTF-8 character under the
8180 * cursor. It is displayed in hex.
Bram Moolenaara83c3e02006-03-17 23:10:44 +00008181 * "8g8" finds illegal byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008182 */
8183 case '8':
Bram Moolenaara83c3e02006-03-17 23:10:44 +00008184 if (cap->count0 == 8)
8185 utf_find_illegal();
8186 else
8187 show_utf8();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008188 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008189
Bram Moolenaar60402d62017-04-20 18:54:50 +02008190 /* "g<": show scrollback text */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00008191 case '<':
8192 show_sb_text();
8193 break;
8194
Bram Moolenaar071d4272004-06-13 20:20:40 +00008195 /*
8196 * "gg": Goto the first line in file. With a count it goes to
8197 * that line number like for "G". -- webb
8198 */
8199 case 'g':
8200 cap->arg = FALSE;
8201 nv_goto(cap);
8202 break;
8203
8204 /*
8205 * Two-character operators:
8206 * "gq" Format text
8207 * "gw" Format text and keep cursor position
8208 * "g~" Toggle the case of the text.
8209 * "gu" Change text to lower case.
8210 * "gU" Change text to upper case.
8211 * "g?" rot13 encoding
Bram Moolenaar12033fb2005-12-16 21:49:31 +00008212 * "g@" call 'operatorfunc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008213 */
8214 case 'q':
8215 case 'w':
8216 oap->cursor_start = curwin->w_cursor;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02008217 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008218 case '~':
8219 case 'u':
8220 case 'U':
8221 case '?':
Bram Moolenaar12033fb2005-12-16 21:49:31 +00008222 case '@':
Bram Moolenaar071d4272004-06-13 20:20:40 +00008223 nv_operator(cap);
8224 break;
8225
8226 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00008227 * "gd": Find first occurrence of pattern under the cursor in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00008228 * current function
8229 * "gD": idem, but in the current file.
8230 */
8231 case 'd':
8232 case 'D':
Bram Moolenaarf75a9632005-09-13 21:20:47 +00008233 nv_gd(oap, cap->nchar, (int)cap->count0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008234 break;
8235
8236#ifdef FEAT_MOUSE
8237 /*
8238 * g<*Mouse> : <C-*mouse>
8239 */
8240 case K_MIDDLEMOUSE:
8241 case K_MIDDLEDRAG:
8242 case K_MIDDLERELEASE:
8243 case K_LEFTMOUSE:
8244 case K_LEFTDRAG:
8245 case K_LEFTRELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01008246 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008247 case K_RIGHTMOUSE:
8248 case K_RIGHTDRAG:
8249 case K_RIGHTRELEASE:
8250 case K_X1MOUSE:
8251 case K_X1DRAG:
8252 case K_X1RELEASE:
8253 case K_X2MOUSE:
8254 case K_X2DRAG:
8255 case K_X2RELEASE:
8256 mod_mask = MOD_MASK_CTRL;
8257 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
8258 break;
8259#endif
8260
8261 case K_IGNORE:
8262 break;
8263
8264 /*
8265 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
8266 */
8267 case 'p':
8268 case 'P':
8269 nv_put(cap);
8270 break;
8271
8272#ifdef FEAT_BYTEOFF
8273 /* "go": goto byte count from start of buffer */
8274 case 'o':
8275 goto_byte(cap->count0);
8276 break;
8277#endif
8278
8279 /* "gQ": improved Ex mode */
8280 case 'Q':
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00008281 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00008282 {
8283 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00008284 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008285 break;
8286 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00008287
Bram Moolenaar071d4272004-06-13 20:20:40 +00008288 if (!checkclearopq(oap))
8289 do_exmode(TRUE);
8290 break;
8291
8292#ifdef FEAT_JUMPLIST
8293 case ',':
8294 nv_pcmark(cap);
8295 break;
8296
8297 case ';':
8298 cap->count1 = -cap->count1;
8299 nv_pcmark(cap);
8300 break;
8301#endif
8302
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008303 case 't':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02008304 if (!checkclearop(oap))
8305 goto_tabpage((int)cap->count0);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008306 break;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008307 case 'T':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02008308 if (!checkclearop(oap))
8309 goto_tabpage(-(int)cap->count1);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008310 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008311
Bram Moolenaar35a2e192006-03-13 22:07:11 +00008312 case '+':
8313 case '-': /* "g+" and "g-": undo or redo along the timeline */
8314 if (!checkclearopq(oap))
Bram Moolenaard3667a22006-03-16 21:35:52 +00008315 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
Bram Moolenaar730cde92010-06-27 05:18:54 +02008316 FALSE, FALSE, FALSE);
Bram Moolenaar35a2e192006-03-13 22:07:11 +00008317 break;
8318
Bram Moolenaar071d4272004-06-13 20:20:40 +00008319 default:
8320 clearopbeep(oap);
8321 break;
8322 }
8323}
8324
8325/*
8326 * Handle "o" and "O" commands.
8327 */
8328 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008329n_opencmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008330{
Bram Moolenaar860cae12010-06-05 23:22:07 +02008331#ifdef FEAT_CONCEAL
8332 linenr_T oldline = curwin->w_cursor.lnum;
8333#endif
8334
Bram Moolenaar071d4272004-06-13 20:20:40 +00008335 if (!checkclearopq(cap->oap))
8336 {
8337#ifdef FEAT_FOLDING
8338 if (cap->cmdchar == 'O')
8339 /* Open above the first line of a folded sequence of lines */
8340 (void)hasFolding(curwin->w_cursor.lnum,
8341 &curwin->w_cursor.lnum, NULL);
8342 else
8343 /* Open below the last line of a folded sequence of lines */
8344 (void)hasFolding(curwin->w_cursor.lnum,
8345 NULL, &curwin->w_cursor.lnum);
8346#endif
8347 if (u_save((linenr_T)(curwin->w_cursor.lnum -
8348 (cap->cmdchar == 'O' ? 1 : 0)),
8349 (linenr_T)(curwin->w_cursor.lnum +
8350 (cap->cmdchar == 'o' ? 1 : 0))
8351 ) == OK
8352 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
8353#ifdef FEAT_COMMENTS
8354 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM :
8355#endif
Bram Moolenaar24a2d722018-04-24 19:36:43 +02008356 0, 0) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008357 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02008358#ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02008359 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01008360 redrawWinline(curwin, oldline);
Bram Moolenaar860cae12010-06-05 23:22:07 +02008361#endif
Bram Moolenaard710e0d2015-06-10 12:16:47 +02008362#ifdef FEAT_SYN_HL
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02008363 if (curwin->w_p_cul)
8364 /* force redraw of cursorline */
8365 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaard710e0d2015-06-10 12:16:47 +02008366#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008367 /* When '#' is in 'cpoptions' ignore the count. */
8368 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
8369 cap->count1 = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008370 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
8371 }
8372 }
8373}
8374
8375/*
8376 * "." command: redo last change.
8377 */
8378 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008379nv_dot(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008380{
8381 if (!checkclearopq(cap->oap))
8382 {
8383 /*
8384 * If "restart_edit" is TRUE, the last but one command is repeated
8385 * instead of the last command (inserting text). This is used for
8386 * CTRL-O <.> in insert mode.
8387 */
8388 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
8389 clearopbeep(cap->oap);
8390 }
8391}
8392
8393/*
8394 * CTRL-R: undo undo
8395 */
8396 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008397nv_redo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008398{
8399 if (!checkclearopq(cap->oap))
8400 {
8401 u_redo((int)cap->count1);
8402 curwin->w_set_curswant = TRUE;
8403 }
8404}
8405
8406/*
8407 * Handle "U" command.
8408 */
8409 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008410nv_Undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008411{
8412 /* In Visual mode and typing "gUU" triggers an operator */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008413 if (cap->oap->op_type == OP_UPPER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008414 {
8415 /* translate "gUU" to "gUgU" */
8416 cap->cmdchar = 'g';
8417 cap->nchar = 'U';
8418 nv_operator(cap);
8419 }
8420 else if (!checkclearopq(cap->oap))
8421 {
8422 u_undoline();
8423 curwin->w_set_curswant = TRUE;
8424 }
8425}
8426
8427/*
8428 * '~' command: If tilde is not an operator and Visual is off: swap case of a
8429 * single character.
8430 */
8431 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008432nv_tilde(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008433{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008434 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE)
Bram Moolenaarf2732452018-06-03 14:47:35 +02008435 {
8436#ifdef FEAT_JOB_CHANNEL
8437 if (bt_prompt(curbuf) && !prompt_curpos_editable())
8438 {
8439 clearopbeep(cap->oap);
8440 return;
8441 }
8442#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008443 n_swapchar(cap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02008444 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008445 else
8446 nv_operator(cap);
8447}
8448
8449/*
8450 * Handle an operator command.
8451 * The actual work is done by do_pending_operator().
8452 */
8453 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008454nv_operator(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008455{
8456 int op_type;
8457
8458 op_type = get_op_type(cap->cmdchar, cap->nchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02008459#ifdef FEAT_JOB_CHANNEL
8460 if (bt_prompt(curbuf) && op_is_change(op_type) && !prompt_curpos_editable())
8461 {
8462 clearopbeep(cap->oap);
8463 return;
8464 }
8465#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008466
8467 if (op_type == cap->oap->op_type) /* double operator works on lines */
8468 nv_lineop(cap);
8469 else if (!checkclearop(cap->oap))
8470 {
8471 cap->oap->start = curwin->w_cursor;
8472 cap->oap->op_type = op_type;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00008473#ifdef FEAT_EVAL
8474 set_op_var(op_type);
8475#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008476 }
8477}
8478
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00008479#ifdef FEAT_EVAL
8480/*
8481 * Set v:operator to the characters for "optype".
8482 */
8483 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008484set_op_var(int optype)
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00008485{
8486 char_u opchars[3];
8487
8488 if (optype == OP_NOP)
8489 set_vim_var_string(VV_OP, NULL, 0);
8490 else
8491 {
8492 opchars[0] = get_op_char(optype);
8493 opchars[1] = get_extra_op_char(optype);
8494 opchars[2] = NUL;
8495 set_vim_var_string(VV_OP, opchars, -1);
8496 }
8497}
8498#endif
8499
Bram Moolenaar071d4272004-06-13 20:20:40 +00008500/*
8501 * Handle linewise operator "dd", "yy", etc.
8502 *
8503 * "_" is is a strange motion command that helps make operators more logical.
8504 * It is actually implemented, but not documented in the real Vi. This motion
8505 * command actually refers to "the current line". Commands like "dd" and "yy"
8506 * are really an alternate form of "d_" and "y_". It does accept a count, so
8507 * "d3_" works to delete 3 lines.
8508 */
8509 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008510nv_lineop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008511{
8512 cap->oap->motion_type = MLINE;
8513 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
8514 clearopbeep(cap->oap);
Bram Moolenaar83dadaf2012-12-12 17:33:32 +01008515 else if ( (cap->oap->op_type == OP_DELETE /* only with linewise motions */
8516 && cap->oap->motion_force != 'v'
8517 && cap->oap->motion_force != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008518 || cap->oap->op_type == OP_LSHIFT
8519 || cap->oap->op_type == OP_RSHIFT)
8520 beginline(BL_SOL | BL_FIX);
8521 else if (cap->oap->op_type != OP_YANK) /* 'Y' does not move cursor */
8522 beginline(BL_WHITE | BL_FIX);
8523}
8524
8525/*
8526 * <Home> command.
8527 */
8528 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008529nv_home(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008530{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00008531 /* CTRL-HOME is like "gg" */
8532 if (mod_mask & MOD_MASK_CTRL)
8533 nv_goto(cap);
8534 else
8535 {
8536 cap->count0 = 1;
8537 nv_pipe(cap);
8538 }
Bram Moolenaara88d9682005-03-25 21:45:43 +00008539 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
8540 one-character line). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008541}
8542
8543/*
8544 * "|" command.
8545 */
8546 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008547nv_pipe(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008548{
8549 cap->oap->motion_type = MCHAR;
8550 cap->oap->inclusive = FALSE;
8551 beginline(0);
8552 if (cap->count0 > 0)
8553 {
8554 coladvance((colnr_T)(cap->count0 - 1));
8555 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
8556 }
8557 else
8558 curwin->w_curswant = 0;
8559 /* keep curswant at the column where we wanted to go, not where
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01008560 * we ended; differs if line is too short */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008561 curwin->w_set_curswant = FALSE;
8562}
8563
8564/*
8565 * Handle back-word command "b" and "B".
8566 * cap->arg is 1 for "B"
8567 */
8568 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008569nv_bck_word(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008570{
8571 cap->oap->motion_type = MCHAR;
8572 cap->oap->inclusive = FALSE;
8573 curwin->w_set_curswant = TRUE;
8574 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
8575 clearopbeep(cap->oap);
8576#ifdef FEAT_FOLDING
8577 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8578 foldOpenCursor();
8579#endif
8580}
8581
8582/*
8583 * Handle word motion commands "e", "E", "w" and "W".
8584 * cap->arg is TRUE for "E" and "W".
8585 */
8586 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008587nv_wordcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008588{
8589 int n;
8590 int word_end;
8591 int flag = FALSE;
Bram Moolenaardfefb982008-04-01 10:06:39 +00008592 pos_T startpos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008593
8594 /*
8595 * Set inclusive for the "E" and "e" command.
8596 */
8597 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
8598 word_end = TRUE;
8599 else
8600 word_end = FALSE;
8601 cap->oap->inclusive = word_end;
8602
8603 /*
8604 * "cw" and "cW" are a special case.
8605 */
8606 if (!word_end && cap->oap->op_type == OP_CHANGE)
8607 {
8608 n = gchar_cursor();
8609 if (n != NUL) /* not an empty line */
8610 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01008611 if (VIM_ISWHITE(n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008612 {
8613 /*
8614 * Reproduce a funny Vi behaviour: "cw" on a blank only
8615 * changes one character, not all blanks until the start of
8616 * the next word. Only do this when the 'w' flag is included
8617 * in 'cpoptions'.
8618 */
8619 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
8620 {
8621 cap->oap->inclusive = TRUE;
8622 cap->oap->motion_type = MCHAR;
8623 return;
8624 }
8625 }
8626 else
8627 {
8628 /*
8629 * This is a little strange. To match what the real Vi does,
8630 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
8631 * that we are not on a space or a TAB. This seems impolite
8632 * at first, but it's really more what we mean when we say
8633 * 'cw'.
8634 * Another strangeness: When standing on the end of a word
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02008635 * "ce" will change until the end of the next word, but "cw"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008636 * will change only one character! This is done by setting
8637 * flag.
8638 */
8639 cap->oap->inclusive = TRUE;
8640 word_end = TRUE;
8641 flag = TRUE;
8642 }
8643 }
8644 }
8645
8646 cap->oap->motion_type = MCHAR;
8647 curwin->w_set_curswant = TRUE;
8648 if (word_end)
8649 n = end_word(cap->count1, cap->arg, flag, FALSE);
8650 else
8651 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
8652
Bram Moolenaardfefb982008-04-01 10:06:39 +00008653 /* Don't leave the cursor on the NUL past the end of line. Unless we
8654 * didn't move it forward. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01008655 if (LT_POS(startpos, curwin->w_cursor))
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008656 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008657
8658 if (n == FAIL && cap->oap->op_type == OP_NOP)
8659 clearopbeep(cap->oap);
8660 else
8661 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008662 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008663#ifdef FEAT_FOLDING
8664 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8665 foldOpenCursor();
8666#endif
8667 }
8668}
8669
8670/*
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008671 * Used after a movement command: If the cursor ends up on the NUL after the
8672 * end of the line, may move it back to the last character and make the motion
8673 * inclusive.
8674 */
8675 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008676adjust_cursor(oparg_T *oap)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008677{
8678 /* The cursor cannot remain on the NUL when:
8679 * - the column is > 0
8680 * - not in Visual mode or 'selection' is "o"
8681 * - 'virtualedit' is not "all" and not "onemore".
8682 */
8683 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008684 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01008685 && !virtual_active() && (ve_flags & VE_ONEMORE) == 0)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008686 {
8687 --curwin->w_cursor.col;
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008688 /* prevent cursor from moving on the trail byte */
8689 if (has_mbyte)
8690 mb_adjust_cursor();
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008691 oap->inclusive = TRUE;
8692 }
8693}
8694
8695/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008696 * "0" and "^" commands.
8697 * cap->arg is the argument for beginline().
8698 */
8699 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008700nv_beginline(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008701{
8702 cap->oap->motion_type = MCHAR;
8703 cap->oap->inclusive = FALSE;
8704 beginline(cap->arg);
8705#ifdef FEAT_FOLDING
8706 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8707 foldOpenCursor();
8708#endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00008709 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
8710 one-character line). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008711}
8712
Bram Moolenaar071d4272004-06-13 20:20:40 +00008713/*
8714 * In exclusive Visual mode, may include the last character.
8715 */
8716 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008717adjust_for_sel(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008718{
8719 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01008720 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008721 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008722 if (has_mbyte)
8723 inc_cursor();
8724 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008725 ++curwin->w_cursor.col;
8726 cap->oap->inclusive = FALSE;
8727 }
8728}
8729
8730/*
8731 * Exclude last character at end of Visual area for 'selection' == "exclusive".
8732 * Should check VIsual_mode before calling this.
8733 * Returns TRUE when backed up to the previous line.
8734 */
8735 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01008736unadjust_for_sel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008737{
8738 pos_T *pp;
8739
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01008740 if (*p_sel == 'e' && !EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008741 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01008742 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008743 pp = &curwin->w_cursor;
8744 else
8745 pp = &VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008746 if (pp->coladd > 0)
8747 --pp->coladd;
8748 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008749 if (pp->col > 0)
8750 {
8751 --pp->col;
Bram Moolenaar03a807a2011-07-07 15:08:58 +02008752 mb_adjustpos(curbuf, pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008753 }
8754 else if (pp->lnum > 1)
8755 {
8756 --pp->lnum;
8757 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
8758 return TRUE;
8759 }
8760 }
8761 return FALSE;
8762}
8763
8764/*
8765 * SELECT key in Normal or Visual mode: end of Select mode mapping.
8766 */
8767 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008768nv_select(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008769{
8770 if (VIsual_active)
8771 VIsual_select = TRUE;
8772 else if (VIsual_reselect)
8773 {
8774 cap->nchar = 'v'; /* fake "gv" command */
8775 cap->arg = TRUE;
8776 nv_g_cmd(cap);
8777 }
8778}
8779
Bram Moolenaar071d4272004-06-13 20:20:40 +00008780
8781/*
8782 * "G", "gg", CTRL-END, CTRL-HOME.
8783 * cap->arg is TRUE for "G".
8784 */
8785 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008786nv_goto(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008787{
8788 linenr_T lnum;
8789
8790 if (cap->arg)
8791 lnum = curbuf->b_ml.ml_line_count;
8792 else
8793 lnum = 1L;
8794 cap->oap->motion_type = MLINE;
8795 setpcmark();
8796
8797 /* When a count is given, use it instead of the default lnum */
8798 if (cap->count0 != 0)
8799 lnum = cap->count0;
8800 if (lnum < 1L)
8801 lnum = 1L;
8802 else if (lnum > curbuf->b_ml.ml_line_count)
8803 lnum = curbuf->b_ml.ml_line_count;
8804 curwin->w_cursor.lnum = lnum;
8805 beginline(BL_SOL | BL_FIX);
8806#ifdef FEAT_FOLDING
8807 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
8808 foldOpenCursor();
8809#endif
8810}
8811
8812/*
8813 * CTRL-\ in Normal mode.
8814 */
8815 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008816nv_normal(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008817{
8818 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
8819 {
8820 clearop(cap->oap);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00008821 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008822 clear_cmdline = TRUE; /* unshow mode later */
8823 restart_edit = 0;
8824#ifdef FEAT_CMDWIN
8825 if (cmdwin_type != 0)
8826 cmdwin_result = Ctrl_C;
8827#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008828 if (VIsual_active)
8829 {
8830 end_visual_mode(); /* stop Visual */
8831 redraw_curbuf_later(INVERTED);
8832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008833 /* CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. */
8834 if (cap->nchar == Ctrl_G && p_im)
8835 restart_edit = 'a';
8836 }
8837 else
8838 clearopbeep(cap->oap);
8839}
8840
8841/*
8842 * ESC in Normal mode: beep, but don't flush buffers.
8843 * Don't even beep if we are canceling a command.
8844 */
8845 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008846nv_esc(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008847{
8848 int no_reason;
8849
8850 no_reason = (cap->oap->op_type == OP_NOP
8851 && cap->opcount == 0
8852 && cap->count0 == 0
8853 && cap->oap->regname == 0
8854 && !p_im);
8855
8856 if (cap->arg) /* TRUE for CTRL-C */
8857 {
8858 if (restart_edit == 0
8859#ifdef FEAT_CMDWIN
8860 && cmdwin_type == 0
8861#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008862 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00008863 && no_reason)
Bram Moolenaara84a3dd2019-03-25 22:21:24 +01008864 {
8865 if (anyBufIsChanged())
8866 msg(_("Type :qa! and press <Enter> to abandon all changes and exit Vim"));
8867 else
8868 msg(_("Type :qa and press <Enter> to exit Vim"));
8869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008870
8871 /* Don't reset "restart_edit" when 'insertmode' is set, it won't be
8872 * set again below when halfway a mapping. */
8873 if (!p_im)
8874 restart_edit = 0;
8875#ifdef FEAT_CMDWIN
8876 if (cmdwin_type != 0)
8877 {
8878 cmdwin_result = K_IGNORE;
8879 got_int = FALSE; /* don't stop executing autocommands et al. */
8880 return;
8881 }
8882#endif
8883 }
8884
Bram Moolenaar071d4272004-06-13 20:20:40 +00008885 if (VIsual_active)
8886 {
8887 end_visual_mode(); /* stop Visual */
8888 check_cursor_col(); /* make sure cursor is not beyond EOL */
8889 curwin->w_set_curswant = TRUE;
8890 redraw_curbuf_later(INVERTED);
8891 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008892 else if (no_reason)
Bram Moolenaar165bc692015-07-21 17:53:25 +02008893 vim_beep(BO_ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008894 clearop(cap->oap);
8895
8896 /* A CTRL-C is often used at the start of a menu. When 'insertmode' is
8897 * set return to Insert mode afterwards. */
Bram Moolenaare2c38102016-01-31 14:55:40 +01008898 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008899 restart_edit = 'a';
8900}
8901
8902/*
8903 * Handle "A", "a", "I", "i" and <Insert> commands.
Bram Moolenaarec2da362017-01-21 20:04:22 +01008904 * Also handle K_PS, start bracketed paste.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008905 */
8906 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008907nv_edit(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008908{
8909 /* <Insert> is equal to "i" */
8910 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
8911 cap->cmdchar = 'i';
8912
Bram Moolenaar071d4272004-06-13 20:20:40 +00008913 /* in Visual mode "A" and "I" are an operator */
8914 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
Bram Moolenaareef9add2017-09-16 15:38:04 +02008915 {
8916#ifdef FEAT_TERMINAL
8917 if (term_in_normal_mode())
8918 {
8919 end_visual_mode();
8920 clearop(cap->oap);
8921 term_enter_job_mode();
8922 return;
8923 }
8924#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008925 v_visop(cap);
Bram Moolenaareef9add2017-09-16 15:38:04 +02008926 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008927
8928 /* in Visual mode and after an operator "a" and "i" are for text objects */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008929 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
8930 && (cap->oap->op_type != OP_NOP || VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008931 {
8932#ifdef FEAT_TEXTOBJ
8933 nv_object(cap);
8934#else
8935 clearopbeep(cap->oap);
8936#endif
8937 }
Bram Moolenaar662d9382017-07-31 22:56:24 +02008938#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02008939 else if (term_in_normal_mode())
Bram Moolenaar662d9382017-07-31 22:56:24 +02008940 {
8941 clearop(cap->oap);
Bram Moolenaar6d819742017-08-06 14:57:49 +02008942 term_enter_job_mode();
Bram Moolenaar662d9382017-07-31 22:56:24 +02008943 return;
8944 }
8945#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008946 else if (!curbuf->b_p_ma && !p_im)
8947 {
8948 /* Only give this error when 'insertmode' is off. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008949 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008950 clearop(cap->oap);
Bram Moolenaarec2da362017-01-21 20:04:22 +01008951 if (cap->cmdchar == K_PS)
8952 /* drop the pasted text */
8953 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008954 }
Bram Moolenaara1891842017-02-04 21:34:31 +01008955 else if (cap->cmdchar == K_PS && VIsual_active)
8956 {
8957 pos_T old_pos = curwin->w_cursor;
8958 pos_T old_visual = VIsual;
8959
8960 /* In Visual mode the selected text is deleted. */
8961 if (VIsual_mode == 'V' || curwin->w_cursor.lnum != VIsual.lnum)
8962 {
8963 shift_delete_registers();
8964 cap->oap->regname = '1';
8965 }
8966 else
8967 cap->oap->regname = '-';
8968 cap->cmdchar = 'd';
8969 cap->nchar = NUL;
8970 nv_operator(cap);
8971 do_pending_operator(cap, 0, FALSE);
8972 cap->cmdchar = K_PS;
8973
8974 /* When the last char in the line was deleted then append. Detect this
8975 * by checking if the cursor moved to before the Visual area. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01008976 if (*ml_get_cursor() != NUL && LT_POS(curwin->w_cursor, old_pos)
8977 && LT_POS(curwin->w_cursor, old_visual))
Bram Moolenaara1891842017-02-04 21:34:31 +01008978 inc_cursor();
8979
8980 /* Insert to replace the deleted text with the pasted text. */
8981 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
8982 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008983 else if (!checkclearopq(cap->oap))
8984 {
8985 switch (cap->cmdchar)
8986 {
8987 case 'A': /* "A"ppend after the line */
8988 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008989 if (ve_flags == VE_ALL)
8990 {
8991 int save_State = State;
8992
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02008993 /* Pretend Insert mode here to allow the cursor on the
Bram Moolenaar071d4272004-06-13 20:20:40 +00008994 * character past the end of the line */
8995 State = INSERT;
8996 coladvance((colnr_T)MAXCOL);
8997 State = save_State;
8998 }
8999 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009000 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
9001 break;
9002
9003 case 'I': /* "I"nsert before the first non-blank */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00009004 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
9005 beginline(BL_WHITE);
9006 else
9007 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009008 break;
9009
Bram Moolenaara1891842017-02-04 21:34:31 +01009010 case K_PS:
9011 /* Bracketed paste works like "a"ppend, unless the cursor is in
9012 * the first column, then it inserts. */
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01009013 if (curwin->w_cursor.col == 0)
9014 break;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02009015 /* FALLTHROUGH */
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01009016
Bram Moolenaar071d4272004-06-13 20:20:40 +00009017 case 'a': /* "a"ppend is like "i"nsert on the next character. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009018 /* increment coladd when in virtual space, increment the
9019 * column otherwise, also to append after an unprintable char */
9020 if (virtual_active()
9021 && (curwin->w_cursor.coladd > 0
9022 || *ml_get_cursor() == NUL
9023 || *ml_get_cursor() == TAB))
9024 curwin->w_cursor.coladd++;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01009025 else if (*ml_get_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009026 inc_cursor();
9027 break;
9028 }
9029
Bram Moolenaar071d4272004-06-13 20:20:40 +00009030 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
9031 {
9032 int save_State = State;
9033
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02009034 /* Pretend Insert mode here to allow the cursor on the
Bram Moolenaar071d4272004-06-13 20:20:40 +00009035 * character past the end of the line */
9036 State = INSERT;
9037 coladvance(getviscol());
9038 State = save_State;
9039 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009040
9041 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
9042 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01009043 else if (cap->cmdchar == K_PS)
9044 /* drop the pasted text */
9045 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009046}
9047
9048/*
9049 * Invoke edit() and take care of "restart_edit" and the return value.
9050 */
9051 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009052invoke_edit(
9053 cmdarg_T *cap,
9054 int repl, /* "r" or "gr" command */
9055 int cmd,
9056 int startln)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009057{
9058 int restart_edit_save = 0;
9059
9060 /* Complicated: When the user types "a<C-O>a" we don't want to do Insert
9061 * mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
9062 * it. */
9063 if (repl || !stuff_empty())
9064 restart_edit_save = restart_edit;
9065 else
9066 restart_edit_save = 0;
9067
9068 /* Always reset "restart_edit", this is not a restarted edit. */
9069 restart_edit = 0;
9070
9071 if (edit(cmd, startln, cap->count1))
9072 cap->retval |= CA_COMMAND_BUSY;
9073
9074 if (restart_edit == 0)
9075 restart_edit = restart_edit_save;
9076}
9077
9078#ifdef FEAT_TEXTOBJ
9079/*
9080 * "a" or "i" while an operator is pending or in Visual mode: object motion.
9081 */
9082 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009083nv_object(
9084 cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009085{
9086 int flag;
9087 int include;
9088 char_u *mps_save;
9089
9090 if (cap->cmdchar == 'i')
9091 include = FALSE; /* "ix" = inner object: exclude white space */
9092 else
9093 include = TRUE; /* "ax" = an object: include white space */
9094
9095 /* Make sure (), [], {} and <> are in 'matchpairs' */
9096 mps_save = curbuf->b_p_mps;
9097 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
9098
9099 switch (cap->nchar)
9100 {
9101 case 'w': /* "aw" = a word */
9102 flag = current_word(cap->oap, cap->count1, include, FALSE);
9103 break;
9104 case 'W': /* "aW" = a WORD */
9105 flag = current_word(cap->oap, cap->count1, include, TRUE);
9106 break;
9107 case 'b': /* "ab" = a braces block */
9108 case '(':
9109 case ')':
9110 flag = current_block(cap->oap, cap->count1, include, '(', ')');
9111 break;
9112 case 'B': /* "aB" = a Brackets block */
9113 case '{':
9114 case '}':
9115 flag = current_block(cap->oap, cap->count1, include, '{', '}');
9116 break;
9117 case '[': /* "a[" = a [] block */
9118 case ']':
9119 flag = current_block(cap->oap, cap->count1, include, '[', ']');
9120 break;
9121 case '<': /* "a<" = a <> block */
9122 case '>':
9123 flag = current_block(cap->oap, cap->count1, include, '<', '>');
9124 break;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00009125 case 't': /* "at" = a tag block (xml and html) */
Bram Moolenaarb6c27352015-03-05 19:57:49 +01009126 /* Do not adjust oap->end in do_pending_operator()
9127 * otherwise there are different results for 'dit'
9128 * (note leading whitespace in last line):
9129 * 1) <b> 2) <b>
9130 * foobar foobar
9131 * </b> </b>
9132 */
9133 cap->retval |= CA_NO_ADJ_OP_END;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00009134 flag = current_tagblock(cap->oap, cap->count1, include);
9135 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009136 case 'p': /* "ap" = a paragraph */
9137 flag = current_par(cap->oap, cap->count1, include, 'p');
9138 break;
9139 case 's': /* "as" = a sentence */
9140 flag = current_sent(cap->oap, cap->count1, include);
9141 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00009142 case '"': /* "a"" = a double quoted string */
9143 case '\'': /* "a'" = a single quoted string */
9144 case '`': /* "a`" = a backtick quoted string */
9145 flag = current_quote(cap->oap, cap->count1, include,
9146 cap->nchar);
9147 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009148#if 0 /* TODO */
9149 case 'S': /* "aS" = a section */
9150 case 'f': /* "af" = a filename */
9151 case 'u': /* "au" = a URL */
9152#endif
9153 default:
9154 flag = FAIL;
9155 break;
9156 }
9157
9158 curbuf->b_p_mps = mps_save;
9159 if (flag == FAIL)
9160 clearopbeep(cap->oap);
9161 adjust_cursor_col();
9162 curwin->w_set_curswant = TRUE;
9163}
9164#endif
9165
9166/*
9167 * "q" command: Start/stop recording.
9168 * "q:", "q/", "q?": edit command-line in command-line window.
9169 */
9170 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009171nv_record(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009172{
9173 if (cap->oap->op_type == OP_FORMAT)
9174 {
9175 /* "gqq" is the same as "gqgq": format line */
9176 cap->cmdchar = 'g';
9177 cap->nchar = 'q';
9178 nv_operator(cap);
9179 }
9180 else if (!checkclearop(cap->oap))
9181 {
9182#ifdef FEAT_CMDWIN
9183 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
9184 {
9185 stuffcharReadbuff(cap->nchar);
9186 stuffcharReadbuff(K_CMDWIN);
9187 }
9188 else
9189#endif
9190 /* (stop) recording into a named register, unless executing a
9191 * register */
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02009192 if (reg_executing == 0 && do_record(cap->nchar) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009193 clearopbeep(cap->oap);
9194 }
9195}
9196
9197/*
9198 * Handle the "@r" command.
9199 */
9200 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009201nv_at(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009202{
9203 if (checkclearop(cap->oap))
9204 return;
9205#ifdef FEAT_EVAL
9206 if (cap->nchar == '=')
9207 {
9208 if (get_expr_register() == NUL)
9209 return;
9210 }
9211#endif
9212 while (cap->count1-- && !got_int)
9213 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00009214 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009215 {
9216 clearopbeep(cap->oap);
9217 break;
9218 }
9219 line_breakcheck();
9220 }
9221}
9222
9223/*
9224 * Handle the CTRL-U and CTRL-D commands.
9225 */
9226 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009227nv_halfpage(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009228{
9229 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
9230 || (cap->cmdchar == Ctrl_D
9231 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
9232 clearopbeep(cap->oap);
9233 else if (!checkclearop(cap->oap))
9234 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
9235}
9236
9237/*
9238 * Handle "J" or "gJ" command.
9239 */
9240 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009241nv_join(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009242{
Bram Moolenaar071d4272004-06-13 20:20:40 +00009243 if (VIsual_active) /* join the visual lines */
9244 nv_operator(cap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009245 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009246 {
9247 if (cap->count0 <= 1)
9248 cap->count0 = 2; /* default for join is two lines! */
9249 if (curwin->w_cursor.lnum + cap->count0 - 1 >
9250 curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009251 {
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01009252 /* can't join when on the last line */
9253 if (cap->count0 <= 2)
9254 {
9255 clearopbeep(cap->oap);
9256 return;
9257 }
9258 cap->count0 = curbuf->b_ml.ml_line_count
9259 - curwin->w_cursor.lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009260 }
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01009261
9262 prep_redo(cap->oap->regname, cap->count0,
9263 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
9264 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009265 }
9266}
9267
9268/*
9269 * "P", "gP", "p" and "gp" commands.
9270 */
9271 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009272nv_put(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009273{
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02009274 nv_put_opt(cap, FALSE);
9275}
9276
9277/*
9278 * "P", "gP", "p" and "gp" commands.
9279 * "fix_indent" is TRUE for "[p", "[P", "]p" and "]P".
9280 */
9281 static void
9282nv_put_opt(cmdarg_T *cap, int fix_indent)
9283{
Bram Moolenaar071d4272004-06-13 20:20:40 +00009284 int regname = 0;
9285 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009286 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009287 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009288 int dir;
9289 int flags = 0;
9290
9291 if (cap->oap->op_type != OP_NOP)
9292 {
9293#ifdef FEAT_DIFF
9294 /* "dp" is ":diffput" */
9295 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
9296 {
9297 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01009298 nv_diffgetput(TRUE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009299 }
9300 else
9301#endif
9302 clearopbeep(cap->oap);
9303 }
Bram Moolenaarf2732452018-06-03 14:47:35 +02009304#ifdef FEAT_JOB_CHANNEL
9305 else if (bt_prompt(curbuf) && !prompt_curpos_editable())
9306 {
9307 clearopbeep(cap->oap);
9308 }
9309#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009310 else
9311 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02009312 if (fix_indent)
9313 {
9314 dir = (cap->cmdchar == ']' && cap->nchar == 'p')
9315 ? FORWARD : BACKWARD;
9316 flags |= PUT_FIXINDENT;
9317 }
9318 else
9319 dir = (cap->cmdchar == 'P'
9320 || (cap->cmdchar == 'g' && cap->nchar == 'P'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009321 ? BACKWARD : FORWARD;
9322 prep_redo_cmd(cap);
9323 if (cap->cmdchar == 'g')
9324 flags |= PUT_CURSEND;
9325
Bram Moolenaar071d4272004-06-13 20:20:40 +00009326 if (VIsual_active)
9327 {
9328 /* Putting in Visual mode: The put text replaces the selected
9329 * text. First delete the selected text, then put the new text.
9330 * Need to save and restore the registers that the delete
9331 * overwrites if the old contents is being put.
9332 */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009333 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009334 regname = cap->oap->regname;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009335#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00009336 adjust_clip_reg(&regname);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009337#endif
Bram Moolenaar7d311c52014-02-22 23:49:35 +01009338 if (regname == 0 || regname == '"'
Bram Moolenaarba6e8582012-12-12 18:20:32 +01009339 || VIM_ISDIGIT(regname) || regname == '-'
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009340#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00009341 || (clip_unnamed && (regname == '*' || regname == '+'))
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009342#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009343
9344 )
9345 {
Bram Moolenaarba6e8582012-12-12 18:20:32 +01009346 /* The delete is going to overwrite the register we want to
Bram Moolenaar071d4272004-06-13 20:20:40 +00009347 * put, save it first. */
9348 reg1 = get_register(regname, TRUE);
9349 }
9350
9351 /* Now delete the selected text. */
9352 cap->cmdchar = 'd';
9353 cap->nchar = NUL;
9354 cap->oap->regname = NUL;
9355 nv_operator(cap);
9356 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009357 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009358
9359 /* delete PUT_LINE_BACKWARD; */
9360 cap->oap->regname = regname;
9361
9362 if (reg1 != NULL)
9363 {
9364 /* Delete probably changed the register we want to put, save
9365 * it first. Then put back what was there before the delete. */
9366 reg2 = get_register(regname, FALSE);
9367 put_register(regname, reg1);
9368 }
9369
9370 /* When deleted a linewise Visual area, put the register as
9371 * lines to avoid it joined with the next line. When deletion was
9372 * characterwise, split a line when putting lines. */
9373 if (VIsual_mode == 'V')
9374 flags |= PUT_LINE;
9375 else if (VIsual_mode == 'v')
9376 flags |= PUT_LINE_SPLIT;
9377 if (VIsual_mode == Ctrl_V && dir == FORWARD)
9378 flags |= PUT_LINE_FORWARD;
9379 dir = BACKWARD;
9380 if ((VIsual_mode != 'V'
9381 && curwin->w_cursor.col < curbuf->b_op_start.col)
9382 || (VIsual_mode == 'V'
9383 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
9384 /* cursor is at the end of the line or end of file, put
9385 * forward. */
9386 dir = FORWARD;
Bram Moolenaarec11aef2013-09-22 15:23:44 +02009387 /* May have been reset in do_put(). */
9388 VIsual_active = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009389 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009390 do_put(cap->oap->regname, dir, cap->count1, flags);
9391
Bram Moolenaar071d4272004-06-13 20:20:40 +00009392 /* If a register was saved, put it back now. */
9393 if (reg2 != NULL)
9394 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009395
9396 /* What to reselect with "gv"? Selecting the just put text seems to
9397 * be the most useful, since the original text was removed. */
9398 if (was_visual)
9399 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00009400 curbuf->b_visual.vi_start = curbuf->b_op_start;
9401 curbuf->b_visual.vi_end = curbuf->b_op_end;
Bram Moolenaard29c6fe2015-11-19 20:11:54 +01009402 /* need to adjust cursor position */
9403 if (*p_sel == 'e')
9404 inc(&curbuf->b_visual.vi_end);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009405 }
9406
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009407 /* When all lines were selected and deleted do_put() leaves an empty
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009408 * line that needs to be deleted now. */
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009409 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00009410 {
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009411 ml_delete(curbuf->b_ml.ml_line_count, TRUE);
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00009412
9413 /* If the cursor was in that line, move it to the end of the last
9414 * line. */
9415 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
9416 {
9417 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
9418 coladvance((colnr_T)MAXCOL);
9419 }
9420 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009421 auto_format(FALSE, TRUE);
9422 }
9423}
9424
9425/*
9426 * "o" and "O" commands.
9427 */
9428 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009429nv_open(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009430{
9431#ifdef FEAT_DIFF
9432 /* "do" is ":diffget" */
9433 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
9434 {
9435 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01009436 nv_diffgetput(FALSE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009437 }
9438 else
9439#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009440 if (VIsual_active) /* switch start and end of visual */
9441 v_swap_corners(cap->cmdchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02009442#ifdef FEAT_JOB_CHANNEL
9443 else if (bt_prompt(curbuf))
Bram Moolenaarf2732452018-06-03 14:47:35 +02009444 clearopbeep(cap->oap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02009445#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009446 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009447 n_opencmd(cap);
9448}
9449
Bram Moolenaar071d4272004-06-13 20:20:40 +00009450#ifdef FEAT_NETBEANS_INTG
9451 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009452nv_nbcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009453{
9454 netbeans_keycommand(cap->nchar);
9455}
9456#endif
9457
9458#ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00009459 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009460nv_drop(cmdarg_T *cap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009461{
9462 do_put('~', BACKWARD, 1L, PUT_CURSEND);
9463}
9464#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00009465
Bram Moolenaar3918c952005-03-15 22:34:55 +00009466/*
9467 * Trigger CursorHold event.
9468 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
9469 * input buffer. "did_cursorhold" is set to avoid retriggering.
9470 */
Bram Moolenaar3918c952005-03-15 22:34:55 +00009471 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009472nv_cursorhold(cmdarg_T *cap)
Bram Moolenaar3918c952005-03-15 22:34:55 +00009473{
9474 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
9475 did_cursorhold = TRUE;
Bram Moolenaarfc735152005-03-22 22:54:12 +00009476 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar3918c952005-03-15 22:34:55 +00009477}
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009478
9479/*
Bram Moolenaar89c17c02015-08-11 17:46:36 +02009480 * Calculate start/end virtual columns for operating in block mode.
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009481 */
9482 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009483get_op_vcol(
9484 oparg_T *oap,
9485 colnr_T redo_VIsual_vcol,
9486 int initial) /* when TRUE adjust position for 'selectmode' */
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009487{
9488 colnr_T start, end;
9489
Bram Moolenaar89c17c02015-08-11 17:46:36 +02009490 if (VIsual_mode != Ctrl_V
Bram Moolenaar02631462017-09-22 15:20:32 +02009491 || (!initial && oap->end.col < curwin->w_width))
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009492 return;
9493
Bram Moolenaar10ad1d92015-09-25 19:35:02 +02009494 oap->block_mode = TRUE;
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009495
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009496 /* prevent from moving onto a trail byte */
9497 if (has_mbyte)
9498 mb_adjustpos(curwin->w_buffer, &oap->end);
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009499
9500 getvvcol(curwin, &(oap->start), &oap->start_vcol, NULL, &oap->end_vcol);
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009501
Bram Moolenaar31b259b2015-07-28 11:21:32 +02009502 if (!redo_VIsual_busy)
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009503 {
Bram Moolenaar31b259b2015-07-28 11:21:32 +02009504 getvvcol(curwin, &(oap->end), &start, NULL, &end);
9505
9506 if (start < oap->start_vcol)
9507 oap->start_vcol = start;
9508 if (end > oap->end_vcol)
9509 {
9510 if (initial && *p_sel == 'e' && start >= 1
9511 && start - 1 >= oap->end_vcol)
9512 oap->end_vcol = start - 1;
9513 else
9514 oap->end_vcol = end;
9515 }
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009516 }
Bram Moolenaar31b259b2015-07-28 11:21:32 +02009517
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009518 /* if '$' was used, get oap->end_vcol from longest line */
9519 if (curwin->w_curswant == MAXCOL)
9520 {
9521 curwin->w_cursor.col = MAXCOL;
9522 oap->end_vcol = 0;
9523 for (curwin->w_cursor.lnum = oap->start.lnum;
9524 curwin->w_cursor.lnum <= oap->end.lnum;
9525 ++curwin->w_cursor.lnum)
9526 {
9527 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &end);
9528 if (end > oap->end_vcol)
9529 oap->end_vcol = end;
9530 }
9531 }
9532 else if (redo_VIsual_busy)
9533 oap->end_vcol = oap->start_vcol + redo_VIsual_vcol - 1;
9534 /*
9535 * Correct oap->end.col and oap->start.col to be the
9536 * upper-left and lower-right corner of the block area.
9537 *
9538 * (Actually, this does convert column positions into character
9539 * positions)
9540 */
9541 curwin->w_cursor.lnum = oap->end.lnum;
9542 coladvance(oap->end_vcol);
9543 oap->end = curwin->w_cursor;
9544
9545 curwin->w_cursor = oap->start;
9546 coladvance(oap->start_vcol);
9547 oap->start = curwin->w_cursor;
9548}