blob: 8724553a9a3d4c20655ebb167cab8891db6bc32e [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 Moolenaar071d4272004-06-13 20:20:40 +000030static int
Bram Moolenaar0c50a6b2012-05-25 11:04:38 +020031#ifdef __BORLANDC__
32 _RTLENTRYF
33#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010034 nv_compare(const void *s1, const void *s2);
35static int find_command(int cmdchar);
36static void op_colon(oparg_T *oap);
37static void op_function(oparg_T *oap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +010038#if defined(FEAT_MOUSE)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010039static void find_start_of_word(pos_T *);
40static void find_end_of_word(pos_T *);
41static int get_mouse_class(char_u *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000042#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010043static void prep_redo_cmd(cmdarg_T *cap);
44static void prep_redo(int regname, long, int, int, int, int, int);
45static int checkclearop(oparg_T *oap);
46static int checkclearopq(oparg_T *oap);
47static void clearop(oparg_T *oap);
48static void clearopbeep(oparg_T *oap);
49static void unshift_special(cmdarg_T *cap);
50static void may_clear_cmdline(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000051#ifdef FEAT_CMDL_INFO
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010052static void del_from_showcmd(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000053#endif
54
55/*
56 * nv_*(): functions called to handle Normal and Visual mode commands.
57 * n_*(): functions called to handle Normal mode commands.
58 * v_*(): functions called to handle Visual mode commands.
59 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010060static void nv_ignore(cmdarg_T *cap);
61static void nv_nop(cmdarg_T *cap);
62static void nv_error(cmdarg_T *cap);
63static void nv_help(cmdarg_T *cap);
64static void nv_addsub(cmdarg_T *cap);
65static void nv_page(cmdarg_T *cap);
66static void nv_gd(oparg_T *oap, int nchar, int thisblock);
67static int nv_screengo(oparg_T *oap, int dir, long dist);
Bram Moolenaar071d4272004-06-13 20:20:40 +000068#ifdef FEAT_MOUSE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010069static void nv_mousescroll(cmdarg_T *cap);
70static void nv_mouse(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000071#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010072static void nv_scroll_line(cmdarg_T *cap);
73static void nv_zet(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000074#ifdef FEAT_GUI
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010075static void nv_ver_scrollbar(cmdarg_T *cap);
76static void nv_hor_scrollbar(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000077#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +000078#ifdef FEAT_GUI_TABLINE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010079static void nv_tabline(cmdarg_T *cap);
80static void nv_tabmenu(cmdarg_T *cap);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000081#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010082static void nv_exmode(cmdarg_T *cap);
83static void nv_colon(cmdarg_T *cap);
84static void nv_ctrlg(cmdarg_T *cap);
85static void nv_ctrlh(cmdarg_T *cap);
86static void nv_clear(cmdarg_T *cap);
87static void nv_ctrlo(cmdarg_T *cap);
88static void nv_hat(cmdarg_T *cap);
89static void nv_Zet(cmdarg_T *cap);
90static void nv_ident(cmdarg_T *cap);
91static void nv_tagpop(cmdarg_T *cap);
92static void nv_scroll(cmdarg_T *cap);
93static void nv_right(cmdarg_T *cap);
94static void nv_left(cmdarg_T *cap);
95static void nv_up(cmdarg_T *cap);
96static void nv_down(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000097#ifdef FEAT_SEARCHPATH
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010098static void nv_gotofile(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000099#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100100static void nv_end(cmdarg_T *cap);
101static void nv_dollar(cmdarg_T *cap);
102static void nv_search(cmdarg_T *cap);
103static void nv_next(cmdarg_T *cap);
104static int normal_search(cmdarg_T *cap, int dir, char_u *pat, int opt);
105static void nv_csearch(cmdarg_T *cap);
106static void nv_brackets(cmdarg_T *cap);
107static void nv_percent(cmdarg_T *cap);
108static void nv_brace(cmdarg_T *cap);
109static void nv_mark(cmdarg_T *cap);
110static void nv_findpar(cmdarg_T *cap);
111static void nv_undo(cmdarg_T *cap);
112static void nv_kundo(cmdarg_T *cap);
113static void nv_Replace(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114#ifdef FEAT_VREPLACE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100115static void nv_vreplace(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100117static void v_swap_corners(int cmdchar);
118static void nv_replace(cmdarg_T *cap);
119static void n_swapchar(cmdarg_T *cap);
120static void nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos);
121static void v_visop(cmdarg_T *cap);
122static void nv_subst(cmdarg_T *cap);
123static void nv_abbrev(cmdarg_T *cap);
124static void nv_optrans(cmdarg_T *cap);
125static void nv_gomark(cmdarg_T *cap);
126static void nv_pcmark(cmdarg_T *cap);
127static void nv_regname(cmdarg_T *cap);
128static void nv_visual(cmdarg_T *cap);
129static void n_start_visual_mode(int c);
130static void nv_window(cmdarg_T *cap);
131static void nv_suspend(cmdarg_T *cap);
132static void nv_g_cmd(cmdarg_T *cap);
133static void n_opencmd(cmdarg_T *cap);
134static void nv_dot(cmdarg_T *cap);
135static void nv_redo(cmdarg_T *cap);
136static void nv_Undo(cmdarg_T *cap);
137static void nv_tilde(cmdarg_T *cap);
138static void nv_operator(cmdarg_T *cap);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +0000139#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100140static void set_op_var(int optype);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +0000141#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100142static void nv_lineop(cmdarg_T *cap);
143static void nv_home(cmdarg_T *cap);
144static void nv_pipe(cmdarg_T *cap);
145static void nv_bck_word(cmdarg_T *cap);
146static void nv_wordcmd(cmdarg_T *cap);
147static void nv_beginline(cmdarg_T *cap);
148static void adjust_cursor(oparg_T *oap);
149static void adjust_for_sel(cmdarg_T *cap);
150static int unadjust_for_sel(void);
151static void nv_select(cmdarg_T *cap);
152static void nv_goto(cmdarg_T *cap);
153static void nv_normal(cmdarg_T *cap);
154static void nv_esc(cmdarg_T *oap);
155static void nv_edit(cmdarg_T *cap);
156static void invoke_edit(cmdarg_T *cap, int repl, int cmd, int startln);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157#ifdef FEAT_TEXTOBJ
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100158static void nv_object(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100160static void nv_record(cmdarg_T *cap);
161static void nv_at(cmdarg_T *cap);
162static void nv_halfpage(cmdarg_T *cap);
163static void nv_join(cmdarg_T *cap);
164static void nv_put(cmdarg_T *cap);
165static void nv_open(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100167static void nv_nbcmd(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168#endif
169#ifdef FEAT_DND
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100170static void nv_drop(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +0000172#ifdef FEAT_AUTOCMD
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100173static void nv_cursorhold(cmdarg_T *cap);
Bram Moolenaar3918c952005-03-15 22:34:55 +0000174#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100175static void get_op_vcol(oparg_T *oap, colnr_T col, int initial);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176
Bram Moolenaar9fd01c62008-11-01 12:52:38 +0000177static char *e_noident = N_("E349: No identifier under cursor");
178
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179/*
180 * Function to be called for a Normal or Visual mode command.
181 * The argument is a cmdarg_T.
182 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100183typedef void (*nv_func_T)(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184
185/* Values for cmd_flags. */
186#define NV_NCH 0x01 /* may need to get a second char */
187#define NV_NCH_NOP (0x02|NV_NCH) /* get second char when no operator pending */
188#define NV_NCH_ALW (0x04|NV_NCH) /* always get a second char */
189#define NV_LANG 0x08 /* second char needs language adjustment */
190
191#define NV_SS 0x10 /* may start selection */
192#define NV_SSS 0x20 /* may start selection with shift modifier */
193#define NV_STS 0x40 /* may stop selection without shift modif. */
194#define NV_RL 0x80 /* 'rightleft' modifies command */
195#define NV_KEEPREG 0x100 /* don't clear regname */
196#define NV_NCW 0x200 /* not allowed in command-line window */
197
198/*
199 * Generally speaking, every Normal mode command should either clear any
200 * pending operator (with *clearop*()), or set the motion type variable
201 * oap->motion_type.
202 *
203 * When a cursor motion command is made, it is marked as being a character or
204 * line oriented motion. Then, if an operator is in effect, the operation
205 * becomes character or line oriented accordingly.
206 */
207
208/*
209 * This table contains one entry for every Normal or Visual mode command.
210 * The order doesn't matter, init_normal_cmds() will create a sorted index.
211 * It is faster when all keys from zero to '~' are present.
212 */
213static const struct nv_cmd
214{
215 int cmd_char; /* (first) command character */
216 nv_func_T cmd_func; /* function for this command */
217 short_u cmd_flags; /* NV_ flags */
218 short cmd_arg; /* value for ca.arg */
219} nv_cmds[] =
220{
221 {NUL, nv_error, 0, 0},
222 {Ctrl_A, nv_addsub, 0, 0},
223 {Ctrl_B, nv_page, NV_STS, BACKWARD},
224 {Ctrl_C, nv_esc, 0, TRUE},
225 {Ctrl_D, nv_halfpage, 0, 0},
226 {Ctrl_E, nv_scroll_line, 0, TRUE},
227 {Ctrl_F, nv_page, NV_STS, FORWARD},
228 {Ctrl_G, nv_ctrlg, 0, 0},
229 {Ctrl_H, nv_ctrlh, 0, 0},
230 {Ctrl_I, nv_pcmark, 0, 0},
231 {NL, nv_down, 0, FALSE},
232 {Ctrl_K, nv_error, 0, 0},
233 {Ctrl_L, nv_clear, 0, 0},
Bram Moolenaar9c96f592005-06-30 21:52:39 +0000234 {Ctrl_M, nv_down, 0, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 {Ctrl_N, nv_down, NV_STS, FALSE},
236 {Ctrl_O, nv_ctrlo, 0, 0},
237 {Ctrl_P, nv_up, NV_STS, FALSE},
Bram Moolenaardf177f62005-02-22 08:39:57 +0000238 {Ctrl_Q, nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239 {Ctrl_R, nv_redo, 0, 0},
240 {Ctrl_S, nv_ignore, 0, 0},
241 {Ctrl_T, nv_tagpop, NV_NCW, 0},
242 {Ctrl_U, nv_halfpage, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243 {Ctrl_V, nv_visual, 0, FALSE},
244 {'V', nv_visual, 0, FALSE},
245 {'v', nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246 {Ctrl_W, nv_window, 0, 0},
247 {Ctrl_X, nv_addsub, 0, 0},
248 {Ctrl_Y, nv_scroll_line, 0, FALSE},
249 {Ctrl_Z, nv_suspend, 0, 0},
250 {ESC, nv_esc, 0, FALSE},
251 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0},
252 {Ctrl_RSB, nv_ident, NV_NCW, 0},
253 {Ctrl_HAT, nv_hat, NV_NCW, 0},
254 {Ctrl__, nv_error, 0, 0},
255 {' ', nv_right, 0, 0},
256 {'!', nv_operator, 0, 0},
257 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0},
258 {'#', nv_ident, 0, 0},
259 {'$', nv_dollar, 0, 0},
260 {'%', nv_percent, 0, 0},
261 {'&', nv_optrans, 0, 0},
262 {'\'', nv_gomark, NV_NCH_ALW, TRUE},
263 {'(', nv_brace, 0, BACKWARD},
264 {')', nv_brace, 0, FORWARD},
265 {'*', nv_ident, 0, 0},
266 {'+', nv_down, 0, TRUE},
267 {',', nv_csearch, 0, TRUE},
268 {'-', nv_up, 0, TRUE},
269 {'.', nv_dot, NV_KEEPREG, 0},
270 {'/', nv_search, 0, FALSE},
271 {'0', nv_beginline, 0, 0},
272 {'1', nv_ignore, 0, 0},
273 {'2', nv_ignore, 0, 0},
274 {'3', nv_ignore, 0, 0},
275 {'4', nv_ignore, 0, 0},
276 {'5', nv_ignore, 0, 0},
277 {'6', nv_ignore, 0, 0},
278 {'7', nv_ignore, 0, 0},
279 {'8', nv_ignore, 0, 0},
280 {'9', nv_ignore, 0, 0},
281 {':', nv_colon, 0, 0},
282 {';', nv_csearch, 0, FALSE},
283 {'<', nv_operator, NV_RL, 0},
284 {'=', nv_operator, 0, 0},
285 {'>', nv_operator, NV_RL, 0},
286 {'?', nv_search, 0, FALSE},
287 {'@', nv_at, NV_NCH_NOP, FALSE},
288 {'A', nv_edit, 0, 0},
289 {'B', nv_bck_word, 0, 1},
290 {'C', nv_abbrev, NV_KEEPREG, 0},
291 {'D', nv_abbrev, NV_KEEPREG, 0},
292 {'E', nv_wordcmd, 0, TRUE},
293 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
294 {'G', nv_goto, 0, TRUE},
295 {'H', nv_scroll, 0, 0},
296 {'I', nv_edit, 0, 0},
297 {'J', nv_join, 0, 0},
298 {'K', nv_ident, 0, 0},
299 {'L', nv_scroll, 0, 0},
300 {'M', nv_scroll, 0, 0},
301 {'N', nv_next, 0, SEARCH_REV},
302 {'O', nv_open, 0, 0},
303 {'P', nv_put, 0, 0},
304 {'Q', nv_exmode, NV_NCW, 0},
305 {'R', nv_Replace, 0, FALSE},
306 {'S', nv_subst, NV_KEEPREG, 0},
307 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
308 {'U', nv_Undo, 0, 0},
309 {'W', nv_wordcmd, 0, TRUE},
310 {'X', nv_abbrev, NV_KEEPREG, 0},
311 {'Y', nv_abbrev, NV_KEEPREG, 0},
312 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0},
313 {'[', nv_brackets, NV_NCH_ALW, BACKWARD},
314 {'\\', nv_error, 0, 0},
315 {']', nv_brackets, NV_NCH_ALW, FORWARD},
316 {'^', nv_beginline, 0, BL_WHITE | BL_FIX},
317 {'_', nv_lineop, 0, 0},
318 {'`', nv_gomark, NV_NCH_ALW, FALSE},
319 {'a', nv_edit, NV_NCH, 0},
320 {'b', nv_bck_word, 0, 0},
321 {'c', nv_operator, 0, 0},
322 {'d', nv_operator, 0, 0},
323 {'e', nv_wordcmd, 0, FALSE},
324 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
325 {'g', nv_g_cmd, NV_NCH_ALW, FALSE},
326 {'h', nv_left, NV_RL, 0},
327 {'i', nv_edit, NV_NCH, 0},
328 {'j', nv_down, 0, FALSE},
329 {'k', nv_up, 0, FALSE},
330 {'l', nv_right, NV_RL, 0},
331 {'m', nv_mark, NV_NCH_NOP, 0},
332 {'n', nv_next, 0, 0},
333 {'o', nv_open, 0, 0},
334 {'p', nv_put, 0, 0},
335 {'q', nv_record, NV_NCH, 0},
336 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0},
337 {'s', nv_subst, NV_KEEPREG, 0},
338 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
339 {'u', nv_undo, 0, 0},
340 {'w', nv_wordcmd, 0, FALSE},
341 {'x', nv_abbrev, NV_KEEPREG, 0},
342 {'y', nv_operator, 0, 0},
343 {'z', nv_zet, NV_NCH_ALW, 0},
344 {'{', nv_findpar, 0, BACKWARD},
345 {'|', nv_pipe, 0, 0},
346 {'}', nv_findpar, 0, FORWARD},
347 {'~', nv_tilde, 0, 0},
348
349 /* pound sign */
350 {POUND, nv_ident, 0, 0},
351#ifdef FEAT_MOUSE
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200352 {K_MOUSEUP, nv_mousescroll, 0, MSCR_UP},
353 {K_MOUSEDOWN, nv_mousescroll, 0, MSCR_DOWN},
354 {K_MOUSELEFT, nv_mousescroll, 0, MSCR_LEFT},
355 {K_MOUSERIGHT, nv_mousescroll, 0, MSCR_RIGHT},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 {K_LEFTMOUSE, nv_mouse, 0, 0},
357 {K_LEFTMOUSE_NM, nv_mouse, 0, 0},
358 {K_LEFTDRAG, nv_mouse, 0, 0},
359 {K_LEFTRELEASE, nv_mouse, 0, 0},
360 {K_LEFTRELEASE_NM, nv_mouse, 0, 0},
361 {K_MIDDLEMOUSE, nv_mouse, 0, 0},
362 {K_MIDDLEDRAG, nv_mouse, 0, 0},
363 {K_MIDDLERELEASE, nv_mouse, 0, 0},
364 {K_RIGHTMOUSE, nv_mouse, 0, 0},
365 {K_RIGHTDRAG, nv_mouse, 0, 0},
366 {K_RIGHTRELEASE, nv_mouse, 0, 0},
367 {K_X1MOUSE, nv_mouse, 0, 0},
368 {K_X1DRAG, nv_mouse, 0, 0},
369 {K_X1RELEASE, nv_mouse, 0, 0},
370 {K_X2MOUSE, nv_mouse, 0, 0},
371 {K_X2DRAG, nv_mouse, 0, 0},
372 {K_X2RELEASE, nv_mouse, 0, 0},
373#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000374 {K_IGNORE, nv_ignore, NV_KEEPREG, 0},
Bram Moolenaarebefac62005-12-28 22:39:57 +0000375 {K_NOP, nv_nop, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 {K_INS, nv_edit, 0, 0},
377 {K_KINS, nv_edit, 0, 0},
378 {K_BS, nv_ctrlh, 0, 0},
379 {K_UP, nv_up, NV_SSS|NV_STS, FALSE},
380 {K_S_UP, nv_page, NV_SS, BACKWARD},
381 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE},
382 {K_S_DOWN, nv_page, NV_SS, FORWARD},
383 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0},
384 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0},
385 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1},
386 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0},
387 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE},
388 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE},
389 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
390 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
391 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
392 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
393 {K_END, nv_end, NV_SSS|NV_STS, FALSE},
394 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 {K_S_END, nv_end, NV_SS, FALSE},
396 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE},
397 {K_HOME, nv_home, NV_SSS|NV_STS, 0},
398 {K_KHOME, nv_home, NV_SSS|NV_STS, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 {K_S_HOME, nv_home, NV_SS, 0},
400 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE},
401 {K_DEL, nv_abbrev, 0, 0},
402 {K_KDEL, nv_abbrev, 0, 0},
403 {K_UNDO, nv_kundo, 0, 0},
404 {K_HELP, nv_help, NV_NCW, 0},
405 {K_F1, nv_help, NV_NCW, 0},
406 {K_XF1, nv_help, NV_NCW, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407 {K_SELECT, nv_select, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408#ifdef FEAT_GUI
409 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0},
410 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0},
411#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000412#ifdef FEAT_GUI_TABLINE
413 {K_TABLINE, nv_tabline, 0, 0},
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000414 {K_TABMENU, nv_tabmenu, 0, 0},
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000415#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416#ifdef FEAT_FKMAP
Bram Moolenaaree2615a2016-07-02 18:25:34 +0200417 {K_F8, farsi_f8, 0, 0},
418 {K_F9, farsi_f9, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420#ifdef FEAT_NETBEANS_INTG
421 {K_F21, nv_nbcmd, NV_NCH_ALW, 0},
422#endif
423#ifdef FEAT_DND
424 {K_DROP, nv_drop, NV_STS, 0},
425#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +0000426#ifdef FEAT_AUTOCMD
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000427 {K_CURSORHOLD, nv_cursorhold, NV_KEEPREG, 0},
Bram Moolenaar3918c952005-03-15 22:34:55 +0000428#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429};
430
431/* Number of commands in nv_cmds[]. */
432#define NV_CMDS_SIZE (sizeof(nv_cmds) / sizeof(struct nv_cmd))
433
434/* Sorted index of commands in nv_cmds[]. */
435static short nv_cmd_idx[NV_CMDS_SIZE];
436
437/* The highest index for which
438 * nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char] */
439static int nv_max_linear;
440
441/*
442 * Compare functions for qsort() below, that checks the command character
443 * through the index in nv_cmd_idx[].
444 */
445 static int
446#ifdef __BORLANDC__
447_RTLENTRYF
448#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +0100449nv_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450{
451 int c1, c2;
452
453 /* The commands are sorted on absolute value. */
454 c1 = nv_cmds[*(const short *)s1].cmd_char;
455 c2 = nv_cmds[*(const short *)s2].cmd_char;
456 if (c1 < 0)
457 c1 = -c1;
458 if (c2 < 0)
459 c2 = -c2;
460 return c1 - c2;
461}
462
463/*
464 * Initialize the nv_cmd_idx[] table.
465 */
466 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100467init_normal_cmds(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468{
469 int i;
470
471 /* Fill the index table with a one to one relation. */
Bram Moolenaar78a15312009-05-15 19:33:18 +0000472 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 nv_cmd_idx[i] = i;
474
475 /* Sort the commands by the command character. */
476 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
477
478 /* Find the first entry that can't be indexed by the command character. */
Bram Moolenaar78a15312009-05-15 19:33:18 +0000479 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char)
481 break;
482 nv_max_linear = i - 1;
483}
484
485/*
486 * Search for a command in the commands table.
487 * Returns -1 for invalid command.
488 */
489 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100490find_command(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491{
492 int i;
493 int idx;
494 int top, bot;
495 int c;
496
497#ifdef FEAT_MBYTE
498 /* A multi-byte character is never a command. */
499 if (cmdchar >= 0x100)
500 return -1;
501#endif
502
503 /* We use the absolute value of the character. Special keys have a
504 * negative value, but are sorted on their absolute value. */
505 if (cmdchar < 0)
506 cmdchar = -cmdchar;
507
508 /* If the character is in the first part: The character is the index into
509 * nv_cmd_idx[]. */
510 if (cmdchar <= nv_max_linear)
511 return nv_cmd_idx[cmdchar];
512
513 /* Perform a binary search. */
514 bot = nv_max_linear + 1;
515 top = NV_CMDS_SIZE - 1;
516 idx = -1;
517 while (bot <= top)
518 {
519 i = (top + bot) / 2;
520 c = nv_cmds[nv_cmd_idx[i]].cmd_char;
521 if (c < 0)
522 c = -c;
523 if (cmdchar == c)
524 {
525 idx = nv_cmd_idx[i];
526 break;
527 }
528 if (cmdchar > c)
529 bot = i + 1;
530 else
531 top = i - 1;
532 }
533 return idx;
534}
535
536/*
537 * Execute a command in Normal mode.
538 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100540normal_cmd(
541 oparg_T *oap,
542 int toplevel UNUSED) /* TRUE when called from main() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544 cmdarg_T ca; /* command arguments */
545 int c;
546 int ctrl_w = FALSE; /* got CTRL-W command */
547 int old_col = curwin->w_curswant;
548#ifdef FEAT_CMDL_INFO
549 int need_flushbuf; /* need to call out_flush() */
550#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 pos_T old_pos; /* cursor position before command */
552 int mapped_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 static int old_mapped_len = 0;
554 int idx;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000555#ifdef FEAT_EVAL
556 int set_prevcount = FALSE;
557#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558
559 vim_memset(&ca, 0, sizeof(ca)); /* also resets ca.retval */
560 ca.oap = oap;
Bram Moolenaara983fe92008-07-31 20:04:27 +0000561
562 /* Use a count remembered from before entering an operator. After typing
563 * "3d" we return from normal_cmd() and come back here, the "3" is
564 * remembered in "opcount". */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 ca.opcount = opcount;
566
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 /*
568 * If there is an operator pending, then the command we take this time
569 * will terminate it. Finish_op tells us to finish the operation before
570 * returning this time (unless the operation was cancelled).
571 */
572#ifdef CURSOR_SHAPE
573 c = finish_op;
574#endif
575 finish_op = (oap->op_type != OP_NOP);
576#ifdef CURSOR_SHAPE
577 if (finish_op != c)
578 {
579 ui_cursor_shape(); /* may show different cursor shape */
580# ifdef FEAT_MOUSESHAPE
581 update_mouseshape(-1);
582# endif
583 }
584#endif
585
Bram Moolenaara983fe92008-07-31 20:04:27 +0000586 /* When not finishing an operator and no register name typed, reset the
587 * count. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 if (!finish_op && !oap->regname)
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000589 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 ca.opcount = 0;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000591#ifdef FEAT_EVAL
592 set_prevcount = TRUE;
593#endif
594 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595
Bram Moolenaara983fe92008-07-31 20:04:27 +0000596#ifdef FEAT_AUTOCMD
597 /* Restore counts from before receiving K_CURSORHOLD. This means after
598 * typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not
599 * "3 * 2". */
600 if (oap->prev_opcount > 0 || oap->prev_count0 > 0)
601 {
602 ca.opcount = oap->prev_opcount;
603 ca.count0 = oap->prev_count0;
604 oap->prev_opcount = 0;
605 oap->prev_count0 = 0;
606 }
607#endif
608
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 mapped_len = typebuf_maplen();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610
611 State = NORMAL_BUSY;
612#ifdef USE_ON_FLY_SCROLL
613 dont_scroll = FALSE; /* allow scrolling here */
614#endif
615
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100616#ifdef FEAT_EVAL
617 /* Set v:count here, when called from main() and not a stuffed
618 * command, so that v:count can be used in an expression mapping
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100619 * when there is no count. Do set it for redo. */
620 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100621 set_vcount_ca(&ca, &set_prevcount);
622#endif
623
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 /*
625 * Get the command character from the user.
626 */
627 c = safe_vgetc();
Bram Moolenaar25281632016-01-21 23:32:32 +0100628 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629
630 /*
631 * If a mapping was started in Visual or Select mode, remember the length
632 * of the mapping. This is used below to not return to Insert mode for as
633 * long as the mapping is being executed.
634 */
635 if (restart_edit == 0)
636 old_mapped_len = 0;
637 else if (old_mapped_len
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000638 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 old_mapped_len = typebuf_maplen();
640
641 if (c == NUL)
642 c = K_ZERO;
643
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 /*
645 * In Select mode, typed text replaces the selection.
646 */
647 if (VIsual_active
648 && VIsual_select
649 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
650 {
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000651 /* Fake a "c"hange command. When "restart_edit" is set (e.g., because
652 * 'insertmode' is set) fake a "d"elete command, Insert mode will
653 * restart automatically.
Bram Moolenaarcf8e7d12006-12-05 20:43:17 +0000654 * Insert the typed character in the typeahead buffer, so that it can
655 * be mapped in Insert mode. Required for ":lmap" to work. */
Bram Moolenaard8fc5c02006-04-29 21:55:22 +0000656 ins_char_typebuf(c);
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000657 if (restart_edit != 0)
658 c = 'd';
659 else
660 c = 'c';
Bram Moolenaarb388adb2006-02-28 23:50:17 +0000661 msg_nowait = TRUE; /* don't delay going to insert mode */
Bram Moolenaar9bad29d2013-05-21 12:46:02 +0200662 old_mapped_len = 0; /* do go to Insert mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664
665#ifdef FEAT_CMDL_INFO
666 need_flushbuf = add_to_showcmd(c);
667#endif
668
669getcount:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 if (!(VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 {
672 /*
673 * Handle a count before a command and compute ca.count0.
674 * Note that '0' is a command and not the start of a count, but it's
675 * part of a count after other digits.
676 */
677 while ( (c >= '1' && c <= '9')
678 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
679 {
680 if (c == K_DEL || c == K_KDEL)
681 {
682 ca.count0 /= 10;
683#ifdef FEAT_CMDL_INFO
684 del_from_showcmd(4); /* delete the digit and ~@% */
685#endif
686 }
687 else
688 ca.count0 = ca.count0 * 10 + (c - '0');
689 if (ca.count0 < 0) /* got too large! */
690 ca.count0 = 999999999L;
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000691#ifdef FEAT_EVAL
692 /* Set v:count here, when called from main() and not a stuffed
693 * command, so that v:count can be used in an expression mapping
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100694 * right after the count. Do set it for redo. */
695 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100696 set_vcount_ca(&ca, &set_prevcount);
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000697#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 if (ctrl_w)
699 {
700 ++no_mapping;
701 ++allow_keys; /* no mapping for nchar, but keys */
702 }
703 ++no_zero_mapping; /* don't map zero here */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000704 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 --no_zero_mapping;
707 if (ctrl_w)
708 {
709 --no_mapping;
710 --allow_keys;
711 }
712#ifdef FEAT_CMDL_INFO
713 need_flushbuf |= add_to_showcmd(c);
714#endif
715 }
716
717 /*
718 * If we got CTRL-W there may be a/another count
719 */
720 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
721 {
722 ctrl_w = TRUE;
723 ca.opcount = ca.count0; /* remember first count */
724 ca.count0 = 0;
725 ++no_mapping;
726 ++allow_keys; /* no mapping for nchar, but keys */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000727 c = plain_vgetc(); /* get next character */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 --no_mapping;
730 --allow_keys;
731#ifdef FEAT_CMDL_INFO
732 need_flushbuf |= add_to_showcmd(c);
733#endif
734 goto getcount; /* jump back */
735 }
736 }
737
Bram Moolenaara983fe92008-07-31 20:04:27 +0000738#ifdef FEAT_AUTOCMD
739 if (c == K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 {
Bram Moolenaara983fe92008-07-31 20:04:27 +0000741 /* Save the count values so that ca.opcount and ca.count0 are exactly
742 * the same when coming back here after handling K_CURSORHOLD. */
743 oap->prev_opcount = ca.opcount;
744 oap->prev_count0 = ca.count0;
745 }
746 else
747#endif
748 if (ca.opcount != 0)
749 {
750 /*
751 * If we're in the middle of an operator (including after entering a
752 * yank buffer with '"') AND we had a count before the operator, then
753 * that count overrides the current value of ca.count0.
754 * What this means effectively, is that commands like "3dw" get turned
755 * into "d3w" which makes things fall into place pretty neatly.
756 * If you give a count before AND after the operator, they are
757 * multiplied.
758 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 if (ca.count0)
760 ca.count0 *= ca.opcount;
761 else
762 ca.count0 = ca.opcount;
763 }
764
765 /*
766 * Always remember the count. It will be set to zero (on the next call,
767 * above) when there is no pending operator.
768 * When called from main(), save the count for use by the "count" built-in
769 * variable.
770 */
771 ca.opcount = ca.count0;
772 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
773
774#ifdef FEAT_EVAL
775 /*
776 * Only set v:count when called from main() and not a stuffed command.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100777 * Do set it for redo.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100779 if (toplevel && readbuf1_empty())
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000780 set_vcount(ca.count0, ca.count1, set_prevcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781#endif
782
783 /*
784 * Find the command character in the table of commands.
785 * For CTRL-W we already got nchar when looking for a count.
786 */
787 if (ctrl_w)
788 {
789 ca.nchar = c;
790 ca.cmdchar = Ctrl_W;
791 }
792 else
793 ca.cmdchar = c;
794 idx = find_command(ca.cmdchar);
795 if (idx < 0)
796 {
797 /* Not a known command: beep. */
798 clearopbeep(oap);
799 goto normal_end;
800 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +0000801
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000802 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 {
Bram Moolenaard69bd9a2014-04-29 12:15:40 +0200804 /* This command is not allowed while editing a cmdline: beep. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 clearopbeep(oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000806 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 goto normal_end;
808 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000809#ifdef FEAT_AUTOCMD
810 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
811 goto normal_end;
812#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 /*
815 * In Visual/Select mode, a few keys are handled in a special way.
816 */
817 if (VIsual_active)
818 {
819 /* when 'keymodel' contains "stopsel" may stop Select/Visual mode */
820 if (km_stopsel
821 && (nv_cmds[idx].cmd_flags & NV_STS)
822 && !(mod_mask & MOD_MASK_SHIFT))
823 {
824 end_visual_mode();
825 redraw_curbuf_later(INVERTED);
826 }
827
828 /* Keys that work different when 'keymodel' contains "startsel" */
829 if (km_startsel)
830 {
831 if (nv_cmds[idx].cmd_flags & NV_SS)
832 {
833 unshift_special(&ca);
834 idx = find_command(ca.cmdchar);
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000835 if (idx < 0)
836 {
837 /* Just in case */
838 clearopbeep(oap);
839 goto normal_end;
840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 }
842 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
843 && (mod_mask & MOD_MASK_SHIFT))
844 {
845 mod_mask &= ~MOD_MASK_SHIFT;
846 }
847 }
848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849
850#ifdef FEAT_RIGHTLEFT
851 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
852 && (nv_cmds[idx].cmd_flags & NV_RL))
853 {
854 /* Invert horizontal movements and operations. Only when typed by the
855 * user directly, not when the result of a mapping or "x" translated
856 * to "dl". */
857 switch (ca.cmdchar)
858 {
859 case 'l': ca.cmdchar = 'h'; break;
860 case K_RIGHT: ca.cmdchar = K_LEFT; break;
861 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
862 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
863 case 'h': ca.cmdchar = 'l'; break;
864 case K_LEFT: ca.cmdchar = K_RIGHT; break;
865 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
866 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
867 case '>': ca.cmdchar = '<'; break;
868 case '<': ca.cmdchar = '>'; break;
869 }
870 idx = find_command(ca.cmdchar);
871 }
872#endif
873
874 /*
875 * Get an additional character if we need one.
876 */
877 if ((nv_cmds[idx].cmd_flags & NV_NCH)
878 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
879 && oap->op_type == OP_NOP)
880 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
881 || (ca.cmdchar == 'q'
882 && oap->op_type == OP_NOP
883 && !Recording
884 && !Exec_reg)
885 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100886 && (oap->op_type != OP_NOP || VIsual_active))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 {
888 int *cp;
889 int repl = FALSE; /* get character for replace mode */
890 int lit = FALSE; /* get extra character literally */
891 int langmap_active = FALSE; /* using :lmap mappings */
892 int lang; /* getting a text character */
893#ifdef USE_IM_CONTROL
894 int save_smd; /* saved value of p_smd */
895#endif
896
897 ++no_mapping;
898 ++allow_keys; /* no mapping for nchar, but allow key codes */
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +0000899#ifdef FEAT_AUTOCMD
900 /* Don't generate a CursorHold event here, most commands can't handle
901 * it, e.g., nv_replace(), nv_csearch(). */
902 did_cursorhold = TRUE;
903#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 if (ca.cmdchar == 'g')
905 {
906 /*
907 * For 'g' get the next character now, so that we can check for
908 * "gr", "g'" and "g`".
909 */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000910 ca.nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 LANGMAP_ADJUST(ca.nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912#ifdef FEAT_CMDL_INFO
913 need_flushbuf |= add_to_showcmd(ca.nchar);
914#endif
915 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
Bram Moolenaarba2d44f2013-11-28 19:27:30 +0100916 || ca.nchar == Ctrl_BSL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 {
918 cp = &ca.extra_char; /* need to get a third character */
919 if (ca.nchar != 'r')
920 lit = TRUE; /* get it literally */
921 else
922 repl = TRUE; /* get it in replace mode */
923 }
924 else
925 cp = NULL; /* no third character needed */
926 }
927 else
928 {
929 if (ca.cmdchar == 'r') /* get it in replace mode */
930 repl = TRUE;
931 cp = &ca.nchar;
932 }
933 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
934
935 /*
936 * Get a second or third character.
937 */
938 if (cp != NULL)
939 {
940#ifdef CURSOR_SHAPE
941 if (repl)
942 {
943 State = REPLACE; /* pretend Replace mode */
944 ui_cursor_shape(); /* show different cursor shape */
945 }
946#endif
947 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
948 {
949 /* Allow mappings defined with ":lmap". */
950 --no_mapping;
951 --allow_keys;
952 if (repl)
953 State = LREPLACE;
954 else
955 State = LANGMAP;
956 langmap_active = TRUE;
957 }
958#ifdef USE_IM_CONTROL
959 save_smd = p_smd;
960 p_smd = FALSE; /* Don't let the IM code show the mode here */
961 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
962 im_set_active(TRUE);
963#endif
964
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000965 *cp = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966
967 if (langmap_active)
968 {
969 /* Undo the decrement done above */
970 ++no_mapping;
971 ++allow_keys;
972 State = NORMAL_BUSY;
973 }
974#ifdef USE_IM_CONTROL
975 if (lang)
976 {
977 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
978 im_save_status(&curbuf->b_p_iminsert);
979 im_set_active(FALSE);
980 }
981 p_smd = save_smd;
982#endif
983#ifdef CURSOR_SHAPE
984 State = NORMAL_BUSY;
985#endif
986#ifdef FEAT_CMDL_INFO
987 need_flushbuf |= add_to_showcmd(*cp);
988#endif
989
990 if (!lit)
991 {
992#ifdef FEAT_DIGRAPHS
993 /* Typing CTRL-K gets a digraph. */
994 if (*cp == Ctrl_K
995 && ((nv_cmds[idx].cmd_flags & NV_LANG)
996 || cp == &ca.extra_char)
997 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
998 {
999 c = get_digraph(FALSE);
1000 if (c > 0)
1001 {
1002 *cp = c;
1003# ifdef FEAT_CMDL_INFO
1004 /* Guessing how to update showcmd here... */
1005 del_from_showcmd(3);
1006 need_flushbuf |= add_to_showcmd(*cp);
1007# endif
1008 }
1009 }
1010#endif
1011
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 /* adjust chars > 127, except after "tTfFr" commands */
1013 LANGMAP_ADJUST(*cp, !lang);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014#ifdef FEAT_RIGHTLEFT
1015 /* adjust Hebrew mapped char */
1016 if (p_hkmap && lang && KeyTyped)
1017 *cp = hkmap(*cp);
1018# ifdef FEAT_FKMAP
1019 /* adjust Farsi mapped char */
1020 if (p_fkmap && lang && KeyTyped)
1021 *cp = fkmap(*cp);
1022# endif
1023#endif
1024 }
1025
1026 /*
1027 * When the next character is CTRL-\ a following CTRL-N means the
1028 * command is aborted and we go to Normal mode.
1029 */
1030 if (cp == &ca.extra_char
1031 && ca.nchar == Ctrl_BSL
1032 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
1033 {
1034 ca.cmdchar = Ctrl_BSL;
1035 ca.nchar = ca.extra_char;
1036 idx = find_command(ca.cmdchar);
1037 }
Bram Moolenaar12a753a2012-10-23 05:08:53 +02001038 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g')
Bram Moolenaarf00dc262012-10-21 03:54:33 +02001039 ca.oap->op_type = get_op_type(*cp, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 else if (*cp == Ctrl_BSL)
1041 {
1042 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
1043
1044 /* There is a busy wait here when typing "f<C-\>" and then
1045 * something different from CTRL-N. Can't be avoided. */
1046 while ((c = vpeekc()) <= 0 && towait > 0L)
1047 {
1048 do_sleep(towait > 50L ? 50L : towait);
1049 towait -= 50L;
1050 }
1051 if (c > 0)
1052 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001053 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 if (c != Ctrl_N && c != Ctrl_G)
1055 vungetc(c);
1056 else
1057 {
1058 ca.cmdchar = Ctrl_BSL;
1059 ca.nchar = c;
1060 idx = find_command(ca.cmdchar);
1061 }
1062 }
1063 }
1064
1065#ifdef FEAT_MBYTE
1066 /* When getting a text character and the next character is a
1067 * multi-byte character, it could be a composing character.
Bram Moolenaar4f880622014-07-23 12:31:20 +02001068 * However, don't wait for it to arrive. Also, do enable mapping,
1069 * because if it's put back with vungetc() it's too late to apply
1070 * mapping. */
1071 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 while (enc_utf8 && lang && (c = vpeekc()) > 0
1073 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1074 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001075 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 if (!utf_iscomposing(c))
1077 {
1078 vungetc(c); /* it wasn't, put it back */
1079 break;
1080 }
1081 else if (ca.ncharC1 == 0)
1082 ca.ncharC1 = c;
1083 else
1084 ca.ncharC2 = c;
1085 }
Bram Moolenaar4f880622014-07-23 12:31:20 +02001086 ++no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087#endif
1088 }
1089 --no_mapping;
1090 --allow_keys;
1091 }
1092
1093#ifdef FEAT_CMDL_INFO
1094 /*
1095 * Flush the showcmd characters onto the screen so we can see them while
1096 * the command is being executed. Only do this when the shown command was
1097 * actually displayed, otherwise this will slow down a lot when executing
1098 * mappings.
1099 */
1100 if (need_flushbuf)
1101 out_flush();
1102#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00001103#ifdef FEAT_AUTOCMD
Bram Moolenaard9205ca2008-10-02 20:55:54 +00001104 if (ca.cmdchar != K_IGNORE)
1105 did_cursorhold = FALSE;
Bram Moolenaar3918c952005-03-15 22:34:55 +00001106#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107
1108 State = NORMAL;
1109
1110 if (ca.nchar == ESC)
1111 {
1112 clearop(oap);
1113 if (restart_edit == 0 && goto_im())
1114 restart_edit = 'a';
1115 goto normal_end;
1116 }
1117
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001118 if (ca.cmdchar != K_IGNORE)
1119 {
1120 msg_didout = FALSE; /* don't scroll screen up for normal command */
1121 msg_col = 0;
1122 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 old_pos = curwin->w_cursor; /* remember where cursor was */
1125
1126 /* When 'keymodel' contains "startsel" some keys start Select/Visual
1127 * mode. */
1128 if (!VIsual_active && km_startsel)
1129 {
1130 if (nv_cmds[idx].cmd_flags & NV_SS)
1131 {
1132 start_selection();
1133 unshift_special(&ca);
1134 idx = find_command(ca.cmdchar);
1135 }
1136 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1137 && (mod_mask & MOD_MASK_SHIFT))
1138 {
1139 start_selection();
1140 mod_mask &= ~MOD_MASK_SHIFT;
1141 }
1142 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143
1144 /*
1145 * Execute the command!
1146 * Call the command function found in the commands table.
1147 */
1148 ca.arg = nv_cmds[idx].cmd_arg;
1149 (nv_cmds[idx].cmd_func)(&ca);
1150
1151 /*
1152 * If we didn't start or finish an operator, reset oap->regname, unless we
1153 * need it later.
1154 */
1155 if (!finish_op
1156 && !oap->op_type
1157 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1158 {
1159 clearop(oap);
1160#ifdef FEAT_EVAL
Bram Moolenaar536681b2011-05-10 16:12:45 +02001161 {
1162 int regname = 0;
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001163
Bram Moolenaar536681b2011-05-10 16:12:45 +02001164 /* Adjust the register according to 'clipboard', so that when
1165 * "unnamed" is present it becomes '*' or '+' instead of '"'. */
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001166# ifdef FEAT_CLIPBOARD
Bram Moolenaar536681b2011-05-10 16:12:45 +02001167 adjust_clip_reg(&regname);
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001168# endif
Bram Moolenaar536681b2011-05-10 16:12:45 +02001169 set_reg_var(regname);
1170 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171#endif
1172 }
1173
Bram Moolenaarc6039d82005-12-02 00:44:04 +00001174 /* Get the length of mapped chars again after typing a count, second
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001175 * character or "z333<cr>". */
1176 if (old_mapped_len > 0)
1177 old_mapped_len = typebuf_maplen();
1178
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 /*
1180 * If an operation is pending, handle it...
1181 */
1182 do_pending_operator(&ca, old_col, FALSE);
1183
1184 /*
1185 * Wait for a moment when a message is displayed that will be overwritten
1186 * by the mode message.
1187 * In Visual mode and with "^O" in Insert mode, a short message will be
1188 * overwritten by the mode message. Wait a bit, until a key is hit.
1189 * In Visual mode, it's more important to keep the Visual area updated
1190 * than keeping a message (e.g. from a /pat search).
1191 * Only do this if the command was typed, not from a mapping.
1192 * Don't wait when emsg_silent is non-zero.
1193 * Also wait a bit after an error message, e.g. for "^O:".
1194 * Don't redraw the screen, it would remove the message.
1195 */
1196 if ( ((p_smd
Bram Moolenaar09df3122006-01-23 22:23:09 +00001197 && msg_silent == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 && (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 || (VIsual_active
1200 && old_pos.lnum == curwin->w_cursor.lnum
1201 && old_pos.col == curwin->w_cursor.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 )
1203 && (clear_cmdline
1204 || redraw_cmdline)
1205 && (msg_didout || (msg_didany && msg_scroll))
1206 && !msg_nowait
1207 && KeyTyped)
1208 || (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 && (msg_scroll
1211 || emsg_on_display)))
1212 && oap->regname == 0
1213 && !(ca.retval & CA_COMMAND_BUSY)
1214 && stuff_empty()
1215 && typebuf_typed()
1216 && emsg_silent == 0
1217 && !did_wait_return
1218 && oap->op_type == OP_NOP)
1219 {
1220 int save_State = State;
1221
1222 /* Draw the cursor with the right shape here */
1223 if (restart_edit != 0)
1224 State = INSERT;
1225
1226 /* If need to redraw, and there is a "keep_msg", redraw before the
1227 * delay */
1228 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1229 {
1230 char_u *kmsg;
1231
1232 kmsg = keep_msg;
1233 keep_msg = NULL;
1234 /* showmode() will clear keep_msg, but we want to use it anyway */
1235 update_screen(0);
1236 /* now reset it, otherwise it's put in the history again */
1237 keep_msg = kmsg;
1238 msg_attr(kmsg, keep_msg_attr);
1239 vim_free(kmsg);
1240 }
1241 setcursor();
1242 cursor_on();
1243 out_flush();
1244 if (msg_scroll || emsg_on_display)
1245 ui_delay(1000L, TRUE); /* wait at least one second */
1246 ui_delay(3000L, FALSE); /* wait up to three seconds */
1247 State = save_State;
1248
1249 msg_scroll = FALSE;
1250 emsg_on_display = FALSE;
1251 }
1252
1253 /*
1254 * Finish up after executing a Normal mode command.
1255 */
1256normal_end:
1257
1258 msg_nowait = FALSE;
1259
1260 /* Reset finish_op, in case it was set */
1261#ifdef CURSOR_SHAPE
1262 c = finish_op;
1263#endif
1264 finish_op = FALSE;
1265#ifdef CURSOR_SHAPE
1266 /* Redraw the cursor with another shape, if we were in Operator-pending
1267 * mode or did a replace command. */
1268 if (c || ca.cmdchar == 'r')
1269 {
1270 ui_cursor_shape(); /* may show different cursor shape */
1271# ifdef FEAT_MOUSESHAPE
1272 update_mouseshape(-1);
1273# endif
1274 }
1275#endif
1276
1277#ifdef FEAT_CMDL_INFO
Bram Moolenaara983fe92008-07-31 20:04:27 +00001278 if (oap->op_type == OP_NOP && oap->regname == 0
1279# ifdef FEAT_AUTOCMD
1280 && ca.cmdchar != K_CURSORHOLD
1281# endif
1282 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 clear_showcmd();
1284#endif
1285
1286 checkpcmark(); /* check if we moved since setting pcmark */
1287 vim_free(ca.searchbuf);
1288
1289#ifdef FEAT_MBYTE
1290 if (has_mbyte)
1291 mb_adjust_cursor();
1292#endif
1293
1294#ifdef FEAT_SCROLLBIND
1295 if (curwin->w_p_scb && toplevel)
1296 {
1297 validate_cursor(); /* may need to update w_leftcol */
1298 do_check_scrollbind(TRUE);
1299 }
1300#endif
1301
Bram Moolenaar860cae12010-06-05 23:22:07 +02001302#ifdef FEAT_CURSORBIND
1303 if (curwin->w_p_crb && toplevel)
1304 {
1305 validate_cursor(); /* may need to update w_leftcol */
1306 do_check_cursorbind();
1307 }
1308#endif
1309
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 /*
1311 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1312 * if still inside a mapping that started in Visual mode).
1313 * May switch from Visual to Select mode after CTRL-O command.
1314 */
1315 if ( oap->op_type == OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1317 || restart_VIsual_select == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 && !(ca.retval & CA_COMMAND_BUSY)
1319 && stuff_empty()
1320 && oap->regname == 0)
1321 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 if (restart_VIsual_select == 1)
1323 {
1324 VIsual_select = TRUE;
1325 showmode();
1326 restart_VIsual_select = 0;
1327 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001328 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 (void)edit(restart_edit, FALSE, 1L);
1330 }
1331
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 if (restart_VIsual_select == 2)
1333 restart_VIsual_select = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334
1335 /* Save count before an operator for next time. */
1336 opcount = ca.opcount;
1337}
1338
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001339#ifdef FEAT_EVAL
1340/*
1341 * Set v:count and v:count1 according to "cap".
1342 * Set v:prevcount only when "set_prevcount" is TRUE.
1343 */
1344 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001345set_vcount_ca(cmdarg_T *cap, int *set_prevcount)
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001346{
1347 long count = cap->count0;
1348
1349 /* multiply with cap->opcount the same way as above */
1350 if (cap->opcount != 0)
1351 count = cap->opcount * (count == 0 ? 1 : count);
1352 set_vcount(count, count == 0 ? 1 : count, *set_prevcount);
1353 *set_prevcount = FALSE; /* only set v:prevcount once */
1354}
1355#endif
1356
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357/*
1358 * Handle an operator after visual mode or when the movement is finished
1359 */
1360 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001361do_pending_operator(cmdarg_T *cap, int old_col, int gui_yank)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362{
1363 oparg_T *oap = cap->oap;
1364 pos_T old_cursor;
1365 int empty_region_error;
1366 int restart_edit_save;
Bram Moolenaar404406a2014-10-09 13:24:43 +02001367#ifdef FEAT_LINEBREAK
1368 int lbr_saved = curwin->w_p_lbr;
Bram Moolenaar404406a2014-10-09 13:24:43 +02001369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 /* The visual area is remembered for redo */
1372 static int redo_VIsual_mode = NUL; /* 'v', 'V', or Ctrl-V */
1373 static linenr_T redo_VIsual_line_count; /* number of lines */
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001374 static colnr_T redo_VIsual_vcol; /* number of cols or end column */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 static long redo_VIsual_count; /* count for Visual operator */
Bram Moolenaard79e5502016-01-10 22:13:02 +01001376 static int redo_VIsual_arg; /* extra argument */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001377#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 int include_line_break = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379#endif
1380
1381#if defined(FEAT_CLIPBOARD)
1382 /*
1383 * Yank the visual area into the GUI selection register before we operate
1384 * on it and lose it forever.
1385 * Don't do it if a specific register was specified, so that ""x"*P works.
1386 * This could call do_pending_operator() recursively, but that's OK
1387 * because gui_yank will be TRUE for the nested call.
1388 */
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001389 if ((clip_star.available || clip_plus.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 && oap->op_type != OP_NOP
1391 && !gui_yank
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 && VIsual_active
1393 && !redo_VIsual_busy
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 && oap->regname == 0)
1395 clip_auto_select();
1396#endif
1397 old_cursor = curwin->w_cursor;
1398
1399 /*
1400 * If an operation is pending, handle it...
1401 */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001402 if ((finish_op || VIsual_active) && oap->op_type != OP_NOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 {
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001404#ifdef FEAT_LINEBREAK
1405 /* Avoid a problem with unwanted linebreaks in block mode. */
Bram Moolenaar74db34c2015-06-25 13:30:46 +02001406 if (curwin->w_p_lbr)
1407 curwin->w_valid &= ~VALID_VIRTCOL;
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001408 curwin->w_p_lbr = FALSE;
1409#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 oap->is_VIsual = VIsual_active;
1411 if (oap->motion_force == 'V')
1412 oap->motion_type = MLINE;
1413 else if (oap->motion_force == 'v')
1414 {
1415 /* If the motion was linewise, "inclusive" will not have been set.
1416 * Use "exclusive" to be consistent. Makes "dvj" work nice. */
1417 if (oap->motion_type == MLINE)
1418 oap->inclusive = FALSE;
1419 /* If the motion already was characterwise, toggle "inclusive" */
1420 else if (oap->motion_type == MCHAR)
1421 oap->inclusive = !oap->inclusive;
1422 oap->motion_type = MCHAR;
1423 }
1424 else if (oap->motion_force == Ctrl_V)
1425 {
1426 /* Change line- or characterwise motion into Visual block mode. */
1427 VIsual_active = TRUE;
1428 VIsual = oap->start;
1429 VIsual_mode = Ctrl_V;
1430 VIsual_select = FALSE;
1431 VIsual_reselect = FALSE;
1432 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433
Bram Moolenaar7afea822013-04-24 18:34:45 +02001434 /* Only redo yank when 'y' flag is in 'cpoptions'. */
1435 /* Never redo "zf" (define fold). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 if ((vim_strchr(p_cpo, CPO_YANK) != NULL || oap->op_type != OP_YANK)
Bram Moolenaar7afea822013-04-24 18:34:45 +02001437 && ((!VIsual_active || oap->motion_force)
1438 /* Also redo Operator-pending Visual mode mappings */
1439 || (VIsual_active && cap->cmdchar == ':'
1440 && oap->op_type != OP_COLON))
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001441 && cap->cmdchar != 'D'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442#ifdef FEAT_FOLDING
1443 && oap->op_type != OP_FOLD
1444 && oap->op_type != OP_FOLDOPEN
1445 && oap->op_type != OP_FOLDOPENREC
1446 && oap->op_type != OP_FOLDCLOSE
1447 && oap->op_type != OP_FOLDCLOSEREC
1448 && oap->op_type != OP_FOLDDEL
1449 && oap->op_type != OP_FOLDDELREC
1450#endif
1451 )
1452 {
1453 prep_redo(oap->regname, cap->count0,
1454 get_op_char(oap->op_type), get_extra_op_char(oap->op_type),
1455 oap->motion_force, cap->cmdchar, cap->nchar);
1456 if (cap->cmdchar == '/' || cap->cmdchar == '?') /* was a search */
1457 {
1458 /*
1459 * If 'cpoptions' does not contain 'r', insert the search
1460 * pattern to really repeat the same command.
1461 */
1462 if (vim_strchr(p_cpo, CPO_REDO) == NULL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00001463 AppendToRedobuffLit(cap->searchbuf, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 AppendToRedobuff(NL_STR);
1465 }
1466 else if (cap->cmdchar == ':')
1467 {
1468 /* do_cmdline() has stored the first typed line in
1469 * "repeat_cmdline". When several lines are typed repeating
1470 * won't be possible. */
1471 if (repeat_cmdline == NULL)
1472 ResetRedobuff();
1473 else
1474 {
Bram Moolenaarebefac62005-12-28 22:39:57 +00001475 AppendToRedobuffLit(repeat_cmdline, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 AppendToRedobuff(NL_STR);
1477 vim_free(repeat_cmdline);
1478 repeat_cmdline = NULL;
1479 }
1480 }
1481 }
1482
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 if (redo_VIsual_busy)
1484 {
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001485 /* Redo of an operation on a Visual area. Use the same size from
1486 * redo_VIsual_line_count and redo_VIsual_vcol. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487 oap->start = curwin->w_cursor;
1488 curwin->w_cursor.lnum += redo_VIsual_line_count - 1;
1489 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1490 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1491 VIsual_mode = redo_VIsual_mode;
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001492 if (redo_VIsual_vcol == MAXCOL || VIsual_mode == 'v')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 {
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001494 if (VIsual_mode == 'v')
1495 {
1496 if (redo_VIsual_line_count <= 1)
1497 {
1498 validate_virtcol();
1499 curwin->w_curswant =
1500 curwin->w_virtcol + redo_VIsual_vcol - 1;
1501 }
1502 else
1503 curwin->w_curswant = redo_VIsual_vcol;
1504 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001506 {
1507 curwin->w_curswant = MAXCOL;
1508 }
1509 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 }
1511 cap->count0 = redo_VIsual_count;
1512 if (redo_VIsual_count != 0)
1513 cap->count1 = redo_VIsual_count;
1514 else
1515 cap->count1 = 1;
1516 }
1517 else if (VIsual_active)
1518 {
Bram Moolenaar6179c612006-10-10 11:26:53 +00001519 if (!gui_yank)
1520 {
1521 /* Save the current VIsual area for '< and '> marks, and "gv" */
1522 curbuf->b_visual.vi_start = VIsual;
1523 curbuf->b_visual.vi_end = curwin->w_cursor;
1524 curbuf->b_visual.vi_mode = VIsual_mode;
Bram Moolenaara390bb62013-03-13 19:02:41 +01001525 if (VIsual_mode_orig != NUL)
1526 {
1527 curbuf->b_visual.vi_mode = VIsual_mode_orig;
1528 VIsual_mode_orig = NUL;
1529 }
Bram Moolenaar6179c612006-10-10 11:26:53 +00001530 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531# ifdef FEAT_EVAL
Bram Moolenaar6179c612006-10-10 11:26:53 +00001532 curbuf->b_visual_mode_eval = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533# endif
Bram Moolenaar6179c612006-10-10 11:26:53 +00001534 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535
1536 /* In Select mode, a linewise selection is operated upon like a
Bram Moolenaard009e862015-06-09 20:20:03 +02001537 * characterwise selection.
1538 * Special case: gH<Del> deletes the last line. */
1539 if (VIsual_select && VIsual_mode == 'V'
1540 && cap->oap->op_type != OP_DELETE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 {
1542 if (lt(VIsual, curwin->w_cursor))
1543 {
1544 VIsual.col = 0;
1545 curwin->w_cursor.col =
1546 (colnr_T)STRLEN(ml_get(curwin->w_cursor.lnum));
1547 }
1548 else
1549 {
1550 curwin->w_cursor.col = 0;
1551 VIsual.col = (colnr_T)STRLEN(ml_get(VIsual.lnum));
1552 }
1553 VIsual_mode = 'v';
1554 }
1555 /* If 'selection' is "exclusive", backup one character for
1556 * charwise selections. */
1557 else if (VIsual_mode == 'v')
1558 {
1559# ifdef FEAT_VIRTUALEDIT
1560 include_line_break =
1561# endif
1562 unadjust_for_sel();
1563 }
1564
1565 oap->start = VIsual;
1566 if (VIsual_mode == 'V')
1567 oap->start.col = 0;
1568 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569
1570 /*
1571 * Set oap->start to the first position of the operated text, oap->end
1572 * to the end of the operated text. w_cursor is equal to oap->start.
1573 */
1574 if (lt(oap->start, curwin->w_cursor))
1575 {
1576#ifdef FEAT_FOLDING
1577 /* Include folded lines completely. */
1578 if (!VIsual_active)
1579 {
1580 if (hasFolding(oap->start.lnum, &oap->start.lnum, NULL))
1581 oap->start.col = 0;
1582 if (hasFolding(curwin->w_cursor.lnum, NULL,
1583 &curwin->w_cursor.lnum))
1584 curwin->w_cursor.col = (colnr_T)STRLEN(ml_get_curline());
1585 }
1586#endif
1587 oap->end = curwin->w_cursor;
1588 curwin->w_cursor = oap->start;
1589
1590 /* w_virtcol may have been updated; if the cursor goes back to its
1591 * previous position w_virtcol becomes invalid and isn't updated
1592 * automatically. */
1593 curwin->w_valid &= ~VALID_VIRTCOL;
1594 }
1595 else
1596 {
1597#ifdef FEAT_FOLDING
1598 /* Include folded lines completely. */
1599 if (!VIsual_active && oap->motion_type == MLINE)
1600 {
1601 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum,
1602 NULL))
1603 curwin->w_cursor.col = 0;
1604 if (hasFolding(oap->start.lnum, NULL, &oap->start.lnum))
1605 oap->start.col = (colnr_T)STRLEN(ml_get(oap->start.lnum));
1606 }
1607#endif
1608 oap->end = oap->start;
1609 oap->start = curwin->w_cursor;
1610 }
1611
Bram Moolenaarc4a908e2016-09-08 23:35:30 +02001612 /* Just in case lines were deleted that make the position invalid. */
1613 check_pos(curwin->w_buffer, &oap->end);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 oap->line_count = oap->end.lnum - oap->start.lnum + 1;
1615
1616#ifdef FEAT_VIRTUALEDIT
1617 /* Set "virtual_op" before resetting VIsual_active. */
1618 virtual_op = virtual_active();
1619#endif
1620
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 if (VIsual_active || redo_VIsual_busy)
1622 {
Bram Moolenaar74db34c2015-06-25 13:30:46 +02001623 get_op_vcol(oap, redo_VIsual_vcol, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624
1625 if (!redo_VIsual_busy && !gui_yank)
1626 {
1627 /*
1628 * Prepare to reselect and redo Visual: this is based on the
1629 * size of the Visual text
1630 */
1631 resel_VIsual_mode = VIsual_mode;
1632 if (curwin->w_curswant == MAXCOL)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001633 resel_VIsual_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001635 {
1636 if (VIsual_mode != Ctrl_V)
1637 getvvcol(curwin, &(oap->end),
1638 NULL, NULL, &oap->end_vcol);
1639 if (VIsual_mode == Ctrl_V || oap->line_count <= 1)
1640 {
1641 if (VIsual_mode != Ctrl_V)
1642 getvvcol(curwin, &(oap->start),
1643 &oap->start_vcol, NULL, NULL);
1644 resel_VIsual_vcol = oap->end_vcol - oap->start_vcol + 1;
1645 }
1646 else
1647 resel_VIsual_vcol = oap->end_vcol;
1648 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 resel_VIsual_line_count = oap->line_count;
1650 }
1651
1652 /* can't redo yank (unless 'y' is in 'cpoptions') and ":" */
1653 if ((vim_strchr(p_cpo, CPO_YANK) != NULL || oap->op_type != OP_YANK)
1654 && oap->op_type != OP_COLON
1655#ifdef FEAT_FOLDING
1656 && oap->op_type != OP_FOLD
1657 && oap->op_type != OP_FOLDOPEN
1658 && oap->op_type != OP_FOLDOPENREC
1659 && oap->op_type != OP_FOLDCLOSE
1660 && oap->op_type != OP_FOLDCLOSEREC
1661 && oap->op_type != OP_FOLDDEL
1662 && oap->op_type != OP_FOLDDELREC
1663#endif
1664 && oap->motion_force == NUL
1665 )
1666 {
1667 /* Prepare for redoing. Only use the nchar field for "r",
1668 * otherwise it might be the second char of the operator. */
Bram Moolenaar641e2862012-07-25 15:06:34 +02001669 if (cap->cmdchar == 'g' && (cap->nchar == 'n'
1670 || cap->nchar == 'N'))
Bram Moolenaarba2d44f2013-11-28 19:27:30 +01001671 prep_redo(oap->regname, cap->count0,
1672 get_op_char(oap->op_type), get_extra_op_char(oap->op_type),
1673 oap->motion_force, cap->cmdchar, cap->nchar);
Bram Moolenaar7afea822013-04-24 18:34:45 +02001674 else if (cap->cmdchar != ':')
Bram Moolenaar641e2862012-07-25 15:06:34 +02001675 prep_redo(oap->regname, 0L, NUL, 'v',
1676 get_op_char(oap->op_type),
1677 get_extra_op_char(oap->op_type),
1678 oap->op_type == OP_REPLACE
1679 ? cap->nchar : NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680 if (!redo_VIsual_busy)
1681 {
1682 redo_VIsual_mode = resel_VIsual_mode;
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02001683 redo_VIsual_vcol = resel_VIsual_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 redo_VIsual_line_count = resel_VIsual_line_count;
1685 redo_VIsual_count = cap->count0;
Bram Moolenaard79e5502016-01-10 22:13:02 +01001686 redo_VIsual_arg = cap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 }
1688 }
1689
1690 /*
1691 * oap->inclusive defaults to TRUE.
1692 * If oap->end is on a NUL (empty line) oap->inclusive becomes
1693 * FALSE. This makes "d}P" and "v}dP" work the same.
1694 */
1695 if (oap->motion_force == NUL || oap->motion_type == MLINE)
1696 oap->inclusive = TRUE;
1697 if (VIsual_mode == 'V')
1698 oap->motion_type = MLINE;
1699 else
1700 {
1701 oap->motion_type = MCHAR;
1702 if (VIsual_mode != Ctrl_V && *ml_get_pos(&(oap->end)) == NUL
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001703#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 && (include_line_break || !virtual_op)
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001705#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 )
1707 {
1708 oap->inclusive = FALSE;
1709 /* Try to include the newline, unless it's an operator
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001710 * that works on lines only. */
Bram Moolenaard009e862015-06-09 20:20:03 +02001711 if (*p_sel != 'o'
1712 && !op_on_lines(oap->op_type)
1713 && oap->end.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 {
Bram Moolenaard009e862015-06-09 20:20:03 +02001715 ++oap->end.lnum;
1716 oap->end.col = 0;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001717#ifdef FEAT_VIRTUALEDIT
Bram Moolenaard009e862015-06-09 20:20:03 +02001718 oap->end.coladd = 0;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001719#endif
Bram Moolenaard009e862015-06-09 20:20:03 +02001720 ++oap->line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 }
1722 }
1723 }
1724
1725 redo_VIsual_busy = FALSE;
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00001726
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 /*
1728 * Switch Visual off now, so screen updating does
1729 * not show inverted text when the screen is redrawn.
1730 * With OP_YANK and sometimes with OP_COLON and OP_FILTER there is
1731 * no screen redraw, so it is done here to remove the inverted
1732 * part.
1733 */
1734 if (!gui_yank)
1735 {
1736 VIsual_active = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001737#ifdef FEAT_MOUSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 setmouse();
1739 mouse_dragging = 0;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001740#endif
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001741 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 if ((oap->op_type == OP_YANK
1743 || oap->op_type == OP_COLON
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00001744 || oap->op_type == OP_FUNCTION
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 || oap->op_type == OP_FILTER)
1746 && oap->motion_force == NUL)
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001747 {
1748#ifdef FEAT_LINEBREAK
1749 /* make sure redrawing is correct */
1750 curwin->w_p_lbr = lbr_saved;
1751#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 redraw_curbuf_later(INVERTED);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001753 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 }
1755 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756
1757#ifdef FEAT_MBYTE
1758 /* Include the trailing byte of a multi-byte char. */
1759 if (has_mbyte && oap->inclusive)
1760 {
1761 int l;
1762
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001763 l = (*mb_ptr2len)(ml_get_pos(&oap->end));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 if (l > 1)
1765 oap->end.col += l - 1;
1766 }
1767#endif
1768 curwin->w_set_curswant = TRUE;
1769
1770 /*
1771 * oap->empty is set when start and end are the same. The inclusive
1772 * flag affects this too, unless yanking and the end is on a NUL.
1773 */
1774 oap->empty = (oap->motion_type == MCHAR
1775 && (!oap->inclusive
1776 || (oap->op_type == OP_YANK
1777 && gchar_pos(&oap->end) == NUL))
1778 && equalpos(oap->start, oap->end)
1779#ifdef FEAT_VIRTUALEDIT
1780 && !(virtual_op && oap->start.coladd != oap->end.coladd)
1781#endif
1782 );
1783 /*
1784 * For delete, change and yank, it's an error to operate on an
1785 * empty region, when 'E' included in 'cpoptions' (Vi compatible).
1786 */
1787 empty_region_error = (oap->empty
1788 && vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL);
1789
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 /* Force a redraw when operating on an empty Visual region, when
1791 * 'modifiable is off or creating a fold. */
1792 if (oap->is_VIsual && (oap->empty || !curbuf->b_p_ma
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001793#ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 || oap->op_type == OP_FOLD
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001795#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 ))
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001797 {
1798#ifdef FEAT_LINEBREAK
1799 curwin->w_p_lbr = lbr_saved;
1800#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 redraw_curbuf_later(INVERTED);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001802 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803
1804 /*
1805 * If the end of an operator is in column one while oap->motion_type
1806 * is MCHAR and oap->inclusive is FALSE, we put op_end after the last
1807 * character in the previous line. If op_start is on or before the
1808 * first non-blank in the line, the operator becomes linewise
1809 * (strange, but that's the way vi does it).
1810 */
1811 if ( oap->motion_type == MCHAR
1812 && oap->inclusive == FALSE
1813 && !(cap->retval & CA_NO_ADJ_OP_END)
1814 && oap->end.col == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaar34114692005-01-02 11:28:13 +00001816 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 && oap->line_count > 1)
1818 {
1819 oap->end_adjusted = TRUE; /* remember that we did this */
1820 --oap->line_count;
1821 --oap->end.lnum;
1822 if (inindent(0))
1823 oap->motion_type = MLINE;
1824 else
1825 {
1826 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
1827 if (oap->end.col)
1828 {
1829 --oap->end.col;
1830 oap->inclusive = TRUE;
1831 }
1832 }
1833 }
1834 else
1835 oap->end_adjusted = FALSE;
1836
1837 switch (oap->op_type)
1838 {
1839 case OP_LSHIFT:
1840 case OP_RSHIFT:
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001841 op_shift(oap, TRUE, oap->is_VIsual ? (int)cap->count1 : 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 auto_format(FALSE, TRUE);
1843 break;
1844
1845 case OP_JOIN_NS:
1846 case OP_JOIN:
1847 if (oap->line_count < 2)
1848 oap->line_count = 2;
1849 if (curwin->w_cursor.lnum + oap->line_count - 1 >
1850 curbuf->b_ml.ml_line_count)
1851 beep_flush();
1852 else
1853 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001854 (void)do_join(oap->line_count, oap->op_type == OP_JOIN,
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02001855 TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 auto_format(FALSE, TRUE);
1857 }
1858 break;
1859
1860 case OP_DELETE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 VIsual_reselect = FALSE; /* don't reselect now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 if (empty_region_error)
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001863 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02001864 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001865 CancelRedo();
1866 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 else
1868 {
1869 (void)op_delete(oap);
1870 if (oap->motion_type == MLINE && has_format_option(FO_AUTO))
1871 u_save_cursor(); /* cursor line wasn't saved yet */
1872 auto_format(FALSE, TRUE);
1873 }
1874 break;
1875
1876 case OP_YANK:
1877 if (empty_region_error)
1878 {
1879 if (!gui_yank)
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001880 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02001881 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001882 CancelRedo();
1883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 }
1885 else
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001886 {
1887#ifdef FEAT_LINEBREAK
1888 curwin->w_p_lbr = lbr_saved;
1889#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 (void)op_yank(oap, FALSE, !gui_yank);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001891 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 check_cursor_col();
1893 break;
1894
1895 case OP_CHANGE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 VIsual_reselect = FALSE; /* don't reselect now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 if (empty_region_error)
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001898 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02001899 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001900 CancelRedo();
1901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 else
1903 {
1904 /* This is a new edit command, not a restart. Need to
1905 * remember it to make 'insertmode' work with mappings for
1906 * Visual mode. But do this only once and not when typed and
1907 * 'insertmode' isn't set. */
1908 if (p_im || !KeyTyped)
1909 restart_edit_save = restart_edit;
1910 else
1911 restart_edit_save = 0;
1912 restart_edit = 0;
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001913#ifdef FEAT_LINEBREAK
1914 /* Restore linebreak, so that when the user edits it looks as
1915 * before. */
Bram Moolenaar74db34c2015-06-25 13:30:46 +02001916 if (curwin->w_p_lbr != lbr_saved)
1917 {
1918 curwin->w_p_lbr = lbr_saved;
1919 get_op_vcol(oap, redo_VIsual_mode, FALSE);
1920 }
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01001921#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 /* Reset finish_op now, don't want it set inside edit(). */
1923 finish_op = FALSE;
1924 if (op_change(oap)) /* will call edit() */
1925 cap->retval |= CA_COMMAND_BUSY;
1926 if (restart_edit == 0)
1927 restart_edit = restart_edit_save;
1928 }
1929 break;
1930
1931 case OP_FILTER:
1932 if (vim_strchr(p_cpo, CPO_FILTER) != NULL)
1933 AppendToRedobuff((char_u *)"!\r"); /* use any last used !cmd */
1934 else
1935 bangredo = TRUE; /* do_bang() will put cmd in redo buffer */
1936
1937 case OP_INDENT:
1938 case OP_COLON:
1939
1940#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
1941 /*
1942 * If 'equalprg' is empty, do the indenting internally.
1943 */
1944 if (oap->op_type == OP_INDENT && *get_equalprg() == NUL)
1945 {
1946# ifdef FEAT_LISP
1947 if (curbuf->b_p_lisp)
1948 {
1949 op_reindent(oap, get_lisp_indent);
1950 break;
1951 }
1952# endif
1953# ifdef FEAT_CINDENT
1954 op_reindent(oap,
1955# ifdef FEAT_EVAL
1956 *curbuf->b_p_inde != NUL ? get_expr_indent :
1957# endif
1958 get_c_indent);
1959 break;
1960# endif
1961 }
1962#endif
1963
1964 op_colon(oap);
1965 break;
1966
1967 case OP_TILDE:
1968 case OP_UPPER:
1969 case OP_LOWER:
1970 case OP_ROT13:
1971 if (empty_region_error)
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001972 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02001973 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01001974 CancelRedo();
1975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 else
1977 op_tilde(oap);
1978 check_cursor_col();
1979 break;
1980
1981 case OP_FORMAT:
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001982#if defined(FEAT_EVAL)
1983 if (*curbuf->b_p_fex != NUL)
1984 op_formatexpr(oap); /* use expression */
1985 else
1986#endif
Bram Moolenaar9be7c042017-01-14 14:28:30 +01001987 if (*p_fp != NUL || *curbuf->b_p_fp != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 op_colon(oap); /* use external command */
1989 else
1990 op_format(oap, FALSE); /* use internal function */
1991 break;
1992
1993 case OP_FORMAT2:
1994 op_format(oap, TRUE); /* use internal function */
1995 break;
1996
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00001997 case OP_FUNCTION:
Bram Moolenaar4a08b0d2016-11-05 21:55:13 +01001998#ifdef FEAT_LINEBREAK
1999 /* Restore linebreak, so that when the user edits it looks as
2000 * before. */
2001 curwin->w_p_lbr = lbr_saved;
2002#endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002003 op_function(oap); /* call 'operatorfunc' */
2004 break;
2005
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 case OP_INSERT:
2007 case OP_APPEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 VIsual_reselect = FALSE; /* don't reselect now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009#ifdef FEAT_VISUALEXTRA
2010 if (empty_region_error)
Bram Moolenaarbe094a12012-02-05 01:18:48 +01002011 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02002012 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01002013 CancelRedo();
2014 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 else
2016 {
2017 /* This is a new edit command, not a restart. Need to
2018 * remember it to make 'insertmode' work with mappings for
2019 * Visual mode. But do this only once. */
2020 restart_edit_save = restart_edit;
2021 restart_edit = 0;
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002022#ifdef FEAT_LINEBREAK
2023 /* Restore linebreak, so that when the user edits it looks as
2024 * before. */
Bram Moolenaar74db34c2015-06-25 13:30:46 +02002025 if (curwin->w_p_lbr != lbr_saved)
2026 {
2027 curwin->w_p_lbr = lbr_saved;
2028 get_op_vcol(oap, redo_VIsual_mode, FALSE);
2029 }
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002030#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 op_insert(oap, cap->count1);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002032#ifdef FEAT_LINEBREAK
2033 /* Reset linebreak, so that formatting works correctly. */
2034 curwin->w_p_lbr = FALSE;
2035#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036
2037 /* TODO: when inserting in several lines, should format all
2038 * the lines. */
2039 auto_format(FALSE, TRUE);
2040
2041 if (restart_edit == 0)
2042 restart_edit = restart_edit_save;
2043 }
2044#else
Bram Moolenaar165bc692015-07-21 17:53:25 +02002045 vim_beep(BO_OPER);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046#endif
2047 break;
2048
2049 case OP_REPLACE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 VIsual_reselect = FALSE; /* don't reselect now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051#ifdef FEAT_VISUALEXTRA
2052 if (empty_region_error)
2053#endif
Bram Moolenaarbe094a12012-02-05 01:18:48 +01002054 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02002055 vim_beep(BO_OPER);
Bram Moolenaarbe094a12012-02-05 01:18:48 +01002056 CancelRedo();
2057 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058#ifdef FEAT_VISUALEXTRA
2059 else
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002060 {
Bram Moolenaar74db34c2015-06-25 13:30:46 +02002061# ifdef FEAT_LINEBREAK
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002062 /* Restore linebreak, so that when the user edits it looks as
2063 * before. */
Bram Moolenaar74db34c2015-06-25 13:30:46 +02002064 if (curwin->w_p_lbr != lbr_saved)
2065 {
2066 curwin->w_p_lbr = lbr_saved;
2067 get_op_vcol(oap, redo_VIsual_mode, FALSE);
2068 }
2069# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 op_replace(oap, cap->nchar);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002071 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072#endif
2073 break;
2074
2075#ifdef FEAT_FOLDING
2076 case OP_FOLD:
2077 VIsual_reselect = FALSE; /* don't reselect now */
2078 foldCreate(oap->start.lnum, oap->end.lnum);
2079 break;
2080
2081 case OP_FOLDOPEN:
2082 case OP_FOLDOPENREC:
2083 case OP_FOLDCLOSE:
2084 case OP_FOLDCLOSEREC:
2085 VIsual_reselect = FALSE; /* don't reselect now */
2086 opFoldRange(oap->start.lnum, oap->end.lnum,
2087 oap->op_type == OP_FOLDOPEN
2088 || oap->op_type == OP_FOLDOPENREC,
2089 oap->op_type == OP_FOLDOPENREC
2090 || oap->op_type == OP_FOLDCLOSEREC,
2091 oap->is_VIsual);
2092 break;
2093
2094 case OP_FOLDDEL:
2095 case OP_FOLDDELREC:
2096 VIsual_reselect = FALSE; /* don't reselect now */
2097 deleteFold(oap->start.lnum, oap->end.lnum,
2098 oap->op_type == OP_FOLDDELREC, oap->is_VIsual);
2099 break;
2100#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01002101 case OP_NR_ADD:
2102 case OP_NR_SUB:
2103 if (empty_region_error)
2104 {
2105 vim_beep(BO_OPER);
2106 CancelRedo();
2107 }
2108 else
2109 {
2110 VIsual_active = TRUE;
2111#ifdef FEAT_LINEBREAK
2112 curwin->w_p_lbr = lbr_saved;
2113#endif
2114 op_addsub(oap, cap->count1, redo_VIsual_arg);
2115 VIsual_active = FALSE;
2116 }
2117 check_cursor_col();
2118 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 default:
2120 clearopbeep(oap);
2121 }
2122#ifdef FEAT_VIRTUALEDIT
2123 virtual_op = MAYBE;
2124#endif
2125 if (!gui_yank)
2126 {
2127 /*
2128 * if 'sol' not set, go back to old column for some commands
2129 */
2130 if (!p_sol && oap->motion_type == MLINE && !oap->end_adjusted
2131 && (oap->op_type == OP_LSHIFT || oap->op_type == OP_RSHIFT
2132 || oap->op_type == OP_DELETE))
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002133 {
2134#ifdef FEAT_LINEBREAK
2135 curwin->w_p_lbr = FALSE;
2136#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 coladvance(curwin->w_curswant = old_col);
Bram Moolenaarba3f58e2015-01-14 17:52:30 +01002138 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 }
2140 else
2141 {
2142 curwin->w_cursor = old_cursor;
2143 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 oap->block_mode = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 clearop(oap);
2146 }
Bram Moolenaar404406a2014-10-09 13:24:43 +02002147#ifdef FEAT_LINEBREAK
2148 curwin->w_p_lbr = lbr_saved;
2149#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150}
2151
2152/*
2153 * Handle indent and format operators and visual mode ":".
2154 */
2155 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002156op_colon(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157{
2158 stuffcharReadbuff(':');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 if (oap->is_VIsual)
2160 stuffReadbuff((char_u *)"'<,'>");
2161 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 {
2163 /*
2164 * Make the range look nice, so it can be repeated.
2165 */
2166 if (oap->start.lnum == curwin->w_cursor.lnum)
2167 stuffcharReadbuff('.');
2168 else
2169 stuffnumReadbuff((long)oap->start.lnum);
2170 if (oap->end.lnum != oap->start.lnum)
2171 {
2172 stuffcharReadbuff(',');
2173 if (oap->end.lnum == curwin->w_cursor.lnum)
2174 stuffcharReadbuff('.');
2175 else if (oap->end.lnum == curbuf->b_ml.ml_line_count)
2176 stuffcharReadbuff('$');
2177 else if (oap->start.lnum == curwin->w_cursor.lnum)
2178 {
2179 stuffReadbuff((char_u *)".+");
2180 stuffnumReadbuff((long)oap->line_count - 1);
2181 }
2182 else
2183 stuffnumReadbuff((long)oap->end.lnum);
2184 }
2185 }
2186 if (oap->op_type != OP_COLON)
2187 stuffReadbuff((char_u *)"!");
2188 if (oap->op_type == OP_INDENT)
2189 {
2190#ifndef FEAT_CINDENT
2191 if (*get_equalprg() == NUL)
2192 stuffReadbuff((char_u *)"indent");
2193 else
2194#endif
2195 stuffReadbuff(get_equalprg());
2196 stuffReadbuff((char_u *)"\n");
2197 }
2198 else if (oap->op_type == OP_FORMAT)
2199 {
Bram Moolenaar9be7c042017-01-14 14:28:30 +01002200 if (*curbuf->b_p_fp != NUL)
2201 stuffReadbuff(curbuf->b_p_fp);
2202 else if (*p_fp != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 stuffReadbuff(p_fp);
Bram Moolenaar9be7c042017-01-14 14:28:30 +01002204 else
2205 stuffReadbuff((char_u *)"fmt");
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002206 stuffReadbuff((char_u *)"\n']");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 }
2208
2209 /*
2210 * do_cmdline() does the rest
2211 */
2212}
2213
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002214/*
Bram Moolenaar12033fb2005-12-16 21:49:31 +00002215 * Handle the "g@" operator: call 'operatorfunc'.
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002216 */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002217 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002218op_function(oparg_T *oap UNUSED)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002219{
2220#ifdef FEAT_EVAL
2221 char_u *(argv[1]);
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01002222# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar61d281a2012-03-28 12:59:57 +02002223 int save_virtual_op = virtual_op;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01002224# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002225
2226 if (*p_opfunc == NUL)
2227 EMSG(_("E774: 'operatorfunc' is empty"));
2228 else
2229 {
2230 /* Set '[ and '] marks to text to be operated on. */
2231 curbuf->b_op_start = oap->start;
2232 curbuf->b_op_end = oap->end;
2233 if (oap->motion_type != MLINE && !oap->inclusive)
2234 /* Exclude the end position. */
2235 decl(&curbuf->b_op_end);
2236
2237 if (oap->block_mode)
2238 argv[0] = (char_u *)"block";
2239 else if (oap->motion_type == MLINE)
2240 argv[0] = (char_u *)"line";
2241 else
2242 argv[0] = (char_u *)"char";
Bram Moolenaar61d281a2012-03-28 12:59:57 +02002243
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01002244# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar61d281a2012-03-28 12:59:57 +02002245 /* Reset virtual_op so that 'virtualedit' can be changed in the
2246 * function. */
2247 virtual_op = MAYBE;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01002248# endif
Bram Moolenaar61d281a2012-03-28 12:59:57 +02002249
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002250 (void)call_func_retnr(p_opfunc, 1, argv, FALSE);
Bram Moolenaar61d281a2012-03-28 12:59:57 +02002251
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01002252# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar61d281a2012-03-28 12:59:57 +02002253 virtual_op = save_virtual_op;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01002254# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00002255 }
2256#else
2257 EMSG(_("E775: Eval feature not available"));
2258#endif
2259}
2260
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261#if defined(FEAT_MOUSE) || defined(PROTO)
2262/*
2263 * Do the appropriate action for the current mouse click in the current mode.
2264 * Not used for Command-line mode.
2265 *
2266 * Normal Mode:
2267 * event modi- position visual change action
2268 * fier cursor window
2269 * left press - yes end yes
2270 * left press C yes end yes "^]" (2)
2271 * left press S yes end yes "*" (2)
2272 * left drag - yes start if moved no
2273 * left relse - yes start if moved no
2274 * middle press - yes if not active no put register
2275 * middle press - yes if active no yank and put
2276 * right press - yes start or extend yes
2277 * right press S yes no change yes "#" (2)
2278 * right drag - yes extend no
2279 * right relse - yes extend no
2280 *
2281 * Insert or Replace Mode:
2282 * event modi- position visual change action
2283 * fier cursor window
2284 * left press - yes (cannot be active) yes
2285 * left press C yes (cannot be active) yes "CTRL-O^]" (2)
2286 * left press S yes (cannot be active) yes "CTRL-O*" (2)
2287 * left drag - yes start or extend (1) no CTRL-O (1)
2288 * left relse - yes start or extend (1) no CTRL-O (1)
2289 * middle press - no (cannot be active) no put register
2290 * right press - yes start or extend yes CTRL-O
2291 * right press S yes (cannot be active) yes "CTRL-O#" (2)
2292 *
2293 * (1) only if mouse pointer moved since press
2294 * (2) only if click is in same buffer
2295 *
2296 * Return TRUE if start_arrow() should be called for edit mode.
2297 */
2298 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002299do_mouse(
2300 oparg_T *oap, /* operator argument, can be NULL */
2301 int c, /* K_LEFTMOUSE, etc */
2302 int dir, /* Direction to 'put' if necessary */
2303 long count,
2304 int fixindent) /* PUT_FIXINDENT if fixing indent necessary */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305{
2306 static int do_always = FALSE; /* ignore 'mouse' setting next time */
2307 static int got_click = FALSE; /* got a click some time back */
2308
2309 int which_button; /* MOUSE_LEFT, _MIDDLE or _RIGHT */
2310 int is_click; /* If FALSE it's a drag or release event */
2311 int is_drag; /* If TRUE it's a drag event */
2312 int jump_flags = 0; /* flags for jump_to_mouse() */
2313 pos_T start_visual;
2314 int moved; /* Has cursor moved? */
2315 int in_status_line; /* mouse in status line */
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002316#ifdef FEAT_WINDOWS
2317 static int in_tab_line = FALSE; /* mouse clicked in tab line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 int in_sep_line; /* mouse in vertical separator line */
2319#endif
2320 int c1, c2;
2321#if defined(FEAT_FOLDING)
2322 pos_T save_cursor;
2323#endif
2324 win_T *old_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 static pos_T orig_cursor;
2326 colnr_T leftcol, rightcol;
2327 pos_T end_visual;
2328 int diff;
2329 int old_active = VIsual_active;
2330 int old_mode = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 int regname;
2332
2333#if defined(FEAT_FOLDING)
2334 save_cursor = curwin->w_cursor;
2335#endif
2336
2337 /*
2338 * When GUI is active, always recognize mouse events, otherwise:
2339 * - Ignore mouse event in normal mode if 'mouse' doesn't include 'n'.
2340 * - Ignore mouse event in visual mode if 'mouse' doesn't include 'v'.
2341 * - For command line and insert mode 'mouse' is checked before calling
2342 * do_mouse().
2343 */
2344 if (do_always)
2345 do_always = FALSE;
2346 else
2347#ifdef FEAT_GUI
2348 if (!gui.in_use)
2349#endif
2350 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 if (VIsual_active)
2352 {
2353 if (!mouse_has(MOUSE_VISUAL))
2354 return FALSE;
2355 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002356 else if (State == NORMAL && !mouse_has(MOUSE_NORMAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 return FALSE;
2358 }
2359
Bram Moolenaar2526ef22013-03-16 14:20:51 +01002360 for (;;)
2361 {
2362 which_button = get_mouse_button(KEY2TERMCAP1(c), &is_click, &is_drag);
2363 if (is_drag)
2364 {
2365 /* If the next character is the same mouse event then use that
2366 * one. Speeds up dragging the status line. */
2367 if (vpeekc() != NUL)
2368 {
2369 int nc;
2370 int save_mouse_row = mouse_row;
2371 int save_mouse_col = mouse_col;
2372
2373 /* Need to get the character, peeking doesn't get the actual
2374 * one. */
2375 nc = safe_vgetc();
2376 if (c == nc)
2377 continue;
2378 vungetc(nc);
2379 mouse_row = save_mouse_row;
2380 mouse_col = save_mouse_col;
2381 }
2382 }
2383 break;
2384 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385
2386#ifdef FEAT_MOUSESHAPE
2387 /* May have stopped dragging the status or separator line. The pointer is
2388 * most likely still on the status or separator line. */
2389 if (!is_drag && drag_status_line)
2390 {
2391 drag_status_line = FALSE;
2392 update_mouseshape(SHAPE_IDX_STATUS);
2393 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 if (!is_drag && drag_sep_line)
2395 {
2396 drag_sep_line = FALSE;
2397 update_mouseshape(SHAPE_IDX_VSEP);
2398 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399#endif
2400
2401 /*
2402 * Ignore drag and release events if we didn't get a click.
2403 */
2404 if (is_click)
2405 got_click = TRUE;
2406 else
2407 {
2408 if (!got_click) /* didn't get click, ignore */
2409 return FALSE;
2410 if (!is_drag) /* release, reset got_click */
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002411 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 got_click = FALSE;
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002413#ifdef FEAT_WINDOWS
2414 if (in_tab_line)
2415 {
2416 in_tab_line = FALSE;
2417 return FALSE;
2418 }
2419#endif
2420 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 }
2422
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 /*
2424 * CTRL right mouse button does CTRL-T
2425 */
2426 if (is_click && (mod_mask & MOD_MASK_CTRL) && which_button == MOUSE_RIGHT)
2427 {
2428 if (State & INSERT)
2429 stuffcharReadbuff(Ctrl_O);
2430 if (count > 1)
2431 stuffnumReadbuff(count);
2432 stuffcharReadbuff(Ctrl_T);
2433 got_click = FALSE; /* ignore drag&release now */
2434 return FALSE;
2435 }
2436
2437 /*
2438 * CTRL only works with left mouse button
2439 */
2440 if ((mod_mask & MOD_MASK_CTRL) && which_button != MOUSE_LEFT)
2441 return FALSE;
2442
2443 /*
2444 * When a modifier is down, ignore drag and release events, as well as
2445 * multiple clicks and the middle mouse button.
2446 * Accept shift-leftmouse drags when 'mousemodel' is "popup.*".
2447 */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002448 if ((mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT
2449 | MOD_MASK_META))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 && (!is_click
2451 || (mod_mask & MOD_MASK_MULTI_CLICK)
2452 || which_button == MOUSE_MIDDLE)
Bram Moolenaar64969662005-12-14 21:59:55 +00002453 && !((mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 && mouse_model_popup()
2455 && which_button == MOUSE_LEFT)
Bram Moolenaar64969662005-12-14 21:59:55 +00002456 && !((mod_mask & MOD_MASK_ALT)
2457 && !mouse_model_popup()
2458 && which_button == MOUSE_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 )
2460 return FALSE;
2461
2462 /*
2463 * If the button press was used as the movement command for an operator
2464 * (eg "d<MOUSE>"), or it is the middle button that is held down, ignore
2465 * drag/release events.
2466 */
2467 if (!is_click && which_button == MOUSE_MIDDLE)
2468 return FALSE;
2469
2470 if (oap != NULL)
2471 regname = oap->regname;
2472 else
2473 regname = 0;
2474
2475 /*
2476 * Middle mouse button does a 'put' of the selected text
2477 */
2478 if (which_button == MOUSE_MIDDLE)
2479 {
2480 if (State == NORMAL)
2481 {
2482 /*
2483 * If an operator was pending, we don't know what the user wanted
2484 * to do. Go back to normal mode: Clear the operator and beep().
2485 */
2486 if (oap != NULL && oap->op_type != OP_NOP)
2487 {
2488 clearopbeep(oap);
2489 return FALSE;
2490 }
2491
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492 /*
2493 * If visual was active, yank the highlighted text and put it
2494 * before the mouse pointer position.
Bram Moolenaara350f4a2006-10-17 14:54:03 +00002495 * In Select mode replace the highlighted text with the clipboard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 */
2497 if (VIsual_active)
2498 {
Bram Moolenaara350f4a2006-10-17 14:54:03 +00002499 if (VIsual_select)
2500 {
2501 stuffcharReadbuff(Ctrl_G);
Bram Moolenaar2d8b2d82006-10-17 20:38:28 +00002502 stuffReadbuff((char_u *)"\"+p");
Bram Moolenaara350f4a2006-10-17 14:54:03 +00002503 }
2504 else
2505 {
2506 stuffcharReadbuff('y');
2507 stuffcharReadbuff(K_MIDDLEMOUSE);
2508 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 do_always = TRUE; /* ignore 'mouse' setting next time */
2510 return FALSE;
2511 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 /*
2513 * The rest is below jump_to_mouse()
2514 */
2515 }
2516
2517 else if ((State & INSERT) == 0)
2518 return FALSE;
2519
2520 /*
2521 * Middle click in insert mode doesn't move the mouse, just insert the
2522 * contents of a register. '.' register is special, can't insert that
2523 * with do_put().
2524 * Also paste at the cursor if the current mode isn't in 'mouse' (only
2525 * happens for the GUI).
2526 */
2527 if ((State & INSERT) || !mouse_has(MOUSE_NORMAL))
2528 {
2529 if (regname == '.')
2530 insert_reg(regname, TRUE);
2531 else
2532 {
2533#ifdef FEAT_CLIPBOARD
2534 if (clip_star.available && regname == 0)
2535 regname = '*';
2536#endif
2537 if ((State & REPLACE_FLAG) && !yank_register_mline(regname))
2538 insert_reg(regname, TRUE);
2539 else
2540 {
2541 do_put(regname, BACKWARD, 1L, fixindent | PUT_CURSEND);
2542
2543 /* Repeat it with CTRL-R CTRL-O r or CTRL-R CTRL-P r */
2544 AppendCharToRedobuff(Ctrl_R);
2545 AppendCharToRedobuff(fixindent ? Ctrl_P : Ctrl_O);
2546 AppendCharToRedobuff(regname == 0 ? '"' : regname);
2547 }
2548 }
2549 return FALSE;
2550 }
2551 }
2552
2553 /* When dragging or button-up stay in the same window. */
2554 if (!is_click)
2555 jump_flags |= MOUSE_FOCUS | MOUSE_DID_MOVE;
2556
2557 start_visual.lnum = 0;
2558
Bram Moolenaarf740b292006-02-16 22:11:02 +00002559#ifdef FEAT_WINDOWS
2560 /* Check for clicking in the tab page line. */
2561 if (mouse_row == 0 && firstwin->w_winrow > 0)
2562 {
Bram Moolenaara7241f52008-06-24 20:39:31 +00002563 if (is_drag)
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002564 {
2565 if (in_tab_line)
2566 {
2567 c1 = TabPageIdxs[mouse_col];
Bram Moolenaar4a4b8212015-09-08 17:50:41 +02002568 tabpage_move(c1 <= 0 ? 9999 : c1 < tabpage_index(curtab)
2569 ? c1 - 1 : c1);
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002570 }
Bram Moolenaara7241f52008-06-24 20:39:31 +00002571 return FALSE;
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002572 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002573
Bram Moolenaarf740b292006-02-16 22:11:02 +00002574 /* click in a tab selects that tab page */
2575 if (is_click
2576# ifdef FEAT_CMDWIN
2577 && cmdwin_type == 0
2578# endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002579 && mouse_col < Columns)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002580 {
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002581 in_tab_line = TRUE;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002582 c1 = TabPageIdxs[mouse_col];
2583 if (c1 >= 0)
2584 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002585 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2586 {
2587 /* double click opens new page */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002588 end_visual_mode();
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002589 tabpage_new();
2590 tabpage_move(c1 == 0 ? 9999 : c1 - 1);
2591 }
2592 else
2593 {
2594 /* Go to specified tab page, or next one if not clicking
2595 * on a label. */
2596 goto_tabpage(c1);
2597
2598 /* It's like clicking on the status line of a window. */
2599 if (curwin != old_curwin)
2600 end_visual_mode();
2601 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002602 }
2603 else if (c1 < 0)
2604 {
2605 tabpage_T *tp;
2606
2607 /* Close the current or specified tab page. */
2608 if (c1 == -999)
2609 tp = curtab;
2610 else
2611 tp = find_tabpage(-c1);
2612 if (tp == curtab)
2613 {
2614 if (first_tabpage->tp_next != NULL)
2615 tabpage_close(FALSE);
2616 }
2617 else if (tp != NULL)
2618 tabpage_close_other(tp, FALSE);
2619 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002620 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002621 return TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002622 }
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +02002623 else if (is_drag && in_tab_line)
2624 {
2625 c1 = TabPageIdxs[mouse_col];
2626 tabpage_move(c1 <= 0 ? 9999 : c1 - 1);
2627 return FALSE;
2628 }
2629
Bram Moolenaarf740b292006-02-16 22:11:02 +00002630#endif
2631
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 /*
2633 * When 'mousemodel' is "popup" or "popup_setpos", translate mouse events:
2634 * right button up -> pop-up menu
2635 * shift-left button -> right button
Bram Moolenaar64969662005-12-14 21:59:55 +00002636 * alt-left button -> alt-right button
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 */
2638 if (mouse_model_popup())
2639 {
2640 if (which_button == MOUSE_RIGHT
2641 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2642 {
2643 /*
2644 * NOTE: Ignore right button down and drag mouse events.
2645 * Windows only shows the popup menu on the button up event.
2646 */
Bram Moolenaar968bbbe2006-08-16 19:41:08 +00002647#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
2648 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 if (!is_click)
2650 return FALSE;
2651#endif
2652#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN)
2653 if (is_click || is_drag)
2654 return FALSE;
2655#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00002656#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
2658 || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_PHOTON)
2659 if (gui.in_use)
2660 {
2661 jump_flags = 0;
2662 if (STRCMP(p_mousem, "popup_setpos") == 0)
2663 {
2664 /* First set the cursor position before showing the popup
2665 * menu. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 if (VIsual_active)
2667 {
2668 pos_T m_pos;
2669
2670 /*
2671 * set MOUSE_MAY_STOP_VIS if we are outside the
2672 * selection or the current window (might have false
2673 * negative here)
2674 */
2675 if (mouse_row < W_WINROW(curwin)
2676 || mouse_row
2677 > (W_WINROW(curwin) + curwin->w_height))
2678 jump_flags = MOUSE_MAY_STOP_VIS;
2679 else if (get_fpos_of_mouse(&m_pos) != IN_BUFFER)
2680 jump_flags = MOUSE_MAY_STOP_VIS;
2681 else
2682 {
2683 if ((lt(curwin->w_cursor, VIsual)
2684 && (lt(m_pos, curwin->w_cursor)
2685 || lt(VIsual, m_pos)))
2686 || (lt(VIsual, curwin->w_cursor)
2687 && (lt(m_pos, VIsual)
2688 || lt(curwin->w_cursor, m_pos))))
2689 {
2690 jump_flags = MOUSE_MAY_STOP_VIS;
2691 }
2692 else if (VIsual_mode == Ctrl_V)
2693 {
2694 getvcols(curwin, &curwin->w_cursor, &VIsual,
2695 &leftcol, &rightcol);
2696 getvcol(curwin, &m_pos, NULL, &m_pos.col, NULL);
2697 if (m_pos.col < leftcol || m_pos.col > rightcol)
2698 jump_flags = MOUSE_MAY_STOP_VIS;
2699 }
2700 }
2701 }
2702 else
2703 jump_flags = MOUSE_MAY_STOP_VIS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 }
2705 if (jump_flags)
2706 {
2707 jump_flags = jump_to_mouse(jump_flags, NULL, which_button);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002708 update_curbuf(VIsual_active ? INVERTED : VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 setcursor();
2710 out_flush(); /* Update before showing popup menu */
2711 }
2712# ifdef FEAT_MENU
2713 gui_show_popupmenu();
2714# endif
2715 return (jump_flags & CURSOR_MOVED) != 0;
2716 }
2717 else
2718 return FALSE;
2719#else
2720 return FALSE;
2721#endif
2722 }
Bram Moolenaar64969662005-12-14 21:59:55 +00002723 if (which_button == MOUSE_LEFT
2724 && (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 {
2726 which_button = MOUSE_RIGHT;
2727 mod_mask &= ~MOD_MASK_SHIFT;
2728 }
2729 }
2730
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 if ((State & (NORMAL | INSERT))
2732 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2733 {
2734 if (which_button == MOUSE_LEFT)
2735 {
2736 if (is_click)
2737 {
2738 /* stop Visual mode for a left click in a window, but not when
2739 * on a status line */
2740 if (VIsual_active)
2741 jump_flags |= MOUSE_MAY_STOP_VIS;
2742 }
2743 else if (mouse_has(MOUSE_VISUAL))
2744 jump_flags |= MOUSE_MAY_VIS;
2745 }
2746 else if (which_button == MOUSE_RIGHT)
2747 {
2748 if (is_click && VIsual_active)
2749 {
2750 /*
2751 * Remember the start and end of visual before moving the
2752 * cursor.
2753 */
2754 if (lt(curwin->w_cursor, VIsual))
2755 {
2756 start_visual = curwin->w_cursor;
2757 end_visual = VIsual;
2758 }
2759 else
2760 {
2761 start_visual = VIsual;
2762 end_visual = curwin->w_cursor;
2763 }
2764 }
2765 jump_flags |= MOUSE_FOCUS;
2766 if (mouse_has(MOUSE_VISUAL))
2767 jump_flags |= MOUSE_MAY_VIS;
2768 }
2769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770
2771 /*
2772 * If an operator is pending, ignore all drags and releases until the
2773 * next mouse click.
2774 */
2775 if (!is_drag && oap != NULL && oap->op_type != OP_NOP)
2776 {
2777 got_click = FALSE;
2778 oap->motion_type = MCHAR;
2779 }
2780
2781 /* When releasing the button let jump_to_mouse() know. */
2782 if (!is_click && !is_drag)
2783 jump_flags |= MOUSE_RELEASED;
2784
2785 /*
2786 * JUMP!
2787 */
2788 jump_flags = jump_to_mouse(jump_flags,
2789 oap == NULL ? NULL : &(oap->inclusive), which_button);
2790 moved = (jump_flags & CURSOR_MOVED);
2791 in_status_line = (jump_flags & IN_STATUS_LINE);
Bram Moolenaar829c8e32016-03-19 23:07:23 +01002792#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 in_sep_line = (jump_flags & IN_SEP_LINE);
Bram Moolenaar829c8e32016-03-19 23:07:23 +01002794#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795
2796#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002797 if (isNetbeansBuffer(curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 && !(jump_flags & (IN_STATUS_LINE | IN_SEP_LINE)))
2799 {
2800 int key = KEY2TERMCAP1(c);
2801
2802 if (key == (int)KE_LEFTRELEASE || key == (int)KE_MIDDLERELEASE
2803 || key == (int)KE_RIGHTRELEASE)
2804 netbeans_button_release(which_button);
2805 }
2806#endif
2807
2808 /* When jumping to another window, clear a pending operator. That's a bit
2809 * friendlier than beeping and not jumping to that window. */
2810 if (curwin != old_curwin && oap != NULL && oap->op_type != OP_NOP)
2811 clearop(oap);
2812
2813#ifdef FEAT_FOLDING
2814 if (mod_mask == 0
2815 && !is_drag
2816 && (jump_flags & (MOUSE_FOLD_CLOSE | MOUSE_FOLD_OPEN))
2817 && which_button == MOUSE_LEFT)
2818 {
2819 /* open or close a fold at this line */
2820 if (jump_flags & MOUSE_FOLD_OPEN)
2821 openFold(curwin->w_cursor.lnum, 1L);
2822 else
2823 closeFold(curwin->w_cursor.lnum, 1L);
2824 /* don't move the cursor if still in the same window */
2825 if (curwin == old_curwin)
2826 curwin->w_cursor = save_cursor;
2827 }
2828#endif
2829
2830#if defined(FEAT_CLIPBOARD) && defined(FEAT_CMDWIN)
2831 if ((jump_flags & IN_OTHER_WIN) && !VIsual_active && clip_star.available)
2832 {
2833 clip_modeless(which_button, is_click, is_drag);
2834 return FALSE;
2835 }
2836#endif
2837
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 /* Set global flag that we are extending the Visual area with mouse
Bram Moolenaarf711faf2007-05-10 16:48:19 +00002839 * dragging; temporarily minimize 'scrolloff'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 if (VIsual_active && is_drag && p_so)
2841 {
2842 /* In the very first line, allow scrolling one line */
2843 if (mouse_row == 0)
2844 mouse_dragging = 2;
2845 else
2846 mouse_dragging = 1;
2847 }
2848
2849 /* When dragging the mouse above the window, scroll down. */
2850 if (is_drag && mouse_row < 0 && !in_status_line)
2851 {
2852 scroll_redraw(FALSE, 1L);
2853 mouse_row = 0;
2854 }
2855
2856 if (start_visual.lnum) /* right click in visual mode */
2857 {
Bram Moolenaar64969662005-12-14 21:59:55 +00002858 /* When ALT is pressed make Visual mode blockwise. */
2859 if (mod_mask & MOD_MASK_ALT)
2860 VIsual_mode = Ctrl_V;
2861
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 /*
2863 * In Visual-block mode, divide the area in four, pick up the corner
2864 * that is in the quarter that the cursor is in.
2865 */
2866 if (VIsual_mode == Ctrl_V)
2867 {
2868 getvcols(curwin, &start_visual, &end_visual, &leftcol, &rightcol);
2869 if (curwin->w_curswant > (leftcol + rightcol) / 2)
2870 end_visual.col = leftcol;
2871 else
2872 end_visual.col = rightcol;
Bram Moolenaarcde88542015-08-11 19:14:00 +02002873 if (curwin->w_cursor.lnum >=
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 (start_visual.lnum + end_visual.lnum) / 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 end_visual.lnum = start_visual.lnum;
2876
2877 /* move VIsual to the right column */
2878 start_visual = curwin->w_cursor; /* save the cursor pos */
2879 curwin->w_cursor = end_visual;
2880 coladvance(end_visual.col);
2881 VIsual = curwin->w_cursor;
2882 curwin->w_cursor = start_visual; /* restore the cursor */
2883 }
2884 else
2885 {
2886 /*
2887 * If the click is before the start of visual, change the start.
2888 * If the click is after the end of visual, change the end. If
2889 * the click is inside the visual, change the closest side.
2890 */
2891 if (lt(curwin->w_cursor, start_visual))
2892 VIsual = end_visual;
2893 else if (lt(end_visual, curwin->w_cursor))
2894 VIsual = start_visual;
2895 else
2896 {
2897 /* In the same line, compare column number */
2898 if (end_visual.lnum == start_visual.lnum)
2899 {
2900 if (curwin->w_cursor.col - start_visual.col >
2901 end_visual.col - curwin->w_cursor.col)
2902 VIsual = start_visual;
2903 else
2904 VIsual = end_visual;
2905 }
2906
2907 /* In different lines, compare line number */
2908 else
2909 {
2910 diff = (curwin->w_cursor.lnum - start_visual.lnum) -
2911 (end_visual.lnum - curwin->w_cursor.lnum);
2912
2913 if (diff > 0) /* closest to end */
2914 VIsual = start_visual;
2915 else if (diff < 0) /* closest to start */
2916 VIsual = end_visual;
2917 else /* in the middle line */
2918 {
2919 if (curwin->w_cursor.col <
2920 (start_visual.col + end_visual.col) / 2)
2921 VIsual = end_visual;
2922 else
2923 VIsual = start_visual;
2924 }
2925 }
2926 }
2927 }
2928 }
2929 /*
2930 * If Visual mode started in insert mode, execute "CTRL-O"
2931 */
2932 else if ((State & INSERT) && VIsual_active)
2933 stuffcharReadbuff(Ctrl_O);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934
2935 /*
2936 * Middle mouse click: Put text before cursor.
2937 */
2938 if (which_button == MOUSE_MIDDLE)
2939 {
2940#ifdef FEAT_CLIPBOARD
2941 if (clip_star.available && regname == 0)
2942 regname = '*';
2943#endif
2944 if (yank_register_mline(regname))
2945 {
2946 if (mouse_past_bottom)
2947 dir = FORWARD;
2948 }
2949 else if (mouse_past_eol)
2950 dir = FORWARD;
2951
2952 if (fixindent)
2953 {
2954 c1 = (dir == BACKWARD) ? '[' : ']';
2955 c2 = 'p';
2956 }
2957 else
2958 {
2959 c1 = (dir == FORWARD) ? 'p' : 'P';
2960 c2 = NUL;
2961 }
2962 prep_redo(regname, count, NUL, c1, NUL, c2, NUL);
2963
2964 /*
2965 * Remember where the paste started, so in edit() Insstart can be set
2966 * to this position
2967 */
2968 if (restart_edit != 0)
2969 where_paste_started = curwin->w_cursor;
2970 do_put(regname, dir, count, fixindent | PUT_CURSEND);
2971 }
2972
2973#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
2974 /*
2975 * Ctrl-Mouse click or double click in a quickfix window jumps to the
2976 * error under the mouse pointer.
2977 */
2978 else if (((mod_mask & MOD_MASK_CTRL)
2979 || (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2980 && bt_quickfix(curbuf))
2981 {
2982 if (State & INSERT)
2983 stuffcharReadbuff(Ctrl_O);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00002984 if (curwin->w_llist_ref == NULL) /* quickfix window */
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +01002985 do_cmdline_cmd((char_u *)".cc");
Bram Moolenaar28c258f2006-01-25 22:02:51 +00002986 else /* location list window */
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +01002987 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 got_click = FALSE; /* ignore drag&release now */
2989 }
2990#endif
2991
2992 /*
2993 * Ctrl-Mouse click (or double click in a help window) jumps to the tag
2994 * under the mouse pointer.
2995 */
2996 else if ((mod_mask & MOD_MASK_CTRL) || (curbuf->b_help
2997 && (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK))
2998 {
2999 if (State & INSERT)
3000 stuffcharReadbuff(Ctrl_O);
3001 stuffcharReadbuff(Ctrl_RSB);
3002 got_click = FALSE; /* ignore drag&release now */
3003 }
3004
3005 /*
3006 * Shift-Mouse click searches for the next occurrence of the word under
3007 * the mouse pointer
3008 */
3009 else if ((mod_mask & MOD_MASK_SHIFT))
3010 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003011 if ((State & INSERT) || (VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 stuffcharReadbuff(Ctrl_O);
3013 if (which_button == MOUSE_LEFT)
3014 stuffcharReadbuff('*');
3015 else /* MOUSE_RIGHT */
3016 stuffcharReadbuff('#');
3017 }
3018
3019 /* Handle double clicks, unless on status line */
3020 else if (in_status_line)
3021 {
3022#ifdef FEAT_MOUSESHAPE
3023 if ((is_drag || is_click) && !drag_status_line)
3024 {
3025 drag_status_line = TRUE;
3026 update_mouseshape(-1);
3027 }
3028#endif
3029 }
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003030#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 else if (in_sep_line)
3032 {
3033# ifdef FEAT_MOUSESHAPE
3034 if ((is_drag || is_click) && !drag_sep_line)
3035 {
3036 drag_sep_line = TRUE;
3037 update_mouseshape(-1);
3038 }
3039# endif
3040 }
Bram Moolenaar829c8e32016-03-19 23:07:23 +01003041#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042 else if ((mod_mask & MOD_MASK_MULTI_CLICK) && (State & (NORMAL | INSERT))
3043 && mouse_has(MOUSE_VISUAL))
3044 {
3045 if (is_click || !VIsual_active)
3046 {
3047 if (VIsual_active)
3048 orig_cursor = VIsual;
3049 else
3050 {
3051 check_visual_highlight();
3052 VIsual = curwin->w_cursor;
3053 orig_cursor = VIsual;
3054 VIsual_active = TRUE;
3055 VIsual_reselect = TRUE;
3056 /* start Select mode if 'selectmode' contains "mouse" */
3057 may_start_select('o');
3058 setmouse();
3059 }
3060 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
Bram Moolenaar64969662005-12-14 21:59:55 +00003061 {
3062 /* Double click with ALT pressed makes it blockwise. */
3063 if (mod_mask & MOD_MASK_ALT)
3064 VIsual_mode = Ctrl_V;
3065 else
3066 VIsual_mode = 'v';
3067 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_3CLICK)
3069 VIsual_mode = 'V';
3070 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_4CLICK)
3071 VIsual_mode = Ctrl_V;
3072#ifdef FEAT_CLIPBOARD
3073 /* Make sure the clipboard gets updated. Needed because start and
3074 * end may still be the same, and the selection needs to be owned */
3075 clip_star.vmode = NUL;
3076#endif
3077 }
3078 /*
3079 * A double click selects a word or a block.
3080 */
3081 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
3082 {
3083 pos_T *pos = NULL;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003084 int gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085
3086 if (is_click)
3087 {
3088 /* If the character under the cursor (skipping white space) is
3089 * not a word character, try finding a match and select a (),
3090 * {}, [], #if/#endif, etc. block. */
3091 end_visual = curwin->w_cursor;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003092 while (gc = gchar_pos(&end_visual), vim_iswhite(gc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 inc(&end_visual);
3094 if (oap != NULL)
3095 oap->motion_type = MCHAR;
3096 if (oap != NULL
3097 && VIsual_mode == 'v'
3098 && !vim_iswordc(gchar_pos(&end_visual))
3099 && equalpos(curwin->w_cursor, VIsual)
3100 && (pos = findmatch(oap, NUL)) != NULL)
3101 {
3102 curwin->w_cursor = *pos;
3103 if (oap->motion_type == MLINE)
3104 VIsual_mode = 'V';
3105 else if (*p_sel == 'e')
3106 {
3107 if (lt(curwin->w_cursor, VIsual))
3108 ++VIsual.col;
3109 else
3110 ++curwin->w_cursor.col;
3111 }
3112 }
3113 }
3114
3115 if (pos == NULL && (is_click || is_drag))
3116 {
3117 /* When not found a match or when dragging: extend to include
3118 * a word. */
3119 if (lt(curwin->w_cursor, orig_cursor))
3120 {
3121 find_start_of_word(&curwin->w_cursor);
3122 find_end_of_word(&VIsual);
3123 }
3124 else
3125 {
3126 find_start_of_word(&VIsual);
3127 if (*p_sel == 'e' && *ml_get_cursor() != NUL)
3128#ifdef FEAT_MBYTE
3129 curwin->w_cursor.col +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003130 (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131#else
3132 ++curwin->w_cursor.col;
3133#endif
3134 find_end_of_word(&curwin->w_cursor);
3135 }
3136 }
3137 curwin->w_set_curswant = TRUE;
3138 }
3139 if (is_click)
3140 redraw_curbuf_later(INVERTED); /* update the inversion */
3141 }
3142 else if (VIsual_active && !old_active)
Bram Moolenaar64969662005-12-14 21:59:55 +00003143 {
3144 if (mod_mask & MOD_MASK_ALT)
3145 VIsual_mode = Ctrl_V;
3146 else
3147 VIsual_mode = 'v';
3148 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149
3150 /* If Visual mode changed show it later. */
Bram Moolenaar28c258f2006-01-25 22:02:51 +00003151 if ((!VIsual_active && old_active && mode_displayed)
3152 || (VIsual_active && p_smd && msg_silent == 0
3153 && (!old_active || VIsual_mode != old_mode)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 redraw_cmdline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155
3156 return moved;
3157}
3158
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159/*
3160 * Move "pos" back to the start of the word it's in.
3161 */
3162 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003163find_start_of_word(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164{
3165 char_u *line;
3166 int cclass;
3167 int col;
3168
3169 line = ml_get(pos->lnum);
3170 cclass = get_mouse_class(line + pos->col);
3171
3172 while (pos->col > 0)
3173 {
3174 col = pos->col - 1;
3175#ifdef FEAT_MBYTE
3176 col -= (*mb_head_off)(line, line + col);
3177#endif
3178 if (get_mouse_class(line + col) != cclass)
3179 break;
3180 pos->col = col;
3181 }
3182}
3183
3184/*
3185 * Move "pos" forward to the end of the word it's in.
3186 * When 'selection' is "exclusive", the position is just after the word.
3187 */
3188 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003189find_end_of_word(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190{
3191 char_u *line;
3192 int cclass;
3193 int col;
3194
3195 line = ml_get(pos->lnum);
3196 if (*p_sel == 'e' && pos->col > 0)
3197 {
3198 --pos->col;
3199#ifdef FEAT_MBYTE
3200 pos->col -= (*mb_head_off)(line, line + pos->col);
3201#endif
3202 }
3203 cclass = get_mouse_class(line + pos->col);
3204 while (line[pos->col] != NUL)
3205 {
3206#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003207 col = pos->col + (*mb_ptr2len)(line + pos->col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208#else
3209 col = pos->col + 1;
3210#endif
3211 if (get_mouse_class(line + col) != cclass)
3212 {
3213 if (*p_sel == 'e')
3214 pos->col = col;
3215 break;
3216 }
3217 pos->col = col;
3218 }
3219}
3220
3221/*
3222 * Get class of a character for selection: same class means same word.
3223 * 0: blank
3224 * 1: punctuation groups
3225 * 2: normal word character
3226 * >2: multi-byte word character.
3227 */
3228 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003229get_mouse_class(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230{
3231 int c;
3232
3233#ifdef FEAT_MBYTE
3234 if (has_mbyte && MB_BYTE2LEN(p[0]) > 1)
3235 return mb_get_class(p);
3236#endif
3237
3238 c = *p;
3239 if (c == ' ' || c == '\t')
3240 return 0;
3241
3242 if (vim_iswordc(c))
3243 return 2;
3244
3245 /*
3246 * There are a few special cases where we want certain combinations of
3247 * characters to be considered as a single word. These are things like
3248 * "->", "/ *", "*=", "+=", "&=", "<=", ">=", "!=" etc. Otherwise, each
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02003249 * character is in its own class.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 */
3251 if (c != NUL && vim_strchr((char_u *)"-+*/%<>&|^!=", c) != NULL)
3252 return 1;
3253 return c;
3254}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255#endif /* FEAT_MOUSE */
3256
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257/*
3258 * Check if highlighting for visual mode is possible, give a warning message
3259 * if not.
3260 */
3261 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003262check_visual_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263{
3264 static int did_check = FALSE;
3265
3266 if (full_screen)
3267 {
3268 if (!did_check && hl_attr(HLF_V) == 0)
3269 MSG(_("Warning: terminal cannot highlight"));
3270 did_check = TRUE;
3271 }
3272}
3273
3274/*
Bram Moolenaar66fa2712006-01-22 23:22:22 +00003275 * End Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 * This function should ALWAYS be called to end Visual mode, except from
3277 * do_pending_operator().
3278 */
3279 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003280end_visual_mode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281{
3282#ifdef FEAT_CLIPBOARD
3283 /*
3284 * If we are using the clipboard, then remember what was selected in case
3285 * we need to paste it somewhere while we still own the selection.
3286 * Only do this when the clipboard is already owned. Don't want to grab
3287 * the selection when hitting ESC.
3288 */
3289 if (clip_star.available && clip_star.owned)
3290 clip_auto_select();
3291#endif
3292
3293 VIsual_active = FALSE;
3294#ifdef FEAT_MOUSE
3295 setmouse();
3296 mouse_dragging = 0;
3297#endif
3298
3299 /* Save the current VIsual area for '< and '> marks, and "gv" */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003300 curbuf->b_visual.vi_mode = VIsual_mode;
3301 curbuf->b_visual.vi_start = VIsual;
3302 curbuf->b_visual.vi_end = curwin->w_cursor;
3303 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304#ifdef FEAT_EVAL
3305 curbuf->b_visual_mode_eval = VIsual_mode;
3306#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307#ifdef FEAT_VIRTUALEDIT
3308 if (!virtual_active())
3309 curwin->w_cursor.coladd = 0;
3310#endif
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02003311 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003313 adjust_cursor_eol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314}
3315
3316/*
3317 * Reset VIsual_active and VIsual_reselect.
3318 */
3319 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003320reset_VIsual_and_resel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321{
3322 if (VIsual_active)
3323 {
3324 end_visual_mode();
3325 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3326 }
3327 VIsual_reselect = FALSE;
3328}
3329
3330/*
3331 * Reset VIsual_active and VIsual_reselect if it's set.
3332 */
3333 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003334reset_VIsual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335{
3336 if (VIsual_active)
3337 {
3338 end_visual_mode();
3339 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3340 VIsual_reselect = FALSE;
3341 }
3342}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003344#if defined(FEAT_BEVAL)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003345static int find_is_eval_item(char_u *ptr, int *colp, int *nbp, int dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346
3347/*
3348 * Check for a balloon-eval special item to include when searching for an
3349 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
3350 * Returns TRUE if the character at "*ptr" should be included.
3351 * "dir" is FORWARD or BACKWARD, the direction of searching.
3352 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
3353 * "bnp" points to a counter for square brackets.
3354 */
3355 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003356find_is_eval_item(
3357 char_u *ptr,
3358 int *colp,
3359 int *bnp,
3360 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361{
3362 /* Accept everything inside []. */
3363 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
3364 ++*bnp;
3365 if (*bnp > 0)
3366 {
3367 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
3368 --*bnp;
3369 return TRUE;
3370 }
3371
3372 /* skip over "s.var" */
3373 if (*ptr == '.')
3374 return TRUE;
3375
3376 /* two-character item: s->var */
3377 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
3378 && ptr[dir == BACKWARD ? -1 : 0] == '-')
3379 {
3380 *colp += dir;
3381 return TRUE;
3382 }
3383 return FALSE;
3384}
3385#endif
3386
3387/*
3388 * Find the identifier under or to the right of the cursor.
3389 * "find_type" can have one of three values:
3390 * FIND_IDENT: find an identifier (keyword)
3391 * FIND_STRING: find any non-white string
3392 * FIND_IDENT + FIND_STRING: find any non-white string, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003393 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394 *
3395 * There are three steps:
3396 * 1. Search forward for the start of an identifier/string. Doesn't move if
3397 * already on one.
3398 * 2. Search backward for the start of this identifier/string.
3399 * This doesn't match the real Vi but I like it a little better and it
3400 * shouldn't bother anyone.
3401 * 3. Search forward to the end of this identifier/string.
3402 * When FIND_IDENT isn't defined, we backup until a blank.
3403 *
3404 * Returns the length of the string, or zero if no string is found.
3405 * If a string is found, a pointer to the string is put in "*string". This
3406 * string is not always NUL terminated.
3407 */
3408 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003409find_ident_under_cursor(char_u **string, int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410{
3411 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
3412 curwin->w_cursor.col, string, find_type);
3413}
3414
3415/*
3416 * Like find_ident_under_cursor(), but for any window and any position.
3417 * However: Uses 'iskeyword' from the current window!.
3418 */
3419 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003420find_ident_at_pos(
3421 win_T *wp,
3422 linenr_T lnum,
3423 colnr_T startcol,
3424 char_u **string,
3425 int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426{
3427 char_u *ptr;
3428 int col = 0; /* init to shut up GCC */
3429 int i;
3430#ifdef FEAT_MBYTE
3431 int this_class = 0;
3432 int prev_class;
3433 int prevcol;
3434#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003435#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 int bn = 0; /* bracket nesting */
3437#endif
3438
3439 /*
3440 * if i == 0: try to find an identifier
3441 * if i == 1: try to find any non-white string
3442 */
3443 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
3444 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
3445 {
3446 /*
3447 * 1. skip to start of identifier/string
3448 */
3449 col = startcol;
3450#ifdef FEAT_MBYTE
3451 if (has_mbyte)
3452 {
3453 while (ptr[col] != NUL)
3454 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003455# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 /* Stop at a ']' to evaluate "a[x]". */
3457 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3458 break;
3459# endif
3460 this_class = mb_get_class(ptr + col);
3461 if (this_class != 0 && (i == 1 || this_class != 1))
3462 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003463 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 }
3465 }
3466 else
3467#endif
3468 while (ptr[col] != NUL
3469 && (i == 0 ? !vim_iswordc(ptr[col]) : vim_iswhite(ptr[col]))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003470# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
3472# endif
3473 )
3474 ++col;
3475
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003476#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 /* When starting on a ']' count it, so that we include the '['. */
3478 bn = ptr[col] == ']';
3479#endif
3480
3481 /*
3482 * 2. Back up to start of identifier/string.
3483 */
3484#ifdef FEAT_MBYTE
3485 if (has_mbyte)
3486 {
3487 /* Remember class of character under cursor. */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003488# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3490 this_class = mb_get_class((char_u *)"a");
3491 else
3492# endif
3493 this_class = mb_get_class(ptr + col);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003494 while (col > 0 && this_class != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 {
3496 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
3497 prev_class = mb_get_class(ptr + prevcol);
3498 if (this_class != prev_class
3499 && (i == 0
3500 || prev_class == 0
3501 || (find_type & FIND_IDENT))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003502# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503 && (!(find_type & FIND_EVAL)
3504 || prevcol == 0
3505 || !find_is_eval_item(ptr + prevcol, &prevcol,
3506 &bn, BACKWARD))
3507# endif
3508 )
3509 break;
3510 col = prevcol;
3511 }
3512
3513 /* If we don't want just any old string, or we've found an
3514 * identifier, stop searching. */
3515 if (this_class > 2)
3516 this_class = 2;
3517 if (!(find_type & FIND_STRING) || this_class == 2)
3518 break;
3519 }
3520 else
3521#endif
3522 {
3523 while (col > 0
3524 && ((i == 0
3525 ? vim_iswordc(ptr[col - 1])
3526 : (!vim_iswhite(ptr[col - 1])
3527 && (!(find_type & FIND_IDENT)
3528 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003529#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 || ((find_type & FIND_EVAL)
3531 && col > 1
3532 && find_is_eval_item(ptr + col - 1, &col,
3533 &bn, BACKWARD))
3534#endif
3535 ))
3536 --col;
3537
3538 /* If we don't want just any old string, or we've found an
3539 * identifier, stop searching. */
3540 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
3541 break;
3542 }
3543 }
3544
3545 if (ptr[col] == NUL || (i == 0 && (
3546#ifdef FEAT_MBYTE
3547 has_mbyte ? this_class != 2 :
3548#endif
3549 !vim_iswordc(ptr[col]))))
3550 {
3551 /*
3552 * didn't find an identifier or string
3553 */
3554 if (find_type & FIND_STRING)
3555 EMSG(_("E348: No string under cursor"));
3556 else
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003557 EMSG(_(e_noident));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 return 0;
3559 }
3560 ptr += col;
3561 *string = ptr;
3562
3563 /*
3564 * 3. Find the end if the identifier/string.
3565 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003566#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 bn = 0;
3568 startcol -= col;
3569#endif
3570 col = 0;
3571#ifdef FEAT_MBYTE
3572 if (has_mbyte)
3573 {
3574 /* Search for point of changing multibyte character class. */
3575 this_class = mb_get_class(ptr);
3576 while (ptr[col] != NUL
3577 && ((i == 0 ? mb_get_class(ptr + col) == this_class
3578 : mb_get_class(ptr + col) != 0)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003579# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 || ((find_type & FIND_EVAL)
3581 && col <= (int)startcol
3582 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3583# endif
3584 ))
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003585 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 }
3587 else
3588#endif
3589 while ((i == 0 ? vim_iswordc(ptr[col])
3590 : (ptr[col] != NUL && !vim_iswhite(ptr[col])))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003591# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 || ((find_type & FIND_EVAL)
3593 && col <= (int)startcol
3594 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3595# endif
3596 )
3597 {
3598 ++col;
3599 }
3600
3601 return col;
3602}
3603
3604/*
3605 * Prepare for redo of a normal command.
3606 */
3607 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003608prep_redo_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609{
3610 prep_redo(cap->oap->regname, cap->count0,
3611 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
3612}
3613
3614/*
3615 * Prepare for redo of any command.
3616 * Note that only the last argument can be a multi-byte char.
3617 */
3618 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003619prep_redo(
3620 int regname,
3621 long num,
3622 int cmd1,
3623 int cmd2,
3624 int cmd3,
3625 int cmd4,
3626 int cmd5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627{
3628 ResetRedobuff();
3629 if (regname != 0) /* yank from specified buffer */
3630 {
3631 AppendCharToRedobuff('"');
3632 AppendCharToRedobuff(regname);
3633 }
3634 if (num)
3635 AppendNumberToRedobuff(num);
3636
3637 if (cmd1 != NUL)
3638 AppendCharToRedobuff(cmd1);
3639 if (cmd2 != NUL)
3640 AppendCharToRedobuff(cmd2);
3641 if (cmd3 != NUL)
3642 AppendCharToRedobuff(cmd3);
3643 if (cmd4 != NUL)
3644 AppendCharToRedobuff(cmd4);
3645 if (cmd5 != NUL)
3646 AppendCharToRedobuff(cmd5);
3647}
3648
3649/*
3650 * check for operator active and clear it
3651 *
3652 * return TRUE if operator was active
3653 */
3654 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003655checkclearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656{
3657 if (oap->op_type == OP_NOP)
3658 return FALSE;
3659 clearopbeep(oap);
3660 return TRUE;
3661}
3662
3663/*
Bram Moolenaarc980de32007-05-06 11:59:04 +00003664 * Check for operator or Visual active. Clear active operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 *
Bram Moolenaarc980de32007-05-06 11:59:04 +00003666 * Return TRUE if operator or Visual was active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 */
3668 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003669checkclearopq(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003671 if (oap->op_type == OP_NOP && !VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 return FALSE;
3673 clearopbeep(oap);
3674 return TRUE;
3675}
3676
3677 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003678clearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679{
3680 oap->op_type = OP_NOP;
3681 oap->regname = 0;
3682 oap->motion_force = NUL;
3683 oap->use_reg_one = FALSE;
3684}
3685
3686 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003687clearopbeep(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688{
3689 clearop(oap);
3690 beep_flush();
3691}
3692
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693/*
3694 * Remove the shift modifier from a special key.
3695 */
3696 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003697unshift_special(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698{
3699 switch (cap->cmdchar)
3700 {
3701 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
3702 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
3703 case K_S_UP: cap->cmdchar = K_UP; break;
3704 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
3705 case K_S_HOME: cap->cmdchar = K_HOME; break;
3706 case K_S_END: cap->cmdchar = K_END; break;
3707 }
3708 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
3709}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02003711/*
3712 * If the mode is currently displayed clear the command line or update the
3713 * command displayed.
3714 */
3715 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003716may_clear_cmdline(void)
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02003717{
3718 if (mode_displayed)
3719 clear_cmdline = TRUE; /* unshow visual mode later */
3720#ifdef FEAT_CMDL_INFO
3721 else
3722 clear_showcmd();
3723#endif
3724}
3725
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726#if defined(FEAT_CMDL_INFO) || defined(PROTO)
3727/*
3728 * Routines for displaying a partly typed command
3729 */
3730
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003731#define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732static char_u showcmd_buf[SHOWCMD_BUFLEN];
3733static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; /* For push_showcmd() */
3734static int showcmd_is_clear = TRUE;
3735static int showcmd_visual = FALSE;
3736
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003737static void display_showcmd(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738
3739 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003740clear_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741{
3742 if (!p_sc)
3743 return;
3744
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 if (VIsual_active && !char_avail())
3746 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00003747 int cursor_bot = lt(VIsual, curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 long lines;
3749 colnr_T leftcol, rightcol;
3750 linenr_T top, bot;
3751
3752 /* Show the size of the Visual area. */
Bram Moolenaar81d00072009-04-29 15:41:40 +00003753 if (cursor_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 {
3755 top = VIsual.lnum;
3756 bot = curwin->w_cursor.lnum;
3757 }
3758 else
3759 {
3760 top = curwin->w_cursor.lnum;
3761 bot = VIsual.lnum;
3762 }
3763# ifdef FEAT_FOLDING
3764 /* Include closed folds as a whole. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02003765 (void)hasFolding(top, &top, NULL);
3766 (void)hasFolding(bot, NULL, &bot);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767# endif
3768 lines = bot - top + 1;
3769
3770 if (VIsual_mode == Ctrl_V)
3771 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003772# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00003773 char_u *saved_sbr = p_sbr;
3774
3775 /* Make 'sbr' empty for a moment to get the correct size. */
3776 p_sbr = empty_option;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003777# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003779# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00003780 p_sbr = saved_sbr;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003781# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
3783 (long)(rightcol - leftcol + 1));
3784 }
3785 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
3786 sprintf((char *)showcmd_buf, "%ld", lines);
3787 else
Bram Moolenaarf91787c2010-07-17 12:47:16 +02003788 {
3789 char_u *s, *e;
3790 int l;
3791 int bytes = 0;
3792 int chars = 0;
3793
3794 if (cursor_bot)
3795 {
3796 s = ml_get_pos(&VIsual);
3797 e = ml_get_cursor();
3798 }
3799 else
3800 {
3801 s = ml_get_cursor();
3802 e = ml_get_pos(&VIsual);
3803 }
3804 while ((*p_sel != 'e') ? s <= e : s < e)
3805 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003806# ifdef FEAT_MBYTE
Bram Moolenaarf91787c2010-07-17 12:47:16 +02003807 l = (*mb_ptr2len)(s);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02003808# else
3809 l = (*s == NUL) ? 0 : 1;
3810# endif
Bram Moolenaarf91787c2010-07-17 12:47:16 +02003811 if (l == 0)
3812 {
3813 ++bytes;
3814 ++chars;
3815 break; /* end of line */
3816 }
3817 bytes += l;
3818 ++chars;
3819 s += l;
3820 }
3821 if (bytes == chars)
3822 sprintf((char *)showcmd_buf, "%d", chars);
3823 else
3824 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes);
3825 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 showcmd_buf[SHOWCMD_COLS] = NUL; /* truncate */
3827 showcmd_visual = TRUE;
3828 }
3829 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 {
3831 showcmd_buf[0] = NUL;
3832 showcmd_visual = FALSE;
3833
3834 /* Don't actually display something if there is nothing to clear. */
3835 if (showcmd_is_clear)
3836 return;
3837 }
3838
3839 display_showcmd();
3840}
3841
3842/*
3843 * Add 'c' to string of shown command chars.
3844 * Return TRUE if output has been written (and setcursor() has been called).
3845 */
3846 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003847add_to_showcmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848{
3849 char_u *p;
3850 int old_len;
3851 int extra_len;
3852 int overflow;
3853#if defined(FEAT_MOUSE)
3854 int i;
3855 static int ignore[] =
3856 {
Bram Moolenaarcf0c5542006-02-09 23:48:02 +00003857# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
3859 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
Bram Moolenaarcf0c5542006-02-09 23:48:02 +00003860# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 K_IGNORE,
3862 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE,
3863 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
3864 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003865 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003867 K_CURSORHOLD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 0
3869 };
3870#endif
3871
Bram Moolenaar09df3122006-01-23 22:23:09 +00003872 if (!p_sc || msg_silent != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 return FALSE;
3874
3875 if (showcmd_visual)
3876 {
3877 showcmd_buf[0] = NUL;
3878 showcmd_visual = FALSE;
3879 }
3880
3881#if defined(FEAT_MOUSE)
3882 /* Ignore keys that are scrollbar updates and mouse clicks */
3883 if (IS_SPECIAL(c))
3884 for (i = 0; ignore[i] != 0; ++i)
3885 if (ignore[i] == c)
3886 return FALSE;
3887#endif
3888
3889 p = transchar(c);
Bram Moolenaar7ba07412013-12-11 14:55:01 +01003890 if (*p == ' ')
3891 STRCPY(p, "<20>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 old_len = (int)STRLEN(showcmd_buf);
3893 extra_len = (int)STRLEN(p);
3894 overflow = old_len + extra_len - SHOWCMD_COLS;
3895 if (overflow > 0)
Bram Moolenaarb0db5692007-08-14 20:54:49 +00003896 mch_memmove(showcmd_buf, showcmd_buf + overflow,
3897 old_len - overflow + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898 STRCAT(showcmd_buf, p);
3899
3900 if (char_avail())
3901 return FALSE;
3902
3903 display_showcmd();
3904
3905 return TRUE;
3906}
3907
3908 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003909add_to_showcmd_c(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910{
3911 if (!add_to_showcmd(c))
3912 setcursor();
3913}
3914
3915/*
3916 * Delete 'len' characters from the end of the shown command.
3917 */
3918 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003919del_from_showcmd(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920{
3921 int old_len;
3922
3923 if (!p_sc)
3924 return;
3925
3926 old_len = (int)STRLEN(showcmd_buf);
3927 if (len > old_len)
3928 len = old_len;
3929 showcmd_buf[old_len - len] = NUL;
3930
3931 if (!char_avail())
3932 display_showcmd();
3933}
3934
3935/*
3936 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
3937 * something and there is a partial mapping.
3938 */
3939 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003940push_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941{
3942 if (p_sc)
3943 STRCPY(old_showcmd_buf, showcmd_buf);
3944}
3945
3946 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003947pop_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948{
3949 if (!p_sc)
3950 return;
3951
3952 STRCPY(showcmd_buf, old_showcmd_buf);
3953
3954 display_showcmd();
3955}
3956
3957 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003958display_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959{
3960 int len;
3961
3962 cursor_off();
3963
3964 len = (int)STRLEN(showcmd_buf);
3965 if (len == 0)
3966 showcmd_is_clear = TRUE;
3967 else
3968 {
3969 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
3970 showcmd_is_clear = FALSE;
3971 }
3972
3973 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00003974 * clear the rest of an old message by outputting up to SHOWCMD_COLS
3975 * spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 */
3977 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
3978
3979 setcursor(); /* put cursor back where it belongs */
3980}
3981#endif
3982
3983#ifdef FEAT_SCROLLBIND
3984/*
3985 * When "check" is FALSE, prepare for commands that scroll the window.
3986 * When "check" is TRUE, take care of scroll-binding after the window has
3987 * scrolled. Called from normal_cmd() and edit().
3988 */
3989 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003990do_check_scrollbind(int check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991{
3992 static win_T *old_curwin = NULL;
3993 static linenr_T old_topline = 0;
3994#ifdef FEAT_DIFF
3995 static int old_topfill = 0;
3996#endif
3997 static buf_T *old_buf = NULL;
3998 static colnr_T old_leftcol = 0;
3999
4000 if (check && curwin->w_p_scb)
4001 {
4002 /* If a ":syncbind" command was just used, don't scroll, only reset
4003 * the values. */
4004 if (did_syncbind)
4005 did_syncbind = FALSE;
4006 else if (curwin == old_curwin)
4007 {
4008 /*
4009 * Synchronize other windows, as necessary according to
4010 * 'scrollbind'. Don't do this after an ":edit" command, except
4011 * when 'diff' is set.
4012 */
4013 if ((curwin->w_buffer == old_buf
4014#ifdef FEAT_DIFF
4015 || curwin->w_p_diff
4016#endif
4017 )
4018 && (curwin->w_topline != old_topline
4019#ifdef FEAT_DIFF
4020 || curwin->w_topfill != old_topfill
4021#endif
4022 || curwin->w_leftcol != old_leftcol))
4023 {
4024 check_scrollbind(curwin->w_topline - old_topline,
4025 (long)(curwin->w_leftcol - old_leftcol));
4026 }
4027 }
4028 else if (vim_strchr(p_sbo, 'j')) /* jump flag set in 'scrollopt' */
4029 {
4030 /*
4031 * When switching between windows, make sure that the relative
4032 * vertical offset is valid for the new window. The relative
4033 * offset is invalid whenever another 'scrollbind' window has
4034 * scrolled to a point that would force the current window to
4035 * scroll past the beginning or end of its buffer. When the
4036 * resync is performed, some of the other 'scrollbind' windows may
4037 * need to jump so that the current window's relative position is
4038 * visible on-screen.
4039 */
4040 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
4041 }
4042 curwin->w_scbind_pos = curwin->w_topline;
4043 }
4044
4045 old_curwin = curwin;
4046 old_topline = curwin->w_topline;
4047#ifdef FEAT_DIFF
4048 old_topfill = curwin->w_topfill;
4049#endif
4050 old_buf = curwin->w_buffer;
4051 old_leftcol = curwin->w_leftcol;
4052}
4053
4054/*
4055 * Synchronize any windows that have "scrollbind" set, based on the
4056 * number of rows by which the current window has changed
4057 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
4058 */
4059 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004060check_scrollbind(linenr_T topline_diff, long leftcol_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061{
4062 int want_ver;
4063 int want_hor;
4064 win_T *old_curwin = curwin;
4065 buf_T *old_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 int old_VIsual_select = VIsual_select;
4067 int old_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068 colnr_T tgt_leftcol = curwin->w_leftcol;
4069 long topline;
4070 long y;
4071
4072 /*
4073 * check 'scrollopt' string for vertical and horizontal scroll options
4074 */
4075 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
4076#ifdef FEAT_DIFF
4077 want_ver |= old_curwin->w_p_diff;
4078#endif
4079 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
4080
4081 /*
4082 * loop through the scrollbound windows and scroll accordingly
4083 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02004085 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 {
4087 curbuf = curwin->w_buffer;
4088 /* skip original window and windows with 'noscrollbind' */
4089 if (curwin != old_curwin && curwin->w_p_scb)
4090 {
4091 /*
4092 * do the vertical scroll
4093 */
4094 if (want_ver)
4095 {
4096#ifdef FEAT_DIFF
4097 if (old_curwin->w_p_diff && curwin->w_p_diff)
4098 {
4099 diff_set_topline(old_curwin, curwin);
4100 }
4101 else
4102#endif
4103 {
4104 curwin->w_scbind_pos += topline_diff;
4105 topline = curwin->w_scbind_pos;
4106 if (topline > curbuf->b_ml.ml_line_count)
4107 topline = curbuf->b_ml.ml_line_count;
4108 if (topline < 1)
4109 topline = 1;
4110
4111 y = topline - curwin->w_topline;
4112 if (y > 0)
4113 scrollup(y, FALSE);
4114 else
4115 scrolldown(-y, FALSE);
4116 }
4117
4118 redraw_later(VALID);
4119 cursor_correct();
4120#ifdef FEAT_WINDOWS
4121 curwin->w_redr_status = TRUE;
4122#endif
4123 }
4124
4125 /*
4126 * do the horizontal scroll
4127 */
4128 if (want_hor && curwin->w_leftcol != tgt_leftcol)
4129 {
4130 curwin->w_leftcol = tgt_leftcol;
4131 leftcol_changed();
4132 }
4133 }
4134 }
4135
4136 /*
4137 * reset current-window
4138 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 VIsual_select = old_VIsual_select;
4140 VIsual_active = old_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141 curwin = old_curwin;
4142 curbuf = old_curbuf;
4143}
4144#endif /* #ifdef FEAT_SCROLLBIND */
4145
4146/*
4147 * Command character that's ignored.
4148 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02004149 * xon/xoff.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004152nv_ignore(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153{
Bram Moolenaarfc735152005-03-22 22:54:12 +00004154 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155}
4156
4157/*
Bram Moolenaarebefac62005-12-28 22:39:57 +00004158 * Command character that doesn't do anything, but unlike nv_ignore() does
4159 * start edit(). Used for "startinsert" executed while starting up.
4160 */
Bram Moolenaarebefac62005-12-28 22:39:57 +00004161 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004162nv_nop(cmdarg_T *cap UNUSED)
Bram Moolenaarebefac62005-12-28 22:39:57 +00004163{
4164}
4165
4166/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 * Command character doesn't exist.
4168 */
4169 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004170nv_error(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171{
4172 clearopbeep(cap->oap);
4173}
4174
4175/*
4176 * <Help> and <F1> commands.
4177 */
4178 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004179nv_help(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180{
4181 if (!checkclearopq(cap->oap))
4182 ex_help(NULL);
4183}
4184
4185/*
4186 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
4187 */
4188 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004189nv_addsub(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190{
Bram Moolenaard79e5502016-01-10 22:13:02 +01004191 if (!VIsual_active && cap->oap->op_type == OP_NOP)
Bram Moolenaar9bb19302015-07-03 12:44:07 +02004192 {
Bram Moolenaaref2b5032016-01-12 22:20:58 +01004193 prep_redo_cmd(cap);
Bram Moolenaard79e5502016-01-10 22:13:02 +01004194 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB;
4195 op_addsub(cap->oap, cap->count1, cap->arg);
4196 cap->oap->op_type = OP_NOP;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02004197 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01004198 else if (VIsual_active)
4199 nv_operator(cap);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02004200 else
Bram Moolenaard79e5502016-01-10 22:13:02 +01004201 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202}
4203
4204/*
4205 * CTRL-F, CTRL-B, etc: Scroll page up or down.
4206 */
4207 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004208nv_page(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209{
4210 if (!checkclearop(cap->oap))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004211 {
4212#ifdef FEAT_WINDOWS
4213 if (mod_mask & MOD_MASK_CTRL)
4214 {
4215 /* <C-PageUp>: tab page back; <C-PageDown>: tab page forward */
4216 if (cap->arg == BACKWARD)
4217 goto_tabpage(-(int)cap->count1);
4218 else
4219 goto_tabpage((int)cap->count0);
4220 }
4221 else
4222#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 (void)onepage(cap->arg, cap->count1);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004224 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225}
4226
4227/*
4228 * Implementation of "gd" and "gD" command.
4229 */
4230 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004231nv_gd(
4232 oparg_T *oap,
4233 int nchar,
4234 int thisblock) /* 1 for "1gd" and "1gD" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235{
4236 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 char_u *ptr;
4238
Bram Moolenaard9d30582005-05-18 22:10:28 +00004239 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
Bram Moolenaar1538fc32016-04-16 09:13:34 +02004240 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)
4241 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 clearopbeep(oap);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004243#ifdef FEAT_FOLDING
4244 else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
4245 foldOpenCursor();
4246#endif
4247}
4248
4249/*
Bram Moolenaar226630a2016-10-08 19:21:31 +02004250 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE
4251 * otherwise.
4252 */
4253 static int
4254is_ident(char_u *line, int offset)
4255{
4256 int i;
4257 int incomment = FALSE;
4258 int instring = 0;
4259 int prev = 0;
4260
4261 for (i = 0; i < offset && line[i] != NUL; i++)
4262 {
4263 if (instring != 0)
4264 {
4265 if (prev != '\\' && line[i] == instring)
4266 instring = 0;
4267 }
4268 else if ((line[i] == '"' || line[i] == '\'') && !incomment)
4269 {
4270 instring = line[i];
4271 }
4272 else
4273 {
4274 if (incomment)
4275 {
4276 if (prev == '*' && line[i] == '/')
4277 incomment = FALSE;
4278 }
4279 else if (prev == '/' && line[i] == '*')
4280 {
4281 incomment = TRUE;
4282 }
4283 else if (prev == '/' && line[i] == '/')
4284 {
4285 return FALSE;
4286 }
4287 }
4288
4289 prev = line[i];
4290 }
4291
4292 return incomment == FALSE && instring == 0;
4293}
4294
4295/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004296 * Search for variable declaration of "ptr[len]".
4297 * When "locally" is TRUE in the current function ("gd"), otherwise in the
4298 * current file ("gD").
4299 * When "thisblock" is TRUE check the {} block scope.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004300 * Return FAIL when not found.
4301 */
4302 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004303find_decl(
4304 char_u *ptr,
4305 int len,
4306 int locally,
4307 int thisblock,
Bram Moolenaar23c60f22016-06-15 22:03:48 +02004308 int flags_arg) /* flags passed to searchit() */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004309{
4310 char_u *pat;
4311 pos_T old_pos;
4312 pos_T par_pos;
4313 pos_T found_pos;
4314 int t;
4315 int save_p_ws;
4316 int save_p_scs;
4317 int retval = OK;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004318 int incll;
Bram Moolenaar23c60f22016-06-15 22:03:48 +02004319 int searchflags = flags_arg;
Bram Moolenaar226630a2016-10-08 19:21:31 +02004320 int valid;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004321
4322 if ((pat = alloc(len + 7)) == NULL)
4323 return FAIL;
Bram Moolenaard9d30582005-05-18 22:10:28 +00004324
4325 /* Put "\V" before the pattern to avoid that the special meaning of "."
4326 * and "~" causes trouble. */
4327 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
4328 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 old_pos = curwin->w_cursor;
4330 save_p_ws = p_ws;
4331 save_p_scs = p_scs;
4332 p_ws = FALSE; /* don't wrap around end of file now */
4333 p_scs = FALSE; /* don't switch ignorecase off now */
4334
4335 /*
4336 * With "gD" go to line 1.
4337 * With "gd" Search back for the start of the current function, then go
4338 * back until a blank line. If this fails go to line 1.
4339 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00004340 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 {
4342 setpcmark(); /* Set in findpar() otherwise */
4343 curwin->w_cursor.lnum = 1;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00004344 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 }
4346 else
4347 {
Bram Moolenaarbb15b652005-10-03 21:52:09 +00004348 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
4350 --curwin->w_cursor.lnum;
4351 }
4352 curwin->w_cursor.col = 0;
4353
4354 /* Search forward for the identifier, ignore comment lines. */
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004355 clearpos(&found_pos);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004356 for (;;)
4357 {
Bram Moolenaar226630a2016-10-08 19:21:31 +02004358 valid = FALSE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004359 t = searchit(curwin, curbuf, &curwin->w_cursor, FORWARD,
Bram Moolenaar76929292008-01-06 19:07:36 +00004360 pat, 1L, searchflags, RE_LAST, (linenr_T)0, NULL);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004361 if (curwin->w_cursor.lnum >= old_pos.lnum)
4362 t = FAIL; /* match after start is failure too */
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004363
Bram Moolenaar0fd92892006-03-09 22:27:48 +00004364 if (thisblock && t != FAIL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004365 {
4366 pos_T *pos;
4367
4368 /* Check that the block the match is in doesn't end before the
4369 * position where we started the search from. */
4370 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
4371 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
4372 && pos->lnum < old_pos.lnum)
4373 continue;
4374 }
4375
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004376 if (t == FAIL)
4377 {
4378 /* If we previously found a valid position, use it. */
4379 if (found_pos.lnum != 0)
4380 {
4381 curwin->w_cursor = found_pos;
4382 t = OK;
4383 }
4384 break;
4385 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386#ifdef FEAT_COMMENTS
Bram Moolenaar81340392012-06-06 16:12:59 +02004387 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004388 {
4389 /* Ignore this line, continue at start of next line. */
4390 ++curwin->w_cursor.lnum;
4391 curwin->w_cursor.col = 0;
4392 continue;
4393 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394#endif
Bram Moolenaar226630a2016-10-08 19:21:31 +02004395 valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
4396
4397 /* If the current position is not a valid identifier and a previous
4398 * match is present, favor that one instead. */
4399 if (!valid && found_pos.lnum != 0)
4400 {
4401 curwin->w_cursor = found_pos;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004402 break;
Bram Moolenaar226630a2016-10-08 19:21:31 +02004403 }
4404
4405 /* Global search: use first valid match found */
4406 if (valid && !locally)
4407 break;
4408 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004409 {
4410 /* If we previously found a valid position, use it. */
4411 if (found_pos.lnum != 0)
4412 curwin->w_cursor = found_pos;
4413 break;
4414 }
4415
Bram Moolenaar226630a2016-10-08 19:21:31 +02004416 /* For finding a local variable and the match is before the "{" or
4417 * inside a comment, continue searching. For K&R style function
4418 * declarations this skips the function header without types. */
4419 if (!valid)
4420 {
4421 /* Braces needed due to macro expansion of clearpos. */
4422 clearpos(&found_pos);
4423 }
4424 else
4425 {
4426 found_pos = curwin->w_cursor;
4427 }
4428 /* Remove SEARCH_START from flags to avoid getting stuck at one
4429 * position. */
Bram Moolenaar23c60f22016-06-15 22:03:48 +02004430 searchflags &= ~SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004432
4433 if (t == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004435 retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 curwin->w_cursor = old_pos;
4437 }
4438 else
4439 {
4440 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 /* "n" searches forward now */
4442 reset_search_dir();
4443 }
4444
4445 vim_free(pat);
4446 p_ws = save_p_ws;
4447 p_scs = save_p_scs;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004448
4449 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450}
4451
4452/*
4453 * Move 'dist' lines in direction 'dir', counting lines by *screen*
4454 * lines rather than lines in the file.
4455 * 'dist' must be positive.
4456 *
4457 * Return OK if able to move cursor, FAIL otherwise.
4458 */
4459 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004460nv_screengo(oparg_T *oap, int dir, long dist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461{
4462 int linelen = linetabsize(ml_get_curline());
4463 int retval = OK;
4464 int atend = FALSE;
4465 int n;
4466 int col_off1; /* margin offset for first screen line */
4467 int col_off2; /* margin offset for wrapped screen line */
4468 int width1; /* text width for first screen line */
4469 int width2; /* test width for wrapped screen line */
4470
4471 oap->motion_type = MCHAR;
Bram Moolenaar91b2bdb2013-07-14 13:32:15 +02004472 oap->inclusive = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473
4474 col_off1 = curwin_col_off();
4475 col_off2 = col_off1 - curwin_col_off2();
4476 width1 = W_WIDTH(curwin) - col_off1;
4477 width2 = W_WIDTH(curwin) - col_off2;
Bram Moolenaar7cc8ec42015-01-27 20:59:31 +01004478 if (width2 == 0)
4479 width2 = 1; /* avoid divide by zero */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004481#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 if (curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483#endif
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004484 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 /*
4486 * Instead of sticking at the last character of the buffer line we
4487 * try to stick in the last column of the screen.
4488 */
4489 if (curwin->w_curswant == MAXCOL)
4490 {
4491 atend = TRUE;
4492 validate_virtcol();
4493 if (width1 <= 0)
4494 curwin->w_curswant = 0;
4495 else
4496 {
4497 curwin->w_curswant = width1 - 1;
4498 if (curwin->w_virtcol > curwin->w_curswant)
4499 curwin->w_curswant += ((curwin->w_virtcol
4500 - curwin->w_curswant - 1) / width2 + 1) * width2;
4501 }
4502 }
4503 else
4504 {
4505 if (linelen > width1)
4506 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4507 else
4508 n = width1;
4509 if (curwin->w_curswant > (colnr_T)n + 1)
4510 curwin->w_curswant -= ((curwin->w_curswant - n) / width2 + 1)
4511 * width2;
4512 }
4513
4514 while (dist--)
4515 {
4516 if (dir == BACKWARD)
4517 {
4518 if ((long)curwin->w_curswant >= width2)
4519 /* move back within line */
4520 curwin->w_curswant -= width2;
4521 else
4522 {
4523 /* to previous line */
4524 if (curwin->w_cursor.lnum == 1)
4525 {
4526 retval = FAIL;
4527 break;
4528 }
4529 --curwin->w_cursor.lnum;
4530#ifdef FEAT_FOLDING
4531 /* Move to the start of a closed fold. Don't do that when
4532 * 'foldopen' contains "all": it will open in a moment. */
4533 if (!(fdo_flags & FDO_ALL))
4534 (void)hasFolding(curwin->w_cursor.lnum,
4535 &curwin->w_cursor.lnum, NULL);
4536#endif
4537 linelen = linetabsize(ml_get_curline());
4538 if (linelen > width1)
4539 curwin->w_curswant += (((linelen - width1 - 1) / width2)
4540 + 1) * width2;
4541 }
4542 }
4543 else /* dir == FORWARD */
4544 {
4545 if (linelen > width1)
4546 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4547 else
4548 n = width1;
4549 if (curwin->w_curswant + width2 < (colnr_T)n)
4550 /* move forward within line */
4551 curwin->w_curswant += width2;
4552 else
4553 {
4554 /* to next line */
4555#ifdef FEAT_FOLDING
4556 /* Move to the end of a closed fold. */
4557 (void)hasFolding(curwin->w_cursor.lnum, NULL,
4558 &curwin->w_cursor.lnum);
4559#endif
4560 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4561 {
4562 retval = FAIL;
4563 break;
4564 }
4565 curwin->w_cursor.lnum++;
4566 curwin->w_curswant %= width2;
Bram Moolenaar914968e2011-06-20 00:45:58 +02004567 linelen = linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 }
4569 }
4570 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572
Bram Moolenaar6cd3aee2014-01-14 13:18:58 +01004573 if (virtual_active() && atend)
4574 coladvance(MAXCOL);
4575 else
4576 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577
4578#if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
4579 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
4580 {
Bram Moolenaar773b1582014-08-29 14:20:51 +02004581 colnr_T virtcol;
4582
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 /*
4584 * Check for landing on a character that got split at the end of the
4585 * last line. We want to advance a screenline, not end up in the same
4586 * screenline or move two screenlines.
4587 */
4588 validate_virtcol();
Bram Moolenaar773b1582014-08-29 14:20:51 +02004589 virtcol = curwin->w_virtcol;
Bram Moolenaar84d8cdd2014-08-30 13:32:06 +02004590# if defined(FEAT_LINEBREAK)
Bram Moolenaar773b1582014-08-29 14:20:51 +02004591 if (virtcol > (colnr_T)width1 && *p_sbr != NUL)
4592 virtcol -= vim_strsize(p_sbr);
Bram Moolenaar84d8cdd2014-08-30 13:32:06 +02004593# endif
Bram Moolenaar773b1582014-08-29 14:20:51 +02004594
4595 if (virtcol > curwin->w_curswant
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 && (curwin->w_curswant < (colnr_T)width1
4597 ? (curwin->w_curswant > (colnr_T)width1 / 2)
4598 : ((curwin->w_curswant - width1) % width2
4599 > (colnr_T)width2 / 2)))
4600 --curwin->w_cursor.col;
4601 }
4602#endif
4603
4604 if (atend)
4605 curwin->w_curswant = MAXCOL; /* stick in the last column */
4606
4607 return retval;
4608}
4609
4610#ifdef FEAT_MOUSE
4611/*
4612 * Mouse scroll wheel: Default action is to scroll three lines, or one page
4613 * when Shift or Ctrl is used.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004614 * K_MOUSEUP (cap->arg == 1) or K_MOUSEDOWN (cap->arg == 0) or
4615 * K_MOUSELEFT (cap->arg == -1) or K_MOUSERIGHT (cap->arg == -2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 */
4617 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004618nv_mousescroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619{
Bram Moolenaar40cf4b42013-02-26 13:30:32 +01004620# ifdef FEAT_WINDOWS
Bram Moolenaara5792f52005-11-23 21:25:05 +00004621 win_T *old_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622
Bram Moolenaar40cf4b42013-02-26 13:30:32 +01004623 if (mouse_row >= 0 && mouse_col >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 {
4625 int row, col;
4626
4627 row = mouse_row;
4628 col = mouse_col;
4629
4630 /* find the window at the pointer coordinates */
4631 curwin = mouse_find_win(&row, &col);
4632 curbuf = curwin->w_buffer;
4633 }
4634# endif
4635
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004636 if (cap->arg == MSCR_UP || cap->arg == MSCR_DOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004638 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4639 {
4640 (void)onepage(cap->arg ? FORWARD : BACKWARD, 1L);
4641 }
4642 else
4643 {
4644 cap->count1 = 3;
4645 cap->count0 = 3;
4646 nv_scroll_line(cap);
4647 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 }
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004649# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 else
4651 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004652 /* Horizontal scroll - only allowed when 'wrap' is disabled */
4653 if (!curwin->w_p_wrap)
4654 {
4655 int val, step = 6;
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004656
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004657 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4658 step = W_WIDTH(curwin);
4659 val = curwin->w_leftcol + (cap->arg == MSCR_RIGHT ? -step : +step);
4660 if (val < 0)
4661 val = 0;
4662
4663 gui_do_horiz_scroll(val, TRUE);
4664 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 }
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004666# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667
Bram Moolenaar40cf4b42013-02-26 13:30:32 +01004668# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 curwin->w_redr_status = TRUE;
4670
4671 curwin = old_curwin;
4672 curbuf = curwin->w_buffer;
4673# endif
4674}
4675
4676/*
4677 * Mouse clicks and drags.
4678 */
4679 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004680nv_mouse(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681{
4682 (void)do_mouse(cap->oap, cap->cmdchar, BACKWARD, cap->count1, 0);
4683}
4684#endif
4685
4686/*
4687 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
4688 * cap->arg must be TRUE for CTRL-E.
4689 */
4690 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004691nv_scroll_line(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692{
4693 if (!checkclearop(cap->oap))
4694 scroll_redraw(cap->arg, cap->count1);
4695}
4696
4697/*
4698 * Scroll "count" lines up or down, and redraw.
4699 */
4700 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004701scroll_redraw(int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702{
4703 linenr_T prev_topline = curwin->w_topline;
4704#ifdef FEAT_DIFF
4705 int prev_topfill = curwin->w_topfill;
4706#endif
4707 linenr_T prev_lnum = curwin->w_cursor.lnum;
4708
4709 if (up)
4710 scrollup(count, TRUE);
4711 else
4712 scrolldown(count, TRUE);
4713 if (p_so)
4714 {
4715 /* Adjust the cursor position for 'scrolloff'. Mark w_topline as
4716 * valid, otherwise the screen jumps back at the end of the file. */
4717 cursor_correct();
4718 check_cursor_moved(curwin);
4719 curwin->w_valid |= VALID_TOPLINE;
4720
4721 /* If moved back to where we were, at least move the cursor, otherwise
4722 * we get stuck at one position. Don't move the cursor up if the
4723 * first line of the buffer is already on the screen */
4724 while (curwin->w_topline == prev_topline
4725#ifdef FEAT_DIFF
4726 && curwin->w_topfill == prev_topfill
4727#endif
4728 )
4729 {
4730 if (up)
4731 {
4732 if (curwin->w_cursor.lnum > prev_lnum
4733 || cursor_down(1L, FALSE) == FAIL)
4734 break;
4735 }
4736 else
4737 {
4738 if (curwin->w_cursor.lnum < prev_lnum
4739 || prev_topline == 1L
4740 || cursor_up(1L, FALSE) == FAIL)
4741 break;
4742 }
4743 /* Mark w_topline as valid, otherwise the screen jumps back at the
4744 * end of the file. */
4745 check_cursor_moved(curwin);
4746 curwin->w_valid |= VALID_TOPLINE;
4747 }
4748 }
4749 if (curwin->w_cursor.lnum != prev_lnum)
4750 coladvance(curwin->w_curswant);
4751 redraw_later(VALID);
4752}
4753
4754/*
4755 * Commands that start with "z".
4756 */
4757 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004758nv_zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759{
4760 long n;
4761 colnr_T col;
4762 int nchar = cap->nchar;
4763#ifdef FEAT_FOLDING
4764 long old_fdl = curwin->w_p_fdl;
4765 int old_fen = curwin->w_p_fen;
4766#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00004767#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00004768 int undo = FALSE;
4769#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770
4771 if (VIM_ISDIGIT(nchar))
4772 {
4773 /*
4774 * "z123{nchar}": edit the count before obtaining {nchar}
4775 */
4776 if (checkclearop(cap->oap))
4777 return;
4778 n = nchar - '0';
4779 for (;;)
4780 {
4781#ifdef USE_ON_FLY_SCROLL
4782 dont_scroll = TRUE; /* disallow scrolling here */
4783#endif
4784 ++no_mapping;
4785 ++allow_keys; /* no mapping for nchar, but allow key codes */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00004786 nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 --no_mapping;
4789 --allow_keys;
4790#ifdef FEAT_CMDL_INFO
4791 (void)add_to_showcmd(nchar);
4792#endif
4793 if (nchar == K_DEL || nchar == K_KDEL)
4794 n /= 10;
4795 else if (VIM_ISDIGIT(nchar))
4796 n = n * 10 + (nchar - '0');
4797 else if (nchar == CAR)
4798 {
4799#ifdef FEAT_GUI
4800 need_mouse_correct = TRUE;
4801#endif
4802 win_setheight((int)n);
4803 break;
4804 }
4805 else if (nchar == 'l'
4806 || nchar == 'h'
4807 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00004808 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 {
4810 cap->count1 = n ? n * cap->count1 : cap->count1;
4811 goto dozet;
4812 }
4813 else
4814 {
4815 clearopbeep(cap->oap);
4816 break;
4817 }
4818 }
4819 cap->oap->op_type = OP_NOP;
4820 return;
4821 }
4822
4823dozet:
4824 if (
4825#ifdef FEAT_FOLDING
4826 /* "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
4827 * and "zC" only in Visual mode. "zj" and "zk" are motion
4828 * commands. */
4829 cap->nchar != 'f' && cap->nchar != 'F'
4830 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
4831 && cap->nchar != 'j' && cap->nchar != 'k'
4832 &&
4833#endif
4834 checkclearop(cap->oap))
4835 return;
4836
4837 /*
4838 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
4839 * If line number given, set cursor.
4840 */
4841 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
4842 && cap->count0
4843 && cap->count0 != curwin->w_cursor.lnum)
4844 {
4845 setpcmark();
4846 if (cap->count0 > curbuf->b_ml.ml_line_count)
4847 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4848 else
4849 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004850 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 }
4852
4853 switch (nchar)
4854 {
4855 /* "z+", "z<CR>" and "zt": put cursor at top of screen */
4856 case '+':
4857 if (cap->count0 == 0)
4858 {
4859 /* No count given: put cursor at the line below screen */
4860 validate_botline(); /* make sure w_botline is valid */
4861 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
4862 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4863 else
4864 curwin->w_cursor.lnum = curwin->w_botline;
4865 }
4866 /* FALLTHROUGH */
4867 case NL:
4868 case CAR:
4869 case K_KENTER:
4870 beginline(BL_WHITE | BL_FIX);
4871 /* FALLTHROUGH */
4872
4873 case 't': scroll_cursor_top(0, TRUE);
4874 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01004875 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 break;
4877
4878 /* "z." and "zz": put cursor in middle of screen */
4879 case '.': beginline(BL_WHITE | BL_FIX);
4880 /* FALLTHROUGH */
4881
4882 case 'z': scroll_cursor_halfway(TRUE);
4883 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01004884 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 break;
4886
4887 /* "z^", "z-" and "zb": put cursor at bottom of screen */
4888 case '^': /* Strange Vi behavior: <count>z^ finds line at top of window
4889 * when <count> is at bottom of window, and puts that one at
4890 * bottom of window. */
4891 if (cap->count0 != 0)
4892 {
4893 scroll_cursor_bot(0, TRUE);
4894 curwin->w_cursor.lnum = curwin->w_topline;
4895 }
4896 else if (curwin->w_topline == 1)
4897 curwin->w_cursor.lnum = 1;
4898 else
4899 curwin->w_cursor.lnum = curwin->w_topline - 1;
4900 /* FALLTHROUGH */
4901 case '-':
4902 beginline(BL_WHITE | BL_FIX);
4903 /* FALLTHROUGH */
4904
4905 case 'b': scroll_cursor_bot(0, TRUE);
4906 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01004907 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 break;
4909
4910 /* "zH" - scroll screen right half-page */
4911 case 'H':
4912 cap->count1 *= W_WIDTH(curwin) / 2;
4913 /* FALLTHROUGH */
4914
4915 /* "zh" - scroll screen to the right */
4916 case 'h':
4917 case K_LEFT:
4918 if (!curwin->w_p_wrap)
4919 {
4920 if ((colnr_T)cap->count1 > curwin->w_leftcol)
4921 curwin->w_leftcol = 0;
4922 else
4923 curwin->w_leftcol -= (colnr_T)cap->count1;
4924 leftcol_changed();
4925 }
4926 break;
4927
4928 /* "zL" - scroll screen left half-page */
4929 case 'L': cap->count1 *= W_WIDTH(curwin) / 2;
4930 /* FALLTHROUGH */
4931
4932 /* "zl" - scroll screen to the left */
4933 case 'l':
4934 case K_RIGHT:
4935 if (!curwin->w_p_wrap)
4936 {
4937 /* scroll the window left */
4938 curwin->w_leftcol += (colnr_T)cap->count1;
4939 leftcol_changed();
4940 }
4941 break;
4942
4943 /* "zs" - scroll screen, cursor at the start */
4944 case 's': if (!curwin->w_p_wrap)
4945 {
4946#ifdef FEAT_FOLDING
4947 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4948 col = 0; /* like the cursor is in col 0 */
4949 else
4950#endif
4951 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
4952 if ((long)col > p_siso)
4953 col -= p_siso;
4954 else
4955 col = 0;
4956 if (curwin->w_leftcol != col)
4957 {
4958 curwin->w_leftcol = col;
4959 redraw_later(NOT_VALID);
4960 }
4961 }
4962 break;
4963
4964 /* "ze" - scroll screen, cursor at the end */
4965 case 'e': if (!curwin->w_p_wrap)
4966 {
4967#ifdef FEAT_FOLDING
4968 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4969 col = 0; /* like the cursor is in col 0 */
4970 else
4971#endif
4972 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
4973 n = W_WIDTH(curwin) - curwin_col_off();
4974 if ((long)col + p_siso < n)
4975 col = 0;
4976 else
4977 col = col + p_siso - n + 1;
4978 if (curwin->w_leftcol != col)
4979 {
4980 curwin->w_leftcol = col;
4981 redraw_later(NOT_VALID);
4982 }
4983 }
4984 break;
4985
4986#ifdef FEAT_FOLDING
4987 /* "zF": create fold command */
4988 /* "zf": create fold operator */
4989 case 'F':
4990 case 'f': if (foldManualAllowed(TRUE))
4991 {
4992 cap->nchar = 'f';
4993 nv_operator(cap);
4994 curwin->w_p_fen = TRUE;
4995
4996 /* "zF" is like "zfzf" */
4997 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
4998 {
4999 nv_operator(cap);
5000 finish_op = TRUE;
5001 }
5002 }
5003 else
5004 clearopbeep(cap->oap);
5005 break;
5006
5007 /* "zd": delete fold at cursor */
5008 /* "zD": delete fold at cursor recursively */
5009 case 'd':
5010 case 'D': if (foldManualAllowed(FALSE))
5011 {
5012 if (VIsual_active)
5013 nv_operator(cap);
5014 else
5015 deleteFold(curwin->w_cursor.lnum,
5016 curwin->w_cursor.lnum, nchar == 'D', FALSE);
5017 }
5018 break;
5019
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02005020 /* "zE": erase all folds */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 case 'E': if (foldmethodIsManual(curwin))
5022 {
5023 clearFolding(curwin);
5024 changed_window_setting();
5025 }
5026 else if (foldmethodIsMarker(curwin))
5027 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
5028 TRUE, FALSE);
5029 else
5030 EMSG(_("E352: Cannot erase folds with current 'foldmethod'"));
5031 break;
5032
5033 /* "zn": fold none: reset 'foldenable' */
5034 case 'n': curwin->w_p_fen = FALSE;
5035 break;
5036
5037 /* "zN": fold Normal: set 'foldenable' */
5038 case 'N': curwin->w_p_fen = TRUE;
5039 break;
5040
5041 /* "zi": invert folding: toggle 'foldenable' */
5042 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
5043 break;
5044
5045 /* "za": open closed fold or close open fold at cursor */
5046 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
5047 openFold(curwin->w_cursor.lnum, cap->count1);
5048 else
5049 {
5050 closeFold(curwin->w_cursor.lnum, cap->count1);
5051 curwin->w_p_fen = TRUE;
5052 }
5053 break;
5054
5055 /* "zA": open fold at cursor recursively */
5056 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
5057 openFoldRecurse(curwin->w_cursor.lnum);
5058 else
5059 {
5060 closeFoldRecurse(curwin->w_cursor.lnum);
5061 curwin->w_p_fen = TRUE;
5062 }
5063 break;
5064
5065 /* "zo": open fold at cursor or Visual area */
5066 case 'o': if (VIsual_active)
5067 nv_operator(cap);
5068 else
5069 openFold(curwin->w_cursor.lnum, cap->count1);
5070 break;
5071
5072 /* "zO": open fold recursively */
5073 case 'O': if (VIsual_active)
5074 nv_operator(cap);
5075 else
5076 openFoldRecurse(curwin->w_cursor.lnum);
5077 break;
5078
5079 /* "zc": close fold at cursor or Visual area */
5080 case 'c': if (VIsual_active)
5081 nv_operator(cap);
5082 else
5083 closeFold(curwin->w_cursor.lnum, cap->count1);
5084 curwin->w_p_fen = TRUE;
5085 break;
5086
5087 /* "zC": close fold recursively */
5088 case 'C': if (VIsual_active)
5089 nv_operator(cap);
5090 else
5091 closeFoldRecurse(curwin->w_cursor.lnum);
5092 curwin->w_p_fen = TRUE;
5093 break;
5094
5095 /* "zv": open folds at the cursor */
5096 case 'v': foldOpenCursor();
5097 break;
5098
5099 /* "zx": re-apply 'foldlevel' and open folds at the cursor */
5100 case 'x': curwin->w_p_fen = TRUE;
Bram Moolenaar38ab0e22010-05-13 17:35:59 +02005101 curwin->w_foldinvalid = TRUE; /* recompute folds */
5102 newFoldLevel(); /* update right now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 foldOpenCursor();
5104 break;
5105
5106 /* "zX": undo manual opens/closes, re-apply 'foldlevel' */
5107 case 'X': curwin->w_p_fen = TRUE;
Bram Moolenaar38ab0e22010-05-13 17:35:59 +02005108 curwin->w_foldinvalid = TRUE; /* recompute folds */
5109 old_fdl = -1; /* force an update */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 break;
5111
5112 /* "zm": fold more */
5113 case 'm': if (curwin->w_p_fdl > 0)
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02005114 {
5115 curwin->w_p_fdl -= cap->count1;
5116 if (curwin->w_p_fdl < 0)
5117 curwin->w_p_fdl = 0;
5118 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 old_fdl = -1; /* force an update */
5120 curwin->w_p_fen = TRUE;
5121 break;
5122
5123 /* "zM": close all folds */
5124 case 'M': curwin->w_p_fdl = 0;
5125 old_fdl = -1; /* force an update */
5126 curwin->w_p_fen = TRUE;
5127 break;
5128
5129 /* "zr": reduce folding */
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02005130 case 'r': curwin->w_p_fdl += cap->count1;
5131 {
5132 int d = getDeepestNesting();
5133
5134 if (curwin->w_p_fdl >= d)
5135 curwin->w_p_fdl = d;
5136 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 break;
5138
5139 /* "zR": open all folds */
5140 case 'R': curwin->w_p_fdl = getDeepestNesting();
5141 old_fdl = -1; /* force an update */
5142 break;
5143
5144 case 'j': /* "zj" move to next fold downwards */
5145 case 'k': /* "zk" move to next fold upwards */
5146 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
5147 cap->count1) == FAIL)
5148 clearopbeep(cap->oap);
5149 break;
5150
5151#endif /* FEAT_FOLDING */
5152
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005153#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00005154 case 'u': /* "zug" and "zuw": undo "zg" and "zw" */
5155 ++no_mapping;
5156 ++allow_keys; /* no mapping for nchar, but allow key codes */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005157 nchar = plain_vgetc();
Bram Moolenaard0131a82006-03-04 21:46:13 +00005158 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaard0131a82006-03-04 21:46:13 +00005159 --no_mapping;
5160 --allow_keys;
5161#ifdef FEAT_CMDL_INFO
5162 (void)add_to_showcmd(nchar);
5163#endif
5164 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
5165 {
5166 clearopbeep(cap->oap);
5167 break;
5168 }
5169 undo = TRUE;
5170 /*FALLTHROUGH*/
5171
Bram Moolenaarb765d632005-06-07 21:00:02 +00005172 case 'g': /* "zg": add good word to word list */
5173 case 'w': /* "zw": add wrong word to word list */
Bram Moolenaar7887d882005-07-01 22:33:52 +00005174 case 'G': /* "zG": add good word to temp word list */
5175 case 'W': /* "zW": add wrong word to temp word list */
Bram Moolenaarb765d632005-06-07 21:00:02 +00005176 {
5177 char_u *ptr = NULL;
5178 int len;
5179
5180 if (checkclearop(cap->oap))
5181 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00005182 if (VIsual_active && get_visual_text(cap, &ptr, &len)
5183 == FAIL)
5184 return;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00005185 if (ptr == NULL)
5186 {
5187 pos_T pos = curwin->w_cursor;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00005188
Bram Moolenaar134bf072013-09-25 18:54:24 +02005189 /* Find bad word under the cursor. When 'spell' is
5190 * off this fails and find_ident_under_cursor() is
5191 * used below. */
5192 emsg_off++;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00005193 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
Bram Moolenaar134bf072013-09-25 18:54:24 +02005194 emsg_off--;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00005195 if (len != 0 && curwin->w_cursor.col <= pos.col)
5196 ptr = ml_get_pos(&curwin->w_cursor);
5197 curwin->w_cursor = pos;
5198 }
5199
Bram Moolenaarb765d632005-06-07 21:00:02 +00005200 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
5201 FIND_IDENT)) == 0)
5202 return;
Bram Moolenaar7887d882005-07-01 22:33:52 +00005203 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W',
Bram Moolenaard0131a82006-03-04 21:46:13 +00005204 (nchar == 'G' || nchar == 'W')
5205 ? 0 : (int)cap->count1,
5206 undo);
Bram Moolenaarb765d632005-06-07 21:00:02 +00005207 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00005208 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005209
Bram Moolenaar43abc522005-12-10 20:15:02 +00005210 case '=': /* "z=": suggestions for a badly spelled word */
Bram Moolenaar66fa2712006-01-22 23:22:22 +00005211 if (!checkclearop(cap->oap))
Bram Moolenaard12a1322005-08-21 22:08:24 +00005212 spell_suggest((int)cap->count0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005213 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00005214#endif
5215
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216 default: clearopbeep(cap->oap);
5217 }
5218
5219#ifdef FEAT_FOLDING
5220 /* Redraw when 'foldenable' changed */
5221 if (old_fen != curwin->w_p_fen)
5222 {
5223# ifdef FEAT_DIFF
5224 win_T *wp;
5225
5226 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
5227 {
5228 /* Adjust 'foldenable' in diff-synced windows. */
5229 FOR_ALL_WINDOWS(wp)
5230 {
5231 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
5232 {
5233 wp->w_p_fen = curwin->w_p_fen;
5234 changed_window_setting_win(wp);
5235 }
5236 }
5237 }
5238# endif
5239 changed_window_setting();
5240 }
5241
5242 /* Redraw when 'foldlevel' changed. */
5243 if (old_fdl != curwin->w_p_fdl)
5244 newFoldLevel();
5245#endif
5246}
5247
5248#ifdef FEAT_GUI
5249/*
5250 * Vertical scrollbar movement.
5251 */
5252 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005253nv_ver_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254{
5255 if (cap->oap->op_type != OP_NOP)
5256 clearopbeep(cap->oap);
5257
5258 /* Even if an operator was pending, we still want to scroll */
5259 gui_do_scroll();
5260}
5261
5262/*
5263 * Horizontal scrollbar movement.
5264 */
5265 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005266nv_hor_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267{
5268 if (cap->oap->op_type != OP_NOP)
5269 clearopbeep(cap->oap);
5270
5271 /* Even if an operator was pending, we still want to scroll */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02005272 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273}
5274#endif
5275
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005276#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005277/*
5278 * Click in GUI tab.
5279 */
5280 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005281nv_tabline(cmdarg_T *cap)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005282{
5283 if (cap->oap->op_type != OP_NOP)
5284 clearopbeep(cap->oap);
5285
5286 /* Even if an operator was pending, we still want to jump tabs. */
5287 goto_tabpage(current_tab);
5288}
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005289
5290/*
5291 * Selected item in tab line menu.
5292 */
5293 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005294nv_tabmenu(cmdarg_T *cap)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005295{
5296 if (cap->oap->op_type != OP_NOP)
5297 clearopbeep(cap->oap);
5298
5299 /* Even if an operator was pending, we still want to jump tabs. */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005300 handle_tabmenu();
5301}
5302
5303/*
5304 * Handle selecting an item of the GUI tab line menu.
5305 * Used in Normal and Insert mode.
5306 */
5307 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005308handle_tabmenu(void)
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005309{
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005310 switch (current_tabmenu)
5311 {
5312 case TABLINE_MENU_CLOSE:
5313 if (current_tab == 0)
5314 do_cmdline_cmd((char_u *)"tabclose");
5315 else
5316 {
5317 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
5318 current_tab);
5319 do_cmdline_cmd(IObuff);
5320 }
5321 break;
5322
5323 case TABLINE_MENU_NEW:
Bram Moolenaardfd76912015-02-27 15:03:58 +01005324 if (current_tab == 0)
5325 do_cmdline_cmd((char_u *)"$tabnew");
5326 else
5327 {
5328 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
5329 current_tab - 1);
5330 do_cmdline_cmd(IObuff);
5331 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005332 break;
5333
5334 case TABLINE_MENU_OPEN:
Bram Moolenaardfd76912015-02-27 15:03:58 +01005335 if (current_tab == 0)
5336 do_cmdline_cmd((char_u *)"browse $tabnew");
5337 else
5338 {
5339 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
5340 current_tab - 1);
5341 do_cmdline_cmd(IObuff);
5342 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00005343 break;
5344 }
5345}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005346#endif
5347
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348/*
5349 * "Q" command.
5350 */
5351 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005352nv_exmode(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353{
5354 /*
5355 * Ignore 'Q' in Visual mode, just give a beep.
5356 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 if (VIsual_active)
Bram Moolenaar165bc692015-07-21 17:53:25 +02005358 vim_beep(BO_EX);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005359 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 do_exmode(FALSE);
5361}
5362
5363/*
5364 * Handle a ":" command.
5365 */
5366 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005367nv_colon(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368{
5369 int old_p_im;
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005370 int cmd_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 if (VIsual_active)
5373 nv_operator(cap);
5374 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375 {
5376 if (cap->oap->op_type != OP_NOP)
5377 {
5378 /* Using ":" as a movement is characterwise exclusive. */
5379 cap->oap->motion_type = MCHAR;
5380 cap->oap->inclusive = FALSE;
5381 }
5382 else if (cap->count0)
5383 {
5384 /* translate "count:" into ":.,.+(count - 1)" */
5385 stuffcharReadbuff('.');
5386 if (cap->count0 > 1)
5387 {
5388 stuffReadbuff((char_u *)",.+");
5389 stuffnumReadbuff((long)cap->count0 - 1L);
5390 }
5391 }
5392
5393 /* When typing, don't type below an old message */
5394 if (KeyTyped)
5395 compute_cmdrow();
5396
5397 old_p_im = p_im;
5398
5399 /* get a command line and execute it */
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005400 cmd_result = do_cmdline(NULL, getexline, NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
5402
5403 /* If 'insertmode' changed, enter or exit Insert mode */
5404 if (p_im != old_p_im)
5405 {
5406 if (p_im)
5407 restart_edit = 'i';
5408 else
5409 restart_edit = 0;
5410 }
5411
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005412 if (cmd_result == FAIL)
5413 /* The Ex command failed, do not execute the operator. */
5414 clearop(cap->oap);
5415 else if (cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
5417 || cap->oap->start.col >
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02005418 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
5419 || did_emsg
5420 ))
5421 /* The start of the operator has become invalid by the Ex command.
5422 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 clearopbeep(cap->oap);
5424 }
5425}
5426
5427/*
5428 * Handle CTRL-G command.
5429 */
5430 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005431nv_ctrlg(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 if (VIsual_active) /* toggle Selection/Visual mode */
5434 {
5435 VIsual_select = !VIsual_select;
5436 showmode();
5437 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005438 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439 /* print full name if count given or :cd used */
5440 fileinfo((int)cap->count0, FALSE, TRUE);
5441}
5442
5443/*
5444 * Handle CTRL-H <Backspace> command.
5445 */
5446 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005447nv_ctrlh(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449 if (VIsual_active && VIsual_select)
5450 {
5451 cap->cmdchar = 'x'; /* BS key behaves like 'x' in Select mode */
5452 v_visop(cap);
5453 }
5454 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 nv_left(cap);
5456}
5457
5458/*
5459 * CTRL-L: clear screen and redraw.
5460 */
5461 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005462nv_clear(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463{
5464 if (!checkclearop(cap->oap))
5465 {
5466#if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
5467 /*
5468 * Right now, the BeBox doesn't seem to have an easy way to detect
5469 * window resizing, so we cheat and make the user detect it
5470 * manually with CTRL-L instead
5471 */
5472 ui_get_shellsize();
5473#endif
5474#ifdef FEAT_SYN_HL
5475 /* Clear all syntax states to force resyncing. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02005476 syn_stack_free_all(curwin->w_s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477#endif
5478 redraw_later(CLEAR);
5479 }
5480}
5481
5482/*
5483 * CTRL-O: In Select mode: switch to Visual mode for one command.
5484 * Otherwise: Go to older pcmark.
5485 */
5486 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005487nv_ctrlo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489 if (VIsual_active && VIsual_select)
5490 {
5491 VIsual_select = FALSE;
5492 showmode();
5493 restart_VIsual_select = 2; /* restart Select mode later */
5494 }
5495 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496 {
5497 cap->count1 = -cap->count1;
5498 nv_pcmark(cap);
5499 }
5500}
5501
5502/*
5503 * CTRL-^ command, short for ":e #"
5504 */
5505 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005506nv_hat(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507{
5508 if (!checkclearopq(cap->oap))
5509 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
5510 GETF_SETMARK|GETF_ALT, FALSE);
5511}
5512
5513/*
5514 * "Z" commands.
5515 */
5516 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005517nv_Zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518{
5519 if (!checkclearopq(cap->oap))
5520 {
5521 switch (cap->nchar)
5522 {
5523 /* "ZZ": equivalent to ":x". */
5524 case 'Z': do_cmdline_cmd((char_u *)"x");
5525 break;
5526
5527 /* "ZQ": equivalent to ":q!" (Elvis compatible). */
5528 case 'Q': do_cmdline_cmd((char_u *)"q!");
5529 break;
5530
5531 default: clearopbeep(cap->oap);
5532 }
5533 }
5534}
5535
5536#if defined(FEAT_WINDOWS) || defined(PROTO)
5537/*
5538 * Call nv_ident() as if "c1" was used, with "c2" as next character.
5539 */
5540 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005541do_nv_ident(int c1, int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542{
5543 oparg_T oa;
5544 cmdarg_T ca;
5545
5546 clear_oparg(&oa);
5547 vim_memset(&ca, 0, sizeof(ca));
5548 ca.oap = &oa;
5549 ca.cmdchar = c1;
5550 ca.nchar = c2;
5551 nv_ident(&ca);
5552}
5553#endif
5554
5555/*
5556 * Handle the commands that use the word under the cursor.
5557 * [g] CTRL-] :ta to current identifier
5558 * [g] 'K' run program for current identifier
5559 * [g] '*' / to current identifier or string
5560 * [g] '#' ? to current identifier or string
5561 * g ']' :tselect for current identifier
5562 */
5563 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005564nv_ident(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565{
5566 char_u *ptr = NULL;
5567 char_u *buf;
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005568 unsigned buflen;
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005569 char_u *newbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 char_u *p;
5571 char_u *kp; /* value of 'keywordprg' */
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005572 int kp_help; /* 'keywordprg' is ":he" */
5573 int kp_ex; /* 'keywordprg' starts with ":" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 int n = 0; /* init for GCC */
5575 int cmdchar;
5576 int g_cmd; /* "g" command */
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005577 int tag_cmd = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578 char_u *aux_ptr;
5579 int isman;
5580 int isman_s;
5581
5582 if (cap->cmdchar == 'g') /* "g*", "g#", "g]" and "gCTRL-]" */
5583 {
5584 cmdchar = cap->nchar;
5585 g_cmd = TRUE;
5586 }
5587 else
5588 {
5589 cmdchar = cap->cmdchar;
5590 g_cmd = FALSE;
5591 }
5592
5593 if (cmdchar == POUND) /* the pound sign, '#' for English keyboards */
5594 cmdchar = '#';
5595
5596 /*
5597 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
5598 */
5599 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
5600 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
5602 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603 if (checkclearopq(cap->oap))
5604 return;
5605 }
5606
5607 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
5608 (cmdchar == '*' || cmdchar == '#')
5609 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
5610 {
5611 clearop(cap->oap);
5612 return;
5613 }
5614
5615 /* Allocate buffer to put the command in. Inserting backslashes can
5616 * double the length of the word. p_kp / curbuf->b_p_kp could be added
5617 * and some numbers. */
5618 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
5619 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
5620 || STRCMP(kp, ":help") == 0);
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005621 kp_ex = (*kp == ':');
5622 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp));
5623 buf = alloc(buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624 if (buf == NULL)
5625 return;
5626 buf[0] = NUL;
5627
5628 switch (cmdchar)
5629 {
5630 case '*':
5631 case '#':
5632 /*
5633 * Put cursor at start of word, makes search skip the word
5634 * under the cursor.
5635 * Call setpcmark() first, so "*``" puts the cursor back where
5636 * it was.
5637 */
5638 setpcmark();
5639 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
5640
5641 if (!g_cmd && vim_iswordp(ptr))
5642 STRCPY(buf, "\\<");
5643 no_smartcase = TRUE; /* don't use 'smartcase' now */
5644 break;
5645
5646 case 'K':
5647 if (kp_help)
5648 STRCPY(buf, "he! ");
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02005649 else if (kp_ex)
5650 {
5651 if (cap->count0 != 0)
5652 vim_snprintf((char *)buf, buflen, "%s %ld",
5653 kp, cap->count0);
5654 else
5655 STRCPY(buf, kp);
5656 STRCAT(buf, " ");
5657 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 else
5659 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005660 /* An external command will probably use an argument starting
5661 * with "-" as an option. To avoid trouble we skip the "-". */
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005662 while (*ptr == '-' && n > 0)
5663 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005664 ++ptr;
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005665 --n;
5666 }
5667 if (n == 0)
5668 {
5669 EMSG(_(e_noident)); /* found dashes only */
5670 vim_free(buf);
5671 return;
5672 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005673
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 /* When a count is given, turn it into a range. Is this
5675 * really what we want? */
5676 isman = (STRCMP(kp, "man") == 0);
5677 isman_s = (STRCMP(kp, "man -s") == 0);
5678 if (cap->count0 != 0 && !(isman || isman_s))
5679 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
5680
5681 STRCAT(buf, "! ");
5682 if (cap->count0 == 0 && isman_s)
5683 STRCAT(buf, "man");
5684 else
5685 STRCAT(buf, kp);
5686 STRCAT(buf, " ");
5687 if (cap->count0 != 0 && (isman || isman_s))
5688 {
5689 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
5690 STRCAT(buf, " ");
5691 }
5692 }
5693 break;
5694
5695 case ']':
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005696 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697#ifdef FEAT_CSCOPE
5698 if (p_cst)
5699 STRCPY(buf, "cstag ");
5700 else
5701#endif
5702 STRCPY(buf, "ts ");
5703 break;
5704
5705 default:
Bram Moolenaar97e7a842010-03-17 13:07:08 +01005706 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 if (curbuf->b_help)
5708 STRCPY(buf, "he! ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709 else
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005710 {
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005711 if (g_cmd)
5712 STRCPY(buf, "tj ");
5713 else
5714 sprintf((char *)buf, "%ldta ", cap->count0);
5715 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716 }
5717
5718 /*
5719 * Now grab the chars in the identifier
5720 */
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005721 if (cmdchar == 'K' && !kp_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722 {
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005723 ptr = vim_strnsave(ptr, n);
Bram Moolenaar426f3752016-11-04 21:22:37 +01005724 if (kp_ex)
5725 /* Escape the argument properly for an Ex command */
5726 p = vim_strsave_fnameescape(ptr, FALSE);
5727 else
5728 /* Escape the argument properly for a shell command */
5729 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00005730 vim_free(ptr);
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005731 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005733 vim_free(buf);
5734 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005736 newbuf = (char_u *)vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
5737 if (newbuf == NULL)
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005738 {
5739 vim_free(buf);
5740 vim_free(p);
5741 return;
5742 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005743 buf = newbuf;
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005744 STRCAT(buf, p);
5745 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005747 else
5748 {
5749 if (cmdchar == '*')
5750 aux_ptr = (char_u *)(p_magic ? "/.*~[^$\\" : "/^$\\");
5751 else if (cmdchar == '#')
5752 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005753 else if (tag_cmd)
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02005754 {
5755 if (curbuf->b_help)
5756 /* ":help" handles unescaped argument */
5757 aux_ptr = (char_u *)"";
5758 else
5759 aux_ptr = (char_u *)"\\|\"\n[";
5760 }
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01005761 else
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00005762 aux_ptr = (char_u *)"\\|\"\n*?[";
5763
5764 p = buf + STRLEN(buf);
5765 while (n-- > 0)
5766 {
5767 /* put a backslash before \ and some others */
5768 if (vim_strchr(aux_ptr, *ptr) != NULL)
5769 *p++ = '\\';
5770#ifdef FEAT_MBYTE
5771 /* When current byte is a part of multibyte character, copy all
5772 * bytes of that character. */
5773 if (has_mbyte)
5774 {
5775 int i;
5776 int len = (*mb_ptr2len)(ptr) - 1;
5777
5778 for (i = 0; i < len && n >= 1; ++i, --n)
5779 *p++ = *ptr++;
5780 }
5781#endif
5782 *p++ = *ptr++;
5783 }
5784 *p = NUL;
5785 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786
5787 /*
5788 * Execute the command.
5789 */
5790 if (cmdchar == '*' || cmdchar == '#')
5791 {
5792 if (!g_cmd && (
5793#ifdef FEAT_MBYTE
5794 has_mbyte ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr)) :
5795#endif
5796 vim_iswordc(ptr[-1])))
5797 STRCAT(buf, "\\>");
5798#ifdef FEAT_CMDHIST
5799 /* put pattern in search history */
Bram Moolenaarc7be3f32009-12-24 14:01:12 +00005800 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
5802#endif
Bram Moolenaar46539112015-02-17 15:43:57 +01005803 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 }
5805 else
5806 do_cmdline_cmd(buf);
5807
5808 vim_free(buf);
5809}
5810
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811/*
5812 * Get visually selected text, within one line only.
5813 * Returns FAIL if more than one line selected.
5814 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005815 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005816get_visual_text(
5817 cmdarg_T *cap,
5818 char_u **pp, /* return: start of selected text */
5819 int *lenp) /* return: length of selected text */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005820{
5821 if (VIsual_mode != 'V')
5822 unadjust_for_sel();
5823 if (VIsual.lnum != curwin->w_cursor.lnum)
5824 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005825 if (cap != NULL)
5826 clearopbeep(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 return FAIL;
5828 }
5829 if (VIsual_mode == 'V')
5830 {
5831 *pp = ml_get_curline();
5832 *lenp = (int)STRLEN(*pp);
5833 }
5834 else
5835 {
5836 if (lt(curwin->w_cursor, VIsual))
5837 {
5838 *pp = ml_get_pos(&curwin->w_cursor);
5839 *lenp = VIsual.col - curwin->w_cursor.col + 1;
5840 }
5841 else
5842 {
5843 *pp = ml_get_pos(&VIsual);
5844 *lenp = curwin->w_cursor.col - VIsual.col + 1;
5845 }
5846#ifdef FEAT_MBYTE
5847 if (has_mbyte)
5848 /* Correct the length to include the whole last character. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005849 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850#endif
5851 }
5852 reset_VIsual_and_resel();
5853 return OK;
5854}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855
5856/*
5857 * CTRL-T: backwards in tag stack
5858 */
5859 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005860nv_tagpop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861{
5862 if (!checkclearopq(cap->oap))
5863 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
5864}
5865
5866/*
5867 * Handle scrolling command 'H', 'L' and 'M'.
5868 */
5869 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005870nv_scroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871{
5872 int used = 0;
5873 long n;
5874#ifdef FEAT_FOLDING
5875 linenr_T lnum;
5876#endif
5877 int half;
5878
5879 cap->oap->motion_type = MLINE;
5880 setpcmark();
5881
5882 if (cap->cmdchar == 'L')
5883 {
5884 validate_botline(); /* make sure curwin->w_botline is valid */
5885 curwin->w_cursor.lnum = curwin->w_botline - 1;
5886 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
5887 curwin->w_cursor.lnum = 1;
5888 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005889 {
5890#ifdef FEAT_FOLDING
5891 if (hasAnyFolding(curwin))
5892 {
5893 /* Count a fold for one screen line. */
5894 for (n = cap->count1 - 1; n > 0
5895 && curwin->w_cursor.lnum > curwin->w_topline; --n)
5896 {
5897 (void)hasFolding(curwin->w_cursor.lnum,
5898 &curwin->w_cursor.lnum, NULL);
5899 --curwin->w_cursor.lnum;
5900 }
5901 }
5902 else
5903#endif
5904 curwin->w_cursor.lnum -= cap->count1 - 1;
5905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 }
5907 else
5908 {
5909 if (cap->cmdchar == 'M')
5910 {
5911#ifdef FEAT_DIFF
5912 /* Don't count filler lines above the window. */
5913 used -= diff_check_fill(curwin, curwin->w_topline)
5914 - curwin->w_topfill;
5915#endif
5916 validate_botline(); /* make sure w_empty_rows is valid */
5917 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
5918 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
5919 {
5920#ifdef FEAT_DIFF
5921 /* Count half he number of filler lines to be "below this
5922 * line" and half to be "above the next line". */
5923 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
5924 + n) / 2 >= half)
5925 {
5926 --n;
5927 break;
5928 }
5929#endif
5930 used += plines(curwin->w_topline + n);
5931 if (used >= half)
5932 break;
5933#ifdef FEAT_FOLDING
5934 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
5935 n = lnum - curwin->w_topline;
5936#endif
5937 }
5938 if (n > 0 && used > curwin->w_height)
5939 --n;
5940 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005941 else /* (cap->cmdchar == 'H') */
5942 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005944#ifdef FEAT_FOLDING
5945 if (hasAnyFolding(curwin))
5946 {
5947 /* Count a fold for one screen line. */
5948 lnum = curwin->w_topline;
5949 while (n-- > 0 && lnum < curwin->w_botline - 1)
5950 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02005951 (void)hasFolding(lnum, NULL, &lnum);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005952 ++lnum;
5953 }
5954 n = lnum - curwin->w_topline;
5955 }
5956#endif
5957 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958 curwin->w_cursor.lnum = curwin->w_topline + n;
5959 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5960 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5961 }
5962
5963 cursor_correct(); /* correct for 'so' */
5964 beginline(BL_SOL | BL_FIX);
5965}
5966
5967/*
5968 * Cursor right commands.
5969 */
5970 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005971nv_right(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005972{
5973 long n;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005974 int past_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005976 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
5977 {
5978 /* <C-Right> and <S-Right> move a word or WORD right */
5979 if (mod_mask & MOD_MASK_CTRL)
5980 cap->arg = TRUE;
5981 nv_wordcmd(cap);
5982 return;
5983 }
5984
Bram Moolenaar071d4272004-06-13 20:20:40 +00005985 cap->oap->motion_type = MCHAR;
5986 cap->oap->inclusive = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005987 past_line = (VIsual_active && *p_sel != 'o');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005989#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 /*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005991 * In virtual edit mode, there's no such thing as "past_line", as lines
5992 * are (theoretically) infinitely long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993 */
5994 if (virtual_active())
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005995 past_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996#endif
5997
5998 for (n = cap->count1; n > 0; --n)
5999 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006000 if ((!past_line && oneright() == FAIL)
6001 || (past_line && *ml_get_cursor() == NUL)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006002 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003 {
6004 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006005 * <Space> wraps to next line if 'whichwrap' has 's'.
6006 * 'l' wraps to next line if 'whichwrap' has 'l'.
6007 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006008 */
6009 if ( ((cap->cmdchar == ' '
6010 && vim_strchr(p_ww, 's') != NULL)
6011 || (cap->cmdchar == 'l'
6012 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00006013 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006014 && vim_strchr(p_ww, '>') != NULL))
6015 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
6016 {
6017 /* When deleting we also count the NL as a character.
6018 * Set cap->oap->inclusive when last char in the line is
6019 * included, move to next line after that */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006020 if ( cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021 && !cap->oap->inclusive
6022 && !lineempty(curwin->w_cursor.lnum))
6023 cap->oap->inclusive = TRUE;
6024 else
6025 {
6026 ++curwin->w_cursor.lnum;
6027 curwin->w_cursor.col = 0;
6028#ifdef FEAT_VIRTUALEDIT
6029 curwin->w_cursor.coladd = 0;
6030#endif
6031 curwin->w_set_curswant = TRUE;
6032 cap->oap->inclusive = FALSE;
6033 }
6034 continue;
6035 }
6036 if (cap->oap->op_type == OP_NOP)
6037 {
6038 /* Only beep and flush if not moved at all */
6039 if (n == cap->count1)
6040 beep_flush();
6041 }
6042 else
6043 {
6044 if (!lineempty(curwin->w_cursor.lnum))
6045 cap->oap->inclusive = TRUE;
6046 }
6047 break;
6048 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006049 else if (past_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006050 {
6051 curwin->w_set_curswant = TRUE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006052#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053 if (virtual_active())
6054 oneright();
6055 else
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006056#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006058#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059 if (has_mbyte)
6060 curwin->w_cursor.col +=
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006061 (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 else
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006063#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064 ++curwin->w_cursor.col;
6065 }
6066 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067 }
6068#ifdef FEAT_FOLDING
6069 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
6070 && cap->oap->op_type == OP_NOP)
6071 foldOpenCursor();
6072#endif
6073}
6074
6075/*
6076 * Cursor left commands.
6077 *
6078 * Returns TRUE when operator end should not be adjusted.
6079 */
6080 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006081nv_left(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082{
6083 long n;
6084
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006085 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
6086 {
6087 /* <C-Left> and <S-Left> move a word or WORD left */
6088 if (mod_mask & MOD_MASK_CTRL)
6089 cap->arg = 1;
6090 nv_bck_word(cap);
6091 return;
6092 }
6093
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 cap->oap->motion_type = MCHAR;
6095 cap->oap->inclusive = FALSE;
6096 for (n = cap->count1; n > 0; --n)
6097 {
6098 if (oneleft() == FAIL)
6099 {
6100 /* <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
6101 * 'h' wraps to previous line if 'whichwrap' has 'h'.
6102 * CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
6103 */
6104 if ( (((cap->cmdchar == K_BS
6105 || cap->cmdchar == Ctrl_H)
6106 && vim_strchr(p_ww, 'b') != NULL)
6107 || (cap->cmdchar == 'h'
6108 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00006109 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006110 && vim_strchr(p_ww, '<') != NULL))
6111 && curwin->w_cursor.lnum > 1)
6112 {
6113 --(curwin->w_cursor.lnum);
6114 coladvance((colnr_T)MAXCOL);
6115 curwin->w_set_curswant = TRUE;
6116
6117 /* When the NL before the first char has to be deleted we
6118 * put the cursor on the NUL after the previous line.
6119 * This is a very special case, be careful!
Bram Moolenaarad8958b2008-01-02 15:26:04 +00006120 * Don't adjust op_end now, otherwise it won't work. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121 if ( (cap->oap->op_type == OP_DELETE
6122 || cap->oap->op_type == OP_CHANGE)
6123 && !lineempty(curwin->w_cursor.lnum))
6124 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01006125 char_u *cp = ml_get_cursor();
6126
6127 if (*cp != NUL)
6128 {
6129#ifdef FEAT_MBYTE
6130 if (has_mbyte)
6131 curwin->w_cursor.col += (*mb_ptr2len)(cp);
6132 else
6133#endif
6134 ++curwin->w_cursor.col;
6135 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136 cap->retval |= CA_NO_ADJ_OP_END;
6137 }
6138 continue;
6139 }
6140 /* Only beep and flush if not moved at all */
6141 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
6142 beep_flush();
6143 break;
6144 }
6145 }
6146#ifdef FEAT_FOLDING
6147 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
6148 && cap->oap->op_type == OP_NOP)
6149 foldOpenCursor();
6150#endif
6151}
6152
6153/*
6154 * Cursor up commands.
6155 * cap->arg is TRUE for "-": Move cursor to first non-blank.
6156 */
6157 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006158nv_up(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006160 if (mod_mask & MOD_MASK_SHIFT)
6161 {
6162 /* <S-Up> is page up */
6163 cap->arg = BACKWARD;
6164 nv_page(cap);
6165 }
6166 else
6167 {
6168 cap->oap->motion_type = MLINE;
6169 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
6170 clearopbeep(cap->oap);
6171 else if (cap->arg)
6172 beginline(BL_WHITE | BL_FIX);
6173 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174}
6175
6176/*
6177 * Cursor down commands.
6178 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
6179 */
6180 static void
Bram Moolenaar1b010052016-09-12 12:24:11 +02006181nv_down(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006183 if (mod_mask & MOD_MASK_SHIFT)
6184 {
6185 /* <S-Down> is page down */
6186 cap->arg = FORWARD;
6187 nv_page(cap);
6188 }
6189 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
6191 /* In a quickfix window a <CR> jumps to the error under the cursor. */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006192 if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
Bram Moolenaar28c258f2006-01-25 22:02:51 +00006193 if (curwin->w_llist_ref == NULL)
6194 do_cmdline_cmd((char_u *)".cc"); /* quickfix window */
6195 else
6196 do_cmdline_cmd((char_u *)".ll"); /* location list window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 else
6198#endif
6199 {
6200#ifdef FEAT_CMDWIN
6201 /* In the cmdline window a <CR> executes the command. */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006202 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203 cmdwin_result = CAR;
6204 else
6205#endif
6206 {
6207 cap->oap->motion_type = MLINE;
6208 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
6209 clearopbeep(cap->oap);
6210 else if (cap->arg)
6211 beginline(BL_WHITE | BL_FIX);
6212 }
6213 }
6214}
6215
6216#ifdef FEAT_SEARCHPATH
6217/*
6218 * Grab the file name under the cursor and edit it.
6219 */
6220 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006221nv_gotofile(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222{
6223 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006224 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006226 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 {
6228 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006229 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230 return;
6231 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006232#ifdef FEAT_AUTOCMD
6233 if (curbuf_locked())
6234 {
6235 clearop(cap->oap);
6236 return;
6237 }
6238#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006239
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006240 ptr = grab_file_name(cap->count1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241
6242 if (ptr != NULL)
6243 {
6244 /* do autowrite if necessary */
6245 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !P_HID(curbuf))
Bram Moolenaarcde88542015-08-11 19:14:00 +02006246 (void)autowrite(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 setpcmark();
6248 (void)do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006249 P_HID(curbuf) ? ECMD_HIDE : 0, curwin);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006250 if (cap->nchar == 'F' && lnum >= 0)
6251 {
6252 curwin->w_cursor.lnum = lnum;
6253 check_cursor_lnum();
6254 beginline(BL_SOL | BL_FIX);
6255 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006256 vim_free(ptr);
6257 }
6258 else
6259 clearop(cap->oap);
6260}
6261#endif
6262
6263/*
6264 * <End> command: to end of current line or last line.
6265 */
6266 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006267nv_end(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006269 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) /* CTRL-END = goto last line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006271 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272 nv_goto(cap);
6273 cap->count1 = 1; /* to end of current line */
6274 }
6275 nv_dollar(cap);
6276}
6277
6278/*
6279 * Handle the "$" command.
6280 */
6281 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006282nv_dollar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283{
6284 cap->oap->motion_type = MCHAR;
6285 cap->oap->inclusive = TRUE;
6286#ifdef FEAT_VIRTUALEDIT
6287 /* In virtual mode when off the edge of a line and an operator
6288 * is pending (whew!) keep the cursor where it is.
6289 * Otherwise, send it to the end of the line. */
6290 if (!virtual_active() || gchar_cursor() != NUL
6291 || cap->oap->op_type == OP_NOP)
6292#endif
6293 curwin->w_curswant = MAXCOL; /* so we stay at the end */
6294 if (cursor_down((long)(cap->count1 - 1),
6295 cap->oap->op_type == OP_NOP) == FAIL)
6296 clearopbeep(cap->oap);
6297#ifdef FEAT_FOLDING
6298 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6299 foldOpenCursor();
6300#endif
6301}
6302
6303/*
6304 * Implementation of '?' and '/' commands.
6305 * If cap->arg is TRUE don't set PC mark.
6306 */
6307 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006308nv_search(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309{
6310 oparg_T *oap = cap->oap;
Bram Moolenaardda933d2016-09-03 21:04:58 +02006311 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312
6313 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
6314 {
6315 /* Translate "g??" to "g?g?" */
6316 cap->cmdchar = 'g';
6317 cap->nchar = '?';
6318 nv_operator(cap);
6319 return;
6320 }
6321
Bram Moolenaardda933d2016-09-03 21:04:58 +02006322 /* When using 'incsearch' the cursor may be moved to set a different search
6323 * start position. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0);
6325
6326 if (cap->searchbuf == NULL)
6327 {
6328 clearop(oap);
6329 return;
6330 }
6331
Bram Moolenaar46539112015-02-17 15:43:57 +01006332 (void)normal_search(cap, cap->cmdchar, cap->searchbuf,
Bram Moolenaardda933d2016-09-03 21:04:58 +02006333 (cap->arg || !equalpos(save_cursor, curwin->w_cursor))
6334 ? 0 : SEARCH_MARK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335}
6336
6337/*
6338 * Handle "N" and "n" commands.
6339 * cap->arg is SEARCH_REV for "N", 0 for "n".
6340 */
6341 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006342nv_next(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343{
Bram Moolenaar46539112015-02-17 15:43:57 +01006344 pos_T old = curwin->w_cursor;
6345 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg);
6346
6347 if (i == 1 && equalpos(old, curwin->w_cursor))
6348 {
6349 /* Avoid getting stuck on the current cursor position, which can
6350 * happen when an offset is given and the cursor is on the last char
6351 * in the buffer: Repeat with count + 1. */
6352 cap->count1 += 1;
6353 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg);
6354 cap->count1 -= 1;
6355 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356}
6357
6358/*
6359 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
6360 * Uses only cap->count1 and cap->oap from "cap".
Bram Moolenaar46539112015-02-17 15:43:57 +01006361 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 */
Bram Moolenaar46539112015-02-17 15:43:57 +01006363 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006364normal_search(
6365 cmdarg_T *cap,
6366 int dir,
6367 char_u *pat,
6368 int opt) /* extra flags for do_search() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369{
6370 int i;
6371
6372 cap->oap->motion_type = MCHAR;
6373 cap->oap->inclusive = FALSE;
6374 cap->oap->use_reg_one = TRUE;
6375 curwin->w_set_curswant = TRUE;
6376
6377 i = do_search(cap->oap, dir, pat, cap->count1,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00006378 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379 if (i == 0)
6380 clearop(cap->oap);
6381 else
6382 {
6383 if (i == 2)
6384 cap->oap->motion_type = MLINE;
6385#ifdef FEAT_VIRTUALEDIT
6386 curwin->w_cursor.coladd = 0;
6387#endif
6388#ifdef FEAT_FOLDING
6389 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
6390 foldOpenCursor();
6391#endif
6392 }
6393
6394 /* "/$" will put the cursor after the end of the line, may need to
6395 * correct that here */
6396 check_cursor();
Bram Moolenaar46539112015-02-17 15:43:57 +01006397 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006398}
6399
6400/*
6401 * Character search commands.
6402 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
6403 * ',' and FALSE for ';'.
6404 * cap->nchar is NUL for ',' and ';' (repeat the search)
6405 */
6406 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006407nv_csearch(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408{
6409 int t_cmd;
6410
6411 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
6412 t_cmd = TRUE;
6413 else
6414 t_cmd = FALSE;
6415
6416 cap->oap->motion_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
6418 clearopbeep(cap->oap);
6419 else
6420 {
6421 curwin->w_set_curswant = TRUE;
6422#ifdef FEAT_VIRTUALEDIT
6423 /* Include a Tab for "tx" and for "dfx". */
6424 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
6425 && (t_cmd || cap->oap->op_type != OP_NOP))
6426 {
6427 colnr_T scol, ecol;
6428
6429 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
6430 curwin->w_cursor.coladd = ecol - scol;
6431 }
6432 else
6433 curwin->w_cursor.coladd = 0;
6434#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006435 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436#ifdef FEAT_FOLDING
6437 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6438 foldOpenCursor();
6439#endif
6440 }
6441}
6442
6443/*
6444 * "[" and "]" commands.
6445 * cap->arg is BACKWARD for "[" and FORWARD for "]".
6446 */
6447 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006448nv_brackets(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449{
Bram Moolenaara9d52e32010-07-31 16:44:19 +02006450 pos_T new_pos = INIT_POS_T(0, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451 pos_T prev_pos;
6452 pos_T *pos = NULL; /* init for GCC */
6453 pos_T old_pos; /* cursor position before command */
6454 int flag;
6455 long n;
6456 int findc;
6457 int c;
6458
6459 cap->oap->motion_type = MCHAR;
6460 cap->oap->inclusive = FALSE;
6461 old_pos = curwin->w_cursor;
6462#ifdef FEAT_VIRTUALEDIT
6463 curwin->w_cursor.coladd = 0; /* TODO: don't do this for an error. */
6464#endif
6465
6466#ifdef FEAT_SEARCHPATH
6467 /*
6468 * "[f" or "]f" : Edit file under the cursor (same as "gf")
6469 */
6470 if (cap->nchar == 'f')
6471 nv_gotofile(cap);
6472 else
6473#endif
6474
6475#ifdef FEAT_FIND_ID
6476 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00006477 * Find the occurrence(s) of the identifier or define under cursor
6478 * in current and included files or jump to the first occurrence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479 *
6480 * search list jump
6481 * fwd bwd fwd bwd fwd bwd
6482 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
6483 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
6484 */
6485 if (vim_strchr((char_u *)
6486#ifdef EBCDIC
6487 "iI\005dD\067",
6488#else
6489 "iI\011dD\004",
6490#endif
6491 cap->nchar) != NULL)
6492 {
6493 char_u *ptr;
6494 int len;
6495
6496 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
6497 clearop(cap->oap);
6498 else
6499 {
6500 find_pattern_in_path(ptr, 0, len, TRUE,
6501 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
6502 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
6503 cap->count1,
6504 isupper(cap->nchar) ? ACTION_SHOW_ALL :
6505 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
6506 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
6507 (linenr_T)MAXLNUM);
6508 curwin->w_set_curswant = TRUE;
6509 }
6510 }
6511 else
6512#endif
6513
6514 /*
6515 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
6516 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
6517 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
6518 * "[m" or "]m" search for prev/next start of (Java) method.
6519 * "[M" or "]M" search for prev/next end of (Java) method.
6520 */
6521 if ( (cap->cmdchar == '['
6522 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
6523 || (cap->cmdchar == ']'
6524 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
6525 {
6526 if (cap->nchar == '*')
6527 cap->nchar = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528 prev_pos.lnum = 0;
6529 if (cap->nchar == 'm' || cap->nchar == 'M')
6530 {
6531 if (cap->cmdchar == '[')
6532 findc = '{';
6533 else
6534 findc = '}';
6535 n = 9999;
6536 }
6537 else
6538 {
6539 findc = cap->nchar;
6540 n = cap->count1;
6541 }
6542 for ( ; n > 0; --n)
6543 {
6544 if ((pos = findmatchlimit(cap->oap, findc,
6545 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
6546 {
6547 if (new_pos.lnum == 0) /* nothing found */
6548 {
6549 if (cap->nchar != 'm' && cap->nchar != 'M')
6550 clearopbeep(cap->oap);
6551 }
6552 else
6553 pos = &new_pos; /* use last one found */
6554 break;
6555 }
6556 prev_pos = new_pos;
6557 curwin->w_cursor = *pos;
6558 new_pos = *pos;
6559 }
6560 curwin->w_cursor = old_pos;
6561
6562 /*
6563 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
6564 * brought us to the match for "[m" and "]M" when inside a method.
6565 * Try finding the '{' or '}' we want to be at.
6566 * Also repeat for the given count.
6567 */
6568 if (cap->nchar == 'm' || cap->nchar == 'M')
6569 {
6570 /* norm is TRUE for "]M" and "[m" */
6571 int norm = ((findc == '{') == (cap->nchar == 'm'));
6572
6573 n = cap->count1;
6574 /* found a match: we were inside a method */
6575 if (prev_pos.lnum != 0)
6576 {
6577 pos = &prev_pos;
6578 curwin->w_cursor = prev_pos;
6579 if (norm)
6580 --n;
6581 }
6582 else
6583 pos = NULL;
6584 while (n > 0)
6585 {
6586 for (;;)
6587 {
6588 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
6589 {
6590 /* if not found anything, that's an error */
6591 if (pos == NULL)
6592 clearopbeep(cap->oap);
6593 n = 0;
6594 break;
6595 }
6596 c = gchar_cursor();
6597 if (c == '{' || c == '}')
6598 {
6599 /* Must have found end/start of class: use it.
6600 * Or found the place to be at. */
6601 if ((c == findc && norm) || (n == 1 && !norm))
6602 {
6603 new_pos = curwin->w_cursor;
6604 pos = &new_pos;
6605 n = 0;
6606 }
6607 /* if no match found at all, we started outside of the
6608 * class and we're inside now. Just go on. */
6609 else if (new_pos.lnum == 0)
6610 {
6611 new_pos = curwin->w_cursor;
6612 pos = &new_pos;
6613 }
6614 /* found start/end of other method: go to match */
6615 else if ((pos = findmatchlimit(cap->oap, findc,
6616 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
6617 0)) == NULL)
6618 n = 0;
6619 else
6620 curwin->w_cursor = *pos;
6621 break;
6622 }
6623 }
6624 --n;
6625 }
6626 curwin->w_cursor = old_pos;
6627 if (pos == NULL && new_pos.lnum != 0)
6628 clearopbeep(cap->oap);
6629 }
6630 if (pos != NULL)
6631 {
6632 setpcmark();
6633 curwin->w_cursor = *pos;
6634 curwin->w_set_curswant = TRUE;
6635#ifdef FEAT_FOLDING
6636 if ((fdo_flags & FDO_BLOCK) && KeyTyped
6637 && cap->oap->op_type == OP_NOP)
6638 foldOpenCursor();
6639#endif
6640 }
6641 }
6642
6643 /*
6644 * "[[", "[]", "]]" and "][": move to start or end of function
6645 */
6646 else if (cap->nchar == '[' || cap->nchar == ']')
6647 {
6648 if (cap->nchar == cap->cmdchar) /* "]]" or "[[" */
6649 flag = '{';
6650 else
6651 flag = '}'; /* "][" or "[]" */
6652
6653 curwin->w_set_curswant = TRUE;
6654 /*
6655 * Imitate strange Vi behaviour: When using "]]" with an operator
6656 * we also stop at '}'.
6657 */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00006658 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006659 (cap->oap->op_type != OP_NOP
6660 && cap->arg == FORWARD && flag == '{')))
6661 clearopbeep(cap->oap);
6662 else
6663 {
6664 if (cap->oap->op_type == OP_NOP)
6665 beginline(BL_WHITE | BL_FIX);
6666#ifdef FEAT_FOLDING
6667 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6668 foldOpenCursor();
6669#endif
6670 }
6671 }
6672
6673 /*
6674 * "[p", "[P", "]P" and "]p": put with indent adjustment
6675 */
6676 else if (cap->nchar == 'p' || cap->nchar == 'P')
6677 {
Bram Moolenaar78f6f7e2007-07-10 12:03:33 +00006678 if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006679 {
Bram Moolenaar27bed202014-03-12 17:42:04 +01006680 int dir = (cap->cmdchar == ']' && cap->nchar == 'p')
6681 ? FORWARD : BACKWARD;
6682 int regname = cap->oap->regname;
Bram Moolenaar27bed202014-03-12 17:42:04 +01006683 int was_visual = VIsual_active;
6684 int line_count = curbuf->b_ml.ml_line_count;
6685 pos_T start, end;
6686
6687 if (VIsual_active)
6688 {
6689 start = ltoreq(VIsual, curwin->w_cursor)
6690 ? VIsual : curwin->w_cursor;
6691 end = equalpos(start,VIsual) ? curwin->w_cursor : VIsual;
6692 curwin->w_cursor = (dir == BACKWARD ? start : end);
6693 }
Bram Moolenaar27bed202014-03-12 17:42:04 +01006694# ifdef FEAT_CLIPBOARD
6695 adjust_clip_reg(&regname);
6696# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697 prep_redo_cmd(cap);
Bram Moolenaar27bed202014-03-12 17:42:04 +01006698
6699 do_put(regname, dir, cap->count1, PUT_FIXINDENT);
Bram Moolenaar27bed202014-03-12 17:42:04 +01006700 if (was_visual)
6701 {
6702 VIsual = start;
6703 curwin->w_cursor = end;
6704 if (dir == BACKWARD)
6705 {
6706 /* adjust lines */
6707 VIsual.lnum += curbuf->b_ml.ml_line_count - line_count;
6708 curwin->w_cursor.lnum +=
6709 curbuf->b_ml.ml_line_count - line_count;
6710 }
6711
6712 VIsual_active = TRUE;
6713 if (VIsual_mode == 'V')
6714 {
6715 /* delete visually selected lines */
6716 cap->cmdchar = 'd';
6717 cap->nchar = NUL;
6718 cap->oap->regname = regname;
6719 nv_operator(cap);
6720 do_pending_operator(cap, 0, FALSE);
6721 }
6722 if (VIsual_active)
6723 {
6724 end_visual_mode();
6725 redraw_later(SOME_VALID);
6726 }
6727 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006728 }
6729 }
6730
6731 /*
6732 * "['", "[`", "]'" and "]`": jump to next mark
6733 */
6734 else if (cap->nchar == '\'' || cap->nchar == '`')
6735 {
6736 pos = &curwin->w_cursor;
6737 for (n = cap->count1; n > 0; --n)
6738 {
6739 prev_pos = *pos;
6740 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
6741 cap->nchar == '\'');
6742 if (pos == NULL)
6743 break;
6744 }
6745 if (pos == NULL)
6746 pos = &prev_pos;
6747 nv_cursormark(cap, cap->nchar == '\'', pos);
6748 }
6749
6750#ifdef FEAT_MOUSE
6751 /*
6752 * [ or ] followed by a middle mouse click: put selected text with
6753 * indent adjustment. Any other button just does as usual.
6754 */
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02006755 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006756 {
6757 (void)do_mouse(cap->oap, cap->nchar,
6758 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
6759 cap->count1, PUT_FIXINDENT);
6760 }
6761#endif /* FEAT_MOUSE */
6762
6763#ifdef FEAT_FOLDING
6764 /*
6765 * "[z" and "]z": move to start or end of open fold.
6766 */
6767 else if (cap->nchar == 'z')
6768 {
6769 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6770 cap->count1) == FAIL)
6771 clearopbeep(cap->oap);
6772 }
6773#endif
6774
6775#ifdef FEAT_DIFF
6776 /*
6777 * "[c" and "]c": move to next or previous diff-change.
6778 */
6779 else if (cap->nchar == 'c')
6780 {
6781 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
6782 cap->count1) == FAIL)
6783 clearopbeep(cap->oap);
6784 }
6785#endif
6786
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00006787#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006788 /*
6789 * "[s", "[S", "]s" and "]S": move to next spell error.
6790 */
6791 else if (cap->nchar == 's' || cap->nchar == 'S')
6792 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00006793 setpcmark();
6794 for (n = 0; n < cap->count1; ++n)
Bram Moolenaar95529562005-08-25 21:21:38 +00006795 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6796 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00006797 {
6798 clearopbeep(cap->oap);
6799 break;
6800 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006801# ifdef FEAT_FOLDING
6802 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
6803 foldOpenCursor();
6804# endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006805 }
6806#endif
6807
Bram Moolenaar071d4272004-06-13 20:20:40 +00006808 /* Not a valid cap->nchar. */
6809 else
6810 clearopbeep(cap->oap);
6811}
6812
6813/*
6814 * Handle Normal mode "%" command.
6815 */
6816 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006817nv_percent(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818{
6819 pos_T *pos;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02006820#if defined(FEAT_FOLDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821 linenr_T lnum = curwin->w_cursor.lnum;
6822#endif
6823
6824 cap->oap->inclusive = TRUE;
6825 if (cap->count0) /* {cnt}% : goto {cnt} percentage in file */
6826 {
6827 if (cap->count0 > 100)
6828 clearopbeep(cap->oap);
6829 else
6830 {
6831 cap->oap->motion_type = MLINE;
6832 setpcmark();
6833 /* Round up, so CTRL-G will give same value. Watch out for a
6834 * large line count, the line number must not go negative! */
6835 if (curbuf->b_ml.ml_line_count > 1000000)
6836 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
6837 / 100L * cap->count0;
6838 else
6839 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
6840 cap->count0 + 99L) / 100L;
6841 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6842 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6843 beginline(BL_SOL | BL_FIX);
6844 }
6845 }
6846 else /* "%" : go to matching paren */
6847 {
6848 cap->oap->motion_type = MCHAR;
6849 cap->oap->use_reg_one = TRUE;
6850 if ((pos = findmatch(cap->oap, NUL)) == NULL)
6851 clearopbeep(cap->oap);
6852 else
6853 {
6854 setpcmark();
6855 curwin->w_cursor = *pos;
6856 curwin->w_set_curswant = TRUE;
6857#ifdef FEAT_VIRTUALEDIT
6858 curwin->w_cursor.coladd = 0;
6859#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006860 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861 }
6862 }
6863#ifdef FEAT_FOLDING
6864 if (cap->oap->op_type == OP_NOP
6865 && lnum != curwin->w_cursor.lnum
6866 && (fdo_flags & FDO_PERCENT)
6867 && KeyTyped)
6868 foldOpenCursor();
6869#endif
6870}
6871
6872/*
6873 * Handle "(" and ")" commands.
6874 * cap->arg is BACKWARD for "(" and FORWARD for ")".
6875 */
6876 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006877nv_brace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006878{
6879 cap->oap->motion_type = MCHAR;
6880 cap->oap->use_reg_one = TRUE;
Bram Moolenaarebefac62005-12-28 22:39:57 +00006881 /* The motion used to be inclusive for "(", but that is not what Vi does. */
6882 cap->oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883 curwin->w_set_curswant = TRUE;
6884
6885 if (findsent(cap->arg, cap->count1) == FAIL)
6886 clearopbeep(cap->oap);
6887 else
6888 {
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006889 /* Don't leave the cursor on the NUL past end of line. */
6890 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891#ifdef FEAT_VIRTUALEDIT
6892 curwin->w_cursor.coladd = 0;
6893#endif
6894#ifdef FEAT_FOLDING
6895 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6896 foldOpenCursor();
6897#endif
6898 }
6899}
6900
6901/*
6902 * "m" command: Mark a position.
6903 */
6904 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006905nv_mark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006906{
6907 if (!checkclearop(cap->oap))
6908 {
6909 if (setmark(cap->nchar) == FAIL)
6910 clearopbeep(cap->oap);
6911 }
6912}
6913
6914/*
6915 * "{" and "}" commands.
6916 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
6917 */
6918 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006919nv_findpar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006920{
6921 cap->oap->motion_type = MCHAR;
6922 cap->oap->inclusive = FALSE;
6923 cap->oap->use_reg_one = TRUE;
6924 curwin->w_set_curswant = TRUE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00006925 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926 clearopbeep(cap->oap);
6927 else
6928 {
6929#ifdef FEAT_VIRTUALEDIT
6930 curwin->w_cursor.coladd = 0;
6931#endif
6932#ifdef FEAT_FOLDING
6933 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6934 foldOpenCursor();
6935#endif
6936 }
6937}
6938
6939/*
6940 * "u" command: Undo or make lower case.
6941 */
6942 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006943nv_undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006944{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006945 if (cap->oap->op_type == OP_LOWER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006946 {
6947 /* translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" */
6948 cap->cmdchar = 'g';
6949 cap->nchar = 'u';
6950 nv_operator(cap);
6951 }
6952 else
6953 nv_kundo(cap);
6954}
6955
6956/*
6957 * <Undo> command.
6958 */
6959 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006960nv_kundo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006961{
6962 if (!checkclearopq(cap->oap))
6963 {
6964 u_undo((int)cap->count1);
6965 curwin->w_set_curswant = TRUE;
6966 }
6967}
6968
6969/*
6970 * Handle the "r" command.
6971 */
6972 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006973nv_replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974{
6975 char_u *ptr;
6976 int had_ctrl_v;
6977 long n;
6978
6979 if (checkclearop(cap->oap))
6980 return;
6981
6982 /* get another character */
6983 if (cap->nchar == Ctrl_V)
6984 {
6985 had_ctrl_v = Ctrl_V;
6986 cap->nchar = get_literal();
6987 /* Don't redo a multibyte character with CTRL-V. */
6988 if (cap->nchar > DEL)
6989 had_ctrl_v = NUL;
6990 }
6991 else
6992 had_ctrl_v = NUL;
6993
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00006994 /* Abort if the character is a special key. */
6995 if (IS_SPECIAL(cap->nchar))
6996 {
6997 clearopbeep(cap->oap);
6998 return;
6999 }
7000
Bram Moolenaar071d4272004-06-13 20:20:40 +00007001 /* Visual mode "r" */
7002 if (VIsual_active)
7003 {
Bram Moolenaar57fb0da2009-02-04 10:46:25 +00007004 if (got_int)
7005 reset_VIsual();
Bram Moolenaard9820532013-11-04 01:41:17 +01007006 if (had_ctrl_v)
7007 {
7008 if (cap->nchar == '\r')
7009 cap->nchar = -1;
7010 else if (cap->nchar == '\n')
7011 cap->nchar = -2;
7012 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013 nv_operator(cap);
7014 return;
7015 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016
7017#ifdef FEAT_VIRTUALEDIT
7018 /* Break tabs, etc. */
7019 if (virtual_active())
7020 {
7021 if (u_save_cursor() == FAIL)
7022 return;
7023 if (gchar_cursor() == NUL)
7024 {
7025 /* Add extra space and put the cursor on the first one. */
7026 coladvance_force((colnr_T)(getviscol() + cap->count1));
7027 curwin->w_cursor.col -= cap->count1;
7028 }
7029 else if (gchar_cursor() == TAB)
7030 coladvance_force(getviscol());
7031 }
7032#endif
7033
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00007034 /* Abort if not enough characters to replace. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035 ptr = ml_get_cursor();
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00007036 if (STRLEN(ptr) < (unsigned)cap->count1
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037#ifdef FEAT_MBYTE
7038 || (has_mbyte && mb_charlen(ptr) < cap->count1)
7039#endif
7040 )
7041 {
7042 clearopbeep(cap->oap);
7043 return;
7044 }
7045
7046 /*
7047 * Replacing with a TAB is done by edit() when it is complicated because
7048 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
7049 * Other characters are done below to avoid problems with things like
7050 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
7051 */
7052 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
7053 {
7054 stuffnumReadbuff(cap->count1);
7055 stuffcharReadbuff('R');
7056 stuffcharReadbuff('\t');
7057 stuffcharReadbuff(ESC);
7058 return;
7059 }
7060
7061 /* save line for undo */
7062 if (u_save_cursor() == FAIL)
7063 return;
7064
7065 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
7066 {
7067 /*
7068 * Replace character(s) by a single newline.
7069 * Strange vi behaviour: Only one newline is inserted.
7070 * Delete the characters here.
7071 * Insert the newline with an insert command, takes care of
7072 * autoindent. The insert command depends on being on the last
7073 * character of a line or not.
7074 */
7075#ifdef FEAT_MBYTE
7076 (void)del_chars(cap->count1, FALSE); /* delete the characters */
7077#else
Bram Moolenaarda1b1a72005-12-18 21:59:16 +00007078 (void)del_bytes(cap->count1, FALSE, FALSE); /* delete the characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007079#endif
7080 stuffcharReadbuff('\r');
7081 stuffcharReadbuff(ESC);
7082
7083 /* Give 'r' to edit(), to get the redo command right. */
7084 invoke_edit(cap, TRUE, 'r', FALSE);
7085 }
7086 else
7087 {
7088 prep_redo(cap->oap->regname, cap->count1,
7089 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
7090
7091 curbuf->b_op_start = curwin->w_cursor;
7092#ifdef FEAT_MBYTE
7093 if (has_mbyte)
7094 {
7095 int old_State = State;
7096
7097 if (cap->ncharC1 != 0)
7098 AppendCharToRedobuff(cap->ncharC1);
7099 if (cap->ncharC2 != 0)
7100 AppendCharToRedobuff(cap->ncharC2);
7101
7102 /* This is slow, but it handles replacing a single-byte with a
7103 * multi-byte and the other way around. Also handles adding
7104 * composing characters for utf-8. */
7105 for (n = cap->count1; n > 0; --n)
7106 {
7107 State = REPLACE;
Bram Moolenaar8320da42012-04-30 18:18:47 +02007108 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
7109 {
7110 int c = ins_copychar(curwin->w_cursor.lnum
7111 + (cap->nchar == Ctrl_Y ? -1 : 1));
7112 if (c != NUL)
7113 ins_char(c);
7114 else
7115 /* will be decremented further down */
7116 ++curwin->w_cursor.col;
7117 }
7118 else
7119 ins_char(cap->nchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120 State = old_State;
7121 if (cap->ncharC1 != 0)
7122 ins_char(cap->ncharC1);
7123 if (cap->ncharC2 != 0)
7124 ins_char(cap->ncharC2);
7125 }
7126 }
7127 else
7128#endif
7129 {
7130 /*
7131 * Replace the characters within one line.
7132 */
7133 for (n = cap->count1; n > 0; --n)
7134 {
7135 /*
7136 * Get ptr again, because u_save and/or showmatch() will have
7137 * released the line. At the same time we let know that the
7138 * line will be changed.
7139 */
7140 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02007141 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
7142 {
7143 int c = ins_copychar(curwin->w_cursor.lnum
7144 + (cap->nchar == Ctrl_Y ? -1 : 1));
7145 if (c != NUL)
7146 ptr[curwin->w_cursor.col] = c;
7147 }
7148 else
7149 ptr[curwin->w_cursor.col] = cap->nchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150 if (p_sm && msg_silent == 0)
7151 showmatch(cap->nchar);
7152 ++curwin->w_cursor.col;
7153 }
7154#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007155 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007157 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007158
Bram Moolenaar009b2592004-10-24 19:18:58 +00007159 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007160 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00007162 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007163 }
7164#endif
7165
7166 /* mark the buffer as changed and prepare for displaying */
7167 changed_bytes(curwin->w_cursor.lnum,
7168 (colnr_T)(curwin->w_cursor.col - cap->count1));
7169 }
7170 --curwin->w_cursor.col; /* cursor on the last replaced char */
7171#ifdef FEAT_MBYTE
7172 /* if the character on the left of the current cursor is a multi-byte
7173 * character, move two characters left */
7174 if (has_mbyte)
7175 mb_adjust_cursor();
7176#endif
7177 curbuf->b_op_end = curwin->w_cursor;
7178 curwin->w_set_curswant = TRUE;
7179 set_last_insert(cap->nchar);
7180 }
7181}
7182
Bram Moolenaar071d4272004-06-13 20:20:40 +00007183/*
7184 * 'o': Exchange start and end of Visual area.
7185 * 'O': same, but in block mode exchange left and right corners.
7186 */
7187 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007188v_swap_corners(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007189{
7190 pos_T old_cursor;
7191 colnr_T left, right;
7192
7193 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
7194 {
7195 old_cursor = curwin->w_cursor;
7196 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
7197 curwin->w_cursor.lnum = VIsual.lnum;
7198 coladvance(left);
7199 VIsual = curwin->w_cursor;
7200
7201 curwin->w_cursor.lnum = old_cursor.lnum;
7202 curwin->w_curswant = right;
7203 /* 'selection "exclusive" and cursor at right-bottom corner: move it
7204 * right one column */
7205 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
7206 ++curwin->w_curswant;
7207 coladvance(curwin->w_curswant);
7208 if (curwin->w_cursor.col == old_cursor.col
7209#ifdef FEAT_VIRTUALEDIT
7210 && (!virtual_active()
7211 || curwin->w_cursor.coladd == old_cursor.coladd)
7212#endif
7213 )
7214 {
7215 curwin->w_cursor.lnum = VIsual.lnum;
7216 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
7217 ++right;
7218 coladvance(right);
7219 VIsual = curwin->w_cursor;
7220
7221 curwin->w_cursor.lnum = old_cursor.lnum;
7222 coladvance(left);
7223 curwin->w_curswant = left;
7224 }
7225 }
7226 else
7227 {
7228 old_cursor = curwin->w_cursor;
7229 curwin->w_cursor = VIsual;
7230 VIsual = old_cursor;
7231 curwin->w_set_curswant = TRUE;
7232 }
7233}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234
7235/*
7236 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
7237 */
7238 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007239nv_Replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007241 if (VIsual_active) /* "R" is replace lines */
7242 {
7243 cap->cmdchar = 'c';
7244 cap->nchar = NUL;
Bram Moolenaara390bb62013-03-13 19:02:41 +01007245 VIsual_mode_orig = VIsual_mode; /* remember original area for gv */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007246 VIsual_mode = 'V';
7247 nv_operator(cap);
7248 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007249 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250 {
7251 if (!curbuf->b_p_ma)
7252 EMSG(_(e_modifiable));
7253 else
7254 {
7255#ifdef FEAT_VIRTUALEDIT
7256 if (virtual_active())
7257 coladvance(getviscol());
7258#endif
7259 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
7260 }
7261 }
7262}
7263
7264#ifdef FEAT_VREPLACE
7265/*
7266 * "gr".
7267 */
7268 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007269nv_vreplace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007270{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007271 if (VIsual_active)
7272 {
7273 cap->cmdchar = 'r';
7274 cap->nchar = cap->extra_char;
7275 nv_replace(cap); /* Do same as "r" in Visual mode for now */
7276 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007277 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007278 {
7279 if (!curbuf->b_p_ma)
7280 EMSG(_(e_modifiable));
7281 else
7282 {
7283 if (cap->extra_char == Ctrl_V) /* get another character */
7284 cap->extra_char = get_literal();
7285 stuffcharReadbuff(cap->extra_char);
7286 stuffcharReadbuff(ESC);
7287# ifdef FEAT_VIRTUALEDIT
7288 if (virtual_active())
7289 coladvance(getviscol());
7290# endif
7291 invoke_edit(cap, TRUE, 'v', FALSE);
7292 }
7293 }
7294}
7295#endif
7296
7297/*
7298 * Swap case for "~" command, when it does not work like an operator.
7299 */
7300 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007301n_swapchar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007302{
7303 long n;
7304 pos_T startpos;
7305 int did_change = 0;
7306#ifdef FEAT_NETBEANS_INTG
7307 pos_T pos;
7308 char_u *ptr;
7309 int count;
7310#endif
7311
7312 if (checkclearopq(cap->oap))
7313 return;
7314
7315 if (lineempty(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
7316 {
7317 clearopbeep(cap->oap);
7318 return;
7319 }
7320
7321 prep_redo_cmd(cap);
7322
7323 if (u_save_cursor() == FAIL)
7324 return;
7325
7326 startpos = curwin->w_cursor;
7327#ifdef FEAT_NETBEANS_INTG
7328 pos = startpos;
7329#endif
7330 for (n = cap->count1; n > 0; --n)
7331 {
7332 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
7333 inc_cursor();
7334 if (gchar_cursor() == NUL)
7335 {
7336 if (vim_strchr(p_ww, '~') != NULL
7337 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
7338 {
7339#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007340 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341 {
7342 if (did_change)
7343 {
7344 ptr = ml_get(pos.lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007345 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00007346 netbeans_removed(curbuf, pos.lnum, pos.col,
7347 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00007349 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350 }
7351 pos.col = 0;
7352 pos.lnum++;
7353 }
7354#endif
7355 ++curwin->w_cursor.lnum;
7356 curwin->w_cursor.col = 0;
7357 if (n > 1)
7358 {
7359 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
7360 break;
7361 u_clearline();
7362 }
7363 }
7364 else
7365 break;
7366 }
7367 }
7368#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007369 if (did_change && netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007370 {
7371 ptr = ml_get(pos.lnum);
7372 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00007373 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
7374 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007375 }
7376#endif
7377
7378
7379 check_cursor();
7380 curwin->w_set_curswant = TRUE;
7381 if (did_change)
7382 {
7383 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
7384 0L);
7385 curbuf->b_op_start = startpos;
7386 curbuf->b_op_end = curwin->w_cursor;
7387 if (curbuf->b_op_end.col > 0)
7388 --curbuf->b_op_end.col;
7389 }
7390}
7391
7392/*
7393 * Move cursor to mark.
7394 */
7395 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007396nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007397{
7398 if (check_mark(pos) == FAIL)
7399 clearop(cap->oap);
7400 else
7401 {
7402 if (cap->cmdchar == '\''
7403 || cap->cmdchar == '`'
7404 || cap->cmdchar == '['
7405 || cap->cmdchar == ']')
7406 setpcmark();
7407 curwin->w_cursor = *pos;
7408 if (flag)
7409 beginline(BL_WHITE | BL_FIX);
7410 else
7411 check_cursor();
7412 }
7413 cap->oap->motion_type = flag ? MLINE : MCHAR;
7414 if (cap->cmdchar == '`')
7415 cap->oap->use_reg_one = TRUE;
7416 cap->oap->inclusive = FALSE; /* ignored if not MCHAR */
7417 curwin->w_set_curswant = TRUE;
7418}
7419
Bram Moolenaar071d4272004-06-13 20:20:40 +00007420/*
7421 * Handle commands that are operators in Visual mode.
7422 */
7423 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007424v_visop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007425{
7426 static char_u trans[] = "YyDdCcxdXdAAIIrr";
7427
7428 /* Uppercase means linewise, except in block mode, then "D" deletes till
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02007429 * the end of the line, and "C" replaces till EOL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007430 if (isupper(cap->cmdchar))
7431 {
7432 if (VIsual_mode != Ctrl_V)
Bram Moolenaara390bb62013-03-13 19:02:41 +01007433 {
7434 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007435 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01007436 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007437 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
7438 curwin->w_curswant = MAXCOL;
7439 }
7440 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
7441 nv_operator(cap);
7442}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007443
7444/*
7445 * "s" and "S" commands.
7446 */
7447 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007448nv_subst(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007449{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450 if (VIsual_active) /* "vs" and "vS" are the same as "vc" */
7451 {
7452 if (cap->cmdchar == 'S')
Bram Moolenaara390bb62013-03-13 19:02:41 +01007453 {
7454 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007455 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01007456 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007457 cap->cmdchar = 'c';
7458 nv_operator(cap);
7459 }
7460 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007461 nv_optrans(cap);
7462}
7463
7464/*
7465 * Abbreviated commands.
7466 */
7467 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007468nv_abbrev(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007469{
7470 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
7471 cap->cmdchar = 'x'; /* DEL key behaves like 'x' */
7472
Bram Moolenaar071d4272004-06-13 20:20:40 +00007473 /* in Visual mode these commands are operators */
7474 if (VIsual_active)
7475 v_visop(cap);
7476 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007477 nv_optrans(cap);
7478}
7479
7480/*
7481 * Translate a command into another command.
7482 */
7483 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007484nv_optrans(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485{
7486 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
7487 (char_u *)"d$", (char_u *)"c$",
7488 (char_u *)"cl", (char_u *)"cc",
7489 (char_u *)"yy", (char_u *)":s\r"};
7490 static char_u *str = (char_u *)"xXDCsSY&";
7491
7492 if (!checkclearopq(cap->oap))
7493 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007494 /* In Vi "2D" doesn't delete the next line. Can't translate it
7495 * either, because "2." should also not use the count. */
7496 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
7497 {
7498 cap->oap->start = curwin->w_cursor;
7499 cap->oap->op_type = OP_DELETE;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00007500#ifdef FEAT_EVAL
7501 set_op_var(OP_DELETE);
7502#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007503 cap->count1 = 1;
7504 nv_dollar(cap);
7505 finish_op = TRUE;
7506 ResetRedobuff();
7507 AppendCharToRedobuff('D');
7508 }
7509 else
7510 {
7511 if (cap->count0)
7512 stuffnumReadbuff(cap->count0);
7513 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
7514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007515 }
7516 cap->opcount = 0;
7517}
7518
7519/*
7520 * "'" and "`" commands. Also for "g'" and "g`".
7521 * cap->arg is TRUE for "'" and "g'".
7522 */
7523 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007524nv_gomark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007525{
7526 pos_T *pos;
7527 int c;
7528#ifdef FEAT_FOLDING
Bram Moolenaar8754deb2013-01-17 13:24:08 +01007529 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007530 int old_KeyTyped = KeyTyped; /* getting file may reset it */
7531#endif
7532
7533 if (cap->cmdchar == 'g')
7534 c = cap->extra_char;
7535 else
7536 c = cap->nchar;
7537 pos = getmark(c, (cap->oap->op_type == OP_NOP));
7538 if (pos == (pos_T *)-1) /* jumped to other file */
7539 {
7540 if (cap->arg)
7541 {
7542 check_cursor_lnum();
7543 beginline(BL_WHITE | BL_FIX);
7544 }
7545 else
7546 check_cursor();
7547 }
7548 else
7549 nv_cursormark(cap, cap->arg, pos);
7550
7551#ifdef FEAT_VIRTUALEDIT
7552 /* May need to clear the coladd that a mark includes. */
7553 if (!virtual_active())
7554 curwin->w_cursor.coladd = 0;
7555#endif
7556#ifdef FEAT_FOLDING
7557 if (cap->oap->op_type == OP_NOP
Bram Moolenaar15364d72013-01-24 21:00:20 +01007558 && pos != NULL
Bram Moolenaar8754deb2013-01-17 13:24:08 +01007559 && (pos == (pos_T *)-1 || !equalpos(old_cursor, *pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560 && (fdo_flags & FDO_MARK)
7561 && old_KeyTyped)
7562 foldOpenCursor();
7563#endif
7564}
7565
7566/*
7567 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
7568 */
7569 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007570nv_pcmark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007571{
7572#ifdef FEAT_JUMPLIST
7573 pos_T *pos;
7574# ifdef FEAT_FOLDING
7575 linenr_T lnum = curwin->w_cursor.lnum;
7576 int old_KeyTyped = KeyTyped; /* getting file may reset it */
7577# endif
7578
7579 if (!checkclearopq(cap->oap))
7580 {
7581 if (cap->cmdchar == 'g')
7582 pos = movechangelist((int)cap->count1);
7583 else
7584 pos = movemark((int)cap->count1);
7585 if (pos == (pos_T *)-1) /* jump to other file */
7586 {
7587 curwin->w_set_curswant = TRUE;
7588 check_cursor();
7589 }
7590 else if (pos != NULL) /* can jump */
7591 nv_cursormark(cap, FALSE, pos);
7592 else if (cap->cmdchar == 'g')
7593 {
7594 if (curbuf->b_changelistlen == 0)
7595 EMSG(_("E664: changelist is empty"));
7596 else if (cap->count1 < 0)
7597 EMSG(_("E662: At start of changelist"));
7598 else
7599 EMSG(_("E663: At end of changelist"));
7600 }
7601 else
7602 clearopbeep(cap->oap);
7603# ifdef FEAT_FOLDING
7604 if (cap->oap->op_type == OP_NOP
7605 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
7606 && (fdo_flags & FDO_MARK)
7607 && old_KeyTyped)
7608 foldOpenCursor();
7609# endif
7610 }
7611#else
7612 clearopbeep(cap->oap);
7613#endif
7614}
7615
7616/*
7617 * Handle '"' command.
7618 */
7619 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007620nv_regname(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007621{
7622 if (checkclearop(cap->oap))
7623 return;
7624#ifdef FEAT_EVAL
7625 if (cap->nchar == '=')
7626 cap->nchar = get_expr_register();
7627#endif
7628 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
7629 {
7630 cap->oap->regname = cap->nchar;
7631 cap->opcount = cap->count0; /* remember count before '"' */
7632#ifdef FEAT_EVAL
7633 set_reg_var(cap->oap->regname);
7634#endif
7635 }
7636 else
7637 clearopbeep(cap->oap);
7638}
7639
Bram Moolenaar071d4272004-06-13 20:20:40 +00007640/*
7641 * Handle "v", "V" and "CTRL-V" commands.
7642 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
7643 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00007644 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007645 */
7646 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007647nv_visual(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007648{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007649 if (cap->cmdchar == Ctrl_Q)
7650 cap->cmdchar = Ctrl_V;
7651
Bram Moolenaar071d4272004-06-13 20:20:40 +00007652 /* 'v', 'V' and CTRL-V can be used while an operator is pending to make it
7653 * characterwise, linewise, or blockwise. */
7654 if (cap->oap->op_type != OP_NOP)
7655 {
7656 cap->oap->motion_force = cap->cmdchar;
7657 finish_op = FALSE; /* operator doesn't finish now but later */
7658 return;
7659 }
7660
7661 VIsual_select = cap->arg;
7662 if (VIsual_active) /* change Visual mode */
7663 {
7664 if (VIsual_mode == cap->cmdchar) /* stop visual mode */
7665 end_visual_mode();
7666 else /* toggle char/block mode */
7667 { /* or char/line mode */
7668 VIsual_mode = cap->cmdchar;
7669 showmode();
7670 }
7671 redraw_curbuf_later(INVERTED); /* update the inversion */
7672 }
7673 else /* start Visual mode */
7674 {
7675 check_visual_highlight();
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02007676 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007677 {
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02007678 /* use previously selected part */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007679 VIsual = curwin->w_cursor;
7680
7681 VIsual_active = TRUE;
7682 VIsual_reselect = TRUE;
7683 if (!cap->arg)
7684 /* start Select mode when 'selectmode' contains "cmd" */
7685 may_start_select('c');
7686#ifdef FEAT_MOUSE
7687 setmouse();
7688#endif
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 /*
7692 * For V and ^V, we multiply the number of lines even if there
7693 * was only one -- webb
7694 */
7695 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
7696 {
7697 curwin->w_cursor.lnum +=
7698 resel_VIsual_line_count * cap->count0 - 1;
7699 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7700 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7701 }
7702 VIsual_mode = resel_VIsual_mode;
7703 if (VIsual_mode == 'v')
7704 {
7705 if (resel_VIsual_line_count <= 1)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007706 {
7707 validate_virtcol();
7708 curwin->w_curswant = curwin->w_virtcol
7709 + resel_VIsual_vcol * cap->count0 - 1;
7710 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007711 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007712 curwin->w_curswant = resel_VIsual_vcol;
7713 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007714 }
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007715 if (resel_VIsual_vcol == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007716 {
7717 curwin->w_curswant = MAXCOL;
7718 coladvance((colnr_T)MAXCOL);
7719 }
7720 else if (VIsual_mode == Ctrl_V)
7721 {
7722 validate_virtcol();
7723 curwin->w_curswant = curwin->w_virtcol
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02007724 + resel_VIsual_vcol * cap->count0 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007725 coladvance(curwin->w_curswant);
7726 }
7727 else
7728 curwin->w_set_curswant = TRUE;
7729 redraw_curbuf_later(INVERTED); /* show the inversion */
7730 }
7731 else
7732 {
7733 if (!cap->arg)
7734 /* start Select mode when 'selectmode' contains "cmd" */
7735 may_start_select('c');
7736 n_start_visual_mode(cap->cmdchar);
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02007737 if (VIsual_mode != 'V' && *p_sel == 'e')
7738 ++cap->count1; /* include one more char */
7739 if (cap->count0 > 0 && --cap->count1 > 0)
7740 {
7741 /* With a count select that many characters or lines. */
7742 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
7743 nv_right(cap);
7744 else if (VIsual_mode == 'V')
7745 nv_down(cap);
7746 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007747 }
7748 }
7749}
7750
7751/*
7752 * Start selection for Shift-movement keys.
7753 */
7754 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007755start_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007756{
7757 /* if 'selectmode' contains "key", start Select mode */
7758 may_start_select('k');
7759 n_start_visual_mode('v');
7760}
7761
7762/*
7763 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
7764 */
7765 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007766may_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007767{
7768 VIsual_select = (stuff_empty() && typebuf_typed()
7769 && (vim_strchr(p_slm, c) != NULL));
7770}
7771
7772/*
7773 * Start Visual mode "c".
7774 * Should set VIsual_select before calling this.
7775 */
7776 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007777n_start_visual_mode(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007778{
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007779#ifdef FEAT_CONCEAL
7780 /* Check for redraw before changing the state. */
Bram Moolenaar8e469272010-07-28 19:38:16 +02007781 conceal_check_cursur_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007782#endif
7783
Bram Moolenaar071d4272004-06-13 20:20:40 +00007784 VIsual_mode = c;
7785 VIsual_active = TRUE;
7786 VIsual_reselect = TRUE;
7787#ifdef FEAT_VIRTUALEDIT
7788 /* Corner case: the 0 position in a tab may change when going into
7789 * virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting.
7790 */
7791 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB)
Bram Moolenaar2dac2132012-08-15 13:31:00 +02007792 {
7793 validate_virtcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007794 coladvance(curwin->w_virtcol);
Bram Moolenaar2dac2132012-08-15 13:31:00 +02007795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007796#endif
7797 VIsual = curwin->w_cursor;
7798
7799#ifdef FEAT_FOLDING
7800 foldAdjustVisual();
7801#endif
7802
7803#ifdef FEAT_MOUSE
7804 setmouse();
7805#endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007806#ifdef FEAT_CONCEAL
7807 /* Check for redraw after changing the state. */
Bram Moolenaar8e469272010-07-28 19:38:16 +02007808 conceal_check_cursur_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02007809#endif
7810
Bram Moolenaar09df3122006-01-23 22:23:09 +00007811 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007812 redraw_cmdline = TRUE; /* show visual mode later */
7813#ifdef FEAT_CLIPBOARD
7814 /* Make sure the clipboard gets updated. Needed because start and
7815 * end may still be the same, and the selection needs to be owned */
7816 clip_star.vmode = NUL;
7817#endif
7818
7819 /* Only need to redraw this line, unless still need to redraw an old
7820 * Visual area (when 'lazyredraw' is set). */
7821 if (curwin->w_redr_type < INVERTED)
7822 {
7823 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
7824 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
7825 }
7826}
7827
Bram Moolenaar071d4272004-06-13 20:20:40 +00007828
7829/*
7830 * CTRL-W: Window commands
7831 */
7832 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007833nv_window(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007834{
7835#ifdef FEAT_WINDOWS
7836 if (!checkclearop(cap->oap))
7837 do_window(cap->nchar, cap->count0, NUL); /* everything is in window.c */
7838#else
7839 (void)checkclearop(cap->oap);
7840#endif
7841}
7842
7843/*
7844 * CTRL-Z: Suspend
7845 */
7846 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007847nv_suspend(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007848{
7849 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007850 if (VIsual_active)
7851 end_visual_mode(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007852 do_cmdline_cmd((char_u *)"st");
7853}
7854
7855/*
7856 * Commands starting with "g".
7857 */
7858 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007859nv_g_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007860{
7861 oparg_T *oap = cap->oap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007862 pos_T tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007863 int i;
7864 int flag = FALSE;
7865
7866 switch (cap->nchar)
7867 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007868 case Ctrl_A:
7869 case Ctrl_X:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007870#ifdef MEM_PROFILE
7871 /*
7872 * "g^A": dump log of used memory.
7873 */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007874 if (!VIsual_active && cap->nchar == Ctrl_A)
7875 vim_mem_profile_dump();
7876 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007877#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007878 /*
7879 * "g^A/g^X": sequentially increment visually selected region
7880 */
7881 if (VIsual_active)
7882 {
7883 cap->arg = TRUE;
7884 cap->cmdchar = cap->nchar;
Bram Moolenaard79e5502016-01-10 22:13:02 +01007885 cap->nchar = NUL;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02007886 nv_addsub(cap);
7887 }
7888 else
7889 clearopbeep(oap);
7890 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007891
7892#ifdef FEAT_VREPLACE
7893 /*
7894 * "gR": Enter virtual replace mode.
7895 */
7896 case 'R':
7897 cap->arg = TRUE;
7898 nv_Replace(cap);
7899 break;
7900
7901 case 'r':
7902 nv_vreplace(cap);
7903 break;
7904#endif
7905
7906 case '&':
7907 do_cmdline_cmd((char_u *)"%s//~/&");
7908 break;
7909
Bram Moolenaar071d4272004-06-13 20:20:40 +00007910 /*
7911 * "gv": Reselect the previous Visual area. If Visual already active,
7912 * exchange previous and current Visual area.
7913 */
7914 case 'v':
7915 if (checkclearop(oap))
7916 break;
7917
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007918 if ( curbuf->b_visual.vi_start.lnum == 0
7919 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
7920 || curbuf->b_visual.vi_end.lnum == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007921 beep_flush();
7922 else
7923 {
7924 /* set w_cursor to the start of the Visual area, tpos to the end */
7925 if (VIsual_active)
7926 {
7927 i = VIsual_mode;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007928 VIsual_mode = curbuf->b_visual.vi_mode;
7929 curbuf->b_visual.vi_mode = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007930# ifdef FEAT_EVAL
7931 curbuf->b_visual_mode_eval = i;
7932# endif
7933 i = curwin->w_curswant;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007934 curwin->w_curswant = curbuf->b_visual.vi_curswant;
7935 curbuf->b_visual.vi_curswant = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007936
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007937 tpos = curbuf->b_visual.vi_end;
7938 curbuf->b_visual.vi_end = curwin->w_cursor;
7939 curwin->w_cursor = curbuf->b_visual.vi_start;
7940 curbuf->b_visual.vi_start = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007941 }
7942 else
7943 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007944 VIsual_mode = curbuf->b_visual.vi_mode;
7945 curwin->w_curswant = curbuf->b_visual.vi_curswant;
7946 tpos = curbuf->b_visual.vi_end;
7947 curwin->w_cursor = curbuf->b_visual.vi_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007948 }
7949
7950 VIsual_active = TRUE;
7951 VIsual_reselect = TRUE;
7952
7953 /* Set Visual to the start and w_cursor to the end of the Visual
7954 * area. Make sure they are on an existing character. */
7955 check_cursor();
7956 VIsual = curwin->w_cursor;
7957 curwin->w_cursor = tpos;
7958 check_cursor();
7959 update_topline();
7960 /*
7961 * When called from normal "g" command: start Select mode when
7962 * 'selectmode' contains "cmd". When called for K_SELECT, always
7963 * start Select mode.
7964 */
7965 if (cap->arg)
7966 VIsual_select = TRUE;
7967 else
7968 may_start_select('c');
7969#ifdef FEAT_MOUSE
7970 setmouse();
7971#endif
7972#ifdef FEAT_CLIPBOARD
7973 /* Make sure the clipboard gets updated. Needed because start and
7974 * end are still the same, and the selection needs to be owned */
7975 clip_star.vmode = NUL;
7976#endif
7977 redraw_curbuf_later(INVERTED);
7978 showmode();
7979 }
7980 break;
7981 /*
7982 * "gV": Don't reselect the previous Visual area after a Select mode
7983 * mapping of menu.
7984 */
7985 case 'V':
7986 VIsual_reselect = FALSE;
7987 break;
7988
7989 /*
7990 * "gh": start Select mode.
7991 * "gH": start Select line mode.
7992 * "g^H": start Select block mode.
7993 */
7994 case K_BS:
7995 cap->nchar = Ctrl_H;
7996 /* FALLTHROUGH */
7997 case 'h':
7998 case 'H':
7999 case Ctrl_H:
8000# ifdef EBCDIC
8001 /* EBCDIC: 'v'-'h' != '^v'-'^h' */
8002 if (cap->nchar == Ctrl_H)
8003 cap->cmdchar = Ctrl_V;
8004 else
8005# endif
8006 cap->cmdchar = cap->nchar + ('v' - 'h');
8007 cap->arg = TRUE;
8008 nv_visual(cap);
8009 break;
Bram Moolenaar641e2862012-07-25 15:06:34 +02008010
8011 /* "gn", "gN" visually select next/previous search match
8012 * "gn" selects next match
8013 * "gN" selects previous match
8014 */
8015 case 'N':
8016 case 'n':
8017 if (!current_search(cap->count1, cap->nchar == 'n'))
Bram Moolenaarf00dc262012-10-21 03:54:33 +02008018 clearopbeep(oap);
Bram Moolenaar641e2862012-07-25 15:06:34 +02008019 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008020
8021 /*
8022 * "gj" and "gk" two new funny movement keys -- up and down
8023 * movement based on *screen* line rather than *file* line.
8024 */
8025 case 'j':
8026 case K_DOWN:
8027 /* with 'nowrap' it works just like the normal "j" command; also when
8028 * in a closed fold */
8029 if (!curwin->w_p_wrap
8030#ifdef FEAT_FOLDING
8031 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
8032#endif
8033 )
8034 {
8035 oap->motion_type = MLINE;
8036 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
8037 }
8038 else
8039 i = nv_screengo(oap, FORWARD, cap->count1);
8040 if (i == FAIL)
8041 clearopbeep(oap);
8042 break;
8043
8044 case 'k':
8045 case K_UP:
8046 /* with 'nowrap' it works just like the normal "k" command; also when
8047 * in a closed fold */
8048 if (!curwin->w_p_wrap
8049#ifdef FEAT_FOLDING
8050 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
8051#endif
8052 )
8053 {
8054 oap->motion_type = MLINE;
8055 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
8056 }
8057 else
8058 i = nv_screengo(oap, BACKWARD, cap->count1);
8059 if (i == FAIL)
8060 clearopbeep(oap);
8061 break;
8062
8063 /*
8064 * "gJ": join two lines without inserting a space.
8065 */
8066 case 'J':
8067 nv_join(cap);
8068 break;
8069
8070 /*
8071 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
8072 * "gm": middle of "g0" and "g$".
8073 */
8074 case '^':
8075 flag = TRUE;
8076 /* FALLTHROUGH */
8077
8078 case '0':
8079 case 'm':
8080 case K_HOME:
8081 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008082 oap->motion_type = MCHAR;
8083 oap->inclusive = FALSE;
8084 if (curwin->w_p_wrap
Bram Moolenaar44a2f922016-03-19 22:11:51 +01008085#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00008086 && curwin->w_width != 0
8087#endif
8088 )
8089 {
8090 int width1 = W_WIDTH(curwin) - curwin_col_off();
8091 int width2 = width1 + curwin_col_off2();
8092
8093 validate_virtcol();
8094 i = 0;
8095 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
8096 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
8097 }
8098 else
8099 i = curwin->w_leftcol;
Bram Moolenaar64486672010-05-16 15:46:46 +02008100 /* Go to the middle of the screen line. When 'number' or
8101 * 'relativenumber' is on and lines are wrapping the middle can be more
8102 * to the left. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008103 if (cap->nchar == 'm')
8104 i += (W_WIDTH(curwin) - curwin_col_off()
8105 + ((curwin->w_p_wrap && i > 0)
8106 ? curwin_col_off2() : 0)) / 2;
8107 coladvance((colnr_T)i);
8108 if (flag)
8109 {
8110 do
8111 i = gchar_cursor();
8112 while (vim_iswhite(i) && oneright() == OK);
8113 }
8114 curwin->w_set_curswant = TRUE;
8115 break;
8116
8117 case '_':
8118 /* "g_": to the last non-blank character in the line or <count> lines
8119 * downward. */
8120 cap->oap->motion_type = MCHAR;
8121 cap->oap->inclusive = TRUE;
8122 curwin->w_curswant = MAXCOL;
8123 if (cursor_down((long)(cap->count1 - 1),
8124 cap->oap->op_type == OP_NOP) == FAIL)
8125 clearopbeep(cap->oap);
8126 else
8127 {
8128 char_u *ptr = ml_get_curline();
8129
8130 /* In Visual mode we may end up after the line. */
8131 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
8132 --curwin->w_cursor.col;
8133
8134 /* Decrease the cursor column until it's on a non-blank. */
8135 while (curwin->w_cursor.col > 0
8136 && vim_iswhite(ptr[curwin->w_cursor.col]))
8137 --curwin->w_cursor.col;
8138 curwin->w_set_curswant = TRUE;
Bram Moolenaar5890b2c2010-01-12 15:42:37 +01008139 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008140 }
8141 break;
8142
8143 case '$':
8144 case K_END:
8145 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008146 {
8147 int col_off = curwin_col_off();
8148
8149 oap->motion_type = MCHAR;
8150 oap->inclusive = TRUE;
8151 if (curwin->w_p_wrap
Bram Moolenaar44a2f922016-03-19 22:11:51 +01008152#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00008153 && curwin->w_width != 0
8154#endif
8155 )
8156 {
8157 curwin->w_curswant = MAXCOL; /* so we stay at the end */
8158 if (cap->count1 == 1)
8159 {
8160 int width1 = W_WIDTH(curwin) - col_off;
8161 int width2 = width1 + curwin_col_off2();
8162
8163 validate_virtcol();
8164 i = width1 - 1;
8165 if (curwin->w_virtcol >= (colnr_T)width1)
8166 i += ((curwin->w_virtcol - width1) / width2 + 1)
8167 * width2;
8168 coladvance((colnr_T)i);
Bram Moolenaarb69510e2013-07-09 17:08:29 +02008169
8170 /* Make sure we stick in this column. */
8171 validate_virtcol();
8172 curwin->w_curswant = curwin->w_virtcol;
8173 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008174#if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
8175 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
8176 {
8177 /*
8178 * Check for landing on a character that got split at
8179 * the end of the line. We do not want to advance to
8180 * the next screen line.
8181 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008182 if (curwin->w_virtcol > (colnr_T)i)
8183 --curwin->w_cursor.col;
8184 }
8185#endif
8186 }
8187 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
8188 clearopbeep(oap);
8189 }
8190 else
8191 {
8192 i = curwin->w_leftcol + W_WIDTH(curwin) - col_off - 1;
8193 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008194
8195 /* Make sure we stick in this column. */
8196 validate_virtcol();
8197 curwin->w_curswant = curwin->w_virtcol;
8198 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008199 }
8200 }
8201 break;
8202
8203 /*
8204 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
8205 */
8206 case '*':
8207 case '#':
8208#if POUND != '#'
8209 case POUND: /* pound sign (sometimes equal to '#') */
8210#endif
8211 case Ctrl_RSB: /* :tag or :tselect for current identifier */
8212 case ']': /* :tselect for current identifier */
8213 nv_ident(cap);
8214 break;
8215
8216 /*
8217 * ge and gE: go back to end of word
8218 */
8219 case 'e':
8220 case 'E':
8221 oap->motion_type = MCHAR;
8222 curwin->w_set_curswant = TRUE;
8223 oap->inclusive = TRUE;
8224 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
8225 clearopbeep(oap);
8226 break;
8227
8228 /*
8229 * "g CTRL-G": display info about cursor position
8230 */
8231 case Ctrl_G:
Bram Moolenaared767a22016-01-03 22:49:16 +01008232 cursor_pos_info(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008233 break;
8234
8235 /*
8236 * "gi": start Insert at the last position.
8237 */
8238 case 'i':
8239 if (curbuf->b_last_insert.lnum != 0)
8240 {
8241 curwin->w_cursor = curbuf->b_last_insert;
8242 check_cursor_lnum();
8243 i = (int)STRLEN(ml_get_curline());
8244 if (curwin->w_cursor.col > (colnr_T)i)
8245 {
8246#ifdef FEAT_VIRTUALEDIT
8247 if (virtual_active())
8248 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
8249#endif
8250 curwin->w_cursor.col = i;
8251 }
8252 }
8253 cap->cmdchar = 'i';
8254 nv_edit(cap);
8255 break;
8256
8257 /*
8258 * "gI": Start insert in column 1.
8259 */
8260 case 'I':
8261 beginline(0);
8262 if (!checkclearopq(oap))
8263 invoke_edit(cap, FALSE, 'g', FALSE);
8264 break;
8265
8266#ifdef FEAT_SEARCHPATH
8267 /*
8268 * "gf": goto file, edit file under cursor
8269 * "]f" and "[f": can also be used.
8270 */
8271 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +00008272 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +00008273 nv_gotofile(cap);
8274 break;
8275#endif
8276
8277 /* "g'm" and "g`m": jump to mark without setting pcmark */
8278 case '\'':
8279 cap->arg = TRUE;
8280 /*FALLTHROUGH*/
8281 case '`':
8282 nv_gomark(cap);
8283 break;
8284
8285 /*
8286 * "gs": Goto sleep.
8287 */
8288 case 's':
8289 do_sleep(cap->count1 * 1000L);
8290 break;
8291
8292 /*
8293 * "ga": Display the ascii value of the character under the
8294 * cursor. It is displayed in decimal, hex, and octal. -- webb
8295 */
8296 case 'a':
8297 do_ascii(NULL);
8298 break;
8299
8300#ifdef FEAT_MBYTE
8301 /*
8302 * "g8": Display the bytes used for the UTF-8 character under the
8303 * cursor. It is displayed in hex.
Bram Moolenaara83c3e02006-03-17 23:10:44 +00008304 * "8g8" finds illegal byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008305 */
8306 case '8':
Bram Moolenaara83c3e02006-03-17 23:10:44 +00008307 if (cap->count0 == 8)
8308 utf_find_illegal();
8309 else
8310 show_utf8();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008311 break;
8312#endif
8313
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00008314 case '<':
8315 show_sb_text();
8316 break;
8317
Bram Moolenaar071d4272004-06-13 20:20:40 +00008318 /*
8319 * "gg": Goto the first line in file. With a count it goes to
8320 * that line number like for "G". -- webb
8321 */
8322 case 'g':
8323 cap->arg = FALSE;
8324 nv_goto(cap);
8325 break;
8326
8327 /*
8328 * Two-character operators:
8329 * "gq" Format text
8330 * "gw" Format text and keep cursor position
8331 * "g~" Toggle the case of the text.
8332 * "gu" Change text to lower case.
8333 * "gU" Change text to upper case.
8334 * "g?" rot13 encoding
Bram Moolenaar12033fb2005-12-16 21:49:31 +00008335 * "g@" call 'operatorfunc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008336 */
8337 case 'q':
8338 case 'w':
8339 oap->cursor_start = curwin->w_cursor;
8340 /*FALLTHROUGH*/
8341 case '~':
8342 case 'u':
8343 case 'U':
8344 case '?':
Bram Moolenaar12033fb2005-12-16 21:49:31 +00008345 case '@':
Bram Moolenaar071d4272004-06-13 20:20:40 +00008346 nv_operator(cap);
8347 break;
8348
8349 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00008350 * "gd": Find first occurrence of pattern under the cursor in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00008351 * current function
8352 * "gD": idem, but in the current file.
8353 */
8354 case 'd':
8355 case 'D':
Bram Moolenaarf75a9632005-09-13 21:20:47 +00008356 nv_gd(oap, cap->nchar, (int)cap->count0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008357 break;
8358
8359#ifdef FEAT_MOUSE
8360 /*
8361 * g<*Mouse> : <C-*mouse>
8362 */
8363 case K_MIDDLEMOUSE:
8364 case K_MIDDLEDRAG:
8365 case K_MIDDLERELEASE:
8366 case K_LEFTMOUSE:
8367 case K_LEFTDRAG:
8368 case K_LEFTRELEASE:
8369 case K_RIGHTMOUSE:
8370 case K_RIGHTDRAG:
8371 case K_RIGHTRELEASE:
8372 case K_X1MOUSE:
8373 case K_X1DRAG:
8374 case K_X1RELEASE:
8375 case K_X2MOUSE:
8376 case K_X2DRAG:
8377 case K_X2RELEASE:
8378 mod_mask = MOD_MASK_CTRL;
8379 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
8380 break;
8381#endif
8382
8383 case K_IGNORE:
8384 break;
8385
8386 /*
8387 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
8388 */
8389 case 'p':
8390 case 'P':
8391 nv_put(cap);
8392 break;
8393
8394#ifdef FEAT_BYTEOFF
8395 /* "go": goto byte count from start of buffer */
8396 case 'o':
8397 goto_byte(cap->count0);
8398 break;
8399#endif
8400
8401 /* "gQ": improved Ex mode */
8402 case 'Q':
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00008403 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00008404 {
8405 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00008406 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008407 break;
8408 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00008409
Bram Moolenaar071d4272004-06-13 20:20:40 +00008410 if (!checkclearopq(oap))
8411 do_exmode(TRUE);
8412 break;
8413
8414#ifdef FEAT_JUMPLIST
8415 case ',':
8416 nv_pcmark(cap);
8417 break;
8418
8419 case ';':
8420 cap->count1 = -cap->count1;
8421 nv_pcmark(cap);
8422 break;
8423#endif
8424
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008425#ifdef FEAT_WINDOWS
8426 case 't':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02008427 if (!checkclearop(oap))
8428 goto_tabpage((int)cap->count0);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008429 break;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008430 case 'T':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02008431 if (!checkclearop(oap))
8432 goto_tabpage(-(int)cap->count1);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008433 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008434#endif
8435
Bram Moolenaar35a2e192006-03-13 22:07:11 +00008436 case '+':
8437 case '-': /* "g+" and "g-": undo or redo along the timeline */
8438 if (!checkclearopq(oap))
Bram Moolenaard3667a22006-03-16 21:35:52 +00008439 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
Bram Moolenaar730cde92010-06-27 05:18:54 +02008440 FALSE, FALSE, FALSE);
Bram Moolenaar35a2e192006-03-13 22:07:11 +00008441 break;
8442
Bram Moolenaar071d4272004-06-13 20:20:40 +00008443 default:
8444 clearopbeep(oap);
8445 break;
8446 }
8447}
8448
8449/*
8450 * Handle "o" and "O" commands.
8451 */
8452 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008453n_opencmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008454{
Bram Moolenaar860cae12010-06-05 23:22:07 +02008455#ifdef FEAT_CONCEAL
8456 linenr_T oldline = curwin->w_cursor.lnum;
8457#endif
8458
Bram Moolenaar071d4272004-06-13 20:20:40 +00008459 if (!checkclearopq(cap->oap))
8460 {
8461#ifdef FEAT_FOLDING
8462 if (cap->cmdchar == 'O')
8463 /* Open above the first line of a folded sequence of lines */
8464 (void)hasFolding(curwin->w_cursor.lnum,
8465 &curwin->w_cursor.lnum, NULL);
8466 else
8467 /* Open below the last line of a folded sequence of lines */
8468 (void)hasFolding(curwin->w_cursor.lnum,
8469 NULL, &curwin->w_cursor.lnum);
8470#endif
8471 if (u_save((linenr_T)(curwin->w_cursor.lnum -
8472 (cap->cmdchar == 'O' ? 1 : 0)),
8473 (linenr_T)(curwin->w_cursor.lnum +
8474 (cap->cmdchar == 'o' ? 1 : 0))
8475 ) == OK
8476 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
8477#ifdef FEAT_COMMENTS
8478 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM :
8479#endif
8480 0, 0))
8481 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02008482#ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02008483 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
Bram Moolenaar860cae12010-06-05 23:22:07 +02008484 update_single_line(curwin, oldline);
8485#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00008486 /* When '#' is in 'cpoptions' ignore the count. */
8487 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
8488 cap->count1 = 1;
Bram Moolenaard710e0d2015-06-10 12:16:47 +02008489#ifdef FEAT_SYN_HL
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02008490 if (curwin->w_p_cul)
8491 /* force redraw of cursorline */
8492 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaard710e0d2015-06-10 12:16:47 +02008493#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008494 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
8495 }
8496 }
8497}
8498
8499/*
8500 * "." command: redo last change.
8501 */
8502 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008503nv_dot(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008504{
8505 if (!checkclearopq(cap->oap))
8506 {
8507 /*
8508 * If "restart_edit" is TRUE, the last but one command is repeated
8509 * instead of the last command (inserting text). This is used for
8510 * CTRL-O <.> in insert mode.
8511 */
8512 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
8513 clearopbeep(cap->oap);
8514 }
8515}
8516
8517/*
8518 * CTRL-R: undo undo
8519 */
8520 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008521nv_redo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008522{
8523 if (!checkclearopq(cap->oap))
8524 {
8525 u_redo((int)cap->count1);
8526 curwin->w_set_curswant = TRUE;
8527 }
8528}
8529
8530/*
8531 * Handle "U" command.
8532 */
8533 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008534nv_Undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008535{
8536 /* In Visual mode and typing "gUU" triggers an operator */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008537 if (cap->oap->op_type == OP_UPPER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008538 {
8539 /* translate "gUU" to "gUgU" */
8540 cap->cmdchar = 'g';
8541 cap->nchar = 'U';
8542 nv_operator(cap);
8543 }
8544 else if (!checkclearopq(cap->oap))
8545 {
8546 u_undoline();
8547 curwin->w_set_curswant = TRUE;
8548 }
8549}
8550
8551/*
8552 * '~' command: If tilde is not an operator and Visual is off: swap case of a
8553 * single character.
8554 */
8555 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008556nv_tilde(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008557{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008558 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008559 n_swapchar(cap);
8560 else
8561 nv_operator(cap);
8562}
8563
8564/*
8565 * Handle an operator command.
8566 * The actual work is done by do_pending_operator().
8567 */
8568 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008569nv_operator(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008570{
8571 int op_type;
8572
8573 op_type = get_op_type(cap->cmdchar, cap->nchar);
8574
8575 if (op_type == cap->oap->op_type) /* double operator works on lines */
8576 nv_lineop(cap);
8577 else if (!checkclearop(cap->oap))
8578 {
8579 cap->oap->start = curwin->w_cursor;
8580 cap->oap->op_type = op_type;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00008581#ifdef FEAT_EVAL
8582 set_op_var(op_type);
8583#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008584 }
8585}
8586
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00008587#ifdef FEAT_EVAL
8588/*
8589 * Set v:operator to the characters for "optype".
8590 */
8591 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008592set_op_var(int optype)
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00008593{
8594 char_u opchars[3];
8595
8596 if (optype == OP_NOP)
8597 set_vim_var_string(VV_OP, NULL, 0);
8598 else
8599 {
8600 opchars[0] = get_op_char(optype);
8601 opchars[1] = get_extra_op_char(optype);
8602 opchars[2] = NUL;
8603 set_vim_var_string(VV_OP, opchars, -1);
8604 }
8605}
8606#endif
8607
Bram Moolenaar071d4272004-06-13 20:20:40 +00008608/*
8609 * Handle linewise operator "dd", "yy", etc.
8610 *
8611 * "_" is is a strange motion command that helps make operators more logical.
8612 * It is actually implemented, but not documented in the real Vi. This motion
8613 * command actually refers to "the current line". Commands like "dd" and "yy"
8614 * are really an alternate form of "d_" and "y_". It does accept a count, so
8615 * "d3_" works to delete 3 lines.
8616 */
8617 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008618nv_lineop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008619{
8620 cap->oap->motion_type = MLINE;
8621 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
8622 clearopbeep(cap->oap);
Bram Moolenaar83dadaf2012-12-12 17:33:32 +01008623 else if ( (cap->oap->op_type == OP_DELETE /* only with linewise motions */
8624 && cap->oap->motion_force != 'v'
8625 && cap->oap->motion_force != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008626 || cap->oap->op_type == OP_LSHIFT
8627 || cap->oap->op_type == OP_RSHIFT)
8628 beginline(BL_SOL | BL_FIX);
8629 else if (cap->oap->op_type != OP_YANK) /* 'Y' does not move cursor */
8630 beginline(BL_WHITE | BL_FIX);
8631}
8632
8633/*
8634 * <Home> command.
8635 */
8636 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008637nv_home(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008638{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00008639 /* CTRL-HOME is like "gg" */
8640 if (mod_mask & MOD_MASK_CTRL)
8641 nv_goto(cap);
8642 else
8643 {
8644 cap->count0 = 1;
8645 nv_pipe(cap);
8646 }
Bram Moolenaara88d9682005-03-25 21:45:43 +00008647 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
8648 one-character line). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008649}
8650
8651/*
8652 * "|" command.
8653 */
8654 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008655nv_pipe(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008656{
8657 cap->oap->motion_type = MCHAR;
8658 cap->oap->inclusive = FALSE;
8659 beginline(0);
8660 if (cap->count0 > 0)
8661 {
8662 coladvance((colnr_T)(cap->count0 - 1));
8663 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
8664 }
8665 else
8666 curwin->w_curswant = 0;
8667 /* keep curswant at the column where we wanted to go, not where
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01008668 * we ended; differs if line is too short */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008669 curwin->w_set_curswant = FALSE;
8670}
8671
8672/*
8673 * Handle back-word command "b" and "B".
8674 * cap->arg is 1 for "B"
8675 */
8676 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008677nv_bck_word(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008678{
8679 cap->oap->motion_type = MCHAR;
8680 cap->oap->inclusive = FALSE;
8681 curwin->w_set_curswant = TRUE;
8682 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
8683 clearopbeep(cap->oap);
8684#ifdef FEAT_FOLDING
8685 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8686 foldOpenCursor();
8687#endif
8688}
8689
8690/*
8691 * Handle word motion commands "e", "E", "w" and "W".
8692 * cap->arg is TRUE for "E" and "W".
8693 */
8694 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008695nv_wordcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008696{
8697 int n;
8698 int word_end;
8699 int flag = FALSE;
Bram Moolenaardfefb982008-04-01 10:06:39 +00008700 pos_T startpos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008701
8702 /*
8703 * Set inclusive for the "E" and "e" command.
8704 */
8705 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
8706 word_end = TRUE;
8707 else
8708 word_end = FALSE;
8709 cap->oap->inclusive = word_end;
8710
8711 /*
8712 * "cw" and "cW" are a special case.
8713 */
8714 if (!word_end && cap->oap->op_type == OP_CHANGE)
8715 {
8716 n = gchar_cursor();
8717 if (n != NUL) /* not an empty line */
8718 {
8719 if (vim_iswhite(n))
8720 {
8721 /*
8722 * Reproduce a funny Vi behaviour: "cw" on a blank only
8723 * changes one character, not all blanks until the start of
8724 * the next word. Only do this when the 'w' flag is included
8725 * in 'cpoptions'.
8726 */
8727 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
8728 {
8729 cap->oap->inclusive = TRUE;
8730 cap->oap->motion_type = MCHAR;
8731 return;
8732 }
8733 }
8734 else
8735 {
8736 /*
8737 * This is a little strange. To match what the real Vi does,
8738 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
8739 * that we are not on a space or a TAB. This seems impolite
8740 * at first, but it's really more what we mean when we say
8741 * 'cw'.
8742 * Another strangeness: When standing on the end of a word
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02008743 * "ce" will change until the end of the next word, but "cw"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008744 * will change only one character! This is done by setting
8745 * flag.
8746 */
8747 cap->oap->inclusive = TRUE;
8748 word_end = TRUE;
8749 flag = TRUE;
8750 }
8751 }
8752 }
8753
8754 cap->oap->motion_type = MCHAR;
8755 curwin->w_set_curswant = TRUE;
8756 if (word_end)
8757 n = end_word(cap->count1, cap->arg, flag, FALSE);
8758 else
8759 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
8760
Bram Moolenaardfefb982008-04-01 10:06:39 +00008761 /* Don't leave the cursor on the NUL past the end of line. Unless we
8762 * didn't move it forward. */
8763 if (lt(startpos, curwin->w_cursor))
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008764 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008765
8766 if (n == FAIL && cap->oap->op_type == OP_NOP)
8767 clearopbeep(cap->oap);
8768 else
8769 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008770 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008771#ifdef FEAT_FOLDING
8772 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8773 foldOpenCursor();
8774#endif
8775 }
8776}
8777
8778/*
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008779 * Used after a movement command: If the cursor ends up on the NUL after the
8780 * end of the line, may move it back to the last character and make the motion
8781 * inclusive.
8782 */
8783 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008784adjust_cursor(oparg_T *oap)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008785{
8786 /* The cursor cannot remain on the NUL when:
8787 * - the column is > 0
8788 * - not in Visual mode or 'selection' is "o"
8789 * - 'virtualedit' is not "all" and not "onemore".
8790 */
8791 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008792 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar1f14d572008-01-12 16:12:10 +00008793#ifdef FEAT_VIRTUALEDIT
8794 && !virtual_active() && (ve_flags & VE_ONEMORE) == 0
8795#endif
8796 )
8797 {
8798 --curwin->w_cursor.col;
8799#ifdef FEAT_MBYTE
8800 /* prevent cursor from moving on the trail byte */
8801 if (has_mbyte)
8802 mb_adjust_cursor();
8803#endif
8804 oap->inclusive = TRUE;
8805 }
8806}
8807
8808/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008809 * "0" and "^" commands.
8810 * cap->arg is the argument for beginline().
8811 */
8812 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008813nv_beginline(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008814{
8815 cap->oap->motion_type = MCHAR;
8816 cap->oap->inclusive = FALSE;
8817 beginline(cap->arg);
8818#ifdef FEAT_FOLDING
8819 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8820 foldOpenCursor();
8821#endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00008822 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
8823 one-character line). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008824}
8825
Bram Moolenaar071d4272004-06-13 20:20:40 +00008826/*
8827 * In exclusive Visual mode, may include the last character.
8828 */
8829 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008830adjust_for_sel(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008831{
8832 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
8833 && gchar_cursor() != NUL && lt(VIsual, curwin->w_cursor))
8834 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008835#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008836 if (has_mbyte)
8837 inc_cursor();
8838 else
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008839#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008840 ++curwin->w_cursor.col;
8841 cap->oap->inclusive = FALSE;
8842 }
8843}
8844
8845/*
8846 * Exclude last character at end of Visual area for 'selection' == "exclusive".
8847 * Should check VIsual_mode before calling this.
8848 * Returns TRUE when backed up to the previous line.
8849 */
8850 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01008851unadjust_for_sel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008852{
8853 pos_T *pp;
8854
8855 if (*p_sel == 'e' && !equalpos(VIsual, curwin->w_cursor))
8856 {
8857 if (lt(VIsual, curwin->w_cursor))
8858 pp = &curwin->w_cursor;
8859 else
8860 pp = &VIsual;
8861#ifdef FEAT_VIRTUALEDIT
8862 if (pp->coladd > 0)
8863 --pp->coladd;
8864 else
8865#endif
8866 if (pp->col > 0)
8867 {
8868 --pp->col;
8869#ifdef FEAT_MBYTE
Bram Moolenaar03a807a2011-07-07 15:08:58 +02008870 mb_adjustpos(curbuf, pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008871#endif
8872 }
8873 else if (pp->lnum > 1)
8874 {
8875 --pp->lnum;
8876 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
8877 return TRUE;
8878 }
8879 }
8880 return FALSE;
8881}
8882
8883/*
8884 * SELECT key in Normal or Visual mode: end of Select mode mapping.
8885 */
8886 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008887nv_select(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008888{
8889 if (VIsual_active)
8890 VIsual_select = TRUE;
8891 else if (VIsual_reselect)
8892 {
8893 cap->nchar = 'v'; /* fake "gv" command */
8894 cap->arg = TRUE;
8895 nv_g_cmd(cap);
8896 }
8897}
8898
Bram Moolenaar071d4272004-06-13 20:20:40 +00008899
8900/*
8901 * "G", "gg", CTRL-END, CTRL-HOME.
8902 * cap->arg is TRUE for "G".
8903 */
8904 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008905nv_goto(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008906{
8907 linenr_T lnum;
8908
8909 if (cap->arg)
8910 lnum = curbuf->b_ml.ml_line_count;
8911 else
8912 lnum = 1L;
8913 cap->oap->motion_type = MLINE;
8914 setpcmark();
8915
8916 /* When a count is given, use it instead of the default lnum */
8917 if (cap->count0 != 0)
8918 lnum = cap->count0;
8919 if (lnum < 1L)
8920 lnum = 1L;
8921 else if (lnum > curbuf->b_ml.ml_line_count)
8922 lnum = curbuf->b_ml.ml_line_count;
8923 curwin->w_cursor.lnum = lnum;
8924 beginline(BL_SOL | BL_FIX);
8925#ifdef FEAT_FOLDING
8926 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
8927 foldOpenCursor();
8928#endif
8929}
8930
8931/*
8932 * CTRL-\ in Normal mode.
8933 */
8934 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008935nv_normal(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008936{
8937 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
8938 {
8939 clearop(cap->oap);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00008940 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008941 clear_cmdline = TRUE; /* unshow mode later */
8942 restart_edit = 0;
8943#ifdef FEAT_CMDWIN
8944 if (cmdwin_type != 0)
8945 cmdwin_result = Ctrl_C;
8946#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008947 if (VIsual_active)
8948 {
8949 end_visual_mode(); /* stop Visual */
8950 redraw_curbuf_later(INVERTED);
8951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008952 /* CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. */
8953 if (cap->nchar == Ctrl_G && p_im)
8954 restart_edit = 'a';
8955 }
8956 else
8957 clearopbeep(cap->oap);
8958}
8959
8960/*
8961 * ESC in Normal mode: beep, but don't flush buffers.
8962 * Don't even beep if we are canceling a command.
8963 */
8964 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01008965nv_esc(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008966{
8967 int no_reason;
8968
8969 no_reason = (cap->oap->op_type == OP_NOP
8970 && cap->opcount == 0
8971 && cap->count0 == 0
8972 && cap->oap->regname == 0
8973 && !p_im);
8974
8975 if (cap->arg) /* TRUE for CTRL-C */
8976 {
8977 if (restart_edit == 0
8978#ifdef FEAT_CMDWIN
8979 && cmdwin_type == 0
8980#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008981 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00008982 && no_reason)
8983 MSG(_("Type :quit<Enter> to exit Vim"));
8984
8985 /* Don't reset "restart_edit" when 'insertmode' is set, it won't be
8986 * set again below when halfway a mapping. */
8987 if (!p_im)
8988 restart_edit = 0;
8989#ifdef FEAT_CMDWIN
8990 if (cmdwin_type != 0)
8991 {
8992 cmdwin_result = K_IGNORE;
8993 got_int = FALSE; /* don't stop executing autocommands et al. */
8994 return;
8995 }
8996#endif
8997 }
8998
Bram Moolenaar071d4272004-06-13 20:20:40 +00008999 if (VIsual_active)
9000 {
9001 end_visual_mode(); /* stop Visual */
9002 check_cursor_col(); /* make sure cursor is not beyond EOL */
9003 curwin->w_set_curswant = TRUE;
9004 redraw_curbuf_later(INVERTED);
9005 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009006 else if (no_reason)
Bram Moolenaar165bc692015-07-21 17:53:25 +02009007 vim_beep(BO_ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009008 clearop(cap->oap);
9009
9010 /* A CTRL-C is often used at the start of a menu. When 'insertmode' is
9011 * set return to Insert mode afterwards. */
Bram Moolenaare2c38102016-01-31 14:55:40 +01009012 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009013 restart_edit = 'a';
9014}
9015
9016/*
9017 * Handle "A", "a", "I", "i" and <Insert> commands.
9018 */
9019 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009020nv_edit(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009021{
9022 /* <Insert> is equal to "i" */
9023 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
9024 cap->cmdchar = 'i';
9025
Bram Moolenaar071d4272004-06-13 20:20:40 +00009026 /* in Visual mode "A" and "I" are an operator */
9027 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
9028 v_visop(cap);
9029
9030 /* in Visual mode and after an operator "a" and "i" are for text objects */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009031 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
9032 && (cap->oap->op_type != OP_NOP || VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009033 {
9034#ifdef FEAT_TEXTOBJ
9035 nv_object(cap);
9036#else
9037 clearopbeep(cap->oap);
9038#endif
9039 }
9040 else if (!curbuf->b_p_ma && !p_im)
9041 {
9042 /* Only give this error when 'insertmode' is off. */
9043 EMSG(_(e_modifiable));
9044 clearop(cap->oap);
9045 }
9046 else if (!checkclearopq(cap->oap))
9047 {
9048 switch (cap->cmdchar)
9049 {
9050 case 'A': /* "A"ppend after the line */
9051 curwin->w_set_curswant = TRUE;
9052#ifdef FEAT_VIRTUALEDIT
9053 if (ve_flags == VE_ALL)
9054 {
9055 int save_State = State;
9056
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02009057 /* Pretend Insert mode here to allow the cursor on the
Bram Moolenaar071d4272004-06-13 20:20:40 +00009058 * character past the end of the line */
9059 State = INSERT;
9060 coladvance((colnr_T)MAXCOL);
9061 State = save_State;
9062 }
9063 else
9064#endif
9065 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
9066 break;
9067
9068 case 'I': /* "I"nsert before the first non-blank */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00009069 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
9070 beginline(BL_WHITE);
9071 else
9072 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009073 break;
9074
9075 case 'a': /* "a"ppend is like "i"nsert on the next character. */
9076#ifdef FEAT_VIRTUALEDIT
9077 /* increment coladd when in virtual space, increment the
9078 * column otherwise, also to append after an unprintable char */
9079 if (virtual_active()
9080 && (curwin->w_cursor.coladd > 0
9081 || *ml_get_cursor() == NUL
9082 || *ml_get_cursor() == TAB))
9083 curwin->w_cursor.coladd++;
9084 else
9085#endif
9086 if (*ml_get_cursor() != NUL)
9087 inc_cursor();
9088 break;
9089 }
9090
9091#ifdef FEAT_VIRTUALEDIT
9092 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
9093 {
9094 int save_State = State;
9095
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02009096 /* Pretend Insert mode here to allow the cursor on the
Bram Moolenaar071d4272004-06-13 20:20:40 +00009097 * character past the end of the line */
9098 State = INSERT;
9099 coladvance(getviscol());
9100 State = save_State;
9101 }
9102#endif
9103
9104 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
9105 }
9106}
9107
9108/*
9109 * Invoke edit() and take care of "restart_edit" and the return value.
9110 */
9111 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009112invoke_edit(
9113 cmdarg_T *cap,
9114 int repl, /* "r" or "gr" command */
9115 int cmd,
9116 int startln)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009117{
9118 int restart_edit_save = 0;
9119
9120 /* Complicated: When the user types "a<C-O>a" we don't want to do Insert
9121 * mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
9122 * it. */
9123 if (repl || !stuff_empty())
9124 restart_edit_save = restart_edit;
9125 else
9126 restart_edit_save = 0;
9127
9128 /* Always reset "restart_edit", this is not a restarted edit. */
9129 restart_edit = 0;
9130
9131 if (edit(cmd, startln, cap->count1))
9132 cap->retval |= CA_COMMAND_BUSY;
9133
9134 if (restart_edit == 0)
9135 restart_edit = restart_edit_save;
9136}
9137
9138#ifdef FEAT_TEXTOBJ
9139/*
9140 * "a" or "i" while an operator is pending or in Visual mode: object motion.
9141 */
9142 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009143nv_object(
9144 cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009145{
9146 int flag;
9147 int include;
9148 char_u *mps_save;
9149
9150 if (cap->cmdchar == 'i')
9151 include = FALSE; /* "ix" = inner object: exclude white space */
9152 else
9153 include = TRUE; /* "ax" = an object: include white space */
9154
9155 /* Make sure (), [], {} and <> are in 'matchpairs' */
9156 mps_save = curbuf->b_p_mps;
9157 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
9158
9159 switch (cap->nchar)
9160 {
9161 case 'w': /* "aw" = a word */
9162 flag = current_word(cap->oap, cap->count1, include, FALSE);
9163 break;
9164 case 'W': /* "aW" = a WORD */
9165 flag = current_word(cap->oap, cap->count1, include, TRUE);
9166 break;
9167 case 'b': /* "ab" = a braces block */
9168 case '(':
9169 case ')':
9170 flag = current_block(cap->oap, cap->count1, include, '(', ')');
9171 break;
9172 case 'B': /* "aB" = a Brackets block */
9173 case '{':
9174 case '}':
9175 flag = current_block(cap->oap, cap->count1, include, '{', '}');
9176 break;
9177 case '[': /* "a[" = a [] block */
9178 case ']':
9179 flag = current_block(cap->oap, cap->count1, include, '[', ']');
9180 break;
9181 case '<': /* "a<" = a <> block */
9182 case '>':
9183 flag = current_block(cap->oap, cap->count1, include, '<', '>');
9184 break;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00009185 case 't': /* "at" = a tag block (xml and html) */
Bram Moolenaarb6c27352015-03-05 19:57:49 +01009186 /* Do not adjust oap->end in do_pending_operator()
9187 * otherwise there are different results for 'dit'
9188 * (note leading whitespace in last line):
9189 * 1) <b> 2) <b>
9190 * foobar foobar
9191 * </b> </b>
9192 */
9193 cap->retval |= CA_NO_ADJ_OP_END;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00009194 flag = current_tagblock(cap->oap, cap->count1, include);
9195 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009196 case 'p': /* "ap" = a paragraph */
9197 flag = current_par(cap->oap, cap->count1, include, 'p');
9198 break;
9199 case 's': /* "as" = a sentence */
9200 flag = current_sent(cap->oap, cap->count1, include);
9201 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00009202 case '"': /* "a"" = a double quoted string */
9203 case '\'': /* "a'" = a single quoted string */
9204 case '`': /* "a`" = a backtick quoted string */
9205 flag = current_quote(cap->oap, cap->count1, include,
9206 cap->nchar);
9207 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009208#if 0 /* TODO */
9209 case 'S': /* "aS" = a section */
9210 case 'f': /* "af" = a filename */
9211 case 'u': /* "au" = a URL */
9212#endif
9213 default:
9214 flag = FAIL;
9215 break;
9216 }
9217
9218 curbuf->b_p_mps = mps_save;
9219 if (flag == FAIL)
9220 clearopbeep(cap->oap);
9221 adjust_cursor_col();
9222 curwin->w_set_curswant = TRUE;
9223}
9224#endif
9225
9226/*
9227 * "q" command: Start/stop recording.
9228 * "q:", "q/", "q?": edit command-line in command-line window.
9229 */
9230 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009231nv_record(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009232{
9233 if (cap->oap->op_type == OP_FORMAT)
9234 {
9235 /* "gqq" is the same as "gqgq": format line */
9236 cap->cmdchar = 'g';
9237 cap->nchar = 'q';
9238 nv_operator(cap);
9239 }
9240 else if (!checkclearop(cap->oap))
9241 {
9242#ifdef FEAT_CMDWIN
9243 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
9244 {
9245 stuffcharReadbuff(cap->nchar);
9246 stuffcharReadbuff(K_CMDWIN);
9247 }
9248 else
9249#endif
9250 /* (stop) recording into a named register, unless executing a
9251 * register */
9252 if (!Exec_reg && do_record(cap->nchar) == FAIL)
9253 clearopbeep(cap->oap);
9254 }
9255}
9256
9257/*
9258 * Handle the "@r" command.
9259 */
9260 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009261nv_at(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009262{
9263 if (checkclearop(cap->oap))
9264 return;
9265#ifdef FEAT_EVAL
9266 if (cap->nchar == '=')
9267 {
9268 if (get_expr_register() == NUL)
9269 return;
9270 }
9271#endif
9272 while (cap->count1-- && !got_int)
9273 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00009274 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009275 {
9276 clearopbeep(cap->oap);
9277 break;
9278 }
9279 line_breakcheck();
9280 }
9281}
9282
9283/*
9284 * Handle the CTRL-U and CTRL-D commands.
9285 */
9286 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009287nv_halfpage(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009288{
9289 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
9290 || (cap->cmdchar == Ctrl_D
9291 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
9292 clearopbeep(cap->oap);
9293 else if (!checkclearop(cap->oap))
9294 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
9295}
9296
9297/*
9298 * Handle "J" or "gJ" command.
9299 */
9300 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009301nv_join(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009302{
Bram Moolenaar071d4272004-06-13 20:20:40 +00009303 if (VIsual_active) /* join the visual lines */
9304 nv_operator(cap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009305 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009306 {
9307 if (cap->count0 <= 1)
9308 cap->count0 = 2; /* default for join is two lines! */
9309 if (curwin->w_cursor.lnum + cap->count0 - 1 >
9310 curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009311 {
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01009312 /* can't join when on the last line */
9313 if (cap->count0 <= 2)
9314 {
9315 clearopbeep(cap->oap);
9316 return;
9317 }
9318 cap->count0 = curbuf->b_ml.ml_line_count
9319 - curwin->w_cursor.lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009320 }
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01009321
9322 prep_redo(cap->oap->regname, cap->count0,
9323 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
9324 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009325 }
9326}
9327
9328/*
9329 * "P", "gP", "p" and "gp" commands.
9330 */
9331 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009332nv_put(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009333{
Bram Moolenaar071d4272004-06-13 20:20:40 +00009334 int regname = 0;
9335 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009336 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009337 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009338 int dir;
9339 int flags = 0;
9340
9341 if (cap->oap->op_type != OP_NOP)
9342 {
9343#ifdef FEAT_DIFF
9344 /* "dp" is ":diffput" */
9345 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
9346 {
9347 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01009348 nv_diffgetput(TRUE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009349 }
9350 else
9351#endif
9352 clearopbeep(cap->oap);
9353 }
9354 else
9355 {
9356 dir = (cap->cmdchar == 'P'
9357 || (cap->cmdchar == 'g' && cap->nchar == 'P'))
9358 ? BACKWARD : FORWARD;
9359 prep_redo_cmd(cap);
9360 if (cap->cmdchar == 'g')
9361 flags |= PUT_CURSEND;
9362
Bram Moolenaar071d4272004-06-13 20:20:40 +00009363 if (VIsual_active)
9364 {
9365 /* Putting in Visual mode: The put text replaces the selected
9366 * text. First delete the selected text, then put the new text.
9367 * Need to save and restore the registers that the delete
9368 * overwrites if the old contents is being put.
9369 */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009370 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009371 regname = cap->oap->regname;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009372#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00009373 adjust_clip_reg(&regname);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009374#endif
Bram Moolenaar7d311c52014-02-22 23:49:35 +01009375 if (regname == 0 || regname == '"'
Bram Moolenaarba6e8582012-12-12 18:20:32 +01009376 || VIM_ISDIGIT(regname) || regname == '-'
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009377#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00009378 || (clip_unnamed && (regname == '*' || regname == '+'))
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009379#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009380
9381 )
9382 {
Bram Moolenaarba6e8582012-12-12 18:20:32 +01009383 /* The delete is going to overwrite the register we want to
Bram Moolenaar071d4272004-06-13 20:20:40 +00009384 * put, save it first. */
9385 reg1 = get_register(regname, TRUE);
9386 }
9387
9388 /* Now delete the selected text. */
9389 cap->cmdchar = 'd';
9390 cap->nchar = NUL;
9391 cap->oap->regname = NUL;
9392 nv_operator(cap);
9393 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009394 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009395
9396 /* delete PUT_LINE_BACKWARD; */
9397 cap->oap->regname = regname;
9398
9399 if (reg1 != NULL)
9400 {
9401 /* Delete probably changed the register we want to put, save
9402 * it first. Then put back what was there before the delete. */
9403 reg2 = get_register(regname, FALSE);
9404 put_register(regname, reg1);
9405 }
9406
9407 /* When deleted a linewise Visual area, put the register as
9408 * lines to avoid it joined with the next line. When deletion was
9409 * characterwise, split a line when putting lines. */
9410 if (VIsual_mode == 'V')
9411 flags |= PUT_LINE;
9412 else if (VIsual_mode == 'v')
9413 flags |= PUT_LINE_SPLIT;
9414 if (VIsual_mode == Ctrl_V && dir == FORWARD)
9415 flags |= PUT_LINE_FORWARD;
9416 dir = BACKWARD;
9417 if ((VIsual_mode != 'V'
9418 && curwin->w_cursor.col < curbuf->b_op_start.col)
9419 || (VIsual_mode == 'V'
9420 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
9421 /* cursor is at the end of the line or end of file, put
9422 * forward. */
9423 dir = FORWARD;
Bram Moolenaarec11aef2013-09-22 15:23:44 +02009424 /* May have been reset in do_put(). */
9425 VIsual_active = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009426 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009427 do_put(cap->oap->regname, dir, cap->count1, flags);
9428
Bram Moolenaar071d4272004-06-13 20:20:40 +00009429 /* If a register was saved, put it back now. */
9430 if (reg2 != NULL)
9431 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009432
9433 /* What to reselect with "gv"? Selecting the just put text seems to
9434 * be the most useful, since the original text was removed. */
9435 if (was_visual)
9436 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00009437 curbuf->b_visual.vi_start = curbuf->b_op_start;
9438 curbuf->b_visual.vi_end = curbuf->b_op_end;
Bram Moolenaard29c6fe2015-11-19 20:11:54 +01009439 /* need to adjust cursor position */
9440 if (*p_sel == 'e')
9441 inc(&curbuf->b_visual.vi_end);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009442 }
9443
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009444 /* When all lines were selected and deleted do_put() leaves an empty
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009445 * line that needs to be deleted now. */
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009446 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00009447 {
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00009448 ml_delete(curbuf->b_ml.ml_line_count, TRUE);
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00009449
9450 /* If the cursor was in that line, move it to the end of the last
9451 * line. */
9452 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
9453 {
9454 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
9455 coladvance((colnr_T)MAXCOL);
9456 }
9457 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009458 auto_format(FALSE, TRUE);
9459 }
9460}
9461
9462/*
9463 * "o" and "O" commands.
9464 */
9465 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009466nv_open(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009467{
9468#ifdef FEAT_DIFF
9469 /* "do" is ":diffget" */
9470 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
9471 {
9472 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01009473 nv_diffgetput(FALSE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009474 }
9475 else
9476#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009477 if (VIsual_active) /* switch start and end of visual */
9478 v_swap_corners(cap->cmdchar);
9479 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009480 n_opencmd(cap);
9481}
9482
Bram Moolenaar071d4272004-06-13 20:20:40 +00009483#ifdef FEAT_NETBEANS_INTG
9484 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009485nv_nbcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009486{
9487 netbeans_keycommand(cap->nchar);
9488}
9489#endif
9490
9491#ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00009492 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009493nv_drop(cmdarg_T *cap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009494{
9495 do_put('~', BACKWARD, 1L, PUT_CURSEND);
9496}
9497#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00009498
9499#ifdef FEAT_AUTOCMD
9500/*
9501 * Trigger CursorHold event.
9502 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
9503 * input buffer. "did_cursorhold" is set to avoid retriggering.
9504 */
Bram Moolenaar3918c952005-03-15 22:34:55 +00009505 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009506nv_cursorhold(cmdarg_T *cap)
Bram Moolenaar3918c952005-03-15 22:34:55 +00009507{
9508 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
9509 did_cursorhold = TRUE;
Bram Moolenaarfc735152005-03-22 22:54:12 +00009510 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar3918c952005-03-15 22:34:55 +00009511}
9512#endif
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009513
9514/*
Bram Moolenaar89c17c02015-08-11 17:46:36 +02009515 * Calculate start/end virtual columns for operating in block mode.
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009516 */
9517 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01009518get_op_vcol(
9519 oparg_T *oap,
9520 colnr_T redo_VIsual_vcol,
9521 int initial) /* when TRUE adjust position for 'selectmode' */
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009522{
9523 colnr_T start, end;
9524
Bram Moolenaar89c17c02015-08-11 17:46:36 +02009525 if (VIsual_mode != Ctrl_V
9526 || (!initial && oap->end.col < W_WIDTH(curwin)))
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009527 return;
9528
Bram Moolenaar10ad1d92015-09-25 19:35:02 +02009529 oap->block_mode = TRUE;
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009530
9531#ifdef FEAT_MBYTE
9532 /* prevent from moving onto a trail byte */
9533 if (has_mbyte)
9534 mb_adjustpos(curwin->w_buffer, &oap->end);
9535#endif
9536
9537 getvvcol(curwin, &(oap->start), &oap->start_vcol, NULL, &oap->end_vcol);
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009538
Bram Moolenaar31b259b2015-07-28 11:21:32 +02009539 if (!redo_VIsual_busy)
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009540 {
Bram Moolenaar31b259b2015-07-28 11:21:32 +02009541 getvvcol(curwin, &(oap->end), &start, NULL, &end);
9542
9543 if (start < oap->start_vcol)
9544 oap->start_vcol = start;
9545 if (end > oap->end_vcol)
9546 {
9547 if (initial && *p_sel == 'e' && start >= 1
9548 && start - 1 >= oap->end_vcol)
9549 oap->end_vcol = start - 1;
9550 else
9551 oap->end_vcol = end;
9552 }
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009553 }
Bram Moolenaar31b259b2015-07-28 11:21:32 +02009554
Bram Moolenaar74db34c2015-06-25 13:30:46 +02009555 /* if '$' was used, get oap->end_vcol from longest line */
9556 if (curwin->w_curswant == MAXCOL)
9557 {
9558 curwin->w_cursor.col = MAXCOL;
9559 oap->end_vcol = 0;
9560 for (curwin->w_cursor.lnum = oap->start.lnum;
9561 curwin->w_cursor.lnum <= oap->end.lnum;
9562 ++curwin->w_cursor.lnum)
9563 {
9564 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &end);
9565 if (end > oap->end_vcol)
9566 oap->end_vcol = end;
9567 }
9568 }
9569 else if (redo_VIsual_busy)
9570 oap->end_vcol = oap->start_vcol + redo_VIsual_vcol - 1;
9571 /*
9572 * Correct oap->end.col and oap->start.col to be the
9573 * upper-left and lower-right corner of the block area.
9574 *
9575 * (Actually, this does convert column positions into character
9576 * positions)
9577 */
9578 curwin->w_cursor.lnum = oap->end.lnum;
9579 coladvance(oap->end_vcol);
9580 oap->end = curwin->w_cursor;
9581
9582 curwin->w_cursor = oap->start;
9583 coladvance(oap->start_vcol);
9584 oap->start = curwin->w_cursor;
9585}