Update credits
[MacVim.git] / src / normal.c
blobc509d774a219806c7e3e1ca571e20f22bead9fdc
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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.
15 #include "vim.h"
17 #ifdef FEAT_VISUAL
19 * The Visual area is remembered for reselection.
21 static int resel_VIsual_mode = NUL; /* 'v', 'V', or Ctrl-V */
22 static linenr_T resel_VIsual_line_count; /* number of lines */
23 static colnr_T resel_VIsual_col; /* nr of cols or end col */
25 static int restart_VIsual_select = 0;
26 #endif
28 static int
29 # ifdef __BORLANDC__
30 _RTLENTRYF
31 # endif
32 nv_compare __ARGS((const void *s1, const void *s2));
33 static int find_command __ARGS((int cmdchar));
34 static void op_colon __ARGS((oparg_T *oap));
35 static void op_function __ARGS((oparg_T *oap));
36 #if defined(FEAT_MOUSE) && defined(FEAT_VISUAL)
37 static void find_start_of_word __ARGS((pos_T *));
38 static void find_end_of_word __ARGS((pos_T *));
39 static int get_mouse_class __ARGS((char_u *p));
40 #endif
41 static void prep_redo_cmd __ARGS((cmdarg_T *cap));
42 static void prep_redo __ARGS((int regname, long, int, int, int, int, int));
43 static int checkclearop __ARGS((oparg_T *oap));
44 static int checkclearopq __ARGS((oparg_T *oap));
45 static void clearop __ARGS((oparg_T *oap));
46 static void clearopbeep __ARGS((oparg_T *oap));
47 #ifdef FEAT_VISUAL
48 static void unshift_special __ARGS((cmdarg_T *cap));
49 #endif
50 #ifdef FEAT_CMDL_INFO
51 static void del_from_showcmd __ARGS((int));
52 #endif
55 * nv_*(): functions called to handle Normal and Visual mode commands.
56 * n_*(): functions called to handle Normal mode commands.
57 * v_*(): functions called to handle Visual mode commands.
59 static void nv_ignore __ARGS((cmdarg_T *cap));
60 static void nv_nop __ARGS((cmdarg_T *cap));
61 static void nv_error __ARGS((cmdarg_T *cap));
62 static void nv_help __ARGS((cmdarg_T *cap));
63 static void nv_addsub __ARGS((cmdarg_T *cap));
64 static void nv_page __ARGS((cmdarg_T *cap));
65 static void nv_gd __ARGS((oparg_T *oap, int nchar, int thisblock));
66 static int nv_screengo __ARGS((oparg_T *oap, int dir, long dist));
67 #ifdef FEAT_MOUSE
68 static void nv_mousescroll __ARGS((cmdarg_T *cap));
69 static void nv_mouse __ARGS((cmdarg_T *cap));
70 #endif
71 static void nv_scroll_line __ARGS((cmdarg_T *cap));
72 static void nv_zet __ARGS((cmdarg_T *cap));
73 #ifdef FEAT_GUI
74 static void nv_ver_scrollbar __ARGS((cmdarg_T *cap));
75 static void nv_hor_scrollbar __ARGS((cmdarg_T *cap));
76 #endif
77 #ifdef FEAT_GUI_TABLINE
78 static void nv_tabline __ARGS((cmdarg_T *cap));
79 static void nv_tabmenu __ARGS((cmdarg_T *cap));
80 #endif
81 static void nv_exmode __ARGS((cmdarg_T *cap));
82 static void nv_colon __ARGS((cmdarg_T *cap));
83 static void nv_ctrlg __ARGS((cmdarg_T *cap));
84 static void nv_ctrlh __ARGS((cmdarg_T *cap));
85 static void nv_clear __ARGS((cmdarg_T *cap));
86 static void nv_ctrlo __ARGS((cmdarg_T *cap));
87 static void nv_hat __ARGS((cmdarg_T *cap));
88 static void nv_Zet __ARGS((cmdarg_T *cap));
89 static void nv_ident __ARGS((cmdarg_T *cap));
90 static void nv_tagpop __ARGS((cmdarg_T *cap));
91 static void nv_scroll __ARGS((cmdarg_T *cap));
92 static void nv_right __ARGS((cmdarg_T *cap));
93 static void nv_left __ARGS((cmdarg_T *cap));
94 static void nv_up __ARGS((cmdarg_T *cap));
95 static void nv_down __ARGS((cmdarg_T *cap));
96 #ifdef FEAT_SEARCHPATH
97 static void nv_gotofile __ARGS((cmdarg_T *cap));
98 #endif
99 static void nv_end __ARGS((cmdarg_T *cap));
100 static void nv_dollar __ARGS((cmdarg_T *cap));
101 static void nv_search __ARGS((cmdarg_T *cap));
102 static void nv_next __ARGS((cmdarg_T *cap));
103 static void normal_search __ARGS((cmdarg_T *cap, int dir, char_u *pat, int opt));
104 static void nv_csearch __ARGS((cmdarg_T *cap));
105 static void nv_brackets __ARGS((cmdarg_T *cap));
106 static void nv_percent __ARGS((cmdarg_T *cap));
107 static void nv_brace __ARGS((cmdarg_T *cap));
108 static void nv_mark __ARGS((cmdarg_T *cap));
109 static void nv_findpar __ARGS((cmdarg_T *cap));
110 static void nv_undo __ARGS((cmdarg_T *cap));
111 static void nv_kundo __ARGS((cmdarg_T *cap));
112 static void nv_Replace __ARGS((cmdarg_T *cap));
113 #ifdef FEAT_VREPLACE
114 static void nv_vreplace __ARGS((cmdarg_T *cap));
115 #endif
116 #ifdef FEAT_VISUAL
117 static void v_swap_corners __ARGS((int cmdchar));
118 #endif
119 static void nv_replace __ARGS((cmdarg_T *cap));
120 static void n_swapchar __ARGS((cmdarg_T *cap));
121 static void nv_cursormark __ARGS((cmdarg_T *cap, int flag, pos_T *pos));
122 #ifdef FEAT_VISUAL
123 static void v_visop __ARGS((cmdarg_T *cap));
124 #endif
125 static void nv_subst __ARGS((cmdarg_T *cap));
126 static void nv_abbrev __ARGS((cmdarg_T *cap));
127 static void nv_optrans __ARGS((cmdarg_T *cap));
128 static void nv_gomark __ARGS((cmdarg_T *cap));
129 static void nv_pcmark __ARGS((cmdarg_T *cap));
130 static void nv_regname __ARGS((cmdarg_T *cap));
131 #ifdef FEAT_VISUAL
132 static void nv_visual __ARGS((cmdarg_T *cap));
133 static void n_start_visual_mode __ARGS((int c));
134 #endif
135 static void nv_window __ARGS((cmdarg_T *cap));
136 static void nv_suspend __ARGS((cmdarg_T *cap));
137 static void nv_g_cmd __ARGS((cmdarg_T *cap));
138 static void n_opencmd __ARGS((cmdarg_T *cap));
139 static void nv_dot __ARGS((cmdarg_T *cap));
140 static void nv_redo __ARGS((cmdarg_T *cap));
141 static void nv_Undo __ARGS((cmdarg_T *cap));
142 static void nv_tilde __ARGS((cmdarg_T *cap));
143 static void nv_operator __ARGS((cmdarg_T *cap));
144 #ifdef FEAT_EVAL
145 static void set_op_var __ARGS((int optype));
146 #endif
147 static void nv_lineop __ARGS((cmdarg_T *cap));
148 static void nv_home __ARGS((cmdarg_T *cap));
149 static void nv_pipe __ARGS((cmdarg_T *cap));
150 static void nv_bck_word __ARGS((cmdarg_T *cap));
151 static void nv_wordcmd __ARGS((cmdarg_T *cap));
152 static void nv_beginline __ARGS((cmdarg_T *cap));
153 static void adjust_cursor __ARGS((oparg_T *oap));
154 #ifdef FEAT_VISUAL
155 static void adjust_for_sel __ARGS((cmdarg_T *cap));
156 static int unadjust_for_sel __ARGS((void));
157 static void nv_select __ARGS((cmdarg_T *cap));
158 #endif
159 static void nv_goto __ARGS((cmdarg_T *cap));
160 static void nv_normal __ARGS((cmdarg_T *cap));
161 static void nv_esc __ARGS((cmdarg_T *oap));
162 static void nv_edit __ARGS((cmdarg_T *cap));
163 static void invoke_edit __ARGS((cmdarg_T *cap, int repl, int cmd, int startln));
164 #ifdef FEAT_TEXTOBJ
165 static void nv_object __ARGS((cmdarg_T *cap));
166 #endif
167 static void nv_record __ARGS((cmdarg_T *cap));
168 static void nv_at __ARGS((cmdarg_T *cap));
169 static void nv_halfpage __ARGS((cmdarg_T *cap));
170 static void nv_join __ARGS((cmdarg_T *cap));
171 static void nv_put __ARGS((cmdarg_T *cap));
172 static void nv_open __ARGS((cmdarg_T *cap));
173 #ifdef FEAT_SNIFF
174 static void nv_sniff __ARGS((cmdarg_T *cap));
175 #endif
176 #ifdef FEAT_NETBEANS_INTG
177 static void nv_nbcmd __ARGS((cmdarg_T *cap));
178 #endif
179 #ifdef FEAT_DND
180 static void nv_drop __ARGS((cmdarg_T *cap));
181 #endif
182 #ifdef FEAT_AUTOCMD
183 static void nv_cursorhold __ARGS((cmdarg_T *cap));
184 #endif
187 * Function to be called for a Normal or Visual mode command.
188 * The argument is a cmdarg_T.
190 typedef void (*nv_func_T) __ARGS((cmdarg_T *cap));
192 /* Values for cmd_flags. */
193 #define NV_NCH 0x01 /* may need to get a second char */
194 #define NV_NCH_NOP (0x02|NV_NCH) /* get second char when no operator pending */
195 #define NV_NCH_ALW (0x04|NV_NCH) /* always get a second char */
196 #define NV_LANG 0x08 /* second char needs language adjustment */
198 #define NV_SS 0x10 /* may start selection */
199 #define NV_SSS 0x20 /* may start selection with shift modifier */
200 #define NV_STS 0x40 /* may stop selection without shift modif. */
201 #define NV_RL 0x80 /* 'rightleft' modifies command */
202 #define NV_KEEPREG 0x100 /* don't clear regname */
203 #define NV_NCW 0x200 /* not allowed in command-line window */
206 * Generally speaking, every Normal mode command should either clear any
207 * pending operator (with *clearop*()), or set the motion type variable
208 * oap->motion_type.
210 * When a cursor motion command is made, it is marked as being a character or
211 * line oriented motion. Then, if an operator is in effect, the operation
212 * becomes character or line oriented accordingly.
216 * This table contains one entry for every Normal or Visual mode command.
217 * The order doesn't matter, init_normal_cmds() will create a sorted index.
218 * It is faster when all keys from zero to '~' are present.
220 static const struct nv_cmd
222 int cmd_char; /* (first) command character */
223 nv_func_T cmd_func; /* function for this command */
224 short_u cmd_flags; /* NV_ flags */
225 short cmd_arg; /* value for ca.arg */
226 } nv_cmds[] =
228 {NUL, nv_error, 0, 0},
229 {Ctrl_A, nv_addsub, 0, 0},
230 {Ctrl_B, nv_page, NV_STS, BACKWARD},
231 {Ctrl_C, nv_esc, 0, TRUE},
232 {Ctrl_D, nv_halfpage, 0, 0},
233 {Ctrl_E, nv_scroll_line, 0, TRUE},
234 {Ctrl_F, nv_page, NV_STS, FORWARD},
235 {Ctrl_G, nv_ctrlg, 0, 0},
236 {Ctrl_H, nv_ctrlh, 0, 0},
237 {Ctrl_I, nv_pcmark, 0, 0},
238 {NL, nv_down, 0, FALSE},
239 {Ctrl_K, nv_error, 0, 0},
240 {Ctrl_L, nv_clear, 0, 0},
241 {Ctrl_M, nv_down, 0, TRUE},
242 {Ctrl_N, nv_down, NV_STS, FALSE},
243 {Ctrl_O, nv_ctrlo, 0, 0},
244 {Ctrl_P, nv_up, NV_STS, FALSE},
245 #ifdef FEAT_VISUAL
246 {Ctrl_Q, nv_visual, 0, FALSE},
247 #else
248 {Ctrl_Q, nv_ignore, 0, 0},
249 #endif
250 {Ctrl_R, nv_redo, 0, 0},
251 {Ctrl_S, nv_ignore, 0, 0},
252 {Ctrl_T, nv_tagpop, NV_NCW, 0},
253 {Ctrl_U, nv_halfpage, 0, 0},
254 #ifdef FEAT_VISUAL
255 {Ctrl_V, nv_visual, 0, FALSE},
256 {'V', nv_visual, 0, FALSE},
257 {'v', nv_visual, 0, FALSE},
258 #else
259 {Ctrl_V, nv_error, 0, 0},
260 {'V', nv_error, 0, 0},
261 {'v', nv_error, 0, 0},
262 #endif
263 {Ctrl_W, nv_window, 0, 0},
264 {Ctrl_X, nv_addsub, 0, 0},
265 {Ctrl_Y, nv_scroll_line, 0, FALSE},
266 {Ctrl_Z, nv_suspend, 0, 0},
267 {ESC, nv_esc, 0, FALSE},
268 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0},
269 {Ctrl_RSB, nv_ident, NV_NCW, 0},
270 {Ctrl_HAT, nv_hat, NV_NCW, 0},
271 {Ctrl__, nv_error, 0, 0},
272 {' ', nv_right, 0, 0},
273 {'!', nv_operator, 0, 0},
274 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0},
275 {'#', nv_ident, 0, 0},
276 {'$', nv_dollar, 0, 0},
277 {'%', nv_percent, 0, 0},
278 {'&', nv_optrans, 0, 0},
279 {'\'', nv_gomark, NV_NCH_ALW, TRUE},
280 {'(', nv_brace, 0, BACKWARD},
281 {')', nv_brace, 0, FORWARD},
282 {'*', nv_ident, 0, 0},
283 {'+', nv_down, 0, TRUE},
284 {',', nv_csearch, 0, TRUE},
285 {'-', nv_up, 0, TRUE},
286 {'.', nv_dot, NV_KEEPREG, 0},
287 {'/', nv_search, 0, FALSE},
288 {'0', nv_beginline, 0, 0},
289 {'1', nv_ignore, 0, 0},
290 {'2', nv_ignore, 0, 0},
291 {'3', nv_ignore, 0, 0},
292 {'4', nv_ignore, 0, 0},
293 {'5', nv_ignore, 0, 0},
294 {'6', nv_ignore, 0, 0},
295 {'7', nv_ignore, 0, 0},
296 {'8', nv_ignore, 0, 0},
297 {'9', nv_ignore, 0, 0},
298 {':', nv_colon, 0, 0},
299 {';', nv_csearch, 0, FALSE},
300 {'<', nv_operator, NV_RL, 0},
301 {'=', nv_operator, 0, 0},
302 {'>', nv_operator, NV_RL, 0},
303 {'?', nv_search, 0, FALSE},
304 {'@', nv_at, NV_NCH_NOP, FALSE},
305 {'A', nv_edit, 0, 0},
306 {'B', nv_bck_word, 0, 1},
307 {'C', nv_abbrev, NV_KEEPREG, 0},
308 {'D', nv_abbrev, NV_KEEPREG, 0},
309 {'E', nv_wordcmd, 0, TRUE},
310 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
311 {'G', nv_goto, 0, TRUE},
312 {'H', nv_scroll, 0, 0},
313 {'I', nv_edit, 0, 0},
314 {'J', nv_join, 0, 0},
315 {'K', nv_ident, 0, 0},
316 {'L', nv_scroll, 0, 0},
317 {'M', nv_scroll, 0, 0},
318 {'N', nv_next, 0, SEARCH_REV},
319 {'O', nv_open, 0, 0},
320 {'P', nv_put, 0, 0},
321 {'Q', nv_exmode, NV_NCW, 0},
322 {'R', nv_Replace, 0, FALSE},
323 {'S', nv_subst, NV_KEEPREG, 0},
324 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
325 {'U', nv_Undo, 0, 0},
326 {'W', nv_wordcmd, 0, TRUE},
327 {'X', nv_abbrev, NV_KEEPREG, 0},
328 {'Y', nv_abbrev, NV_KEEPREG, 0},
329 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0},
330 {'[', nv_brackets, NV_NCH_ALW, BACKWARD},
331 {'\\', nv_error, 0, 0},
332 {']', nv_brackets, NV_NCH_ALW, FORWARD},
333 {'^', nv_beginline, 0, BL_WHITE | BL_FIX},
334 {'_', nv_lineop, 0, 0},
335 {'`', nv_gomark, NV_NCH_ALW, FALSE},
336 {'a', nv_edit, NV_NCH, 0},
337 {'b', nv_bck_word, 0, 0},
338 {'c', nv_operator, 0, 0},
339 {'d', nv_operator, 0, 0},
340 {'e', nv_wordcmd, 0, FALSE},
341 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
342 {'g', nv_g_cmd, NV_NCH_ALW, FALSE},
343 {'h', nv_left, NV_RL, 0},
344 {'i', nv_edit, NV_NCH, 0},
345 {'j', nv_down, 0, FALSE},
346 {'k', nv_up, 0, FALSE},
347 {'l', nv_right, NV_RL, 0},
348 {'m', nv_mark, NV_NCH_NOP, 0},
349 {'n', nv_next, 0, 0},
350 {'o', nv_open, 0, 0},
351 {'p', nv_put, 0, 0},
352 {'q', nv_record, NV_NCH, 0},
353 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0},
354 {'s', nv_subst, NV_KEEPREG, 0},
355 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
356 {'u', nv_undo, 0, 0},
357 {'w', nv_wordcmd, 0, FALSE},
358 {'x', nv_abbrev, NV_KEEPREG, 0},
359 {'y', nv_operator, 0, 0},
360 {'z', nv_zet, NV_NCH_ALW, 0},
361 {'{', nv_findpar, 0, BACKWARD},
362 {'|', nv_pipe, 0, 0},
363 {'}', nv_findpar, 0, FORWARD},
364 {'~', nv_tilde, 0, 0},
366 /* pound sign */
367 {POUND, nv_ident, 0, 0},
368 #ifdef FEAT_MOUSE
369 {K_MOUSEUP, nv_mousescroll, 0, TRUE},
370 {K_MOUSEDOWN, nv_mousescroll, 0, FALSE},
371 {K_LEFTMOUSE, nv_mouse, 0, 0},
372 {K_LEFTMOUSE_NM, nv_mouse, 0, 0},
373 {K_LEFTDRAG, nv_mouse, 0, 0},
374 {K_LEFTRELEASE, nv_mouse, 0, 0},
375 {K_LEFTRELEASE_NM, nv_mouse, 0, 0},
376 {K_MIDDLEMOUSE, nv_mouse, 0, 0},
377 {K_MIDDLEDRAG, nv_mouse, 0, 0},
378 {K_MIDDLERELEASE, nv_mouse, 0, 0},
379 {K_RIGHTMOUSE, nv_mouse, 0, 0},
380 {K_RIGHTDRAG, nv_mouse, 0, 0},
381 {K_RIGHTRELEASE, nv_mouse, 0, 0},
382 {K_X1MOUSE, nv_mouse, 0, 0},
383 {K_X1DRAG, nv_mouse, 0, 0},
384 {K_X1RELEASE, nv_mouse, 0, 0},
385 {K_X2MOUSE, nv_mouse, 0, 0},
386 {K_X2DRAG, nv_mouse, 0, 0},
387 {K_X2RELEASE, nv_mouse, 0, 0},
388 #endif
389 {K_IGNORE, nv_ignore, NV_KEEPREG, 0},
390 {K_NOP, nv_nop, 0, 0},
391 {K_INS, nv_edit, 0, 0},
392 {K_KINS, nv_edit, 0, 0},
393 {K_BS, nv_ctrlh, 0, 0},
394 {K_UP, nv_up, NV_SSS|NV_STS, FALSE},
395 {K_S_UP, nv_page, NV_SS, BACKWARD},
396 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE},
397 {K_S_DOWN, nv_page, NV_SS, FORWARD},
398 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0},
399 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0},
400 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1},
401 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0},
402 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE},
403 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE},
404 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
405 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
406 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
407 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
408 {K_END, nv_end, NV_SSS|NV_STS, FALSE},
409 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE},
410 {K_S_END, nv_end, NV_SS, FALSE},
411 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE},
412 {K_HOME, nv_home, NV_SSS|NV_STS, 0},
413 {K_KHOME, nv_home, NV_SSS|NV_STS, 0},
414 {K_S_HOME, nv_home, NV_SS, 0},
415 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE},
416 {K_DEL, nv_abbrev, 0, 0},
417 {K_KDEL, nv_abbrev, 0, 0},
418 {K_UNDO, nv_kundo, 0, 0},
419 {K_HELP, nv_help, NV_NCW, 0},
420 {K_F1, nv_help, NV_NCW, 0},
421 {K_XF1, nv_help, NV_NCW, 0},
422 #ifdef FEAT_VISUAL
423 {K_SELECT, nv_select, 0, 0},
424 #endif
425 #ifdef FEAT_GUI
426 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0},
427 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0},
428 #endif
429 #ifdef FEAT_GUI_TABLINE
430 {K_TABLINE, nv_tabline, 0, 0},
431 {K_TABMENU, nv_tabmenu, 0, 0},
432 #endif
433 #ifdef FEAT_FKMAP
434 {K_F8, farsi_fkey, 0, 0},
435 {K_F9, farsi_fkey, 0, 0},
436 #endif
437 #ifdef FEAT_SNIFF
438 {K_SNIFF, nv_sniff, 0, 0},
439 #endif
440 #ifdef FEAT_NETBEANS_INTG
441 {K_F21, nv_nbcmd, NV_NCH_ALW, 0},
442 #endif
443 #ifdef FEAT_DND
444 {K_DROP, nv_drop, NV_STS, 0},
445 #endif
446 #ifdef FEAT_AUTOCMD
447 {K_CURSORHOLD, nv_cursorhold, NV_KEEPREG, 0},
448 #endif
451 /* Number of commands in nv_cmds[]. */
452 #define NV_CMDS_SIZE (sizeof(nv_cmds) / sizeof(struct nv_cmd))
454 /* Sorted index of commands in nv_cmds[]. */
455 static short nv_cmd_idx[NV_CMDS_SIZE];
457 /* The highest index for which
458 * nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char] */
459 static int nv_max_linear;
462 * Compare functions for qsort() below, that checks the command character
463 * through the index in nv_cmd_idx[].
465 static int
466 #ifdef __BORLANDC__
467 _RTLENTRYF
468 #endif
469 nv_compare(s1, s2)
470 const void *s1;
471 const void *s2;
473 int c1, c2;
475 /* The commands are sorted on absolute value. */
476 c1 = nv_cmds[*(const short *)s1].cmd_char;
477 c2 = nv_cmds[*(const short *)s2].cmd_char;
478 if (c1 < 0)
479 c1 = -c1;
480 if (c2 < 0)
481 c2 = -c2;
482 return c1 - c2;
486 * Initialize the nv_cmd_idx[] table.
488 void
489 init_normal_cmds()
491 int i;
493 /* Fill the index table with a one to one relation. */
494 for (i = 0; i < NV_CMDS_SIZE; ++i)
495 nv_cmd_idx[i] = i;
497 /* Sort the commands by the command character. */
498 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
500 /* Find the first entry that can't be indexed by the command character. */
501 for (i = 0; i < NV_CMDS_SIZE; ++i)
502 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char)
503 break;
504 nv_max_linear = i - 1;
508 * Search for a command in the commands table.
509 * Returns -1 for invalid command.
511 static int
512 find_command(cmdchar)
513 int cmdchar;
515 int i;
516 int idx;
517 int top, bot;
518 int c;
520 #ifdef FEAT_MBYTE
521 /* A multi-byte character is never a command. */
522 if (cmdchar >= 0x100)
523 return -1;
524 #endif
526 /* We use the absolute value of the character. Special keys have a
527 * negative value, but are sorted on their absolute value. */
528 if (cmdchar < 0)
529 cmdchar = -cmdchar;
531 /* If the character is in the first part: The character is the index into
532 * nv_cmd_idx[]. */
533 if (cmdchar <= nv_max_linear)
534 return nv_cmd_idx[cmdchar];
536 /* Perform a binary search. */
537 bot = nv_max_linear + 1;
538 top = NV_CMDS_SIZE - 1;
539 idx = -1;
540 while (bot <= top)
542 i = (top + bot) / 2;
543 c = nv_cmds[nv_cmd_idx[i]].cmd_char;
544 if (c < 0)
545 c = -c;
546 if (cmdchar == c)
548 idx = nv_cmd_idx[i];
549 break;
551 if (cmdchar > c)
552 bot = i + 1;
553 else
554 top = i - 1;
556 return idx;
560 * Execute a command in Normal mode.
562 /*ARGSUSED*/
563 void
564 normal_cmd(oap, toplevel)
565 oparg_T *oap;
566 int toplevel; /* TRUE when called from main() */
568 static long opcount = 0; /* ca.opcount saved here */
569 cmdarg_T ca; /* command arguments */
570 int c;
571 int ctrl_w = FALSE; /* got CTRL-W command */
572 int old_col = curwin->w_curswant;
573 #ifdef FEAT_CMDL_INFO
574 int need_flushbuf; /* need to call out_flush() */
575 #endif
576 #ifdef FEAT_VISUAL
577 pos_T old_pos; /* cursor position before command */
578 int mapped_len;
579 static int old_mapped_len = 0;
580 #endif
581 int idx;
583 vim_memset(&ca, 0, sizeof(ca)); /* also resets ca.retval */
584 ca.oap = oap;
585 ca.opcount = opcount;
587 #ifdef FEAT_SNIFF
588 want_sniff_request = sniff_connected;
589 #endif
592 * If there is an operator pending, then the command we take this time
593 * will terminate it. Finish_op tells us to finish the operation before
594 * returning this time (unless the operation was cancelled).
596 #ifdef CURSOR_SHAPE
597 c = finish_op;
598 #endif
599 finish_op = (oap->op_type != OP_NOP);
600 #ifdef CURSOR_SHAPE
601 if (finish_op != c)
603 ui_cursor_shape(); /* may show different cursor shape */
604 # ifdef FEAT_MOUSESHAPE
605 update_mouseshape(-1);
606 # endif
608 #endif
610 if (!finish_op && !oap->regname)
611 ca.opcount = 0;
613 #ifdef FEAT_VISUAL
614 mapped_len = typebuf_maplen();
615 #endif
617 State = NORMAL_BUSY;
618 #ifdef USE_ON_FLY_SCROLL
619 dont_scroll = FALSE; /* allow scrolling here */
620 #endif
623 * Get the command character from the user.
625 c = safe_vgetc();
627 #ifdef FEAT_LANGMAP
628 LANGMAP_ADJUST(c, TRUE);
629 #endif
631 #ifdef FEAT_VISUAL
633 * If a mapping was started in Visual or Select mode, remember the length
634 * of the mapping. This is used below to not return to Insert mode for as
635 * long as the mapping is being executed.
637 if (restart_edit == 0)
638 old_mapped_len = 0;
639 else if (old_mapped_len
640 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
641 old_mapped_len = typebuf_maplen();
642 #endif
644 if (c == NUL)
645 c = K_ZERO;
647 #ifdef FEAT_VISUAL
649 * In Select mode, typed text replaces the selection.
651 if (VIsual_active
652 && VIsual_select
653 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
655 /* Fake a "c"hange command. When "restart_edit" is set (e.g., because
656 * 'insertmode' is set) fake a "d"elete command, Insert mode will
657 * restart automatically.
658 * Insert the typed character in the typeahead buffer, so that it can
659 * be mapped in Insert mode. Required for ":lmap" to work. */
660 ins_char_typebuf(c);
661 if (restart_edit != 0)
662 c = 'd';
663 else
664 c = 'c';
665 msg_nowait = TRUE; /* don't delay going to insert mode */
667 #endif
669 #ifdef FEAT_CMDL_INFO
670 need_flushbuf = add_to_showcmd(c);
671 #endif
673 getcount:
674 #ifdef FEAT_VISUAL
675 if (!(VIsual_active && VIsual_select))
676 #endif
679 * Handle a count before a command and compute ca.count0.
680 * Note that '0' is a command and not the start of a count, but it's
681 * part of a count after other digits.
683 while ( (c >= '1' && c <= '9')
684 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
686 if (c == K_DEL || c == K_KDEL)
688 ca.count0 /= 10;
689 #ifdef FEAT_CMDL_INFO
690 del_from_showcmd(4); /* delete the digit and ~@% */
691 #endif
693 else
694 ca.count0 = ca.count0 * 10 + (c - '0');
695 if (ca.count0 < 0) /* got too large! */
696 ca.count0 = 999999999L;
697 #ifdef FEAT_EVAL
698 /* Set v:count here, when called from main() and not a stuffed
699 * command, so that v:count can be used in an expression mapping
700 * right after the count. */
701 if (toplevel && stuff_empty())
702 set_vcount(ca.count0, ca.count0 == 0 ? 1 : ca.count0);
703 #endif
704 if (ctrl_w)
706 ++no_mapping;
707 ++allow_keys; /* no mapping for nchar, but keys */
709 ++no_zero_mapping; /* don't map zero here */
710 c = plain_vgetc();
711 #ifdef FEAT_LANGMAP
712 LANGMAP_ADJUST(c, TRUE);
713 #endif
714 --no_zero_mapping;
715 if (ctrl_w)
717 --no_mapping;
718 --allow_keys;
720 #ifdef FEAT_CMDL_INFO
721 need_flushbuf |= add_to_showcmd(c);
722 #endif
726 * If we got CTRL-W there may be a/another count
728 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
730 ctrl_w = TRUE;
731 ca.opcount = ca.count0; /* remember first count */
732 ca.count0 = 0;
733 ++no_mapping;
734 ++allow_keys; /* no mapping for nchar, but keys */
735 c = plain_vgetc(); /* get next character */
736 #ifdef FEAT_LANGMAP
737 LANGMAP_ADJUST(c, TRUE);
738 #endif
739 --no_mapping;
740 --allow_keys;
741 #ifdef FEAT_CMDL_INFO
742 need_flushbuf |= add_to_showcmd(c);
743 #endif
744 goto getcount; /* jump back */
749 * If we're in the middle of an operator (including after entering a yank
750 * buffer with '"') AND we had a count before the operator, then that
751 * count overrides the current value of ca.count0.
752 * What this means effectively, is that commands like "3dw" get turned
753 * into "d3w" which makes things fall into place pretty neatly.
754 * If you give a count before AND after the operator, they are multiplied.
756 if (ca.opcount != 0)
758 if (ca.count0)
759 ca.count0 *= ca.opcount;
760 else
761 ca.count0 = ca.opcount;
765 * Always remember the count. It will be set to zero (on the next call,
766 * above) when there is no pending operator.
767 * When called from main(), save the count for use by the "count" built-in
768 * variable.
770 ca.opcount = ca.count0;
771 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
773 #ifdef FEAT_EVAL
775 * Only set v:count when called from main() and not a stuffed command.
777 if (toplevel && stuff_empty())
778 set_vcount(ca.count0, ca.count1);
779 #endif
782 * Find the command character in the table of commands.
783 * For CTRL-W we already got nchar when looking for a count.
785 if (ctrl_w)
787 ca.nchar = c;
788 ca.cmdchar = Ctrl_W;
790 else
791 ca.cmdchar = c;
792 idx = find_command(ca.cmdchar);
793 if (idx < 0)
795 /* Not a known command: beep. */
796 clearopbeep(oap);
797 goto normal_end;
800 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
802 /* This command is not allowed wile editing a ccmdline: beep. */
803 clearopbeep(oap);
804 text_locked_msg();
805 goto normal_end;
807 #ifdef FEAT_AUTOCMD
808 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
809 goto normal_end;
810 #endif
812 #ifdef FEAT_VISUAL
814 * In Visual/Select mode, a few keys are handled in a special way.
816 if (VIsual_active)
818 /* when 'keymodel' contains "stopsel" may stop Select/Visual mode */
819 if (km_stopsel
820 && (nv_cmds[idx].cmd_flags & NV_STS)
821 && !(mod_mask & MOD_MASK_SHIFT))
823 end_visual_mode();
824 redraw_curbuf_later(INVERTED);
827 /* Keys that work different when 'keymodel' contains "startsel" */
828 if (km_startsel)
830 if (nv_cmds[idx].cmd_flags & NV_SS)
832 unshift_special(&ca);
833 idx = find_command(ca.cmdchar);
834 if (idx < 0)
836 /* Just in case */
837 clearopbeep(oap);
838 goto normal_end;
841 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
842 && (mod_mask & MOD_MASK_SHIFT))
844 mod_mask &= ~MOD_MASK_SHIFT;
848 #endif
850 #ifdef FEAT_RIGHTLEFT
851 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
852 && (nv_cmds[idx].cmd_flags & NV_RL))
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)
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;
870 idx = find_command(ca.cmdchar);
872 #endif
875 * Get an additional character if we need one.
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')
886 && (oap->op_type != OP_NOP
887 #ifdef FEAT_VISUAL
888 || VIsual_active
889 #endif
890 ))))
892 int *cp;
893 int repl = FALSE; /* get character for replace mode */
894 int lit = FALSE; /* get extra character literally */
895 int langmap_active = FALSE; /* using :lmap mappings */
896 int lang; /* getting a text character */
897 #ifdef USE_IM_CONTROL
898 int save_smd; /* saved value of p_smd */
899 #endif
901 ++no_mapping;
902 ++allow_keys; /* no mapping for nchar, but allow key codes */
903 #ifdef FEAT_AUTOCMD
904 /* Don't generate a CursorHold event here, most commands can't handle
905 * it, e.g., nv_replace(), nv_csearch(). */
906 did_cursorhold = TRUE;
907 #endif
908 if (ca.cmdchar == 'g')
911 * For 'g' get the next character now, so that we can check for
912 * "gr", "g'" and "g`".
914 ca.nchar = plain_vgetc();
915 #ifdef FEAT_LANGMAP
916 LANGMAP_ADJUST(ca.nchar, TRUE);
917 #endif
918 #ifdef FEAT_CMDL_INFO
919 need_flushbuf |= add_to_showcmd(ca.nchar);
920 #endif
921 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
922 || ca.nchar == Ctrl_BSL)
924 cp = &ca.extra_char; /* need to get a third character */
925 if (ca.nchar != 'r')
926 lit = TRUE; /* get it literally */
927 else
928 repl = TRUE; /* get it in replace mode */
930 else
931 cp = NULL; /* no third character needed */
933 else
935 if (ca.cmdchar == 'r') /* get it in replace mode */
936 repl = TRUE;
937 cp = &ca.nchar;
939 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
942 * Get a second or third character.
944 if (cp != NULL)
946 #ifdef CURSOR_SHAPE
947 if (repl)
949 State = REPLACE; /* pretend Replace mode */
950 ui_cursor_shape(); /* show different cursor shape */
952 #endif
953 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
955 /* Allow mappings defined with ":lmap". */
956 --no_mapping;
957 --allow_keys;
958 if (repl)
959 State = LREPLACE;
960 else
961 State = LANGMAP;
962 langmap_active = TRUE;
964 #ifdef USE_IM_CONTROL
965 save_smd = p_smd;
966 p_smd = FALSE; /* Don't let the IM code show the mode here */
967 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
968 im_set_active(TRUE);
969 #endif
971 *cp = plain_vgetc();
973 if (langmap_active)
975 /* Undo the decrement done above */
976 ++no_mapping;
977 ++allow_keys;
978 State = NORMAL_BUSY;
980 #ifdef USE_IM_CONTROL
981 if (lang)
983 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
984 im_save_status(&curbuf->b_p_iminsert);
985 im_set_active(FALSE);
987 p_smd = save_smd;
988 #endif
989 #ifdef CURSOR_SHAPE
990 State = NORMAL_BUSY;
991 #endif
992 #ifdef FEAT_CMDL_INFO
993 need_flushbuf |= add_to_showcmd(*cp);
994 #endif
996 if (!lit)
998 #ifdef FEAT_DIGRAPHS
999 /* Typing CTRL-K gets a digraph. */
1000 if (*cp == Ctrl_K
1001 && ((nv_cmds[idx].cmd_flags & NV_LANG)
1002 || cp == &ca.extra_char)
1003 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
1005 c = get_digraph(FALSE);
1006 if (c > 0)
1008 *cp = c;
1009 # ifdef FEAT_CMDL_INFO
1010 /* Guessing how to update showcmd here... */
1011 del_from_showcmd(3);
1012 need_flushbuf |= add_to_showcmd(*cp);
1013 # endif
1016 #endif
1018 #ifdef FEAT_LANGMAP
1019 /* adjust chars > 127, except after "tTfFr" commands */
1020 LANGMAP_ADJUST(*cp, !lang);
1021 #endif
1022 #ifdef FEAT_RIGHTLEFT
1023 /* adjust Hebrew mapped char */
1024 if (p_hkmap && lang && KeyTyped)
1025 *cp = hkmap(*cp);
1026 # ifdef FEAT_FKMAP
1027 /* adjust Farsi mapped char */
1028 if (p_fkmap && lang && KeyTyped)
1029 *cp = fkmap(*cp);
1030 # endif
1031 #endif
1035 * When the next character is CTRL-\ a following CTRL-N means the
1036 * command is aborted and we go to Normal mode.
1038 if (cp == &ca.extra_char
1039 && ca.nchar == Ctrl_BSL
1040 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
1042 ca.cmdchar = Ctrl_BSL;
1043 ca.nchar = ca.extra_char;
1044 idx = find_command(ca.cmdchar);
1046 else if (*cp == Ctrl_BSL)
1048 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
1050 /* There is a busy wait here when typing "f<C-\>" and then
1051 * something different from CTRL-N. Can't be avoided. */
1052 while ((c = vpeekc()) <= 0 && towait > 0L)
1054 do_sleep(towait > 50L ? 50L : towait);
1055 towait -= 50L;
1057 if (c > 0)
1059 c = plain_vgetc();
1060 if (c != Ctrl_N && c != Ctrl_G)
1061 vungetc(c);
1062 else
1064 ca.cmdchar = Ctrl_BSL;
1065 ca.nchar = c;
1066 idx = find_command(ca.cmdchar);
1071 #ifdef FEAT_MBYTE
1072 /* When getting a text character and the next character is a
1073 * multi-byte character, it could be a composing character.
1074 * However, don't wait for it to arrive. */
1075 while (enc_utf8 && lang && (c = vpeekc()) > 0
1076 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1078 c = plain_vgetc();
1079 if (!utf_iscomposing(c))
1081 vungetc(c); /* it wasn't, put it back */
1082 break;
1084 else if (ca.ncharC1 == 0)
1085 ca.ncharC1 = c;
1086 else
1087 ca.ncharC2 = c;
1089 #endif
1091 --no_mapping;
1092 --allow_keys;
1095 #ifdef FEAT_CMDL_INFO
1097 * Flush the showcmd characters onto the screen so we can see them while
1098 * the command is being executed. Only do this when the shown command was
1099 * actually displayed, otherwise this will slow down a lot when executing
1100 * mappings.
1102 if (need_flushbuf)
1103 out_flush();
1104 #endif
1105 #ifdef FEAT_AUTOCMD
1106 did_cursorhold = FALSE;
1107 #endif
1109 State = NORMAL;
1111 if (ca.nchar == ESC)
1113 clearop(oap);
1114 if (restart_edit == 0 && goto_im())
1115 restart_edit = 'a';
1116 goto normal_end;
1119 if (ca.cmdchar != K_IGNORE)
1121 msg_didout = FALSE; /* don't scroll screen up for normal command */
1122 msg_col = 0;
1125 #ifdef FEAT_VISUAL
1126 old_pos = curwin->w_cursor; /* remember where cursor was */
1128 /* When 'keymodel' contains "startsel" some keys start Select/Visual
1129 * mode. */
1130 if (!VIsual_active && km_startsel)
1132 if (nv_cmds[idx].cmd_flags & NV_SS)
1134 start_selection();
1135 unshift_special(&ca);
1136 idx = find_command(ca.cmdchar);
1138 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1139 && (mod_mask & MOD_MASK_SHIFT))
1141 start_selection();
1142 mod_mask &= ~MOD_MASK_SHIFT;
1145 #endif
1148 * Execute the command!
1149 * Call the command function found in the commands table.
1151 ca.arg = nv_cmds[idx].cmd_arg;
1152 (nv_cmds[idx].cmd_func)(&ca);
1155 * If we didn't start or finish an operator, reset oap->regname, unless we
1156 * need it later.
1158 if (!finish_op
1159 && !oap->op_type
1160 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1162 clearop(oap);
1163 #ifdef FEAT_EVAL
1164 set_reg_var('"');
1165 #endif
1168 #ifdef FEAT_VISUAL
1169 /* Get the length of mapped chars again after typing a count, second
1170 * character or "z333<cr>". */
1171 if (old_mapped_len > 0)
1172 old_mapped_len = typebuf_maplen();
1173 #endif
1176 * If an operation is pending, handle it...
1178 do_pending_operator(&ca, old_col, FALSE);
1181 * Wait for a moment when a message is displayed that will be overwritten
1182 * by the mode message.
1183 * In Visual mode and with "^O" in Insert mode, a short message will be
1184 * overwritten by the mode message. Wait a bit, until a key is hit.
1185 * In Visual mode, it's more important to keep the Visual area updated
1186 * than keeping a message (e.g. from a /pat search).
1187 * Only do this if the command was typed, not from a mapping.
1188 * Don't wait when emsg_silent is non-zero.
1189 * Also wait a bit after an error message, e.g. for "^O:".
1190 * Don't redraw the screen, it would remove the message.
1192 if ( ((p_smd
1193 && msg_silent == 0
1194 && (restart_edit != 0
1195 #ifdef FEAT_VISUAL
1196 || (VIsual_active
1197 && old_pos.lnum == curwin->w_cursor.lnum
1198 && old_pos.col == curwin->w_cursor.col)
1199 #endif
1201 && (clear_cmdline
1202 || redraw_cmdline)
1203 && (msg_didout || (msg_didany && msg_scroll))
1204 && !msg_nowait
1205 && KeyTyped)
1206 || (restart_edit != 0
1207 #ifdef FEAT_VISUAL
1208 && !VIsual_active
1209 #endif
1210 && (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)
1220 int save_State = State;
1222 /* Draw the cursor with the right shape here */
1223 if (restart_edit != 0)
1224 State = INSERT;
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)
1230 char_u *kmsg;
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);
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;
1249 msg_scroll = FALSE;
1250 emsg_on_display = FALSE;
1254 * Finish up after executing a Normal mode command.
1256 normal_end:
1258 msg_nowait = FALSE;
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')
1270 ui_cursor_shape(); /* may show different cursor shape */
1271 # ifdef FEAT_MOUSESHAPE
1272 update_mouseshape(-1);
1273 # endif
1275 #endif
1277 #ifdef FEAT_CMDL_INFO
1278 if (oap->op_type == OP_NOP && oap->regname == 0)
1279 clear_showcmd();
1280 #endif
1282 checkpcmark(); /* check if we moved since setting pcmark */
1283 vim_free(ca.searchbuf);
1285 #ifdef FEAT_MBYTE
1286 if (has_mbyte)
1287 mb_adjust_cursor();
1288 #endif
1290 #ifdef FEAT_SCROLLBIND
1291 if (curwin->w_p_scb && toplevel)
1293 validate_cursor(); /* may need to update w_leftcol */
1294 do_check_scrollbind(TRUE);
1296 #endif
1299 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1300 * if still inside a mapping that started in Visual mode).
1301 * May switch from Visual to Select mode after CTRL-O command.
1303 if ( oap->op_type == OP_NOP
1304 #ifdef FEAT_VISUAL
1305 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1306 || restart_VIsual_select == 1)
1307 #else
1308 && restart_edit != 0
1309 #endif
1310 && !(ca.retval & CA_COMMAND_BUSY)
1311 && stuff_empty()
1312 && oap->regname == 0)
1314 #ifdef FEAT_VISUAL
1315 if (restart_VIsual_select == 1)
1317 VIsual_select = TRUE;
1318 showmode();
1319 restart_VIsual_select = 0;
1321 #endif
1322 if (restart_edit != 0
1323 #ifdef FEAT_VISUAL
1324 && !VIsual_active && old_mapped_len == 0
1325 #endif
1327 (void)edit(restart_edit, FALSE, 1L);
1330 #ifdef FEAT_VISUAL
1331 if (restart_VIsual_select == 2)
1332 restart_VIsual_select = 1;
1333 #endif
1335 /* Save count before an operator for next time. */
1336 opcount = ca.opcount;
1340 * Handle an operator after visual mode or when the movement is finished
1342 void
1343 do_pending_operator(cap, old_col, gui_yank)
1344 cmdarg_T *cap;
1345 int old_col;
1346 int gui_yank;
1348 oparg_T *oap = cap->oap;
1349 pos_T old_cursor;
1350 int empty_region_error;
1351 int restart_edit_save;
1353 #ifdef FEAT_VISUAL
1354 /* The visual area is remembered for redo */
1355 static int redo_VIsual_mode = NUL; /* 'v', 'V', or Ctrl-V */
1356 static linenr_T redo_VIsual_line_count; /* number of lines */
1357 static colnr_T redo_VIsual_col; /* number of cols or end column */
1358 static long redo_VIsual_count; /* count for Visual operator */
1359 # ifdef FEAT_VIRTUALEDIT
1360 int include_line_break = FALSE;
1361 # endif
1362 #endif
1364 #if defined(FEAT_CLIPBOARD)
1366 * Yank the visual area into the GUI selection register before we operate
1367 * on it and lose it forever.
1368 * Don't do it if a specific register was specified, so that ""x"*P works.
1369 * This could call do_pending_operator() recursively, but that's OK
1370 * because gui_yank will be TRUE for the nested call.
1372 if (clip_star.available
1373 && oap->op_type != OP_NOP
1374 && !gui_yank
1375 # ifdef FEAT_VISUAL
1376 && VIsual_active
1377 && !redo_VIsual_busy
1378 # endif
1379 && oap->regname == 0)
1380 clip_auto_select();
1381 #endif
1382 old_cursor = curwin->w_cursor;
1385 * If an operation is pending, handle it...
1387 if ((finish_op
1388 #ifdef FEAT_VISUAL
1389 || VIsual_active
1390 #endif
1391 ) && oap->op_type != OP_NOP)
1393 #ifdef FEAT_VISUAL
1394 oap->is_VIsual = VIsual_active;
1395 if (oap->motion_force == 'V')
1396 oap->motion_type = MLINE;
1397 else if (oap->motion_force == 'v')
1399 /* If the motion was linewise, "inclusive" will not have been set.
1400 * Use "exclusive" to be consistent. Makes "dvj" work nice. */
1401 if (oap->motion_type == MLINE)
1402 oap->inclusive = FALSE;
1403 /* If the motion already was characterwise, toggle "inclusive" */
1404 else if (oap->motion_type == MCHAR)
1405 oap->inclusive = !oap->inclusive;
1406 oap->motion_type = MCHAR;
1408 else if (oap->motion_force == Ctrl_V)
1410 /* Change line- or characterwise motion into Visual block mode. */
1411 VIsual_active = TRUE;
1412 VIsual = oap->start;
1413 VIsual_mode = Ctrl_V;
1414 VIsual_select = FALSE;
1415 VIsual_reselect = FALSE;
1417 #endif
1419 /* only redo yank when 'y' flag is in 'cpoptions' */
1420 /* never redo "zf" (define fold) */
1421 if ((vim_strchr(p_cpo, CPO_YANK) != NULL || oap->op_type != OP_YANK)
1422 #ifdef FEAT_VISUAL
1423 && (!VIsual_active || oap->motion_force)
1424 #endif
1425 && cap->cmdchar != 'D'
1426 #ifdef FEAT_FOLDING
1427 && oap->op_type != OP_FOLD
1428 && oap->op_type != OP_FOLDOPEN
1429 && oap->op_type != OP_FOLDOPENREC
1430 && oap->op_type != OP_FOLDCLOSE
1431 && oap->op_type != OP_FOLDCLOSEREC
1432 && oap->op_type != OP_FOLDDEL
1433 && oap->op_type != OP_FOLDDELREC
1434 #endif
1437 prep_redo(oap->regname, cap->count0,
1438 get_op_char(oap->op_type), get_extra_op_char(oap->op_type),
1439 oap->motion_force, cap->cmdchar, cap->nchar);
1440 if (cap->cmdchar == '/' || cap->cmdchar == '?') /* was a search */
1443 * If 'cpoptions' does not contain 'r', insert the search
1444 * pattern to really repeat the same command.
1446 if (vim_strchr(p_cpo, CPO_REDO) == NULL)
1447 AppendToRedobuffLit(cap->searchbuf, -1);
1448 AppendToRedobuff(NL_STR);
1450 else if (cap->cmdchar == ':')
1452 /* do_cmdline() has stored the first typed line in
1453 * "repeat_cmdline". When several lines are typed repeating
1454 * won't be possible. */
1455 if (repeat_cmdline == NULL)
1456 ResetRedobuff();
1457 else
1459 AppendToRedobuffLit(repeat_cmdline, -1);
1460 AppendToRedobuff(NL_STR);
1461 vim_free(repeat_cmdline);
1462 repeat_cmdline = NULL;
1467 #ifdef FEAT_VISUAL
1468 if (redo_VIsual_busy)
1470 oap->start = curwin->w_cursor;
1471 curwin->w_cursor.lnum += redo_VIsual_line_count - 1;
1472 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1473 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1474 VIsual_mode = redo_VIsual_mode;
1475 if (VIsual_mode == 'v')
1477 if (redo_VIsual_line_count <= 1)
1478 curwin->w_cursor.col += redo_VIsual_col - 1;
1479 else
1480 curwin->w_cursor.col = redo_VIsual_col;
1482 if (redo_VIsual_col == MAXCOL)
1484 curwin->w_curswant = MAXCOL;
1485 coladvance((colnr_T)MAXCOL);
1487 cap->count0 = redo_VIsual_count;
1488 if (redo_VIsual_count != 0)
1489 cap->count1 = redo_VIsual_count;
1490 else
1491 cap->count1 = 1;
1493 else if (VIsual_active)
1495 if (!gui_yank)
1497 /* Save the current VIsual area for '< and '> marks, and "gv" */
1498 curbuf->b_visual.vi_start = VIsual;
1499 curbuf->b_visual.vi_end = curwin->w_cursor;
1500 curbuf->b_visual.vi_mode = VIsual_mode;
1501 curbuf->b_visual.vi_curswant = curwin->w_curswant;
1502 # ifdef FEAT_EVAL
1503 curbuf->b_visual_mode_eval = VIsual_mode;
1504 # endif
1507 /* In Select mode, a linewise selection is operated upon like a
1508 * characterwise selection. */
1509 if (VIsual_select && VIsual_mode == 'V')
1511 if (lt(VIsual, curwin->w_cursor))
1513 VIsual.col = 0;
1514 curwin->w_cursor.col =
1515 (colnr_T)STRLEN(ml_get(curwin->w_cursor.lnum));
1517 else
1519 curwin->w_cursor.col = 0;
1520 VIsual.col = (colnr_T)STRLEN(ml_get(VIsual.lnum));
1522 VIsual_mode = 'v';
1524 /* If 'selection' is "exclusive", backup one character for
1525 * charwise selections. */
1526 else if (VIsual_mode == 'v')
1528 # ifdef FEAT_VIRTUALEDIT
1529 include_line_break =
1530 # endif
1531 unadjust_for_sel();
1534 oap->start = VIsual;
1535 if (VIsual_mode == 'V')
1536 oap->start.col = 0;
1538 #endif /* FEAT_VISUAL */
1541 * Set oap->start to the first position of the operated text, oap->end
1542 * to the end of the operated text. w_cursor is equal to oap->start.
1544 if (lt(oap->start, curwin->w_cursor))
1546 #ifdef FEAT_FOLDING
1547 /* Include folded lines completely. */
1548 if (!VIsual_active)
1550 if (hasFolding(oap->start.lnum, &oap->start.lnum, NULL))
1551 oap->start.col = 0;
1552 if (hasFolding(curwin->w_cursor.lnum, NULL,
1553 &curwin->w_cursor.lnum))
1554 curwin->w_cursor.col = (colnr_T)STRLEN(ml_get_curline());
1556 #endif
1557 oap->end = curwin->w_cursor;
1558 curwin->w_cursor = oap->start;
1560 /* w_virtcol may have been updated; if the cursor goes back to its
1561 * previous position w_virtcol becomes invalid and isn't updated
1562 * automatically. */
1563 curwin->w_valid &= ~VALID_VIRTCOL;
1565 else
1567 #ifdef FEAT_FOLDING
1568 /* Include folded lines completely. */
1569 if (!VIsual_active && oap->motion_type == MLINE)
1571 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum,
1572 NULL))
1573 curwin->w_cursor.col = 0;
1574 if (hasFolding(oap->start.lnum, NULL, &oap->start.lnum))
1575 oap->start.col = (colnr_T)STRLEN(ml_get(oap->start.lnum));
1577 #endif
1578 oap->end = oap->start;
1579 oap->start = curwin->w_cursor;
1582 oap->line_count = oap->end.lnum - oap->start.lnum + 1;
1584 #ifdef FEAT_VIRTUALEDIT
1585 /* Set "virtual_op" before resetting VIsual_active. */
1586 virtual_op = virtual_active();
1587 #endif
1589 #ifdef FEAT_VISUAL
1590 if (VIsual_active || redo_VIsual_busy)
1592 if (VIsual_mode == Ctrl_V) /* block mode */
1594 colnr_T start, end;
1596 oap->block_mode = TRUE;
1598 getvvcol(curwin, &(oap->start),
1599 &oap->start_vcol, NULL, &oap->end_vcol);
1600 if (!redo_VIsual_busy)
1602 getvvcol(curwin, &(oap->end), &start, NULL, &end);
1604 if (start < oap->start_vcol)
1605 oap->start_vcol = start;
1606 if (end > oap->end_vcol)
1608 if (*p_sel == 'e' && start >= 1
1609 && start - 1 >= oap->end_vcol)
1610 oap->end_vcol = start - 1;
1611 else
1612 oap->end_vcol = end;
1616 /* if '$' was used, get oap->end_vcol from longest line */
1617 if (curwin->w_curswant == MAXCOL)
1619 curwin->w_cursor.col = MAXCOL;
1620 oap->end_vcol = 0;
1621 for (curwin->w_cursor.lnum = oap->start.lnum;
1622 curwin->w_cursor.lnum <= oap->end.lnum;
1623 ++curwin->w_cursor.lnum)
1625 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &end);
1626 if (end > oap->end_vcol)
1627 oap->end_vcol = end;
1630 else if (redo_VIsual_busy)
1631 oap->end_vcol = oap->start_vcol + redo_VIsual_col - 1;
1633 * Correct oap->end.col and oap->start.col to be the
1634 * upper-left and lower-right corner of the block area.
1636 * (Actually, this does convert column positions into character
1637 * positions)
1639 curwin->w_cursor.lnum = oap->end.lnum;
1640 coladvance(oap->end_vcol);
1641 oap->end = curwin->w_cursor;
1643 curwin->w_cursor = oap->start;
1644 coladvance(oap->start_vcol);
1645 oap->start = curwin->w_cursor;
1648 if (!redo_VIsual_busy && !gui_yank)
1651 * Prepare to reselect and redo Visual: this is based on the
1652 * size of the Visual text
1654 resel_VIsual_mode = VIsual_mode;
1655 if (curwin->w_curswant == MAXCOL)
1656 resel_VIsual_col = MAXCOL;
1657 else if (VIsual_mode == Ctrl_V)
1658 resel_VIsual_col = oap->end_vcol - oap->start_vcol + 1;
1659 else if (oap->line_count > 1)
1660 resel_VIsual_col = oap->end.col;
1661 else
1662 resel_VIsual_col = oap->end.col - oap->start.col + 1;
1663 resel_VIsual_line_count = oap->line_count;
1666 /* can't redo yank (unless 'y' is in 'cpoptions') and ":" */
1667 if ((vim_strchr(p_cpo, CPO_YANK) != NULL || oap->op_type != OP_YANK)
1668 && oap->op_type != OP_COLON
1669 #ifdef FEAT_FOLDING
1670 && oap->op_type != OP_FOLD
1671 && oap->op_type != OP_FOLDOPEN
1672 && oap->op_type != OP_FOLDOPENREC
1673 && oap->op_type != OP_FOLDCLOSE
1674 && oap->op_type != OP_FOLDCLOSEREC
1675 && oap->op_type != OP_FOLDDEL
1676 && oap->op_type != OP_FOLDDELREC
1677 #endif
1678 && oap->motion_force == NUL
1681 /* Prepare for redoing. Only use the nchar field for "r",
1682 * otherwise it might be the second char of the operator. */
1683 prep_redo(oap->regname, 0L, NUL, 'v',
1684 get_op_char(oap->op_type),
1685 get_extra_op_char(oap->op_type),
1686 oap->op_type == OP_REPLACE ? cap->nchar : NUL);
1687 if (!redo_VIsual_busy)
1689 redo_VIsual_mode = resel_VIsual_mode;
1690 redo_VIsual_col = resel_VIsual_col;
1691 redo_VIsual_line_count = resel_VIsual_line_count;
1692 redo_VIsual_count = cap->count0;
1697 * oap->inclusive defaults to TRUE.
1698 * If oap->end is on a NUL (empty line) oap->inclusive becomes
1699 * FALSE. This makes "d}P" and "v}dP" work the same.
1701 if (oap->motion_force == NUL || oap->motion_type == MLINE)
1702 oap->inclusive = TRUE;
1703 if (VIsual_mode == 'V')
1704 oap->motion_type = MLINE;
1705 else
1707 oap->motion_type = MCHAR;
1708 if (VIsual_mode != Ctrl_V && *ml_get_pos(&(oap->end)) == NUL
1709 # ifdef FEAT_VIRTUALEDIT
1710 && (include_line_break || !virtual_op)
1711 # endif
1714 oap->inclusive = FALSE;
1715 /* Try to include the newline, unless it's an operator
1716 * that works on lines only */
1717 if (*p_sel != 'o'
1718 && !op_on_lines(oap->op_type)
1719 && oap->end.lnum < curbuf->b_ml.ml_line_count)
1721 ++oap->end.lnum;
1722 oap->end.col = 0;
1723 # ifdef FEAT_VIRTUALEDIT
1724 oap->end.coladd = 0;
1725 # endif
1726 ++oap->line_count;
1731 redo_VIsual_busy = FALSE;
1734 * Switch Visual off now, so screen updating does
1735 * not show inverted text when the screen is redrawn.
1736 * With OP_YANK and sometimes with OP_COLON and OP_FILTER there is
1737 * no screen redraw, so it is done here to remove the inverted
1738 * part.
1740 if (!gui_yank)
1742 VIsual_active = FALSE;
1743 # ifdef FEAT_MOUSE
1744 setmouse();
1745 mouse_dragging = 0;
1746 # endif
1747 if (mode_displayed)
1748 clear_cmdline = TRUE; /* unshow visual mode later */
1749 #ifdef FEAT_CMDL_INFO
1750 else
1751 clear_showcmd();
1752 #endif
1753 if ((oap->op_type == OP_YANK
1754 || oap->op_type == OP_COLON
1755 || oap->op_type == OP_FUNCTION
1756 || oap->op_type == OP_FILTER)
1757 && oap->motion_force == NUL)
1758 redraw_curbuf_later(INVERTED);
1761 #endif
1763 #ifdef FEAT_MBYTE
1764 /* Include the trailing byte of a multi-byte char. */
1765 if (has_mbyte && oap->inclusive)
1767 int l;
1769 l = (*mb_ptr2len)(ml_get_pos(&oap->end));
1770 if (l > 1)
1771 oap->end.col += l - 1;
1773 #endif
1774 curwin->w_set_curswant = TRUE;
1777 * oap->empty is set when start and end are the same. The inclusive
1778 * flag affects this too, unless yanking and the end is on a NUL.
1780 oap->empty = (oap->motion_type == MCHAR
1781 && (!oap->inclusive
1782 || (oap->op_type == OP_YANK
1783 && gchar_pos(&oap->end) == NUL))
1784 && equalpos(oap->start, oap->end)
1785 #ifdef FEAT_VIRTUALEDIT
1786 && !(virtual_op && oap->start.coladd != oap->end.coladd)
1787 #endif
1790 * For delete, change and yank, it's an error to operate on an
1791 * empty region, when 'E' included in 'cpoptions' (Vi compatible).
1793 empty_region_error = (oap->empty
1794 && vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL);
1796 #ifdef FEAT_VISUAL
1797 /* Force a redraw when operating on an empty Visual region, when
1798 * 'modifiable is off or creating a fold. */
1799 if (oap->is_VIsual && (oap->empty || !curbuf->b_p_ma
1800 # ifdef FEAT_FOLDING
1801 || oap->op_type == OP_FOLD
1802 # endif
1804 redraw_curbuf_later(INVERTED);
1805 #endif
1808 * If the end of an operator is in column one while oap->motion_type
1809 * is MCHAR and oap->inclusive is FALSE, we put op_end after the last
1810 * character in the previous line. If op_start is on or before the
1811 * first non-blank in the line, the operator becomes linewise
1812 * (strange, but that's the way vi does it).
1814 if ( oap->motion_type == MCHAR
1815 && oap->inclusive == FALSE
1816 && !(cap->retval & CA_NO_ADJ_OP_END)
1817 && oap->end.col == 0
1818 #ifdef FEAT_VISUAL
1819 && (!oap->is_VIsual || *p_sel == 'o')
1820 && !oap->block_mode
1821 #endif
1822 && oap->line_count > 1)
1824 oap->end_adjusted = TRUE; /* remember that we did this */
1825 --oap->line_count;
1826 --oap->end.lnum;
1827 if (inindent(0))
1828 oap->motion_type = MLINE;
1829 else
1831 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
1832 if (oap->end.col)
1834 --oap->end.col;
1835 oap->inclusive = TRUE;
1839 else
1840 oap->end_adjusted = FALSE;
1842 switch (oap->op_type)
1844 case OP_LSHIFT:
1845 case OP_RSHIFT:
1846 op_shift(oap, TRUE,
1847 #ifdef FEAT_VISUAL
1848 oap->is_VIsual ? (int)cap->count1 :
1849 #endif
1851 auto_format(FALSE, TRUE);
1852 break;
1854 case OP_JOIN_NS:
1855 case OP_JOIN:
1856 if (oap->line_count < 2)
1857 oap->line_count = 2;
1858 if (curwin->w_cursor.lnum + oap->line_count - 1 >
1859 curbuf->b_ml.ml_line_count)
1860 beep_flush();
1861 else
1863 do_do_join(oap->line_count, oap->op_type == OP_JOIN);
1864 auto_format(FALSE, TRUE);
1866 break;
1868 case OP_DELETE:
1869 #ifdef FEAT_VISUAL
1870 VIsual_reselect = FALSE; /* don't reselect now */
1871 #endif
1872 if (empty_region_error)
1873 vim_beep();
1874 else
1876 (void)op_delete(oap);
1877 if (oap->motion_type == MLINE && has_format_option(FO_AUTO))
1878 u_save_cursor(); /* cursor line wasn't saved yet */
1879 auto_format(FALSE, TRUE);
1881 break;
1883 case OP_YANK:
1884 if (empty_region_error)
1886 if (!gui_yank)
1887 vim_beep();
1889 else
1890 (void)op_yank(oap, FALSE, !gui_yank);
1891 check_cursor_col();
1892 break;
1894 case OP_CHANGE:
1895 #ifdef FEAT_VISUAL
1896 VIsual_reselect = FALSE; /* don't reselect now */
1897 #endif
1898 if (empty_region_error)
1899 vim_beep();
1900 else
1902 /* This is a new edit command, not a restart. Need to
1903 * remember it to make 'insertmode' work with mappings for
1904 * Visual mode. But do this only once and not when typed and
1905 * 'insertmode' isn't set. */
1906 if (p_im || !KeyTyped)
1907 restart_edit_save = restart_edit;
1908 else
1909 restart_edit_save = 0;
1910 restart_edit = 0;
1911 /* Reset finish_op now, don't want it set inside edit(). */
1912 finish_op = FALSE;
1913 if (op_change(oap)) /* will call edit() */
1914 cap->retval |= CA_COMMAND_BUSY;
1915 if (restart_edit == 0)
1916 restart_edit = restart_edit_save;
1918 break;
1920 case OP_FILTER:
1921 if (vim_strchr(p_cpo, CPO_FILTER) != NULL)
1922 AppendToRedobuff((char_u *)"!\r"); /* use any last used !cmd */
1923 else
1924 bangredo = TRUE; /* do_bang() will put cmd in redo buffer */
1926 case OP_INDENT:
1927 case OP_COLON:
1929 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
1931 * If 'equalprg' is empty, do the indenting internally.
1933 if (oap->op_type == OP_INDENT && *get_equalprg() == NUL)
1935 # ifdef FEAT_LISP
1936 if (curbuf->b_p_lisp)
1938 op_reindent(oap, get_lisp_indent);
1939 break;
1941 # endif
1942 # ifdef FEAT_CINDENT
1943 op_reindent(oap,
1944 # ifdef FEAT_EVAL
1945 *curbuf->b_p_inde != NUL ? get_expr_indent :
1946 # endif
1947 get_c_indent);
1948 break;
1949 # endif
1951 #endif
1953 op_colon(oap);
1954 break;
1956 case OP_TILDE:
1957 case OP_UPPER:
1958 case OP_LOWER:
1959 case OP_ROT13:
1960 if (empty_region_error)
1961 vim_beep();
1962 else
1963 op_tilde(oap);
1964 check_cursor_col();
1965 break;
1967 case OP_FORMAT:
1968 #if defined(FEAT_EVAL)
1969 if (*curbuf->b_p_fex != NUL)
1970 op_formatexpr(oap); /* use expression */
1971 else
1972 #endif
1973 if (*p_fp != NUL)
1974 op_colon(oap); /* use external command */
1975 else
1976 op_format(oap, FALSE); /* use internal function */
1977 break;
1979 case OP_FORMAT2:
1980 op_format(oap, TRUE); /* use internal function */
1981 break;
1983 case OP_FUNCTION:
1984 op_function(oap); /* call 'operatorfunc' */
1985 break;
1987 case OP_INSERT:
1988 case OP_APPEND:
1989 #ifdef FEAT_VISUAL
1990 VIsual_reselect = FALSE; /* don't reselect now */
1991 #endif
1992 #ifdef FEAT_VISUALEXTRA
1993 if (empty_region_error)
1994 vim_beep();
1995 else
1997 /* This is a new edit command, not a restart. Need to
1998 * remember it to make 'insertmode' work with mappings for
1999 * Visual mode. But do this only once. */
2000 restart_edit_save = restart_edit;
2001 restart_edit = 0;
2003 op_insert(oap, cap->count1);
2005 /* TODO: when inserting in several lines, should format all
2006 * the lines. */
2007 auto_format(FALSE, TRUE);
2009 if (restart_edit == 0)
2010 restart_edit = restart_edit_save;
2012 #else
2013 vim_beep();
2014 #endif
2015 break;
2017 case OP_REPLACE:
2018 #ifdef FEAT_VISUAL
2019 VIsual_reselect = FALSE; /* don't reselect now */
2020 #endif
2021 #ifdef FEAT_VISUALEXTRA
2022 if (empty_region_error)
2023 #endif
2024 vim_beep();
2025 #ifdef FEAT_VISUALEXTRA
2026 else
2027 op_replace(oap, cap->nchar);
2028 #endif
2029 break;
2031 #ifdef FEAT_FOLDING
2032 case OP_FOLD:
2033 VIsual_reselect = FALSE; /* don't reselect now */
2034 foldCreate(oap->start.lnum, oap->end.lnum);
2035 break;
2037 case OP_FOLDOPEN:
2038 case OP_FOLDOPENREC:
2039 case OP_FOLDCLOSE:
2040 case OP_FOLDCLOSEREC:
2041 VIsual_reselect = FALSE; /* don't reselect now */
2042 opFoldRange(oap->start.lnum, oap->end.lnum,
2043 oap->op_type == OP_FOLDOPEN
2044 || oap->op_type == OP_FOLDOPENREC,
2045 oap->op_type == OP_FOLDOPENREC
2046 || oap->op_type == OP_FOLDCLOSEREC,
2047 oap->is_VIsual);
2048 break;
2050 case OP_FOLDDEL:
2051 case OP_FOLDDELREC:
2052 VIsual_reselect = FALSE; /* don't reselect now */
2053 deleteFold(oap->start.lnum, oap->end.lnum,
2054 oap->op_type == OP_FOLDDELREC, oap->is_VIsual);
2055 break;
2056 #endif
2057 default:
2058 clearopbeep(oap);
2060 #ifdef FEAT_VIRTUALEDIT
2061 virtual_op = MAYBE;
2062 #endif
2063 if (!gui_yank)
2066 * if 'sol' not set, go back to old column for some commands
2068 if (!p_sol && oap->motion_type == MLINE && !oap->end_adjusted
2069 && (oap->op_type == OP_LSHIFT || oap->op_type == OP_RSHIFT
2070 || oap->op_type == OP_DELETE))
2071 coladvance(curwin->w_curswant = old_col);
2073 else
2075 curwin->w_cursor = old_cursor;
2077 #ifdef FEAT_VISUAL
2078 oap->block_mode = FALSE;
2079 #endif
2080 clearop(oap);
2085 * Handle indent and format operators and visual mode ":".
2087 static void
2088 op_colon(oap)
2089 oparg_T *oap;
2091 stuffcharReadbuff(':');
2092 #ifdef FEAT_VISUAL
2093 if (oap->is_VIsual)
2094 stuffReadbuff((char_u *)"'<,'>");
2095 else
2096 #endif
2099 * Make the range look nice, so it can be repeated.
2101 if (oap->start.lnum == curwin->w_cursor.lnum)
2102 stuffcharReadbuff('.');
2103 else
2104 stuffnumReadbuff((long)oap->start.lnum);
2105 if (oap->end.lnum != oap->start.lnum)
2107 stuffcharReadbuff(',');
2108 if (oap->end.lnum == curwin->w_cursor.lnum)
2109 stuffcharReadbuff('.');
2110 else if (oap->end.lnum == curbuf->b_ml.ml_line_count)
2111 stuffcharReadbuff('$');
2112 else if (oap->start.lnum == curwin->w_cursor.lnum)
2114 stuffReadbuff((char_u *)".+");
2115 stuffnumReadbuff((long)oap->line_count - 1);
2117 else
2118 stuffnumReadbuff((long)oap->end.lnum);
2121 if (oap->op_type != OP_COLON)
2122 stuffReadbuff((char_u *)"!");
2123 if (oap->op_type == OP_INDENT)
2125 #ifndef FEAT_CINDENT
2126 if (*get_equalprg() == NUL)
2127 stuffReadbuff((char_u *)"indent");
2128 else
2129 #endif
2130 stuffReadbuff(get_equalprg());
2131 stuffReadbuff((char_u *)"\n");
2133 else if (oap->op_type == OP_FORMAT)
2135 if (*p_fp == NUL)
2136 stuffReadbuff((char_u *)"fmt");
2137 else
2138 stuffReadbuff(p_fp);
2139 stuffReadbuff((char_u *)"\n']");
2143 * do_cmdline() does the rest
2148 * Handle the "g@" operator: call 'operatorfunc'.
2150 /*ARGSUSED*/
2151 static void
2152 op_function(oap)
2153 oparg_T *oap;
2155 #ifdef FEAT_EVAL
2156 char_u *(argv[1]);
2158 if (*p_opfunc == NUL)
2159 EMSG(_("E774: 'operatorfunc' is empty"));
2160 else
2162 /* Set '[ and '] marks to text to be operated on. */
2163 curbuf->b_op_start = oap->start;
2164 curbuf->b_op_end = oap->end;
2165 if (oap->motion_type != MLINE && !oap->inclusive)
2166 /* Exclude the end position. */
2167 decl(&curbuf->b_op_end);
2169 if (oap->block_mode)
2170 argv[0] = (char_u *)"block";
2171 else if (oap->motion_type == MLINE)
2172 argv[0] = (char_u *)"line";
2173 else
2174 argv[0] = (char_u *)"char";
2175 (void)call_func_retnr(p_opfunc, 1, argv, FALSE);
2177 #else
2178 EMSG(_("E775: Eval feature not available"));
2179 #endif
2182 #if defined(FEAT_MOUSE) || defined(PROTO)
2184 * Do the appropriate action for the current mouse click in the current mode.
2185 * Not used for Command-line mode.
2187 * Normal Mode:
2188 * event modi- position visual change action
2189 * fier cursor window
2190 * left press - yes end yes
2191 * left press C yes end yes "^]" (2)
2192 * left press S yes end yes "*" (2)
2193 * left drag - yes start if moved no
2194 * left relse - yes start if moved no
2195 * middle press - yes if not active no put register
2196 * middle press - yes if active no yank and put
2197 * right press - yes start or extend yes
2198 * right press S yes no change yes "#" (2)
2199 * right drag - yes extend no
2200 * right relse - yes extend no
2202 * Insert or Replace Mode:
2203 * event modi- position visual change action
2204 * fier cursor window
2205 * left press - yes (cannot be active) yes
2206 * left press C yes (cannot be active) yes "CTRL-O^]" (2)
2207 * left press S yes (cannot be active) yes "CTRL-O*" (2)
2208 * left drag - yes start or extend (1) no CTRL-O (1)
2209 * left relse - yes start or extend (1) no CTRL-O (1)
2210 * middle press - no (cannot be active) no put register
2211 * right press - yes start or extend yes CTRL-O
2212 * right press S yes (cannot be active) yes "CTRL-O#" (2)
2214 * (1) only if mouse pointer moved since press
2215 * (2) only if click is in same buffer
2217 * Return TRUE if start_arrow() should be called for edit mode.
2220 do_mouse(oap, c, dir, count, fixindent)
2221 oparg_T *oap; /* operator argument, can be NULL */
2222 int c; /* K_LEFTMOUSE, etc */
2223 int dir; /* Direction to 'put' if necessary */
2224 long count;
2225 int fixindent; /* PUT_FIXINDENT if fixing indent necessary */
2227 static int do_always = FALSE; /* ignore 'mouse' setting next time */
2228 static int got_click = FALSE; /* got a click some time back */
2230 int which_button; /* MOUSE_LEFT, _MIDDLE or _RIGHT */
2231 int is_click; /* If FALSE it's a drag or release event */
2232 int is_drag; /* If TRUE it's a drag event */
2233 int jump_flags = 0; /* flags for jump_to_mouse() */
2234 pos_T start_visual;
2235 int moved; /* Has cursor moved? */
2236 int in_status_line; /* mouse in status line */
2237 #ifdef FEAT_VERTSPLIT
2238 int in_sep_line; /* mouse in vertical separator line */
2239 #endif
2240 int c1, c2;
2241 #if defined(FEAT_FOLDING)
2242 pos_T save_cursor;
2243 #endif
2244 win_T *old_curwin = curwin;
2245 #ifdef FEAT_VISUAL
2246 static pos_T orig_cursor;
2247 colnr_T leftcol, rightcol;
2248 pos_T end_visual;
2249 int diff;
2250 int old_active = VIsual_active;
2251 int old_mode = VIsual_mode;
2252 #endif
2253 int regname;
2255 #if defined(FEAT_FOLDING)
2256 save_cursor = curwin->w_cursor;
2257 #endif
2260 * When GUI is active, always recognize mouse events, otherwise:
2261 * - Ignore mouse event in normal mode if 'mouse' doesn't include 'n'.
2262 * - Ignore mouse event in visual mode if 'mouse' doesn't include 'v'.
2263 * - For command line and insert mode 'mouse' is checked before calling
2264 * do_mouse().
2266 if (do_always)
2267 do_always = FALSE;
2268 else
2269 #ifdef FEAT_GUI
2270 if (!gui.in_use)
2271 #endif
2273 #ifdef FEAT_VISUAL
2274 if (VIsual_active)
2276 if (!mouse_has(MOUSE_VISUAL))
2277 return FALSE;
2279 else
2280 #endif
2281 if (State == NORMAL && !mouse_has(MOUSE_NORMAL))
2282 return FALSE;
2285 which_button = get_mouse_button(KEY2TERMCAP1(c), &is_click, &is_drag);
2287 #ifdef FEAT_MOUSESHAPE
2288 /* May have stopped dragging the status or separator line. The pointer is
2289 * most likely still on the status or separator line. */
2290 if (!is_drag && drag_status_line)
2292 drag_status_line = FALSE;
2293 update_mouseshape(SHAPE_IDX_STATUS);
2295 # ifdef FEAT_VERTSPLIT
2296 if (!is_drag && drag_sep_line)
2298 drag_sep_line = FALSE;
2299 update_mouseshape(SHAPE_IDX_VSEP);
2301 # endif
2302 #endif
2305 * Ignore drag and release events if we didn't get a click.
2307 if (is_click)
2308 got_click = TRUE;
2309 else
2311 if (!got_click) /* didn't get click, ignore */
2312 return FALSE;
2313 if (!is_drag) /* release, reset got_click */
2314 got_click = FALSE;
2317 #ifndef FEAT_VISUAL
2319 * ALT is only used for starging/extending Visual mode.
2321 if ((mod_mask & MOD_MASK_ALT))
2322 return FALSE;
2323 #endif
2326 * CTRL right mouse button does CTRL-T
2328 if (is_click && (mod_mask & MOD_MASK_CTRL) && which_button == MOUSE_RIGHT)
2330 if (State & INSERT)
2331 stuffcharReadbuff(Ctrl_O);
2332 if (count > 1)
2333 stuffnumReadbuff(count);
2334 stuffcharReadbuff(Ctrl_T);
2335 got_click = FALSE; /* ignore drag&release now */
2336 return FALSE;
2340 * CTRL only works with left mouse button
2342 if ((mod_mask & MOD_MASK_CTRL) && which_button != MOUSE_LEFT)
2343 return FALSE;
2346 * When a modifier is down, ignore drag and release events, as well as
2347 * multiple clicks and the middle mouse button.
2348 * Accept shift-leftmouse drags when 'mousemodel' is "popup.*".
2350 if ((mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT
2351 | MOD_MASK_META))
2352 && (!is_click
2353 || (mod_mask & MOD_MASK_MULTI_CLICK)
2354 || which_button == MOUSE_MIDDLE)
2355 && !((mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT))
2356 && mouse_model_popup()
2357 && which_button == MOUSE_LEFT)
2358 && !((mod_mask & MOD_MASK_ALT)
2359 && !mouse_model_popup()
2360 && which_button == MOUSE_RIGHT)
2362 return FALSE;
2365 * If the button press was used as the movement command for an operator
2366 * (eg "d<MOUSE>"), or it is the middle button that is held down, ignore
2367 * drag/release events.
2369 if (!is_click && which_button == MOUSE_MIDDLE)
2370 return FALSE;
2372 if (oap != NULL)
2373 regname = oap->regname;
2374 else
2375 regname = 0;
2378 * Middle mouse button does a 'put' of the selected text
2380 if (which_button == MOUSE_MIDDLE)
2382 if (State == NORMAL)
2385 * If an operator was pending, we don't know what the user wanted
2386 * to do. Go back to normal mode: Clear the operator and beep().
2388 if (oap != NULL && oap->op_type != OP_NOP)
2390 clearopbeep(oap);
2391 return FALSE;
2394 #ifdef FEAT_VISUAL
2396 * If visual was active, yank the highlighted text and put it
2397 * before the mouse pointer position.
2398 * In Select mode replace the highlighted text with the clipboard.
2400 if (VIsual_active)
2402 if (VIsual_select)
2404 stuffcharReadbuff(Ctrl_G);
2405 stuffReadbuff((char_u *)"\"+p");
2407 else
2409 stuffcharReadbuff('y');
2410 stuffcharReadbuff(K_MIDDLEMOUSE);
2412 do_always = TRUE; /* ignore 'mouse' setting next time */
2413 return FALSE;
2415 #endif
2417 * The rest is below jump_to_mouse()
2421 else if ((State & INSERT) == 0)
2422 return FALSE;
2425 * Middle click in insert mode doesn't move the mouse, just insert the
2426 * contents of a register. '.' register is special, can't insert that
2427 * with do_put().
2428 * Also paste at the cursor if the current mode isn't in 'mouse' (only
2429 * happens for the GUI).
2431 if ((State & INSERT) || !mouse_has(MOUSE_NORMAL))
2433 if (regname == '.')
2434 insert_reg(regname, TRUE);
2435 else
2437 #ifdef FEAT_CLIPBOARD
2438 if (clip_star.available && regname == 0)
2439 regname = '*';
2440 #endif
2441 if ((State & REPLACE_FLAG) && !yank_register_mline(regname))
2442 insert_reg(regname, TRUE);
2443 else
2445 do_put(regname, BACKWARD, 1L, fixindent | PUT_CURSEND);
2447 /* Repeat it with CTRL-R CTRL-O r or CTRL-R CTRL-P r */
2448 AppendCharToRedobuff(Ctrl_R);
2449 AppendCharToRedobuff(fixindent ? Ctrl_P : Ctrl_O);
2450 AppendCharToRedobuff(regname == 0 ? '"' : regname);
2453 return FALSE;
2457 /* When dragging or button-up stay in the same window. */
2458 if (!is_click)
2459 jump_flags |= MOUSE_FOCUS | MOUSE_DID_MOVE;
2461 start_visual.lnum = 0;
2463 #ifdef FEAT_WINDOWS
2464 /* Check for clicking in the tab page line. */
2465 if (mouse_row == 0 && firstwin->w_winrow > 0)
2467 got_click = FALSE; /* ignore mouse-up and drag events */
2469 /* click in a tab selects that tab page */
2470 if (is_click
2471 # ifdef FEAT_CMDWIN
2472 && cmdwin_type == 0
2473 # endif
2474 && mouse_col < Columns)
2476 c1 = TabPageIdxs[mouse_col];
2477 if (c1 >= 0)
2479 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2481 /* double click opens new page */
2482 end_visual_mode();
2483 tabpage_new();
2484 tabpage_move(c1 == 0 ? 9999 : c1 - 1);
2486 else
2488 /* Go to specified tab page, or next one if not clicking
2489 * on a label. */
2490 goto_tabpage(c1);
2492 /* It's like clicking on the status line of a window. */
2493 if (curwin != old_curwin)
2494 end_visual_mode();
2497 else if (c1 < 0)
2499 tabpage_T *tp;
2501 /* Close the current or specified tab page. */
2502 if (c1 == -999)
2503 tp = curtab;
2504 else
2505 tp = find_tabpage(-c1);
2506 if (tp == curtab)
2508 if (first_tabpage->tp_next != NULL)
2509 tabpage_close(FALSE);
2511 else if (tp != NULL)
2512 tabpage_close_other(tp, FALSE);
2515 return TRUE;
2517 #endif
2520 * When 'mousemodel' is "popup" or "popup_setpos", translate mouse events:
2521 * right button up -> pop-up menu
2522 * shift-left button -> right button
2523 * alt-left button -> alt-right button
2525 if (mouse_model_popup())
2527 if (which_button == MOUSE_RIGHT
2528 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2531 * NOTE: Ignore right button down and drag mouse events.
2532 * Windows only shows the popup menu on the button up event.
2534 #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
2535 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) \
2536 || defined(FEAT_GUI_MACVIM)
2537 if (!is_click)
2538 return FALSE;
2539 #endif
2540 #if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN)
2541 if (is_click || is_drag)
2542 return FALSE;
2543 #endif
2544 #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
2545 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
2546 || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_PHOTON) \
2547 || defined(FEAT_GUI_MACVIM)
2548 if (gui.in_use)
2550 jump_flags = 0;
2551 if (STRCMP(p_mousem, "popup_setpos") == 0)
2553 /* First set the cursor position before showing the popup
2554 * menu. */
2555 #ifdef FEAT_VISUAL
2556 if (VIsual_active)
2558 pos_T m_pos;
2561 * set MOUSE_MAY_STOP_VIS if we are outside the
2562 * selection or the current window (might have false
2563 * negative here)
2565 if (mouse_row < W_WINROW(curwin)
2566 || mouse_row
2567 > (W_WINROW(curwin) + curwin->w_height))
2568 jump_flags = MOUSE_MAY_STOP_VIS;
2569 else if (get_fpos_of_mouse(&m_pos) != IN_BUFFER)
2570 jump_flags = MOUSE_MAY_STOP_VIS;
2571 else
2573 if ((lt(curwin->w_cursor, VIsual)
2574 && (lt(m_pos, curwin->w_cursor)
2575 || lt(VIsual, m_pos)))
2576 || (lt(VIsual, curwin->w_cursor)
2577 && (lt(m_pos, VIsual)
2578 || lt(curwin->w_cursor, m_pos))))
2580 jump_flags = MOUSE_MAY_STOP_VIS;
2582 else if (VIsual_mode == Ctrl_V)
2584 getvcols(curwin, &curwin->w_cursor, &VIsual,
2585 &leftcol, &rightcol);
2586 getvcol(curwin, &m_pos, NULL, &m_pos.col, NULL);
2587 if (m_pos.col < leftcol || m_pos.col > rightcol)
2588 jump_flags = MOUSE_MAY_STOP_VIS;
2592 else
2593 jump_flags = MOUSE_MAY_STOP_VIS;
2594 #endif
2596 if (jump_flags)
2598 jump_flags = jump_to_mouse(jump_flags, NULL, which_button);
2599 update_curbuf(
2600 #ifdef FEAT_VISUAL
2601 VIsual_active ? INVERTED :
2602 #endif
2603 VALID);
2604 setcursor();
2605 out_flush(); /* Update before showing popup menu */
2607 # ifdef FEAT_MENU
2608 gui_show_popupmenu();
2609 # endif
2610 return (jump_flags & CURSOR_MOVED) != 0;
2612 else
2613 return FALSE;
2614 #else
2615 return FALSE;
2616 #endif
2618 if (which_button == MOUSE_LEFT
2619 && (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT)))
2621 which_button = MOUSE_RIGHT;
2622 mod_mask &= ~MOD_MASK_SHIFT;
2626 #ifdef FEAT_VISUAL
2627 if ((State & (NORMAL | INSERT))
2628 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2630 if (which_button == MOUSE_LEFT)
2632 if (is_click)
2634 /* stop Visual mode for a left click in a window, but not when
2635 * on a status line */
2636 if (VIsual_active)
2637 jump_flags |= MOUSE_MAY_STOP_VIS;
2639 else if (mouse_has(MOUSE_VISUAL))
2640 jump_flags |= MOUSE_MAY_VIS;
2642 else if (which_button == MOUSE_RIGHT)
2644 if (is_click && VIsual_active)
2647 * Remember the start and end of visual before moving the
2648 * cursor.
2650 if (lt(curwin->w_cursor, VIsual))
2652 start_visual = curwin->w_cursor;
2653 end_visual = VIsual;
2655 else
2657 start_visual = VIsual;
2658 end_visual = curwin->w_cursor;
2661 jump_flags |= MOUSE_FOCUS;
2662 if (mouse_has(MOUSE_VISUAL))
2663 jump_flags |= MOUSE_MAY_VIS;
2666 #endif
2669 * If an operator is pending, ignore all drags and releases until the
2670 * next mouse click.
2672 if (!is_drag && oap != NULL && oap->op_type != OP_NOP)
2674 got_click = FALSE;
2675 oap->motion_type = MCHAR;
2678 /* When releasing the button let jump_to_mouse() know. */
2679 if (!is_click && !is_drag)
2680 jump_flags |= MOUSE_RELEASED;
2683 * JUMP!
2685 jump_flags = jump_to_mouse(jump_flags,
2686 oap == NULL ? NULL : &(oap->inclusive), which_button);
2687 moved = (jump_flags & CURSOR_MOVED);
2688 in_status_line = (jump_flags & IN_STATUS_LINE);
2689 #ifdef FEAT_VERTSPLIT
2690 in_sep_line = (jump_flags & IN_SEP_LINE);
2691 #endif
2693 #ifdef FEAT_NETBEANS_INTG
2694 if (usingNetbeans && isNetbeansBuffer(curbuf)
2695 && !(jump_flags & (IN_STATUS_LINE | IN_SEP_LINE)))
2697 int key = KEY2TERMCAP1(c);
2699 if (key == (int)KE_LEFTRELEASE || key == (int)KE_MIDDLERELEASE
2700 || key == (int)KE_RIGHTRELEASE)
2701 netbeans_button_release(which_button);
2703 #endif
2705 /* When jumping to another window, clear a pending operator. That's a bit
2706 * friendlier than beeping and not jumping to that window. */
2707 if (curwin != old_curwin && oap != NULL && oap->op_type != OP_NOP)
2708 clearop(oap);
2710 #ifdef FEAT_FOLDING
2711 if (mod_mask == 0
2712 && !is_drag
2713 && (jump_flags & (MOUSE_FOLD_CLOSE | MOUSE_FOLD_OPEN))
2714 && which_button == MOUSE_LEFT)
2716 /* open or close a fold at this line */
2717 if (jump_flags & MOUSE_FOLD_OPEN)
2718 openFold(curwin->w_cursor.lnum, 1L);
2719 else
2720 closeFold(curwin->w_cursor.lnum, 1L);
2721 /* don't move the cursor if still in the same window */
2722 if (curwin == old_curwin)
2723 curwin->w_cursor = save_cursor;
2725 #endif
2727 #if defined(FEAT_CLIPBOARD) && defined(FEAT_CMDWIN)
2728 if ((jump_flags & IN_OTHER_WIN) && !VIsual_active && clip_star.available)
2730 clip_modeless(which_button, is_click, is_drag);
2731 return FALSE;
2733 #endif
2735 #ifdef FEAT_VISUAL
2736 /* Set global flag that we are extending the Visual area with mouse
2737 * dragging; temporarily minimize 'scrolloff'. */
2738 if (VIsual_active && is_drag && p_so)
2740 /* In the very first line, allow scrolling one line */
2741 if (mouse_row == 0)
2742 mouse_dragging = 2;
2743 else
2744 mouse_dragging = 1;
2747 /* When dragging the mouse above the window, scroll down. */
2748 if (is_drag && mouse_row < 0 && !in_status_line)
2750 scroll_redraw(FALSE, 1L);
2751 mouse_row = 0;
2754 if (start_visual.lnum) /* right click in visual mode */
2756 /* When ALT is pressed make Visual mode blockwise. */
2757 if (mod_mask & MOD_MASK_ALT)
2758 VIsual_mode = Ctrl_V;
2761 * In Visual-block mode, divide the area in four, pick up the corner
2762 * that is in the quarter that the cursor is in.
2764 if (VIsual_mode == Ctrl_V)
2766 getvcols(curwin, &start_visual, &end_visual, &leftcol, &rightcol);
2767 if (curwin->w_curswant > (leftcol + rightcol) / 2)
2768 end_visual.col = leftcol;
2769 else
2770 end_visual.col = rightcol;
2771 if (curwin->w_cursor.lnum <
2772 (start_visual.lnum + end_visual.lnum) / 2)
2773 end_visual.lnum = end_visual.lnum;
2774 else
2775 end_visual.lnum = start_visual.lnum;
2777 /* move VIsual to the right column */
2778 start_visual = curwin->w_cursor; /* save the cursor pos */
2779 curwin->w_cursor = end_visual;
2780 coladvance(end_visual.col);
2781 VIsual = curwin->w_cursor;
2782 curwin->w_cursor = start_visual; /* restore the cursor */
2784 else
2787 * If the click is before the start of visual, change the start.
2788 * If the click is after the end of visual, change the end. If
2789 * the click is inside the visual, change the closest side.
2791 if (lt(curwin->w_cursor, start_visual))
2792 VIsual = end_visual;
2793 else if (lt(end_visual, curwin->w_cursor))
2794 VIsual = start_visual;
2795 else
2797 /* In the same line, compare column number */
2798 if (end_visual.lnum == start_visual.lnum)
2800 if (curwin->w_cursor.col - start_visual.col >
2801 end_visual.col - curwin->w_cursor.col)
2802 VIsual = start_visual;
2803 else
2804 VIsual = end_visual;
2807 /* In different lines, compare line number */
2808 else
2810 diff = (curwin->w_cursor.lnum - start_visual.lnum) -
2811 (end_visual.lnum - curwin->w_cursor.lnum);
2813 if (diff > 0) /* closest to end */
2814 VIsual = start_visual;
2815 else if (diff < 0) /* closest to start */
2816 VIsual = end_visual;
2817 else /* in the middle line */
2819 if (curwin->w_cursor.col <
2820 (start_visual.col + end_visual.col) / 2)
2821 VIsual = end_visual;
2822 else
2823 VIsual = start_visual;
2830 * If Visual mode started in insert mode, execute "CTRL-O"
2832 else if ((State & INSERT) && VIsual_active)
2833 stuffcharReadbuff(Ctrl_O);
2834 #endif
2837 * Middle mouse click: Put text before cursor.
2839 if (which_button == MOUSE_MIDDLE)
2841 #ifdef FEAT_CLIPBOARD
2842 if (clip_star.available && regname == 0)
2843 regname = '*';
2844 #endif
2845 if (yank_register_mline(regname))
2847 if (mouse_past_bottom)
2848 dir = FORWARD;
2850 else if (mouse_past_eol)
2851 dir = FORWARD;
2853 if (fixindent)
2855 c1 = (dir == BACKWARD) ? '[' : ']';
2856 c2 = 'p';
2858 else
2860 c1 = (dir == FORWARD) ? 'p' : 'P';
2861 c2 = NUL;
2863 prep_redo(regname, count, NUL, c1, NUL, c2, NUL);
2866 * Remember where the paste started, so in edit() Insstart can be set
2867 * to this position
2869 if (restart_edit != 0)
2870 where_paste_started = curwin->w_cursor;
2871 do_put(regname, dir, count, fixindent | PUT_CURSEND);
2874 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
2876 * Ctrl-Mouse click or double click in a quickfix window jumps to the
2877 * error under the mouse pointer.
2879 else if (((mod_mask & MOD_MASK_CTRL)
2880 || (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2881 && bt_quickfix(curbuf))
2883 if (State & INSERT)
2884 stuffcharReadbuff(Ctrl_O);
2885 if (curwin->w_llist_ref == NULL) /* quickfix window */
2886 stuffReadbuff((char_u *)":.cc\n");
2887 else /* location list window */
2888 stuffReadbuff((char_u *)":.ll\n");
2889 got_click = FALSE; /* ignore drag&release now */
2891 #endif
2894 * Ctrl-Mouse click (or double click in a help window) jumps to the tag
2895 * under the mouse pointer.
2897 else if ((mod_mask & MOD_MASK_CTRL) || (curbuf->b_help
2898 && (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK))
2900 if (State & INSERT)
2901 stuffcharReadbuff(Ctrl_O);
2902 stuffcharReadbuff(Ctrl_RSB);
2903 got_click = FALSE; /* ignore drag&release now */
2907 * Shift-Mouse click searches for the next occurrence of the word under
2908 * the mouse pointer
2910 else if ((mod_mask & MOD_MASK_SHIFT))
2912 if (State & INSERT
2913 #ifdef FEAT_VISUAL
2914 || (VIsual_active && VIsual_select)
2915 #endif
2917 stuffcharReadbuff(Ctrl_O);
2918 if (which_button == MOUSE_LEFT)
2919 stuffcharReadbuff('*');
2920 else /* MOUSE_RIGHT */
2921 stuffcharReadbuff('#');
2924 /* Handle double clicks, unless on status line */
2925 else if (in_status_line)
2927 #ifdef FEAT_MOUSESHAPE
2928 if ((is_drag || is_click) && !drag_status_line)
2930 drag_status_line = TRUE;
2931 update_mouseshape(-1);
2933 #endif
2935 #ifdef FEAT_VERTSPLIT
2936 else if (in_sep_line)
2938 # ifdef FEAT_MOUSESHAPE
2939 if ((is_drag || is_click) && !drag_sep_line)
2941 drag_sep_line = TRUE;
2942 update_mouseshape(-1);
2944 # endif
2946 #endif
2947 #ifdef FEAT_VISUAL
2948 else if ((mod_mask & MOD_MASK_MULTI_CLICK) && (State & (NORMAL | INSERT))
2949 && mouse_has(MOUSE_VISUAL))
2951 if (is_click || !VIsual_active)
2953 if (VIsual_active)
2954 orig_cursor = VIsual;
2955 else
2957 check_visual_highlight();
2958 VIsual = curwin->w_cursor;
2959 orig_cursor = VIsual;
2960 VIsual_active = TRUE;
2961 VIsual_reselect = TRUE;
2962 /* start Select mode if 'selectmode' contains "mouse" */
2963 may_start_select('o');
2964 setmouse();
2966 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2968 /* Double click with ALT pressed makes it blockwise. */
2969 if (mod_mask & MOD_MASK_ALT)
2970 VIsual_mode = Ctrl_V;
2971 else
2972 VIsual_mode = 'v';
2974 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_3CLICK)
2975 VIsual_mode = 'V';
2976 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_4CLICK)
2977 VIsual_mode = Ctrl_V;
2978 #ifdef FEAT_CLIPBOARD
2979 /* Make sure the clipboard gets updated. Needed because start and
2980 * end may still be the same, and the selection needs to be owned */
2981 clip_star.vmode = NUL;
2982 #endif
2985 * A double click selects a word or a block.
2987 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2989 pos_T *pos = NULL;
2990 int gc;
2992 if (is_click)
2994 /* If the character under the cursor (skipping white space) is
2995 * not a word character, try finding a match and select a (),
2996 * {}, [], #if/#endif, etc. block. */
2997 end_visual = curwin->w_cursor;
2998 while (gc = gchar_pos(&end_visual), vim_iswhite(gc))
2999 inc(&end_visual);
3000 if (oap != NULL)
3001 oap->motion_type = MCHAR;
3002 if (oap != NULL
3003 && VIsual_mode == 'v'
3004 && !vim_iswordc(gchar_pos(&end_visual))
3005 && equalpos(curwin->w_cursor, VIsual)
3006 && (pos = findmatch(oap, NUL)) != NULL)
3008 curwin->w_cursor = *pos;
3009 if (oap->motion_type == MLINE)
3010 VIsual_mode = 'V';
3011 else if (*p_sel == 'e')
3013 if (lt(curwin->w_cursor, VIsual))
3014 ++VIsual.col;
3015 else
3016 ++curwin->w_cursor.col;
3021 if (pos == NULL && (is_click || is_drag))
3023 /* When not found a match or when dragging: extend to include
3024 * a word. */
3025 if (lt(curwin->w_cursor, orig_cursor))
3027 find_start_of_word(&curwin->w_cursor);
3028 find_end_of_word(&VIsual);
3030 else
3032 find_start_of_word(&VIsual);
3033 if (*p_sel == 'e' && *ml_get_cursor() != NUL)
3034 #ifdef FEAT_MBYTE
3035 curwin->w_cursor.col +=
3036 (*mb_ptr2len)(ml_get_cursor());
3037 #else
3038 ++curwin->w_cursor.col;
3039 #endif
3040 find_end_of_word(&curwin->w_cursor);
3043 curwin->w_set_curswant = TRUE;
3045 if (is_click)
3046 redraw_curbuf_later(INVERTED); /* update the inversion */
3048 else if (VIsual_active && !old_active)
3050 if (mod_mask & MOD_MASK_ALT)
3051 VIsual_mode = Ctrl_V;
3052 else
3053 VIsual_mode = 'v';
3056 /* If Visual mode changed show it later. */
3057 if ((!VIsual_active && old_active && mode_displayed)
3058 || (VIsual_active && p_smd && msg_silent == 0
3059 && (!old_active || VIsual_mode != old_mode)))
3060 redraw_cmdline = TRUE;
3061 #endif
3063 return moved;
3066 #ifdef FEAT_VISUAL
3068 * Move "pos" back to the start of the word it's in.
3070 static void
3071 find_start_of_word(pos)
3072 pos_T *pos;
3074 char_u *line;
3075 int cclass;
3076 int col;
3078 line = ml_get(pos->lnum);
3079 cclass = get_mouse_class(line + pos->col);
3081 while (pos->col > 0)
3083 col = pos->col - 1;
3084 #ifdef FEAT_MBYTE
3085 col -= (*mb_head_off)(line, line + col);
3086 #endif
3087 if (get_mouse_class(line + col) != cclass)
3088 break;
3089 pos->col = col;
3094 * Move "pos" forward to the end of the word it's in.
3095 * When 'selection' is "exclusive", the position is just after the word.
3097 static void
3098 find_end_of_word(pos)
3099 pos_T *pos;
3101 char_u *line;
3102 int cclass;
3103 int col;
3105 line = ml_get(pos->lnum);
3106 if (*p_sel == 'e' && pos->col > 0)
3108 --pos->col;
3109 #ifdef FEAT_MBYTE
3110 pos->col -= (*mb_head_off)(line, line + pos->col);
3111 #endif
3113 cclass = get_mouse_class(line + pos->col);
3114 while (line[pos->col] != NUL)
3116 #ifdef FEAT_MBYTE
3117 col = pos->col + (*mb_ptr2len)(line + pos->col);
3118 #else
3119 col = pos->col + 1;
3120 #endif
3121 if (get_mouse_class(line + col) != cclass)
3123 if (*p_sel == 'e')
3124 pos->col = col;
3125 break;
3127 pos->col = col;
3132 * Get class of a character for selection: same class means same word.
3133 * 0: blank
3134 * 1: punctuation groups
3135 * 2: normal word character
3136 * >2: multi-byte word character.
3138 static int
3139 get_mouse_class(p)
3140 char_u *p;
3142 int c;
3144 #ifdef FEAT_MBYTE
3145 if (has_mbyte && MB_BYTE2LEN(p[0]) > 1)
3146 return mb_get_class(p);
3147 #endif
3149 c = *p;
3150 if (c == ' ' || c == '\t')
3151 return 0;
3153 if (vim_iswordc(c))
3154 return 2;
3157 * There are a few special cases where we want certain combinations of
3158 * characters to be considered as a single word. These are things like
3159 * "->", "/ *", "*=", "+=", "&=", "<=", ">=", "!=" etc. Otherwise, each
3160 * character is in it's own class.
3162 if (c != NUL && vim_strchr((char_u *)"-+*/%<>&|^!=", c) != NULL)
3163 return 1;
3164 return c;
3166 #endif /* FEAT_VISUAL */
3167 #endif /* FEAT_MOUSE */
3169 #if defined(FEAT_VISUAL) || defined(PROTO)
3171 * Check if highlighting for visual mode is possible, give a warning message
3172 * if not.
3174 void
3175 check_visual_highlight()
3177 static int did_check = FALSE;
3179 if (full_screen)
3181 if (!did_check && hl_attr(HLF_V) == 0)
3182 MSG(_("Warning: terminal cannot highlight"));
3183 did_check = TRUE;
3188 * End Visual mode.
3189 * This function should ALWAYS be called to end Visual mode, except from
3190 * do_pending_operator().
3192 void
3193 end_visual_mode()
3195 #ifdef FEAT_CLIPBOARD
3197 * If we are using the clipboard, then remember what was selected in case
3198 * we need to paste it somewhere while we still own the selection.
3199 * Only do this when the clipboard is already owned. Don't want to grab
3200 * the selection when hitting ESC.
3202 if (clip_star.available && clip_star.owned)
3203 clip_auto_select();
3204 #endif
3206 VIsual_active = FALSE;
3207 #ifdef FEAT_MOUSE
3208 setmouse();
3209 mouse_dragging = 0;
3210 #endif
3212 /* Save the current VIsual area for '< and '> marks, and "gv" */
3213 curbuf->b_visual.vi_mode = VIsual_mode;
3214 curbuf->b_visual.vi_start = VIsual;
3215 curbuf->b_visual.vi_end = curwin->w_cursor;
3216 curbuf->b_visual.vi_curswant = curwin->w_curswant;
3217 #ifdef FEAT_EVAL
3218 curbuf->b_visual_mode_eval = VIsual_mode;
3219 #endif
3220 #ifdef FEAT_VIRTUALEDIT
3221 if (!virtual_active())
3222 curwin->w_cursor.coladd = 0;
3223 #endif
3225 if (mode_displayed)
3226 clear_cmdline = TRUE; /* unshow visual mode later */
3227 #ifdef FEAT_CMDL_INFO
3228 else
3229 clear_showcmd();
3230 #endif
3232 adjust_cursor_eol();
3236 * Reset VIsual_active and VIsual_reselect.
3238 void
3239 reset_VIsual_and_resel()
3241 if (VIsual_active)
3243 end_visual_mode();
3244 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3246 VIsual_reselect = FALSE;
3250 * Reset VIsual_active and VIsual_reselect if it's set.
3252 void
3253 reset_VIsual()
3255 if (VIsual_active)
3257 end_visual_mode();
3258 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3259 VIsual_reselect = FALSE;
3262 #endif /* FEAT_VISUAL */
3264 #if defined(FEAT_BEVAL)
3265 static int find_is_eval_item __ARGS((char_u *ptr, int *colp, int *nbp, int dir));
3268 * Check for a balloon-eval special item to include when searching for an
3269 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
3270 * Returns TRUE if the character at "*ptr" should be included.
3271 * "dir" is FORWARD or BACKWARD, the direction of searching.
3272 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
3273 * "bnp" points to a counter for square brackets.
3275 static int
3276 find_is_eval_item(ptr, colp, bnp, dir)
3277 char_u *ptr;
3278 int *colp;
3279 int *bnp;
3280 int dir;
3282 /* Accept everything inside []. */
3283 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
3284 ++*bnp;
3285 if (*bnp > 0)
3287 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
3288 --*bnp;
3289 return TRUE;
3292 /* skip over "s.var" */
3293 if (*ptr == '.')
3294 return TRUE;
3296 /* two-character item: s->var */
3297 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
3298 && ptr[dir == BACKWARD ? -1 : 0] == '-')
3300 *colp += dir;
3301 return TRUE;
3303 return FALSE;
3305 #endif
3308 * Find the identifier under or to the right of the cursor.
3309 * "find_type" can have one of three values:
3310 * FIND_IDENT: find an identifier (keyword)
3311 * FIND_STRING: find any non-white string
3312 * FIND_IDENT + FIND_STRING: find any non-white string, identifier preferred.
3313 * FIND_EVAL: find text useful for C program debugging
3315 * There are three steps:
3316 * 1. Search forward for the start of an identifier/string. Doesn't move if
3317 * already on one.
3318 * 2. Search backward for the start of this identifier/string.
3319 * This doesn't match the real Vi but I like it a little better and it
3320 * shouldn't bother anyone.
3321 * 3. Search forward to the end of this identifier/string.
3322 * When FIND_IDENT isn't defined, we backup until a blank.
3324 * Returns the length of the string, or zero if no string is found.
3325 * If a string is found, a pointer to the string is put in "*string". This
3326 * string is not always NUL terminated.
3329 find_ident_under_cursor(string, find_type)
3330 char_u **string;
3331 int find_type;
3333 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
3334 curwin->w_cursor.col, string, find_type);
3338 * Like find_ident_under_cursor(), but for any window and any position.
3339 * However: Uses 'iskeyword' from the current window!.
3342 find_ident_at_pos(wp, lnum, startcol, string, find_type)
3343 win_T *wp;
3344 linenr_T lnum;
3345 colnr_T startcol;
3346 char_u **string;
3347 int find_type;
3349 char_u *ptr;
3350 int col = 0; /* init to shut up GCC */
3351 int i;
3352 #ifdef FEAT_MBYTE
3353 int this_class = 0;
3354 int prev_class;
3355 int prevcol;
3356 #endif
3357 #if defined(FEAT_BEVAL)
3358 int bn = 0; /* bracket nesting */
3359 #endif
3362 * if i == 0: try to find an identifier
3363 * if i == 1: try to find any non-white string
3365 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
3366 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
3369 * 1. skip to start of identifier/string
3371 col = startcol;
3372 #ifdef FEAT_MBYTE
3373 if (has_mbyte)
3375 while (ptr[col] != NUL)
3377 # if defined(FEAT_BEVAL)
3378 /* Stop at a ']' to evaluate "a[x]". */
3379 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3380 break;
3381 # endif
3382 this_class = mb_get_class(ptr + col);
3383 if (this_class != 0 && (i == 1 || this_class != 1))
3384 break;
3385 col += (*mb_ptr2len)(ptr + col);
3388 else
3389 #endif
3390 while (ptr[col] != NUL
3391 && (i == 0 ? !vim_iswordc(ptr[col]) : vim_iswhite(ptr[col]))
3392 # if defined(FEAT_BEVAL)
3393 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
3394 # endif
3396 ++col;
3398 #if defined(FEAT_BEVAL)
3399 /* When starting on a ']' count it, so that we include the '['. */
3400 bn = ptr[col] == ']';
3401 #endif
3404 * 2. Back up to start of identifier/string.
3406 #ifdef FEAT_MBYTE
3407 if (has_mbyte)
3409 /* Remember class of character under cursor. */
3410 # if defined(FEAT_BEVAL)
3411 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3412 this_class = mb_get_class((char_u *)"a");
3413 else
3414 # endif
3415 this_class = mb_get_class(ptr + col);
3416 while (col > 0 && this_class != 0)
3418 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
3419 prev_class = mb_get_class(ptr + prevcol);
3420 if (this_class != prev_class
3421 && (i == 0
3422 || prev_class == 0
3423 || (find_type & FIND_IDENT))
3424 # if defined(FEAT_BEVAL)
3425 && (!(find_type & FIND_EVAL)
3426 || prevcol == 0
3427 || !find_is_eval_item(ptr + prevcol, &prevcol,
3428 &bn, BACKWARD))
3429 # endif
3431 break;
3432 col = prevcol;
3435 /* If we don't want just any old string, or we've found an
3436 * identifier, stop searching. */
3437 if (this_class > 2)
3438 this_class = 2;
3439 if (!(find_type & FIND_STRING) || this_class == 2)
3440 break;
3442 else
3443 #endif
3445 while (col > 0
3446 && ((i == 0
3447 ? vim_iswordc(ptr[col - 1])
3448 : (!vim_iswhite(ptr[col - 1])
3449 && (!(find_type & FIND_IDENT)
3450 || !vim_iswordc(ptr[col - 1]))))
3451 #if defined(FEAT_BEVAL)
3452 || ((find_type & FIND_EVAL)
3453 && col > 1
3454 && find_is_eval_item(ptr + col - 1, &col,
3455 &bn, BACKWARD))
3456 #endif
3458 --col;
3460 /* If we don't want just any old string, or we've found an
3461 * identifier, stop searching. */
3462 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
3463 break;
3467 if (ptr[col] == NUL || (i == 0 && (
3468 #ifdef FEAT_MBYTE
3469 has_mbyte ? this_class != 2 :
3470 #endif
3471 !vim_iswordc(ptr[col]))))
3474 * didn't find an identifier or string
3476 if (find_type & FIND_STRING)
3477 EMSG(_("E348: No string under cursor"));
3478 else
3479 EMSG(_("E349: No identifier under cursor"));
3480 return 0;
3482 ptr += col;
3483 *string = ptr;
3486 * 3. Find the end if the identifier/string.
3488 #if defined(FEAT_BEVAL)
3489 bn = 0;
3490 startcol -= col;
3491 #endif
3492 col = 0;
3493 #ifdef FEAT_MBYTE
3494 if (has_mbyte)
3496 /* Search for point of changing multibyte character class. */
3497 this_class = mb_get_class(ptr);
3498 while (ptr[col] != NUL
3499 && ((i == 0 ? mb_get_class(ptr + col) == this_class
3500 : mb_get_class(ptr + col) != 0)
3501 # if defined(FEAT_BEVAL)
3502 || ((find_type & FIND_EVAL)
3503 && col <= (int)startcol
3504 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3505 # endif
3507 col += (*mb_ptr2len)(ptr + col);
3509 else
3510 #endif
3511 while ((i == 0 ? vim_iswordc(ptr[col])
3512 : (ptr[col] != NUL && !vim_iswhite(ptr[col])))
3513 # if defined(FEAT_BEVAL)
3514 || ((find_type & FIND_EVAL)
3515 && col <= (int)startcol
3516 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3517 # endif
3520 ++col;
3523 return col;
3527 * Prepare for redo of a normal command.
3529 static void
3530 prep_redo_cmd(cap)
3531 cmdarg_T *cap;
3533 prep_redo(cap->oap->regname, cap->count0,
3534 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
3538 * Prepare for redo of any command.
3539 * Note that only the last argument can be a multi-byte char.
3541 static void
3542 prep_redo(regname, num, cmd1, cmd2, cmd3, cmd4, cmd5)
3543 int regname;
3544 long num;
3545 int cmd1;
3546 int cmd2;
3547 int cmd3;
3548 int cmd4;
3549 int cmd5;
3551 ResetRedobuff();
3552 if (regname != 0) /* yank from specified buffer */
3554 AppendCharToRedobuff('"');
3555 AppendCharToRedobuff(regname);
3557 if (num)
3558 AppendNumberToRedobuff(num);
3560 if (cmd1 != NUL)
3561 AppendCharToRedobuff(cmd1);
3562 if (cmd2 != NUL)
3563 AppendCharToRedobuff(cmd2);
3564 if (cmd3 != NUL)
3565 AppendCharToRedobuff(cmd3);
3566 if (cmd4 != NUL)
3567 AppendCharToRedobuff(cmd4);
3568 if (cmd5 != NUL)
3569 AppendCharToRedobuff(cmd5);
3573 * check for operator active and clear it
3575 * return TRUE if operator was active
3577 static int
3578 checkclearop(oap)
3579 oparg_T *oap;
3581 if (oap->op_type == OP_NOP)
3582 return FALSE;
3583 clearopbeep(oap);
3584 return TRUE;
3588 * Check for operator or Visual active. Clear active operator.
3590 * Return TRUE if operator or Visual was active.
3592 static int
3593 checkclearopq(oap)
3594 oparg_T *oap;
3596 if (oap->op_type == OP_NOP
3597 #ifdef FEAT_VISUAL
3598 && !VIsual_active
3599 #endif
3601 return FALSE;
3602 clearopbeep(oap);
3603 return TRUE;
3606 static void
3607 clearop(oap)
3608 oparg_T *oap;
3610 oap->op_type = OP_NOP;
3611 oap->regname = 0;
3612 oap->motion_force = NUL;
3613 oap->use_reg_one = FALSE;
3616 static void
3617 clearopbeep(oap)
3618 oparg_T *oap;
3620 clearop(oap);
3621 beep_flush();
3624 #ifdef FEAT_VISUAL
3626 * Remove the shift modifier from a special key.
3628 static void
3629 unshift_special(cap)
3630 cmdarg_T *cap;
3632 switch (cap->cmdchar)
3634 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
3635 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
3636 case K_S_UP: cap->cmdchar = K_UP; break;
3637 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
3638 case K_S_HOME: cap->cmdchar = K_HOME; break;
3639 case K_S_END: cap->cmdchar = K_END; break;
3641 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
3643 #endif
3645 #if defined(FEAT_CMDL_INFO) || defined(PROTO)
3647 * Routines for displaying a partly typed command
3650 #ifdef FEAT_VISUAL /* need room for size of Visual area */
3651 # define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
3652 #else
3653 # define SHOWCMD_BUFLEN SHOWCMD_COLS + 1
3654 #endif
3655 static char_u showcmd_buf[SHOWCMD_BUFLEN];
3656 static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; /* For push_showcmd() */
3657 static int showcmd_is_clear = TRUE;
3658 static int showcmd_visual = FALSE;
3660 static void display_showcmd __ARGS((void));
3662 void
3663 clear_showcmd()
3665 if (!p_sc)
3666 return;
3668 #ifdef FEAT_VISUAL
3669 if (VIsual_active && !char_avail())
3671 int i = lt(VIsual, curwin->w_cursor);
3672 long lines;
3673 colnr_T leftcol, rightcol;
3674 linenr_T top, bot;
3676 /* Show the size of the Visual area. */
3677 if (i)
3679 top = VIsual.lnum;
3680 bot = curwin->w_cursor.lnum;
3682 else
3684 top = curwin->w_cursor.lnum;
3685 bot = VIsual.lnum;
3687 # ifdef FEAT_FOLDING
3688 /* Include closed folds as a whole. */
3689 hasFolding(top, &top, NULL);
3690 hasFolding(bot, NULL, &bot);
3691 # endif
3692 lines = bot - top + 1;
3694 if (VIsual_mode == Ctrl_V)
3696 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
3697 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
3698 (long)(rightcol - leftcol + 1));
3700 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
3701 sprintf((char *)showcmd_buf, "%ld", lines);
3702 else
3703 sprintf((char *)showcmd_buf, "%ld", (long)(i
3704 ? curwin->w_cursor.col - VIsual.col
3705 : VIsual.col - curwin->w_cursor.col) + (*p_sel != 'e'));
3706 showcmd_buf[SHOWCMD_COLS] = NUL; /* truncate */
3707 showcmd_visual = TRUE;
3709 else
3710 #endif
3712 showcmd_buf[0] = NUL;
3713 showcmd_visual = FALSE;
3715 /* Don't actually display something if there is nothing to clear. */
3716 if (showcmd_is_clear)
3717 return;
3720 display_showcmd();
3724 * Add 'c' to string of shown command chars.
3725 * Return TRUE if output has been written (and setcursor() has been called).
3728 add_to_showcmd(c)
3729 int c;
3731 char_u *p;
3732 int old_len;
3733 int extra_len;
3734 int overflow;
3735 #if defined(FEAT_MOUSE)
3736 int i;
3737 static int ignore[] =
3739 # ifdef FEAT_GUI
3740 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
3741 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
3742 # endif
3743 K_IGNORE,
3744 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE,
3745 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
3746 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
3747 K_MOUSEDOWN, K_MOUSEUP,
3748 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
3749 K_CURSORHOLD,
3752 #endif
3754 if (!p_sc || msg_silent != 0)
3755 return FALSE;
3757 if (showcmd_visual)
3759 showcmd_buf[0] = NUL;
3760 showcmd_visual = FALSE;
3763 #if defined(FEAT_MOUSE)
3764 /* Ignore keys that are scrollbar updates and mouse clicks */
3765 if (IS_SPECIAL(c))
3766 for (i = 0; ignore[i] != 0; ++i)
3767 if (ignore[i] == c)
3768 return FALSE;
3769 #endif
3771 p = transchar(c);
3772 old_len = (int)STRLEN(showcmd_buf);
3773 extra_len = (int)STRLEN(p);
3774 overflow = old_len + extra_len - SHOWCMD_COLS;
3775 if (overflow > 0)
3776 mch_memmove(showcmd_buf, showcmd_buf + overflow,
3777 old_len - overflow + 1);
3778 STRCAT(showcmd_buf, p);
3780 if (char_avail())
3781 return FALSE;
3783 display_showcmd();
3785 return TRUE;
3788 void
3789 add_to_showcmd_c(c)
3790 int c;
3792 if (!add_to_showcmd(c))
3793 setcursor();
3797 * Delete 'len' characters from the end of the shown command.
3799 static void
3800 del_from_showcmd(len)
3801 int len;
3803 int old_len;
3805 if (!p_sc)
3806 return;
3808 old_len = (int)STRLEN(showcmd_buf);
3809 if (len > old_len)
3810 len = old_len;
3811 showcmd_buf[old_len - len] = NUL;
3813 if (!char_avail())
3814 display_showcmd();
3818 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
3819 * something and there is a partial mapping.
3821 void
3822 push_showcmd()
3824 if (p_sc)
3825 STRCPY(old_showcmd_buf, showcmd_buf);
3828 void
3829 pop_showcmd()
3831 if (!p_sc)
3832 return;
3834 STRCPY(showcmd_buf, old_showcmd_buf);
3836 display_showcmd();
3839 static void
3840 display_showcmd()
3842 int len;
3844 cursor_off();
3846 len = (int)STRLEN(showcmd_buf);
3847 if (len == 0)
3848 showcmd_is_clear = TRUE;
3849 else
3851 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
3852 showcmd_is_clear = FALSE;
3856 * clear the rest of an old message by outputting up to SHOWCMD_COLS
3857 * spaces
3859 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
3861 setcursor(); /* put cursor back where it belongs */
3863 #endif
3865 #ifdef FEAT_SCROLLBIND
3867 * When "check" is FALSE, prepare for commands that scroll the window.
3868 * When "check" is TRUE, take care of scroll-binding after the window has
3869 * scrolled. Called from normal_cmd() and edit().
3871 void
3872 do_check_scrollbind(check)
3873 int check;
3875 static win_T *old_curwin = NULL;
3876 static linenr_T old_topline = 0;
3877 #ifdef FEAT_DIFF
3878 static int old_topfill = 0;
3879 #endif
3880 static buf_T *old_buf = NULL;
3881 static colnr_T old_leftcol = 0;
3883 if (check && curwin->w_p_scb)
3885 /* If a ":syncbind" command was just used, don't scroll, only reset
3886 * the values. */
3887 if (did_syncbind)
3888 did_syncbind = FALSE;
3889 else if (curwin == old_curwin)
3892 * Synchronize other windows, as necessary according to
3893 * 'scrollbind'. Don't do this after an ":edit" command, except
3894 * when 'diff' is set.
3896 if ((curwin->w_buffer == old_buf
3897 #ifdef FEAT_DIFF
3898 || curwin->w_p_diff
3899 #endif
3901 && (curwin->w_topline != old_topline
3902 #ifdef FEAT_DIFF
3903 || curwin->w_topfill != old_topfill
3904 #endif
3905 || curwin->w_leftcol != old_leftcol))
3907 check_scrollbind(curwin->w_topline - old_topline,
3908 (long)(curwin->w_leftcol - old_leftcol));
3911 else if (vim_strchr(p_sbo, 'j')) /* jump flag set in 'scrollopt' */
3914 * When switching between windows, make sure that the relative
3915 * vertical offset is valid for the new window. The relative
3916 * offset is invalid whenever another 'scrollbind' window has
3917 * scrolled to a point that would force the current window to
3918 * scroll past the beginning or end of its buffer. When the
3919 * resync is performed, some of the other 'scrollbind' windows may
3920 * need to jump so that the current window's relative position is
3921 * visible on-screen.
3923 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
3925 curwin->w_scbind_pos = curwin->w_topline;
3928 old_curwin = curwin;
3929 old_topline = curwin->w_topline;
3930 #ifdef FEAT_DIFF
3931 old_topfill = curwin->w_topfill;
3932 #endif
3933 old_buf = curwin->w_buffer;
3934 old_leftcol = curwin->w_leftcol;
3938 * Synchronize any windows that have "scrollbind" set, based on the
3939 * number of rows by which the current window has changed
3940 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
3942 void
3943 check_scrollbind(topline_diff, leftcol_diff)
3944 linenr_T topline_diff;
3945 long leftcol_diff;
3947 int want_ver;
3948 int want_hor;
3949 win_T *old_curwin = curwin;
3950 buf_T *old_curbuf = curbuf;
3951 #ifdef FEAT_VISUAL
3952 int old_VIsual_select = VIsual_select;
3953 int old_VIsual_active = VIsual_active;
3954 #endif
3955 colnr_T tgt_leftcol = curwin->w_leftcol;
3956 long topline;
3957 long y;
3960 * check 'scrollopt' string for vertical and horizontal scroll options
3962 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
3963 #ifdef FEAT_DIFF
3964 want_ver |= old_curwin->w_p_diff;
3965 #endif
3966 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
3969 * loop through the scrollbound windows and scroll accordingly
3971 #ifdef FEAT_VISUAL
3972 VIsual_select = VIsual_active = 0;
3973 #endif
3974 for (curwin = firstwin; curwin; curwin = curwin->w_next)
3976 curbuf = curwin->w_buffer;
3977 /* skip original window and windows with 'noscrollbind' */
3978 if (curwin != old_curwin && curwin->w_p_scb)
3981 * do the vertical scroll
3983 if (want_ver)
3985 #ifdef FEAT_DIFF
3986 if (old_curwin->w_p_diff && curwin->w_p_diff)
3988 diff_set_topline(old_curwin, curwin);
3990 else
3991 #endif
3993 curwin->w_scbind_pos += topline_diff;
3994 topline = curwin->w_scbind_pos;
3995 if (topline > curbuf->b_ml.ml_line_count)
3996 topline = curbuf->b_ml.ml_line_count;
3997 if (topline < 1)
3998 topline = 1;
4000 y = topline - curwin->w_topline;
4001 if (y > 0)
4002 scrollup(y, FALSE);
4003 else
4004 scrolldown(-y, FALSE);
4007 redraw_later(VALID);
4008 cursor_correct();
4009 #ifdef FEAT_WINDOWS
4010 curwin->w_redr_status = TRUE;
4011 #endif
4015 * do the horizontal scroll
4017 if (want_hor && curwin->w_leftcol != tgt_leftcol)
4019 curwin->w_leftcol = tgt_leftcol;
4020 leftcol_changed();
4026 * reset current-window
4028 #ifdef FEAT_VISUAL
4029 VIsual_select = old_VIsual_select;
4030 VIsual_active = old_VIsual_active;
4031 #endif
4032 curwin = old_curwin;
4033 curbuf = old_curbuf;
4035 #endif /* #ifdef FEAT_SCROLLBIND */
4038 * Command character that's ignored.
4039 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
4040 * xon/xoff
4042 static void
4043 nv_ignore(cap)
4044 cmdarg_T *cap;
4046 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
4050 * Command character that doesn't do anything, but unlike nv_ignore() does
4051 * start edit(). Used for "startinsert" executed while starting up.
4053 /*ARGSUSED */
4054 static void
4055 nv_nop(cap)
4056 cmdarg_T *cap;
4061 * Command character doesn't exist.
4063 static void
4064 nv_error(cap)
4065 cmdarg_T *cap;
4067 clearopbeep(cap->oap);
4071 * <Help> and <F1> commands.
4073 static void
4074 nv_help(cap)
4075 cmdarg_T *cap;
4077 if (!checkclearopq(cap->oap))
4078 ex_help(NULL);
4082 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
4084 static void
4085 nv_addsub(cap)
4086 cmdarg_T *cap;
4088 if (!checkclearopq(cap->oap)
4089 && do_addsub((int)cap->cmdchar, cap->count1) == OK)
4090 prep_redo_cmd(cap);
4094 * CTRL-F, CTRL-B, etc: Scroll page up or down.
4096 static void
4097 nv_page(cap)
4098 cmdarg_T *cap;
4100 if (!checkclearop(cap->oap))
4102 #ifdef FEAT_WINDOWS
4103 if (mod_mask & MOD_MASK_CTRL)
4105 /* <C-PageUp>: tab page back; <C-PageDown>: tab page forward */
4106 if (cap->arg == BACKWARD)
4107 goto_tabpage(-(int)cap->count1);
4108 else
4109 goto_tabpage((int)cap->count0);
4111 else
4112 #endif
4113 (void)onepage(cap->arg, cap->count1);
4118 * Implementation of "gd" and "gD" command.
4120 static void
4121 nv_gd(oap, nchar, thisblock)
4122 oparg_T *oap;
4123 int nchar;
4124 int thisblock; /* 1 for "1gd" and "1gD" */
4126 int len;
4127 char_u *ptr;
4129 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
4130 || find_decl(ptr, len, nchar == 'd', thisblock, 0) == FAIL)
4131 clearopbeep(oap);
4132 #ifdef FEAT_FOLDING
4133 else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
4134 foldOpenCursor();
4135 #endif
4139 * Search for variable declaration of "ptr[len]".
4140 * When "locally" is TRUE in the current function ("gd"), otherwise in the
4141 * current file ("gD").
4142 * When "thisblock" is TRUE check the {} block scope.
4143 * Return FAIL when not found.
4146 find_decl(ptr, len, locally, thisblock, searchflags)
4147 char_u *ptr;
4148 int len;
4149 int locally;
4150 int thisblock;
4151 int searchflags; /* flags passed to searchit() */
4153 char_u *pat;
4154 pos_T old_pos;
4155 pos_T par_pos;
4156 pos_T found_pos;
4157 int t;
4158 int save_p_ws;
4159 int save_p_scs;
4160 int retval = OK;
4161 int incll;
4163 if ((pat = alloc(len + 7)) == NULL)
4164 return FAIL;
4166 /* Put "\V" before the pattern to avoid that the special meaning of "."
4167 * and "~" causes trouble. */
4168 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
4169 len, ptr);
4170 old_pos = curwin->w_cursor;
4171 save_p_ws = p_ws;
4172 save_p_scs = p_scs;
4173 p_ws = FALSE; /* don't wrap around end of file now */
4174 p_scs = FALSE; /* don't switch ignorecase off now */
4177 * With "gD" go to line 1.
4178 * With "gd" Search back for the start of the current function, then go
4179 * back until a blank line. If this fails go to line 1.
4181 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
4183 setpcmark(); /* Set in findpar() otherwise */
4184 curwin->w_cursor.lnum = 1;
4185 par_pos = curwin->w_cursor;
4187 else
4189 par_pos = curwin->w_cursor;
4190 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
4191 --curwin->w_cursor.lnum;
4193 curwin->w_cursor.col = 0;
4195 /* Search forward for the identifier, ignore comment lines. */
4196 clearpos(&found_pos);
4197 for (;;)
4199 t = searchit(curwin, curbuf, &curwin->w_cursor, FORWARD,
4200 pat, 1L, searchflags, RE_LAST, (linenr_T)0, NULL);
4201 if (curwin->w_cursor.lnum >= old_pos.lnum)
4202 t = FAIL; /* match after start is failure too */
4204 if (thisblock && t != FAIL)
4206 pos_T *pos;
4208 /* Check that the block the match is in doesn't end before the
4209 * position where we started the search from. */
4210 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
4211 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
4212 && pos->lnum < old_pos.lnum)
4213 continue;
4216 if (t == FAIL)
4218 /* If we previously found a valid position, use it. */
4219 if (found_pos.lnum != 0)
4221 curwin->w_cursor = found_pos;
4222 t = OK;
4224 break;
4226 #ifdef FEAT_COMMENTS
4227 if (get_leader_len(ml_get_curline(), NULL, FALSE) > 0)
4229 /* Ignore this line, continue at start of next line. */
4230 ++curwin->w_cursor.lnum;
4231 curwin->w_cursor.col = 0;
4232 continue;
4234 #endif
4235 if (!locally) /* global search: use first match found */
4236 break;
4237 if (curwin->w_cursor.lnum >= par_pos.lnum)
4239 /* If we previously found a valid position, use it. */
4240 if (found_pos.lnum != 0)
4241 curwin->w_cursor = found_pos;
4242 break;
4245 /* For finding a local variable and the match is before the "{" search
4246 * to find a later match. For K&R style function declarations this
4247 * skips the function header without types. */
4248 found_pos = curwin->w_cursor;
4251 if (t == FAIL)
4253 retval = FAIL;
4254 curwin->w_cursor = old_pos;
4256 else
4258 curwin->w_set_curswant = TRUE;
4259 /* "n" searches forward now */
4260 reset_search_dir();
4263 vim_free(pat);
4264 p_ws = save_p_ws;
4265 p_scs = save_p_scs;
4267 return retval;
4271 * Move 'dist' lines in direction 'dir', counting lines by *screen*
4272 * lines rather than lines in the file.
4273 * 'dist' must be positive.
4275 * Return OK if able to move cursor, FAIL otherwise.
4277 static int
4278 nv_screengo(oap, dir, dist)
4279 oparg_T *oap;
4280 int dir;
4281 long dist;
4283 int linelen = linetabsize(ml_get_curline());
4284 int retval = OK;
4285 int atend = FALSE;
4286 int n;
4287 int col_off1; /* margin offset for first screen line */
4288 int col_off2; /* margin offset for wrapped screen line */
4289 int width1; /* text width for first screen line */
4290 int width2; /* test width for wrapped screen line */
4292 oap->motion_type = MCHAR;
4293 oap->inclusive = FALSE;
4295 col_off1 = curwin_col_off();
4296 col_off2 = col_off1 - curwin_col_off2();
4297 width1 = W_WIDTH(curwin) - col_off1;
4298 width2 = W_WIDTH(curwin) - col_off2;
4300 #ifdef FEAT_VERTSPLIT
4301 if (curwin->w_width != 0)
4303 #endif
4305 * Instead of sticking at the last character of the buffer line we
4306 * try to stick in the last column of the screen.
4308 if (curwin->w_curswant == MAXCOL)
4310 atend = TRUE;
4311 validate_virtcol();
4312 if (width1 <= 0)
4313 curwin->w_curswant = 0;
4314 else
4316 curwin->w_curswant = width1 - 1;
4317 if (curwin->w_virtcol > curwin->w_curswant)
4318 curwin->w_curswant += ((curwin->w_virtcol
4319 - curwin->w_curswant - 1) / width2 + 1) * width2;
4322 else
4324 if (linelen > width1)
4325 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4326 else
4327 n = width1;
4328 if (curwin->w_curswant > (colnr_T)n + 1)
4329 curwin->w_curswant -= ((curwin->w_curswant - n) / width2 + 1)
4330 * width2;
4333 while (dist--)
4335 if (dir == BACKWARD)
4337 if ((long)curwin->w_curswant >= width2)
4338 /* move back within line */
4339 curwin->w_curswant -= width2;
4340 else
4342 /* to previous line */
4343 if (curwin->w_cursor.lnum == 1)
4345 retval = FAIL;
4346 break;
4348 --curwin->w_cursor.lnum;
4349 #ifdef FEAT_FOLDING
4350 /* Move to the start of a closed fold. Don't do that when
4351 * 'foldopen' contains "all": it will open in a moment. */
4352 if (!(fdo_flags & FDO_ALL))
4353 (void)hasFolding(curwin->w_cursor.lnum,
4354 &curwin->w_cursor.lnum, NULL);
4355 #endif
4356 linelen = linetabsize(ml_get_curline());
4357 if (linelen > width1)
4358 curwin->w_curswant += (((linelen - width1 - 1) / width2)
4359 + 1) * width2;
4362 else /* dir == FORWARD */
4364 if (linelen > width1)
4365 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4366 else
4367 n = width1;
4368 if (curwin->w_curswant + width2 < (colnr_T)n)
4369 /* move forward within line */
4370 curwin->w_curswant += width2;
4371 else
4373 /* to next line */
4374 #ifdef FEAT_FOLDING
4375 /* Move to the end of a closed fold. */
4376 (void)hasFolding(curwin->w_cursor.lnum, NULL,
4377 &curwin->w_cursor.lnum);
4378 #endif
4379 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4381 retval = FAIL;
4382 break;
4384 curwin->w_cursor.lnum++;
4385 curwin->w_curswant %= width2;
4389 #ifdef FEAT_VERTSPLIT
4391 #endif
4393 coladvance(curwin->w_curswant);
4395 #if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
4396 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
4399 * Check for landing on a character that got split at the end of the
4400 * last line. We want to advance a screenline, not end up in the same
4401 * screenline or move two screenlines.
4403 validate_virtcol();
4404 if (curwin->w_virtcol > curwin->w_curswant
4405 && (curwin->w_curswant < (colnr_T)width1
4406 ? (curwin->w_curswant > (colnr_T)width1 / 2)
4407 : ((curwin->w_curswant - width1) % width2
4408 > (colnr_T)width2 / 2)))
4409 --curwin->w_cursor.col;
4411 #endif
4413 if (atend)
4414 curwin->w_curswant = MAXCOL; /* stick in the last column */
4416 return retval;
4419 #ifdef FEAT_MOUSE
4421 * Mouse scroll wheel: Default action is to scroll three lines, or one page
4422 * when Shift or Ctrl is used.
4423 * K_MOUSEUP (cap->arg == TRUE) or K_MOUSEDOWN (cap->arg == FALSE)
4425 static void
4426 nv_mousescroll(cap)
4427 cmdarg_T *cap;
4429 # ifdef FEAT_GUI_SCROLL_WHEEL_FORCE
4430 int scroll_wheel_force = 0;
4431 # endif
4432 # if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4433 win_T *old_curwin = curwin;
4435 /* Currently we only get the mouse coordinates in the GUI. */
4436 if (gui.in_use && mouse_row >= 0 && mouse_col >= 0)
4438 int row, col;
4440 row = mouse_row;
4441 col = mouse_col;
4443 /* find the window at the pointer coordinates */
4444 curwin = mouse_find_win(&row, &col);
4445 curbuf = curwin->w_buffer;
4447 # endif
4449 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4451 (void)onepage(cap->arg ? FORWARD : BACKWARD, 1L);
4453 else
4455 # ifdef FEAT_GUI_SCROLL_WHEEL_FORCE
4456 if (gui.in_use && gui.scroll_wheel_force >= 1) {
4457 scroll_wheel_force = gui.scroll_wheel_force;
4458 if (scroll_wheel_force > 1000)
4459 scroll_wheel_force = 1000;
4461 cap->count1 = scroll_wheel_force;
4462 cap->count0 = scroll_wheel_force;
4463 } else {
4464 cap->count1 = 3;
4465 cap->count0 = 3;
4467 # else
4468 cap->count1 = 3;
4469 cap->count0 = 3;
4470 # endif
4471 nv_scroll_line(cap);
4474 # if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4475 curwin->w_redr_status = TRUE;
4477 curwin = old_curwin;
4478 curbuf = curwin->w_buffer;
4479 # endif
4483 * Mouse clicks and drags.
4485 static void
4486 nv_mouse(cap)
4487 cmdarg_T *cap;
4489 (void)do_mouse(cap->oap, cap->cmdchar, BACKWARD, cap->count1, 0);
4491 #endif
4494 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
4495 * cap->arg must be TRUE for CTRL-E.
4497 static void
4498 nv_scroll_line(cap)
4499 cmdarg_T *cap;
4501 if (!checkclearop(cap->oap))
4502 scroll_redraw(cap->arg, cap->count1);
4506 * Scroll "count" lines up or down, and redraw.
4508 void
4509 scroll_redraw(up, count)
4510 int up;
4511 long count;
4513 linenr_T prev_topline = curwin->w_topline;
4514 #ifdef FEAT_DIFF
4515 int prev_topfill = curwin->w_topfill;
4516 #endif
4517 linenr_T prev_lnum = curwin->w_cursor.lnum;
4519 if (up)
4520 scrollup(count, TRUE);
4521 else
4522 scrolldown(count, TRUE);
4523 if (p_so)
4525 /* Adjust the cursor position for 'scrolloff'. Mark w_topline as
4526 * valid, otherwise the screen jumps back at the end of the file. */
4527 cursor_correct();
4528 check_cursor_moved(curwin);
4529 curwin->w_valid |= VALID_TOPLINE;
4531 /* If moved back to where we were, at least move the cursor, otherwise
4532 * we get stuck at one position. Don't move the cursor up if the
4533 * first line of the buffer is already on the screen */
4534 while (curwin->w_topline == prev_topline
4535 #ifdef FEAT_DIFF
4536 && curwin->w_topfill == prev_topfill
4537 #endif
4540 if (up)
4542 if (curwin->w_cursor.lnum > prev_lnum
4543 || cursor_down(1L, FALSE) == FAIL)
4544 break;
4546 else
4548 if (curwin->w_cursor.lnum < prev_lnum
4549 || prev_topline == 1L
4550 || cursor_up(1L, FALSE) == FAIL)
4551 break;
4553 /* Mark w_topline as valid, otherwise the screen jumps back at the
4554 * end of the file. */
4555 check_cursor_moved(curwin);
4556 curwin->w_valid |= VALID_TOPLINE;
4559 if (curwin->w_cursor.lnum != prev_lnum)
4560 coladvance(curwin->w_curswant);
4561 redraw_later(VALID);
4565 * Commands that start with "z".
4567 static void
4568 nv_zet(cap)
4569 cmdarg_T *cap;
4571 long n;
4572 colnr_T col;
4573 int nchar = cap->nchar;
4574 #ifdef FEAT_FOLDING
4575 long old_fdl = curwin->w_p_fdl;
4576 int old_fen = curwin->w_p_fen;
4577 #endif
4578 #ifdef FEAT_SPELL
4579 int undo = FALSE;
4580 #endif
4582 if (VIM_ISDIGIT(nchar))
4585 * "z123{nchar}": edit the count before obtaining {nchar}
4587 if (checkclearop(cap->oap))
4588 return;
4589 n = nchar - '0';
4590 for (;;)
4592 #ifdef USE_ON_FLY_SCROLL
4593 dont_scroll = TRUE; /* disallow scrolling here */
4594 #endif
4595 ++no_mapping;
4596 ++allow_keys; /* no mapping for nchar, but allow key codes */
4597 nchar = plain_vgetc();
4598 #ifdef FEAT_LANGMAP
4599 LANGMAP_ADJUST(nchar, TRUE);
4600 #endif
4601 --no_mapping;
4602 --allow_keys;
4603 #ifdef FEAT_CMDL_INFO
4604 (void)add_to_showcmd(nchar);
4605 #endif
4606 if (nchar == K_DEL || nchar == K_KDEL)
4607 n /= 10;
4608 else if (VIM_ISDIGIT(nchar))
4609 n = n * 10 + (nchar - '0');
4610 else if (nchar == CAR)
4612 #ifdef FEAT_GUI
4613 need_mouse_correct = TRUE;
4614 #endif
4615 win_setheight((int)n);
4616 break;
4618 else if (nchar == 'l'
4619 || nchar == 'h'
4620 || nchar == K_LEFT
4621 || nchar == K_RIGHT)
4623 cap->count1 = n ? n * cap->count1 : cap->count1;
4624 goto dozet;
4626 else
4628 clearopbeep(cap->oap);
4629 break;
4632 cap->oap->op_type = OP_NOP;
4633 return;
4636 dozet:
4637 if (
4638 #ifdef FEAT_FOLDING
4639 /* "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
4640 * and "zC" only in Visual mode. "zj" and "zk" are motion
4641 * commands. */
4642 cap->nchar != 'f' && cap->nchar != 'F'
4643 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
4644 && cap->nchar != 'j' && cap->nchar != 'k'
4646 #endif
4647 checkclearop(cap->oap))
4648 return;
4651 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
4652 * If line number given, set cursor.
4654 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
4655 && cap->count0
4656 && cap->count0 != curwin->w_cursor.lnum)
4658 setpcmark();
4659 if (cap->count0 > curbuf->b_ml.ml_line_count)
4660 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4661 else
4662 curwin->w_cursor.lnum = cap->count0;
4663 check_cursor_col();
4666 switch (nchar)
4668 /* "z+", "z<CR>" and "zt": put cursor at top of screen */
4669 case '+':
4670 if (cap->count0 == 0)
4672 /* No count given: put cursor at the line below screen */
4673 validate_botline(); /* make sure w_botline is valid */
4674 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
4675 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4676 else
4677 curwin->w_cursor.lnum = curwin->w_botline;
4679 /* FALLTHROUGH */
4680 case NL:
4681 case CAR:
4682 case K_KENTER:
4683 beginline(BL_WHITE | BL_FIX);
4684 /* FALLTHROUGH */
4686 case 't': scroll_cursor_top(0, TRUE);
4687 redraw_later(VALID);
4688 break;
4690 /* "z." and "zz": put cursor in middle of screen */
4691 case '.': beginline(BL_WHITE | BL_FIX);
4692 /* FALLTHROUGH */
4694 case 'z': scroll_cursor_halfway(TRUE);
4695 redraw_later(VALID);
4696 break;
4698 /* "z^", "z-" and "zb": put cursor at bottom of screen */
4699 case '^': /* Strange Vi behavior: <count>z^ finds line at top of window
4700 * when <count> is at bottom of window, and puts that one at
4701 * bottom of window. */
4702 if (cap->count0 != 0)
4704 scroll_cursor_bot(0, TRUE);
4705 curwin->w_cursor.lnum = curwin->w_topline;
4707 else if (curwin->w_topline == 1)
4708 curwin->w_cursor.lnum = 1;
4709 else
4710 curwin->w_cursor.lnum = curwin->w_topline - 1;
4711 /* FALLTHROUGH */
4712 case '-':
4713 beginline(BL_WHITE | BL_FIX);
4714 /* FALLTHROUGH */
4716 case 'b': scroll_cursor_bot(0, TRUE);
4717 redraw_later(VALID);
4718 break;
4720 /* "zH" - scroll screen right half-page */
4721 case 'H':
4722 cap->count1 *= W_WIDTH(curwin) / 2;
4723 /* FALLTHROUGH */
4725 /* "zh" - scroll screen to the right */
4726 case 'h':
4727 case K_LEFT:
4728 if (!curwin->w_p_wrap)
4730 if ((colnr_T)cap->count1 > curwin->w_leftcol)
4731 curwin->w_leftcol = 0;
4732 else
4733 curwin->w_leftcol -= (colnr_T)cap->count1;
4734 leftcol_changed();
4736 break;
4738 /* "zL" - scroll screen left half-page */
4739 case 'L': cap->count1 *= W_WIDTH(curwin) / 2;
4740 /* FALLTHROUGH */
4742 /* "zl" - scroll screen to the left */
4743 case 'l':
4744 case K_RIGHT:
4745 if (!curwin->w_p_wrap)
4747 /* scroll the window left */
4748 curwin->w_leftcol += (colnr_T)cap->count1;
4749 leftcol_changed();
4751 break;
4753 /* "zs" - scroll screen, cursor at the start */
4754 case 's': if (!curwin->w_p_wrap)
4756 #ifdef FEAT_FOLDING
4757 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4758 col = 0; /* like the cursor is in col 0 */
4759 else
4760 #endif
4761 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
4762 if ((long)col > p_siso)
4763 col -= p_siso;
4764 else
4765 col = 0;
4766 if (curwin->w_leftcol != col)
4768 curwin->w_leftcol = col;
4769 redraw_later(NOT_VALID);
4772 break;
4774 /* "ze" - scroll screen, cursor at the end */
4775 case 'e': if (!curwin->w_p_wrap)
4777 #ifdef FEAT_FOLDING
4778 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4779 col = 0; /* like the cursor is in col 0 */
4780 else
4781 #endif
4782 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
4783 n = W_WIDTH(curwin) - curwin_col_off();
4784 if ((long)col + p_siso < n)
4785 col = 0;
4786 else
4787 col = col + p_siso - n + 1;
4788 if (curwin->w_leftcol != col)
4790 curwin->w_leftcol = col;
4791 redraw_later(NOT_VALID);
4794 break;
4796 #ifdef FEAT_FOLDING
4797 /* "zF": create fold command */
4798 /* "zf": create fold operator */
4799 case 'F':
4800 case 'f': if (foldManualAllowed(TRUE))
4802 cap->nchar = 'f';
4803 nv_operator(cap);
4804 curwin->w_p_fen = TRUE;
4806 /* "zF" is like "zfzf" */
4807 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
4809 nv_operator(cap);
4810 finish_op = TRUE;
4813 else
4814 clearopbeep(cap->oap);
4815 break;
4817 /* "zd": delete fold at cursor */
4818 /* "zD": delete fold at cursor recursively */
4819 case 'd':
4820 case 'D': if (foldManualAllowed(FALSE))
4822 if (VIsual_active)
4823 nv_operator(cap);
4824 else
4825 deleteFold(curwin->w_cursor.lnum,
4826 curwin->w_cursor.lnum, nchar == 'D', FALSE);
4828 break;
4830 /* "zE": erease all folds */
4831 case 'E': if (foldmethodIsManual(curwin))
4833 clearFolding(curwin);
4834 changed_window_setting();
4836 else if (foldmethodIsMarker(curwin))
4837 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
4838 TRUE, FALSE);
4839 else
4840 EMSG(_("E352: Cannot erase folds with current 'foldmethod'"));
4841 break;
4843 /* "zn": fold none: reset 'foldenable' */
4844 case 'n': curwin->w_p_fen = FALSE;
4845 break;
4847 /* "zN": fold Normal: set 'foldenable' */
4848 case 'N': curwin->w_p_fen = TRUE;
4849 break;
4851 /* "zi": invert folding: toggle 'foldenable' */
4852 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
4853 break;
4855 /* "za": open closed fold or close open fold at cursor */
4856 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4857 openFold(curwin->w_cursor.lnum, cap->count1);
4858 else
4860 closeFold(curwin->w_cursor.lnum, cap->count1);
4861 curwin->w_p_fen = TRUE;
4863 break;
4865 /* "zA": open fold at cursor recursively */
4866 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4867 openFoldRecurse(curwin->w_cursor.lnum);
4868 else
4870 closeFoldRecurse(curwin->w_cursor.lnum);
4871 curwin->w_p_fen = TRUE;
4873 break;
4875 /* "zo": open fold at cursor or Visual area */
4876 case 'o': if (VIsual_active)
4877 nv_operator(cap);
4878 else
4879 openFold(curwin->w_cursor.lnum, cap->count1);
4880 break;
4882 /* "zO": open fold recursively */
4883 case 'O': if (VIsual_active)
4884 nv_operator(cap);
4885 else
4886 openFoldRecurse(curwin->w_cursor.lnum);
4887 break;
4889 /* "zc": close fold at cursor or Visual area */
4890 case 'c': if (VIsual_active)
4891 nv_operator(cap);
4892 else
4893 closeFold(curwin->w_cursor.lnum, cap->count1);
4894 curwin->w_p_fen = TRUE;
4895 break;
4897 /* "zC": close fold recursively */
4898 case 'C': if (VIsual_active)
4899 nv_operator(cap);
4900 else
4901 closeFoldRecurse(curwin->w_cursor.lnum);
4902 curwin->w_p_fen = TRUE;
4903 break;
4905 /* "zv": open folds at the cursor */
4906 case 'v': foldOpenCursor();
4907 break;
4909 /* "zx": re-apply 'foldlevel' and open folds at the cursor */
4910 case 'x': curwin->w_p_fen = TRUE;
4911 newFoldLevel(); /* update right now */
4912 foldOpenCursor();
4913 break;
4915 /* "zX": undo manual opens/closes, re-apply 'foldlevel' */
4916 case 'X': curwin->w_p_fen = TRUE;
4917 old_fdl = -1; /* force an update */
4918 break;
4920 /* "zm": fold more */
4921 case 'm': if (curwin->w_p_fdl > 0)
4922 --curwin->w_p_fdl;
4923 old_fdl = -1; /* force an update */
4924 curwin->w_p_fen = TRUE;
4925 break;
4927 /* "zM": close all folds */
4928 case 'M': curwin->w_p_fdl = 0;
4929 old_fdl = -1; /* force an update */
4930 curwin->w_p_fen = TRUE;
4931 break;
4933 /* "zr": reduce folding */
4934 case 'r': ++curwin->w_p_fdl;
4935 break;
4937 /* "zR": open all folds */
4938 case 'R': curwin->w_p_fdl = getDeepestNesting();
4939 old_fdl = -1; /* force an update */
4940 break;
4942 case 'j': /* "zj" move to next fold downwards */
4943 case 'k': /* "zk" move to next fold upwards */
4944 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
4945 cap->count1) == FAIL)
4946 clearopbeep(cap->oap);
4947 break;
4949 #endif /* FEAT_FOLDING */
4951 #ifdef FEAT_SPELL
4952 case 'u': /* "zug" and "zuw": undo "zg" and "zw" */
4953 ++no_mapping;
4954 ++allow_keys; /* no mapping for nchar, but allow key codes */
4955 nchar = plain_vgetc();
4956 #ifdef FEAT_LANGMAP
4957 LANGMAP_ADJUST(nchar, TRUE);
4958 #endif
4959 --no_mapping;
4960 --allow_keys;
4961 #ifdef FEAT_CMDL_INFO
4962 (void)add_to_showcmd(nchar);
4963 #endif
4964 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
4966 clearopbeep(cap->oap);
4967 break;
4969 undo = TRUE;
4970 /*FALLTHROUGH*/
4972 case 'g': /* "zg": add good word to word list */
4973 case 'w': /* "zw": add wrong word to word list */
4974 case 'G': /* "zG": add good word to temp word list */
4975 case 'W': /* "zW": add wrong word to temp word list */
4977 char_u *ptr = NULL;
4978 int len;
4980 if (checkclearop(cap->oap))
4981 break;
4982 # ifdef FEAT_VISUAL
4983 if (VIsual_active && get_visual_text(cap, &ptr, &len)
4984 == FAIL)
4985 return;
4986 # endif
4987 if (ptr == NULL)
4989 pos_T pos = curwin->w_cursor;
4991 /* Find bad word under the cursor. */
4992 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
4993 if (len != 0 && curwin->w_cursor.col <= pos.col)
4994 ptr = ml_get_pos(&curwin->w_cursor);
4995 curwin->w_cursor = pos;
4998 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
4999 FIND_IDENT)) == 0)
5000 return;
5001 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W',
5002 (nchar == 'G' || nchar == 'W')
5003 ? 0 : (int)cap->count1,
5004 undo);
5006 break;
5008 case '=': /* "z=": suggestions for a badly spelled word */
5009 if (!checkclearop(cap->oap))
5010 spell_suggest((int)cap->count0);
5011 break;
5012 #endif
5014 default: clearopbeep(cap->oap);
5017 #ifdef FEAT_FOLDING
5018 /* Redraw when 'foldenable' changed */
5019 if (old_fen != curwin->w_p_fen)
5021 # ifdef FEAT_DIFF
5022 win_T *wp;
5024 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
5026 /* Adjust 'foldenable' in diff-synced windows. */
5027 FOR_ALL_WINDOWS(wp)
5029 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
5031 wp->w_p_fen = curwin->w_p_fen;
5032 changed_window_setting_win(wp);
5036 # endif
5037 changed_window_setting();
5040 /* Redraw when 'foldlevel' changed. */
5041 if (old_fdl != curwin->w_p_fdl)
5042 newFoldLevel();
5043 #endif
5046 #ifdef FEAT_GUI
5048 * Vertical scrollbar movement.
5050 static void
5051 nv_ver_scrollbar(cap)
5052 cmdarg_T *cap;
5054 if (cap->oap->op_type != OP_NOP)
5055 clearopbeep(cap->oap);
5057 /* Even if an operator was pending, we still want to scroll */
5058 gui_do_scroll();
5062 * Horizontal scrollbar movement.
5064 static void
5065 nv_hor_scrollbar(cap)
5066 cmdarg_T *cap;
5068 if (cap->oap->op_type != OP_NOP)
5069 clearopbeep(cap->oap);
5071 /* Even if an operator was pending, we still want to scroll */
5072 gui_do_horiz_scroll();
5074 #endif
5076 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
5078 * Click in GUI tab.
5080 static void
5081 nv_tabline(cap)
5082 cmdarg_T *cap;
5084 if (cap->oap->op_type != OP_NOP)
5085 clearopbeep(cap->oap);
5087 /* Even if an operator was pending, we still want to jump tabs. */
5088 goto_tabpage(current_tab);
5092 * Selected item in tab line menu.
5094 static void
5095 nv_tabmenu(cap)
5096 cmdarg_T *cap;
5098 if (cap->oap->op_type != OP_NOP)
5099 clearopbeep(cap->oap);
5101 /* Even if an operator was pending, we still want to jump tabs. */
5102 handle_tabmenu();
5106 * Handle selecting an item of the GUI tab line menu.
5107 * Used in Normal and Insert mode.
5109 void
5110 handle_tabmenu()
5112 switch (current_tabmenu)
5114 case TABLINE_MENU_CLOSE:
5115 if (current_tab == 0)
5116 do_cmdline_cmd((char_u *)"tabclose");
5117 else
5119 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
5120 current_tab);
5121 do_cmdline_cmd(IObuff);
5123 break;
5125 case TABLINE_MENU_NEW:
5126 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
5127 current_tab > 0 ? current_tab - 1 : 999);
5128 do_cmdline_cmd(IObuff);
5129 break;
5131 case TABLINE_MENU_OPEN:
5132 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
5133 current_tab > 0 ? current_tab - 1 : 999);
5134 do_cmdline_cmd(IObuff);
5135 break;
5138 #endif
5141 * "Q" command.
5143 static void
5144 nv_exmode(cap)
5145 cmdarg_T *cap;
5148 * Ignore 'Q' in Visual mode, just give a beep.
5150 #ifdef FEAT_VISUAL
5151 if (VIsual_active)
5152 vim_beep();
5153 else
5154 #endif
5155 if (!checkclearop(cap->oap))
5156 do_exmode(FALSE);
5160 * Handle a ":" command.
5162 static void
5163 nv_colon(cap)
5164 cmdarg_T *cap;
5166 int old_p_im;
5168 #ifdef FEAT_VISUAL
5169 if (VIsual_active)
5170 nv_operator(cap);
5171 else
5172 #endif
5174 if (cap->oap->op_type != OP_NOP)
5176 /* Using ":" as a movement is characterwise exclusive. */
5177 cap->oap->motion_type = MCHAR;
5178 cap->oap->inclusive = FALSE;
5180 else if (cap->count0)
5182 /* translate "count:" into ":.,.+(count - 1)" */
5183 stuffcharReadbuff('.');
5184 if (cap->count0 > 1)
5186 stuffReadbuff((char_u *)",.+");
5187 stuffnumReadbuff((long)cap->count0 - 1L);
5191 /* When typing, don't type below an old message */
5192 if (KeyTyped)
5193 compute_cmdrow();
5195 old_p_im = p_im;
5197 /* get a command line and execute it */
5198 do_cmdline(NULL, getexline, NULL,
5199 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
5201 /* If 'insertmode' changed, enter or exit Insert mode */
5202 if (p_im != old_p_im)
5204 if (p_im)
5205 restart_edit = 'i';
5206 else
5207 restart_edit = 0;
5210 /* The start of the operator may have become invalid by the Ex
5211 * command. */
5212 if (cap->oap->op_type != OP_NOP
5213 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
5214 || cap->oap->start.col >
5215 STRLEN(ml_get(cap->oap->start.lnum))))
5216 clearopbeep(cap->oap);
5221 * Handle CTRL-G command.
5223 static void
5224 nv_ctrlg(cap)
5225 cmdarg_T *cap;
5227 #ifdef FEAT_VISUAL
5228 if (VIsual_active) /* toggle Selection/Visual mode */
5230 VIsual_select = !VIsual_select;
5231 showmode();
5233 else
5234 #endif
5235 if (!checkclearop(cap->oap))
5236 /* print full name if count given or :cd used */
5237 fileinfo((int)cap->count0, FALSE, TRUE);
5241 * Handle CTRL-H <Backspace> command.
5243 static void
5244 nv_ctrlh(cap)
5245 cmdarg_T *cap;
5247 #ifdef FEAT_VISUAL
5248 if (VIsual_active && VIsual_select)
5250 cap->cmdchar = 'x'; /* BS key behaves like 'x' in Select mode */
5251 v_visop(cap);
5253 else
5254 #endif
5255 nv_left(cap);
5259 * CTRL-L: clear screen and redraw.
5261 static void
5262 nv_clear(cap)
5263 cmdarg_T *cap;
5265 if (!checkclearop(cap->oap))
5267 #if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
5269 * Right now, the BeBox doesn't seem to have an easy way to detect
5270 * window resizing, so we cheat and make the user detect it
5271 * manually with CTRL-L instead
5273 ui_get_shellsize();
5274 #endif
5275 #ifdef FEAT_SYN_HL
5276 /* Clear all syntax states to force resyncing. */
5277 syn_stack_free_all(curbuf);
5278 #endif
5279 redraw_later(CLEAR);
5284 * CTRL-O: In Select mode: switch to Visual mode for one command.
5285 * Otherwise: Go to older pcmark.
5287 static void
5288 nv_ctrlo(cap)
5289 cmdarg_T *cap;
5291 #ifdef FEAT_VISUAL
5292 if (VIsual_active && VIsual_select)
5294 VIsual_select = FALSE;
5295 showmode();
5296 restart_VIsual_select = 2; /* restart Select mode later */
5298 else
5299 #endif
5301 cap->count1 = -cap->count1;
5302 nv_pcmark(cap);
5307 * CTRL-^ command, short for ":e #"
5309 static void
5310 nv_hat(cap)
5311 cmdarg_T *cap;
5313 if (!checkclearopq(cap->oap))
5314 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
5315 GETF_SETMARK|GETF_ALT, FALSE);
5319 * "Z" commands.
5321 static void
5322 nv_Zet(cap)
5323 cmdarg_T *cap;
5325 if (!checkclearopq(cap->oap))
5327 switch (cap->nchar)
5329 /* "ZZ": equivalent to ":x". */
5330 case 'Z': do_cmdline_cmd((char_u *)"x");
5331 break;
5333 /* "ZQ": equivalent to ":q!" (Elvis compatible). */
5334 case 'Q': do_cmdline_cmd((char_u *)"q!");
5335 break;
5337 default: clearopbeep(cap->oap);
5342 #if defined(FEAT_WINDOWS) || defined(PROTO)
5344 * Call nv_ident() as if "c1" was used, with "c2" as next character.
5346 void
5347 do_nv_ident(c1, c2)
5348 int c1;
5349 int c2;
5351 oparg_T oa;
5352 cmdarg_T ca;
5354 clear_oparg(&oa);
5355 vim_memset(&ca, 0, sizeof(ca));
5356 ca.oap = &oa;
5357 ca.cmdchar = c1;
5358 ca.nchar = c2;
5359 nv_ident(&ca);
5361 #endif
5364 * Handle the commands that use the word under the cursor.
5365 * [g] CTRL-] :ta to current identifier
5366 * [g] 'K' run program for current identifier
5367 * [g] '*' / to current identifier or string
5368 * [g] '#' ? to current identifier or string
5369 * g ']' :tselect for current identifier
5371 static void
5372 nv_ident(cap)
5373 cmdarg_T *cap;
5375 char_u *ptr = NULL;
5376 char_u *buf;
5377 char_u *p;
5378 char_u *kp; /* value of 'keywordprg' */
5379 int kp_help; /* 'keywordprg' is ":help" */
5380 int n = 0; /* init for GCC */
5381 int cmdchar;
5382 int g_cmd; /* "g" command */
5383 char_u *aux_ptr;
5384 int isman;
5385 int isman_s;
5387 if (cap->cmdchar == 'g') /* "g*", "g#", "g]" and "gCTRL-]" */
5389 cmdchar = cap->nchar;
5390 g_cmd = TRUE;
5392 else
5394 cmdchar = cap->cmdchar;
5395 g_cmd = FALSE;
5398 if (cmdchar == POUND) /* the pound sign, '#' for English keyboards */
5399 cmdchar = '#';
5402 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
5404 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
5406 #ifdef FEAT_VISUAL
5407 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
5408 return;
5409 #endif
5410 if (checkclearopq(cap->oap))
5411 return;
5414 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
5415 (cmdchar == '*' || cmdchar == '#')
5416 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
5418 clearop(cap->oap);
5419 return;
5422 /* Allocate buffer to put the command in. Inserting backslashes can
5423 * double the length of the word. p_kp / curbuf->b_p_kp could be added
5424 * and some numbers. */
5425 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
5426 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
5427 || STRCMP(kp, ":help") == 0);
5428 buf = alloc((unsigned)(n * 2 + 30 + STRLEN(kp)));
5429 if (buf == NULL)
5430 return;
5431 buf[0] = NUL;
5433 switch (cmdchar)
5435 case '*':
5436 case '#':
5438 * Put cursor at start of word, makes search skip the word
5439 * under the cursor.
5440 * Call setpcmark() first, so "*``" puts the cursor back where
5441 * it was.
5443 setpcmark();
5444 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
5446 if (!g_cmd && vim_iswordp(ptr))
5447 STRCPY(buf, "\\<");
5448 no_smartcase = TRUE; /* don't use 'smartcase' now */
5449 break;
5451 case 'K':
5452 if (kp_help)
5453 STRCPY(buf, "he! ");
5454 else
5456 /* When a count is given, turn it into a range. Is this
5457 * really what we want? */
5458 isman = (STRCMP(kp, "man") == 0);
5459 isman_s = (STRCMP(kp, "man -s") == 0);
5460 if (cap->count0 != 0 && !(isman || isman_s))
5461 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
5463 STRCAT(buf, "! ");
5464 if (cap->count0 == 0 && isman_s)
5465 STRCAT(buf, "man");
5466 else
5467 STRCAT(buf, kp);
5468 STRCAT(buf, " ");
5469 if (cap->count0 != 0 && (isman || isman_s))
5471 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
5472 STRCAT(buf, " ");
5475 break;
5477 case ']':
5478 #ifdef FEAT_CSCOPE
5479 if (p_cst)
5480 STRCPY(buf, "cstag ");
5481 else
5482 #endif
5483 STRCPY(buf, "ts ");
5484 break;
5486 default:
5487 if (curbuf->b_help)
5488 STRCPY(buf, "he! ");
5489 else if (g_cmd)
5490 STRCPY(buf, "tj ");
5491 else
5492 sprintf((char *)buf, "%ldta ", cap->count0);
5496 * Now grab the chars in the identifier
5498 if (cmdchar == '*')
5499 aux_ptr = (char_u *)(p_magic ? "/.*~[^$\\" : "/^$\\");
5500 else if (cmdchar == '#')
5501 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
5502 else if (cmdchar == 'K' && !kp_help)
5503 aux_ptr = (char_u *)" \t\\\"|!";
5504 else
5505 /* Don't escape spaces and Tabs in a tag with a backslash */
5506 aux_ptr = (char_u *)"\\|\"";
5508 p = buf + STRLEN(buf);
5509 while (n-- > 0)
5511 /* put a backslash before \ and some others */
5512 if (vim_strchr(aux_ptr, *ptr) != NULL)
5513 *p++ = '\\';
5514 #ifdef FEAT_MBYTE
5515 /* When current byte is a part of multibyte character, copy all bytes
5516 * of that character. */
5517 if (has_mbyte)
5519 int i;
5520 int len = (*mb_ptr2len)(ptr) - 1;
5522 for (i = 0; i < len && n >= 1; ++i, --n)
5523 *p++ = *ptr++;
5525 #endif
5526 *p++ = *ptr++;
5528 *p = NUL;
5531 * Execute the command.
5533 if (cmdchar == '*' || cmdchar == '#')
5535 if (!g_cmd && (
5536 #ifdef FEAT_MBYTE
5537 has_mbyte ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr)) :
5538 #endif
5539 vim_iswordc(ptr[-1])))
5540 STRCAT(buf, "\\>");
5541 #ifdef FEAT_CMDHIST
5542 /* put pattern in search history */
5543 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
5544 #endif
5545 normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0);
5547 else
5548 do_cmdline_cmd(buf);
5550 vim_free(buf);
5553 #if defined(FEAT_VISUAL) || defined(PROTO)
5555 * Get visually selected text, within one line only.
5556 * Returns FAIL if more than one line selected.
5559 get_visual_text(cap, pp, lenp)
5560 cmdarg_T *cap;
5561 char_u **pp; /* return: start of selected text */
5562 int *lenp; /* return: length of selected text */
5564 if (VIsual_mode != 'V')
5565 unadjust_for_sel();
5566 if (VIsual.lnum != curwin->w_cursor.lnum)
5568 if (cap != NULL)
5569 clearopbeep(cap->oap);
5570 return FAIL;
5572 if (VIsual_mode == 'V')
5574 *pp = ml_get_curline();
5575 *lenp = (int)STRLEN(*pp);
5577 else
5579 if (lt(curwin->w_cursor, VIsual))
5581 *pp = ml_get_pos(&curwin->w_cursor);
5582 *lenp = VIsual.col - curwin->w_cursor.col + 1;
5584 else
5586 *pp = ml_get_pos(&VIsual);
5587 *lenp = curwin->w_cursor.col - VIsual.col + 1;
5589 #ifdef FEAT_MBYTE
5590 if (has_mbyte)
5591 /* Correct the length to include the whole last character. */
5592 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
5593 #endif
5595 reset_VIsual_and_resel();
5596 return OK;
5598 #endif
5601 * CTRL-T: backwards in tag stack
5603 static void
5604 nv_tagpop(cap)
5605 cmdarg_T *cap;
5607 if (!checkclearopq(cap->oap))
5608 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
5612 * Handle scrolling command 'H', 'L' and 'M'.
5614 static void
5615 nv_scroll(cap)
5616 cmdarg_T *cap;
5618 int used = 0;
5619 long n;
5620 #ifdef FEAT_FOLDING
5621 linenr_T lnum;
5622 #endif
5623 int half;
5625 cap->oap->motion_type = MLINE;
5626 setpcmark();
5628 if (cap->cmdchar == 'L')
5630 validate_botline(); /* make sure curwin->w_botline is valid */
5631 curwin->w_cursor.lnum = curwin->w_botline - 1;
5632 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
5633 curwin->w_cursor.lnum = 1;
5634 else
5636 #ifdef FEAT_FOLDING
5637 if (hasAnyFolding(curwin))
5639 /* Count a fold for one screen line. */
5640 for (n = cap->count1 - 1; n > 0
5641 && curwin->w_cursor.lnum > curwin->w_topline; --n)
5643 (void)hasFolding(curwin->w_cursor.lnum,
5644 &curwin->w_cursor.lnum, NULL);
5645 --curwin->w_cursor.lnum;
5648 else
5649 #endif
5650 curwin->w_cursor.lnum -= cap->count1 - 1;
5653 else
5655 if (cap->cmdchar == 'M')
5657 #ifdef FEAT_DIFF
5658 /* Don't count filler lines above the window. */
5659 used -= diff_check_fill(curwin, curwin->w_topline)
5660 - curwin->w_topfill;
5661 #endif
5662 validate_botline(); /* make sure w_empty_rows is valid */
5663 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
5664 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
5666 #ifdef FEAT_DIFF
5667 /* Count half he number of filler lines to be "below this
5668 * line" and half to be "above the next line". */
5669 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
5670 + n) / 2 >= half)
5672 --n;
5673 break;
5675 #endif
5676 used += plines(curwin->w_topline + n);
5677 if (used >= half)
5678 break;
5679 #ifdef FEAT_FOLDING
5680 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
5681 n = lnum - curwin->w_topline;
5682 #endif
5684 if (n > 0 && used > curwin->w_height)
5685 --n;
5687 else /* (cap->cmdchar == 'H') */
5689 n = cap->count1 - 1;
5690 #ifdef FEAT_FOLDING
5691 if (hasAnyFolding(curwin))
5693 /* Count a fold for one screen line. */
5694 lnum = curwin->w_topline;
5695 while (n-- > 0 && lnum < curwin->w_botline - 1)
5697 hasFolding(lnum, NULL, &lnum);
5698 ++lnum;
5700 n = lnum - curwin->w_topline;
5702 #endif
5704 curwin->w_cursor.lnum = curwin->w_topline + n;
5705 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5706 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5709 cursor_correct(); /* correct for 'so' */
5710 beginline(BL_SOL | BL_FIX);
5714 * Cursor right commands.
5716 static void
5717 nv_right(cap)
5718 cmdarg_T *cap;
5720 long n;
5721 #ifdef FEAT_VISUAL
5722 int PAST_LINE;
5723 #else
5724 # define PAST_LINE 0
5725 #endif
5727 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
5729 /* <C-Right> and <S-Right> move a word or WORD right */
5730 if (mod_mask & MOD_MASK_CTRL)
5731 cap->arg = TRUE;
5732 nv_wordcmd(cap);
5733 return;
5736 cap->oap->motion_type = MCHAR;
5737 cap->oap->inclusive = FALSE;
5738 #ifdef FEAT_VISUAL
5739 PAST_LINE = (VIsual_active && *p_sel != 'o');
5741 # ifdef FEAT_VIRTUALEDIT
5743 * In virtual mode, there's no such thing as "PAST_LINE", as lines are
5744 * (theoretically) infinitely long.
5746 if (virtual_active())
5747 PAST_LINE = 0;
5748 # endif
5749 #endif
5751 for (n = cap->count1; n > 0; --n)
5753 if ((!PAST_LINE && oneright() == FAIL)
5754 || (PAST_LINE && *ml_get_cursor() == NUL))
5757 * <Space> wraps to next line if 'whichwrap' has 's'.
5758 * 'l' wraps to next line if 'whichwrap' has 'l'.
5759 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
5761 if ( ((cap->cmdchar == ' '
5762 && vim_strchr(p_ww, 's') != NULL)
5763 || (cap->cmdchar == 'l'
5764 && vim_strchr(p_ww, 'l') != NULL)
5765 || (cap->cmdchar == K_RIGHT
5766 && vim_strchr(p_ww, '>') != NULL))
5767 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5769 /* When deleting we also count the NL as a character.
5770 * Set cap->oap->inclusive when last char in the line is
5771 * included, move to next line after that */
5772 if ( cap->oap->op_type != OP_NOP
5773 && !cap->oap->inclusive
5774 && !lineempty(curwin->w_cursor.lnum))
5775 cap->oap->inclusive = TRUE;
5776 else
5778 ++curwin->w_cursor.lnum;
5779 curwin->w_cursor.col = 0;
5780 #ifdef FEAT_VIRTUALEDIT
5781 curwin->w_cursor.coladd = 0;
5782 #endif
5783 curwin->w_set_curswant = TRUE;
5784 cap->oap->inclusive = FALSE;
5786 continue;
5788 if (cap->oap->op_type == OP_NOP)
5790 /* Only beep and flush if not moved at all */
5791 if (n == cap->count1)
5792 beep_flush();
5794 else
5796 if (!lineempty(curwin->w_cursor.lnum))
5797 cap->oap->inclusive = TRUE;
5799 break;
5801 #ifdef FEAT_VISUAL
5802 else if (PAST_LINE)
5804 curwin->w_set_curswant = TRUE;
5805 # ifdef FEAT_VIRTUALEDIT
5806 if (virtual_active())
5807 oneright();
5808 else
5809 # endif
5811 # ifdef FEAT_MBYTE
5812 if (has_mbyte)
5813 curwin->w_cursor.col +=
5814 (*mb_ptr2len)(ml_get_cursor());
5815 else
5816 # endif
5817 ++curwin->w_cursor.col;
5820 #endif
5822 #ifdef FEAT_FOLDING
5823 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
5824 && cap->oap->op_type == OP_NOP)
5825 foldOpenCursor();
5826 #endif
5830 * Cursor left commands.
5832 * Returns TRUE when operator end should not be adjusted.
5834 static void
5835 nv_left(cap)
5836 cmdarg_T *cap;
5838 long n;
5840 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
5842 /* <C-Left> and <S-Left> move a word or WORD left */
5843 if (mod_mask & MOD_MASK_CTRL)
5844 cap->arg = 1;
5845 nv_bck_word(cap);
5846 return;
5849 cap->oap->motion_type = MCHAR;
5850 cap->oap->inclusive = FALSE;
5851 for (n = cap->count1; n > 0; --n)
5853 if (oneleft() == FAIL)
5855 /* <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
5856 * 'h' wraps to previous line if 'whichwrap' has 'h'.
5857 * CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
5859 if ( (((cap->cmdchar == K_BS
5860 || cap->cmdchar == Ctrl_H)
5861 && vim_strchr(p_ww, 'b') != NULL)
5862 || (cap->cmdchar == 'h'
5863 && vim_strchr(p_ww, 'h') != NULL)
5864 || (cap->cmdchar == K_LEFT
5865 && vim_strchr(p_ww, '<') != NULL))
5866 && curwin->w_cursor.lnum > 1)
5868 --(curwin->w_cursor.lnum);
5869 coladvance((colnr_T)MAXCOL);
5870 curwin->w_set_curswant = TRUE;
5872 /* When the NL before the first char has to be deleted we
5873 * put the cursor on the NUL after the previous line.
5874 * This is a very special case, be careful!
5875 * Don't adjust op_end now, otherwise it won't work. */
5876 if ( (cap->oap->op_type == OP_DELETE
5877 || cap->oap->op_type == OP_CHANGE)
5878 && !lineempty(curwin->w_cursor.lnum))
5880 if (*ml_get_cursor() != NUL)
5881 ++curwin->w_cursor.col;
5882 cap->retval |= CA_NO_ADJ_OP_END;
5884 continue;
5886 /* Only beep and flush if not moved at all */
5887 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
5888 beep_flush();
5889 break;
5892 #ifdef FEAT_FOLDING
5893 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
5894 && cap->oap->op_type == OP_NOP)
5895 foldOpenCursor();
5896 #endif
5900 * Cursor up commands.
5901 * cap->arg is TRUE for "-": Move cursor to first non-blank.
5903 static void
5904 nv_up(cap)
5905 cmdarg_T *cap;
5907 if (mod_mask & MOD_MASK_SHIFT)
5909 /* <S-Up> is page up */
5910 cap->arg = BACKWARD;
5911 nv_page(cap);
5913 else
5915 cap->oap->motion_type = MLINE;
5916 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
5917 clearopbeep(cap->oap);
5918 else if (cap->arg)
5919 beginline(BL_WHITE | BL_FIX);
5924 * Cursor down commands.
5925 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
5927 static void
5928 nv_down(cap)
5929 cmdarg_T *cap;
5931 if (mod_mask & MOD_MASK_SHIFT)
5933 /* <S-Down> is page down */
5934 cap->arg = FORWARD;
5935 nv_page(cap);
5937 else
5938 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5939 /* In a quickfix window a <CR> jumps to the error under the cursor. */
5940 if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
5941 if (curwin->w_llist_ref == NULL)
5942 do_cmdline_cmd((char_u *)".cc"); /* quickfix window */
5943 else
5944 do_cmdline_cmd((char_u *)".ll"); /* location list window */
5945 else
5946 #endif
5948 #ifdef FEAT_CMDWIN
5949 /* In the cmdline window a <CR> executes the command. */
5950 if (cmdwin_type != 0 && cap->cmdchar == CAR)
5951 cmdwin_result = CAR;
5952 else
5953 #endif
5955 cap->oap->motion_type = MLINE;
5956 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
5957 clearopbeep(cap->oap);
5958 else if (cap->arg)
5959 beginline(BL_WHITE | BL_FIX);
5964 #ifdef FEAT_SEARCHPATH
5966 * Grab the file name under the cursor and edit it.
5968 static void
5969 nv_gotofile(cap)
5970 cmdarg_T *cap;
5972 char_u *ptr;
5973 linenr_T lnum = -1;
5975 if (text_locked())
5977 clearopbeep(cap->oap);
5978 text_locked_msg();
5979 return;
5981 #ifdef FEAT_AUTOCMD
5982 if (curbuf_locked())
5984 clearop(cap->oap);
5985 return;
5987 #endif
5989 ptr = grab_file_name(cap->count1, &lnum);
5991 if (ptr != NULL)
5993 /* do autowrite if necessary */
5994 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !P_HID(curbuf))
5995 autowrite(curbuf, FALSE);
5996 setpcmark();
5997 (void)do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
5998 P_HID(curbuf) ? ECMD_HIDE : 0);
5999 if (cap->nchar == 'F' && lnum >= 0)
6001 curwin->w_cursor.lnum = lnum;
6002 check_cursor_lnum();
6003 beginline(BL_SOL | BL_FIX);
6005 vim_free(ptr);
6007 else
6008 clearop(cap->oap);
6010 #endif
6013 * <End> command: to end of current line or last line.
6015 static void
6016 nv_end(cap)
6017 cmdarg_T *cap;
6019 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) /* CTRL-END = goto last line */
6021 cap->arg = TRUE;
6022 nv_goto(cap);
6023 cap->count1 = 1; /* to end of current line */
6025 nv_dollar(cap);
6029 * Handle the "$" command.
6031 static void
6032 nv_dollar(cap)
6033 cmdarg_T *cap;
6035 cap->oap->motion_type = MCHAR;
6036 cap->oap->inclusive = TRUE;
6037 #ifdef FEAT_VIRTUALEDIT
6038 /* In virtual mode when off the edge of a line and an operator
6039 * is pending (whew!) keep the cursor where it is.
6040 * Otherwise, send it to the end of the line. */
6041 if (!virtual_active() || gchar_cursor() != NUL
6042 || cap->oap->op_type == OP_NOP)
6043 #endif
6044 curwin->w_curswant = MAXCOL; /* so we stay at the end */
6045 if (cursor_down((long)(cap->count1 - 1),
6046 cap->oap->op_type == OP_NOP) == FAIL)
6047 clearopbeep(cap->oap);
6048 #ifdef FEAT_FOLDING
6049 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6050 foldOpenCursor();
6051 #endif
6055 * Implementation of '?' and '/' commands.
6056 * If cap->arg is TRUE don't set PC mark.
6058 static void
6059 nv_search(cap)
6060 cmdarg_T *cap;
6062 oparg_T *oap = cap->oap;
6064 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
6066 /* Translate "g??" to "g?g?" */
6067 cap->cmdchar = 'g';
6068 cap->nchar = '?';
6069 nv_operator(cap);
6070 return;
6073 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0);
6075 if (cap->searchbuf == NULL)
6077 clearop(oap);
6078 return;
6081 normal_search(cap, cap->cmdchar, cap->searchbuf,
6082 (cap->arg ? 0 : SEARCH_MARK));
6086 * Handle "N" and "n" commands.
6087 * cap->arg is SEARCH_REV for "N", 0 for "n".
6089 static void
6090 nv_next(cap)
6091 cmdarg_T *cap;
6093 normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg);
6097 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
6098 * Uses only cap->count1 and cap->oap from "cap".
6100 static void
6101 normal_search(cap, dir, pat, opt)
6102 cmdarg_T *cap;
6103 int dir;
6104 char_u *pat;
6105 int opt; /* extra flags for do_search() */
6107 int i;
6109 cap->oap->motion_type = MCHAR;
6110 cap->oap->inclusive = FALSE;
6111 cap->oap->use_reg_one = TRUE;
6112 curwin->w_set_curswant = TRUE;
6114 i = do_search(cap->oap, dir, pat, cap->count1,
6115 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, NULL);
6116 if (i == 0)
6117 clearop(cap->oap);
6118 else
6120 if (i == 2)
6121 cap->oap->motion_type = MLINE;
6122 #ifdef FEAT_VIRTUALEDIT
6123 curwin->w_cursor.coladd = 0;
6124 #endif
6125 #ifdef FEAT_FOLDING
6126 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
6127 foldOpenCursor();
6128 #endif
6131 /* "/$" will put the cursor after the end of the line, may need to
6132 * correct that here */
6133 check_cursor();
6137 * Character search commands.
6138 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
6139 * ',' and FALSE for ';'.
6140 * cap->nchar is NUL for ',' and ';' (repeat the search)
6142 static void
6143 nv_csearch(cap)
6144 cmdarg_T *cap;
6146 int t_cmd;
6148 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
6149 t_cmd = TRUE;
6150 else
6151 t_cmd = FALSE;
6153 cap->oap->motion_type = MCHAR;
6154 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
6155 clearopbeep(cap->oap);
6156 else
6158 curwin->w_set_curswant = TRUE;
6159 #ifdef FEAT_VIRTUALEDIT
6160 /* Include a Tab for "tx" and for "dfx". */
6161 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
6162 && (t_cmd || cap->oap->op_type != OP_NOP))
6164 colnr_T scol, ecol;
6166 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
6167 curwin->w_cursor.coladd = ecol - scol;
6169 else
6170 curwin->w_cursor.coladd = 0;
6171 #endif
6172 #ifdef FEAT_VISUAL
6173 adjust_for_sel(cap);
6174 #endif
6175 #ifdef FEAT_FOLDING
6176 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6177 foldOpenCursor();
6178 #endif
6183 * "[" and "]" commands.
6184 * cap->arg is BACKWARD for "[" and FORWARD for "]".
6186 static void
6187 nv_brackets(cap)
6188 cmdarg_T *cap;
6190 pos_T new_pos;
6191 pos_T prev_pos;
6192 pos_T *pos = NULL; /* init for GCC */
6193 pos_T old_pos; /* cursor position before command */
6194 int flag;
6195 long n;
6196 int findc;
6197 int c;
6199 cap->oap->motion_type = MCHAR;
6200 cap->oap->inclusive = FALSE;
6201 old_pos = curwin->w_cursor;
6202 #ifdef FEAT_VIRTUALEDIT
6203 curwin->w_cursor.coladd = 0; /* TODO: don't do this for an error. */
6204 #endif
6206 #ifdef FEAT_SEARCHPATH
6208 * "[f" or "]f" : Edit file under the cursor (same as "gf")
6210 if (cap->nchar == 'f')
6211 nv_gotofile(cap);
6212 else
6213 #endif
6215 #ifdef FEAT_FIND_ID
6217 * Find the occurrence(s) of the identifier or define under cursor
6218 * in current and included files or jump to the first occurrence.
6220 * search list jump
6221 * fwd bwd fwd bwd fwd bwd
6222 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
6223 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
6225 if (vim_strchr((char_u *)
6226 #ifdef EBCDIC
6227 "iI\005dD\067",
6228 #else
6229 "iI\011dD\004",
6230 #endif
6231 cap->nchar) != NULL)
6233 char_u *ptr;
6234 int len;
6236 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
6237 clearop(cap->oap);
6238 else
6240 find_pattern_in_path(ptr, 0, len, TRUE,
6241 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
6242 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
6243 cap->count1,
6244 isupper(cap->nchar) ? ACTION_SHOW_ALL :
6245 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
6246 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
6247 (linenr_T)MAXLNUM);
6248 curwin->w_set_curswant = TRUE;
6251 else
6252 #endif
6255 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
6256 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
6257 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
6258 * "[m" or "]m" search for prev/next start of (Java) method.
6259 * "[M" or "]M" search for prev/next end of (Java) method.
6261 if ( (cap->cmdchar == '['
6262 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
6263 || (cap->cmdchar == ']'
6264 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
6266 if (cap->nchar == '*')
6267 cap->nchar = '/';
6268 new_pos.lnum = 0;
6269 prev_pos.lnum = 0;
6270 if (cap->nchar == 'm' || cap->nchar == 'M')
6272 if (cap->cmdchar == '[')
6273 findc = '{';
6274 else
6275 findc = '}';
6276 n = 9999;
6278 else
6280 findc = cap->nchar;
6281 n = cap->count1;
6283 for ( ; n > 0; --n)
6285 if ((pos = findmatchlimit(cap->oap, findc,
6286 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
6288 if (new_pos.lnum == 0) /* nothing found */
6290 if (cap->nchar != 'm' && cap->nchar != 'M')
6291 clearopbeep(cap->oap);
6293 else
6294 pos = &new_pos; /* use last one found */
6295 break;
6297 prev_pos = new_pos;
6298 curwin->w_cursor = *pos;
6299 new_pos = *pos;
6301 curwin->w_cursor = old_pos;
6304 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
6305 * brought us to the match for "[m" and "]M" when inside a method.
6306 * Try finding the '{' or '}' we want to be at.
6307 * Also repeat for the given count.
6309 if (cap->nchar == 'm' || cap->nchar == 'M')
6311 /* norm is TRUE for "]M" and "[m" */
6312 int norm = ((findc == '{') == (cap->nchar == 'm'));
6314 n = cap->count1;
6315 /* found a match: we were inside a method */
6316 if (prev_pos.lnum != 0)
6318 pos = &prev_pos;
6319 curwin->w_cursor = prev_pos;
6320 if (norm)
6321 --n;
6323 else
6324 pos = NULL;
6325 while (n > 0)
6327 for (;;)
6329 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
6331 /* if not found anything, that's an error */
6332 if (pos == NULL)
6333 clearopbeep(cap->oap);
6334 n = 0;
6335 break;
6337 c = gchar_cursor();
6338 if (c == '{' || c == '}')
6340 /* Must have found end/start of class: use it.
6341 * Or found the place to be at. */
6342 if ((c == findc && norm) || (n == 1 && !norm))
6344 new_pos = curwin->w_cursor;
6345 pos = &new_pos;
6346 n = 0;
6348 /* if no match found at all, we started outside of the
6349 * class and we're inside now. Just go on. */
6350 else if (new_pos.lnum == 0)
6352 new_pos = curwin->w_cursor;
6353 pos = &new_pos;
6355 /* found start/end of other method: go to match */
6356 else if ((pos = findmatchlimit(cap->oap, findc,
6357 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
6358 0)) == NULL)
6359 n = 0;
6360 else
6361 curwin->w_cursor = *pos;
6362 break;
6365 --n;
6367 curwin->w_cursor = old_pos;
6368 if (pos == NULL && new_pos.lnum != 0)
6369 clearopbeep(cap->oap);
6371 if (pos != NULL)
6373 setpcmark();
6374 curwin->w_cursor = *pos;
6375 curwin->w_set_curswant = TRUE;
6376 #ifdef FEAT_FOLDING
6377 if ((fdo_flags & FDO_BLOCK) && KeyTyped
6378 && cap->oap->op_type == OP_NOP)
6379 foldOpenCursor();
6380 #endif
6385 * "[[", "[]", "]]" and "][": move to start or end of function
6387 else if (cap->nchar == '[' || cap->nchar == ']')
6389 if (cap->nchar == cap->cmdchar) /* "]]" or "[[" */
6390 flag = '{';
6391 else
6392 flag = '}'; /* "][" or "[]" */
6394 curwin->w_set_curswant = TRUE;
6396 * Imitate strange Vi behaviour: When using "]]" with an operator
6397 * we also stop at '}'.
6399 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
6400 (cap->oap->op_type != OP_NOP
6401 && cap->arg == FORWARD && flag == '{')))
6402 clearopbeep(cap->oap);
6403 else
6405 if (cap->oap->op_type == OP_NOP)
6406 beginline(BL_WHITE | BL_FIX);
6407 #ifdef FEAT_FOLDING
6408 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6409 foldOpenCursor();
6410 #endif
6415 * "[p", "[P", "]P" and "]p": put with indent adjustment
6417 else if (cap->nchar == 'p' || cap->nchar == 'P')
6419 if (!checkclearop(cap->oap))
6421 prep_redo_cmd(cap);
6422 do_put(cap->oap->regname,
6423 (cap->cmdchar == ']' && cap->nchar == 'p') ? FORWARD : BACKWARD,
6424 cap->count1, PUT_FIXINDENT);
6429 * "['", "[`", "]'" and "]`": jump to next mark
6431 else if (cap->nchar == '\'' || cap->nchar == '`')
6433 pos = &curwin->w_cursor;
6434 for (n = cap->count1; n > 0; --n)
6436 prev_pos = *pos;
6437 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
6438 cap->nchar == '\'');
6439 if (pos == NULL)
6440 break;
6442 if (pos == NULL)
6443 pos = &prev_pos;
6444 nv_cursormark(cap, cap->nchar == '\'', pos);
6447 #ifdef FEAT_MOUSE
6449 * [ or ] followed by a middle mouse click: put selected text with
6450 * indent adjustment. Any other button just does as usual.
6452 else if (cap->nchar >= K_LEFTMOUSE && cap->nchar <= K_RIGHTRELEASE)
6454 (void)do_mouse(cap->oap, cap->nchar,
6455 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
6456 cap->count1, PUT_FIXINDENT);
6458 #endif /* FEAT_MOUSE */
6460 #ifdef FEAT_FOLDING
6462 * "[z" and "]z": move to start or end of open fold.
6464 else if (cap->nchar == 'z')
6466 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6467 cap->count1) == FAIL)
6468 clearopbeep(cap->oap);
6470 #endif
6472 #ifdef FEAT_DIFF
6474 * "[c" and "]c": move to next or previous diff-change.
6476 else if (cap->nchar == 'c')
6478 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
6479 cap->count1) == FAIL)
6480 clearopbeep(cap->oap);
6482 #endif
6484 #ifdef FEAT_SPELL
6486 * "[s", "[S", "]s" and "]S": move to next spell error.
6488 else if (cap->nchar == 's' || cap->nchar == 'S')
6490 setpcmark();
6491 for (n = 0; n < cap->count1; ++n)
6492 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6493 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
6495 clearopbeep(cap->oap);
6496 break;
6498 # ifdef FEAT_FOLDING
6499 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
6500 foldOpenCursor();
6501 # endif
6503 #endif
6505 /* Not a valid cap->nchar. */
6506 else
6507 clearopbeep(cap->oap);
6511 * Handle Normal mode "%" command.
6513 static void
6514 nv_percent(cap)
6515 cmdarg_T *cap;
6517 pos_T *pos;
6518 #ifdef FEAT_FOLDING
6519 linenr_T lnum = curwin->w_cursor.lnum;
6520 #endif
6522 cap->oap->inclusive = TRUE;
6523 if (cap->count0) /* {cnt}% : goto {cnt} percentage in file */
6525 if (cap->count0 > 100)
6526 clearopbeep(cap->oap);
6527 else
6529 cap->oap->motion_type = MLINE;
6530 setpcmark();
6531 /* Round up, so CTRL-G will give same value. Watch out for a
6532 * large line count, the line number must not go negative! */
6533 if (curbuf->b_ml.ml_line_count > 1000000)
6534 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
6535 / 100L * cap->count0;
6536 else
6537 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
6538 cap->count0 + 99L) / 100L;
6539 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6540 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6541 beginline(BL_SOL | BL_FIX);
6544 else /* "%" : go to matching paren */
6546 cap->oap->motion_type = MCHAR;
6547 cap->oap->use_reg_one = TRUE;
6548 if ((pos = findmatch(cap->oap, NUL)) == NULL)
6549 clearopbeep(cap->oap);
6550 else
6552 setpcmark();
6553 curwin->w_cursor = *pos;
6554 curwin->w_set_curswant = TRUE;
6555 #ifdef FEAT_VIRTUALEDIT
6556 curwin->w_cursor.coladd = 0;
6557 #endif
6558 #ifdef FEAT_VISUAL
6559 adjust_for_sel(cap);
6560 #endif
6563 #ifdef FEAT_FOLDING
6564 if (cap->oap->op_type == OP_NOP
6565 && lnum != curwin->w_cursor.lnum
6566 && (fdo_flags & FDO_PERCENT)
6567 && KeyTyped)
6568 foldOpenCursor();
6569 #endif
6573 * Handle "(" and ")" commands.
6574 * cap->arg is BACKWARD for "(" and FORWARD for ")".
6576 static void
6577 nv_brace(cap)
6578 cmdarg_T *cap;
6580 cap->oap->motion_type = MCHAR;
6581 cap->oap->use_reg_one = TRUE;
6582 /* The motion used to be inclusive for "(", but that is not what Vi does. */
6583 cap->oap->inclusive = FALSE;
6584 curwin->w_set_curswant = TRUE;
6586 if (findsent(cap->arg, cap->count1) == FAIL)
6587 clearopbeep(cap->oap);
6588 else
6590 /* Don't leave the cursor on the NUL past end of line. */
6591 adjust_cursor(cap->oap);
6592 #ifdef FEAT_VIRTUALEDIT
6593 curwin->w_cursor.coladd = 0;
6594 #endif
6595 #ifdef FEAT_FOLDING
6596 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6597 foldOpenCursor();
6598 #endif
6603 * "m" command: Mark a position.
6605 static void
6606 nv_mark(cap)
6607 cmdarg_T *cap;
6609 if (!checkclearop(cap->oap))
6611 if (setmark(cap->nchar) == FAIL)
6612 clearopbeep(cap->oap);
6617 * "{" and "}" commands.
6618 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
6620 static void
6621 nv_findpar(cap)
6622 cmdarg_T *cap;
6624 cap->oap->motion_type = MCHAR;
6625 cap->oap->inclusive = FALSE;
6626 cap->oap->use_reg_one = TRUE;
6627 curwin->w_set_curswant = TRUE;
6628 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
6629 clearopbeep(cap->oap);
6630 else
6632 #ifdef FEAT_VIRTUALEDIT
6633 curwin->w_cursor.coladd = 0;
6634 #endif
6635 #ifdef FEAT_FOLDING
6636 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6637 foldOpenCursor();
6638 #endif
6643 * "u" command: Undo or make lower case.
6645 static void
6646 nv_undo(cap)
6647 cmdarg_T *cap;
6649 if (cap->oap->op_type == OP_LOWER
6650 #ifdef FEAT_VISUAL
6651 || VIsual_active
6652 #endif
6655 /* translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" */
6656 cap->cmdchar = 'g';
6657 cap->nchar = 'u';
6658 nv_operator(cap);
6660 else
6661 nv_kundo(cap);
6665 * <Undo> command.
6667 static void
6668 nv_kundo(cap)
6669 cmdarg_T *cap;
6671 if (!checkclearopq(cap->oap))
6673 u_undo((int)cap->count1);
6674 curwin->w_set_curswant = TRUE;
6679 * Handle the "r" command.
6681 static void
6682 nv_replace(cap)
6683 cmdarg_T *cap;
6685 char_u *ptr;
6686 int had_ctrl_v;
6687 long n;
6689 if (checkclearop(cap->oap))
6690 return;
6692 /* get another character */
6693 if (cap->nchar == Ctrl_V)
6695 had_ctrl_v = Ctrl_V;
6696 cap->nchar = get_literal();
6697 /* Don't redo a multibyte character with CTRL-V. */
6698 if (cap->nchar > DEL)
6699 had_ctrl_v = NUL;
6701 else
6702 had_ctrl_v = NUL;
6704 /* Abort if the character is a special key. */
6705 if (IS_SPECIAL(cap->nchar))
6707 clearopbeep(cap->oap);
6708 return;
6711 #ifdef FEAT_VISUAL
6712 /* Visual mode "r" */
6713 if (VIsual_active)
6715 nv_operator(cap);
6716 return;
6718 #endif
6720 #ifdef FEAT_VIRTUALEDIT
6721 /* Break tabs, etc. */
6722 if (virtual_active())
6724 if (u_save_cursor() == FAIL)
6725 return;
6726 if (gchar_cursor() == NUL)
6728 /* Add extra space and put the cursor on the first one. */
6729 coladvance_force((colnr_T)(getviscol() + cap->count1));
6730 curwin->w_cursor.col -= cap->count1;
6732 else if (gchar_cursor() == TAB)
6733 coladvance_force(getviscol());
6735 #endif
6737 /* Abort if not enough characters to replace. */
6738 ptr = ml_get_cursor();
6739 if (STRLEN(ptr) < (unsigned)cap->count1
6740 #ifdef FEAT_MBYTE
6741 || (has_mbyte && mb_charlen(ptr) < cap->count1)
6742 #endif
6745 clearopbeep(cap->oap);
6746 return;
6750 * Replacing with a TAB is done by edit() when it is complicated because
6751 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
6752 * Other characters are done below to avoid problems with things like
6753 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
6755 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
6757 stuffnumReadbuff(cap->count1);
6758 stuffcharReadbuff('R');
6759 stuffcharReadbuff('\t');
6760 stuffcharReadbuff(ESC);
6761 return;
6764 /* save line for undo */
6765 if (u_save_cursor() == FAIL)
6766 return;
6768 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
6771 * Replace character(s) by a single newline.
6772 * Strange vi behaviour: Only one newline is inserted.
6773 * Delete the characters here.
6774 * Insert the newline with an insert command, takes care of
6775 * autoindent. The insert command depends on being on the last
6776 * character of a line or not.
6778 #ifdef FEAT_MBYTE
6779 (void)del_chars(cap->count1, FALSE); /* delete the characters */
6780 #else
6781 (void)del_bytes(cap->count1, FALSE, FALSE); /* delete the characters */
6782 #endif
6783 stuffcharReadbuff('\r');
6784 stuffcharReadbuff(ESC);
6786 /* Give 'r' to edit(), to get the redo command right. */
6787 invoke_edit(cap, TRUE, 'r', FALSE);
6789 else
6791 prep_redo(cap->oap->regname, cap->count1,
6792 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
6794 curbuf->b_op_start = curwin->w_cursor;
6795 #ifdef FEAT_MBYTE
6796 if (has_mbyte)
6798 int old_State = State;
6800 if (cap->ncharC1 != 0)
6801 AppendCharToRedobuff(cap->ncharC1);
6802 if (cap->ncharC2 != 0)
6803 AppendCharToRedobuff(cap->ncharC2);
6805 /* This is slow, but it handles replacing a single-byte with a
6806 * multi-byte and the other way around. Also handles adding
6807 * composing characters for utf-8. */
6808 for (n = cap->count1; n > 0; --n)
6810 State = REPLACE;
6811 ins_char(cap->nchar);
6812 State = old_State;
6813 if (cap->ncharC1 != 0)
6814 ins_char(cap->ncharC1);
6815 if (cap->ncharC2 != 0)
6816 ins_char(cap->ncharC2);
6819 else
6820 #endif
6823 * Replace the characters within one line.
6825 for (n = cap->count1; n > 0; --n)
6828 * Get ptr again, because u_save and/or showmatch() will have
6829 * released the line. At the same time we let know that the
6830 * line will be changed.
6832 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
6833 ptr[curwin->w_cursor.col] = cap->nchar;
6834 if (p_sm && msg_silent == 0)
6835 showmatch(cap->nchar);
6836 ++curwin->w_cursor.col;
6838 #ifdef FEAT_NETBEANS_INTG
6839 if (usingNetbeans)
6841 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
6843 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
6844 (long)cap->count1);
6845 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
6846 &ptr[start], (int)cap->count1);
6848 #endif
6850 /* mark the buffer as changed and prepare for displaying */
6851 changed_bytes(curwin->w_cursor.lnum,
6852 (colnr_T)(curwin->w_cursor.col - cap->count1));
6854 --curwin->w_cursor.col; /* cursor on the last replaced char */
6855 #ifdef FEAT_MBYTE
6856 /* if the character on the left of the current cursor is a multi-byte
6857 * character, move two characters left */
6858 if (has_mbyte)
6859 mb_adjust_cursor();
6860 #endif
6861 curbuf->b_op_end = curwin->w_cursor;
6862 curwin->w_set_curswant = TRUE;
6863 set_last_insert(cap->nchar);
6867 #ifdef FEAT_VISUAL
6869 * 'o': Exchange start and end of Visual area.
6870 * 'O': same, but in block mode exchange left and right corners.
6872 static void
6873 v_swap_corners(cmdchar)
6874 int cmdchar;
6876 pos_T old_cursor;
6877 colnr_T left, right;
6879 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
6881 old_cursor = curwin->w_cursor;
6882 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
6883 curwin->w_cursor.lnum = VIsual.lnum;
6884 coladvance(left);
6885 VIsual = curwin->w_cursor;
6887 curwin->w_cursor.lnum = old_cursor.lnum;
6888 curwin->w_curswant = right;
6889 /* 'selection "exclusive" and cursor at right-bottom corner: move it
6890 * right one column */
6891 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
6892 ++curwin->w_curswant;
6893 coladvance(curwin->w_curswant);
6894 if (curwin->w_cursor.col == old_cursor.col
6895 #ifdef FEAT_VIRTUALEDIT
6896 && (!virtual_active()
6897 || curwin->w_cursor.coladd == old_cursor.coladd)
6898 #endif
6901 curwin->w_cursor.lnum = VIsual.lnum;
6902 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
6903 ++right;
6904 coladvance(right);
6905 VIsual = curwin->w_cursor;
6907 curwin->w_cursor.lnum = old_cursor.lnum;
6908 coladvance(left);
6909 curwin->w_curswant = left;
6912 else
6914 old_cursor = curwin->w_cursor;
6915 curwin->w_cursor = VIsual;
6916 VIsual = old_cursor;
6917 curwin->w_set_curswant = TRUE;
6920 #endif /* FEAT_VISUAL */
6923 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
6925 static void
6926 nv_Replace(cap)
6927 cmdarg_T *cap;
6929 #ifdef FEAT_VISUAL
6930 if (VIsual_active) /* "R" is replace lines */
6932 cap->cmdchar = 'c';
6933 cap->nchar = NUL;
6934 VIsual_mode = 'V';
6935 nv_operator(cap);
6937 else
6938 #endif
6939 if (!checkclearopq(cap->oap))
6941 if (!curbuf->b_p_ma)
6942 EMSG(_(e_modifiable));
6943 else
6945 #ifdef FEAT_VIRTUALEDIT
6946 if (virtual_active())
6947 coladvance(getviscol());
6948 #endif
6949 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
6954 #ifdef FEAT_VREPLACE
6956 * "gr".
6958 static void
6959 nv_vreplace(cap)
6960 cmdarg_T *cap;
6962 # ifdef FEAT_VISUAL
6963 if (VIsual_active)
6965 cap->cmdchar = 'r';
6966 cap->nchar = cap->extra_char;
6967 nv_replace(cap); /* Do same as "r" in Visual mode for now */
6969 else
6970 # endif
6971 if (!checkclearopq(cap->oap))
6973 if (!curbuf->b_p_ma)
6974 EMSG(_(e_modifiable));
6975 else
6977 if (cap->extra_char == Ctrl_V) /* get another character */
6978 cap->extra_char = get_literal();
6979 stuffcharReadbuff(cap->extra_char);
6980 stuffcharReadbuff(ESC);
6981 # ifdef FEAT_VIRTUALEDIT
6982 if (virtual_active())
6983 coladvance(getviscol());
6984 # endif
6985 invoke_edit(cap, TRUE, 'v', FALSE);
6989 #endif
6992 * Swap case for "~" command, when it does not work like an operator.
6994 static void
6995 n_swapchar(cap)
6996 cmdarg_T *cap;
6998 long n;
6999 pos_T startpos;
7000 int did_change = 0;
7001 #ifdef FEAT_NETBEANS_INTG
7002 pos_T pos;
7003 char_u *ptr;
7004 int count;
7005 #endif
7007 if (checkclearopq(cap->oap))
7008 return;
7010 if (lineempty(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
7012 clearopbeep(cap->oap);
7013 return;
7016 prep_redo_cmd(cap);
7018 if (u_save_cursor() == FAIL)
7019 return;
7021 startpos = curwin->w_cursor;
7022 #ifdef FEAT_NETBEANS_INTG
7023 pos = startpos;
7024 #endif
7025 for (n = cap->count1; n > 0; --n)
7027 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
7028 inc_cursor();
7029 if (gchar_cursor() == NUL)
7031 if (vim_strchr(p_ww, '~') != NULL
7032 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
7034 #ifdef FEAT_NETBEANS_INTG
7035 if (usingNetbeans)
7037 if (did_change)
7039 ptr = ml_get(pos.lnum);
7040 count = (int)STRLEN(ptr) - pos.col;
7041 netbeans_removed(curbuf, pos.lnum, pos.col,
7042 (long)count);
7043 netbeans_inserted(curbuf, pos.lnum, pos.col,
7044 &ptr[pos.col], count);
7046 pos.col = 0;
7047 pos.lnum++;
7049 #endif
7050 ++curwin->w_cursor.lnum;
7051 curwin->w_cursor.col = 0;
7052 if (n > 1)
7054 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
7055 break;
7056 u_clearline();
7059 else
7060 break;
7063 #ifdef FEAT_NETBEANS_INTG
7064 if (did_change && usingNetbeans)
7066 ptr = ml_get(pos.lnum);
7067 count = curwin->w_cursor.col - pos.col;
7068 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
7069 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
7071 #endif
7074 check_cursor();
7075 curwin->w_set_curswant = TRUE;
7076 if (did_change)
7078 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
7079 0L);
7080 curbuf->b_op_start = startpos;
7081 curbuf->b_op_end = curwin->w_cursor;
7082 if (curbuf->b_op_end.col > 0)
7083 --curbuf->b_op_end.col;
7088 * Move cursor to mark.
7090 static void
7091 nv_cursormark(cap, flag, pos)
7092 cmdarg_T *cap;
7093 int flag;
7094 pos_T *pos;
7096 if (check_mark(pos) == FAIL)
7097 clearop(cap->oap);
7098 else
7100 if (cap->cmdchar == '\''
7101 || cap->cmdchar == '`'
7102 || cap->cmdchar == '['
7103 || cap->cmdchar == ']')
7104 setpcmark();
7105 curwin->w_cursor = *pos;
7106 if (flag)
7107 beginline(BL_WHITE | BL_FIX);
7108 else
7109 check_cursor();
7111 cap->oap->motion_type = flag ? MLINE : MCHAR;
7112 if (cap->cmdchar == '`')
7113 cap->oap->use_reg_one = TRUE;
7114 cap->oap->inclusive = FALSE; /* ignored if not MCHAR */
7115 curwin->w_set_curswant = TRUE;
7118 #ifdef FEAT_VISUAL
7120 * Handle commands that are operators in Visual mode.
7122 static void
7123 v_visop(cap)
7124 cmdarg_T *cap;
7126 static char_u trans[] = "YyDdCcxdXdAAIIrr";
7128 /* Uppercase means linewise, except in block mode, then "D" deletes till
7129 * the end of the line, and "C" replaces til EOL */
7130 if (isupper(cap->cmdchar))
7132 if (VIsual_mode != Ctrl_V)
7133 VIsual_mode = 'V';
7134 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
7135 curwin->w_curswant = MAXCOL;
7137 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
7138 nv_operator(cap);
7140 #endif
7143 * "s" and "S" commands.
7145 static void
7146 nv_subst(cap)
7147 cmdarg_T *cap;
7149 #ifdef FEAT_VISUAL
7150 if (VIsual_active) /* "vs" and "vS" are the same as "vc" */
7152 if (cap->cmdchar == 'S')
7153 VIsual_mode = 'V';
7154 cap->cmdchar = 'c';
7155 nv_operator(cap);
7157 else
7158 #endif
7159 nv_optrans(cap);
7163 * Abbreviated commands.
7165 static void
7166 nv_abbrev(cap)
7167 cmdarg_T *cap;
7169 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
7170 cap->cmdchar = 'x'; /* DEL key behaves like 'x' */
7172 #ifdef FEAT_VISUAL
7173 /* in Visual mode these commands are operators */
7174 if (VIsual_active)
7175 v_visop(cap);
7176 else
7177 #endif
7178 nv_optrans(cap);
7182 * Translate a command into another command.
7184 static void
7185 nv_optrans(cap)
7186 cmdarg_T *cap;
7188 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
7189 (char_u *)"d$", (char_u *)"c$",
7190 (char_u *)"cl", (char_u *)"cc",
7191 (char_u *)"yy", (char_u *)":s\r"};
7192 static char_u *str = (char_u *)"xXDCsSY&";
7194 if (!checkclearopq(cap->oap))
7196 /* In Vi "2D" doesn't delete the next line. Can't translate it
7197 * either, because "2." should also not use the count. */
7198 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
7200 cap->oap->start = curwin->w_cursor;
7201 cap->oap->op_type = OP_DELETE;
7202 #ifdef FEAT_EVAL
7203 set_op_var(OP_DELETE);
7204 #endif
7205 cap->count1 = 1;
7206 nv_dollar(cap);
7207 finish_op = TRUE;
7208 ResetRedobuff();
7209 AppendCharToRedobuff('D');
7211 else
7213 if (cap->count0)
7214 stuffnumReadbuff(cap->count0);
7215 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
7218 cap->opcount = 0;
7222 * "'" and "`" commands. Also for "g'" and "g`".
7223 * cap->arg is TRUE for "'" and "g'".
7225 static void
7226 nv_gomark(cap)
7227 cmdarg_T *cap;
7229 pos_T *pos;
7230 int c;
7231 #ifdef FEAT_FOLDING
7232 linenr_T lnum = curwin->w_cursor.lnum;
7233 int old_KeyTyped = KeyTyped; /* getting file may reset it */
7234 #endif
7236 if (cap->cmdchar == 'g')
7237 c = cap->extra_char;
7238 else
7239 c = cap->nchar;
7240 pos = getmark(c, (cap->oap->op_type == OP_NOP));
7241 if (pos == (pos_T *)-1) /* jumped to other file */
7243 if (cap->arg)
7245 check_cursor_lnum();
7246 beginline(BL_WHITE | BL_FIX);
7248 else
7249 check_cursor();
7251 else
7252 nv_cursormark(cap, cap->arg, pos);
7254 #ifdef FEAT_VIRTUALEDIT
7255 /* May need to clear the coladd that a mark includes. */
7256 if (!virtual_active())
7257 curwin->w_cursor.coladd = 0;
7258 #endif
7259 #ifdef FEAT_FOLDING
7260 if (cap->oap->op_type == OP_NOP
7261 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
7262 && (fdo_flags & FDO_MARK)
7263 && old_KeyTyped)
7264 foldOpenCursor();
7265 #endif
7269 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
7271 static void
7272 nv_pcmark(cap)
7273 cmdarg_T *cap;
7275 #ifdef FEAT_JUMPLIST
7276 pos_T *pos;
7277 # ifdef FEAT_FOLDING
7278 linenr_T lnum = curwin->w_cursor.lnum;
7279 int old_KeyTyped = KeyTyped; /* getting file may reset it */
7280 # endif
7282 if (!checkclearopq(cap->oap))
7284 if (cap->cmdchar == 'g')
7285 pos = movechangelist((int)cap->count1);
7286 else
7287 pos = movemark((int)cap->count1);
7288 if (pos == (pos_T *)-1) /* jump to other file */
7290 curwin->w_set_curswant = TRUE;
7291 check_cursor();
7293 else if (pos != NULL) /* can jump */
7294 nv_cursormark(cap, FALSE, pos);
7295 else if (cap->cmdchar == 'g')
7297 if (curbuf->b_changelistlen == 0)
7298 EMSG(_("E664: changelist is empty"));
7299 else if (cap->count1 < 0)
7300 EMSG(_("E662: At start of changelist"));
7301 else
7302 EMSG(_("E663: At end of changelist"));
7304 else
7305 clearopbeep(cap->oap);
7306 # ifdef FEAT_FOLDING
7307 if (cap->oap->op_type == OP_NOP
7308 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
7309 && (fdo_flags & FDO_MARK)
7310 && old_KeyTyped)
7311 foldOpenCursor();
7312 # endif
7314 #else
7315 clearopbeep(cap->oap);
7316 #endif
7320 * Handle '"' command.
7322 static void
7323 nv_regname(cap)
7324 cmdarg_T *cap;
7326 if (checkclearop(cap->oap))
7327 return;
7328 #ifdef FEAT_EVAL
7329 if (cap->nchar == '=')
7330 cap->nchar = get_expr_register();
7331 #endif
7332 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
7334 cap->oap->regname = cap->nchar;
7335 cap->opcount = cap->count0; /* remember count before '"' */
7336 #ifdef FEAT_EVAL
7337 set_reg_var(cap->oap->regname);
7338 #endif
7340 else
7341 clearopbeep(cap->oap);
7344 #ifdef FEAT_VISUAL
7346 * Handle "v", "V" and "CTRL-V" commands.
7347 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
7348 * is TRUE.
7349 * Handle CTRL-Q just like CTRL-V.
7351 static void
7352 nv_visual(cap)
7353 cmdarg_T *cap;
7355 if (cap->cmdchar == Ctrl_Q)
7356 cap->cmdchar = Ctrl_V;
7358 /* 'v', 'V' and CTRL-V can be used while an operator is pending to make it
7359 * characterwise, linewise, or blockwise. */
7360 if (cap->oap->op_type != OP_NOP)
7362 cap->oap->motion_force = cap->cmdchar;
7363 finish_op = FALSE; /* operator doesn't finish now but later */
7364 return;
7367 VIsual_select = cap->arg;
7368 if (VIsual_active) /* change Visual mode */
7370 if (VIsual_mode == cap->cmdchar) /* stop visual mode */
7371 end_visual_mode();
7372 else /* toggle char/block mode */
7373 { /* or char/line mode */
7374 VIsual_mode = cap->cmdchar;
7375 showmode();
7377 redraw_curbuf_later(INVERTED); /* update the inversion */
7379 else /* start Visual mode */
7381 check_visual_highlight();
7382 if (cap->count0) /* use previously selected part */
7384 if (resel_VIsual_mode == NUL) /* there is none */
7386 beep_flush();
7387 return;
7389 VIsual = curwin->w_cursor;
7391 VIsual_active = TRUE;
7392 VIsual_reselect = TRUE;
7393 if (!cap->arg)
7394 /* start Select mode when 'selectmode' contains "cmd" */
7395 may_start_select('c');
7396 #ifdef FEAT_MOUSE
7397 setmouse();
7398 #endif
7399 if (p_smd && msg_silent == 0)
7400 redraw_cmdline = TRUE; /* show visual mode later */
7402 * For V and ^V, we multiply the number of lines even if there
7403 * was only one -- webb
7405 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
7407 curwin->w_cursor.lnum +=
7408 resel_VIsual_line_count * cap->count0 - 1;
7409 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7410 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7412 VIsual_mode = resel_VIsual_mode;
7413 if (VIsual_mode == 'v')
7415 if (resel_VIsual_line_count <= 1)
7416 curwin->w_cursor.col += resel_VIsual_col * cap->count0 - 1;
7417 else
7418 curwin->w_cursor.col = resel_VIsual_col;
7419 check_cursor_col();
7421 if (resel_VIsual_col == MAXCOL)
7423 curwin->w_curswant = MAXCOL;
7424 coladvance((colnr_T)MAXCOL);
7426 else if (VIsual_mode == Ctrl_V)
7428 validate_virtcol();
7429 curwin->w_curswant = curwin->w_virtcol
7430 + resel_VIsual_col * cap->count0 - 1;
7431 coladvance(curwin->w_curswant);
7433 else
7434 curwin->w_set_curswant = TRUE;
7435 redraw_curbuf_later(INVERTED); /* show the inversion */
7437 else
7439 if (!cap->arg)
7440 /* start Select mode when 'selectmode' contains "cmd" */
7441 may_start_select('c');
7442 n_start_visual_mode(cap->cmdchar);
7448 * Start selection for Shift-movement keys.
7450 void
7451 start_selection()
7453 /* if 'selectmode' contains "key", start Select mode */
7454 may_start_select('k');
7455 n_start_visual_mode('v');
7459 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
7461 void
7462 may_start_select(c)
7463 int c;
7465 VIsual_select = (stuff_empty() && typebuf_typed()
7466 && (vim_strchr(p_slm, c) != NULL));
7470 * Start Visual mode "c".
7471 * Should set VIsual_select before calling this.
7473 static void
7474 n_start_visual_mode(c)
7475 int c;
7477 VIsual_mode = c;
7478 VIsual_active = TRUE;
7479 VIsual_reselect = TRUE;
7480 #ifdef FEAT_VIRTUALEDIT
7481 /* Corner case: the 0 position in a tab may change when going into
7482 * virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting.
7484 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB)
7485 coladvance(curwin->w_virtcol);
7486 #endif
7487 VIsual = curwin->w_cursor;
7489 #ifdef FEAT_FOLDING
7490 foldAdjustVisual();
7491 #endif
7493 #ifdef FEAT_MOUSE
7494 setmouse();
7495 #endif
7496 if (p_smd && msg_silent == 0)
7497 redraw_cmdline = TRUE; /* show visual mode later */
7498 #ifdef FEAT_CLIPBOARD
7499 /* Make sure the clipboard gets updated. Needed because start and
7500 * end may still be the same, and the selection needs to be owned */
7501 clip_star.vmode = NUL;
7502 #endif
7504 /* Only need to redraw this line, unless still need to redraw an old
7505 * Visual area (when 'lazyredraw' is set). */
7506 if (curwin->w_redr_type < INVERTED)
7508 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
7509 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
7513 #endif /* FEAT_VISUAL */
7516 * CTRL-W: Window commands
7518 static void
7519 nv_window(cap)
7520 cmdarg_T *cap;
7522 #ifdef FEAT_WINDOWS
7523 if (!checkclearop(cap->oap))
7524 do_window(cap->nchar, cap->count0, NUL); /* everything is in window.c */
7525 #else
7526 (void)checkclearop(cap->oap);
7527 #endif
7531 * CTRL-Z: Suspend
7533 static void
7534 nv_suspend(cap)
7535 cmdarg_T *cap;
7537 clearop(cap->oap);
7538 #ifdef FEAT_VISUAL
7539 if (VIsual_active)
7540 end_visual_mode(); /* stop Visual mode */
7541 #endif
7542 do_cmdline_cmd((char_u *)"st");
7546 * Commands starting with "g".
7548 static void
7549 nv_g_cmd(cap)
7550 cmdarg_T *cap;
7552 oparg_T *oap = cap->oap;
7553 #ifdef FEAT_VISUAL
7554 pos_T tpos;
7555 #endif
7556 int i;
7557 int flag = FALSE;
7559 switch (cap->nchar)
7561 #ifdef MEM_PROFILE
7563 * "g^A": dump log of used memory.
7565 case Ctrl_A:
7566 vim_mem_profile_dump();
7567 break;
7568 #endif
7570 #ifdef FEAT_VREPLACE
7572 * "gR": Enter virtual replace mode.
7574 case 'R':
7575 cap->arg = TRUE;
7576 nv_Replace(cap);
7577 break;
7579 case 'r':
7580 nv_vreplace(cap);
7581 break;
7582 #endif
7584 case '&':
7585 do_cmdline_cmd((char_u *)"%s//~/&");
7586 break;
7588 #ifdef FEAT_VISUAL
7590 * "gv": Reselect the previous Visual area. If Visual already active,
7591 * exchange previous and current Visual area.
7593 case 'v':
7594 if (checkclearop(oap))
7595 break;
7597 if ( curbuf->b_visual.vi_start.lnum == 0
7598 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
7599 || curbuf->b_visual.vi_end.lnum == 0)
7600 beep_flush();
7601 else
7603 /* set w_cursor to the start of the Visual area, tpos to the end */
7604 if (VIsual_active)
7606 i = VIsual_mode;
7607 VIsual_mode = curbuf->b_visual.vi_mode;
7608 curbuf->b_visual.vi_mode = i;
7609 # ifdef FEAT_EVAL
7610 curbuf->b_visual_mode_eval = i;
7611 # endif
7612 i = curwin->w_curswant;
7613 curwin->w_curswant = curbuf->b_visual.vi_curswant;
7614 curbuf->b_visual.vi_curswant = i;
7616 tpos = curbuf->b_visual.vi_end;
7617 curbuf->b_visual.vi_end = curwin->w_cursor;
7618 curwin->w_cursor = curbuf->b_visual.vi_start;
7619 curbuf->b_visual.vi_start = VIsual;
7621 else
7623 VIsual_mode = curbuf->b_visual.vi_mode;
7624 curwin->w_curswant = curbuf->b_visual.vi_curswant;
7625 tpos = curbuf->b_visual.vi_end;
7626 curwin->w_cursor = curbuf->b_visual.vi_start;
7629 VIsual_active = TRUE;
7630 VIsual_reselect = TRUE;
7632 /* Set Visual to the start and w_cursor to the end of the Visual
7633 * area. Make sure they are on an existing character. */
7634 check_cursor();
7635 VIsual = curwin->w_cursor;
7636 curwin->w_cursor = tpos;
7637 check_cursor();
7638 update_topline();
7640 * When called from normal "g" command: start Select mode when
7641 * 'selectmode' contains "cmd". When called for K_SELECT, always
7642 * start Select mode.
7644 if (cap->arg)
7645 VIsual_select = TRUE;
7646 else
7647 may_start_select('c');
7648 #ifdef FEAT_MOUSE
7649 setmouse();
7650 #endif
7651 #ifdef FEAT_CLIPBOARD
7652 /* Make sure the clipboard gets updated. Needed because start and
7653 * end are still the same, and the selection needs to be owned */
7654 clip_star.vmode = NUL;
7655 #endif
7656 redraw_curbuf_later(INVERTED);
7657 showmode();
7659 break;
7661 * "gV": Don't reselect the previous Visual area after a Select mode
7662 * mapping of menu.
7664 case 'V':
7665 VIsual_reselect = FALSE;
7666 break;
7669 * "gh": start Select mode.
7670 * "gH": start Select line mode.
7671 * "g^H": start Select block mode.
7673 case K_BS:
7674 cap->nchar = Ctrl_H;
7675 /* FALLTHROUGH */
7676 case 'h':
7677 case 'H':
7678 case Ctrl_H:
7679 # ifdef EBCDIC
7680 /* EBCDIC: 'v'-'h' != '^v'-'^h' */
7681 if (cap->nchar == Ctrl_H)
7682 cap->cmdchar = Ctrl_V;
7683 else
7684 # endif
7685 cap->cmdchar = cap->nchar + ('v' - 'h');
7686 cap->arg = TRUE;
7687 nv_visual(cap);
7688 break;
7689 #endif /* FEAT_VISUAL */
7692 * "gj" and "gk" two new funny movement keys -- up and down
7693 * movement based on *screen* line rather than *file* line.
7695 case 'j':
7696 case K_DOWN:
7697 /* with 'nowrap' it works just like the normal "j" command; also when
7698 * in a closed fold */
7699 if (!curwin->w_p_wrap
7700 #ifdef FEAT_FOLDING
7701 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7702 #endif
7705 oap->motion_type = MLINE;
7706 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
7708 else
7709 i = nv_screengo(oap, FORWARD, cap->count1);
7710 if (i == FAIL)
7711 clearopbeep(oap);
7712 break;
7714 case 'k':
7715 case K_UP:
7716 /* with 'nowrap' it works just like the normal "k" command; also when
7717 * in a closed fold */
7718 if (!curwin->w_p_wrap
7719 #ifdef FEAT_FOLDING
7720 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7721 #endif
7724 oap->motion_type = MLINE;
7725 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
7727 else
7728 i = nv_screengo(oap, BACKWARD, cap->count1);
7729 if (i == FAIL)
7730 clearopbeep(oap);
7731 break;
7734 * "gJ": join two lines without inserting a space.
7736 case 'J':
7737 nv_join(cap);
7738 break;
7741 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
7742 * "gm": middle of "g0" and "g$".
7744 case '^':
7745 flag = TRUE;
7746 /* FALLTHROUGH */
7748 case '0':
7749 case 'm':
7750 case K_HOME:
7751 case K_KHOME:
7752 oap->motion_type = MCHAR;
7753 oap->inclusive = FALSE;
7754 if (curwin->w_p_wrap
7755 #ifdef FEAT_VERTSPLIT
7756 && curwin->w_width != 0
7757 #endif
7760 int width1 = W_WIDTH(curwin) - curwin_col_off();
7761 int width2 = width1 + curwin_col_off2();
7763 validate_virtcol();
7764 i = 0;
7765 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
7766 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
7768 else
7769 i = curwin->w_leftcol;
7770 /* Go to the middle of the screen line. When 'number' is on and lines
7771 * are wrapping the middle can be more to the left.*/
7772 if (cap->nchar == 'm')
7773 i += (W_WIDTH(curwin) - curwin_col_off()
7774 + ((curwin->w_p_wrap && i > 0)
7775 ? curwin_col_off2() : 0)) / 2;
7776 coladvance((colnr_T)i);
7777 if (flag)
7780 i = gchar_cursor();
7781 while (vim_iswhite(i) && oneright() == OK);
7783 curwin->w_set_curswant = TRUE;
7784 break;
7786 case '_':
7787 /* "g_": to the last non-blank character in the line or <count> lines
7788 * downward. */
7789 cap->oap->motion_type = MCHAR;
7790 cap->oap->inclusive = TRUE;
7791 curwin->w_curswant = MAXCOL;
7792 if (cursor_down((long)(cap->count1 - 1),
7793 cap->oap->op_type == OP_NOP) == FAIL)
7794 clearopbeep(cap->oap);
7795 else
7797 char_u *ptr = ml_get_curline();
7799 /* In Visual mode we may end up after the line. */
7800 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
7801 --curwin->w_cursor.col;
7803 /* Decrease the cursor column until it's on a non-blank. */
7804 while (curwin->w_cursor.col > 0
7805 && vim_iswhite(ptr[curwin->w_cursor.col]))
7806 --curwin->w_cursor.col;
7807 curwin->w_set_curswant = TRUE;
7809 break;
7811 case '$':
7812 case K_END:
7813 case K_KEND:
7815 int col_off = curwin_col_off();
7817 oap->motion_type = MCHAR;
7818 oap->inclusive = TRUE;
7819 if (curwin->w_p_wrap
7820 #ifdef FEAT_VERTSPLIT
7821 && curwin->w_width != 0
7822 #endif
7825 curwin->w_curswant = MAXCOL; /* so we stay at the end */
7826 if (cap->count1 == 1)
7828 int width1 = W_WIDTH(curwin) - col_off;
7829 int width2 = width1 + curwin_col_off2();
7831 validate_virtcol();
7832 i = width1 - 1;
7833 if (curwin->w_virtcol >= (colnr_T)width1)
7834 i += ((curwin->w_virtcol - width1) / width2 + 1)
7835 * width2;
7836 coladvance((colnr_T)i);
7837 #if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
7838 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
7841 * Check for landing on a character that got split at
7842 * the end of the line. We do not want to advance to
7843 * the next screen line.
7845 validate_virtcol();
7846 if (curwin->w_virtcol > (colnr_T)i)
7847 --curwin->w_cursor.col;
7849 #endif
7851 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
7852 clearopbeep(oap);
7854 else
7856 i = curwin->w_leftcol + W_WIDTH(curwin) - col_off - 1;
7857 coladvance((colnr_T)i);
7859 /* Make sure we stick in this column. */
7860 validate_virtcol();
7861 curwin->w_curswant = curwin->w_virtcol;
7862 curwin->w_set_curswant = FALSE;
7865 break;
7868 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
7870 case '*':
7871 case '#':
7872 #if POUND != '#'
7873 case POUND: /* pound sign (sometimes equal to '#') */
7874 #endif
7875 case Ctrl_RSB: /* :tag or :tselect for current identifier */
7876 case ']': /* :tselect for current identifier */
7877 nv_ident(cap);
7878 break;
7881 * ge and gE: go back to end of word
7883 case 'e':
7884 case 'E':
7885 oap->motion_type = MCHAR;
7886 curwin->w_set_curswant = TRUE;
7887 oap->inclusive = TRUE;
7888 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
7889 clearopbeep(oap);
7890 break;
7893 * "g CTRL-G": display info about cursor position
7895 case Ctrl_G:
7896 cursor_pos_info();
7897 break;
7900 * "gi": start Insert at the last position.
7902 case 'i':
7903 if (curbuf->b_last_insert.lnum != 0)
7905 curwin->w_cursor = curbuf->b_last_insert;
7906 check_cursor_lnum();
7907 i = (int)STRLEN(ml_get_curline());
7908 if (curwin->w_cursor.col > (colnr_T)i)
7910 #ifdef FEAT_VIRTUALEDIT
7911 if (virtual_active())
7912 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
7913 #endif
7914 curwin->w_cursor.col = i;
7917 cap->cmdchar = 'i';
7918 nv_edit(cap);
7919 break;
7922 * "gI": Start insert in column 1.
7924 case 'I':
7925 beginline(0);
7926 if (!checkclearopq(oap))
7927 invoke_edit(cap, FALSE, 'g', FALSE);
7928 break;
7930 #ifdef FEAT_SEARCHPATH
7932 * "gf": goto file, edit file under cursor
7933 * "]f" and "[f": can also be used.
7935 case 'f':
7936 case 'F':
7937 nv_gotofile(cap);
7938 break;
7939 #endif
7941 /* "g'm" and "g`m": jump to mark without setting pcmark */
7942 case '\'':
7943 cap->arg = TRUE;
7944 /*FALLTHROUGH*/
7945 case '`':
7946 nv_gomark(cap);
7947 break;
7950 * "gs": Goto sleep.
7952 case 's':
7953 do_sleep(cap->count1 * 1000L);
7954 break;
7957 * "ga": Display the ascii value of the character under the
7958 * cursor. It is displayed in decimal, hex, and octal. -- webb
7960 case 'a':
7961 do_ascii(NULL);
7962 break;
7964 #ifdef FEAT_MBYTE
7966 * "g8": Display the bytes used for the UTF-8 character under the
7967 * cursor. It is displayed in hex.
7968 * "8g8" finds illegal byte sequence.
7970 case '8':
7971 if (cap->count0 == 8)
7972 utf_find_illegal();
7973 else
7974 show_utf8();
7975 break;
7976 #endif
7978 case '<':
7979 show_sb_text();
7980 break;
7983 * "gg": Goto the first line in file. With a count it goes to
7984 * that line number like for "G". -- webb
7986 case 'g':
7987 cap->arg = FALSE;
7988 nv_goto(cap);
7989 break;
7992 * Two-character operators:
7993 * "gq" Format text
7994 * "gw" Format text and keep cursor position
7995 * "g~" Toggle the case of the text.
7996 * "gu" Change text to lower case.
7997 * "gU" Change text to upper case.
7998 * "g?" rot13 encoding
7999 * "g@" call 'operatorfunc'
8001 case 'q':
8002 case 'w':
8003 oap->cursor_start = curwin->w_cursor;
8004 /*FALLTHROUGH*/
8005 case '~':
8006 case 'u':
8007 case 'U':
8008 case '?':
8009 case '@':
8010 nv_operator(cap);
8011 break;
8014 * "gd": Find first occurrence of pattern under the cursor in the
8015 * current function
8016 * "gD": idem, but in the current file.
8018 case 'd':
8019 case 'D':
8020 nv_gd(oap, cap->nchar, (int)cap->count0);
8021 break;
8023 #ifdef FEAT_MOUSE
8025 * g<*Mouse> : <C-*mouse>
8027 case K_MIDDLEMOUSE:
8028 case K_MIDDLEDRAG:
8029 case K_MIDDLERELEASE:
8030 case K_LEFTMOUSE:
8031 case K_LEFTDRAG:
8032 case K_LEFTRELEASE:
8033 case K_RIGHTMOUSE:
8034 case K_RIGHTDRAG:
8035 case K_RIGHTRELEASE:
8036 case K_X1MOUSE:
8037 case K_X1DRAG:
8038 case K_X1RELEASE:
8039 case K_X2MOUSE:
8040 case K_X2DRAG:
8041 case K_X2RELEASE:
8042 mod_mask = MOD_MASK_CTRL;
8043 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
8044 break;
8045 #endif
8047 case K_IGNORE:
8048 break;
8051 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
8053 case 'p':
8054 case 'P':
8055 nv_put(cap);
8056 break;
8058 #ifdef FEAT_BYTEOFF
8059 /* "go": goto byte count from start of buffer */
8060 case 'o':
8061 goto_byte(cap->count0);
8062 break;
8063 #endif
8065 /* "gQ": improved Ex mode */
8066 case 'Q':
8067 if (text_locked())
8069 clearopbeep(cap->oap);
8070 text_locked_msg();
8071 break;
8074 if (!checkclearopq(oap))
8075 do_exmode(TRUE);
8076 break;
8078 #ifdef FEAT_JUMPLIST
8079 case ',':
8080 nv_pcmark(cap);
8081 break;
8083 case ';':
8084 cap->count1 = -cap->count1;
8085 nv_pcmark(cap);
8086 break;
8087 #endif
8089 #ifdef FEAT_WINDOWS
8090 case 't':
8091 goto_tabpage((int)cap->count0);
8092 break;
8093 case 'T':
8094 goto_tabpage(-(int)cap->count1);
8095 break;
8096 #endif
8098 case '+':
8099 case '-': /* "g+" and "g-": undo or redo along the timeline */
8100 if (!checkclearopq(oap))
8101 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
8102 FALSE, FALSE);
8103 break;
8105 default:
8106 clearopbeep(oap);
8107 break;
8112 * Handle "o" and "O" commands.
8114 static void
8115 n_opencmd(cap)
8116 cmdarg_T *cap;
8118 if (!checkclearopq(cap->oap))
8120 #ifdef FEAT_FOLDING
8121 if (cap->cmdchar == 'O')
8122 /* Open above the first line of a folded sequence of lines */
8123 (void)hasFolding(curwin->w_cursor.lnum,
8124 &curwin->w_cursor.lnum, NULL);
8125 else
8126 /* Open below the last line of a folded sequence of lines */
8127 (void)hasFolding(curwin->w_cursor.lnum,
8128 NULL, &curwin->w_cursor.lnum);
8129 #endif
8130 if (u_save((linenr_T)(curwin->w_cursor.lnum -
8131 (cap->cmdchar == 'O' ? 1 : 0)),
8132 (linenr_T)(curwin->w_cursor.lnum +
8133 (cap->cmdchar == 'o' ? 1 : 0))
8134 ) == OK
8135 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
8136 #ifdef FEAT_COMMENTS
8137 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM :
8138 #endif
8139 0, 0))
8141 /* When '#' is in 'cpoptions' ignore the count. */
8142 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
8143 cap->count1 = 1;
8144 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
8150 * "." command: redo last change.
8152 static void
8153 nv_dot(cap)
8154 cmdarg_T *cap;
8156 if (!checkclearopq(cap->oap))
8159 * If "restart_edit" is TRUE, the last but one command is repeated
8160 * instead of the last command (inserting text). This is used for
8161 * CTRL-O <.> in insert mode.
8163 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
8164 clearopbeep(cap->oap);
8169 * CTRL-R: undo undo
8171 static void
8172 nv_redo(cap)
8173 cmdarg_T *cap;
8175 if (!checkclearopq(cap->oap))
8177 u_redo((int)cap->count1);
8178 curwin->w_set_curswant = TRUE;
8183 * Handle "U" command.
8185 static void
8186 nv_Undo(cap)
8187 cmdarg_T *cap;
8189 /* In Visual mode and typing "gUU" triggers an operator */
8190 if (cap->oap->op_type == OP_UPPER
8191 #ifdef FEAT_VISUAL
8192 || VIsual_active
8193 #endif
8196 /* translate "gUU" to "gUgU" */
8197 cap->cmdchar = 'g';
8198 cap->nchar = 'U';
8199 nv_operator(cap);
8201 else if (!checkclearopq(cap->oap))
8203 u_undoline();
8204 curwin->w_set_curswant = TRUE;
8209 * '~' command: If tilde is not an operator and Visual is off: swap case of a
8210 * single character.
8212 static void
8213 nv_tilde(cap)
8214 cmdarg_T *cap;
8216 if (!p_to
8217 #ifdef FEAT_VISUAL
8218 && !VIsual_active
8219 #endif
8220 && cap->oap->op_type != OP_TILDE)
8221 n_swapchar(cap);
8222 else
8223 nv_operator(cap);
8227 * Handle an operator command.
8228 * The actual work is done by do_pending_operator().
8230 static void
8231 nv_operator(cap)
8232 cmdarg_T *cap;
8234 int op_type;
8236 op_type = get_op_type(cap->cmdchar, cap->nchar);
8238 if (op_type == cap->oap->op_type) /* double operator works on lines */
8239 nv_lineop(cap);
8240 else if (!checkclearop(cap->oap))
8242 cap->oap->start = curwin->w_cursor;
8243 cap->oap->op_type = op_type;
8244 #ifdef FEAT_EVAL
8245 set_op_var(op_type);
8246 #endif
8250 #ifdef FEAT_EVAL
8252 * Set v:operator to the characters for "optype".
8254 static void
8255 set_op_var(optype)
8256 int optype;
8258 char_u opchars[3];
8260 if (optype == OP_NOP)
8261 set_vim_var_string(VV_OP, NULL, 0);
8262 else
8264 opchars[0] = get_op_char(optype);
8265 opchars[1] = get_extra_op_char(optype);
8266 opchars[2] = NUL;
8267 set_vim_var_string(VV_OP, opchars, -1);
8270 #endif
8273 * Handle linewise operator "dd", "yy", etc.
8275 * "_" is is a strange motion command that helps make operators more logical.
8276 * It is actually implemented, but not documented in the real Vi. This motion
8277 * command actually refers to "the current line". Commands like "dd" and "yy"
8278 * are really an alternate form of "d_" and "y_". It does accept a count, so
8279 * "d3_" works to delete 3 lines.
8281 static void
8282 nv_lineop(cap)
8283 cmdarg_T *cap;
8285 cap->oap->motion_type = MLINE;
8286 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
8287 clearopbeep(cap->oap);
8288 else if ( cap->oap->op_type == OP_DELETE
8289 || cap->oap->op_type == OP_LSHIFT
8290 || cap->oap->op_type == OP_RSHIFT)
8291 beginline(BL_SOL | BL_FIX);
8292 else if (cap->oap->op_type != OP_YANK) /* 'Y' does not move cursor */
8293 beginline(BL_WHITE | BL_FIX);
8297 * <Home> command.
8299 static void
8300 nv_home(cap)
8301 cmdarg_T *cap;
8303 /* CTRL-HOME is like "gg" */
8304 if (mod_mask & MOD_MASK_CTRL)
8305 nv_goto(cap);
8306 else
8308 cap->count0 = 1;
8309 nv_pipe(cap);
8311 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
8312 one-character line). */
8316 * "|" command.
8318 static void
8319 nv_pipe(cap)
8320 cmdarg_T *cap;
8322 cap->oap->motion_type = MCHAR;
8323 cap->oap->inclusive = FALSE;
8324 beginline(0);
8325 if (cap->count0 > 0)
8327 coladvance((colnr_T)(cap->count0 - 1));
8328 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
8330 else
8331 curwin->w_curswant = 0;
8332 /* keep curswant at the column where we wanted to go, not where
8333 we ended; differs if line is too short */
8334 curwin->w_set_curswant = FALSE;
8338 * Handle back-word command "b" and "B".
8339 * cap->arg is 1 for "B"
8341 static void
8342 nv_bck_word(cap)
8343 cmdarg_T *cap;
8345 cap->oap->motion_type = MCHAR;
8346 cap->oap->inclusive = FALSE;
8347 curwin->w_set_curswant = TRUE;
8348 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
8349 clearopbeep(cap->oap);
8350 #ifdef FEAT_FOLDING
8351 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8352 foldOpenCursor();
8353 #endif
8357 * Handle word motion commands "e", "E", "w" and "W".
8358 * cap->arg is TRUE for "E" and "W".
8360 static void
8361 nv_wordcmd(cap)
8362 cmdarg_T *cap;
8364 int n;
8365 int word_end;
8366 int flag = FALSE;
8369 * Set inclusive for the "E" and "e" command.
8371 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
8372 word_end = TRUE;
8373 else
8374 word_end = FALSE;
8375 cap->oap->inclusive = word_end;
8378 * "cw" and "cW" are a special case.
8380 if (!word_end && cap->oap->op_type == OP_CHANGE)
8382 n = gchar_cursor();
8383 if (n != NUL) /* not an empty line */
8385 if (vim_iswhite(n))
8388 * Reproduce a funny Vi behaviour: "cw" on a blank only
8389 * changes one character, not all blanks until the start of
8390 * the next word. Only do this when the 'w' flag is included
8391 * in 'cpoptions'.
8393 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
8395 cap->oap->inclusive = TRUE;
8396 cap->oap->motion_type = MCHAR;
8397 return;
8400 else
8403 * This is a little strange. To match what the real Vi does,
8404 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
8405 * that we are not on a space or a TAB. This seems impolite
8406 * at first, but it's really more what we mean when we say
8407 * 'cw'.
8408 * Another strangeness: When standing on the end of a word
8409 * "ce" will change until the end of the next wordt, but "cw"
8410 * will change only one character! This is done by setting
8411 * flag.
8413 cap->oap->inclusive = TRUE;
8414 word_end = TRUE;
8415 flag = TRUE;
8420 cap->oap->motion_type = MCHAR;
8421 curwin->w_set_curswant = TRUE;
8422 if (word_end)
8423 n = end_word(cap->count1, cap->arg, flag, FALSE);
8424 else
8425 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
8427 /* Don't leave the cursor on the NUL past the end of line. */
8428 if (n != FAIL)
8429 adjust_cursor(cap->oap);
8431 if (n == FAIL && cap->oap->op_type == OP_NOP)
8432 clearopbeep(cap->oap);
8433 else
8435 #ifdef FEAT_VISUAL
8436 adjust_for_sel(cap);
8437 #endif
8438 #ifdef FEAT_FOLDING
8439 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8440 foldOpenCursor();
8441 #endif
8446 * Used after a movement command: If the cursor ends up on the NUL after the
8447 * end of the line, may move it back to the last character and make the motion
8448 * inclusive.
8450 static void
8451 adjust_cursor(oap)
8452 oparg_T *oap;
8454 /* The cursor cannot remain on the NUL when:
8455 * - the column is > 0
8456 * - not in Visual mode or 'selection' is "o"
8457 * - 'virtualedit' is not "all" and not "onemore".
8459 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
8460 #ifdef FEAT_VISUAL
8461 && (!VIsual_active || *p_sel == 'o')
8462 #endif
8463 #ifdef FEAT_VIRTUALEDIT
8464 && !virtual_active() && (ve_flags & VE_ONEMORE) == 0
8465 #endif
8468 --curwin->w_cursor.col;
8469 #ifdef FEAT_MBYTE
8470 /* prevent cursor from moving on the trail byte */
8471 if (has_mbyte)
8472 mb_adjust_cursor();
8473 #endif
8474 oap->inclusive = TRUE;
8479 * "0" and "^" commands.
8480 * cap->arg is the argument for beginline().
8482 static void
8483 nv_beginline(cap)
8484 cmdarg_T *cap;
8486 cap->oap->motion_type = MCHAR;
8487 cap->oap->inclusive = FALSE;
8488 beginline(cap->arg);
8489 #ifdef FEAT_FOLDING
8490 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8491 foldOpenCursor();
8492 #endif
8493 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
8494 one-character line). */
8497 #ifdef FEAT_VISUAL
8499 * In exclusive Visual mode, may include the last character.
8501 static void
8502 adjust_for_sel(cap)
8503 cmdarg_T *cap;
8505 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
8506 && gchar_cursor() != NUL && lt(VIsual, curwin->w_cursor))
8508 # ifdef FEAT_MBYTE
8509 if (has_mbyte)
8510 inc_cursor();
8511 else
8512 # endif
8513 ++curwin->w_cursor.col;
8514 cap->oap->inclusive = FALSE;
8519 * Exclude last character at end of Visual area for 'selection' == "exclusive".
8520 * Should check VIsual_mode before calling this.
8521 * Returns TRUE when backed up to the previous line.
8523 static int
8524 unadjust_for_sel()
8526 pos_T *pp;
8528 if (*p_sel == 'e' && !equalpos(VIsual, curwin->w_cursor))
8530 if (lt(VIsual, curwin->w_cursor))
8531 pp = &curwin->w_cursor;
8532 else
8533 pp = &VIsual;
8534 #ifdef FEAT_VIRTUALEDIT
8535 if (pp->coladd > 0)
8536 --pp->coladd;
8537 else
8538 #endif
8539 if (pp->col > 0)
8541 --pp->col;
8542 #ifdef FEAT_MBYTE
8543 mb_adjustpos(pp);
8544 #endif
8546 else if (pp->lnum > 1)
8548 --pp->lnum;
8549 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
8550 return TRUE;
8553 return FALSE;
8557 * SELECT key in Normal or Visual mode: end of Select mode mapping.
8559 static void
8560 nv_select(cap)
8561 cmdarg_T *cap;
8563 if (VIsual_active)
8564 VIsual_select = TRUE;
8565 else if (VIsual_reselect)
8567 cap->nchar = 'v'; /* fake "gv" command */
8568 cap->arg = TRUE;
8569 nv_g_cmd(cap);
8573 #endif
8576 * "G", "gg", CTRL-END, CTRL-HOME.
8577 * cap->arg is TRUE for "G".
8579 static void
8580 nv_goto(cap)
8581 cmdarg_T *cap;
8583 linenr_T lnum;
8585 if (cap->arg)
8586 lnum = curbuf->b_ml.ml_line_count;
8587 else
8588 lnum = 1L;
8589 cap->oap->motion_type = MLINE;
8590 setpcmark();
8592 /* When a count is given, use it instead of the default lnum */
8593 if (cap->count0 != 0)
8594 lnum = cap->count0;
8595 if (lnum < 1L)
8596 lnum = 1L;
8597 else if (lnum > curbuf->b_ml.ml_line_count)
8598 lnum = curbuf->b_ml.ml_line_count;
8599 curwin->w_cursor.lnum = lnum;
8600 beginline(BL_SOL | BL_FIX);
8601 #ifdef FEAT_FOLDING
8602 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
8603 foldOpenCursor();
8604 #endif
8608 * CTRL-\ in Normal mode.
8610 static void
8611 nv_normal(cap)
8612 cmdarg_T *cap;
8614 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
8616 clearop(cap->oap);
8617 if (restart_edit != 0 && mode_displayed)
8618 clear_cmdline = TRUE; /* unshow mode later */
8619 restart_edit = 0;
8620 #ifdef FEAT_CMDWIN
8621 if (cmdwin_type != 0)
8622 cmdwin_result = Ctrl_C;
8623 #endif
8624 #ifdef FEAT_VISUAL
8625 if (VIsual_active)
8627 end_visual_mode(); /* stop Visual */
8628 redraw_curbuf_later(INVERTED);
8630 #endif
8631 /* CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. */
8632 if (cap->nchar == Ctrl_G && p_im)
8633 restart_edit = 'a';
8635 else
8636 clearopbeep(cap->oap);
8640 * ESC in Normal mode: beep, but don't flush buffers.
8641 * Don't even beep if we are canceling a command.
8643 static void
8644 nv_esc(cap)
8645 cmdarg_T *cap;
8647 int no_reason;
8649 no_reason = (cap->oap->op_type == OP_NOP
8650 && cap->opcount == 0
8651 && cap->count0 == 0
8652 && cap->oap->regname == 0
8653 && !p_im);
8655 if (cap->arg) /* TRUE for CTRL-C */
8657 if (restart_edit == 0
8658 #ifdef FEAT_CMDWIN
8659 && cmdwin_type == 0
8660 #endif
8661 #ifdef FEAT_VISUAL
8662 && !VIsual_active
8663 #endif
8664 && no_reason)
8665 MSG(_("Type :quit<Enter> to exit Vim"));
8667 /* Don't reset "restart_edit" when 'insertmode' is set, it won't be
8668 * set again below when halfway a mapping. */
8669 if (!p_im)
8670 restart_edit = 0;
8671 #ifdef FEAT_CMDWIN
8672 if (cmdwin_type != 0)
8674 cmdwin_result = K_IGNORE;
8675 got_int = FALSE; /* don't stop executing autocommands et al. */
8676 return;
8678 #endif
8681 #ifdef FEAT_VISUAL
8682 if (VIsual_active)
8684 end_visual_mode(); /* stop Visual */
8685 check_cursor_col(); /* make sure cursor is not beyond EOL */
8686 curwin->w_set_curswant = TRUE;
8687 redraw_curbuf_later(INVERTED);
8689 else
8690 #endif
8691 if (no_reason)
8692 vim_beep();
8693 clearop(cap->oap);
8695 /* A CTRL-C is often used at the start of a menu. When 'insertmode' is
8696 * set return to Insert mode afterwards. */
8697 if (restart_edit == 0 && goto_im()
8698 #ifdef FEAT_EX_EXTRA
8699 && ex_normal_busy == 0
8700 #endif
8702 restart_edit = 'a';
8706 * Handle "A", "a", "I", "i" and <Insert> commands.
8708 static void
8709 nv_edit(cap)
8710 cmdarg_T *cap;
8712 /* <Insert> is equal to "i" */
8713 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
8714 cap->cmdchar = 'i';
8716 #ifdef FEAT_VISUAL
8717 /* in Visual mode "A" and "I" are an operator */
8718 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
8719 v_visop(cap);
8721 /* in Visual mode and after an operator "a" and "i" are for text objects */
8722 else
8723 #endif
8724 if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
8725 && (cap->oap->op_type != OP_NOP
8726 #ifdef FEAT_VISUAL
8727 || VIsual_active
8728 #endif
8731 #ifdef FEAT_TEXTOBJ
8732 nv_object(cap);
8733 #else
8734 clearopbeep(cap->oap);
8735 #endif
8737 else if (!curbuf->b_p_ma && !p_im)
8739 /* Only give this error when 'insertmode' is off. */
8740 EMSG(_(e_modifiable));
8741 clearop(cap->oap);
8743 else if (!checkclearopq(cap->oap))
8745 switch (cap->cmdchar)
8747 case 'A': /* "A"ppend after the line */
8748 curwin->w_set_curswant = TRUE;
8749 #ifdef FEAT_VIRTUALEDIT
8750 if (ve_flags == VE_ALL)
8752 int save_State = State;
8754 /* Pretent Insert mode here to allow the cursor on the
8755 * character past the end of the line */
8756 State = INSERT;
8757 coladvance((colnr_T)MAXCOL);
8758 State = save_State;
8760 else
8761 #endif
8762 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
8763 break;
8765 case 'I': /* "I"nsert before the first non-blank */
8766 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
8767 beginline(BL_WHITE);
8768 else
8769 beginline(BL_WHITE|BL_FIX);
8770 break;
8772 case 'a': /* "a"ppend is like "i"nsert on the next character. */
8773 #ifdef FEAT_VIRTUALEDIT
8774 /* increment coladd when in virtual space, increment the
8775 * column otherwise, also to append after an unprintable char */
8776 if (virtual_active()
8777 && (curwin->w_cursor.coladd > 0
8778 || *ml_get_cursor() == NUL
8779 || *ml_get_cursor() == TAB))
8780 curwin->w_cursor.coladd++;
8781 else
8782 #endif
8783 if (*ml_get_cursor() != NUL)
8784 inc_cursor();
8785 break;
8788 #ifdef FEAT_VIRTUALEDIT
8789 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
8791 int save_State = State;
8793 /* Pretent Insert mode here to allow the cursor on the
8794 * character past the end of the line */
8795 State = INSERT;
8796 coladvance(getviscol());
8797 State = save_State;
8799 #endif
8801 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
8806 * Invoke edit() and take care of "restart_edit" and the return value.
8808 static void
8809 invoke_edit(cap, repl, cmd, startln)
8810 cmdarg_T *cap;
8811 int repl; /* "r" or "gr" command */
8812 int cmd;
8813 int startln;
8815 int restart_edit_save = 0;
8817 /* Complicated: When the user types "a<C-O>a" we don't want to do Insert
8818 * mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
8819 * it. */
8820 if (repl || !stuff_empty())
8821 restart_edit_save = restart_edit;
8822 else
8823 restart_edit_save = 0;
8825 /* Always reset "restart_edit", this is not a restarted edit. */
8826 restart_edit = 0;
8828 if (edit(cmd, startln, cap->count1))
8829 cap->retval |= CA_COMMAND_BUSY;
8831 if (restart_edit == 0)
8832 restart_edit = restart_edit_save;
8835 #ifdef FEAT_TEXTOBJ
8837 * "a" or "i" while an operator is pending or in Visual mode: object motion.
8839 static void
8840 nv_object(cap)
8841 cmdarg_T *cap;
8843 int flag;
8844 int include;
8845 char_u *mps_save;
8847 if (cap->cmdchar == 'i')
8848 include = FALSE; /* "ix" = inner object: exclude white space */
8849 else
8850 include = TRUE; /* "ax" = an object: include white space */
8852 /* Make sure (), [], {} and <> are in 'matchpairs' */
8853 mps_save = curbuf->b_p_mps;
8854 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
8856 switch (cap->nchar)
8858 case 'w': /* "aw" = a word */
8859 flag = current_word(cap->oap, cap->count1, include, FALSE);
8860 break;
8861 case 'W': /* "aW" = a WORD */
8862 flag = current_word(cap->oap, cap->count1, include, TRUE);
8863 break;
8864 case 'b': /* "ab" = a braces block */
8865 case '(':
8866 case ')':
8867 flag = current_block(cap->oap, cap->count1, include, '(', ')');
8868 break;
8869 case 'B': /* "aB" = a Brackets block */
8870 case '{':
8871 case '}':
8872 flag = current_block(cap->oap, cap->count1, include, '{', '}');
8873 break;
8874 case '[': /* "a[" = a [] block */
8875 case ']':
8876 flag = current_block(cap->oap, cap->count1, include, '[', ']');
8877 break;
8878 case '<': /* "a<" = a <> block */
8879 case '>':
8880 flag = current_block(cap->oap, cap->count1, include, '<', '>');
8881 break;
8882 case 't': /* "at" = a tag block (xml and html) */
8883 flag = current_tagblock(cap->oap, cap->count1, include);
8884 break;
8885 case 'p': /* "ap" = a paragraph */
8886 flag = current_par(cap->oap, cap->count1, include, 'p');
8887 break;
8888 case 's': /* "as" = a sentence */
8889 flag = current_sent(cap->oap, cap->count1, include);
8890 break;
8891 case '"': /* "a"" = a double quoted string */
8892 case '\'': /* "a'" = a single quoted string */
8893 case '`': /* "a`" = a backtick quoted string */
8894 flag = current_quote(cap->oap, cap->count1, include,
8895 cap->nchar);
8896 break;
8897 #if 0 /* TODO */
8898 case 'S': /* "aS" = a section */
8899 case 'f': /* "af" = a filename */
8900 case 'u': /* "au" = a URL */
8901 #endif
8902 default:
8903 flag = FAIL;
8904 break;
8907 curbuf->b_p_mps = mps_save;
8908 if (flag == FAIL)
8909 clearopbeep(cap->oap);
8910 adjust_cursor_col();
8911 curwin->w_set_curswant = TRUE;
8913 #endif
8916 * "q" command: Start/stop recording.
8917 * "q:", "q/", "q?": edit command-line in command-line window.
8919 static void
8920 nv_record(cap)
8921 cmdarg_T *cap;
8923 if (cap->oap->op_type == OP_FORMAT)
8925 /* "gqq" is the same as "gqgq": format line */
8926 cap->cmdchar = 'g';
8927 cap->nchar = 'q';
8928 nv_operator(cap);
8930 else if (!checkclearop(cap->oap))
8932 #ifdef FEAT_CMDWIN
8933 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
8935 stuffcharReadbuff(cap->nchar);
8936 stuffcharReadbuff(K_CMDWIN);
8938 else
8939 #endif
8940 /* (stop) recording into a named register, unless executing a
8941 * register */
8942 if (!Exec_reg && do_record(cap->nchar) == FAIL)
8943 clearopbeep(cap->oap);
8948 * Handle the "@r" command.
8950 static void
8951 nv_at(cap)
8952 cmdarg_T *cap;
8954 if (checkclearop(cap->oap))
8955 return;
8956 #ifdef FEAT_EVAL
8957 if (cap->nchar == '=')
8959 if (get_expr_register() == NUL)
8960 return;
8962 #endif
8963 while (cap->count1-- && !got_int)
8965 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
8967 clearopbeep(cap->oap);
8968 break;
8970 line_breakcheck();
8975 * Handle the CTRL-U and CTRL-D commands.
8977 static void
8978 nv_halfpage(cap)
8979 cmdarg_T *cap;
8981 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
8982 || (cap->cmdchar == Ctrl_D
8983 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
8984 clearopbeep(cap->oap);
8985 else if (!checkclearop(cap->oap))
8986 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
8990 * Handle "J" or "gJ" command.
8992 static void
8993 nv_join(cap)
8994 cmdarg_T *cap;
8996 #ifdef FEAT_VISUAL
8997 if (VIsual_active) /* join the visual lines */
8998 nv_operator(cap);
8999 else
9000 #endif
9001 if (!checkclearop(cap->oap))
9003 if (cap->count0 <= 1)
9004 cap->count0 = 2; /* default for join is two lines! */
9005 if (curwin->w_cursor.lnum + cap->count0 - 1 >
9006 curbuf->b_ml.ml_line_count)
9007 clearopbeep(cap->oap); /* beyond last line */
9008 else
9010 prep_redo(cap->oap->regname, cap->count0,
9011 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
9012 do_do_join(cap->count0, cap->nchar == NUL);
9018 * "P", "gP", "p" and "gp" commands.
9020 static void
9021 nv_put(cap)
9022 cmdarg_T *cap;
9024 #ifdef FEAT_VISUAL
9025 int regname = 0;
9026 void *reg1 = NULL, *reg2 = NULL;
9027 int empty = FALSE;
9028 int was_visual = FALSE;
9029 #endif
9030 int dir;
9031 int flags = 0;
9033 if (cap->oap->op_type != OP_NOP)
9035 #ifdef FEAT_DIFF
9036 /* "dp" is ":diffput" */
9037 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
9039 clearop(cap->oap);
9040 nv_diffgetput(TRUE);
9042 else
9043 #endif
9044 clearopbeep(cap->oap);
9046 else
9048 dir = (cap->cmdchar == 'P'
9049 || (cap->cmdchar == 'g' && cap->nchar == 'P'))
9050 ? BACKWARD : FORWARD;
9051 prep_redo_cmd(cap);
9052 if (cap->cmdchar == 'g')
9053 flags |= PUT_CURSEND;
9055 #ifdef FEAT_VISUAL
9056 if (VIsual_active)
9058 /* Putting in Visual mode: The put text replaces the selected
9059 * text. First delete the selected text, then put the new text.
9060 * Need to save and restore the registers that the delete
9061 * overwrites if the old contents is being put.
9063 was_visual = TRUE;
9064 regname = cap->oap->regname;
9065 # ifdef FEAT_CLIPBOARD
9066 adjust_clip_reg(&regname);
9067 # endif
9068 if (regname == 0 || VIM_ISDIGIT(regname)
9069 # ifdef FEAT_CLIPBOARD
9070 || (clip_unnamed && (regname == '*' || regname == '+'))
9071 # endif
9075 /* the delete is going to overwrite the register we want to
9076 * put, save it first. */
9077 reg1 = get_register(regname, TRUE);
9080 /* Now delete the selected text. */
9081 cap->cmdchar = 'd';
9082 cap->nchar = NUL;
9083 cap->oap->regname = NUL;
9084 nv_operator(cap);
9085 do_pending_operator(cap, 0, FALSE);
9086 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
9088 /* delete PUT_LINE_BACKWARD; */
9089 cap->oap->regname = regname;
9091 if (reg1 != NULL)
9093 /* Delete probably changed the register we want to put, save
9094 * it first. Then put back what was there before the delete. */
9095 reg2 = get_register(regname, FALSE);
9096 put_register(regname, reg1);
9099 /* When deleted a linewise Visual area, put the register as
9100 * lines to avoid it joined with the next line. When deletion was
9101 * characterwise, split a line when putting lines. */
9102 if (VIsual_mode == 'V')
9103 flags |= PUT_LINE;
9104 else if (VIsual_mode == 'v')
9105 flags |= PUT_LINE_SPLIT;
9106 if (VIsual_mode == Ctrl_V && dir == FORWARD)
9107 flags |= PUT_LINE_FORWARD;
9108 dir = BACKWARD;
9109 if ((VIsual_mode != 'V'
9110 && curwin->w_cursor.col < curbuf->b_op_start.col)
9111 || (VIsual_mode == 'V'
9112 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
9113 /* cursor is at the end of the line or end of file, put
9114 * forward. */
9115 dir = FORWARD;
9117 #endif
9118 do_put(cap->oap->regname, dir, cap->count1, flags);
9120 #ifdef FEAT_VISUAL
9121 /* If a register was saved, put it back now. */
9122 if (reg2 != NULL)
9123 put_register(regname, reg2);
9125 /* What to reselect with "gv"? Selecting the just put text seems to
9126 * be the most useful, since the original text was removed. */
9127 if (was_visual)
9129 curbuf->b_visual.vi_start = curbuf->b_op_start;
9130 curbuf->b_visual.vi_end = curbuf->b_op_end;
9133 /* When all lines were selected and deleted do_put() leaves an empty
9134 * line that needs to be deleted now. */
9135 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
9137 ml_delete(curbuf->b_ml.ml_line_count, TRUE);
9139 /* If the cursor was in that line, move it to the end of the last
9140 * line. */
9141 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
9143 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
9144 coladvance((colnr_T)MAXCOL);
9147 #endif
9148 auto_format(FALSE, TRUE);
9153 * "o" and "O" commands.
9155 static void
9156 nv_open(cap)
9157 cmdarg_T *cap;
9159 #ifdef FEAT_DIFF
9160 /* "do" is ":diffget" */
9161 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
9163 clearop(cap->oap);
9164 nv_diffgetput(FALSE);
9166 else
9167 #endif
9168 #ifdef FEAT_VISUAL
9169 if (VIsual_active) /* switch start and end of visual */
9170 v_swap_corners(cap->cmdchar);
9171 else
9172 #endif
9173 n_opencmd(cap);
9176 #ifdef FEAT_SNIFF
9177 /*ARGSUSED*/
9178 static void
9179 nv_sniff(cap)
9180 cmdarg_T *cap;
9182 ProcessSniffRequests();
9184 #endif
9186 #ifdef FEAT_NETBEANS_INTG
9187 static void
9188 nv_nbcmd(cap)
9189 cmdarg_T *cap;
9191 netbeans_keycommand(cap->nchar);
9193 #endif
9195 #ifdef FEAT_DND
9196 /*ARGSUSED*/
9197 static void
9198 nv_drop(cap)
9199 cmdarg_T *cap;
9201 do_put('~', BACKWARD, 1L, PUT_CURSEND);
9203 #endif
9205 #ifdef FEAT_AUTOCMD
9207 * Trigger CursorHold event.
9208 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
9209 * input buffer. "did_cursorhold" is set to avoid retriggering.
9211 /*ARGSUSED*/
9212 static void
9213 nv_cursorhold(cap)
9214 cmdarg_T *cap;
9216 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
9217 did_cursorhold = TRUE;
9218 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
9220 #endif