blob: f626f45dc1e02dce5fa2d45f56b15c25370474d2 [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
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02002332#ifdef FEAT_TEXT_PROP
2333 popup_handle_mouse_moved();
2334#endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002335 return FALSE;
2336 }
2337
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338#ifdef FEAT_MOUSESHAPE
2339 /* May have stopped dragging the status or separator line. The pointer is
2340 * most likely still on the status or separator line. */
2341 if (!is_drag && drag_status_line)
2342 {
2343 drag_status_line = FALSE;
2344 update_mouseshape(SHAPE_IDX_STATUS);
2345 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 if (!is_drag && drag_sep_line)
2347 {
2348 drag_sep_line = FALSE;
2349 update_mouseshape(SHAPE_IDX_VSEP);
2350 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351#endif
2352
2353 /*
2354 * Ignore drag and release events if we didn't get a click.
2355 */
2356 if (is_click)
2357 got_click = TRUE;
2358 else
2359 {
2360 if (!got_click) /* didn't get click, ignore */
2361 return FALSE;
2362 if (!is_drag) /* release, reset got_click */
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002363 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 got_click = FALSE;
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002365 if (in_tab_line)
2366 {
2367 in_tab_line = FALSE;
2368 return FALSE;
2369 }
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002370 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 }
2372
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 /*
2374 * CTRL right mouse button does CTRL-T
2375 */
2376 if (is_click && (mod_mask & MOD_MASK_CTRL) && which_button == MOUSE_RIGHT)
2377 {
2378 if (State & INSERT)
2379 stuffcharReadbuff(Ctrl_O);
2380 if (count > 1)
2381 stuffnumReadbuff(count);
2382 stuffcharReadbuff(Ctrl_T);
2383 got_click = FALSE; /* ignore drag&release now */
2384 return FALSE;
2385 }
2386
2387 /*
2388 * CTRL only works with left mouse button
2389 */
2390 if ((mod_mask & MOD_MASK_CTRL) && which_button != MOUSE_LEFT)
2391 return FALSE;
2392
2393 /*
2394 * When a modifier is down, ignore drag and release events, as well as
2395 * multiple clicks and the middle mouse button.
2396 * Accept shift-leftmouse drags when 'mousemodel' is "popup.*".
2397 */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002398 if ((mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT
2399 | MOD_MASK_META))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 && (!is_click
2401 || (mod_mask & MOD_MASK_MULTI_CLICK)
2402 || which_button == MOUSE_MIDDLE)
Bram Moolenaar64969662005-12-14 21:59:55 +00002403 && !((mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 && mouse_model_popup()
2405 && which_button == MOUSE_LEFT)
Bram Moolenaar64969662005-12-14 21:59:55 +00002406 && !((mod_mask & MOD_MASK_ALT)
2407 && !mouse_model_popup()
2408 && which_button == MOUSE_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 )
2410 return FALSE;
2411
2412 /*
2413 * If the button press was used as the movement command for an operator
2414 * (eg "d<MOUSE>"), or it is the middle button that is held down, ignore
2415 * drag/release events.
2416 */
2417 if (!is_click && which_button == MOUSE_MIDDLE)
2418 return FALSE;
2419
2420 if (oap != NULL)
2421 regname = oap->regname;
2422 else
2423 regname = 0;
2424
2425 /*
2426 * Middle mouse button does a 'put' of the selected text
2427 */
2428 if (which_button == MOUSE_MIDDLE)
2429 {
2430 if (State == NORMAL)
2431 {
2432 /*
2433 * If an operator was pending, we don't know what the user wanted
2434 * to do. Go back to normal mode: Clear the operator and beep().
2435 */
2436 if (oap != NULL && oap->op_type != OP_NOP)
2437 {
2438 clearopbeep(oap);
2439 return FALSE;
2440 }
2441
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 /*
2443 * If visual was active, yank the highlighted text and put it
2444 * before the mouse pointer position.
Bram Moolenaara350f4a2006-10-17 14:54:03 +00002445 * In Select mode replace the highlighted text with the clipboard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 */
2447 if (VIsual_active)
2448 {
Bram Moolenaara350f4a2006-10-17 14:54:03 +00002449 if (VIsual_select)
2450 {
2451 stuffcharReadbuff(Ctrl_G);
Bram Moolenaar2d8b2d82006-10-17 20:38:28 +00002452 stuffReadbuff((char_u *)"\"+p");
Bram Moolenaara350f4a2006-10-17 14:54:03 +00002453 }
2454 else
2455 {
2456 stuffcharReadbuff('y');
2457 stuffcharReadbuff(K_MIDDLEMOUSE);
2458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 do_always = TRUE; /* ignore 'mouse' setting next time */
2460 return FALSE;
2461 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 /*
2463 * The rest is below jump_to_mouse()
2464 */
2465 }
2466
2467 else if ((State & INSERT) == 0)
2468 return FALSE;
2469
2470 /*
2471 * Middle click in insert mode doesn't move the mouse, just insert the
2472 * contents of a register. '.' register is special, can't insert that
2473 * with do_put().
2474 * Also paste at the cursor if the current mode isn't in 'mouse' (only
2475 * happens for the GUI).
2476 */
2477 if ((State & INSERT) || !mouse_has(MOUSE_NORMAL))
2478 {
2479 if (regname == '.')
2480 insert_reg(regname, TRUE);
2481 else
2482 {
2483#ifdef FEAT_CLIPBOARD
2484 if (clip_star.available && regname == 0)
2485 regname = '*';
2486#endif
2487 if ((State & REPLACE_FLAG) && !yank_register_mline(regname))
2488 insert_reg(regname, TRUE);
2489 else
2490 {
2491 do_put(regname, BACKWARD, 1L, fixindent | PUT_CURSEND);
2492
2493 /* Repeat it with CTRL-R CTRL-O r or CTRL-R CTRL-P r */
2494 AppendCharToRedobuff(Ctrl_R);
2495 AppendCharToRedobuff(fixindent ? Ctrl_P : Ctrl_O);
2496 AppendCharToRedobuff(regname == 0 ? '"' : regname);
2497 }
2498 }
2499 return FALSE;
2500 }
2501 }
2502
2503 /* When dragging or button-up stay in the same window. */
2504 if (!is_click)
2505 jump_flags |= MOUSE_FOCUS | MOUSE_DID_MOVE;
2506
2507 start_visual.lnum = 0;
2508
Bram Moolenaarf740b292006-02-16 22:11:02 +00002509 /* Check for clicking in the tab page line. */
2510 if (mouse_row == 0 && firstwin->w_winrow > 0)
2511 {
Bram Moolenaara7241f52008-06-24 20:39:31 +00002512 if (is_drag)
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002513 {
2514 if (in_tab_line)
2515 {
2516 c1 = TabPageIdxs[mouse_col];
Bram Moolenaar4a4b8212015-09-08 17:50:41 +02002517 tabpage_move(c1 <= 0 ? 9999 : c1 < tabpage_index(curtab)
2518 ? c1 - 1 : c1);
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002519 }
Bram Moolenaara7241f52008-06-24 20:39:31 +00002520 return FALSE;
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002521 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002522
Bram Moolenaarf740b292006-02-16 22:11:02 +00002523 /* click in a tab selects that tab page */
2524 if (is_click
2525# ifdef FEAT_CMDWIN
2526 && cmdwin_type == 0
2527# endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002528 && mouse_col < Columns)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002529 {
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002530 in_tab_line = TRUE;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002531 c1 = TabPageIdxs[mouse_col];
2532 if (c1 >= 0)
2533 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002534 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2535 {
2536 /* double click opens new page */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002537 end_visual_mode();
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002538 tabpage_new();
2539 tabpage_move(c1 == 0 ? 9999 : c1 - 1);
2540 }
2541 else
2542 {
2543 /* Go to specified tab page, or next one if not clicking
2544 * on a label. */
2545 goto_tabpage(c1);
2546
2547 /* It's like clicking on the status line of a window. */
2548 if (curwin != old_curwin)
2549 end_visual_mode();
2550 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002551 }
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02002552 else
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002553 {
2554 tabpage_T *tp;
2555
2556 /* Close the current or specified tab page. */
2557 if (c1 == -999)
2558 tp = curtab;
2559 else
2560 tp = find_tabpage(-c1);
2561 if (tp == curtab)
2562 {
2563 if (first_tabpage->tp_next != NULL)
2564 tabpage_close(FALSE);
2565 }
2566 else if (tp != NULL)
2567 tabpage_close_other(tp, FALSE);
2568 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002569 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002570 return TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002571 }
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002572 else if (is_drag && in_tab_line)
2573 {
2574 c1 = TabPageIdxs[mouse_col];
2575 tabpage_move(c1 <= 0 ? 9999 : c1 - 1);
2576 return FALSE;
2577 }
2578
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 /*
2580 * When 'mousemodel' is "popup" or "popup_setpos", translate mouse events:
2581 * right button up -> pop-up menu
2582 * shift-left button -> right button
Bram Moolenaar64969662005-12-14 21:59:55 +00002583 * alt-left button -> alt-right button
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 */
2585 if (mouse_model_popup())
2586 {
2587 if (which_button == MOUSE_RIGHT
2588 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2589 {
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00002590#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002592 || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_PHOTON) \
2593 || defined(FEAT_TERM_POPUP_MENU)
2594# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 if (gui.in_use)
2596 {
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002597# if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
2598 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2599 if (!is_click)
2600 /* Ignore right button release events, only shows the popup
2601 * menu on the button down event. */
2602 return FALSE;
2603# endif
2604# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN)
2605 if (is_click || is_drag)
2606 /* Ignore right button down and drag mouse events. Windows
2607 * only shows the popup menu on the button up event. */
2608 return FALSE;
2609# endif
2610 }
2611# endif
2612# if defined(FEAT_GUI) && defined(FEAT_TERM_POPUP_MENU)
2613 else
2614# endif
2615# if defined(FEAT_TERM_POPUP_MENU)
2616 if (!is_click)
2617 /* Ignore right button release events, only shows the popup
2618 * menu on the button down event. */
2619 return FALSE;
2620#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002622 jump_flags = 0;
2623 if (STRCMP(p_mousem, "popup_setpos") == 0)
2624 {
2625 /* First set the cursor position before showing the popup
2626 * menu. */
2627 if (VIsual_active)
2628 {
2629 pos_T m_pos;
2630
2631 /*
2632 * set MOUSE_MAY_STOP_VIS if we are outside the
2633 * selection or the current window (might have false
2634 * negative here)
2635 */
2636 if (mouse_row < curwin->w_winrow
2637 || mouse_row
2638 > (curwin->w_winrow + curwin->w_height))
2639 jump_flags = MOUSE_MAY_STOP_VIS;
2640 else if (get_fpos_of_mouse(&m_pos) != IN_BUFFER)
2641 jump_flags = MOUSE_MAY_STOP_VIS;
2642 else
2643 {
2644 if ((LT_POS(curwin->w_cursor, VIsual)
2645 && (LT_POS(m_pos, curwin->w_cursor)
2646 || LT_POS(VIsual, m_pos)))
2647 || (LT_POS(VIsual, curwin->w_cursor)
2648 && (LT_POS(m_pos, VIsual)
2649 || LT_POS(curwin->w_cursor, m_pos))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 {
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002651 jump_flags = MOUSE_MAY_STOP_VIS;
2652 }
2653 else if (VIsual_mode == Ctrl_V)
2654 {
2655 getvcols(curwin, &curwin->w_cursor, &VIsual,
2656 &leftcol, &rightcol);
2657 getvcol(curwin, &m_pos, NULL, &m_pos.col, NULL);
2658 if (m_pos.col < leftcol || m_pos.col > rightcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 jump_flags = MOUSE_MAY_STOP_VIS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 }
2661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 }
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002663 else
2664 jump_flags = MOUSE_MAY_STOP_VIS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 }
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01002666 if (jump_flags)
2667 {
2668 jump_flags = jump_to_mouse(jump_flags, NULL, which_button);
2669 update_curbuf(VIsual_active ? INVERTED : VALID);
2670 setcursor();
2671 out_flush(); /* Update before showing popup menu */
2672 }
2673# ifdef FEAT_MENU
2674 show_popupmenu();
2675 got_click = FALSE; /* ignore release events */
2676# endif
2677 return (jump_flags & CURSOR_MOVED) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678#else
2679 return FALSE;
2680#endif
2681 }
Bram Moolenaar64969662005-12-14 21:59:55 +00002682 if (which_button == MOUSE_LEFT
2683 && (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 {
2685 which_button = MOUSE_RIGHT;
2686 mod_mask &= ~MOD_MASK_SHIFT;
2687 }
2688 }
2689
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 if ((State & (NORMAL | INSERT))
2691 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2692 {
2693 if (which_button == MOUSE_LEFT)
2694 {
2695 if (is_click)
2696 {
2697 /* stop Visual mode for a left click in a window, but not when
2698 * on a status line */
2699 if (VIsual_active)
2700 jump_flags |= MOUSE_MAY_STOP_VIS;
2701 }
2702 else if (mouse_has(MOUSE_VISUAL))
2703 jump_flags |= MOUSE_MAY_VIS;
2704 }
2705 else if (which_button == MOUSE_RIGHT)
2706 {
2707 if (is_click && VIsual_active)
2708 {
2709 /*
2710 * Remember the start and end of visual before moving the
2711 * cursor.
2712 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002713 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 {
2715 start_visual = curwin->w_cursor;
2716 end_visual = VIsual;
2717 }
2718 else
2719 {
2720 start_visual = VIsual;
2721 end_visual = curwin->w_cursor;
2722 }
2723 }
2724 jump_flags |= MOUSE_FOCUS;
2725 if (mouse_has(MOUSE_VISUAL))
2726 jump_flags |= MOUSE_MAY_VIS;
2727 }
2728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729
2730 /*
2731 * If an operator is pending, ignore all drags and releases until the
2732 * next mouse click.
2733 */
2734 if (!is_drag && oap != NULL && oap->op_type != OP_NOP)
2735 {
2736 got_click = FALSE;
2737 oap->motion_type = MCHAR;
2738 }
2739
2740 /* When releasing the button let jump_to_mouse() know. */
2741 if (!is_click && !is_drag)
2742 jump_flags |= MOUSE_RELEASED;
2743
2744 /*
2745 * JUMP!
2746 */
2747 jump_flags = jump_to_mouse(jump_flags,
2748 oap == NULL ? NULL : &(oap->inclusive), which_button);
Bram Moolenaareb163d72017-09-23 15:08:17 +02002749
2750#ifdef FEAT_MENU
2751 /* A click in the window toolbar has no side effects. */
2752 if (jump_flags & MOUSE_WINBAR)
2753 return FALSE;
2754#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755 moved = (jump_flags & CURSOR_MOVED);
2756 in_status_line = (jump_flags & IN_STATUS_LINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 in_sep_line = (jump_flags & IN_SEP_LINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758
2759#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002760 if (isNetbeansBuffer(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 && !(jump_flags & (IN_STATUS_LINE | IN_SEP_LINE)))
2762 {
2763 int key = KEY2TERMCAP1(c);
2764
2765 if (key == (int)KE_LEFTRELEASE || key == (int)KE_MIDDLERELEASE
2766 || key == (int)KE_RIGHTRELEASE)
2767 netbeans_button_release(which_button);
2768 }
2769#endif
2770
2771 /* When jumping to another window, clear a pending operator. That's a bit
2772 * friendlier than beeping and not jumping to that window. */
2773 if (curwin != old_curwin && oap != NULL && oap->op_type != OP_NOP)
2774 clearop(oap);
2775
2776#ifdef FEAT_FOLDING
2777 if (mod_mask == 0
2778 && !is_drag
2779 && (jump_flags & (MOUSE_FOLD_CLOSE | MOUSE_FOLD_OPEN))
2780 && which_button == MOUSE_LEFT)
2781 {
2782 /* open or close a fold at this line */
2783 if (jump_flags & MOUSE_FOLD_OPEN)
2784 openFold(curwin->w_cursor.lnum, 1L);
2785 else
2786 closeFold(curwin->w_cursor.lnum, 1L);
2787 /* don't move the cursor if still in the same window */
2788 if (curwin == old_curwin)
2789 curwin->w_cursor = save_cursor;
2790 }
2791#endif
2792
2793#if defined(FEAT_CLIPBOARD) && defined(FEAT_CMDWIN)
2794 if ((jump_flags & IN_OTHER_WIN) && !VIsual_active && clip_star.available)
2795 {
2796 clip_modeless(which_button, is_click, is_drag);
2797 return FALSE;
2798 }
2799#endif
2800
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 /* Set global flag that we are extending the Visual area with mouse
Bram Moolenaarf711faf2007-05-10 16:48:19 +00002802 * dragging; temporarily minimize 'scrolloff'. */
Bram Moolenaar375e3392019-01-31 18:26:10 +01002803 if (VIsual_active && is_drag && get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 {
2805 /* In the very first line, allow scrolling one line */
2806 if (mouse_row == 0)
2807 mouse_dragging = 2;
2808 else
2809 mouse_dragging = 1;
2810 }
2811
2812 /* When dragging the mouse above the window, scroll down. */
2813 if (is_drag && mouse_row < 0 && !in_status_line)
2814 {
2815 scroll_redraw(FALSE, 1L);
2816 mouse_row = 0;
2817 }
2818
2819 if (start_visual.lnum) /* right click in visual mode */
2820 {
Bram Moolenaar64969662005-12-14 21:59:55 +00002821 /* When ALT is pressed make Visual mode blockwise. */
2822 if (mod_mask & MOD_MASK_ALT)
2823 VIsual_mode = Ctrl_V;
2824
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 /*
2826 * In Visual-block mode, divide the area in four, pick up the corner
2827 * that is in the quarter that the cursor is in.
2828 */
2829 if (VIsual_mode == Ctrl_V)
2830 {
2831 getvcols(curwin, &start_visual, &end_visual, &leftcol, &rightcol);
2832 if (curwin->w_curswant > (leftcol + rightcol) / 2)
2833 end_visual.col = leftcol;
2834 else
2835 end_visual.col = rightcol;
Bram Moolenaarcde88542015-08-11 19:14:00 +02002836 if (curwin->w_cursor.lnum >=
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 (start_visual.lnum + end_visual.lnum) / 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 end_visual.lnum = start_visual.lnum;
2839
2840 /* move VIsual to the right column */
2841 start_visual = curwin->w_cursor; /* save the cursor pos */
2842 curwin->w_cursor = end_visual;
2843 coladvance(end_visual.col);
2844 VIsual = curwin->w_cursor;
2845 curwin->w_cursor = start_visual; /* restore the cursor */
2846 }
2847 else
2848 {
2849 /*
2850 * If the click is before the start of visual, change the start.
2851 * If the click is after the end of visual, change the end. If
2852 * the click is inside the visual, change the closest side.
2853 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002854 if (LT_POS(curwin->w_cursor, start_visual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 VIsual = end_visual;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002856 else if (LT_POS(end_visual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 VIsual = start_visual;
2858 else
2859 {
2860 /* In the same line, compare column number */
2861 if (end_visual.lnum == start_visual.lnum)
2862 {
2863 if (curwin->w_cursor.col - start_visual.col >
2864 end_visual.col - curwin->w_cursor.col)
2865 VIsual = start_visual;
2866 else
2867 VIsual = end_visual;
2868 }
2869
2870 /* In different lines, compare line number */
2871 else
2872 {
2873 diff = (curwin->w_cursor.lnum - start_visual.lnum) -
2874 (end_visual.lnum - curwin->w_cursor.lnum);
2875
2876 if (diff > 0) /* closest to end */
2877 VIsual = start_visual;
2878 else if (diff < 0) /* closest to start */
2879 VIsual = end_visual;
2880 else /* in the middle line */
2881 {
2882 if (curwin->w_cursor.col <
2883 (start_visual.col + end_visual.col) / 2)
2884 VIsual = end_visual;
2885 else
2886 VIsual = start_visual;
2887 }
2888 }
2889 }
2890 }
2891 }
2892 /*
2893 * If Visual mode started in insert mode, execute "CTRL-O"
2894 */
2895 else if ((State & INSERT) && VIsual_active)
2896 stuffcharReadbuff(Ctrl_O);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897
2898 /*
2899 * Middle mouse click: Put text before cursor.
2900 */
2901 if (which_button == MOUSE_MIDDLE)
2902 {
2903#ifdef FEAT_CLIPBOARD
2904 if (clip_star.available && regname == 0)
2905 regname = '*';
2906#endif
2907 if (yank_register_mline(regname))
2908 {
2909 if (mouse_past_bottom)
2910 dir = FORWARD;
2911 }
2912 else if (mouse_past_eol)
2913 dir = FORWARD;
2914
2915 if (fixindent)
2916 {
2917 c1 = (dir == BACKWARD) ? '[' : ']';
2918 c2 = 'p';
2919 }
2920 else
2921 {
2922 c1 = (dir == FORWARD) ? 'p' : 'P';
2923 c2 = NUL;
2924 }
2925 prep_redo(regname, count, NUL, c1, NUL, c2, NUL);
2926
2927 /*
2928 * Remember where the paste started, so in edit() Insstart can be set
2929 * to this position
2930 */
2931 if (restart_edit != 0)
2932 where_paste_started = curwin->w_cursor;
2933 do_put(regname, dir, count, fixindent | PUT_CURSEND);
2934 }
2935
Bram Moolenaar4033c552017-09-16 20:54:51 +02002936#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 /*
2938 * Ctrl-Mouse click or double click in a quickfix window jumps to the
2939 * error under the mouse pointer.
2940 */
2941 else if (((mod_mask & MOD_MASK_CTRL)
2942 || (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2943 && bt_quickfix(curbuf))
2944 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +00002945 if (curwin->w_llist_ref == NULL) /* quickfix window */
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +01002946 do_cmdline_cmd((char_u *)".cc");
Bram Moolenaar28c258f2006-01-25 22:02:51 +00002947 else /* location list window */
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +01002948 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 got_click = FALSE; /* ignore drag&release now */
2950 }
2951#endif
2952
2953 /*
2954 * Ctrl-Mouse click (or double click in a help window) jumps to the tag
2955 * under the mouse pointer.
2956 */
2957 else if ((mod_mask & MOD_MASK_CTRL) || (curbuf->b_help
2958 && (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK))
2959 {
2960 if (State & INSERT)
2961 stuffcharReadbuff(Ctrl_O);
2962 stuffcharReadbuff(Ctrl_RSB);
2963 got_click = FALSE; /* ignore drag&release now */
2964 }
2965
2966 /*
2967 * Shift-Mouse click searches for the next occurrence of the word under
2968 * the mouse pointer
2969 */
2970 else if ((mod_mask & MOD_MASK_SHIFT))
2971 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002972 if ((State & INSERT) || (VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 stuffcharReadbuff(Ctrl_O);
2974 if (which_button == MOUSE_LEFT)
2975 stuffcharReadbuff('*');
2976 else /* MOUSE_RIGHT */
2977 stuffcharReadbuff('#');
2978 }
2979
2980 /* Handle double clicks, unless on status line */
2981 else if (in_status_line)
2982 {
2983#ifdef FEAT_MOUSESHAPE
2984 if ((is_drag || is_click) && !drag_status_line)
2985 {
2986 drag_status_line = TRUE;
2987 update_mouseshape(-1);
2988 }
2989#endif
2990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 else if (in_sep_line)
2992 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02002993#ifdef FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 if ((is_drag || is_click) && !drag_sep_line)
2995 {
2996 drag_sep_line = TRUE;
2997 update_mouseshape(-1);
2998 }
Bram Moolenaar829c8e32016-03-19 23:07:23 +01002999#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02003000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 else if ((mod_mask & MOD_MASK_MULTI_CLICK) && (State & (NORMAL | INSERT))
3002 && mouse_has(MOUSE_VISUAL))
3003 {
3004 if (is_click || !VIsual_active)
3005 {
3006 if (VIsual_active)
3007 orig_cursor = VIsual;
3008 else
3009 {
3010 check_visual_highlight();
3011 VIsual = curwin->w_cursor;
3012 orig_cursor = VIsual;
3013 VIsual_active = TRUE;
3014 VIsual_reselect = TRUE;
3015 /* start Select mode if 'selectmode' contains "mouse" */
3016 may_start_select('o');
3017 setmouse();
3018 }
3019 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
Bram Moolenaar64969662005-12-14 21:59:55 +00003020 {
3021 /* Double click with ALT pressed makes it blockwise. */
3022 if (mod_mask & MOD_MASK_ALT)
3023 VIsual_mode = Ctrl_V;
3024 else
3025 VIsual_mode = 'v';
3026 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_3CLICK)
3028 VIsual_mode = 'V';
3029 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_4CLICK)
3030 VIsual_mode = Ctrl_V;
3031#ifdef FEAT_CLIPBOARD
3032 /* Make sure the clipboard gets updated. Needed because start and
3033 * end may still be the same, and the selection needs to be owned */
3034 clip_star.vmode = NUL;
3035#endif
3036 }
3037 /*
3038 * A double click selects a word or a block.
3039 */
3040 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
3041 {
3042 pos_T *pos = NULL;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003043 int gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044
3045 if (is_click)
3046 {
3047 /* If the character under the cursor (skipping white space) is
3048 * not a word character, try finding a match and select a (),
3049 * {}, [], #if/#endif, etc. block. */
3050 end_visual = curwin->w_cursor;
Bram Moolenaar1c465442017-03-12 20:10:05 +01003051 while (gc = gchar_pos(&end_visual), VIM_ISWHITE(gc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 inc(&end_visual);
3053 if (oap != NULL)
3054 oap->motion_type = MCHAR;
3055 if (oap != NULL
3056 && VIsual_mode == 'v'
3057 && !vim_iswordc(gchar_pos(&end_visual))
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003058 && EQUAL_POS(curwin->w_cursor, VIsual)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 && (pos = findmatch(oap, NUL)) != NULL)
3060 {
3061 curwin->w_cursor = *pos;
3062 if (oap->motion_type == MLINE)
3063 VIsual_mode = 'V';
3064 else if (*p_sel == 'e')
3065 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003066 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067 ++VIsual.col;
3068 else
3069 ++curwin->w_cursor.col;
3070 }
3071 }
3072 }
3073
3074 if (pos == NULL && (is_click || is_drag))
3075 {
3076 /* When not found a match or when dragging: extend to include
3077 * a word. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003078 if (LT_POS(curwin->w_cursor, orig_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 {
3080 find_start_of_word(&curwin->w_cursor);
3081 find_end_of_word(&VIsual);
3082 }
3083 else
3084 {
3085 find_start_of_word(&VIsual);
3086 if (*p_sel == 'e' && *ml_get_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 curwin->w_cursor.col +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003088 (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 find_end_of_word(&curwin->w_cursor);
3090 }
3091 }
3092 curwin->w_set_curswant = TRUE;
3093 }
3094 if (is_click)
3095 redraw_curbuf_later(INVERTED); /* update the inversion */
3096 }
3097 else if (VIsual_active && !old_active)
Bram Moolenaar64969662005-12-14 21:59:55 +00003098 {
3099 if (mod_mask & MOD_MASK_ALT)
3100 VIsual_mode = Ctrl_V;
3101 else
3102 VIsual_mode = 'v';
3103 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104
3105 /* If Visual mode changed show it later. */
Bram Moolenaar28c258f2006-01-25 22:02:51 +00003106 if ((!VIsual_active && old_active && mode_displayed)
3107 || (VIsual_active && p_smd && msg_silent == 0
3108 && (!old_active || VIsual_mode != old_mode)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 redraw_cmdline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110
3111 return moved;
3112}
3113
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114/*
3115 * Move "pos" back to the start of the word it's in.
3116 */
3117 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003118find_start_of_word(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119{
3120 char_u *line;
3121 int cclass;
3122 int col;
3123
3124 line = ml_get(pos->lnum);
3125 cclass = get_mouse_class(line + pos->col);
3126
3127 while (pos->col > 0)
3128 {
3129 col = pos->col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 col -= (*mb_head_off)(line, line + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 if (get_mouse_class(line + col) != cclass)
3132 break;
3133 pos->col = col;
3134 }
3135}
3136
3137/*
3138 * Move "pos" forward to the end of the word it's in.
3139 * When 'selection' is "exclusive", the position is just after the word.
3140 */
3141 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003142find_end_of_word(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143{
3144 char_u *line;
3145 int cclass;
3146 int col;
3147
3148 line = ml_get(pos->lnum);
3149 if (*p_sel == 'e' && pos->col > 0)
3150 {
3151 --pos->col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 pos->col -= (*mb_head_off)(line, line + pos->col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 }
3154 cclass = get_mouse_class(line + pos->col);
3155 while (line[pos->col] != NUL)
3156 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003157 col = pos->col + (*mb_ptr2len)(line + pos->col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 if (get_mouse_class(line + col) != cclass)
3159 {
3160 if (*p_sel == 'e')
3161 pos->col = col;
3162 break;
3163 }
3164 pos->col = col;
3165 }
3166}
3167
3168/*
3169 * Get class of a character for selection: same class means same word.
3170 * 0: blank
3171 * 1: punctuation groups
3172 * 2: normal word character
3173 * >2: multi-byte word character.
3174 */
3175 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003176get_mouse_class(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177{
3178 int c;
3179
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 if (has_mbyte && MB_BYTE2LEN(p[0]) > 1)
3181 return mb_get_class(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182
3183 c = *p;
3184 if (c == ' ' || c == '\t')
3185 return 0;
3186
3187 if (vim_iswordc(c))
3188 return 2;
3189
3190 /*
3191 * There are a few special cases where we want certain combinations of
3192 * characters to be considered as a single word. These are things like
3193 * "->", "/ *", "*=", "+=", "&=", "<=", ">=", "!=" etc. Otherwise, each
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02003194 * character is in its own class.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 */
3196 if (c != NUL && vim_strchr((char_u *)"-+*/%<>&|^!=", c) != NULL)
3197 return 1;
3198 return c;
3199}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200#endif /* FEAT_MOUSE */
3201
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202/*
3203 * Check if highlighting for visual mode is possible, give a warning message
3204 * if not.
3205 */
3206 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003207check_visual_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208{
3209 static int did_check = FALSE;
3210
3211 if (full_screen)
3212 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01003213 if (!did_check && HL_ATTR(HLF_V) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003214 msg(_("Warning: terminal cannot highlight"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 did_check = TRUE;
3216 }
3217}
3218
3219/*
Bram Moolenaar66fa2712006-01-22 23:22:22 +00003220 * End Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 * This function should ALWAYS be called to end Visual mode, except from
3222 * do_pending_operator().
3223 */
3224 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003225end_visual_mode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226{
3227#ifdef FEAT_CLIPBOARD
3228 /*
3229 * If we are using the clipboard, then remember what was selected in case
3230 * we need to paste it somewhere while we still own the selection.
3231 * Only do this when the clipboard is already owned. Don't want to grab
3232 * the selection when hitting ESC.
3233 */
3234 if (clip_star.available && clip_star.owned)
3235 clip_auto_select();
3236#endif
3237
3238 VIsual_active = FALSE;
3239#ifdef FEAT_MOUSE
3240 setmouse();
3241 mouse_dragging = 0;
3242#endif
3243
3244 /* Save the current VIsual area for '< and '> marks, and "gv" */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003245 curbuf->b_visual.vi_mode = VIsual_mode;
3246 curbuf->b_visual.vi_start = VIsual;
3247 curbuf->b_visual.vi_end = curwin->w_cursor;
3248 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249#ifdef FEAT_EVAL
3250 curbuf->b_visual_mode_eval = VIsual_mode;
3251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 if (!virtual_active())
3253 curwin->w_cursor.coladd = 0;
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02003254 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003256 adjust_cursor_eol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257}
3258
3259/*
3260 * Reset VIsual_active and VIsual_reselect.
3261 */
3262 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003263reset_VIsual_and_resel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264{
3265 if (VIsual_active)
3266 {
3267 end_visual_mode();
3268 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3269 }
3270 VIsual_reselect = FALSE;
3271}
3272
3273/*
3274 * Reset VIsual_active and VIsual_reselect if it's set.
3275 */
3276 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003277reset_VIsual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278{
3279 if (VIsual_active)
3280 {
3281 end_visual_mode();
3282 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3283 VIsual_reselect = FALSE;
3284 }
3285}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287/*
3288 * Check for a balloon-eval special item to include when searching for an
3289 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
3290 * Returns TRUE if the character at "*ptr" should be included.
3291 * "dir" is FORWARD or BACKWARD, the direction of searching.
3292 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
3293 * "bnp" points to a counter for square brackets.
3294 */
3295 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003296find_is_eval_item(
3297 char_u *ptr,
3298 int *colp,
3299 int *bnp,
3300 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301{
3302 /* Accept everything inside []. */
3303 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
3304 ++*bnp;
3305 if (*bnp > 0)
3306 {
3307 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
3308 --*bnp;
3309 return TRUE;
3310 }
3311
3312 /* skip over "s.var" */
3313 if (*ptr == '.')
3314 return TRUE;
3315
3316 /* two-character item: s->var */
3317 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
3318 && ptr[dir == BACKWARD ? -1 : 0] == '-')
3319 {
3320 *colp += dir;
3321 return TRUE;
3322 }
3323 return FALSE;
3324}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325
3326/*
3327 * Find the identifier under or to the right of the cursor.
3328 * "find_type" can have one of three values:
3329 * FIND_IDENT: find an identifier (keyword)
3330 * FIND_STRING: find any non-white string
3331 * FIND_IDENT + FIND_STRING: find any non-white string, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003332 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 *
3334 * There are three steps:
3335 * 1. Search forward for the start of an identifier/string. Doesn't move if
3336 * already on one.
3337 * 2. Search backward for the start of this identifier/string.
3338 * This doesn't match the real Vi but I like it a little better and it
3339 * shouldn't bother anyone.
3340 * 3. Search forward to the end of this identifier/string.
3341 * When FIND_IDENT isn't defined, we backup until a blank.
3342 *
3343 * Returns the length of the string, or zero if no string is found.
3344 * If a string is found, a pointer to the string is put in "*string". This
3345 * string is not always NUL terminated.
3346 */
3347 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003348find_ident_under_cursor(char_u **string, int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349{
3350 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
3351 curwin->w_cursor.col, string, find_type);
3352}
3353
3354/*
3355 * Like find_ident_under_cursor(), but for any window and any position.
3356 * However: Uses 'iskeyword' from the current window!.
3357 */
3358 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003359find_ident_at_pos(
3360 win_T *wp,
3361 linenr_T lnum,
3362 colnr_T startcol,
3363 char_u **string,
3364 int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365{
3366 char_u *ptr;
3367 int col = 0; /* init to shut up GCC */
3368 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 int this_class = 0;
3370 int prev_class;
3371 int prevcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 int bn = 0; /* bracket nesting */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373
3374 /*
3375 * if i == 0: try to find an identifier
3376 * if i == 1: try to find any non-white string
3377 */
3378 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
3379 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
3380 {
3381 /*
3382 * 1. skip to start of identifier/string
3383 */
3384 col = startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 if (has_mbyte)
3386 {
3387 while (ptr[col] != NUL)
3388 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389 /* Stop at a ']' to evaluate "a[x]". */
3390 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3391 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 this_class = mb_get_class(ptr + col);
3393 if (this_class != 0 && (i == 1 || this_class != 1))
3394 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003395 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 }
3397 }
3398 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 while (ptr[col] != NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01003400 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 )
3403 ++col;
3404
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 /* When starting on a ']' count it, so that we include the '['. */
3406 bn = ptr[col] == ']';
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407
3408 /*
3409 * 2. Back up to start of identifier/string.
3410 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 if (has_mbyte)
3412 {
3413 /* Remember class of character under cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3415 this_class = mb_get_class((char_u *)"a");
3416 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 this_class = mb_get_class(ptr + col);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003418 while (col > 0 && this_class != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 {
3420 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
3421 prev_class = mb_get_class(ptr + prevcol);
3422 if (this_class != prev_class
3423 && (i == 0
3424 || prev_class == 0
3425 || (find_type & FIND_IDENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 && (!(find_type & FIND_EVAL)
3427 || prevcol == 0
3428 || !find_is_eval_item(ptr + prevcol, &prevcol,
3429 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 )
3431 break;
3432 col = prevcol;
3433 }
3434
3435 /* If we don't want just any old string, or we've found an
3436 * identifier, stop searching. */
3437 if (this_class > 2)
3438 this_class = 2;
3439 if (!(find_type & FIND_STRING) || this_class == 2)
3440 break;
3441 }
3442 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 {
3444 while (col > 0
3445 && ((i == 0
3446 ? vim_iswordc(ptr[col - 1])
Bram Moolenaar1c465442017-03-12 20:10:05 +01003447 : (!VIM_ISWHITE(ptr[col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 && (!(find_type & FIND_IDENT)
3449 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450 || ((find_type & FIND_EVAL)
3451 && col > 1
3452 && find_is_eval_item(ptr + col - 1, &col,
3453 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 ))
3455 --col;
3456
3457 /* If we don't want just any old string, or we've found an
3458 * identifier, stop searching. */
3459 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
3460 break;
3461 }
3462 }
3463
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003464 if (ptr[col] == NUL || (i == 0
3465 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 {
Bram Moolenaar17627312019-06-02 19:53:44 +02003467 // didn't find an identifier or string
3468 if ((find_type & FIND_NOERROR) == 0)
3469 {
3470 if (find_type & FIND_STRING)
3471 emsg(_("E348: No string under cursor"));
3472 else
3473 emsg(_(e_noident));
3474 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 return 0;
3476 }
3477 ptr += col;
3478 *string = ptr;
3479
3480 /*
3481 * 3. Find the end if the identifier/string.
3482 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 bn = 0;
3484 startcol -= col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 if (has_mbyte)
3487 {
3488 /* Search for point of changing multibyte character class. */
3489 this_class = mb_get_class(ptr);
3490 while (ptr[col] != NUL
3491 && ((i == 0 ? mb_get_class(ptr + col) == this_class
3492 : mb_get_class(ptr + col) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 || ((find_type & FIND_EVAL)
3494 && col <= (int)startcol
3495 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 ))
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003497 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 }
3499 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500 while ((i == 0 ? vim_iswordc(ptr[col])
Bram Moolenaar1c465442017-03-12 20:10:05 +01003501 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 || ((find_type & FIND_EVAL)
3503 && col <= (int)startcol
3504 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 ++col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507
3508 return col;
3509}
3510
3511/*
3512 * Prepare for redo of a normal command.
3513 */
3514 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003515prep_redo_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516{
3517 prep_redo(cap->oap->regname, cap->count0,
3518 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
3519}
3520
3521/*
3522 * Prepare for redo of any command.
3523 * Note that only the last argument can be a multi-byte char.
3524 */
3525 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003526prep_redo(
3527 int regname,
3528 long num,
3529 int cmd1,
3530 int cmd2,
3531 int cmd3,
3532 int cmd4,
3533 int cmd5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534{
3535 ResetRedobuff();
3536 if (regname != 0) /* yank from specified buffer */
3537 {
3538 AppendCharToRedobuff('"');
3539 AppendCharToRedobuff(regname);
3540 }
3541 if (num)
3542 AppendNumberToRedobuff(num);
3543
3544 if (cmd1 != NUL)
3545 AppendCharToRedobuff(cmd1);
3546 if (cmd2 != NUL)
3547 AppendCharToRedobuff(cmd2);
3548 if (cmd3 != NUL)
3549 AppendCharToRedobuff(cmd3);
3550 if (cmd4 != NUL)
3551 AppendCharToRedobuff(cmd4);
3552 if (cmd5 != NUL)
3553 AppendCharToRedobuff(cmd5);
3554}
3555
3556/*
3557 * check for operator active and clear it
3558 *
3559 * return TRUE if operator was active
3560 */
3561 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003562checkclearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563{
3564 if (oap->op_type == OP_NOP)
3565 return FALSE;
3566 clearopbeep(oap);
3567 return TRUE;
3568}
3569
3570/*
Bram Moolenaarc980de32007-05-06 11:59:04 +00003571 * Check for operator or Visual active. Clear active operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 *
Bram Moolenaarc980de32007-05-06 11:59:04 +00003573 * Return TRUE if operator or Visual was active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 */
3575 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003576checkclearopq(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003578 if (oap->op_type == OP_NOP && !VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 return FALSE;
3580 clearopbeep(oap);
3581 return TRUE;
3582}
3583
3584 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003585clearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586{
3587 oap->op_type = OP_NOP;
3588 oap->regname = 0;
3589 oap->motion_force = NUL;
3590 oap->use_reg_one = FALSE;
3591}
3592
3593 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003594clearopbeep(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595{
3596 clearop(oap);
3597 beep_flush();
3598}
3599
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600/*
3601 * Remove the shift modifier from a special key.
3602 */
3603 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003604unshift_special(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605{
3606 switch (cap->cmdchar)
3607 {
3608 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
3609 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
3610 case K_S_UP: cap->cmdchar = K_UP; break;
3611 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
3612 case K_S_HOME: cap->cmdchar = K_HOME; break;
3613 case K_S_END: cap->cmdchar = K_END; break;
3614 }
3615 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
3616}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02003618/*
3619 * If the mode is currently displayed clear the command line or update the
3620 * command displayed.
3621 */
3622 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003623may_clear_cmdline(void)
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02003624{
3625 if (mode_displayed)
3626 clear_cmdline = TRUE; /* unshow visual mode later */
3627#ifdef FEAT_CMDL_INFO
3628 else
3629 clear_showcmd();
3630#endif
3631}
3632
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633#if defined(FEAT_CMDL_INFO) || defined(PROTO)
3634/*
3635 * Routines for displaying a partly typed command
3636 */
3637
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003638#define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639static char_u showcmd_buf[SHOWCMD_BUFLEN];
3640static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; /* For push_showcmd() */
3641static int showcmd_is_clear = TRUE;
3642static int showcmd_visual = FALSE;
3643
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003644static void display_showcmd(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645
3646 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003647clear_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648{
3649 if (!p_sc)
3650 return;
3651
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 if (VIsual_active && !char_avail())
3653 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003654 int cursor_bot = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 long lines;
3656 colnr_T leftcol, rightcol;
3657 linenr_T top, bot;
3658
3659 /* Show the size of the Visual area. */
Bram Moolenaar81d00072009-04-29 15:41:40 +00003660 if (cursor_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 {
3662 top = VIsual.lnum;
3663 bot = curwin->w_cursor.lnum;
3664 }
3665 else
3666 {
3667 top = curwin->w_cursor.lnum;
3668 bot = VIsual.lnum;
3669 }
3670# ifdef FEAT_FOLDING
3671 /* Include closed folds as a whole. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02003672 (void)hasFolding(top, &top, NULL);
3673 (void)hasFolding(bot, NULL, &bot);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674# endif
3675 lines = bot - top + 1;
3676
3677 if (VIsual_mode == Ctrl_V)
3678 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003679# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00003680 char_u *saved_sbr = p_sbr;
3681
3682 /* Make 'sbr' empty for a moment to get the correct size. */
3683 p_sbr = empty_option;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003684# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003686# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00003687 p_sbr = saved_sbr;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003688# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
3690 (long)(rightcol - leftcol + 1));
3691 }
3692 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
3693 sprintf((char *)showcmd_buf, "%ld", lines);
3694 else
Bram Moolenaarf91787c2010-07-17 12:47:16 +02003695 {
3696 char_u *s, *e;
3697 int l;
3698 int bytes = 0;
3699 int chars = 0;
3700
3701 if (cursor_bot)
3702 {
3703 s = ml_get_pos(&VIsual);
3704 e = ml_get_cursor();
3705 }
3706 else
3707 {
3708 s = ml_get_cursor();
3709 e = ml_get_pos(&VIsual);
3710 }
3711 while ((*p_sel != 'e') ? s <= e : s < e)
3712 {
3713 l = (*mb_ptr2len)(s);
3714 if (l == 0)
3715 {
3716 ++bytes;
3717 ++chars;
3718 break; /* end of line */
3719 }
3720 bytes += l;
3721 ++chars;
3722 s += l;
3723 }
3724 if (bytes == chars)
3725 sprintf((char *)showcmd_buf, "%d", chars);
3726 else
3727 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes);
3728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 showcmd_buf[SHOWCMD_COLS] = NUL; /* truncate */
3730 showcmd_visual = TRUE;
3731 }
3732 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 {
3734 showcmd_buf[0] = NUL;
3735 showcmd_visual = FALSE;
3736
3737 /* Don't actually display something if there is nothing to clear. */
3738 if (showcmd_is_clear)
3739 return;
3740 }
3741
3742 display_showcmd();
3743}
3744
3745/*
3746 * Add 'c' to string of shown command chars.
3747 * Return TRUE if output has been written (and setcursor() has been called).
3748 */
3749 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003750add_to_showcmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751{
3752 char_u *p;
3753 int old_len;
3754 int extra_len;
3755 int overflow;
3756#if defined(FEAT_MOUSE)
3757 int i;
3758 static int ignore[] =
3759 {
Bram Moolenaarcf0c5542006-02-09 23:48:02 +00003760# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
3762 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
Bram Moolenaarcf0c5542006-02-09 23:48:02 +00003763# endif
Bram Moolenaarec2da362017-01-21 20:04:22 +01003764 K_IGNORE, K_PS,
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003765 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
3767 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003768 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003770 K_CURSORHOLD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 0
3772 };
3773#endif
3774
Bram Moolenaar09df3122006-01-23 22:23:09 +00003775 if (!p_sc || msg_silent != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 return FALSE;
3777
3778 if (showcmd_visual)
3779 {
3780 showcmd_buf[0] = NUL;
3781 showcmd_visual = FALSE;
3782 }
3783
3784#if defined(FEAT_MOUSE)
3785 /* Ignore keys that are scrollbar updates and mouse clicks */
3786 if (IS_SPECIAL(c))
3787 for (i = 0; ignore[i] != 0; ++i)
3788 if (ignore[i] == c)
3789 return FALSE;
3790#endif
3791
3792 p = transchar(c);
Bram Moolenaar7ba07412013-12-11 14:55:01 +01003793 if (*p == ' ')
3794 STRCPY(p, "<20>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 old_len = (int)STRLEN(showcmd_buf);
3796 extra_len = (int)STRLEN(p);
3797 overflow = old_len + extra_len - SHOWCMD_COLS;
3798 if (overflow > 0)
Bram Moolenaarb0db5692007-08-14 20:54:49 +00003799 mch_memmove(showcmd_buf, showcmd_buf + overflow,
3800 old_len - overflow + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 STRCAT(showcmd_buf, p);
3802
3803 if (char_avail())
3804 return FALSE;
3805
3806 display_showcmd();
3807
3808 return TRUE;
3809}
3810
3811 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003812add_to_showcmd_c(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813{
3814 if (!add_to_showcmd(c))
3815 setcursor();
3816}
3817
3818/*
3819 * Delete 'len' characters from the end of the shown command.
3820 */
3821 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003822del_from_showcmd(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823{
3824 int old_len;
3825
3826 if (!p_sc)
3827 return;
3828
3829 old_len = (int)STRLEN(showcmd_buf);
3830 if (len > old_len)
3831 len = old_len;
3832 showcmd_buf[old_len - len] = NUL;
3833
3834 if (!char_avail())
3835 display_showcmd();
3836}
3837
3838/*
3839 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
3840 * something and there is a partial mapping.
3841 */
3842 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003843push_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844{
3845 if (p_sc)
3846 STRCPY(old_showcmd_buf, showcmd_buf);
3847}
3848
3849 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003850pop_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851{
3852 if (!p_sc)
3853 return;
3854
3855 STRCPY(showcmd_buf, old_showcmd_buf);
3856
3857 display_showcmd();
3858}
3859
3860 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003861display_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862{
3863 int len;
3864
3865 cursor_off();
3866
3867 len = (int)STRLEN(showcmd_buf);
3868 if (len == 0)
3869 showcmd_is_clear = TRUE;
3870 else
3871 {
3872 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
3873 showcmd_is_clear = FALSE;
3874 }
3875
3876 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00003877 * clear the rest of an old message by outputting up to SHOWCMD_COLS
3878 * spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 */
3880 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
3881
3882 setcursor(); /* put cursor back where it belongs */
3883}
3884#endif
3885
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886/*
3887 * When "check" is FALSE, prepare for commands that scroll the window.
3888 * When "check" is TRUE, take care of scroll-binding after the window has
3889 * scrolled. Called from normal_cmd() and edit().
3890 */
3891 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003892do_check_scrollbind(int check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893{
3894 static win_T *old_curwin = NULL;
3895 static linenr_T old_topline = 0;
3896#ifdef FEAT_DIFF
3897 static int old_topfill = 0;
3898#endif
3899 static buf_T *old_buf = NULL;
3900 static colnr_T old_leftcol = 0;
3901
3902 if (check && curwin->w_p_scb)
3903 {
3904 /* If a ":syncbind" command was just used, don't scroll, only reset
3905 * the values. */
3906 if (did_syncbind)
3907 did_syncbind = FALSE;
3908 else if (curwin == old_curwin)
3909 {
3910 /*
3911 * Synchronize other windows, as necessary according to
3912 * 'scrollbind'. Don't do this after an ":edit" command, except
3913 * when 'diff' is set.
3914 */
3915 if ((curwin->w_buffer == old_buf
3916#ifdef FEAT_DIFF
3917 || curwin->w_p_diff
3918#endif
3919 )
3920 && (curwin->w_topline != old_topline
3921#ifdef FEAT_DIFF
3922 || curwin->w_topfill != old_topfill
3923#endif
3924 || curwin->w_leftcol != old_leftcol))
3925 {
3926 check_scrollbind(curwin->w_topline - old_topline,
3927 (long)(curwin->w_leftcol - old_leftcol));
3928 }
3929 }
3930 else if (vim_strchr(p_sbo, 'j')) /* jump flag set in 'scrollopt' */
3931 {
3932 /*
3933 * When switching between windows, make sure that the relative
3934 * vertical offset is valid for the new window. The relative
3935 * offset is invalid whenever another 'scrollbind' window has
3936 * scrolled to a point that would force the current window to
3937 * scroll past the beginning or end of its buffer. When the
3938 * resync is performed, some of the other 'scrollbind' windows may
3939 * need to jump so that the current window's relative position is
3940 * visible on-screen.
3941 */
3942 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
3943 }
3944 curwin->w_scbind_pos = curwin->w_topline;
3945 }
3946
3947 old_curwin = curwin;
3948 old_topline = curwin->w_topline;
3949#ifdef FEAT_DIFF
3950 old_topfill = curwin->w_topfill;
3951#endif
3952 old_buf = curwin->w_buffer;
3953 old_leftcol = curwin->w_leftcol;
3954}
3955
3956/*
3957 * Synchronize any windows that have "scrollbind" set, based on the
3958 * number of rows by which the current window has changed
3959 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
3960 */
3961 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003962check_scrollbind(linenr_T topline_diff, long leftcol_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963{
3964 int want_ver;
3965 int want_hor;
3966 win_T *old_curwin = curwin;
3967 buf_T *old_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 int old_VIsual_select = VIsual_select;
3969 int old_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 colnr_T tgt_leftcol = curwin->w_leftcol;
3971 long topline;
3972 long y;
3973
3974 /*
3975 * check 'scrollopt' string for vertical and horizontal scroll options
3976 */
3977 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
3978#ifdef FEAT_DIFF
3979 want_ver |= old_curwin->w_p_diff;
3980#endif
3981 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
3982
3983 /*
3984 * loop through the scrollbound windows and scroll accordingly
3985 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02003987 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 {
3989 curbuf = curwin->w_buffer;
3990 /* skip original window and windows with 'noscrollbind' */
3991 if (curwin != old_curwin && curwin->w_p_scb)
3992 {
3993 /*
3994 * do the vertical scroll
3995 */
3996 if (want_ver)
3997 {
3998#ifdef FEAT_DIFF
3999 if (old_curwin->w_p_diff && curwin->w_p_diff)
4000 {
4001 diff_set_topline(old_curwin, curwin);
4002 }
4003 else
4004#endif
4005 {
4006 curwin->w_scbind_pos += topline_diff;
4007 topline = curwin->w_scbind_pos;
4008 if (topline > curbuf->b_ml.ml_line_count)
4009 topline = curbuf->b_ml.ml_line_count;
4010 if (topline < 1)
4011 topline = 1;
4012
4013 y = topline - curwin->w_topline;
4014 if (y > 0)
4015 scrollup(y, FALSE);
4016 else
4017 scrolldown(-y, FALSE);
4018 }
4019
4020 redraw_later(VALID);
4021 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 }
4024
4025 /*
4026 * do the horizontal scroll
4027 */
4028 if (want_hor && curwin->w_leftcol != tgt_leftcol)
4029 {
4030 curwin->w_leftcol = tgt_leftcol;
4031 leftcol_changed();
4032 }
4033 }
4034 }
4035
4036 /*
4037 * reset current-window
4038 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 VIsual_select = old_VIsual_select;
4040 VIsual_active = old_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 curwin = old_curwin;
4042 curbuf = old_curbuf;
4043}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044
4045/*
4046 * Command character that's ignored.
4047 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02004048 * xon/xoff.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004051nv_ignore(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052{
Bram Moolenaarfc735152005-03-22 22:54:12 +00004053 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054}
4055
4056/*
Bram Moolenaarebefac62005-12-28 22:39:57 +00004057 * Command character that doesn't do anything, but unlike nv_ignore() does
4058 * start edit(). Used for "startinsert" executed while starting up.
4059 */
Bram Moolenaarebefac62005-12-28 22:39:57 +00004060 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004061nv_nop(cmdarg_T *cap UNUSED)
Bram Moolenaarebefac62005-12-28 22:39:57 +00004062{
4063}
4064
4065/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 * Command character doesn't exist.
4067 */
4068 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004069nv_error(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070{
4071 clearopbeep(cap->oap);
4072}
4073
4074/*
4075 * <Help> and <F1> commands.
4076 */
4077 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004078nv_help(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079{
4080 if (!checkclearopq(cap->oap))
4081 ex_help(NULL);
4082}
4083
4084/*
4085 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
4086 */
4087 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004088nv_addsub(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089{
Bram Moolenaarf2732452018-06-03 14:47:35 +02004090#ifdef FEAT_JOB_CHANNEL
4091 if (bt_prompt(curbuf) && !prompt_curpos_editable())
4092 clearopbeep(cap->oap);
4093 else
4094#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01004095 if (!VIsual_active && cap->oap->op_type == OP_NOP)
Bram Moolenaar9bb19302015-07-03 12:44:07 +02004096 {
Bram Moolenaaref2b5032016-01-12 22:20:58 +01004097 prep_redo_cmd(cap);
Bram Moolenaard79e5502016-01-10 22:13:02 +01004098 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB;
4099 op_addsub(cap->oap, cap->count1, cap->arg);
4100 cap->oap->op_type = OP_NOP;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02004101 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01004102 else if (VIsual_active)
4103 nv_operator(cap);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02004104 else
Bram Moolenaard79e5502016-01-10 22:13:02 +01004105 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106}
4107
4108/*
4109 * CTRL-F, CTRL-B, etc: Scroll page up or down.
4110 */
4111 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004112nv_page(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113{
4114 if (!checkclearop(cap->oap))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004115 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004116 if (mod_mask & MOD_MASK_CTRL)
4117 {
4118 /* <C-PageUp>: tab page back; <C-PageDown>: tab page forward */
4119 if (cap->arg == BACKWARD)
4120 goto_tabpage(-(int)cap->count1);
4121 else
4122 goto_tabpage((int)cap->count0);
4123 }
4124 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02004125 (void)onepage(cap->arg, cap->count1);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004126 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127}
4128
4129/*
4130 * Implementation of "gd" and "gD" command.
4131 */
4132 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004133nv_gd(
4134 oparg_T *oap,
4135 int nchar,
4136 int thisblock) /* 1 for "1gd" and "1gD" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137{
4138 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 char_u *ptr;
4140
Bram Moolenaard9d30582005-05-18 22:10:28 +00004141 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
Bram Moolenaar1538fc32016-04-16 09:13:34 +02004142 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)
4143 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 clearopbeep(oap);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004145#ifdef FEAT_FOLDING
4146 else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
4147 foldOpenCursor();
4148#endif
4149}
4150
4151/*
Bram Moolenaar226630a2016-10-08 19:21:31 +02004152 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE
4153 * otherwise.
4154 */
4155 static int
4156is_ident(char_u *line, int offset)
4157{
4158 int i;
4159 int incomment = FALSE;
4160 int instring = 0;
4161 int prev = 0;
4162
4163 for (i = 0; i < offset && line[i] != NUL; i++)
4164 {
4165 if (instring != 0)
4166 {
4167 if (prev != '\\' && line[i] == instring)
4168 instring = 0;
4169 }
4170 else if ((line[i] == '"' || line[i] == '\'') && !incomment)
4171 {
4172 instring = line[i];
4173 }
4174 else
4175 {
4176 if (incomment)
4177 {
4178 if (prev == '*' && line[i] == '/')
4179 incomment = FALSE;
4180 }
4181 else if (prev == '/' && line[i] == '*')
4182 {
4183 incomment = TRUE;
4184 }
4185 else if (prev == '/' && line[i] == '/')
4186 {
4187 return FALSE;
4188 }
4189 }
4190
4191 prev = line[i];
4192 }
4193
4194 return incomment == FALSE && instring == 0;
4195}
4196
4197/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004198 * Search for variable declaration of "ptr[len]".
4199 * When "locally" is TRUE in the current function ("gd"), otherwise in the
4200 * current file ("gD").
4201 * When "thisblock" is TRUE check the {} block scope.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004202 * Return FAIL when not found.
4203 */
4204 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004205find_decl(
4206 char_u *ptr,
4207 int len,
4208 int locally,
4209 int thisblock,
Bram Moolenaar23c60f22016-06-15 22:03:48 +02004210 int flags_arg) /* flags passed to searchit() */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004211{
4212 char_u *pat;
4213 pos_T old_pos;
4214 pos_T par_pos;
4215 pos_T found_pos;
4216 int t;
4217 int save_p_ws;
4218 int save_p_scs;
4219 int retval = OK;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004220 int incll;
Bram Moolenaar23c60f22016-06-15 22:03:48 +02004221 int searchflags = flags_arg;
Bram Moolenaar226630a2016-10-08 19:21:31 +02004222 int valid;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004223
4224 if ((pat = alloc(len + 7)) == NULL)
4225 return FAIL;
Bram Moolenaard9d30582005-05-18 22:10:28 +00004226
4227 /* Put "\V" before the pattern to avoid that the special meaning of "."
4228 * and "~" causes trouble. */
4229 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
4230 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 old_pos = curwin->w_cursor;
4232 save_p_ws = p_ws;
4233 save_p_scs = p_scs;
4234 p_ws = FALSE; /* don't wrap around end of file now */
4235 p_scs = FALSE; /* don't switch ignorecase off now */
4236
4237 /*
4238 * With "gD" go to line 1.
4239 * With "gd" Search back for the start of the current function, then go
4240 * back until a blank line. If this fails go to line 1.
4241 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00004242 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 {
4244 setpcmark(); /* Set in findpar() otherwise */
4245 curwin->w_cursor.lnum = 1;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00004246 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 }
4248 else
4249 {
Bram Moolenaarbb15b652005-10-03 21:52:09 +00004250 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
4252 --curwin->w_cursor.lnum;
4253 }
4254 curwin->w_cursor.col = 0;
4255
4256 /* Search forward for the identifier, ignore comment lines. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004257 CLEAR_POS(&found_pos);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004258 for (;;)
4259 {
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004260 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004261 pat, 1L, searchflags, RE_LAST, (linenr_T)0, NULL, NULL);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004262 if (curwin->w_cursor.lnum >= old_pos.lnum)
4263 t = FAIL; /* match after start is failure too */
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004264
Bram Moolenaar0fd92892006-03-09 22:27:48 +00004265 if (thisblock && t != FAIL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004266 {
4267 pos_T *pos;
4268
4269 /* Check that the block the match is in doesn't end before the
4270 * position where we started the search from. */
4271 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
4272 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
4273 && pos->lnum < old_pos.lnum)
Bram Moolenaar60402d62017-04-20 18:54:50 +02004274 {
4275 /* There can't be a useful match before the end of this block.
4276 * Skip to the end. */
4277 curwin->w_cursor = *pos;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004278 continue;
Bram Moolenaar60402d62017-04-20 18:54:50 +02004279 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004280 }
4281
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004282 if (t == FAIL)
4283 {
4284 /* If we previously found a valid position, use it. */
4285 if (found_pos.lnum != 0)
4286 {
4287 curwin->w_cursor = found_pos;
4288 t = OK;
4289 }
4290 break;
4291 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292#ifdef FEAT_COMMENTS
Bram Moolenaar81340392012-06-06 16:12:59 +02004293 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004294 {
4295 /* Ignore this line, continue at start of next line. */
4296 ++curwin->w_cursor.lnum;
4297 curwin->w_cursor.col = 0;
4298 continue;
4299 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300#endif
Bram Moolenaar226630a2016-10-08 19:21:31 +02004301 valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
4302
4303 /* If the current position is not a valid identifier and a previous
4304 * match is present, favor that one instead. */
4305 if (!valid && found_pos.lnum != 0)
4306 {
4307 curwin->w_cursor = found_pos;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004308 break;
Bram Moolenaar226630a2016-10-08 19:21:31 +02004309 }
4310
4311 /* Global search: use first valid match found */
4312 if (valid && !locally)
4313 break;
4314 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004315 {
4316 /* If we previously found a valid position, use it. */
4317 if (found_pos.lnum != 0)
4318 curwin->w_cursor = found_pos;
4319 break;
4320 }
4321
Bram Moolenaar226630a2016-10-08 19:21:31 +02004322 /* For finding a local variable and the match is before the "{" or
4323 * inside a comment, continue searching. For K&R style function
4324 * declarations this skips the function header without types. */
4325 if (!valid)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004326 CLEAR_POS(&found_pos);
Bram Moolenaar226630a2016-10-08 19:21:31 +02004327 else
Bram Moolenaar226630a2016-10-08 19:21:31 +02004328 found_pos = curwin->w_cursor;
Bram Moolenaar226630a2016-10-08 19:21:31 +02004329 /* Remove SEARCH_START from flags to avoid getting stuck at one
4330 * position. */
Bram Moolenaar23c60f22016-06-15 22:03:48 +02004331 searchflags &= ~SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004333
4334 if (t == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004336 retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 curwin->w_cursor = old_pos;
4338 }
4339 else
4340 {
4341 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342 /* "n" searches forward now */
4343 reset_search_dir();
4344 }
4345
4346 vim_free(pat);
4347 p_ws = save_p_ws;
4348 p_scs = save_p_scs;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004349
4350 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351}
4352
4353/*
4354 * Move 'dist' lines in direction 'dir', counting lines by *screen*
4355 * lines rather than lines in the file.
4356 * 'dist' must be positive.
4357 *
4358 * Return OK if able to move cursor, FAIL otherwise.
4359 */
4360 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004361nv_screengo(oparg_T *oap, int dir, long dist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362{
4363 int linelen = linetabsize(ml_get_curline());
4364 int retval = OK;
4365 int atend = FALSE;
4366 int n;
4367 int col_off1; /* margin offset for first screen line */
4368 int col_off2; /* margin offset for wrapped screen line */
4369 int width1; /* text width for first screen line */
4370 int width2; /* test width for wrapped screen line */
4371
4372 oap->motion_type = MCHAR;
Bram Moolenaar91b2bdb2013-07-14 13:32:15 +02004373 oap->inclusive = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374
4375 col_off1 = curwin_col_off();
4376 col_off2 = col_off1 - curwin_col_off2();
Bram Moolenaar02631462017-09-22 15:20:32 +02004377 width1 = curwin->w_width - col_off1;
4378 width2 = curwin->w_width - col_off2;
Bram Moolenaar7cc8ec42015-01-27 20:59:31 +01004379 if (width2 == 0)
4380 width2 = 1; /* avoid divide by zero */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 if (curwin->w_width != 0)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004383 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 /*
4385 * Instead of sticking at the last character of the buffer line we
4386 * try to stick in the last column of the screen.
4387 */
4388 if (curwin->w_curswant == MAXCOL)
4389 {
4390 atend = TRUE;
4391 validate_virtcol();
4392 if (width1 <= 0)
4393 curwin->w_curswant = 0;
4394 else
4395 {
4396 curwin->w_curswant = width1 - 1;
4397 if (curwin->w_virtcol > curwin->w_curswant)
4398 curwin->w_curswant += ((curwin->w_virtcol
4399 - curwin->w_curswant - 1) / width2 + 1) * width2;
4400 }
4401 }
4402 else
4403 {
4404 if (linelen > width1)
4405 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4406 else
4407 n = width1;
4408 if (curwin->w_curswant > (colnr_T)n + 1)
4409 curwin->w_curswant -= ((curwin->w_curswant - n) / width2 + 1)
4410 * width2;
4411 }
4412
4413 while (dist--)
4414 {
4415 if (dir == BACKWARD)
4416 {
4417 if ((long)curwin->w_curswant >= width2)
4418 /* move back within line */
4419 curwin->w_curswant -= width2;
4420 else
4421 {
4422 /* to previous line */
4423 if (curwin->w_cursor.lnum == 1)
4424 {
4425 retval = FAIL;
4426 break;
4427 }
4428 --curwin->w_cursor.lnum;
4429#ifdef FEAT_FOLDING
4430 /* Move to the start of a closed fold. Don't do that when
4431 * 'foldopen' contains "all": it will open in a moment. */
4432 if (!(fdo_flags & FDO_ALL))
4433 (void)hasFolding(curwin->w_cursor.lnum,
4434 &curwin->w_cursor.lnum, NULL);
4435#endif
4436 linelen = linetabsize(ml_get_curline());
4437 if (linelen > width1)
4438 curwin->w_curswant += (((linelen - width1 - 1) / width2)
4439 + 1) * width2;
4440 }
4441 }
4442 else /* dir == FORWARD */
4443 {
4444 if (linelen > width1)
4445 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4446 else
4447 n = width1;
4448 if (curwin->w_curswant + width2 < (colnr_T)n)
4449 /* move forward within line */
4450 curwin->w_curswant += width2;
4451 else
4452 {
4453 /* to next line */
4454#ifdef FEAT_FOLDING
4455 /* Move to the end of a closed fold. */
4456 (void)hasFolding(curwin->w_cursor.lnum, NULL,
4457 &curwin->w_cursor.lnum);
4458#endif
4459 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4460 {
4461 retval = FAIL;
4462 break;
4463 }
4464 curwin->w_cursor.lnum++;
4465 curwin->w_curswant %= width2;
Bram Moolenaar914968e2011-06-20 00:45:58 +02004466 linelen = linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 }
4468 }
4469 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471
Bram Moolenaar6cd3aee2014-01-14 13:18:58 +01004472 if (virtual_active() && atend)
4473 coladvance(MAXCOL);
4474 else
4475 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
4478 {
Bram Moolenaar773b1582014-08-29 14:20:51 +02004479 colnr_T virtcol;
4480
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 /*
4482 * Check for landing on a character that got split at the end of the
4483 * last line. We want to advance a screenline, not end up in the same
4484 * screenline or move two screenlines.
4485 */
4486 validate_virtcol();
Bram Moolenaar773b1582014-08-29 14:20:51 +02004487 virtcol = curwin->w_virtcol;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004488#if defined(FEAT_LINEBREAK)
Bram Moolenaar773b1582014-08-29 14:20:51 +02004489 if (virtcol > (colnr_T)width1 && *p_sbr != NUL)
4490 virtcol -= vim_strsize(p_sbr);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004491#endif
Bram Moolenaar773b1582014-08-29 14:20:51 +02004492
4493 if (virtcol > curwin->w_curswant
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 && (curwin->w_curswant < (colnr_T)width1
4495 ? (curwin->w_curswant > (colnr_T)width1 / 2)
4496 : ((curwin->w_curswant - width1) % width2
4497 > (colnr_T)width2 / 2)))
4498 --curwin->w_cursor.col;
4499 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500
4501 if (atend)
4502 curwin->w_curswant = MAXCOL; /* stick in the last column */
4503
4504 return retval;
4505}
4506
4507#ifdef FEAT_MOUSE
4508/*
4509 * Mouse scroll wheel: Default action is to scroll three lines, or one page
4510 * when Shift or Ctrl is used.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004511 * K_MOUSEUP (cap->arg == 1) or K_MOUSEDOWN (cap->arg == 0) or
4512 * K_MOUSELEFT (cap->arg == -1) or K_MOUSERIGHT (cap->arg == -2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 */
4514 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004515nv_mousescroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516{
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004517 win_T *old_curwin = curwin, *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518
Bram Moolenaar40cf4b42013-02-26 13:30:32 +01004519 if (mouse_row >= 0 && mouse_col >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 {
4521 int row, col;
4522
4523 row = mouse_row;
4524 col = mouse_col;
4525
4526 /* find the window at the pointer coordinates */
Bram Moolenaar68acb412019-06-26 03:40:36 +02004527 wp = mouse_find_win(&row, &col, FIND_POPUP);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004528 if (wp == NULL)
4529 return;
Bram Moolenaar68acb412019-06-26 03:40:36 +02004530#ifdef FEAT_TEXT_PROP
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +02004531 if (WIN_IS_POPUP(wp) && !wp->w_has_scrollbar)
Bram Moolenaar68acb412019-06-26 03:40:36 +02004532 return;
4533#endif
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004534 curwin = wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 curbuf = curwin->w_buffer;
4536 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004538 if (cap->arg == MSCR_UP || cap->arg == MSCR_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 {
Bram Moolenaar98fd66d2017-08-05 19:34:47 +02004540# ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02004541 if (term_use_loop())
Bram Moolenaar73675fb2017-11-20 21:49:19 +01004542 /* This window is a terminal window, send the mouse event there.
4543 * Set "typed" to FALSE to avoid an endless loop. */
4544 send_keys_to_term(curbuf->b_term, cap->cmdchar, FALSE);
Bram Moolenaar98fd66d2017-08-05 19:34:47 +02004545 else
4546# endif
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004547 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4548 {
4549 (void)onepage(cap->arg ? FORWARD : BACKWARD, 1L);
4550 }
4551 else
4552 {
Bram Moolenaar68acb412019-06-26 03:40:36 +02004553 // Don't scroll more than half the window height.
4554 if (curwin->w_height < 6)
4555 {
4556 cap->count1 = curwin->w_height / 2;
4557 if (cap->count1 == 0)
4558 cap->count1 = 1;
4559 }
4560 else
4561 cap->count1 = 3;
4562 cap->count0 = cap->count1;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004563 nv_scroll_line(cap);
4564 }
Bram Moolenaar68acb412019-06-26 03:40:36 +02004565#ifdef FEAT_TEXT_PROP
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +02004566 if (WIN_IS_POPUP(curwin))
Bram Moolenaarf9c85f52019-06-29 07:41:35 +02004567 popup_set_firstline(curwin);
Bram Moolenaar68acb412019-06-26 03:40:36 +02004568#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 }
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004570# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 else
4572 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004573 /* Horizontal scroll - only allowed when 'wrap' is disabled */
4574 if (!curwin->w_p_wrap)
4575 {
4576 int val, step = 6;
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004577
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004578 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
Bram Moolenaar02631462017-09-22 15:20:32 +02004579 step = curwin->w_width;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004580 val = curwin->w_leftcol + (cap->arg == MSCR_RIGHT ? -step : +step);
4581 if (val < 0)
4582 val = 0;
4583
4584 gui_do_horiz_scroll(val, TRUE);
4585 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 }
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004587# endif
Bram Moolenaarbbb5f8d2019-01-31 13:22:32 +01004588# ifdef FEAT_SYN_HL
4589 if (curwin != old_curwin && curwin->w_p_cul)
4590 redraw_for_cursorline(curwin);
4591# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 curwin->w_redr_status = TRUE;
4594
4595 curwin = old_curwin;
4596 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597}
4598
4599/*
4600 * Mouse clicks and drags.
4601 */
4602 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004603nv_mouse(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604{
4605 (void)do_mouse(cap->oap, cap->cmdchar, BACKWARD, cap->count1, 0);
4606}
4607#endif
4608
4609/*
4610 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
4611 * cap->arg must be TRUE for CTRL-E.
4612 */
4613 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004614nv_scroll_line(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615{
4616 if (!checkclearop(cap->oap))
4617 scroll_redraw(cap->arg, cap->count1);
4618}
4619
4620/*
4621 * Scroll "count" lines up or down, and redraw.
4622 */
4623 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004624scroll_redraw(int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625{
4626 linenr_T prev_topline = curwin->w_topline;
4627#ifdef FEAT_DIFF
4628 int prev_topfill = curwin->w_topfill;
4629#endif
4630 linenr_T prev_lnum = curwin->w_cursor.lnum;
4631
4632 if (up)
4633 scrollup(count, TRUE);
4634 else
4635 scrolldown(count, TRUE);
Bram Moolenaar375e3392019-01-31 18:26:10 +01004636 if (get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 {
4638 /* Adjust the cursor position for 'scrolloff'. Mark w_topline as
4639 * valid, otherwise the screen jumps back at the end of the file. */
4640 cursor_correct();
4641 check_cursor_moved(curwin);
4642 curwin->w_valid |= VALID_TOPLINE;
4643
4644 /* If moved back to where we were, at least move the cursor, otherwise
4645 * we get stuck at one position. Don't move the cursor up if the
4646 * first line of the buffer is already on the screen */
4647 while (curwin->w_topline == prev_topline
4648#ifdef FEAT_DIFF
4649 && curwin->w_topfill == prev_topfill
4650#endif
4651 )
4652 {
4653 if (up)
4654 {
4655 if (curwin->w_cursor.lnum > prev_lnum
4656 || cursor_down(1L, FALSE) == FAIL)
4657 break;
4658 }
4659 else
4660 {
4661 if (curwin->w_cursor.lnum < prev_lnum
4662 || prev_topline == 1L
4663 || cursor_up(1L, FALSE) == FAIL)
4664 break;
4665 }
4666 /* Mark w_topline as valid, otherwise the screen jumps back at the
4667 * end of the file. */
4668 check_cursor_moved(curwin);
4669 curwin->w_valid |= VALID_TOPLINE;
4670 }
4671 }
4672 if (curwin->w_cursor.lnum != prev_lnum)
4673 coladvance(curwin->w_curswant);
4674 redraw_later(VALID);
4675}
4676
4677/*
4678 * Commands that start with "z".
4679 */
4680 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004681nv_zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682{
4683 long n;
4684 colnr_T col;
4685 int nchar = cap->nchar;
4686#ifdef FEAT_FOLDING
4687 long old_fdl = curwin->w_p_fdl;
4688 int old_fen = curwin->w_p_fen;
4689#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00004690#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00004691 int undo = FALSE;
4692#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +01004693 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694
4695 if (VIM_ISDIGIT(nchar))
4696 {
4697 /*
4698 * "z123{nchar}": edit the count before obtaining {nchar}
4699 */
4700 if (checkclearop(cap->oap))
4701 return;
4702 n = nchar - '0';
4703 for (;;)
4704 {
4705#ifdef USE_ON_FLY_SCROLL
4706 dont_scroll = TRUE; /* disallow scrolling here */
4707#endif
4708 ++no_mapping;
4709 ++allow_keys; /* no mapping for nchar, but allow key codes */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00004710 nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712 --no_mapping;
4713 --allow_keys;
4714#ifdef FEAT_CMDL_INFO
4715 (void)add_to_showcmd(nchar);
4716#endif
4717 if (nchar == K_DEL || nchar == K_KDEL)
4718 n /= 10;
4719 else if (VIM_ISDIGIT(nchar))
4720 n = n * 10 + (nchar - '0');
4721 else if (nchar == CAR)
4722 {
4723#ifdef FEAT_GUI
4724 need_mouse_correct = TRUE;
4725#endif
4726 win_setheight((int)n);
4727 break;
4728 }
4729 else if (nchar == 'l'
4730 || nchar == 'h'
4731 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00004732 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 {
4734 cap->count1 = n ? n * cap->count1 : cap->count1;
4735 goto dozet;
4736 }
4737 else
4738 {
4739 clearopbeep(cap->oap);
4740 break;
4741 }
4742 }
4743 cap->oap->op_type = OP_NOP;
4744 return;
4745 }
4746
4747dozet:
4748 if (
4749#ifdef FEAT_FOLDING
4750 /* "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
4751 * and "zC" only in Visual mode. "zj" and "zk" are motion
4752 * commands. */
4753 cap->nchar != 'f' && cap->nchar != 'F'
4754 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
4755 && cap->nchar != 'j' && cap->nchar != 'k'
4756 &&
4757#endif
4758 checkclearop(cap->oap))
4759 return;
4760
4761 /*
4762 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
4763 * If line number given, set cursor.
4764 */
4765 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
4766 && cap->count0
4767 && cap->count0 != curwin->w_cursor.lnum)
4768 {
4769 setpcmark();
4770 if (cap->count0 > curbuf->b_ml.ml_line_count)
4771 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4772 else
4773 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004774 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 }
4776
4777 switch (nchar)
4778 {
4779 /* "z+", "z<CR>" and "zt": put cursor at top of screen */
4780 case '+':
4781 if (cap->count0 == 0)
4782 {
4783 /* No count given: put cursor at the line below screen */
4784 validate_botline(); /* make sure w_botline is valid */
4785 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
4786 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4787 else
4788 curwin->w_cursor.lnum = curwin->w_botline;
4789 }
4790 /* FALLTHROUGH */
4791 case NL:
4792 case CAR:
4793 case K_KENTER:
4794 beginline(BL_WHITE | BL_FIX);
4795 /* FALLTHROUGH */
4796
4797 case 't': scroll_cursor_top(0, TRUE);
4798 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01004799 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800 break;
4801
4802 /* "z." and "zz": put cursor in middle of screen */
4803 case '.': beginline(BL_WHITE | BL_FIX);
4804 /* FALLTHROUGH */
4805
4806 case 'z': scroll_cursor_halfway(TRUE);
4807 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01004808 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 break;
4810
4811 /* "z^", "z-" and "zb": put cursor at bottom of screen */
4812 case '^': /* Strange Vi behavior: <count>z^ finds line at top of window
4813 * when <count> is at bottom of window, and puts that one at
4814 * bottom of window. */
4815 if (cap->count0 != 0)
4816 {
4817 scroll_cursor_bot(0, TRUE);
4818 curwin->w_cursor.lnum = curwin->w_topline;
4819 }
4820 else if (curwin->w_topline == 1)
4821 curwin->w_cursor.lnum = 1;
4822 else
4823 curwin->w_cursor.lnum = curwin->w_topline - 1;
4824 /* FALLTHROUGH */
4825 case '-':
4826 beginline(BL_WHITE | BL_FIX);
4827 /* FALLTHROUGH */
4828
4829 case 'b': scroll_cursor_bot(0, TRUE);
4830 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01004831 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 break;
4833
4834 /* "zH" - scroll screen right half-page */
4835 case 'H':
Bram Moolenaar02631462017-09-22 15:20:32 +02004836 cap->count1 *= curwin->w_width / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837 /* FALLTHROUGH */
4838
4839 /* "zh" - scroll screen to the right */
4840 case 'h':
4841 case K_LEFT:
4842 if (!curwin->w_p_wrap)
4843 {
4844 if ((colnr_T)cap->count1 > curwin->w_leftcol)
4845 curwin->w_leftcol = 0;
4846 else
4847 curwin->w_leftcol -= (colnr_T)cap->count1;
4848 leftcol_changed();
4849 }
4850 break;
4851
4852 /* "zL" - scroll screen left half-page */
Bram Moolenaar02631462017-09-22 15:20:32 +02004853 case 'L': cap->count1 *= curwin->w_width / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 /* FALLTHROUGH */
4855
4856 /* "zl" - scroll screen to the left */
4857 case 'l':
4858 case K_RIGHT:
4859 if (!curwin->w_p_wrap)
4860 {
4861 /* scroll the window left */
4862 curwin->w_leftcol += (colnr_T)cap->count1;
4863 leftcol_changed();
4864 }
4865 break;
4866
4867 /* "zs" - scroll screen, cursor at the start */
4868 case 's': if (!curwin->w_p_wrap)
4869 {
4870#ifdef FEAT_FOLDING
4871 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4872 col = 0; /* like the cursor is in col 0 */
4873 else
4874#endif
4875 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
Bram Moolenaar375e3392019-01-31 18:26:10 +01004876 if ((long)col > siso)
4877 col -= siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 else
4879 col = 0;
4880 if (curwin->w_leftcol != col)
4881 {
4882 curwin->w_leftcol = col;
4883 redraw_later(NOT_VALID);
4884 }
4885 }
4886 break;
4887
4888 /* "ze" - scroll screen, cursor at the end */
4889 case 'e': if (!curwin->w_p_wrap)
4890 {
4891#ifdef FEAT_FOLDING
4892 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4893 col = 0; /* like the cursor is in col 0 */
4894 else
4895#endif
4896 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
Bram Moolenaar02631462017-09-22 15:20:32 +02004897 n = curwin->w_width - curwin_col_off();
Bram Moolenaar375e3392019-01-31 18:26:10 +01004898 if ((long)col + siso < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 col = 0;
4900 else
Bram Moolenaar375e3392019-01-31 18:26:10 +01004901 col = col + siso - n + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902 if (curwin->w_leftcol != col)
4903 {
4904 curwin->w_leftcol = col;
4905 redraw_later(NOT_VALID);
4906 }
4907 }
4908 break;
4909
4910#ifdef FEAT_FOLDING
4911 /* "zF": create fold command */
4912 /* "zf": create fold operator */
4913 case 'F':
4914 case 'f': if (foldManualAllowed(TRUE))
4915 {
4916 cap->nchar = 'f';
4917 nv_operator(cap);
4918 curwin->w_p_fen = TRUE;
4919
4920 /* "zF" is like "zfzf" */
4921 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
4922 {
4923 nv_operator(cap);
4924 finish_op = TRUE;
4925 }
4926 }
4927 else
4928 clearopbeep(cap->oap);
4929 break;
4930
4931 /* "zd": delete fold at cursor */
4932 /* "zD": delete fold at cursor recursively */
4933 case 'd':
4934 case 'D': if (foldManualAllowed(FALSE))
4935 {
4936 if (VIsual_active)
4937 nv_operator(cap);
4938 else
4939 deleteFold(curwin->w_cursor.lnum,
4940 curwin->w_cursor.lnum, nchar == 'D', FALSE);
4941 }
4942 break;
4943
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02004944 /* "zE": erase all folds */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 case 'E': if (foldmethodIsManual(curwin))
4946 {
4947 clearFolding(curwin);
4948 changed_window_setting();
4949 }
4950 else if (foldmethodIsMarker(curwin))
4951 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
4952 TRUE, FALSE);
4953 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004954 emsg(_("E352: Cannot erase folds with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 break;
4956
4957 /* "zn": fold none: reset 'foldenable' */
4958 case 'n': curwin->w_p_fen = FALSE;
4959 break;
4960
4961 /* "zN": fold Normal: set 'foldenable' */
4962 case 'N': curwin->w_p_fen = TRUE;
4963 break;
4964
4965 /* "zi": invert folding: toggle 'foldenable' */
4966 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
4967 break;
4968
4969 /* "za": open closed fold or close open fold at cursor */
4970 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4971 openFold(curwin->w_cursor.lnum, cap->count1);
4972 else
4973 {
4974 closeFold(curwin->w_cursor.lnum, cap->count1);
4975 curwin->w_p_fen = TRUE;
4976 }
4977 break;
4978
4979 /* "zA": open fold at cursor recursively */
4980 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4981 openFoldRecurse(curwin->w_cursor.lnum);
4982 else
4983 {
4984 closeFoldRecurse(curwin->w_cursor.lnum);
4985 curwin->w_p_fen = TRUE;
4986 }
4987 break;
4988
4989 /* "zo": open fold at cursor or Visual area */
4990 case 'o': if (VIsual_active)
4991 nv_operator(cap);
4992 else
4993 openFold(curwin->w_cursor.lnum, cap->count1);
4994 break;
4995
4996 /* "zO": open fold recursively */
4997 case 'O': if (VIsual_active)
4998 nv_operator(cap);
4999 else
5000 openFoldRecurse(curwin->w_cursor.lnum);
5001 break;
5002
5003 /* "zc": close fold at cursor or Visual area */
5004 case 'c': if (VIsual_active)
5005 nv_operator(cap);
5006 else
5007 closeFold(curwin->w_cursor.lnum, cap->count1);
5008 curwin->w_p_fen = TRUE;
5009 break;
5010
5011 /* "zC": close fold recursively */
5012 case 'C': if (VIsual_active)
5013 nv_operator(cap);
5014 else
5015 closeFoldRecurse(curwin->w_cursor.lnum);
5016 curwin->w_p_fen = TRUE;
5017 break;
5018
5019 /* "zv": open folds at the cursor */
5020 case 'v': foldOpenCursor();
5021 break;
5022
5023 /* "zx": re-apply 'foldlevel' and open folds at the cursor */
5024 case 'x': curwin->w_p_fen = TRUE;
Bram Moolenaar38ab0e22010-05-13 17:35:59 +02005025 curwin->w_foldinvalid = TRUE; /* recompute folds */
5026 newFoldLevel(); /* update right now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 foldOpenCursor();
5028 break;
5029
5030 /* "zX": undo manual opens/closes, re-apply 'foldlevel' */
5031 case 'X': curwin->w_p_fen = TRUE;
Bram Moolenaar38ab0e22010-05-13 17:35:59 +02005032 curwin->w_foldinvalid = TRUE; /* recompute folds */
5033 old_fdl = -1; /* force an update */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 break;
5035
5036 /* "zm": fold more */
5037 case 'm': if (curwin->w_p_fdl > 0)
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02005038 {
5039 curwin->w_p_fdl -= cap->count1;
5040 if (curwin->w_p_fdl < 0)
5041 curwin->w_p_fdl = 0;
5042 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 old_fdl = -1; /* force an update */
5044 curwin->w_p_fen = TRUE;
5045 break;
5046
5047 /* "zM": close all folds */
5048 case 'M': curwin->w_p_fdl = 0;
5049 old_fdl = -1; /* force an update */
5050 curwin->w_p_fen = TRUE;
5051 break;
5052
5053 /* "zr": reduce folding */
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02005054 case 'r': curwin->w_p_fdl += cap->count1;
5055 {
5056 int d = getDeepestNesting();
5057
5058 if (curwin->w_p_fdl >= d)
5059 curwin->w_p_fdl = d;
5060 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 break;
5062
5063 /* "zR": open all folds */
5064 case 'R': curwin->w_p_fdl = getDeepestNesting();
5065 old_fdl = -1; /* force an update */
5066 break;
5067
5068 case 'j': /* "zj" move to next fold downwards */
5069 case 'k': /* "zk" move to next fold upwards */
5070 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
5071 cap->count1) == FAIL)
5072 clearopbeep(cap->oap);
5073 break;
5074
5075#endif /* FEAT_FOLDING */
5076
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005077#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00005078 case 'u': /* "zug" and "zuw": undo "zg" and "zw" */
5079 ++no_mapping;
5080 ++allow_keys; /* no mapping for nchar, but allow key codes */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005081 nchar = plain_vgetc();
Bram Moolenaard0131a82006-03-04 21:46:13 +00005082 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaard0131a82006-03-04 21:46:13 +00005083 --no_mapping;
5084 --allow_keys;
5085#ifdef FEAT_CMDL_INFO
5086 (void)add_to_showcmd(nchar);
5087#endif
5088 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
5089 {
5090 clearopbeep(cap->oap);
5091 break;
5092 }
5093 undo = TRUE;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02005094 /* FALLTHROUGH */
Bram Moolenaard0131a82006-03-04 21:46:13 +00005095
Bram Moolenaarb765d632005-06-07 21:00:02 +00005096 case 'g': /* "zg": add good word to word list */
5097 case 'w': /* "zw": add wrong word to word list */
Bram Moolenaar7887d882005-07-01 22:33:52 +00005098 case 'G': /* "zG": add good word to temp word list */
5099 case 'W': /* "zW": add wrong word to temp word list */
Bram Moolenaarb765d632005-06-07 21:00:02 +00005100 {
5101 char_u *ptr = NULL;
5102 int len;
5103
5104 if (checkclearop(cap->oap))
5105 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00005106 if (VIsual_active && get_visual_text(cap, &ptr, &len)
5107 == FAIL)
5108 return;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00005109 if (ptr == NULL)
5110 {
5111 pos_T pos = curwin->w_cursor;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00005112
Bram Moolenaar134bf072013-09-25 18:54:24 +02005113 /* Find bad word under the cursor. When 'spell' is
5114 * off this fails and find_ident_under_cursor() is
5115 * used below. */
5116 emsg_off++;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005117 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
Bram Moolenaar134bf072013-09-25 18:54:24 +02005118 emsg_off--;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00005119 if (len != 0 && curwin->w_cursor.col <= pos.col)
5120 ptr = ml_get_pos(&curwin->w_cursor);
5121 curwin->w_cursor = pos;
5122 }
5123
Bram Moolenaarb765d632005-06-07 21:00:02 +00005124 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
5125 FIND_IDENT)) == 0)
5126 return;
Bram Moolenaar7887d882005-07-01 22:33:52 +00005127 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W',
Bram Moolenaard0131a82006-03-04 21:46:13 +00005128 (nchar == 'G' || nchar == 'W')
5129 ? 0 : (int)cap->count1,
5130 undo);
Bram Moolenaarb765d632005-06-07 21:00:02 +00005131 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00005132 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005133
Bram Moolenaar43abc522005-12-10 20:15:02 +00005134 case '=': /* "z=": suggestions for a badly spelled word */
Bram Moolenaar66fa2712006-01-22 23:22:22 +00005135 if (!checkclearop(cap->oap))
Bram Moolenaard12a1322005-08-21 22:08:24 +00005136 spell_suggest((int)cap->count0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005137 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00005138#endif
5139
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 default: clearopbeep(cap->oap);
5141 }
5142
5143#ifdef FEAT_FOLDING
5144 /* Redraw when 'foldenable' changed */
5145 if (old_fen != curwin->w_p_fen)
5146 {
5147# ifdef FEAT_DIFF
5148 win_T *wp;
5149
5150 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
5151 {
5152 /* Adjust 'foldenable' in diff-synced windows. */
5153 FOR_ALL_WINDOWS(wp)
5154 {
5155 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
5156 {
5157 wp->w_p_fen = curwin->w_p_fen;
5158 changed_window_setting_win(wp);
5159 }
5160 }
5161 }
5162# endif
5163 changed_window_setting();
5164 }
5165
5166 /* Redraw when 'foldlevel' changed. */
5167 if (old_fdl != curwin->w_p_fdl)
5168 newFoldLevel();
5169#endif
5170}
5171
5172#ifdef FEAT_GUI
5173/*
5174 * Vertical scrollbar movement.
5175 */
5176 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005177nv_ver_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178{
5179 if (cap->oap->op_type != OP_NOP)
5180 clearopbeep(cap->oap);
5181
5182 /* Even if an operator was pending, we still want to scroll */
5183 gui_do_scroll();
5184}
5185
5186/*
5187 * Horizontal scrollbar movement.
5188 */
5189 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005190nv_hor_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191{
5192 if (cap->oap->op_type != OP_NOP)
5193 clearopbeep(cap->oap);
5194
5195 /* Even if an operator was pending, we still want to scroll */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005196 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197}
5198#endif
5199
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005200#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005201/*
5202 * Click in GUI tab.
5203 */
5204 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005205nv_tabline(cmdarg_T *cap)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005206{
5207 if (cap->oap->op_type != OP_NOP)
5208 clearopbeep(cap->oap);
5209
5210 /* Even if an operator was pending, we still want to jump tabs. */
5211 goto_tabpage(current_tab);
5212}
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005213
5214/*
5215 * Selected item in tab line menu.
5216 */
5217 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005218nv_tabmenu(cmdarg_T *cap)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005219{
5220 if (cap->oap->op_type != OP_NOP)
5221 clearopbeep(cap->oap);
5222
5223 /* Even if an operator was pending, we still want to jump tabs. */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005224 handle_tabmenu();
5225}
5226
5227/*
5228 * Handle selecting an item of the GUI tab line menu.
5229 * Used in Normal and Insert mode.
5230 */
5231 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005232handle_tabmenu(void)
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005233{
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005234 switch (current_tabmenu)
5235 {
5236 case TABLINE_MENU_CLOSE:
5237 if (current_tab == 0)
5238 do_cmdline_cmd((char_u *)"tabclose");
5239 else
5240 {
5241 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
5242 current_tab);
5243 do_cmdline_cmd(IObuff);
5244 }
5245 break;
5246
5247 case TABLINE_MENU_NEW:
Bram Moolenaardfd76912015-02-27 15:03:58 +01005248 if (current_tab == 0)
5249 do_cmdline_cmd((char_u *)"$tabnew");
5250 else
5251 {
5252 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
5253 current_tab - 1);
5254 do_cmdline_cmd(IObuff);
5255 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005256 break;
5257
5258 case TABLINE_MENU_OPEN:
Bram Moolenaardfd76912015-02-27 15:03:58 +01005259 if (current_tab == 0)
5260 do_cmdline_cmd((char_u *)"browse $tabnew");
5261 else
5262 {
5263 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
5264 current_tab - 1);
5265 do_cmdline_cmd(IObuff);
5266 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005267 break;
5268 }
5269}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005270#endif
5271
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272/*
5273 * "Q" command.
5274 */
5275 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005276nv_exmode(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277{
5278 /*
5279 * Ignore 'Q' in Visual mode, just give a beep.
5280 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 if (VIsual_active)
Bram Moolenaar165bc692015-07-21 17:53:25 +02005282 vim_beep(BO_EX);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005283 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 do_exmode(FALSE);
5285}
5286
5287/*
5288 * Handle a ":" command.
5289 */
5290 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005291nv_colon(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292{
5293 int old_p_im;
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005294 int cmd_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 if (VIsual_active)
5297 nv_operator(cap);
5298 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 {
5300 if (cap->oap->op_type != OP_NOP)
5301 {
5302 /* Using ":" as a movement is characterwise exclusive. */
5303 cap->oap->motion_type = MCHAR;
5304 cap->oap->inclusive = FALSE;
5305 }
5306 else if (cap->count0)
5307 {
5308 /* translate "count:" into ":.,.+(count - 1)" */
5309 stuffcharReadbuff('.');
5310 if (cap->count0 > 1)
5311 {
5312 stuffReadbuff((char_u *)",.+");
5313 stuffnumReadbuff((long)cap->count0 - 1L);
5314 }
5315 }
5316
5317 /* When typing, don't type below an old message */
5318 if (KeyTyped)
5319 compute_cmdrow();
5320
5321 old_p_im = p_im;
5322
5323 /* get a command line and execute it */
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005324 cmd_result = do_cmdline(NULL, getexline, NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
5326
5327 /* If 'insertmode' changed, enter or exit Insert mode */
5328 if (p_im != old_p_im)
5329 {
5330 if (p_im)
5331 restart_edit = 'i';
5332 else
5333 restart_edit = 0;
5334 }
5335
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005336 if (cmd_result == FAIL)
5337 /* The Ex command failed, do not execute the operator. */
5338 clearop(cap->oap);
5339 else if (cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
5341 || cap->oap->start.col >
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005342 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
5343 || did_emsg
5344 ))
5345 /* The start of the operator has become invalid by the Ex command.
5346 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005347 clearopbeep(cap->oap);
5348 }
5349}
5350
5351/*
5352 * Handle CTRL-G command.
5353 */
5354 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005355nv_ctrlg(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 if (VIsual_active) /* toggle Selection/Visual mode */
5358 {
5359 VIsual_select = !VIsual_select;
5360 showmode();
5361 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005362 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 /* print full name if count given or :cd used */
5364 fileinfo((int)cap->count0, FALSE, TRUE);
5365}
5366
5367/*
5368 * Handle CTRL-H <Backspace> command.
5369 */
5370 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005371nv_ctrlh(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 if (VIsual_active && VIsual_select)
5374 {
5375 cap->cmdchar = 'x'; /* BS key behaves like 'x' in Select mode */
5376 v_visop(cap);
5377 }
5378 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 nv_left(cap);
5380}
5381
5382/*
5383 * CTRL-L: clear screen and redraw.
5384 */
5385 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005386nv_clear(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387{
5388 if (!checkclearop(cap->oap))
5389 {
5390#if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
5391 /*
5392 * Right now, the BeBox doesn't seem to have an easy way to detect
5393 * window resizing, so we cheat and make the user detect it
5394 * manually with CTRL-L instead
5395 */
5396 ui_get_shellsize();
5397#endif
5398#ifdef FEAT_SYN_HL
5399 /* Clear all syntax states to force resyncing. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02005400 syn_stack_free_all(curwin->w_s);
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02005401# ifdef FEAT_RELTIME
5402 {
5403 win_T *wp;
5404
5405 FOR_ALL_WINDOWS(wp)
5406 wp->w_s->b_syn_slow = FALSE;
5407 }
5408# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409#endif
5410 redraw_later(CLEAR);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005411#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
5412# ifdef VIMDLL
5413 if (!gui.in_use)
5414# endif
5415 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01005416#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 }
5418}
5419
5420/*
5421 * CTRL-O: In Select mode: switch to Visual mode for one command.
5422 * Otherwise: Go to older pcmark.
5423 */
5424 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005425nv_ctrlo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 if (VIsual_active && VIsual_select)
5428 {
5429 VIsual_select = FALSE;
5430 showmode();
5431 restart_VIsual_select = 2; /* restart Select mode later */
5432 }
5433 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 {
5435 cap->count1 = -cap->count1;
5436 nv_pcmark(cap);
5437 }
5438}
5439
5440/*
Bram Moolenaar1bbb6192018-11-10 16:02:01 +01005441 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is
5442 * not named.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 */
5444 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005445nv_hat(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446{
5447 if (!checkclearopq(cap->oap))
5448 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
5449 GETF_SETMARK|GETF_ALT, FALSE);
5450}
5451
5452/*
5453 * "Z" commands.
5454 */
5455 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005456nv_Zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457{
5458 if (!checkclearopq(cap->oap))
5459 {
5460 switch (cap->nchar)
5461 {
5462 /* "ZZ": equivalent to ":x". */
5463 case 'Z': do_cmdline_cmd((char_u *)"x");
5464 break;
5465
5466 /* "ZQ": equivalent to ":q!" (Elvis compatible). */
5467 case 'Q': do_cmdline_cmd((char_u *)"q!");
5468 break;
5469
5470 default: clearopbeep(cap->oap);
5471 }
5472 }
5473}
5474
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475/*
5476 * Call nv_ident() as if "c1" was used, with "c2" as next character.
5477 */
5478 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005479do_nv_ident(int c1, int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480{
5481 oparg_T oa;
5482 cmdarg_T ca;
5483
5484 clear_oparg(&oa);
5485 vim_memset(&ca, 0, sizeof(ca));
5486 ca.oap = &oa;
5487 ca.cmdchar = c1;
5488 ca.nchar = c2;
5489 nv_ident(&ca);
5490}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491
5492/*
5493 * Handle the commands that use the word under the cursor.
5494 * [g] CTRL-] :ta to current identifier
5495 * [g] 'K' run program for current identifier
5496 * [g] '*' / to current identifier or string
5497 * [g] '#' ? to current identifier or string
5498 * g ']' :tselect for current identifier
5499 */
5500 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005501nv_ident(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502{
5503 char_u *ptr = NULL;
5504 char_u *buf;
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005505 unsigned buflen;
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005506 char_u *newbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507 char_u *p;
5508 char_u *kp; /* value of 'keywordprg' */
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005509 int kp_help; /* 'keywordprg' is ":he" */
5510 int kp_ex; /* 'keywordprg' starts with ":" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 int n = 0; /* init for GCC */
5512 int cmdchar;
5513 int g_cmd; /* "g" command */
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005514 int tag_cmd = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 char_u *aux_ptr;
5516 int isman;
5517 int isman_s;
5518
5519 if (cap->cmdchar == 'g') /* "g*", "g#", "g]" and "gCTRL-]" */
5520 {
5521 cmdchar = cap->nchar;
5522 g_cmd = TRUE;
5523 }
5524 else
5525 {
5526 cmdchar = cap->cmdchar;
5527 g_cmd = FALSE;
5528 }
5529
5530 if (cmdchar == POUND) /* the pound sign, '#' for English keyboards */
5531 cmdchar = '#';
5532
5533 /*
5534 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
5535 */
5536 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
5537 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
5539 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540 if (checkclearopq(cap->oap))
5541 return;
5542 }
5543
5544 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
5545 (cmdchar == '*' || cmdchar == '#')
5546 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
5547 {
5548 clearop(cap->oap);
5549 return;
5550 }
5551
5552 /* Allocate buffer to put the command in. Inserting backslashes can
5553 * double the length of the word. p_kp / curbuf->b_p_kp could be added
5554 * and some numbers. */
5555 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
5556 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
5557 || STRCMP(kp, ":help") == 0);
Bram Moolenaara4f99f52017-08-26 16:25:32 +02005558 if (kp_help && *skipwhite(ptr) == NUL)
5559 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005560 emsg(_(e_noident)); /* found white space only */
Bram Moolenaara4f99f52017-08-26 16:25:32 +02005561 return;
5562 }
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005563 kp_ex = (*kp == ':');
5564 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp));
5565 buf = alloc(buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 if (buf == NULL)
5567 return;
5568 buf[0] = NUL;
5569
5570 switch (cmdchar)
5571 {
5572 case '*':
5573 case '#':
5574 /*
5575 * Put cursor at start of word, makes search skip the word
5576 * under the cursor.
5577 * Call setpcmark() first, so "*``" puts the cursor back where
5578 * it was.
5579 */
5580 setpcmark();
5581 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
5582
5583 if (!g_cmd && vim_iswordp(ptr))
5584 STRCPY(buf, "\\<");
5585 no_smartcase = TRUE; /* don't use 'smartcase' now */
5586 break;
5587
5588 case 'K':
5589 if (kp_help)
5590 STRCPY(buf, "he! ");
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005591 else if (kp_ex)
5592 {
5593 if (cap->count0 != 0)
5594 vim_snprintf((char *)buf, buflen, "%s %ld",
5595 kp, cap->count0);
5596 else
5597 STRCPY(buf, kp);
5598 STRCAT(buf, " ");
5599 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600 else
5601 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005602 /* An external command will probably use an argument starting
5603 * with "-" as an option. To avoid trouble we skip the "-". */
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005604 while (*ptr == '-' && n > 0)
5605 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005606 ++ptr;
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005607 --n;
5608 }
5609 if (n == 0)
5610 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005611 emsg(_(e_noident)); /* found dashes only */
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005612 vim_free(buf);
5613 return;
5614 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005615
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616 /* When a count is given, turn it into a range. Is this
5617 * really what we want? */
5618 isman = (STRCMP(kp, "man") == 0);
5619 isman_s = (STRCMP(kp, "man -s") == 0);
5620 if (cap->count0 != 0 && !(isman || isman_s))
5621 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
5622
5623 STRCAT(buf, "! ");
5624 if (cap->count0 == 0 && isman_s)
5625 STRCAT(buf, "man");
5626 else
5627 STRCAT(buf, kp);
5628 STRCAT(buf, " ");
5629 if (cap->count0 != 0 && (isman || isman_s))
5630 {
5631 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
5632 STRCAT(buf, " ");
5633 }
5634 }
5635 break;
5636
5637 case ']':
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005638 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639#ifdef FEAT_CSCOPE
5640 if (p_cst)
5641 STRCPY(buf, "cstag ");
5642 else
5643#endif
5644 STRCPY(buf, "ts ");
5645 break;
5646
5647 default:
Bram Moolenaar97e7a842010-03-17 13:07:08 +01005648 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649 if (curbuf->b_help)
5650 STRCPY(buf, "he! ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651 else
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005652 {
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005653 if (g_cmd)
5654 STRCPY(buf, "tj ");
5655 else
5656 sprintf((char *)buf, "%ldta ", cap->count0);
5657 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 }
5659
5660 /*
5661 * Now grab the chars in the identifier
5662 */
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005663 if (cmdchar == 'K' && !kp_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664 {
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005665 ptr = vim_strnsave(ptr, n);
Bram Moolenaar426f3752016-11-04 21:22:37 +01005666 if (kp_ex)
5667 /* Escape the argument properly for an Ex command */
5668 p = vim_strsave_fnameescape(ptr, FALSE);
5669 else
5670 /* Escape the argument properly for a shell command */
5671 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005672 vim_free(ptr);
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005673 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005675 vim_free(buf);
5676 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005678 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005679 if (newbuf == NULL)
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005680 {
5681 vim_free(buf);
5682 vim_free(p);
5683 return;
5684 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005685 buf = newbuf;
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005686 STRCAT(buf, p);
5687 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005689 else
5690 {
5691 if (cmdchar == '*')
5692 aux_ptr = (char_u *)(p_magic ? "/.*~[^$\\" : "/^$\\");
5693 else if (cmdchar == '#')
5694 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005695 else if (tag_cmd)
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02005696 {
5697 if (curbuf->b_help)
5698 /* ":help" handles unescaped argument */
5699 aux_ptr = (char_u *)"";
5700 else
5701 aux_ptr = (char_u *)"\\|\"\n[";
5702 }
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005703 else
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005704 aux_ptr = (char_u *)"\\|\"\n*?[";
5705
5706 p = buf + STRLEN(buf);
5707 while (n-- > 0)
5708 {
5709 /* put a backslash before \ and some others */
5710 if (vim_strchr(aux_ptr, *ptr) != NULL)
5711 *p++ = '\\';
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005712 /* When current byte is a part of multibyte character, copy all
5713 * bytes of that character. */
5714 if (has_mbyte)
5715 {
5716 int i;
5717 int len = (*mb_ptr2len)(ptr) - 1;
5718
5719 for (i = 0; i < len && n >= 1; ++i, --n)
5720 *p++ = *ptr++;
5721 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005722 *p++ = *ptr++;
5723 }
5724 *p = NUL;
5725 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726
5727 /*
5728 * Execute the command.
5729 */
5730 if (cmdchar == '*' || cmdchar == '#')
5731 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005732 if (!g_cmd && (has_mbyte
5733 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr))
5734 : vim_iswordc(ptr[-1])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735 STRCAT(buf, "\\>");
5736#ifdef FEAT_CMDHIST
5737 /* put pattern in search history */
Bram Moolenaarc7be3f32009-12-24 14:01:12 +00005738 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
5740#endif
Bram Moolenaar46539112015-02-17 15:43:57 +01005741 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005742 }
5743 else
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02005744 {
5745 g_tag_at_cursor = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 do_cmdline_cmd(buf);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02005747 g_tag_at_cursor = FALSE;
5748 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749
5750 vim_free(buf);
5751}
5752
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753/*
5754 * Get visually selected text, within one line only.
5755 * Returns FAIL if more than one line selected.
5756 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005757 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005758get_visual_text(
5759 cmdarg_T *cap,
5760 char_u **pp, /* return: start of selected text */
5761 int *lenp) /* return: length of selected text */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762{
5763 if (VIsual_mode != 'V')
5764 unadjust_for_sel();
5765 if (VIsual.lnum != curwin->w_cursor.lnum)
5766 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005767 if (cap != NULL)
5768 clearopbeep(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 return FAIL;
5770 }
5771 if (VIsual_mode == 'V')
5772 {
5773 *pp = ml_get_curline();
5774 *lenp = (int)STRLEN(*pp);
5775 }
5776 else
5777 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005778 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 {
5780 *pp = ml_get_pos(&curwin->w_cursor);
5781 *lenp = VIsual.col - curwin->w_cursor.col + 1;
5782 }
5783 else
5784 {
5785 *pp = ml_get_pos(&VIsual);
5786 *lenp = curwin->w_cursor.col - VIsual.col + 1;
5787 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788 if (has_mbyte)
5789 /* Correct the length to include the whole last character. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005790 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791 }
5792 reset_VIsual_and_resel();
5793 return OK;
5794}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795
5796/*
5797 * CTRL-T: backwards in tag stack
5798 */
5799 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005800nv_tagpop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801{
5802 if (!checkclearopq(cap->oap))
5803 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
5804}
5805
5806/*
5807 * Handle scrolling command 'H', 'L' and 'M'.
5808 */
5809 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005810nv_scroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811{
5812 int used = 0;
5813 long n;
5814#ifdef FEAT_FOLDING
5815 linenr_T lnum;
5816#endif
5817 int half;
5818
5819 cap->oap->motion_type = MLINE;
5820 setpcmark();
5821
5822 if (cap->cmdchar == 'L')
5823 {
5824 validate_botline(); /* make sure curwin->w_botline is valid */
5825 curwin->w_cursor.lnum = curwin->w_botline - 1;
5826 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
5827 curwin->w_cursor.lnum = 1;
5828 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005829 {
5830#ifdef FEAT_FOLDING
5831 if (hasAnyFolding(curwin))
5832 {
5833 /* Count a fold for one screen line. */
5834 for (n = cap->count1 - 1; n > 0
5835 && curwin->w_cursor.lnum > curwin->w_topline; --n)
5836 {
5837 (void)hasFolding(curwin->w_cursor.lnum,
5838 &curwin->w_cursor.lnum, NULL);
5839 --curwin->w_cursor.lnum;
5840 }
5841 }
5842 else
5843#endif
5844 curwin->w_cursor.lnum -= cap->count1 - 1;
5845 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 }
5847 else
5848 {
5849 if (cap->cmdchar == 'M')
5850 {
5851#ifdef FEAT_DIFF
5852 /* Don't count filler lines above the window. */
5853 used -= diff_check_fill(curwin, curwin->w_topline)
5854 - curwin->w_topfill;
5855#endif
5856 validate_botline(); /* make sure w_empty_rows is valid */
5857 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
5858 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
5859 {
5860#ifdef FEAT_DIFF
5861 /* Count half he number of filler lines to be "below this
5862 * line" and half to be "above the next line". */
5863 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
5864 + n) / 2 >= half)
5865 {
5866 --n;
5867 break;
5868 }
5869#endif
5870 used += plines(curwin->w_topline + n);
5871 if (used >= half)
5872 break;
5873#ifdef FEAT_FOLDING
5874 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
5875 n = lnum - curwin->w_topline;
5876#endif
5877 }
5878 if (n > 0 && used > curwin->w_height)
5879 --n;
5880 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005881 else /* (cap->cmdchar == 'H') */
5882 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005884#ifdef FEAT_FOLDING
5885 if (hasAnyFolding(curwin))
5886 {
5887 /* Count a fold for one screen line. */
5888 lnum = curwin->w_topline;
5889 while (n-- > 0 && lnum < curwin->w_botline - 1)
5890 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02005891 (void)hasFolding(lnum, NULL, &lnum);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005892 ++lnum;
5893 }
5894 n = lnum - curwin->w_topline;
5895 }
5896#endif
5897 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 curwin->w_cursor.lnum = curwin->w_topline + n;
5899 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5900 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5901 }
5902
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02005903 /* Correct for 'so', except when an operator is pending. */
5904 if (cap->oap->op_type == OP_NOP)
5905 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 beginline(BL_SOL | BL_FIX);
5907}
5908
5909/*
5910 * Cursor right commands.
5911 */
5912 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005913nv_right(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914{
5915 long n;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005916 int past_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005918 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
5919 {
5920 /* <C-Right> and <S-Right> move a word or WORD right */
5921 if (mod_mask & MOD_MASK_CTRL)
5922 cap->arg = TRUE;
5923 nv_wordcmd(cap);
5924 return;
5925 }
5926
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927 cap->oap->motion_type = MCHAR;
5928 cap->oap->inclusive = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005929 past_line = (VIsual_active && *p_sel != 'o');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931 /*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005932 * In virtual edit mode, there's no such thing as "past_line", as lines
5933 * are (theoretically) infinitely long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 */
5935 if (virtual_active())
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005936 past_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937
5938 for (n = cap->count1; n > 0; --n)
5939 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005940 if ((!past_line && oneright() == FAIL)
5941 || (past_line && *ml_get_cursor() == NUL)
Bram Moolenaar78a15312009-05-15 19:33:18 +00005942 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943 {
5944 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005945 * <Space> wraps to next line if 'whichwrap' has 's'.
5946 * 'l' wraps to next line if 'whichwrap' has 'l'.
5947 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948 */
5949 if ( ((cap->cmdchar == ' '
5950 && vim_strchr(p_ww, 's') != NULL)
5951 || (cap->cmdchar == 'l'
5952 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00005953 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005954 && vim_strchr(p_ww, '>') != NULL))
5955 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5956 {
5957 /* When deleting we also count the NL as a character.
5958 * Set cap->oap->inclusive when last char in the line is
5959 * included, move to next line after that */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005960 if ( cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 && !cap->oap->inclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005962 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 cap->oap->inclusive = TRUE;
5964 else
5965 {
5966 ++curwin->w_cursor.lnum;
5967 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005969 curwin->w_set_curswant = TRUE;
5970 cap->oap->inclusive = FALSE;
5971 }
5972 continue;
5973 }
5974 if (cap->oap->op_type == OP_NOP)
5975 {
5976 /* Only beep and flush if not moved at all */
5977 if (n == cap->count1)
5978 beep_flush();
5979 }
5980 else
5981 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005982 if (!LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005983 cap->oap->inclusive = TRUE;
5984 }
5985 break;
5986 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005987 else if (past_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988 {
5989 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 if (virtual_active())
5991 oneright();
5992 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994 if (has_mbyte)
5995 curwin->w_cursor.col +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005996 (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998 ++curwin->w_cursor.col;
5999 }
6000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 }
6002#ifdef FEAT_FOLDING
6003 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
6004 && cap->oap->op_type == OP_NOP)
6005 foldOpenCursor();
6006#endif
6007}
6008
6009/*
6010 * Cursor left commands.
6011 *
6012 * Returns TRUE when operator end should not be adjusted.
6013 */
6014 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006015nv_left(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006016{
6017 long n;
6018
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006019 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
6020 {
6021 /* <C-Left> and <S-Left> move a word or WORD left */
6022 if (mod_mask & MOD_MASK_CTRL)
6023 cap->arg = 1;
6024 nv_bck_word(cap);
6025 return;
6026 }
6027
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 cap->oap->motion_type = MCHAR;
6029 cap->oap->inclusive = FALSE;
6030 for (n = cap->count1; n > 0; --n)
6031 {
6032 if (oneleft() == FAIL)
6033 {
6034 /* <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
6035 * 'h' wraps to previous line if 'whichwrap' has 'h'.
6036 * CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
6037 */
6038 if ( (((cap->cmdchar == K_BS
6039 || cap->cmdchar == Ctrl_H)
6040 && vim_strchr(p_ww, 'b') != NULL)
6041 || (cap->cmdchar == 'h'
6042 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00006043 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006044 && vim_strchr(p_ww, '<') != NULL))
6045 && curwin->w_cursor.lnum > 1)
6046 {
6047 --(curwin->w_cursor.lnum);
6048 coladvance((colnr_T)MAXCOL);
6049 curwin->w_set_curswant = TRUE;
6050
6051 /* When the NL before the first char has to be deleted we
6052 * put the cursor on the NUL after the previous line.
6053 * This is a very special case, be careful!
Bram Moolenaarad8958b2008-01-02 15:26:04 +00006054 * Don't adjust op_end now, otherwise it won't work. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006055 if ( (cap->oap->op_type == OP_DELETE
6056 || cap->oap->op_type == OP_CHANGE)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006057 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01006059 char_u *cp = ml_get_cursor();
6060
6061 if (*cp != NUL)
6062 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01006063 if (has_mbyte)
6064 curwin->w_cursor.col += (*mb_ptr2len)(cp);
6065 else
Bram Moolenaar7d311c52014-02-22 23:49:35 +01006066 ++curwin->w_cursor.col;
6067 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 cap->retval |= CA_NO_ADJ_OP_END;
6069 }
6070 continue;
6071 }
6072 /* Only beep and flush if not moved at all */
6073 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
6074 beep_flush();
6075 break;
6076 }
6077 }
6078#ifdef FEAT_FOLDING
6079 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
6080 && cap->oap->op_type == OP_NOP)
6081 foldOpenCursor();
6082#endif
6083}
6084
6085/*
6086 * Cursor up commands.
6087 * cap->arg is TRUE for "-": Move cursor to first non-blank.
6088 */
6089 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006090nv_up(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006092 if (mod_mask & MOD_MASK_SHIFT)
6093 {
6094 /* <S-Up> is page up */
6095 cap->arg = BACKWARD;
6096 nv_page(cap);
6097 }
6098 else
6099 {
6100 cap->oap->motion_type = MLINE;
6101 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
6102 clearopbeep(cap->oap);
6103 else if (cap->arg)
6104 beginline(BL_WHITE | BL_FIX);
6105 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006106}
6107
6108/*
6109 * Cursor down commands.
6110 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
6111 */
6112 static void
Bram Moolenaar1b010052016-09-12 12:24:11 +02006113nv_down(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006115 if (mod_mask & MOD_MASK_SHIFT)
6116 {
6117 /* <S-Down> is page down */
6118 cap->arg = FORWARD;
6119 nv_page(cap);
6120 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02006121#if defined(FEAT_QUICKFIX)
Bram Moolenaar0a08c632018-07-25 22:36:52 +02006122 /* Quickfix window only: view the result under the cursor. */
6123 else if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
6124 qf_view_result(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125#endif
Bram Moolenaar0a08c632018-07-25 22:36:52 +02006126 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127 {
6128#ifdef FEAT_CMDWIN
6129 /* In the cmdline window a <CR> executes the command. */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006130 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131 cmdwin_result = CAR;
6132 else
6133#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02006134#ifdef FEAT_JOB_CHANNEL
6135 /* In a prompt buffer a <CR> in the last line invokes the callback. */
6136 if (bt_prompt(curbuf) && cap->cmdchar == CAR
6137 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
6138 {
6139 invoke_prompt_callback();
6140 if (restart_edit == 0)
6141 restart_edit = 'a';
6142 }
6143 else
6144#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145 {
6146 cap->oap->motion_type = MLINE;
6147 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
6148 clearopbeep(cap->oap);
6149 else if (cap->arg)
6150 beginline(BL_WHITE | BL_FIX);
6151 }
6152 }
6153}
6154
6155#ifdef FEAT_SEARCHPATH
6156/*
6157 * Grab the file name under the cursor and edit it.
6158 */
6159 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006160nv_gotofile(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161{
6162 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006163 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006165 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006166 {
6167 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006168 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169 return;
6170 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006171 if (curbuf_locked())
6172 {
6173 clearop(cap->oap);
6174 return;
6175 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006177 ptr = grab_file_name(cap->count1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178
6179 if (ptr != NULL)
6180 {
6181 /* do autowrite if necessary */
Bram Moolenaareb44a682017-08-03 22:44:55 +02006182 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf))
Bram Moolenaarcde88542015-08-11 19:14:00 +02006183 (void)autowrite(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184 setpcmark();
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02006185 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
Bram Moolenaareb44a682017-08-03 22:44:55 +02006186 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02006187 && cap->nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006188 {
6189 curwin->w_cursor.lnum = lnum;
6190 check_cursor_lnum();
6191 beginline(BL_SOL | BL_FIX);
6192 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006193 vim_free(ptr);
6194 }
6195 else
6196 clearop(cap->oap);
6197}
6198#endif
6199
6200/*
6201 * <End> command: to end of current line or last line.
6202 */
6203 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006204nv_end(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006206 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) /* CTRL-END = goto last line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006207 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006208 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006209 nv_goto(cap);
6210 cap->count1 = 1; /* to end of current line */
6211 }
6212 nv_dollar(cap);
6213}
6214
6215/*
6216 * Handle the "$" command.
6217 */
6218 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006219nv_dollar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220{
6221 cap->oap->motion_type = MCHAR;
6222 cap->oap->inclusive = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006223 /* In virtual mode when off the edge of a line and an operator
6224 * is pending (whew!) keep the cursor where it is.
6225 * Otherwise, send it to the end of the line. */
6226 if (!virtual_active() || gchar_cursor() != NUL
6227 || cap->oap->op_type == OP_NOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228 curwin->w_curswant = MAXCOL; /* so we stay at the end */
6229 if (cursor_down((long)(cap->count1 - 1),
6230 cap->oap->op_type == OP_NOP) == FAIL)
6231 clearopbeep(cap->oap);
6232#ifdef FEAT_FOLDING
6233 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6234 foldOpenCursor();
6235#endif
6236}
6237
6238/*
6239 * Implementation of '?' and '/' commands.
6240 * If cap->arg is TRUE don't set PC mark.
6241 */
6242 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006243nv_search(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244{
6245 oparg_T *oap = cap->oap;
Bram Moolenaardda933d2016-09-03 21:04:58 +02006246 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247
6248 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
6249 {
6250 /* Translate "g??" to "g?g?" */
6251 cap->cmdchar = 'g';
6252 cap->nchar = '?';
6253 nv_operator(cap);
6254 return;
6255 }
6256
Bram Moolenaardda933d2016-09-03 21:04:58 +02006257 /* When using 'incsearch' the cursor may be moved to set a different search
6258 * start position. */
Bram Moolenaare96a2492019-06-25 04:12:16 +02006259 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260
6261 if (cap->searchbuf == NULL)
6262 {
6263 clearop(oap);
6264 return;
6265 }
6266
Bram Moolenaar46539112015-02-17 15:43:57 +01006267 (void)normal_search(cap, cap->cmdchar, cap->searchbuf,
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006268 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor))
Bram Moolenaardda933d2016-09-03 21:04:58 +02006269 ? 0 : SEARCH_MARK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270}
6271
6272/*
6273 * Handle "N" and "n" commands.
6274 * cap->arg is SEARCH_REV for "N", 0 for "n".
6275 */
6276 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006277nv_next(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278{
Bram Moolenaar46539112015-02-17 15:43:57 +01006279 pos_T old = curwin->w_cursor;
6280 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg);
6281
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006282 if (i == 1 && EQUAL_POS(old, curwin->w_cursor))
Bram Moolenaar46539112015-02-17 15:43:57 +01006283 {
6284 /* Avoid getting stuck on the current cursor position, which can
6285 * happen when an offset is given and the cursor is on the last char
6286 * in the buffer: Repeat with count + 1. */
6287 cap->count1 += 1;
6288 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg);
6289 cap->count1 -= 1;
6290 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291}
6292
6293/*
6294 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
6295 * Uses only cap->count1 and cap->oap from "cap".
Bram Moolenaar46539112015-02-17 15:43:57 +01006296 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297 */
Bram Moolenaar46539112015-02-17 15:43:57 +01006298 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006299normal_search(
6300 cmdarg_T *cap,
6301 int dir,
6302 char_u *pat,
6303 int opt) /* extra flags for do_search() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304{
6305 int i;
6306
6307 cap->oap->motion_type = MCHAR;
6308 cap->oap->inclusive = FALSE;
6309 cap->oap->use_reg_one = TRUE;
6310 curwin->w_set_curswant = TRUE;
6311
6312 i = do_search(cap->oap, dir, pat, cap->count1,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02006313 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006314 if (i == 0)
6315 clearop(cap->oap);
6316 else
6317 {
6318 if (i == 2)
6319 cap->oap->motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006320 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321#ifdef FEAT_FOLDING
6322 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
6323 foldOpenCursor();
6324#endif
6325 }
6326
6327 /* "/$" will put the cursor after the end of the line, may need to
6328 * correct that here */
6329 check_cursor();
Bram Moolenaar46539112015-02-17 15:43:57 +01006330 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331}
6332
6333/*
6334 * Character search commands.
6335 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
6336 * ',' and FALSE for ';'.
6337 * cap->nchar is NUL for ',' and ';' (repeat the search)
6338 */
6339 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006340nv_csearch(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341{
6342 int t_cmd;
6343
6344 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
6345 t_cmd = TRUE;
6346 else
6347 t_cmd = FALSE;
6348
6349 cap->oap->motion_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
6351 clearopbeep(cap->oap);
6352 else
6353 {
6354 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 /* Include a Tab for "tx" and for "dfx". */
6356 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
6357 && (t_cmd || cap->oap->op_type != OP_NOP))
6358 {
6359 colnr_T scol, ecol;
6360
6361 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
6362 curwin->w_cursor.coladd = ecol - scol;
6363 }
6364 else
6365 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367#ifdef FEAT_FOLDING
6368 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6369 foldOpenCursor();
6370#endif
6371 }
6372}
6373
6374/*
6375 * "[" and "]" commands.
6376 * cap->arg is BACKWARD for "[" and FORWARD for "]".
6377 */
6378 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006379nv_brackets(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006380{
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01006381 pos_T new_pos = {0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 pos_T prev_pos;
6383 pos_T *pos = NULL; /* init for GCC */
6384 pos_T old_pos; /* cursor position before command */
6385 int flag;
6386 long n;
6387 int findc;
6388 int c;
6389
6390 cap->oap->motion_type = MCHAR;
6391 cap->oap->inclusive = FALSE;
6392 old_pos = curwin->w_cursor;
Bram Moolenaar32526b32019-01-19 17:43:09 +01006393 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394
6395#ifdef FEAT_SEARCHPATH
6396 /*
6397 * "[f" or "]f" : Edit file under the cursor (same as "gf")
6398 */
6399 if (cap->nchar == 'f')
6400 nv_gotofile(cap);
6401 else
6402#endif
6403
6404#ifdef FEAT_FIND_ID
6405 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00006406 * Find the occurrence(s) of the identifier or define under cursor
6407 * in current and included files or jump to the first occurrence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 *
6409 * search list jump
6410 * fwd bwd fwd bwd fwd bwd
6411 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
6412 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
6413 */
6414 if (vim_strchr((char_u *)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006415# ifdef EBCDIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416 "iI\005dD\067",
Bram Moolenaar32526b32019-01-19 17:43:09 +01006417# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418 "iI\011dD\004",
Bram Moolenaar32526b32019-01-19 17:43:09 +01006419# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420 cap->nchar) != NULL)
6421 {
6422 char_u *ptr;
6423 int len;
6424
6425 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
6426 clearop(cap->oap);
6427 else
6428 {
6429 find_pattern_in_path(ptr, 0, len, TRUE,
6430 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
6431 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
6432 cap->count1,
6433 isupper(cap->nchar) ? ACTION_SHOW_ALL :
6434 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
6435 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
6436 (linenr_T)MAXLNUM);
6437 curwin->w_set_curswant = TRUE;
6438 }
6439 }
6440 else
6441#endif
6442
6443 /*
6444 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
6445 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
6446 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
6447 * "[m" or "]m" search for prev/next start of (Java) method.
6448 * "[M" or "]M" search for prev/next end of (Java) method.
6449 */
6450 if ( (cap->cmdchar == '['
6451 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
6452 || (cap->cmdchar == ']'
6453 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
6454 {
6455 if (cap->nchar == '*')
6456 cap->nchar = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457 prev_pos.lnum = 0;
6458 if (cap->nchar == 'm' || cap->nchar == 'M')
6459 {
6460 if (cap->cmdchar == '[')
6461 findc = '{';
6462 else
6463 findc = '}';
6464 n = 9999;
6465 }
6466 else
6467 {
6468 findc = cap->nchar;
6469 n = cap->count1;
6470 }
6471 for ( ; n > 0; --n)
6472 {
6473 if ((pos = findmatchlimit(cap->oap, findc,
6474 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
6475 {
6476 if (new_pos.lnum == 0) /* nothing found */
6477 {
6478 if (cap->nchar != 'm' && cap->nchar != 'M')
6479 clearopbeep(cap->oap);
6480 }
6481 else
6482 pos = &new_pos; /* use last one found */
6483 break;
6484 }
6485 prev_pos = new_pos;
6486 curwin->w_cursor = *pos;
6487 new_pos = *pos;
6488 }
6489 curwin->w_cursor = old_pos;
6490
6491 /*
6492 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
6493 * brought us to the match for "[m" and "]M" when inside a method.
6494 * Try finding the '{' or '}' we want to be at.
6495 * Also repeat for the given count.
6496 */
6497 if (cap->nchar == 'm' || cap->nchar == 'M')
6498 {
6499 /* norm is TRUE for "]M" and "[m" */
6500 int norm = ((findc == '{') == (cap->nchar == 'm'));
6501
6502 n = cap->count1;
6503 /* found a match: we were inside a method */
6504 if (prev_pos.lnum != 0)
6505 {
6506 pos = &prev_pos;
6507 curwin->w_cursor = prev_pos;
6508 if (norm)
6509 --n;
6510 }
6511 else
6512 pos = NULL;
6513 while (n > 0)
6514 {
6515 for (;;)
6516 {
6517 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
6518 {
6519 /* if not found anything, that's an error */
6520 if (pos == NULL)
6521 clearopbeep(cap->oap);
6522 n = 0;
6523 break;
6524 }
6525 c = gchar_cursor();
6526 if (c == '{' || c == '}')
6527 {
6528 /* Must have found end/start of class: use it.
6529 * Or found the place to be at. */
6530 if ((c == findc && norm) || (n == 1 && !norm))
6531 {
6532 new_pos = curwin->w_cursor;
6533 pos = &new_pos;
6534 n = 0;
6535 }
6536 /* if no match found at all, we started outside of the
6537 * class and we're inside now. Just go on. */
6538 else if (new_pos.lnum == 0)
6539 {
6540 new_pos = curwin->w_cursor;
6541 pos = &new_pos;
6542 }
6543 /* found start/end of other method: go to match */
6544 else if ((pos = findmatchlimit(cap->oap, findc,
6545 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
6546 0)) == NULL)
6547 n = 0;
6548 else
6549 curwin->w_cursor = *pos;
6550 break;
6551 }
6552 }
6553 --n;
6554 }
6555 curwin->w_cursor = old_pos;
6556 if (pos == NULL && new_pos.lnum != 0)
6557 clearopbeep(cap->oap);
6558 }
6559 if (pos != NULL)
6560 {
6561 setpcmark();
6562 curwin->w_cursor = *pos;
6563 curwin->w_set_curswant = TRUE;
6564#ifdef FEAT_FOLDING
6565 if ((fdo_flags & FDO_BLOCK) && KeyTyped
6566 && cap->oap->op_type == OP_NOP)
6567 foldOpenCursor();
6568#endif
6569 }
6570 }
6571
6572 /*
6573 * "[[", "[]", "]]" and "][": move to start or end of function
6574 */
6575 else if (cap->nchar == '[' || cap->nchar == ']')
6576 {
6577 if (cap->nchar == cap->cmdchar) /* "]]" or "[[" */
6578 flag = '{';
6579 else
6580 flag = '}'; /* "][" or "[]" */
6581
6582 curwin->w_set_curswant = TRUE;
6583 /*
6584 * Imitate strange Vi behaviour: When using "]]" with an operator
6585 * we also stop at '}'.
6586 */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00006587 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588 (cap->oap->op_type != OP_NOP
6589 && cap->arg == FORWARD && flag == '{')))
6590 clearopbeep(cap->oap);
6591 else
6592 {
6593 if (cap->oap->op_type == OP_NOP)
6594 beginline(BL_WHITE | BL_FIX);
6595#ifdef FEAT_FOLDING
6596 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6597 foldOpenCursor();
6598#endif
6599 }
6600 }
6601
6602 /*
6603 * "[p", "[P", "]P" and "]p": put with indent adjustment
6604 */
6605 else if (cap->nchar == 'p' || cap->nchar == 'P')
6606 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02006607 nv_put_opt(cap, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608 }
6609
6610 /*
6611 * "['", "[`", "]'" and "]`": jump to next mark
6612 */
6613 else if (cap->nchar == '\'' || cap->nchar == '`')
6614 {
6615 pos = &curwin->w_cursor;
6616 for (n = cap->count1; n > 0; --n)
6617 {
6618 prev_pos = *pos;
6619 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
6620 cap->nchar == '\'');
6621 if (pos == NULL)
6622 break;
6623 }
6624 if (pos == NULL)
6625 pos = &prev_pos;
6626 nv_cursormark(cap, cap->nchar == '\'', pos);
6627 }
6628
6629#ifdef FEAT_MOUSE
6630 /*
6631 * [ or ] followed by a middle mouse click: put selected text with
6632 * indent adjustment. Any other button just does as usual.
6633 */
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02006634 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635 {
6636 (void)do_mouse(cap->oap, cap->nchar,
6637 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
6638 cap->count1, PUT_FIXINDENT);
6639 }
6640#endif /* FEAT_MOUSE */
6641
6642#ifdef FEAT_FOLDING
6643 /*
6644 * "[z" and "]z": move to start or end of open fold.
6645 */
6646 else if (cap->nchar == 'z')
6647 {
6648 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6649 cap->count1) == FAIL)
6650 clearopbeep(cap->oap);
6651 }
6652#endif
6653
6654#ifdef FEAT_DIFF
6655 /*
6656 * "[c" and "]c": move to next or previous diff-change.
6657 */
6658 else if (cap->nchar == 'c')
6659 {
6660 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
6661 cap->count1) == FAIL)
6662 clearopbeep(cap->oap);
6663 }
6664#endif
6665
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00006666#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006667 /*
6668 * "[s", "[S", "]s" and "]S": move to next spell error.
6669 */
6670 else if (cap->nchar == 's' || cap->nchar == 'S')
6671 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00006672 setpcmark();
6673 for (n = 0; n < cap->count1; ++n)
Bram Moolenaar95529562005-08-25 21:21:38 +00006674 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6675 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00006676 {
6677 clearopbeep(cap->oap);
6678 break;
6679 }
Bram Moolenaarb73fa622017-12-21 20:27:47 +01006680 else
6681 curwin->w_set_curswant = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006682# ifdef FEAT_FOLDING
6683 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
6684 foldOpenCursor();
6685# endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006686 }
6687#endif
6688
Bram Moolenaar071d4272004-06-13 20:20:40 +00006689 /* Not a valid cap->nchar. */
6690 else
6691 clearopbeep(cap->oap);
6692}
6693
6694/*
6695 * Handle Normal mode "%" command.
6696 */
6697 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006698nv_percent(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699{
6700 pos_T *pos;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02006701#if defined(FEAT_FOLDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006702 linenr_T lnum = curwin->w_cursor.lnum;
6703#endif
6704
6705 cap->oap->inclusive = TRUE;
6706 if (cap->count0) /* {cnt}% : goto {cnt} percentage in file */
6707 {
6708 if (cap->count0 > 100)
6709 clearopbeep(cap->oap);
6710 else
6711 {
6712 cap->oap->motion_type = MLINE;
6713 setpcmark();
6714 /* Round up, so CTRL-G will give same value. Watch out for a
6715 * large line count, the line number must not go negative! */
6716 if (curbuf->b_ml.ml_line_count > 1000000)
6717 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
6718 / 100L * cap->count0;
6719 else
6720 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
6721 cap->count0 + 99L) / 100L;
6722 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6723 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6724 beginline(BL_SOL | BL_FIX);
6725 }
6726 }
6727 else /* "%" : go to matching paren */
6728 {
6729 cap->oap->motion_type = MCHAR;
6730 cap->oap->use_reg_one = TRUE;
6731 if ((pos = findmatch(cap->oap, NUL)) == NULL)
6732 clearopbeep(cap->oap);
6733 else
6734 {
6735 setpcmark();
6736 curwin->w_cursor = *pos;
6737 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006739 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740 }
6741 }
6742#ifdef FEAT_FOLDING
6743 if (cap->oap->op_type == OP_NOP
6744 && lnum != curwin->w_cursor.lnum
6745 && (fdo_flags & FDO_PERCENT)
6746 && KeyTyped)
6747 foldOpenCursor();
6748#endif
6749}
6750
6751/*
6752 * Handle "(" and ")" commands.
6753 * cap->arg is BACKWARD for "(" and FORWARD for ")".
6754 */
6755 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006756nv_brace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006757{
6758 cap->oap->motion_type = MCHAR;
6759 cap->oap->use_reg_one = TRUE;
Bram Moolenaarebefac62005-12-28 22:39:57 +00006760 /* The motion used to be inclusive for "(", but that is not what Vi does. */
6761 cap->oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762 curwin->w_set_curswant = TRUE;
6763
6764 if (findsent(cap->arg, cap->count1) == FAIL)
6765 clearopbeep(cap->oap);
6766 else
6767 {
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006768 /* Don't leave the cursor on the NUL past end of line. */
6769 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006771#ifdef FEAT_FOLDING
6772 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6773 foldOpenCursor();
6774#endif
6775 }
6776}
6777
6778/*
6779 * "m" command: Mark a position.
6780 */
6781 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006782nv_mark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006783{
6784 if (!checkclearop(cap->oap))
6785 {
6786 if (setmark(cap->nchar) == FAIL)
6787 clearopbeep(cap->oap);
6788 }
6789}
6790
6791/*
6792 * "{" and "}" commands.
6793 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
6794 */
6795 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006796nv_findpar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006797{
6798 cap->oap->motion_type = MCHAR;
6799 cap->oap->inclusive = FALSE;
6800 cap->oap->use_reg_one = TRUE;
6801 curwin->w_set_curswant = TRUE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00006802 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006803 clearopbeep(cap->oap);
6804 else
6805 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006806 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006807#ifdef FEAT_FOLDING
6808 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6809 foldOpenCursor();
6810#endif
6811 }
6812}
6813
6814/*
6815 * "u" command: Undo or make lower case.
6816 */
6817 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006818nv_undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006819{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006820 if (cap->oap->op_type == OP_LOWER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821 {
6822 /* translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" */
6823 cap->cmdchar = 'g';
6824 cap->nchar = 'u';
6825 nv_operator(cap);
6826 }
6827 else
6828 nv_kundo(cap);
6829}
6830
6831/*
6832 * <Undo> command.
6833 */
6834 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006835nv_kundo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836{
6837 if (!checkclearopq(cap->oap))
6838 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02006839#ifdef FEAT_JOB_CHANNEL
6840 if (bt_prompt(curbuf))
6841 {
6842 clearopbeep(cap->oap);
6843 return;
6844 }
6845#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846 u_undo((int)cap->count1);
6847 curwin->w_set_curswant = TRUE;
6848 }
6849}
6850
6851/*
6852 * Handle the "r" command.
6853 */
6854 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006855nv_replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856{
6857 char_u *ptr;
6858 int had_ctrl_v;
6859 long n;
6860
6861 if (checkclearop(cap->oap))
6862 return;
Bram Moolenaarf2732452018-06-03 14:47:35 +02006863#ifdef FEAT_JOB_CHANNEL
6864 if (bt_prompt(curbuf) && !prompt_curpos_editable())
6865 {
6866 clearopbeep(cap->oap);
6867 return;
6868 }
6869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006870
6871 /* get another character */
6872 if (cap->nchar == Ctrl_V)
6873 {
6874 had_ctrl_v = Ctrl_V;
6875 cap->nchar = get_literal();
6876 /* Don't redo a multibyte character with CTRL-V. */
6877 if (cap->nchar > DEL)
6878 had_ctrl_v = NUL;
6879 }
6880 else
6881 had_ctrl_v = NUL;
6882
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00006883 /* Abort if the character is a special key. */
6884 if (IS_SPECIAL(cap->nchar))
6885 {
6886 clearopbeep(cap->oap);
6887 return;
6888 }
6889
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890 /* Visual mode "r" */
6891 if (VIsual_active)
6892 {
Bram Moolenaar57fb0da2009-02-04 10:46:25 +00006893 if (got_int)
6894 reset_VIsual();
Bram Moolenaard9820532013-11-04 01:41:17 +01006895 if (had_ctrl_v)
6896 {
Bram Moolenaarf12519d2018-02-06 22:52:49 +01006897 /* Use a special (negative) number to make a difference between a
6898 * literal CR or NL and a line break. */
6899 if (cap->nchar == CAR)
6900 cap->nchar = REPLACE_CR_NCHAR;
6901 else if (cap->nchar == NL)
6902 cap->nchar = REPLACE_NL_NCHAR;
Bram Moolenaard9820532013-11-04 01:41:17 +01006903 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006904 nv_operator(cap);
6905 return;
6906 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907
Bram Moolenaar071d4272004-06-13 20:20:40 +00006908 /* Break tabs, etc. */
6909 if (virtual_active())
6910 {
6911 if (u_save_cursor() == FAIL)
6912 return;
6913 if (gchar_cursor() == NUL)
6914 {
6915 /* Add extra space and put the cursor on the first one. */
6916 coladvance_force((colnr_T)(getviscol() + cap->count1));
6917 curwin->w_cursor.col -= cap->count1;
6918 }
6919 else if (gchar_cursor() == TAB)
6920 coladvance_force(getviscol());
6921 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006922
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00006923 /* Abort if not enough characters to replace. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924 ptr = ml_get_cursor();
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00006925 if (STRLEN(ptr) < (unsigned)cap->count1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01006926 || (has_mbyte && mb_charlen(ptr) < cap->count1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927 {
6928 clearopbeep(cap->oap);
6929 return;
6930 }
6931
6932 /*
6933 * Replacing with a TAB is done by edit() when it is complicated because
6934 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
6935 * Other characters are done below to avoid problems with things like
6936 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
6937 */
6938 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
6939 {
6940 stuffnumReadbuff(cap->count1);
6941 stuffcharReadbuff('R');
6942 stuffcharReadbuff('\t');
6943 stuffcharReadbuff(ESC);
6944 return;
6945 }
6946
6947 /* save line for undo */
6948 if (u_save_cursor() == FAIL)
6949 return;
6950
6951 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
6952 {
6953 /*
6954 * Replace character(s) by a single newline.
6955 * Strange vi behaviour: Only one newline is inserted.
6956 * Delete the characters here.
6957 * Insert the newline with an insert command, takes care of
6958 * autoindent. The insert command depends on being on the last
6959 * character of a line or not.
6960 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006961 (void)del_chars(cap->count1, FALSE); /* delete the characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962 stuffcharReadbuff('\r');
6963 stuffcharReadbuff(ESC);
6964
6965 /* Give 'r' to edit(), to get the redo command right. */
6966 invoke_edit(cap, TRUE, 'r', FALSE);
6967 }
6968 else
6969 {
6970 prep_redo(cap->oap->regname, cap->count1,
6971 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
6972
6973 curbuf->b_op_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 if (has_mbyte)
6975 {
6976 int old_State = State;
6977
6978 if (cap->ncharC1 != 0)
6979 AppendCharToRedobuff(cap->ncharC1);
6980 if (cap->ncharC2 != 0)
6981 AppendCharToRedobuff(cap->ncharC2);
6982
6983 /* This is slow, but it handles replacing a single-byte with a
6984 * multi-byte and the other way around. Also handles adding
6985 * composing characters for utf-8. */
6986 for (n = cap->count1; n > 0; --n)
6987 {
6988 State = REPLACE;
Bram Moolenaar8320da42012-04-30 18:18:47 +02006989 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
6990 {
6991 int c = ins_copychar(curwin->w_cursor.lnum
6992 + (cap->nchar == Ctrl_Y ? -1 : 1));
6993 if (c != NUL)
6994 ins_char(c);
6995 else
6996 /* will be decremented further down */
6997 ++curwin->w_cursor.col;
6998 }
6999 else
7000 ins_char(cap->nchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007001 State = old_State;
7002 if (cap->ncharC1 != 0)
7003 ins_char(cap->ncharC1);
7004 if (cap->ncharC2 != 0)
7005 ins_char(cap->ncharC2);
7006 }
7007 }
7008 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009 {
7010 /*
7011 * Replace the characters within one line.
7012 */
7013 for (n = cap->count1; n > 0; --n)
7014 {
7015 /*
7016 * Get ptr again, because u_save and/or showmatch() will have
7017 * released the line. At the same time we let know that the
7018 * line will be changed.
7019 */
7020 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02007021 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
7022 {
7023 int c = ins_copychar(curwin->w_cursor.lnum
7024 + (cap->nchar == Ctrl_Y ? -1 : 1));
7025 if (c != NUL)
7026 ptr[curwin->w_cursor.col] = c;
7027 }
7028 else
7029 ptr[curwin->w_cursor.col] = cap->nchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007030 if (p_sm && msg_silent == 0)
7031 showmatch(cap->nchar);
7032 ++curwin->w_cursor.col;
7033 }
7034#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007035 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007037 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038
Bram Moolenaar009b2592004-10-24 19:18:58 +00007039 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007040 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00007042 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043 }
7044#endif
7045
7046 /* mark the buffer as changed and prepare for displaying */
7047 changed_bytes(curwin->w_cursor.lnum,
7048 (colnr_T)(curwin->w_cursor.col - cap->count1));
7049 }
7050 --curwin->w_cursor.col; /* cursor on the last replaced char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 /* if the character on the left of the current cursor is a multi-byte
7052 * character, move two characters left */
7053 if (has_mbyte)
7054 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007055 curbuf->b_op_end = curwin->w_cursor;
7056 curwin->w_set_curswant = TRUE;
7057 set_last_insert(cap->nchar);
7058 }
7059}
7060
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061/*
7062 * 'o': Exchange start and end of Visual area.
7063 * 'O': same, but in block mode exchange left and right corners.
7064 */
7065 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007066v_swap_corners(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007067{
7068 pos_T old_cursor;
7069 colnr_T left, right;
7070
7071 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
7072 {
7073 old_cursor = curwin->w_cursor;
7074 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
7075 curwin->w_cursor.lnum = VIsual.lnum;
7076 coladvance(left);
7077 VIsual = curwin->w_cursor;
7078
7079 curwin->w_cursor.lnum = old_cursor.lnum;
7080 curwin->w_curswant = right;
7081 /* 'selection "exclusive" and cursor at right-bottom corner: move it
7082 * right one column */
7083 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
7084 ++curwin->w_curswant;
7085 coladvance(curwin->w_curswant);
7086 if (curwin->w_cursor.col == old_cursor.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087 && (!virtual_active()
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01007088 || curwin->w_cursor.coladd == old_cursor.coladd))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089 {
7090 curwin->w_cursor.lnum = VIsual.lnum;
7091 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
7092 ++right;
7093 coladvance(right);
7094 VIsual = curwin->w_cursor;
7095
7096 curwin->w_cursor.lnum = old_cursor.lnum;
7097 coladvance(left);
7098 curwin->w_curswant = left;
7099 }
7100 }
7101 else
7102 {
7103 old_cursor = curwin->w_cursor;
7104 curwin->w_cursor = VIsual;
7105 VIsual = old_cursor;
7106 curwin->w_set_curswant = TRUE;
7107 }
7108}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109
7110/*
7111 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
7112 */
7113 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007114nv_Replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 if (VIsual_active) /* "R" is replace lines */
7117 {
7118 cap->cmdchar = 'c';
7119 cap->nchar = NUL;
Bram Moolenaara390bb62013-03-13 19:02:41 +01007120 VIsual_mode_orig = VIsual_mode; /* remember original area for gv */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007121 VIsual_mode = 'V';
7122 nv_operator(cap);
7123 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007124 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007125 {
7126 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007127 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007128 else
7129 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007130 if (virtual_active())
7131 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00007132 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
7133 }
7134 }
7135}
7136
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137/*
7138 * "gr".
7139 */
7140 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007141nv_vreplace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007142{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007143 if (VIsual_active)
7144 {
7145 cap->cmdchar = 'r';
7146 cap->nchar = cap->extra_char;
7147 nv_replace(cap); /* Do same as "r" in Visual mode for now */
7148 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007149 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150 {
7151 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007152 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007153 else
7154 {
7155 if (cap->extra_char == Ctrl_V) /* get another character */
7156 cap->extra_char = get_literal();
7157 stuffcharReadbuff(cap->extra_char);
7158 stuffcharReadbuff(ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159 if (virtual_active())
7160 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161 invoke_edit(cap, TRUE, 'v', FALSE);
7162 }
7163 }
7164}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165
7166/*
7167 * Swap case for "~" command, when it does not work like an operator.
7168 */
7169 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007170n_swapchar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171{
7172 long n;
7173 pos_T startpos;
7174 int did_change = 0;
7175#ifdef FEAT_NETBEANS_INTG
7176 pos_T pos;
7177 char_u *ptr;
7178 int count;
7179#endif
7180
7181 if (checkclearopq(cap->oap))
7182 return;
7183
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007184 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007185 {
7186 clearopbeep(cap->oap);
7187 return;
7188 }
7189
7190 prep_redo_cmd(cap);
7191
7192 if (u_save_cursor() == FAIL)
7193 return;
7194
7195 startpos = curwin->w_cursor;
7196#ifdef FEAT_NETBEANS_INTG
7197 pos = startpos;
7198#endif
7199 for (n = cap->count1; n > 0; --n)
7200 {
7201 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
7202 inc_cursor();
7203 if (gchar_cursor() == NUL)
7204 {
7205 if (vim_strchr(p_ww, '~') != NULL
7206 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
7207 {
7208#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007209 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210 {
7211 if (did_change)
7212 {
7213 ptr = ml_get(pos.lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007214 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00007215 netbeans_removed(curbuf, pos.lnum, pos.col,
7216 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007217 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00007218 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007219 }
7220 pos.col = 0;
7221 pos.lnum++;
7222 }
7223#endif
7224 ++curwin->w_cursor.lnum;
7225 curwin->w_cursor.col = 0;
7226 if (n > 1)
7227 {
7228 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
7229 break;
7230 u_clearline();
7231 }
7232 }
7233 else
7234 break;
7235 }
7236 }
7237#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007238 if (did_change && netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007239 {
7240 ptr = ml_get(pos.lnum);
7241 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00007242 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
7243 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007244 }
7245#endif
7246
7247
7248 check_cursor();
7249 curwin->w_set_curswant = TRUE;
7250 if (did_change)
7251 {
7252 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
7253 0L);
7254 curbuf->b_op_start = startpos;
7255 curbuf->b_op_end = curwin->w_cursor;
7256 if (curbuf->b_op_end.col > 0)
7257 --curbuf->b_op_end.col;
7258 }
7259}
7260
7261/*
7262 * Move cursor to mark.
7263 */
7264 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007265nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007266{
7267 if (check_mark(pos) == FAIL)
7268 clearop(cap->oap);
7269 else
7270 {
7271 if (cap->cmdchar == '\''
7272 || cap->cmdchar == '`'
7273 || cap->cmdchar == '['
7274 || cap->cmdchar == ']')
7275 setpcmark();
7276 curwin->w_cursor = *pos;
7277 if (flag)
7278 beginline(BL_WHITE | BL_FIX);
7279 else
7280 check_cursor();
7281 }
7282 cap->oap->motion_type = flag ? MLINE : MCHAR;
7283 if (cap->cmdchar == '`')
7284 cap->oap->use_reg_one = TRUE;
7285 cap->oap->inclusive = FALSE; /* ignored if not MCHAR */
7286 curwin->w_set_curswant = TRUE;
7287}
7288
Bram Moolenaar071d4272004-06-13 20:20:40 +00007289/*
7290 * Handle commands that are operators in Visual mode.
7291 */
7292 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007293v_visop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007294{
7295 static char_u trans[] = "YyDdCcxdXdAAIIrr";
7296
7297 /* Uppercase means linewise, except in block mode, then "D" deletes till
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02007298 * the end of the line, and "C" replaces till EOL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007299 if (isupper(cap->cmdchar))
7300 {
7301 if (VIsual_mode != Ctrl_V)
Bram Moolenaara390bb62013-03-13 19:02:41 +01007302 {
7303 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007304 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01007305 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007306 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
7307 curwin->w_curswant = MAXCOL;
7308 }
7309 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
7310 nv_operator(cap);
7311}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007312
7313/*
7314 * "s" and "S" commands.
7315 */
7316 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007317nv_subst(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007318{
Bram Moolenaard96ff162018-02-18 22:13:29 +01007319#ifdef FEAT_TERMINAL
7320 /* When showing output of term_dumpdiff() swap the top and botom. */
7321 if (term_swap_diff() == OK)
7322 return;
7323#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02007324#ifdef FEAT_JOB_CHANNEL
7325 if (bt_prompt(curbuf) && !prompt_curpos_editable())
7326 {
7327 clearopbeep(cap->oap);
7328 return;
7329 }
7330#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007331 if (VIsual_active) /* "vs" and "vS" are the same as "vc" */
7332 {
7333 if (cap->cmdchar == 'S')
Bram Moolenaara390bb62013-03-13 19:02:41 +01007334 {
7335 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01007337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007338 cap->cmdchar = 'c';
7339 nv_operator(cap);
7340 }
7341 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007342 nv_optrans(cap);
7343}
7344
7345/*
7346 * Abbreviated commands.
7347 */
7348 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007349nv_abbrev(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350{
7351 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
7352 cap->cmdchar = 'x'; /* DEL key behaves like 'x' */
7353
Bram Moolenaar071d4272004-06-13 20:20:40 +00007354 /* in Visual mode these commands are operators */
7355 if (VIsual_active)
7356 v_visop(cap);
7357 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007358 nv_optrans(cap);
7359}
7360
7361/*
7362 * Translate a command into another command.
7363 */
7364 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007365nv_optrans(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007366{
7367 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
7368 (char_u *)"d$", (char_u *)"c$",
7369 (char_u *)"cl", (char_u *)"cc",
7370 (char_u *)"yy", (char_u *)":s\r"};
7371 static char_u *str = (char_u *)"xXDCsSY&";
7372
7373 if (!checkclearopq(cap->oap))
7374 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007375 /* In Vi "2D" doesn't delete the next line. Can't translate it
7376 * either, because "2." should also not use the count. */
7377 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
7378 {
7379 cap->oap->start = curwin->w_cursor;
7380 cap->oap->op_type = OP_DELETE;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00007381#ifdef FEAT_EVAL
7382 set_op_var(OP_DELETE);
7383#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007384 cap->count1 = 1;
7385 nv_dollar(cap);
7386 finish_op = TRUE;
7387 ResetRedobuff();
7388 AppendCharToRedobuff('D');
7389 }
7390 else
7391 {
7392 if (cap->count0)
7393 stuffnumReadbuff(cap->count0);
7394 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
7395 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007396 }
7397 cap->opcount = 0;
7398}
7399
7400/*
7401 * "'" and "`" commands. Also for "g'" and "g`".
7402 * cap->arg is TRUE for "'" and "g'".
7403 */
7404 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007405nv_gomark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007406{
7407 pos_T *pos;
7408 int c;
7409#ifdef FEAT_FOLDING
Bram Moolenaar8754deb2013-01-17 13:24:08 +01007410 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007411 int old_KeyTyped = KeyTyped; /* getting file may reset it */
7412#endif
7413
7414 if (cap->cmdchar == 'g')
7415 c = cap->extra_char;
7416 else
7417 c = cap->nchar;
7418 pos = getmark(c, (cap->oap->op_type == OP_NOP));
7419 if (pos == (pos_T *)-1) /* jumped to other file */
7420 {
7421 if (cap->arg)
7422 {
7423 check_cursor_lnum();
7424 beginline(BL_WHITE | BL_FIX);
7425 }
7426 else
7427 check_cursor();
7428 }
7429 else
7430 nv_cursormark(cap, cap->arg, pos);
7431
Bram Moolenaar071d4272004-06-13 20:20:40 +00007432 /* May need to clear the coladd that a mark includes. */
7433 if (!virtual_active())
7434 curwin->w_cursor.coladd = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02007435 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007436#ifdef FEAT_FOLDING
7437 if (cap->oap->op_type == OP_NOP
Bram Moolenaar15364d72013-01-24 21:00:20 +01007438 && pos != NULL
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007439 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007440 && (fdo_flags & FDO_MARK)
7441 && old_KeyTyped)
7442 foldOpenCursor();
7443#endif
7444}
7445
7446/*
7447 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
7448 */
7449 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007450nv_pcmark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007451{
7452#ifdef FEAT_JUMPLIST
7453 pos_T *pos;
7454# ifdef FEAT_FOLDING
7455 linenr_T lnum = curwin->w_cursor.lnum;
7456 int old_KeyTyped = KeyTyped; /* getting file may reset it */
7457# endif
7458
7459 if (!checkclearopq(cap->oap))
7460 {
7461 if (cap->cmdchar == 'g')
7462 pos = movechangelist((int)cap->count1);
7463 else
7464 pos = movemark((int)cap->count1);
7465 if (pos == (pos_T *)-1) /* jump to other file */
7466 {
7467 curwin->w_set_curswant = TRUE;
7468 check_cursor();
7469 }
7470 else if (pos != NULL) /* can jump */
7471 nv_cursormark(cap, FALSE, pos);
7472 else if (cap->cmdchar == 'g')
7473 {
7474 if (curbuf->b_changelistlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007475 emsg(_("E664: changelist is empty"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007476 else if (cap->count1 < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007477 emsg(_("E662: At start of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007478 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007479 emsg(_("E663: At end of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007480 }
7481 else
7482 clearopbeep(cap->oap);
7483# ifdef FEAT_FOLDING
7484 if (cap->oap->op_type == OP_NOP
7485 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
7486 && (fdo_flags & FDO_MARK)
7487 && old_KeyTyped)
7488 foldOpenCursor();
7489# endif
7490 }
7491#else
7492 clearopbeep(cap->oap);
7493#endif
7494}
7495
7496/*
7497 * Handle '"' command.
7498 */
7499 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007500nv_regname(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007501{
7502 if (checkclearop(cap->oap))
7503 return;
7504#ifdef FEAT_EVAL
7505 if (cap->nchar == '=')
7506 cap->nchar = get_expr_register();
7507#endif
7508 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
7509 {
7510 cap->oap->regname = cap->nchar;
7511 cap->opcount = cap->count0; /* remember count before '"' */
7512#ifdef FEAT_EVAL
7513 set_reg_var(cap->oap->regname);
7514#endif
7515 }
7516 else
7517 clearopbeep(cap->oap);
7518}
7519
Bram Moolenaar071d4272004-06-13 20:20:40 +00007520/*
7521 * Handle "v", "V" and "CTRL-V" commands.
7522 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
7523 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00007524 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007525 */
7526 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007527nv_visual(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007528{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007529 if (cap->cmdchar == Ctrl_Q)
7530 cap->cmdchar = Ctrl_V;
7531
Bram Moolenaar071d4272004-06-13 20:20:40 +00007532 /* 'v', 'V' and CTRL-V can be used while an operator is pending to make it
7533 * characterwise, linewise, or blockwise. */
7534 if (cap->oap->op_type != OP_NOP)
7535 {
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01007536 motion_force = cap->oap->motion_force = cap->cmdchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007537 finish_op = FALSE; /* operator doesn't finish now but later */
7538 return;
7539 }
7540
7541 VIsual_select = cap->arg;
7542 if (VIsual_active) /* change Visual mode */
7543 {
7544 if (VIsual_mode == cap->cmdchar) /* stop visual mode */
7545 end_visual_mode();
7546 else /* toggle char/block mode */
7547 { /* or char/line mode */
7548 VIsual_mode = cap->cmdchar;
7549 showmode();
7550 }
7551 redraw_curbuf_later(INVERTED); /* update the inversion */
7552 }
7553 else /* start Visual mode */
7554 {
7555 check_visual_highlight();
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02007556 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007557 {
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02007558 /* use previously selected part */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007559 VIsual = curwin->w_cursor;
7560
7561 VIsual_active = TRUE;
7562 VIsual_reselect = TRUE;
7563 if (!cap->arg)
7564 /* start Select mode when 'selectmode' contains "cmd" */
7565 may_start_select('c');
7566#ifdef FEAT_MOUSE
7567 setmouse();
7568#endif
Bram Moolenaar09df3122006-01-23 22:23:09 +00007569 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007570 redraw_cmdline = TRUE; /* show visual mode later */
7571 /*
7572 * For V and ^V, we multiply the number of lines even if there
7573 * was only one -- webb
7574 */
7575 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
7576 {
7577 curwin->w_cursor.lnum +=
7578 resel_VIsual_line_count * cap->count0 - 1;
7579 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7580 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7581 }
7582 VIsual_mode = resel_VIsual_mode;
7583 if (VIsual_mode == 'v')
7584 {
7585 if (resel_VIsual_line_count <= 1)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007586 {
7587 validate_virtcol();
7588 curwin->w_curswant = curwin->w_virtcol
7589 + resel_VIsual_vcol * cap->count0 - 1;
7590 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007591 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007592 curwin->w_curswant = resel_VIsual_vcol;
7593 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007594 }
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007595 if (resel_VIsual_vcol == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007596 {
7597 curwin->w_curswant = MAXCOL;
7598 coladvance((colnr_T)MAXCOL);
7599 }
7600 else if (VIsual_mode == Ctrl_V)
7601 {
7602 validate_virtcol();
7603 curwin->w_curswant = curwin->w_virtcol
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007604 + resel_VIsual_vcol * cap->count0 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007605 coladvance(curwin->w_curswant);
7606 }
7607 else
7608 curwin->w_set_curswant = TRUE;
7609 redraw_curbuf_later(INVERTED); /* show the inversion */
7610 }
7611 else
7612 {
7613 if (!cap->arg)
7614 /* start Select mode when 'selectmode' contains "cmd" */
7615 may_start_select('c');
7616 n_start_visual_mode(cap->cmdchar);
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02007617 if (VIsual_mode != 'V' && *p_sel == 'e')
7618 ++cap->count1; /* include one more char */
7619 if (cap->count0 > 0 && --cap->count1 > 0)
7620 {
7621 /* With a count select that many characters or lines. */
7622 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
7623 nv_right(cap);
7624 else if (VIsual_mode == 'V')
7625 nv_down(cap);
7626 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007627 }
7628 }
7629}
7630
7631/*
7632 * Start selection for Shift-movement keys.
7633 */
7634 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007635start_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007636{
7637 /* if 'selectmode' contains "key", start Select mode */
7638 may_start_select('k');
7639 n_start_visual_mode('v');
7640}
7641
7642/*
7643 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
7644 */
7645 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007646may_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007647{
7648 VIsual_select = (stuff_empty() && typebuf_typed()
7649 && (vim_strchr(p_slm, c) != NULL));
7650}
7651
7652/*
7653 * Start Visual mode "c".
7654 * Should set VIsual_select before calling this.
7655 */
7656 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007657n_start_visual_mode(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007658{
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007659#ifdef FEAT_CONCEAL
7660 /* Check for redraw before changing the state. */
Bram Moolenaarb9464822018-05-10 15:09:49 +02007661 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007662#endif
7663
Bram Moolenaar071d4272004-06-13 20:20:40 +00007664 VIsual_mode = c;
7665 VIsual_active = TRUE;
7666 VIsual_reselect = TRUE;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01007667
7668 // Corner case: the 0 position in a tab may change when going into
7669 // virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007670 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB)
Bram Moolenaar2dac2132012-08-15 13:31:00 +02007671 {
7672 validate_virtcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007673 coladvance(curwin->w_virtcol);
Bram Moolenaar2dac2132012-08-15 13:31:00 +02007674 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007675 VIsual = curwin->w_cursor;
7676
7677#ifdef FEAT_FOLDING
7678 foldAdjustVisual();
7679#endif
7680
7681#ifdef FEAT_MOUSE
7682 setmouse();
7683#endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007684#ifdef FEAT_CONCEAL
7685 /* Check for redraw after changing the state. */
Bram Moolenaarb9464822018-05-10 15:09:49 +02007686 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007687#endif
7688
Bram Moolenaar09df3122006-01-23 22:23:09 +00007689 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007690 redraw_cmdline = TRUE; /* show visual mode later */
7691#ifdef FEAT_CLIPBOARD
7692 /* Make sure the clipboard gets updated. Needed because start and
7693 * end may still be the same, and the selection needs to be owned */
7694 clip_star.vmode = NUL;
7695#endif
7696
7697 /* Only need to redraw this line, unless still need to redraw an old
7698 * Visual area (when 'lazyredraw' is set). */
7699 if (curwin->w_redr_type < INVERTED)
7700 {
7701 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
7702 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
7703 }
7704}
7705
Bram Moolenaar071d4272004-06-13 20:20:40 +00007706
7707/*
7708 * CTRL-W: Window commands
7709 */
7710 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007711nv_window(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007712{
Bram Moolenaar938783d2017-07-16 20:13:26 +02007713 if (cap->nchar == ':')
Bram Moolenaar2efb3232017-12-19 12:27:23 +01007714 {
Bram Moolenaar938783d2017-07-16 20:13:26 +02007715 /* "CTRL-W :" is the same as typing ":"; useful in a terminal window */
Bram Moolenaar2efb3232017-12-19 12:27:23 +01007716 cap->cmdchar = ':';
7717 cap->nchar = NUL;
Bram Moolenaar938783d2017-07-16 20:13:26 +02007718 nv_colon(cap);
Bram Moolenaar2efb3232017-12-19 12:27:23 +01007719 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02007720 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007721 do_window(cap->nchar, cap->count0, NUL); /* everything is in window.c */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007722}
7723
7724/*
7725 * CTRL-Z: Suspend
7726 */
7727 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007728nv_suspend(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007729{
7730 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007731 if (VIsual_active)
7732 end_visual_mode(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007733 do_cmdline_cmd((char_u *)"st");
7734}
7735
7736/*
7737 * Commands starting with "g".
7738 */
7739 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007740nv_g_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007741{
7742 oparg_T *oap = cap->oap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007743 pos_T tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007744 int i;
7745 int flag = FALSE;
7746
7747 switch (cap->nchar)
7748 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007749 case Ctrl_A:
7750 case Ctrl_X:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007751#ifdef MEM_PROFILE
7752 /*
7753 * "g^A": dump log of used memory.
7754 */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007755 if (!VIsual_active && cap->nchar == Ctrl_A)
7756 vim_mem_profile_dump();
7757 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007758#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007759 /*
7760 * "g^A/g^X": sequentially increment visually selected region
7761 */
7762 if (VIsual_active)
7763 {
7764 cap->arg = TRUE;
7765 cap->cmdchar = cap->nchar;
Bram Moolenaard79e5502016-01-10 22:13:02 +01007766 cap->nchar = NUL;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007767 nv_addsub(cap);
7768 }
7769 else
7770 clearopbeep(oap);
7771 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007772
Bram Moolenaar071d4272004-06-13 20:20:40 +00007773 /*
7774 * "gR": Enter virtual replace mode.
7775 */
7776 case 'R':
7777 cap->arg = TRUE;
7778 nv_Replace(cap);
7779 break;
7780
7781 case 'r':
7782 nv_vreplace(cap);
7783 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007784
7785 case '&':
7786 do_cmdline_cmd((char_u *)"%s//~/&");
7787 break;
7788
Bram Moolenaar071d4272004-06-13 20:20:40 +00007789 /*
7790 * "gv": Reselect the previous Visual area. If Visual already active,
7791 * exchange previous and current Visual area.
7792 */
7793 case 'v':
7794 if (checkclearop(oap))
7795 break;
7796
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007797 if ( curbuf->b_visual.vi_start.lnum == 0
7798 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
7799 || curbuf->b_visual.vi_end.lnum == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007800 beep_flush();
7801 else
7802 {
7803 /* set w_cursor to the start of the Visual area, tpos to the end */
7804 if (VIsual_active)
7805 {
7806 i = VIsual_mode;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007807 VIsual_mode = curbuf->b_visual.vi_mode;
7808 curbuf->b_visual.vi_mode = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007809# ifdef FEAT_EVAL
7810 curbuf->b_visual_mode_eval = i;
7811# endif
7812 i = curwin->w_curswant;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007813 curwin->w_curswant = curbuf->b_visual.vi_curswant;
7814 curbuf->b_visual.vi_curswant = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007815
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007816 tpos = curbuf->b_visual.vi_end;
7817 curbuf->b_visual.vi_end = curwin->w_cursor;
7818 curwin->w_cursor = curbuf->b_visual.vi_start;
7819 curbuf->b_visual.vi_start = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007820 }
7821 else
7822 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007823 VIsual_mode = curbuf->b_visual.vi_mode;
7824 curwin->w_curswant = curbuf->b_visual.vi_curswant;
7825 tpos = curbuf->b_visual.vi_end;
7826 curwin->w_cursor = curbuf->b_visual.vi_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007827 }
7828
7829 VIsual_active = TRUE;
7830 VIsual_reselect = TRUE;
7831
7832 /* Set Visual to the start and w_cursor to the end of the Visual
7833 * area. Make sure they are on an existing character. */
7834 check_cursor();
7835 VIsual = curwin->w_cursor;
7836 curwin->w_cursor = tpos;
7837 check_cursor();
7838 update_topline();
7839 /*
7840 * When called from normal "g" command: start Select mode when
7841 * 'selectmode' contains "cmd". When called for K_SELECT, always
7842 * start Select mode.
7843 */
7844 if (cap->arg)
7845 VIsual_select = TRUE;
7846 else
7847 may_start_select('c');
7848#ifdef FEAT_MOUSE
7849 setmouse();
7850#endif
7851#ifdef FEAT_CLIPBOARD
7852 /* Make sure the clipboard gets updated. Needed because start and
7853 * end are still the same, and the selection needs to be owned */
7854 clip_star.vmode = NUL;
7855#endif
7856 redraw_curbuf_later(INVERTED);
7857 showmode();
7858 }
7859 break;
7860 /*
7861 * "gV": Don't reselect the previous Visual area after a Select mode
7862 * mapping of menu.
7863 */
7864 case 'V':
7865 VIsual_reselect = FALSE;
7866 break;
7867
7868 /*
7869 * "gh": start Select mode.
7870 * "gH": start Select line mode.
7871 * "g^H": start Select block mode.
7872 */
7873 case K_BS:
7874 cap->nchar = Ctrl_H;
7875 /* FALLTHROUGH */
7876 case 'h':
7877 case 'H':
7878 case Ctrl_H:
7879# ifdef EBCDIC
7880 /* EBCDIC: 'v'-'h' != '^v'-'^h' */
7881 if (cap->nchar == Ctrl_H)
7882 cap->cmdchar = Ctrl_V;
7883 else
7884# endif
7885 cap->cmdchar = cap->nchar + ('v' - 'h');
7886 cap->arg = TRUE;
7887 nv_visual(cap);
7888 break;
Bram Moolenaar641e2862012-07-25 15:06:34 +02007889
7890 /* "gn", "gN" visually select next/previous search match
7891 * "gn" selects next match
7892 * "gN" selects previous match
7893 */
7894 case 'N':
7895 case 'n':
7896 if (!current_search(cap->count1, cap->nchar == 'n'))
Bram Moolenaarf00dc262012-10-21 03:54:33 +02007897 clearopbeep(oap);
Bram Moolenaar641e2862012-07-25 15:06:34 +02007898 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007899
7900 /*
7901 * "gj" and "gk" two new funny movement keys -- up and down
7902 * movement based on *screen* line rather than *file* line.
7903 */
7904 case 'j':
7905 case K_DOWN:
7906 /* with 'nowrap' it works just like the normal "j" command; also when
7907 * in a closed fold */
7908 if (!curwin->w_p_wrap
7909#ifdef FEAT_FOLDING
7910 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7911#endif
7912 )
7913 {
7914 oap->motion_type = MLINE;
7915 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
7916 }
7917 else
7918 i = nv_screengo(oap, FORWARD, cap->count1);
7919 if (i == FAIL)
7920 clearopbeep(oap);
7921 break;
7922
7923 case 'k':
7924 case K_UP:
7925 /* with 'nowrap' it works just like the normal "k" command; also when
7926 * in a closed fold */
7927 if (!curwin->w_p_wrap
7928#ifdef FEAT_FOLDING
7929 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7930#endif
7931 )
7932 {
7933 oap->motion_type = MLINE;
7934 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
7935 }
7936 else
7937 i = nv_screengo(oap, BACKWARD, cap->count1);
7938 if (i == FAIL)
7939 clearopbeep(oap);
7940 break;
7941
7942 /*
7943 * "gJ": join two lines without inserting a space.
7944 */
7945 case 'J':
7946 nv_join(cap);
7947 break;
7948
7949 /*
7950 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
7951 * "gm": middle of "g0" and "g$".
7952 */
7953 case '^':
7954 flag = TRUE;
7955 /* FALLTHROUGH */
7956
7957 case '0':
7958 case 'm':
7959 case K_HOME:
7960 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007961 oap->motion_type = MCHAR;
7962 oap->inclusive = FALSE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02007963 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007964 {
Bram Moolenaar02631462017-09-22 15:20:32 +02007965 int width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007966 int width2 = width1 + curwin_col_off2();
7967
7968 validate_virtcol();
7969 i = 0;
7970 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
7971 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
7972 }
7973 else
7974 i = curwin->w_leftcol;
Bram Moolenaar64486672010-05-16 15:46:46 +02007975 /* Go to the middle of the screen line. When 'number' or
7976 * 'relativenumber' is on and lines are wrapping the middle can be more
7977 * to the left. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007978 if (cap->nchar == 'm')
Bram Moolenaar02631462017-09-22 15:20:32 +02007979 i += (curwin->w_width - curwin_col_off()
Bram Moolenaar071d4272004-06-13 20:20:40 +00007980 + ((curwin->w_p_wrap && i > 0)
7981 ? curwin_col_off2() : 0)) / 2;
7982 coladvance((colnr_T)i);
7983 if (flag)
7984 {
7985 do
7986 i = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01007987 while (VIM_ISWHITE(i) && oneright() == OK);
Bram Moolenaarf9514162018-11-22 03:08:29 +01007988 curwin->w_valid &= ~VALID_WCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007989 }
7990 curwin->w_set_curswant = TRUE;
7991 break;
7992
7993 case '_':
7994 /* "g_": to the last non-blank character in the line or <count> lines
7995 * downward. */
7996 cap->oap->motion_type = MCHAR;
7997 cap->oap->inclusive = TRUE;
7998 curwin->w_curswant = MAXCOL;
7999 if (cursor_down((long)(cap->count1 - 1),
8000 cap->oap->op_type == OP_NOP) == FAIL)
8001 clearopbeep(cap->oap);
8002 else
8003 {
8004 char_u *ptr = ml_get_curline();
8005
8006 /* In Visual mode we may end up after the line. */
8007 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
8008 --curwin->w_cursor.col;
8009
8010 /* Decrease the cursor column until it's on a non-blank. */
8011 while (curwin->w_cursor.col > 0
Bram Moolenaar1c465442017-03-12 20:10:05 +01008012 && VIM_ISWHITE(ptr[curwin->w_cursor.col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008013 --curwin->w_cursor.col;
8014 curwin->w_set_curswant = TRUE;
Bram Moolenaar5890b2c2010-01-12 15:42:37 +01008015 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008016 }
8017 break;
8018
8019 case '$':
8020 case K_END:
8021 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008022 {
8023 int col_off = curwin_col_off();
8024
8025 oap->motion_type = MCHAR;
8026 oap->inclusive = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02008027 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008028 {
8029 curwin->w_curswant = MAXCOL; /* so we stay at the end */
8030 if (cap->count1 == 1)
8031 {
Bram Moolenaar02631462017-09-22 15:20:32 +02008032 int width1 = curwin->w_width - col_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008033 int width2 = width1 + curwin_col_off2();
8034
8035 validate_virtcol();
8036 i = width1 - 1;
8037 if (curwin->w_virtcol >= (colnr_T)width1)
8038 i += ((curwin->w_virtcol - width1) / width2 + 1)
8039 * width2;
8040 coladvance((colnr_T)i);
Bram Moolenaarb69510e2013-07-09 17:08:29 +02008041
8042 /* Make sure we stick in this column. */
8043 validate_virtcol();
8044 curwin->w_curswant = curwin->w_virtcol;
8045 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008046 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
8047 {
8048 /*
8049 * Check for landing on a character that got split at
8050 * the end of the line. We do not want to advance to
8051 * the next screen line.
8052 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008053 if (curwin->w_virtcol > (colnr_T)i)
8054 --curwin->w_cursor.col;
8055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008056 }
8057 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
8058 clearopbeep(oap);
8059 }
8060 else
8061 {
Bram Moolenaar02631462017-09-22 15:20:32 +02008062 i = curwin->w_leftcol + curwin->w_width - col_off - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008063 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008064
8065 /* Make sure we stick in this column. */
8066 validate_virtcol();
8067 curwin->w_curswant = curwin->w_virtcol;
8068 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008069 }
8070 }
8071 break;
8072
8073 /*
8074 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
8075 */
8076 case '*':
8077 case '#':
8078#if POUND != '#'
8079 case POUND: /* pound sign (sometimes equal to '#') */
8080#endif
8081 case Ctrl_RSB: /* :tag or :tselect for current identifier */
8082 case ']': /* :tselect for current identifier */
8083 nv_ident(cap);
8084 break;
8085
8086 /*
8087 * ge and gE: go back to end of word
8088 */
8089 case 'e':
8090 case 'E':
8091 oap->motion_type = MCHAR;
8092 curwin->w_set_curswant = TRUE;
8093 oap->inclusive = TRUE;
8094 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
8095 clearopbeep(oap);
8096 break;
8097
8098 /*
8099 * "g CTRL-G": display info about cursor position
8100 */
8101 case Ctrl_G:
Bram Moolenaared767a22016-01-03 22:49:16 +01008102 cursor_pos_info(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008103 break;
8104
8105 /*
8106 * "gi": start Insert at the last position.
8107 */
8108 case 'i':
8109 if (curbuf->b_last_insert.lnum != 0)
8110 {
8111 curwin->w_cursor = curbuf->b_last_insert;
8112 check_cursor_lnum();
8113 i = (int)STRLEN(ml_get_curline());
8114 if (curwin->w_cursor.col > (colnr_T)i)
8115 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008116 if (virtual_active())
8117 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008118 curwin->w_cursor.col = i;
8119 }
8120 }
8121 cap->cmdchar = 'i';
8122 nv_edit(cap);
8123 break;
8124
8125 /*
8126 * "gI": Start insert in column 1.
8127 */
8128 case 'I':
8129 beginline(0);
8130 if (!checkclearopq(oap))
8131 invoke_edit(cap, FALSE, 'g', FALSE);
8132 break;
8133
8134#ifdef FEAT_SEARCHPATH
8135 /*
8136 * "gf": goto file, edit file under cursor
8137 * "]f" and "[f": can also be used.
8138 */
8139 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +00008140 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +00008141 nv_gotofile(cap);
8142 break;
8143#endif
8144
8145 /* "g'm" and "g`m": jump to mark without setting pcmark */
8146 case '\'':
8147 cap->arg = TRUE;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02008148 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008149 case '`':
8150 nv_gomark(cap);
8151 break;
8152
8153 /*
8154 * "gs": Goto sleep.
8155 */
8156 case 's':
8157 do_sleep(cap->count1 * 1000L);
8158 break;
8159
8160 /*
8161 * "ga": Display the ascii value of the character under the
8162 * cursor. It is displayed in decimal, hex, and octal. -- webb
8163 */
8164 case 'a':
8165 do_ascii(NULL);
8166 break;
8167
Bram Moolenaar071d4272004-06-13 20:20:40 +00008168 /*
8169 * "g8": Display the bytes used for the UTF-8 character under the
8170 * cursor. It is displayed in hex.
Bram Moolenaara83c3e02006-03-17 23:10:44 +00008171 * "8g8" finds illegal byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008172 */
8173 case '8':
Bram Moolenaara83c3e02006-03-17 23:10:44 +00008174 if (cap->count0 == 8)
8175 utf_find_illegal();
8176 else
8177 show_utf8();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008178 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008179
Bram Moolenaar60402d62017-04-20 18:54:50 +02008180 /* "g<": show scrollback text */
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00008181 case '<':
8182 show_sb_text();
8183 break;
8184
Bram Moolenaar071d4272004-06-13 20:20:40 +00008185 /*
8186 * "gg": Goto the first line in file. With a count it goes to
8187 * that line number like for "G". -- webb
8188 */
8189 case 'g':
8190 cap->arg = FALSE;
8191 nv_goto(cap);
8192 break;
8193
8194 /*
8195 * Two-character operators:
8196 * "gq" Format text
8197 * "gw" Format text and keep cursor position
8198 * "g~" Toggle the case of the text.
8199 * "gu" Change text to lower case.
8200 * "gU" Change text to upper case.
8201 * "g?" rot13 encoding
Bram Moolenaar12033fb2005-12-16 21:49:31 +00008202 * "g@" call 'operatorfunc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008203 */
8204 case 'q':
8205 case 'w':
8206 oap->cursor_start = curwin->w_cursor;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02008207 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008208 case '~':
8209 case 'u':
8210 case 'U':
8211 case '?':
Bram Moolenaar12033fb2005-12-16 21:49:31 +00008212 case '@':
Bram Moolenaar071d4272004-06-13 20:20:40 +00008213 nv_operator(cap);
8214 break;
8215
8216 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00008217 * "gd": Find first occurrence of pattern under the cursor in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00008218 * current function
8219 * "gD": idem, but in the current file.
8220 */
8221 case 'd':
8222 case 'D':
Bram Moolenaarf75a9632005-09-13 21:20:47 +00008223 nv_gd(oap, cap->nchar, (int)cap->count0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008224 break;
8225
8226#ifdef FEAT_MOUSE
8227 /*
8228 * g<*Mouse> : <C-*mouse>
8229 */
8230 case K_MIDDLEMOUSE:
8231 case K_MIDDLEDRAG:
8232 case K_MIDDLERELEASE:
8233 case K_LEFTMOUSE:
8234 case K_LEFTDRAG:
8235 case K_LEFTRELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01008236 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008237 case K_RIGHTMOUSE:
8238 case K_RIGHTDRAG:
8239 case K_RIGHTRELEASE:
8240 case K_X1MOUSE:
8241 case K_X1DRAG:
8242 case K_X1RELEASE:
8243 case K_X2MOUSE:
8244 case K_X2DRAG:
8245 case K_X2RELEASE:
8246 mod_mask = MOD_MASK_CTRL;
8247 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
8248 break;
8249#endif
8250
8251 case K_IGNORE:
8252 break;
8253
8254 /*
8255 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
8256 */
8257 case 'p':
8258 case 'P':
8259 nv_put(cap);
8260 break;
8261
8262#ifdef FEAT_BYTEOFF
8263 /* "go": goto byte count from start of buffer */
8264 case 'o':
8265 goto_byte(cap->count0);
8266 break;
8267#endif
8268
8269 /* "gQ": improved Ex mode */
8270 case 'Q':
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00008271 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00008272 {
8273 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00008274 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008275 break;
8276 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00008277
Bram Moolenaar071d4272004-06-13 20:20:40 +00008278 if (!checkclearopq(oap))
8279 do_exmode(TRUE);
8280 break;
8281
8282#ifdef FEAT_JUMPLIST
8283 case ',':
8284 nv_pcmark(cap);
8285 break;
8286
8287 case ';':
8288 cap->count1 = -cap->count1;
8289 nv_pcmark(cap);
8290 break;
8291#endif
8292
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008293 case 't':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02008294 if (!checkclearop(oap))
8295 goto_tabpage((int)cap->count0);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008296 break;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008297 case 'T':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02008298 if (!checkclearop(oap))
8299 goto_tabpage(-(int)cap->count1);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008300 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008301
Bram Moolenaar35a2e192006-03-13 22:07:11 +00008302 case '+':
8303 case '-': /* "g+" and "g-": undo or redo along the timeline */
8304 if (!checkclearopq(oap))
Bram Moolenaard3667a22006-03-16 21:35:52 +00008305 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
Bram Moolenaar730cde92010-06-27 05:18:54 +02008306 FALSE, FALSE, FALSE);
Bram Moolenaar35a2e192006-03-13 22:07:11 +00008307 break;
8308
Bram Moolenaar071d4272004-06-13 20:20:40 +00008309 default:
8310 clearopbeep(oap);
8311 break;
8312 }
8313}
8314
8315/*
8316 * Handle "o" and "O" commands.
8317 */
8318 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008319n_opencmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008320{
Bram Moolenaar860cae12010-06-05 23:22:07 +02008321#ifdef FEAT_CONCEAL
8322 linenr_T oldline = curwin->w_cursor.lnum;
8323#endif
8324
Bram Moolenaar071d4272004-06-13 20:20:40 +00008325 if (!checkclearopq(cap->oap))
8326 {
8327#ifdef FEAT_FOLDING
8328 if (cap->cmdchar == 'O')
8329 /* Open above the first line of a folded sequence of lines */
8330 (void)hasFolding(curwin->w_cursor.lnum,
8331 &curwin->w_cursor.lnum, NULL);
8332 else
8333 /* Open below the last line of a folded sequence of lines */
8334 (void)hasFolding(curwin->w_cursor.lnum,
8335 NULL, &curwin->w_cursor.lnum);
8336#endif
8337 if (u_save((linenr_T)(curwin->w_cursor.lnum -
8338 (cap->cmdchar == 'O' ? 1 : 0)),
8339 (linenr_T)(curwin->w_cursor.lnum +
8340 (cap->cmdchar == 'o' ? 1 : 0))
8341 ) == OK
8342 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
8343#ifdef FEAT_COMMENTS
8344 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM :
8345#endif
Bram Moolenaar24a2d722018-04-24 19:36:43 +02008346 0, 0) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008347 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02008348#ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02008349 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01008350 redrawWinline(curwin, oldline);
Bram Moolenaar860cae12010-06-05 23:22:07 +02008351#endif
Bram Moolenaard710e0d2015-06-10 12:16:47 +02008352#ifdef FEAT_SYN_HL
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02008353 if (curwin->w_p_cul)
8354 /* force redraw of cursorline */
8355 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaard710e0d2015-06-10 12:16:47 +02008356#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008357 /* When '#' is in 'cpoptions' ignore the count. */
8358 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
8359 cap->count1 = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008360 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
8361 }
8362 }
8363}
8364
8365/*
8366 * "." command: redo last change.
8367 */
8368 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008369nv_dot(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008370{
8371 if (!checkclearopq(cap->oap))
8372 {
8373 /*
8374 * If "restart_edit" is TRUE, the last but one command is repeated
8375 * instead of the last command (inserting text). This is used for
8376 * CTRL-O <.> in insert mode.
8377 */
8378 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
8379 clearopbeep(cap->oap);
8380 }
8381}
8382
8383/*
8384 * CTRL-R: undo undo
8385 */
8386 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008387nv_redo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008388{
8389 if (!checkclearopq(cap->oap))
8390 {
8391 u_redo((int)cap->count1);
8392 curwin->w_set_curswant = TRUE;
8393 }
8394}
8395
8396/*
8397 * Handle "U" command.
8398 */
8399 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008400nv_Undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008401{
8402 /* In Visual mode and typing "gUU" triggers an operator */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008403 if (cap->oap->op_type == OP_UPPER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008404 {
8405 /* translate "gUU" to "gUgU" */
8406 cap->cmdchar = 'g';
8407 cap->nchar = 'U';
8408 nv_operator(cap);
8409 }
8410 else if (!checkclearopq(cap->oap))
8411 {
8412 u_undoline();
8413 curwin->w_set_curswant = TRUE;
8414 }
8415}
8416
8417/*
8418 * '~' command: If tilde is not an operator and Visual is off: swap case of a
8419 * single character.
8420 */
8421 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008422nv_tilde(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008423{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008424 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE)
Bram Moolenaarf2732452018-06-03 14:47:35 +02008425 {
8426#ifdef FEAT_JOB_CHANNEL
8427 if (bt_prompt(curbuf) && !prompt_curpos_editable())
8428 {
8429 clearopbeep(cap->oap);
8430 return;
8431 }
8432#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008433 n_swapchar(cap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02008434 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008435 else
8436 nv_operator(cap);
8437}
8438
8439/*
8440 * Handle an operator command.
8441 * The actual work is done by do_pending_operator().
8442 */
8443 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008444nv_operator(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008445{
8446 int op_type;
8447
8448 op_type = get_op_type(cap->cmdchar, cap->nchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02008449#ifdef FEAT_JOB_CHANNEL
8450 if (bt_prompt(curbuf) && op_is_change(op_type) && !prompt_curpos_editable())
8451 {
8452 clearopbeep(cap->oap);
8453 return;
8454 }
8455#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008456
8457 if (op_type == cap->oap->op_type) /* double operator works on lines */
8458 nv_lineop(cap);
8459 else if (!checkclearop(cap->oap))
8460 {
8461 cap->oap->start = curwin->w_cursor;
8462 cap->oap->op_type = op_type;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00008463#ifdef FEAT_EVAL
8464 set_op_var(op_type);
8465#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008466 }
8467}
8468
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00008469#ifdef FEAT_EVAL
8470/*
8471 * Set v:operator to the characters for "optype".
8472 */
8473 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008474set_op_var(int optype)
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00008475{
8476 char_u opchars[3];
8477
8478 if (optype == OP_NOP)
8479 set_vim_var_string(VV_OP, NULL, 0);
8480 else
8481 {
8482 opchars[0] = get_op_char(optype);
8483 opchars[1] = get_extra_op_char(optype);
8484 opchars[2] = NUL;
8485 set_vim_var_string(VV_OP, opchars, -1);
8486 }
8487}
8488#endif
8489
Bram Moolenaar071d4272004-06-13 20:20:40 +00008490/*
8491 * Handle linewise operator "dd", "yy", etc.
8492 *
8493 * "_" is is a strange motion command that helps make operators more logical.
8494 * It is actually implemented, but not documented in the real Vi. This motion
8495 * command actually refers to "the current line". Commands like "dd" and "yy"
8496 * are really an alternate form of "d_" and "y_". It does accept a count, so
8497 * "d3_" works to delete 3 lines.
8498 */
8499 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008500nv_lineop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008501{
8502 cap->oap->motion_type = MLINE;
8503 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
8504 clearopbeep(cap->oap);
Bram Moolenaar83dadaf2012-12-12 17:33:32 +01008505 else if ( (cap->oap->op_type == OP_DELETE /* only with linewise motions */
8506 && cap->oap->motion_force != 'v'
8507 && cap->oap->motion_force != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008508 || cap->oap->op_type == OP_LSHIFT
8509 || cap->oap->op_type == OP_RSHIFT)
8510 beginline(BL_SOL | BL_FIX);
8511 else if (cap->oap->op_type != OP_YANK) /* 'Y' does not move cursor */
8512 beginline(BL_WHITE | BL_FIX);
8513}
8514
8515/*
8516 * <Home> command.
8517 */
8518 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008519nv_home(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008520{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00008521 /* CTRL-HOME is like "gg" */
8522 if (mod_mask & MOD_MASK_CTRL)
8523 nv_goto(cap);
8524 else
8525 {
8526 cap->count0 = 1;
8527 nv_pipe(cap);
8528 }
Bram Moolenaara88d9682005-03-25 21:45:43 +00008529 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
8530 one-character line). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008531}
8532
8533/*
8534 * "|" command.
8535 */
8536 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008537nv_pipe(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008538{
8539 cap->oap->motion_type = MCHAR;
8540 cap->oap->inclusive = FALSE;
8541 beginline(0);
8542 if (cap->count0 > 0)
8543 {
8544 coladvance((colnr_T)(cap->count0 - 1));
8545 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
8546 }
8547 else
8548 curwin->w_curswant = 0;
8549 /* keep curswant at the column where we wanted to go, not where
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01008550 * we ended; differs if line is too short */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008551 curwin->w_set_curswant = FALSE;
8552}
8553
8554/*
8555 * Handle back-word command "b" and "B".
8556 * cap->arg is 1 for "B"
8557 */
8558 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008559nv_bck_word(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008560{
8561 cap->oap->motion_type = MCHAR;
8562 cap->oap->inclusive = FALSE;
8563 curwin->w_set_curswant = TRUE;
8564 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
8565 clearopbeep(cap->oap);
8566#ifdef FEAT_FOLDING
8567 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8568 foldOpenCursor();
8569#endif
8570}
8571
8572/*
8573 * Handle word motion commands "e", "E", "w" and "W".
8574 * cap->arg is TRUE for "E" and "W".
8575 */
8576 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008577nv_wordcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008578{
8579 int n;
8580 int word_end;
8581 int flag = FALSE;
Bram Moolenaardfefb982008-04-01 10:06:39 +00008582 pos_T startpos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008583
8584 /*
8585 * Set inclusive for the "E" and "e" command.
8586 */
8587 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
8588 word_end = TRUE;
8589 else
8590 word_end = FALSE;
8591 cap->oap->inclusive = word_end;
8592
8593 /*
8594 * "cw" and "cW" are a special case.
8595 */
8596 if (!word_end && cap->oap->op_type == OP_CHANGE)
8597 {
8598 n = gchar_cursor();
8599 if (n != NUL) /* not an empty line */
8600 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01008601 if (VIM_ISWHITE(n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008602 {
8603 /*
8604 * Reproduce a funny Vi behaviour: "cw" on a blank only
8605 * changes one character, not all blanks until the start of
8606 * the next word. Only do this when the 'w' flag is included
8607 * in 'cpoptions'.
8608 */
8609 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
8610 {
8611 cap->oap->inclusive = TRUE;
8612 cap->oap->motion_type = MCHAR;
8613 return;
8614 }
8615 }
8616 else
8617 {
8618 /*
8619 * This is a little strange. To match what the real Vi does,
8620 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
8621 * that we are not on a space or a TAB. This seems impolite
8622 * at first, but it's really more what we mean when we say
8623 * 'cw'.
8624 * Another strangeness: When standing on the end of a word
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02008625 * "ce" will change until the end of the next word, but "cw"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008626 * will change only one character! This is done by setting
8627 * flag.
8628 */
8629 cap->oap->inclusive = TRUE;
8630 word_end = TRUE;
8631 flag = TRUE;
8632 }
8633 }
8634 }
8635
8636 cap->oap->motion_type = MCHAR;
8637 curwin->w_set_curswant = TRUE;
8638 if (word_end)
8639 n = end_word(cap->count1, cap->arg, flag, FALSE);
8640 else
8641 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
8642
Bram Moolenaardfefb982008-04-01 10:06:39 +00008643 /* Don't leave the cursor on the NUL past the end of line. Unless we
8644 * didn't move it forward. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01008645 if (LT_POS(startpos, curwin->w_cursor))
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008646 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008647
8648 if (n == FAIL && cap->oap->op_type == OP_NOP)
8649 clearopbeep(cap->oap);
8650 else
8651 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008652 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008653#ifdef FEAT_FOLDING
8654 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8655 foldOpenCursor();
8656#endif
8657 }
8658}
8659
8660/*
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008661 * Used after a movement command: If the cursor ends up on the NUL after the
8662 * end of the line, may move it back to the last character and make the motion
8663 * inclusive.
8664 */
8665 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008666adjust_cursor(oparg_T *oap)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008667{
8668 /* The cursor cannot remain on the NUL when:
8669 * - the column is > 0
8670 * - not in Visual mode or 'selection' is "o"
8671 * - 'virtualedit' is not "all" and not "onemore".
8672 */
8673 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008674 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01008675 && !virtual_active() && (ve_flags & VE_ONEMORE) == 0)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008676 {
8677 --curwin->w_cursor.col;
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008678 /* prevent cursor from moving on the trail byte */
8679 if (has_mbyte)
8680 mb_adjust_cursor();
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008681 oap->inclusive = TRUE;
8682 }
8683}
8684
8685/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008686 * "0" and "^" commands.
8687 * cap->arg is the argument for beginline().
8688 */
8689 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008690nv_beginline(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008691{
8692 cap->oap->motion_type = MCHAR;
8693 cap->oap->inclusive = FALSE;
8694 beginline(cap->arg);
8695#ifdef FEAT_FOLDING
8696 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8697 foldOpenCursor();
8698#endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00008699 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
8700 one-character line). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008701}
8702
Bram Moolenaar071d4272004-06-13 20:20:40 +00008703/*
8704 * In exclusive Visual mode, may include the last character.
8705 */
8706 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008707adjust_for_sel(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008708{
8709 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01008710 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008711 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008712 if (has_mbyte)
8713 inc_cursor();
8714 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008715 ++curwin->w_cursor.col;
8716 cap->oap->inclusive = FALSE;
8717 }
8718}
8719
8720/*
8721 * Exclude last character at end of Visual area for 'selection' == "exclusive".
8722 * Should check VIsual_mode before calling this.
8723 * Returns TRUE when backed up to the previous line.
8724 */
8725 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01008726unadjust_for_sel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008727{
8728 pos_T *pp;
8729
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01008730 if (*p_sel == 'e' && !EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008731 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01008732 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008733 pp = &curwin->w_cursor;
8734 else
8735 pp = &VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008736 if (pp->coladd > 0)
8737 --pp->coladd;
8738 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008739 if (pp->col > 0)
8740 {
8741 --pp->col;
Bram Moolenaar03a807a2011-07-07 15:08:58 +02008742 mb_adjustpos(curbuf, pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008743 }
8744 else if (pp->lnum > 1)
8745 {
8746 --pp->lnum;
8747 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
8748 return TRUE;
8749 }
8750 }
8751 return FALSE;
8752}
8753
8754/*
8755 * SELECT key in Normal or Visual mode: end of Select mode mapping.
8756 */
8757 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008758nv_select(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008759{
8760 if (VIsual_active)
8761 VIsual_select = TRUE;
8762 else if (VIsual_reselect)
8763 {
8764 cap->nchar = 'v'; /* fake "gv" command */
8765 cap->arg = TRUE;
8766 nv_g_cmd(cap);
8767 }
8768}
8769
Bram Moolenaar071d4272004-06-13 20:20:40 +00008770
8771/*
8772 * "G", "gg", CTRL-END, CTRL-HOME.
8773 * cap->arg is TRUE for "G".
8774 */
8775 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008776nv_goto(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008777{
8778 linenr_T lnum;
8779
8780 if (cap->arg)
8781 lnum = curbuf->b_ml.ml_line_count;
8782 else
8783 lnum = 1L;
8784 cap->oap->motion_type = MLINE;
8785 setpcmark();
8786
8787 /* When a count is given, use it instead of the default lnum */
8788 if (cap->count0 != 0)
8789 lnum = cap->count0;
8790 if (lnum < 1L)
8791 lnum = 1L;
8792 else if (lnum > curbuf->b_ml.ml_line_count)
8793 lnum = curbuf->b_ml.ml_line_count;
8794 curwin->w_cursor.lnum = lnum;
8795 beginline(BL_SOL | BL_FIX);
8796#ifdef FEAT_FOLDING
8797 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
8798 foldOpenCursor();
8799#endif
8800}
8801
8802/*
8803 * CTRL-\ in Normal mode.
8804 */
8805 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008806nv_normal(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008807{
8808 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
8809 {
8810 clearop(cap->oap);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00008811 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008812 clear_cmdline = TRUE; /* unshow mode later */
8813 restart_edit = 0;
8814#ifdef FEAT_CMDWIN
8815 if (cmdwin_type != 0)
8816 cmdwin_result = Ctrl_C;
8817#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008818 if (VIsual_active)
8819 {
8820 end_visual_mode(); /* stop Visual */
8821 redraw_curbuf_later(INVERTED);
8822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008823 /* CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. */
8824 if (cap->nchar == Ctrl_G && p_im)
8825 restart_edit = 'a';
8826 }
8827 else
8828 clearopbeep(cap->oap);
8829}
8830
8831/*
8832 * ESC in Normal mode: beep, but don't flush buffers.
8833 * Don't even beep if we are canceling a command.
8834 */
8835 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008836nv_esc(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008837{
8838 int no_reason;
8839
8840 no_reason = (cap->oap->op_type == OP_NOP
8841 && cap->opcount == 0
8842 && cap->count0 == 0
8843 && cap->oap->regname == 0
8844 && !p_im);
8845
8846 if (cap->arg) /* TRUE for CTRL-C */
8847 {
8848 if (restart_edit == 0
8849#ifdef FEAT_CMDWIN
8850 && cmdwin_type == 0
8851#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008852 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00008853 && no_reason)
Bram Moolenaara84a3dd2019-03-25 22:21:24 +01008854 {
8855 if (anyBufIsChanged())
8856 msg(_("Type :qa! and press <Enter> to abandon all changes and exit Vim"));
8857 else
8858 msg(_("Type :qa and press <Enter> to exit Vim"));
8859 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008860
8861 /* Don't reset "restart_edit" when 'insertmode' is set, it won't be
8862 * set again below when halfway a mapping. */
8863 if (!p_im)
8864 restart_edit = 0;
8865#ifdef FEAT_CMDWIN
8866 if (cmdwin_type != 0)
8867 {
8868 cmdwin_result = K_IGNORE;
8869 got_int = FALSE; /* don't stop executing autocommands et al. */
8870 return;
8871 }
8872#endif
8873 }
8874
Bram Moolenaar071d4272004-06-13 20:20:40 +00008875 if (VIsual_active)
8876 {
8877 end_visual_mode(); /* stop Visual */
8878 check_cursor_col(); /* make sure cursor is not beyond EOL */
8879 curwin->w_set_curswant = TRUE;
8880 redraw_curbuf_later(INVERTED);
8881 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008882 else if (no_reason)
Bram Moolenaar165bc692015-07-21 17:53:25 +02008883 vim_beep(BO_ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008884 clearop(cap->oap);
8885
8886 /* A CTRL-C is often used at the start of a menu. When 'insertmode' is
8887 * set return to Insert mode afterwards. */
Bram Moolenaare2c38102016-01-31 14:55:40 +01008888 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008889 restart_edit = 'a';
8890}
8891
8892/*
8893 * Handle "A", "a", "I", "i" and <Insert> commands.
Bram Moolenaarec2da362017-01-21 20:04:22 +01008894 * Also handle K_PS, start bracketed paste.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008895 */
8896 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008897nv_edit(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008898{
8899 /* <Insert> is equal to "i" */
8900 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
8901 cap->cmdchar = 'i';
8902
Bram Moolenaar071d4272004-06-13 20:20:40 +00008903 /* in Visual mode "A" and "I" are an operator */
8904 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
Bram Moolenaareef9add2017-09-16 15:38:04 +02008905 {
8906#ifdef FEAT_TERMINAL
8907 if (term_in_normal_mode())
8908 {
8909 end_visual_mode();
8910 clearop(cap->oap);
8911 term_enter_job_mode();
8912 return;
8913 }
8914#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008915 v_visop(cap);
Bram Moolenaareef9add2017-09-16 15:38:04 +02008916 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008917
8918 /* in Visual mode and after an operator "a" and "i" are for text objects */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008919 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
8920 && (cap->oap->op_type != OP_NOP || VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008921 {
8922#ifdef FEAT_TEXTOBJ
8923 nv_object(cap);
8924#else
8925 clearopbeep(cap->oap);
8926#endif
8927 }
Bram Moolenaar662d9382017-07-31 22:56:24 +02008928#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02008929 else if (term_in_normal_mode())
Bram Moolenaar662d9382017-07-31 22:56:24 +02008930 {
8931 clearop(cap->oap);
Bram Moolenaar6d819742017-08-06 14:57:49 +02008932 term_enter_job_mode();
Bram Moolenaar662d9382017-07-31 22:56:24 +02008933 return;
8934 }
8935#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008936 else if (!curbuf->b_p_ma && !p_im)
8937 {
8938 /* Only give this error when 'insertmode' is off. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008939 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008940 clearop(cap->oap);
Bram Moolenaarec2da362017-01-21 20:04:22 +01008941 if (cap->cmdchar == K_PS)
8942 /* drop the pasted text */
8943 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008944 }
Bram Moolenaara1891842017-02-04 21:34:31 +01008945 else if (cap->cmdchar == K_PS && VIsual_active)
8946 {
8947 pos_T old_pos = curwin->w_cursor;
8948 pos_T old_visual = VIsual;
8949
8950 /* In Visual mode the selected text is deleted. */
8951 if (VIsual_mode == 'V' || curwin->w_cursor.lnum != VIsual.lnum)
8952 {
8953 shift_delete_registers();
8954 cap->oap->regname = '1';
8955 }
8956 else
8957 cap->oap->regname = '-';
8958 cap->cmdchar = 'd';
8959 cap->nchar = NUL;
8960 nv_operator(cap);
8961 do_pending_operator(cap, 0, FALSE);
8962 cap->cmdchar = K_PS;
8963
8964 /* When the last char in the line was deleted then append. Detect this
8965 * by checking if the cursor moved to before the Visual area. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01008966 if (*ml_get_cursor() != NUL && LT_POS(curwin->w_cursor, old_pos)
8967 && LT_POS(curwin->w_cursor, old_visual))
Bram Moolenaara1891842017-02-04 21:34:31 +01008968 inc_cursor();
8969
8970 /* Insert to replace the deleted text with the pasted text. */
8971 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
8972 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008973 else if (!checkclearopq(cap->oap))
8974 {
8975 switch (cap->cmdchar)
8976 {
8977 case 'A': /* "A"ppend after the line */
8978 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008979 if (ve_flags == VE_ALL)
8980 {
8981 int save_State = State;
8982
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02008983 /* Pretend Insert mode here to allow the cursor on the
Bram Moolenaar071d4272004-06-13 20:20:40 +00008984 * character past the end of the line */
8985 State = INSERT;
8986 coladvance((colnr_T)MAXCOL);
8987 State = save_State;
8988 }
8989 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008990 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
8991 break;
8992
8993 case 'I': /* "I"nsert before the first non-blank */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00008994 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
8995 beginline(BL_WHITE);
8996 else
8997 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008998 break;
8999
Bram Moolenaara1891842017-02-04 21:34:31 +01009000 case K_PS:
9001 /* Bracketed paste works like "a"ppend, unless the cursor is in
9002 * the first column, then it inserts. */
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01009003 if (curwin->w_cursor.col == 0)
9004 break;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02009005 /* FALLTHROUGH */
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01009006
Bram Moolenaar071d4272004-06-13 20:20:40 +00009007 case 'a': /* "a"ppend is like "i"nsert on the next character. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009008 /* increment coladd when in virtual space, increment the
9009 * column otherwise, also to append after an unprintable char */
9010 if (virtual_active()
9011 && (curwin->w_cursor.coladd > 0
9012 || *ml_get_cursor() == NUL
9013 || *ml_get_cursor() == TAB))
9014 curwin->w_cursor.coladd++;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01009015 else if (*ml_get_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009016 inc_cursor();
9017 break;
9018 }
9019
Bram Moolenaar071d4272004-06-13 20:20:40 +00009020 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
9021 {
9022 int save_State = State;
9023
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02009024 /* Pretend Insert mode here to allow the cursor on the
Bram Moolenaar071d4272004-06-13 20:20:40 +00009025 * character past the end of the line */
9026 State = INSERT;
9027 coladvance(getviscol());
9028 State = save_State;
9029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009030
9031 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
9032 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01009033 else if (cap->cmdchar == K_PS)
9034 /* drop the pasted text */
9035 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009036}
9037
9038/*
9039 * Invoke edit() and take care of "restart_edit" and the return value.
9040 */
9041 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009042invoke_edit(
9043 cmdarg_T *cap,
9044 int repl, /* "r" or "gr" command */
9045 int cmd,
9046 int startln)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009047{
9048 int restart_edit_save = 0;
9049
9050 /* Complicated: When the user types "a<C-O>a" we don't want to do Insert
9051 * mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
9052 * it. */
9053 if (repl || !stuff_empty())
9054 restart_edit_save = restart_edit;
9055 else
9056 restart_edit_save = 0;
9057
9058 /* Always reset "restart_edit", this is not a restarted edit. */
9059 restart_edit = 0;
9060
9061 if (edit(cmd, startln, cap->count1))
9062 cap->retval |= CA_COMMAND_BUSY;
9063
9064 if (restart_edit == 0)
9065 restart_edit = restart_edit_save;
9066}
9067
9068#ifdef FEAT_TEXTOBJ
9069/*
9070 * "a" or "i" while an operator is pending or in Visual mode: object motion.
9071 */
9072 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009073nv_object(
9074 cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009075{
9076 int flag;
9077 int include;
9078 char_u *mps_save;
9079
9080 if (cap->cmdchar == 'i')
9081 include = FALSE; /* "ix" = inner object: exclude white space */
9082 else
9083 include = TRUE; /* "ax" = an object: include white space */
9084
9085 /* Make sure (), [], {} and <> are in 'matchpairs' */
9086 mps_save = curbuf->b_p_mps;
9087 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
9088
9089 switch (cap->nchar)
9090 {
9091 case 'w': /* "aw" = a word */
9092 flag = current_word(cap->oap, cap->count1, include, FALSE);
9093 break;
9094 case 'W': /* "aW" = a WORD */
9095 flag = current_word(cap->oap, cap->count1, include, TRUE);
9096 break;
9097 case 'b': /* "ab" = a braces block */
9098 case '(':
9099 case ')':
9100 flag = current_block(cap->oap, cap->count1, include, '(', ')');
9101 break;
9102 case 'B': /* "aB" = a Brackets block */
9103 case '{':
9104 case '}':
9105 flag = current_block(cap->oap, cap->count1, include, '{', '}');
9106 break;
9107 case '[': /* "a[" = a [] block */
9108 case ']':
9109 flag = current_block(cap->oap, cap->count1, include, '[', ']');
9110 break;
9111 case '<': /* "a<" = a <> block */
9112 case '>':
9113 flag = current_block(cap->oap, cap->count1, include, '<', '>');
9114 break;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00009115 case 't': /* "at" = a tag block (xml and html) */
Bram Moolenaarb6c27352015-03-05 19:57:49 +01009116 /* Do not adjust oap->end in do_pending_operator()
9117 * otherwise there are different results for 'dit'
9118 * (note leading whitespace in last line):
9119 * 1) <b> 2) <b>
9120 * foobar foobar
9121 * </b> </b>
9122 */
9123 cap->retval |= CA_NO_ADJ_OP_END;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00009124 flag = current_tagblock(cap->oap, cap->count1, include);
9125 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009126 case 'p': /* "ap" = a paragraph */
9127 flag = current_par(cap->oap, cap->count1, include, 'p');
9128 break;
9129 case 's': /* "as" = a sentence */
9130 flag = current_sent(cap->oap, cap->count1, include);
9131 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00009132 case '"': /* "a"" = a double quoted string */
9133 case '\'': /* "a'" = a single quoted string */
9134 case '`': /* "a`" = a backtick quoted string */
9135 flag = current_quote(cap->oap, cap->count1, include,
9136 cap->nchar);
9137 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009138#if 0 /* TODO */
9139 case 'S': /* "aS" = a section */
9140 case 'f': /* "af" = a filename */
9141 case 'u': /* "au" = a URL */
9142#endif
9143 default:
9144 flag = FAIL;
9145 break;
9146 }
9147
9148 curbuf->b_p_mps = mps_save;
9149 if (flag == FAIL)
9150 clearopbeep(cap->oap);
9151 adjust_cursor_col();
9152 curwin->w_set_curswant = TRUE;
9153}
9154#endif
9155
9156/*
9157 * "q" command: Start/stop recording.
9158 * "q:", "q/", "q?": edit command-line in command-line window.
9159 */
9160 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009161nv_record(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009162{
9163 if (cap->oap->op_type == OP_FORMAT)
9164 {
9165 /* "gqq" is the same as "gqgq": format line */
9166 cap->cmdchar = 'g';
9167 cap->nchar = 'q';
9168 nv_operator(cap);
9169 }
9170 else if (!checkclearop(cap->oap))
9171 {
9172#ifdef FEAT_CMDWIN
9173 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
9174 {
9175 stuffcharReadbuff(cap->nchar);
9176 stuffcharReadbuff(K_CMDWIN);
9177 }
9178 else
9179#endif
9180 /* (stop) recording into a named register, unless executing a
9181 * register */
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02009182 if (reg_executing == 0 && do_record(cap->nchar) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009183 clearopbeep(cap->oap);
9184 }
9185}
9186
9187/*
9188 * Handle the "@r" command.
9189 */
9190 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009191nv_at(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009192{
9193 if (checkclearop(cap->oap))
9194 return;
9195#ifdef FEAT_EVAL
9196 if (cap->nchar == '=')
9197 {
9198 if (get_expr_register() == NUL)
9199 return;
9200 }
9201#endif
9202 while (cap->count1-- && !got_int)
9203 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00009204 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009205 {
9206 clearopbeep(cap->oap);
9207 break;
9208 }
9209 line_breakcheck();
9210 }
9211}
9212
9213/*
9214 * Handle the CTRL-U and CTRL-D commands.
9215 */
9216 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009217nv_halfpage(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009218{
9219 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
9220 || (cap->cmdchar == Ctrl_D
9221 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
9222 clearopbeep(cap->oap);
9223 else if (!checkclearop(cap->oap))
9224 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
9225}
9226
9227/*
9228 * Handle "J" or "gJ" command.
9229 */
9230 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009231nv_join(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009232{
Bram Moolenaar071d4272004-06-13 20:20:40 +00009233 if (VIsual_active) /* join the visual lines */
9234 nv_operator(cap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009235 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009236 {
9237 if (cap->count0 <= 1)
9238 cap->count0 = 2; /* default for join is two lines! */
9239 if (curwin->w_cursor.lnum + cap->count0 - 1 >
9240 curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009241 {
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01009242 /* can't join when on the last line */
9243 if (cap->count0 <= 2)
9244 {
9245 clearopbeep(cap->oap);
9246 return;
9247 }
9248 cap->count0 = curbuf->b_ml.ml_line_count
9249 - curwin->w_cursor.lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009250 }
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01009251
9252 prep_redo(cap->oap->regname, cap->count0,
9253 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
9254 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009255 }
9256}
9257
9258/*
9259 * "P", "gP", "p" and "gp" commands.
9260 */
9261 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009262nv_put(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009263{
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02009264 nv_put_opt(cap, FALSE);
9265}
9266
9267/*
9268 * "P", "gP", "p" and "gp" commands.
9269 * "fix_indent" is TRUE for "[p", "[P", "]p" and "]P".
9270 */
9271 static void
9272nv_put_opt(cmdarg_T *cap, int fix_indent)
9273{
Bram Moolenaar071d4272004-06-13 20:20:40 +00009274 int regname = 0;
9275 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009276 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009277 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009278 int dir;
9279 int flags = 0;
9280
9281 if (cap->oap->op_type != OP_NOP)
9282 {
9283#ifdef FEAT_DIFF
9284 /* "dp" is ":diffput" */
9285 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
9286 {
9287 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01009288 nv_diffgetput(TRUE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009289 }
9290 else
9291#endif
9292 clearopbeep(cap->oap);
9293 }
Bram Moolenaarf2732452018-06-03 14:47:35 +02009294#ifdef FEAT_JOB_CHANNEL
9295 else if (bt_prompt(curbuf) && !prompt_curpos_editable())
9296 {
9297 clearopbeep(cap->oap);
9298 }
9299#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009300 else
9301 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02009302 if (fix_indent)
9303 {
9304 dir = (cap->cmdchar == ']' && cap->nchar == 'p')
9305 ? FORWARD : BACKWARD;
9306 flags |= PUT_FIXINDENT;
9307 }
9308 else
9309 dir = (cap->cmdchar == 'P'
9310 || (cap->cmdchar == 'g' && cap->nchar == 'P'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009311 ? BACKWARD : FORWARD;
9312 prep_redo_cmd(cap);
9313 if (cap->cmdchar == 'g')
9314 flags |= PUT_CURSEND;
9315
Bram Moolenaar071d4272004-06-13 20:20:40 +00009316 if (VIsual_active)
9317 {
9318 /* Putting in Visual mode: The put text replaces the selected
9319 * text. First delete the selected text, then put the new text.
9320 * Need to save and restore the registers that the delete
9321 * overwrites if the old contents is being put.
9322 */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009323 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009324 regname = cap->oap->regname;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009325#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00009326 adjust_clip_reg(&regname);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009327#endif
Bram Moolenaar7d311c52014-02-22 23:49:35 +01009328 if (regname == 0 || regname == '"'
Bram Moolenaarba6e8582012-12-12 18:20:32 +01009329 || VIM_ISDIGIT(regname) || regname == '-'
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009330#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00009331 || (clip_unnamed && (regname == '*' || regname == '+'))
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009332#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009333
9334 )
9335 {
Bram Moolenaarba6e8582012-12-12 18:20:32 +01009336 /* The delete is going to overwrite the register we want to
Bram Moolenaar071d4272004-06-13 20:20:40 +00009337 * put, save it first. */
9338 reg1 = get_register(regname, TRUE);
9339 }
9340
9341 /* Now delete the selected text. */
9342 cap->cmdchar = 'd';
9343 cap->nchar = NUL;
9344 cap->oap->regname = NUL;
9345 nv_operator(cap);
9346 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009347 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009348
9349 /* delete PUT_LINE_BACKWARD; */
9350 cap->oap->regname = regname;
9351
9352 if (reg1 != NULL)
9353 {
9354 /* Delete probably changed the register we want to put, save
9355 * it first. Then put back what was there before the delete. */
9356 reg2 = get_register(regname, FALSE);
9357 put_register(regname, reg1);
9358 }
9359
9360 /* When deleted a linewise Visual area, put the register as
9361 * lines to avoid it joined with the next line. When deletion was
9362 * characterwise, split a line when putting lines. */
9363 if (VIsual_mode == 'V')
9364 flags |= PUT_LINE;
9365 else if (VIsual_mode == 'v')
9366 flags |= PUT_LINE_SPLIT;
9367 if (VIsual_mode == Ctrl_V && dir == FORWARD)
9368 flags |= PUT_LINE_FORWARD;
9369 dir = BACKWARD;
9370 if ((VIsual_mode != 'V'
9371 && curwin->w_cursor.col < curbuf->b_op_start.col)
9372 || (VIsual_mode == 'V'
9373 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
9374 /* cursor is at the end of the line or end of file, put
9375 * forward. */
9376 dir = FORWARD;
Bram Moolenaarec11aef2013-09-22 15:23:44 +02009377 /* May have been reset in do_put(). */
9378 VIsual_active = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009379 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009380 do_put(cap->oap->regname, dir, cap->count1, flags);
9381
Bram Moolenaar071d4272004-06-13 20:20:40 +00009382 /* If a register was saved, put it back now. */
9383 if (reg2 != NULL)
9384 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009385
9386 /* What to reselect with "gv"? Selecting the just put text seems to
9387 * be the most useful, since the original text was removed. */
9388 if (was_visual)
9389 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00009390 curbuf->b_visual.vi_start = curbuf->b_op_start;
9391 curbuf->b_visual.vi_end = curbuf->b_op_end;
Bram Moolenaard29c6fe2015-11-19 20:11:54 +01009392 /* need to adjust cursor position */
9393 if (*p_sel == 'e')
9394 inc(&curbuf->b_visual.vi_end);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009395 }
9396
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009397 /* When all lines were selected and deleted do_put() leaves an empty
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009398 * line that needs to be deleted now. */
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009399 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00009400 {
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009401 ml_delete(curbuf->b_ml.ml_line_count, TRUE);
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00009402
9403 /* If the cursor was in that line, move it to the end of the last
9404 * line. */
9405 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
9406 {
9407 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
9408 coladvance((colnr_T)MAXCOL);
9409 }
9410 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009411 auto_format(FALSE, TRUE);
9412 }
9413}
9414
9415/*
9416 * "o" and "O" commands.
9417 */
9418 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009419nv_open(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009420{
9421#ifdef FEAT_DIFF
9422 /* "do" is ":diffget" */
9423 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
9424 {
9425 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01009426 nv_diffgetput(FALSE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009427 }
9428 else
9429#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009430 if (VIsual_active) /* switch start and end of visual */
9431 v_swap_corners(cap->cmdchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02009432#ifdef FEAT_JOB_CHANNEL
9433 else if (bt_prompt(curbuf))
Bram Moolenaarf2732452018-06-03 14:47:35 +02009434 clearopbeep(cap->oap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02009435#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009436 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009437 n_opencmd(cap);
9438}
9439
Bram Moolenaar071d4272004-06-13 20:20:40 +00009440#ifdef FEAT_NETBEANS_INTG
9441 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009442nv_nbcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009443{
9444 netbeans_keycommand(cap->nchar);
9445}
9446#endif
9447
9448#ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00009449 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009450nv_drop(cmdarg_T *cap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009451{
9452 do_put('~', BACKWARD, 1L, PUT_CURSEND);
9453}
9454#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00009455
Bram Moolenaar3918c952005-03-15 22:34:55 +00009456/*
9457 * Trigger CursorHold event.
9458 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
9459 * input buffer. "did_cursorhold" is set to avoid retriggering.
9460 */
Bram Moolenaar3918c952005-03-15 22:34:55 +00009461 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009462nv_cursorhold(cmdarg_T *cap)
Bram Moolenaar3918c952005-03-15 22:34:55 +00009463{
9464 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
9465 did_cursorhold = TRUE;
Bram Moolenaarfc735152005-03-22 22:54:12 +00009466 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar3918c952005-03-15 22:34:55 +00009467}
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009468
9469/*
Bram Moolenaar89c17c02015-08-11 17:46:36 +02009470 * Calculate start/end virtual columns for operating in block mode.
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009471 */
9472 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009473get_op_vcol(
9474 oparg_T *oap,
9475 colnr_T redo_VIsual_vcol,
9476 int initial) /* when TRUE adjust position for 'selectmode' */
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009477{
9478 colnr_T start, end;
9479
Bram Moolenaar89c17c02015-08-11 17:46:36 +02009480 if (VIsual_mode != Ctrl_V
Bram Moolenaar02631462017-09-22 15:20:32 +02009481 || (!initial && oap->end.col < curwin->w_width))
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009482 return;
9483
Bram Moolenaar10ad1d92015-09-25 19:35:02 +02009484 oap->block_mode = TRUE;
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009485
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009486 /* prevent from moving onto a trail byte */
9487 if (has_mbyte)
9488 mb_adjustpos(curwin->w_buffer, &oap->end);
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009489
9490 getvvcol(curwin, &(oap->start), &oap->start_vcol, NULL, &oap->end_vcol);
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009491
Bram Moolenaar31b259b2015-07-28 11:21:32 +02009492 if (!redo_VIsual_busy)
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009493 {
Bram Moolenaar31b259b2015-07-28 11:21:32 +02009494 getvvcol(curwin, &(oap->end), &start, NULL, &end);
9495
9496 if (start < oap->start_vcol)
9497 oap->start_vcol = start;
9498 if (end > oap->end_vcol)
9499 {
9500 if (initial && *p_sel == 'e' && start >= 1
9501 && start - 1 >= oap->end_vcol)
9502 oap->end_vcol = start - 1;
9503 else
9504 oap->end_vcol = end;
9505 }
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009506 }
Bram Moolenaar31b259b2015-07-28 11:21:32 +02009507
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009508 /* if '$' was used, get oap->end_vcol from longest line */
9509 if (curwin->w_curswant == MAXCOL)
9510 {
9511 curwin->w_cursor.col = MAXCOL;
9512 oap->end_vcol = 0;
9513 for (curwin->w_cursor.lnum = oap->start.lnum;
9514 curwin->w_cursor.lnum <= oap->end.lnum;
9515 ++curwin->w_cursor.lnum)
9516 {
9517 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &end);
9518 if (end > oap->end_vcol)
9519 oap->end_vcol = end;
9520 }
9521 }
9522 else if (redo_VIsual_busy)
9523 oap->end_vcol = oap->start_vcol + redo_VIsual_vcol - 1;
9524 /*
9525 * Correct oap->end.col and oap->start.col to be the
9526 * upper-left and lower-right corner of the block area.
9527 *
9528 * (Actually, this does convert column positions into character
9529 * positions)
9530 */
9531 curwin->w_cursor.lnum = oap->end.lnum;
9532 coladvance(oap->end_vcol);
9533 oap->end = curwin->w_cursor;
9534
9535 curwin->w_cursor = oap->start;
9536 coladvance(oap->start_vcol);
9537 oap->start = curwin->w_cursor;
9538}