Update runtime files
[MacVim.git] / src / normal.c
blob30678a42697c370be66370bb24b3f80ea9b61167
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
186 static char *e_noident = N_("E349: No identifier under cursor");
189 * Function to be called for a Normal or Visual mode command.
190 * The argument is a cmdarg_T.
192 typedef void (*nv_func_T) __ARGS((cmdarg_T *cap));
194 /* Values for cmd_flags. */
195 #define NV_NCH 0x01 /* may need to get a second char */
196 #define NV_NCH_NOP (0x02|NV_NCH) /* get second char when no operator pending */
197 #define NV_NCH_ALW (0x04|NV_NCH) /* always get a second char */
198 #define NV_LANG 0x08 /* second char needs language adjustment */
200 #define NV_SS 0x10 /* may start selection */
201 #define NV_SSS 0x20 /* may start selection with shift modifier */
202 #define NV_STS 0x40 /* may stop selection without shift modif. */
203 #define NV_RL 0x80 /* 'rightleft' modifies command */
204 #define NV_KEEPREG 0x100 /* don't clear regname */
205 #define NV_NCW 0x200 /* not allowed in command-line window */
208 * Generally speaking, every Normal mode command should either clear any
209 * pending operator (with *clearop*()), or set the motion type variable
210 * oap->motion_type.
212 * When a cursor motion command is made, it is marked as being a character or
213 * line oriented motion. Then, if an operator is in effect, the operation
214 * becomes character or line oriented accordingly.
218 * This table contains one entry for every Normal or Visual mode command.
219 * The order doesn't matter, init_normal_cmds() will create a sorted index.
220 * It is faster when all keys from zero to '~' are present.
222 static const struct nv_cmd
224 int cmd_char; /* (first) command character */
225 nv_func_T cmd_func; /* function for this command */
226 short_u cmd_flags; /* NV_ flags */
227 short cmd_arg; /* value for ca.arg */
228 } nv_cmds[] =
230 {NUL, nv_error, 0, 0},
231 {Ctrl_A, nv_addsub, 0, 0},
232 {Ctrl_B, nv_page, NV_STS, BACKWARD},
233 {Ctrl_C, nv_esc, 0, TRUE},
234 {Ctrl_D, nv_halfpage, 0, 0},
235 {Ctrl_E, nv_scroll_line, 0, TRUE},
236 {Ctrl_F, nv_page, NV_STS, FORWARD},
237 {Ctrl_G, nv_ctrlg, 0, 0},
238 {Ctrl_H, nv_ctrlh, 0, 0},
239 {Ctrl_I, nv_pcmark, 0, 0},
240 {NL, nv_down, 0, FALSE},
241 {Ctrl_K, nv_error, 0, 0},
242 {Ctrl_L, nv_clear, 0, 0},
243 {Ctrl_M, nv_down, 0, TRUE},
244 {Ctrl_N, nv_down, NV_STS, FALSE},
245 {Ctrl_O, nv_ctrlo, 0, 0},
246 {Ctrl_P, nv_up, NV_STS, FALSE},
247 #ifdef FEAT_VISUAL
248 {Ctrl_Q, nv_visual, 0, FALSE},
249 #else
250 {Ctrl_Q, nv_ignore, 0, 0},
251 #endif
252 {Ctrl_R, nv_redo, 0, 0},
253 {Ctrl_S, nv_ignore, 0, 0},
254 {Ctrl_T, nv_tagpop, NV_NCW, 0},
255 {Ctrl_U, nv_halfpage, 0, 0},
256 #ifdef FEAT_VISUAL
257 {Ctrl_V, nv_visual, 0, FALSE},
258 {'V', nv_visual, 0, FALSE},
259 {'v', nv_visual, 0, FALSE},
260 #else
261 {Ctrl_V, nv_error, 0, 0},
262 {'V', nv_error, 0, 0},
263 {'v', nv_error, 0, 0},
264 #endif
265 {Ctrl_W, nv_window, 0, 0},
266 {Ctrl_X, nv_addsub, 0, 0},
267 {Ctrl_Y, nv_scroll_line, 0, FALSE},
268 {Ctrl_Z, nv_suspend, 0, 0},
269 {ESC, nv_esc, 0, FALSE},
270 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0},
271 {Ctrl_RSB, nv_ident, NV_NCW, 0},
272 {Ctrl_HAT, nv_hat, NV_NCW, 0},
273 {Ctrl__, nv_error, 0, 0},
274 {' ', nv_right, 0, 0},
275 {'!', nv_operator, 0, 0},
276 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0},
277 {'#', nv_ident, 0, 0},
278 {'$', nv_dollar, 0, 0},
279 {'%', nv_percent, 0, 0},
280 {'&', nv_optrans, 0, 0},
281 {'\'', nv_gomark, NV_NCH_ALW, TRUE},
282 {'(', nv_brace, 0, BACKWARD},
283 {')', nv_brace, 0, FORWARD},
284 {'*', nv_ident, 0, 0},
285 {'+', nv_down, 0, TRUE},
286 {',', nv_csearch, 0, TRUE},
287 {'-', nv_up, 0, TRUE},
288 {'.', nv_dot, NV_KEEPREG, 0},
289 {'/', nv_search, 0, FALSE},
290 {'0', nv_beginline, 0, 0},
291 {'1', nv_ignore, 0, 0},
292 {'2', nv_ignore, 0, 0},
293 {'3', nv_ignore, 0, 0},
294 {'4', nv_ignore, 0, 0},
295 {'5', nv_ignore, 0, 0},
296 {'6', nv_ignore, 0, 0},
297 {'7', nv_ignore, 0, 0},
298 {'8', nv_ignore, 0, 0},
299 {'9', nv_ignore, 0, 0},
300 {':', nv_colon, 0, 0},
301 {';', nv_csearch, 0, FALSE},
302 {'<', nv_operator, NV_RL, 0},
303 {'=', nv_operator, 0, 0},
304 {'>', nv_operator, NV_RL, 0},
305 {'?', nv_search, 0, FALSE},
306 {'@', nv_at, NV_NCH_NOP, FALSE},
307 {'A', nv_edit, 0, 0},
308 {'B', nv_bck_word, 0, 1},
309 {'C', nv_abbrev, NV_KEEPREG, 0},
310 {'D', nv_abbrev, NV_KEEPREG, 0},
311 {'E', nv_wordcmd, 0, TRUE},
312 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
313 {'G', nv_goto, 0, TRUE},
314 {'H', nv_scroll, 0, 0},
315 {'I', nv_edit, 0, 0},
316 {'J', nv_join, 0, 0},
317 {'K', nv_ident, 0, 0},
318 {'L', nv_scroll, 0, 0},
319 {'M', nv_scroll, 0, 0},
320 {'N', nv_next, 0, SEARCH_REV},
321 {'O', nv_open, 0, 0},
322 {'P', nv_put, 0, 0},
323 {'Q', nv_exmode, NV_NCW, 0},
324 {'R', nv_Replace, 0, FALSE},
325 {'S', nv_subst, NV_KEEPREG, 0},
326 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
327 {'U', nv_Undo, 0, 0},
328 {'W', nv_wordcmd, 0, TRUE},
329 {'X', nv_abbrev, NV_KEEPREG, 0},
330 {'Y', nv_abbrev, NV_KEEPREG, 0},
331 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0},
332 {'[', nv_brackets, NV_NCH_ALW, BACKWARD},
333 {'\\', nv_error, 0, 0},
334 {']', nv_brackets, NV_NCH_ALW, FORWARD},
335 {'^', nv_beginline, 0, BL_WHITE | BL_FIX},
336 {'_', nv_lineop, 0, 0},
337 {'`', nv_gomark, NV_NCH_ALW, FALSE},
338 {'a', nv_edit, NV_NCH, 0},
339 {'b', nv_bck_word, 0, 0},
340 {'c', nv_operator, 0, 0},
341 {'d', nv_operator, 0, 0},
342 {'e', nv_wordcmd, 0, FALSE},
343 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
344 {'g', nv_g_cmd, NV_NCH_ALW, FALSE},
345 {'h', nv_left, NV_RL, 0},
346 {'i', nv_edit, NV_NCH, 0},
347 {'j', nv_down, 0, FALSE},
348 {'k', nv_up, 0, FALSE},
349 {'l', nv_right, NV_RL, 0},
350 {'m', nv_mark, NV_NCH_NOP, 0},
351 {'n', nv_next, 0, 0},
352 {'o', nv_open, 0, 0},
353 {'p', nv_put, 0, 0},
354 {'q', nv_record, NV_NCH, 0},
355 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0},
356 {'s', nv_subst, NV_KEEPREG, 0},
357 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
358 {'u', nv_undo, 0, 0},
359 {'w', nv_wordcmd, 0, FALSE},
360 {'x', nv_abbrev, NV_KEEPREG, 0},
361 {'y', nv_operator, 0, 0},
362 {'z', nv_zet, NV_NCH_ALW, 0},
363 {'{', nv_findpar, 0, BACKWARD},
364 {'|', nv_pipe, 0, 0},
365 {'}', nv_findpar, 0, FORWARD},
366 {'~', nv_tilde, 0, 0},
368 /* pound sign */
369 {POUND, nv_ident, 0, 0},
370 #ifdef FEAT_MOUSE
371 {K_MOUSEUP, nv_mousescroll, 0, TRUE},
372 {K_MOUSEDOWN, nv_mousescroll, 0, FALSE},
373 {K_LEFTMOUSE, nv_mouse, 0, 0},
374 {K_LEFTMOUSE_NM, nv_mouse, 0, 0},
375 {K_LEFTDRAG, nv_mouse, 0, 0},
376 {K_LEFTRELEASE, nv_mouse, 0, 0},
377 {K_LEFTRELEASE_NM, nv_mouse, 0, 0},
378 {K_MIDDLEMOUSE, nv_mouse, 0, 0},
379 {K_MIDDLEDRAG, nv_mouse, 0, 0},
380 {K_MIDDLERELEASE, nv_mouse, 0, 0},
381 {K_RIGHTMOUSE, nv_mouse, 0, 0},
382 {K_RIGHTDRAG, nv_mouse, 0, 0},
383 {K_RIGHTRELEASE, nv_mouse, 0, 0},
384 {K_X1MOUSE, nv_mouse, 0, 0},
385 {K_X1DRAG, nv_mouse, 0, 0},
386 {K_X1RELEASE, nv_mouse, 0, 0},
387 {K_X2MOUSE, nv_mouse, 0, 0},
388 {K_X2DRAG, nv_mouse, 0, 0},
389 {K_X2RELEASE, nv_mouse, 0, 0},
390 #endif
391 {K_IGNORE, nv_ignore, NV_KEEPREG, 0},
392 {K_NOP, nv_nop, 0, 0},
393 {K_INS, nv_edit, 0, 0},
394 {K_KINS, nv_edit, 0, 0},
395 {K_BS, nv_ctrlh, 0, 0},
396 {K_UP, nv_up, NV_SSS|NV_STS, FALSE},
397 {K_S_UP, nv_page, NV_SS, BACKWARD},
398 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE},
399 {K_S_DOWN, nv_page, NV_SS, FORWARD},
400 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0},
401 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0},
402 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1},
403 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0},
404 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE},
405 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE},
406 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
407 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
408 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
409 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
410 {K_END, nv_end, NV_SSS|NV_STS, FALSE},
411 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE},
412 {K_S_END, nv_end, NV_SS, FALSE},
413 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE},
414 {K_HOME, nv_home, NV_SSS|NV_STS, 0},
415 {K_KHOME, nv_home, NV_SSS|NV_STS, 0},
416 {K_S_HOME, nv_home, NV_SS, 0},
417 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE},
418 {K_DEL, nv_abbrev, 0, 0},
419 {K_KDEL, nv_abbrev, 0, 0},
420 {K_UNDO, nv_kundo, 0, 0},
421 {K_HELP, nv_help, NV_NCW, 0},
422 {K_F1, nv_help, NV_NCW, 0},
423 {K_XF1, nv_help, NV_NCW, 0},
424 #ifdef FEAT_VISUAL
425 {K_SELECT, nv_select, 0, 0},
426 #endif
427 #ifdef FEAT_GUI
428 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0},
429 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0},
430 #endif
431 #ifdef FEAT_GUI_TABLINE
432 {K_TABLINE, nv_tabline, 0, 0},
433 {K_TABMENU, nv_tabmenu, 0, 0},
434 #endif
435 #ifdef FEAT_FKMAP
436 {K_F8, farsi_fkey, 0, 0},
437 {K_F9, farsi_fkey, 0, 0},
438 #endif
439 #ifdef FEAT_SNIFF
440 {K_SNIFF, nv_sniff, 0, 0},
441 #endif
442 #ifdef FEAT_NETBEANS_INTG
443 {K_F21, nv_nbcmd, NV_NCH_ALW, 0},
444 #endif
445 #ifdef FEAT_DND
446 {K_DROP, nv_drop, NV_STS, 0},
447 #endif
448 #ifdef FEAT_AUTOCMD
449 {K_CURSORHOLD, nv_cursorhold, NV_KEEPREG, 0},
450 #endif
453 /* Number of commands in nv_cmds[]. */
454 #define NV_CMDS_SIZE (sizeof(nv_cmds) / sizeof(struct nv_cmd))
456 /* Sorted index of commands in nv_cmds[]. */
457 static short nv_cmd_idx[NV_CMDS_SIZE];
459 /* The highest index for which
460 * nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char] */
461 static int nv_max_linear;
464 * Compare functions for qsort() below, that checks the command character
465 * through the index in nv_cmd_idx[].
467 static int
468 #ifdef __BORLANDC__
469 _RTLENTRYF
470 #endif
471 nv_compare(s1, s2)
472 const void *s1;
473 const void *s2;
475 int c1, c2;
477 /* The commands are sorted on absolute value. */
478 c1 = nv_cmds[*(const short *)s1].cmd_char;
479 c2 = nv_cmds[*(const short *)s2].cmd_char;
480 if (c1 < 0)
481 c1 = -c1;
482 if (c2 < 0)
483 c2 = -c2;
484 return c1 - c2;
488 * Initialize the nv_cmd_idx[] table.
490 void
491 init_normal_cmds()
493 int i;
495 /* Fill the index table with a one to one relation. */
496 for (i = 0; i < NV_CMDS_SIZE; ++i)
497 nv_cmd_idx[i] = i;
499 /* Sort the commands by the command character. */
500 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
502 /* Find the first entry that can't be indexed by the command character. */
503 for (i = 0; i < NV_CMDS_SIZE; ++i)
504 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char)
505 break;
506 nv_max_linear = i - 1;
510 * Search for a command in the commands table.
511 * Returns -1 for invalid command.
513 static int
514 find_command(cmdchar)
515 int cmdchar;
517 int i;
518 int idx;
519 int top, bot;
520 int c;
522 #ifdef FEAT_MBYTE
523 /* A multi-byte character is never a command. */
524 if (cmdchar >= 0x100)
525 return -1;
526 #endif
528 /* We use the absolute value of the character. Special keys have a
529 * negative value, but are sorted on their absolute value. */
530 if (cmdchar < 0)
531 cmdchar = -cmdchar;
533 /* If the character is in the first part: The character is the index into
534 * nv_cmd_idx[]. */
535 if (cmdchar <= nv_max_linear)
536 return nv_cmd_idx[cmdchar];
538 /* Perform a binary search. */
539 bot = nv_max_linear + 1;
540 top = NV_CMDS_SIZE - 1;
541 idx = -1;
542 while (bot <= top)
544 i = (top + bot) / 2;
545 c = nv_cmds[nv_cmd_idx[i]].cmd_char;
546 if (c < 0)
547 c = -c;
548 if (cmdchar == c)
550 idx = nv_cmd_idx[i];
551 break;
553 if (cmdchar > c)
554 bot = i + 1;
555 else
556 top = i - 1;
558 return idx;
562 * Execute a command in Normal mode.
564 /*ARGSUSED*/
565 void
566 normal_cmd(oap, toplevel)
567 oparg_T *oap;
568 int toplevel; /* TRUE when called from main() */
570 cmdarg_T ca; /* command arguments */
571 int c;
572 int ctrl_w = FALSE; /* got CTRL-W command */
573 int old_col = curwin->w_curswant;
574 #ifdef FEAT_CMDL_INFO
575 int need_flushbuf; /* need to call out_flush() */
576 #endif
577 #ifdef FEAT_VISUAL
578 pos_T old_pos; /* cursor position before command */
579 int mapped_len;
580 static int old_mapped_len = 0;
581 #endif
582 int idx;
583 #ifdef FEAT_EVAL
584 int set_prevcount = FALSE;
585 #endif
587 vim_memset(&ca, 0, sizeof(ca)); /* also resets ca.retval */
588 ca.oap = oap;
590 /* Use a count remembered from before entering an operator. After typing
591 * "3d" we return from normal_cmd() and come back here, the "3" is
592 * remembered in "opcount". */
593 ca.opcount = opcount;
595 #ifdef FEAT_SNIFF
596 want_sniff_request = sniff_connected;
597 #endif
600 * If there is an operator pending, then the command we take this time
601 * will terminate it. Finish_op tells us to finish the operation before
602 * returning this time (unless the operation was cancelled).
604 #ifdef CURSOR_SHAPE
605 c = finish_op;
606 #endif
607 finish_op = (oap->op_type != OP_NOP);
608 #ifdef CURSOR_SHAPE
609 if (finish_op != c)
611 ui_cursor_shape(); /* may show different cursor shape */
612 # ifdef FEAT_MOUSESHAPE
613 update_mouseshape(-1);
614 # endif
616 #endif
618 /* When not finishing an operator and no register name typed, reset the
619 * count. */
620 if (!finish_op && !oap->regname)
622 ca.opcount = 0;
623 #ifdef FEAT_EVAL
624 set_prevcount = TRUE;
625 #endif
628 #ifdef FEAT_AUTOCMD
629 /* Restore counts from before receiving K_CURSORHOLD. This means after
630 * typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not
631 * "3 * 2". */
632 if (oap->prev_opcount > 0 || oap->prev_count0 > 0)
634 ca.opcount = oap->prev_opcount;
635 ca.count0 = oap->prev_count0;
636 oap->prev_opcount = 0;
637 oap->prev_count0 = 0;
639 #endif
641 #ifdef FEAT_VISUAL
642 mapped_len = typebuf_maplen();
643 #endif
645 State = NORMAL_BUSY;
646 #ifdef USE_ON_FLY_SCROLL
647 dont_scroll = FALSE; /* allow scrolling here */
648 #endif
651 * Get the command character from the user.
653 c = safe_vgetc();
655 #ifdef FEAT_LANGMAP
656 LANGMAP_ADJUST(c, TRUE);
657 #endif
659 #ifdef FEAT_VISUAL
661 * If a mapping was started in Visual or Select mode, remember the length
662 * of the mapping. This is used below to not return to Insert mode for as
663 * long as the mapping is being executed.
665 if (restart_edit == 0)
666 old_mapped_len = 0;
667 else if (old_mapped_len
668 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
669 old_mapped_len = typebuf_maplen();
670 #endif
672 if (c == NUL)
673 c = K_ZERO;
675 #ifdef FEAT_VISUAL
677 * In Select mode, typed text replaces the selection.
679 if (VIsual_active
680 && VIsual_select
681 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
683 /* Fake a "c"hange command. When "restart_edit" is set (e.g., because
684 * 'insertmode' is set) fake a "d"elete command, Insert mode will
685 * restart automatically.
686 * Insert the typed character in the typeahead buffer, so that it can
687 * be mapped in Insert mode. Required for ":lmap" to work. */
688 ins_char_typebuf(c);
689 if (restart_edit != 0)
690 c = 'd';
691 else
692 c = 'c';
693 msg_nowait = TRUE; /* don't delay going to insert mode */
695 #endif
697 #ifdef FEAT_CMDL_INFO
698 need_flushbuf = add_to_showcmd(c);
699 #endif
701 getcount:
702 #ifdef FEAT_VISUAL
703 if (!(VIsual_active && VIsual_select))
704 #endif
707 * Handle a count before a command and compute ca.count0.
708 * Note that '0' is a command and not the start of a count, but it's
709 * part of a count after other digits.
711 while ( (c >= '1' && c <= '9')
712 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
714 if (c == K_DEL || c == K_KDEL)
716 ca.count0 /= 10;
717 #ifdef FEAT_CMDL_INFO
718 del_from_showcmd(4); /* delete the digit and ~@% */
719 #endif
721 else
722 ca.count0 = ca.count0 * 10 + (c - '0');
723 if (ca.count0 < 0) /* got too large! */
724 ca.count0 = 999999999L;
725 #ifdef FEAT_EVAL
726 /* Set v:count here, when called from main() and not a stuffed
727 * command, so that v:count can be used in an expression mapping
728 * right after the count. */
729 if (toplevel && stuff_empty())
731 long count = ca.count0;
733 /* multiply with ca.opcount the same way as below */
734 if (ca.opcount != 0)
735 count = ca.opcount * (count == 0 ? 1 : count);
736 set_vcount(count, count == 0 ? 1 : count, set_prevcount);
737 set_prevcount = FALSE; /* only set v:prevcount once */
739 #endif
740 if (ctrl_w)
742 ++no_mapping;
743 ++allow_keys; /* no mapping for nchar, but keys */
745 ++no_zero_mapping; /* don't map zero here */
746 c = plain_vgetc();
747 #ifdef FEAT_LANGMAP
748 LANGMAP_ADJUST(c, TRUE);
749 #endif
750 --no_zero_mapping;
751 if (ctrl_w)
753 --no_mapping;
754 --allow_keys;
756 #ifdef FEAT_CMDL_INFO
757 need_flushbuf |= add_to_showcmd(c);
758 #endif
762 * If we got CTRL-W there may be a/another count
764 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
766 ctrl_w = TRUE;
767 ca.opcount = ca.count0; /* remember first count */
768 ca.count0 = 0;
769 ++no_mapping;
770 ++allow_keys; /* no mapping for nchar, but keys */
771 c = plain_vgetc(); /* get next character */
772 #ifdef FEAT_LANGMAP
773 LANGMAP_ADJUST(c, TRUE);
774 #endif
775 --no_mapping;
776 --allow_keys;
777 #ifdef FEAT_CMDL_INFO
778 need_flushbuf |= add_to_showcmd(c);
779 #endif
780 goto getcount; /* jump back */
784 #ifdef FEAT_AUTOCMD
785 if (c == K_CURSORHOLD)
787 /* Save the count values so that ca.opcount and ca.count0 are exactly
788 * the same when coming back here after handling K_CURSORHOLD. */
789 oap->prev_opcount = ca.opcount;
790 oap->prev_count0 = ca.count0;
792 else
793 #endif
794 if (ca.opcount != 0)
797 * If we're in the middle of an operator (including after entering a
798 * yank buffer with '"') AND we had a count before the operator, then
799 * that count overrides the current value of ca.count0.
800 * What this means effectively, is that commands like "3dw" get turned
801 * into "d3w" which makes things fall into place pretty neatly.
802 * If you give a count before AND after the operator, they are
803 * multiplied.
805 if (ca.count0)
806 ca.count0 *= ca.opcount;
807 else
808 ca.count0 = ca.opcount;
812 * Always remember the count. It will be set to zero (on the next call,
813 * above) when there is no pending operator.
814 * When called from main(), save the count for use by the "count" built-in
815 * variable.
817 ca.opcount = ca.count0;
818 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
820 #ifdef FEAT_EVAL
822 * Only set v:count when called from main() and not a stuffed command.
824 if (toplevel && stuff_empty())
825 set_vcount(ca.count0, ca.count1, set_prevcount);
826 #endif
829 * Find the command character in the table of commands.
830 * For CTRL-W we already got nchar when looking for a count.
832 if (ctrl_w)
834 ca.nchar = c;
835 ca.cmdchar = Ctrl_W;
837 else
838 ca.cmdchar = c;
839 idx = find_command(ca.cmdchar);
840 if (idx < 0)
842 /* Not a known command: beep. */
843 clearopbeep(oap);
844 goto normal_end;
847 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
849 /* This command is not allowed while editing a ccmdline: beep. */
850 clearopbeep(oap);
851 text_locked_msg();
852 goto normal_end;
854 #ifdef FEAT_AUTOCMD
855 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
856 goto normal_end;
857 #endif
859 #ifdef FEAT_VISUAL
861 * In Visual/Select mode, a few keys are handled in a special way.
863 if (VIsual_active)
865 /* when 'keymodel' contains "stopsel" may stop Select/Visual mode */
866 if (km_stopsel
867 && (nv_cmds[idx].cmd_flags & NV_STS)
868 && !(mod_mask & MOD_MASK_SHIFT))
870 end_visual_mode();
871 redraw_curbuf_later(INVERTED);
874 /* Keys that work different when 'keymodel' contains "startsel" */
875 if (km_startsel)
877 if (nv_cmds[idx].cmd_flags & NV_SS)
879 unshift_special(&ca);
880 idx = find_command(ca.cmdchar);
881 if (idx < 0)
883 /* Just in case */
884 clearopbeep(oap);
885 goto normal_end;
888 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
889 && (mod_mask & MOD_MASK_SHIFT))
891 mod_mask &= ~MOD_MASK_SHIFT;
895 #endif
897 #ifdef FEAT_RIGHTLEFT
898 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
899 && (nv_cmds[idx].cmd_flags & NV_RL))
901 /* Invert horizontal movements and operations. Only when typed by the
902 * user directly, not when the result of a mapping or "x" translated
903 * to "dl". */
904 switch (ca.cmdchar)
906 case 'l': ca.cmdchar = 'h'; break;
907 case K_RIGHT: ca.cmdchar = K_LEFT; break;
908 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
909 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
910 case 'h': ca.cmdchar = 'l'; break;
911 case K_LEFT: ca.cmdchar = K_RIGHT; break;
912 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
913 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
914 case '>': ca.cmdchar = '<'; break;
915 case '<': ca.cmdchar = '>'; break;
917 idx = find_command(ca.cmdchar);
919 #endif
922 * Get an additional character if we need one.
924 if ((nv_cmds[idx].cmd_flags & NV_NCH)
925 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
926 && oap->op_type == OP_NOP)
927 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
928 || (ca.cmdchar == 'q'
929 && oap->op_type == OP_NOP
930 && !Recording
931 && !Exec_reg)
932 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
933 && (oap->op_type != OP_NOP
934 #ifdef FEAT_VISUAL
935 || VIsual_active
936 #endif
937 ))))
939 int *cp;
940 int repl = FALSE; /* get character for replace mode */
941 int lit = FALSE; /* get extra character literally */
942 int langmap_active = FALSE; /* using :lmap mappings */
943 int lang; /* getting a text character */
944 #ifdef USE_IM_CONTROL
945 int save_smd; /* saved value of p_smd */
946 #endif
948 ++no_mapping;
949 ++allow_keys; /* no mapping for nchar, but allow key codes */
950 #ifdef FEAT_AUTOCMD
951 /* Don't generate a CursorHold event here, most commands can't handle
952 * it, e.g., nv_replace(), nv_csearch(). */
953 did_cursorhold = TRUE;
954 #endif
955 if (ca.cmdchar == 'g')
958 * For 'g' get the next character now, so that we can check for
959 * "gr", "g'" and "g`".
961 ca.nchar = plain_vgetc();
962 #ifdef FEAT_LANGMAP
963 LANGMAP_ADJUST(ca.nchar, TRUE);
964 #endif
965 #ifdef FEAT_CMDL_INFO
966 need_flushbuf |= add_to_showcmd(ca.nchar);
967 #endif
968 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
969 || ca.nchar == Ctrl_BSL)
971 cp = &ca.extra_char; /* need to get a third character */
972 if (ca.nchar != 'r')
973 lit = TRUE; /* get it literally */
974 else
975 repl = TRUE; /* get it in replace mode */
977 else
978 cp = NULL; /* no third character needed */
980 else
982 if (ca.cmdchar == 'r') /* get it in replace mode */
983 repl = TRUE;
984 cp = &ca.nchar;
986 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
989 * Get a second or third character.
991 if (cp != NULL)
993 #ifdef CURSOR_SHAPE
994 if (repl)
996 State = REPLACE; /* pretend Replace mode */
997 ui_cursor_shape(); /* show different cursor shape */
999 #endif
1000 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
1002 /* Allow mappings defined with ":lmap". */
1003 --no_mapping;
1004 --allow_keys;
1005 if (repl)
1006 State = LREPLACE;
1007 else
1008 State = LANGMAP;
1009 langmap_active = TRUE;
1011 #ifdef USE_IM_CONTROL
1012 save_smd = p_smd;
1013 p_smd = FALSE; /* Don't let the IM code show the mode here */
1014 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
1015 im_set_active(TRUE);
1016 #endif
1018 *cp = plain_vgetc();
1020 if (langmap_active)
1022 /* Undo the decrement done above */
1023 ++no_mapping;
1024 ++allow_keys;
1025 State = NORMAL_BUSY;
1027 #ifdef USE_IM_CONTROL
1028 if (lang)
1030 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
1031 im_save_status(&curbuf->b_p_iminsert);
1032 im_set_active(FALSE);
1034 p_smd = save_smd;
1035 #endif
1036 #ifdef CURSOR_SHAPE
1037 State = NORMAL_BUSY;
1038 #endif
1039 #ifdef FEAT_CMDL_INFO
1040 need_flushbuf |= add_to_showcmd(*cp);
1041 #endif
1043 if (!lit)
1045 #ifdef FEAT_DIGRAPHS
1046 /* Typing CTRL-K gets a digraph. */
1047 if (*cp == Ctrl_K
1048 && ((nv_cmds[idx].cmd_flags & NV_LANG)
1049 || cp == &ca.extra_char)
1050 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
1052 c = get_digraph(FALSE);
1053 if (c > 0)
1055 *cp = c;
1056 # ifdef FEAT_CMDL_INFO
1057 /* Guessing how to update showcmd here... */
1058 del_from_showcmd(3);
1059 need_flushbuf |= add_to_showcmd(*cp);
1060 # endif
1063 #endif
1065 #ifdef FEAT_LANGMAP
1066 /* adjust chars > 127, except after "tTfFr" commands */
1067 LANGMAP_ADJUST(*cp, !lang);
1068 #endif
1069 #ifdef FEAT_RIGHTLEFT
1070 /* adjust Hebrew mapped char */
1071 if (p_hkmap && lang && KeyTyped)
1072 *cp = hkmap(*cp);
1073 # ifdef FEAT_FKMAP
1074 /* adjust Farsi mapped char */
1075 if (p_fkmap && lang && KeyTyped)
1076 *cp = fkmap(*cp);
1077 # endif
1078 #endif
1082 * When the next character is CTRL-\ a following CTRL-N means the
1083 * command is aborted and we go to Normal mode.
1085 if (cp == &ca.extra_char
1086 && ca.nchar == Ctrl_BSL
1087 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
1089 ca.cmdchar = Ctrl_BSL;
1090 ca.nchar = ca.extra_char;
1091 idx = find_command(ca.cmdchar);
1093 else if (*cp == Ctrl_BSL)
1095 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
1097 /* There is a busy wait here when typing "f<C-\>" and then
1098 * something different from CTRL-N. Can't be avoided. */
1099 while ((c = vpeekc()) <= 0 && towait > 0L)
1101 do_sleep(towait > 50L ? 50L : towait);
1102 towait -= 50L;
1104 if (c > 0)
1106 c = plain_vgetc();
1107 if (c != Ctrl_N && c != Ctrl_G)
1108 vungetc(c);
1109 else
1111 ca.cmdchar = Ctrl_BSL;
1112 ca.nchar = c;
1113 idx = find_command(ca.cmdchar);
1118 #ifdef FEAT_MBYTE
1119 /* When getting a text character and the next character is a
1120 * multi-byte character, it could be a composing character.
1121 * However, don't wait for it to arrive. */
1122 while (enc_utf8 && lang && (c = vpeekc()) > 0
1123 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1125 c = plain_vgetc();
1126 if (!utf_iscomposing(c))
1128 vungetc(c); /* it wasn't, put it back */
1129 break;
1131 else if (ca.ncharC1 == 0)
1132 ca.ncharC1 = c;
1133 else
1134 ca.ncharC2 = c;
1136 #endif
1138 --no_mapping;
1139 --allow_keys;
1142 #ifdef FEAT_CMDL_INFO
1144 * Flush the showcmd characters onto the screen so we can see them while
1145 * the command is being executed. Only do this when the shown command was
1146 * actually displayed, otherwise this will slow down a lot when executing
1147 * mappings.
1149 if (need_flushbuf)
1150 out_flush();
1151 #endif
1152 #ifdef FEAT_AUTOCMD
1153 if (ca.cmdchar != K_IGNORE)
1154 did_cursorhold = FALSE;
1155 #endif
1157 State = NORMAL;
1159 if (ca.nchar == ESC)
1161 clearop(oap);
1162 if (restart_edit == 0 && goto_im())
1163 restart_edit = 'a';
1164 goto normal_end;
1167 if (ca.cmdchar != K_IGNORE)
1169 msg_didout = FALSE; /* don't scroll screen up for normal command */
1170 msg_col = 0;
1173 #ifdef FEAT_VISUAL
1174 old_pos = curwin->w_cursor; /* remember where cursor was */
1176 /* When 'keymodel' contains "startsel" some keys start Select/Visual
1177 * mode. */
1178 if (!VIsual_active && km_startsel)
1180 if (nv_cmds[idx].cmd_flags & NV_SS)
1182 start_selection();
1183 unshift_special(&ca);
1184 idx = find_command(ca.cmdchar);
1186 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1187 && (mod_mask & MOD_MASK_SHIFT))
1189 start_selection();
1190 mod_mask &= ~MOD_MASK_SHIFT;
1193 #endif
1196 * Execute the command!
1197 * Call the command function found in the commands table.
1199 ca.arg = nv_cmds[idx].cmd_arg;
1200 (nv_cmds[idx].cmd_func)(&ca);
1203 * If we didn't start or finish an operator, reset oap->regname, unless we
1204 * need it later.
1206 if (!finish_op
1207 && !oap->op_type
1208 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1210 clearop(oap);
1211 #ifdef FEAT_EVAL
1212 set_reg_var('"');
1213 #endif
1216 #ifdef FEAT_VISUAL
1217 /* Get the length of mapped chars again after typing a count, second
1218 * character or "z333<cr>". */
1219 if (old_mapped_len > 0)
1220 old_mapped_len = typebuf_maplen();
1221 #endif
1224 * If an operation is pending, handle it...
1226 do_pending_operator(&ca, old_col, FALSE);
1229 * Wait for a moment when a message is displayed that will be overwritten
1230 * by the mode message.
1231 * In Visual mode and with "^O" in Insert mode, a short message will be
1232 * overwritten by the mode message. Wait a bit, until a key is hit.
1233 * In Visual mode, it's more important to keep the Visual area updated
1234 * than keeping a message (e.g. from a /pat search).
1235 * Only do this if the command was typed, not from a mapping.
1236 * Don't wait when emsg_silent is non-zero.
1237 * Also wait a bit after an error message, e.g. for "^O:".
1238 * Don't redraw the screen, it would remove the message.
1240 if ( ((p_smd
1241 && msg_silent == 0
1242 && (restart_edit != 0
1243 #ifdef FEAT_VISUAL
1244 || (VIsual_active
1245 && old_pos.lnum == curwin->w_cursor.lnum
1246 && old_pos.col == curwin->w_cursor.col)
1247 #endif
1249 && (clear_cmdline
1250 || redraw_cmdline)
1251 && (msg_didout || (msg_didany && msg_scroll))
1252 && !msg_nowait
1253 && KeyTyped)
1254 || (restart_edit != 0
1255 #ifdef FEAT_VISUAL
1256 && !VIsual_active
1257 #endif
1258 && (msg_scroll
1259 || emsg_on_display)))
1260 && oap->regname == 0
1261 && !(ca.retval & CA_COMMAND_BUSY)
1262 && stuff_empty()
1263 && typebuf_typed()
1264 && emsg_silent == 0
1265 && !did_wait_return
1266 && oap->op_type == OP_NOP)
1268 int save_State = State;
1270 /* Draw the cursor with the right shape here */
1271 if (restart_edit != 0)
1272 State = INSERT;
1274 /* If need to redraw, and there is a "keep_msg", redraw before the
1275 * delay */
1276 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1278 char_u *kmsg;
1280 kmsg = keep_msg;
1281 keep_msg = NULL;
1282 /* showmode() will clear keep_msg, but we want to use it anyway */
1283 update_screen(0);
1284 /* now reset it, otherwise it's put in the history again */
1285 keep_msg = kmsg;
1286 msg_attr(kmsg, keep_msg_attr);
1287 vim_free(kmsg);
1289 setcursor();
1290 cursor_on();
1291 out_flush();
1292 if (msg_scroll || emsg_on_display)
1293 ui_delay(1000L, TRUE); /* wait at least one second */
1294 ui_delay(3000L, FALSE); /* wait up to three seconds */
1295 State = save_State;
1297 msg_scroll = FALSE;
1298 emsg_on_display = FALSE;
1302 * Finish up after executing a Normal mode command.
1304 normal_end:
1306 msg_nowait = FALSE;
1308 /* Reset finish_op, in case it was set */
1309 #ifdef CURSOR_SHAPE
1310 c = finish_op;
1311 #endif
1312 finish_op = FALSE;
1313 #ifdef CURSOR_SHAPE
1314 /* Redraw the cursor with another shape, if we were in Operator-pending
1315 * mode or did a replace command. */
1316 if (c || ca.cmdchar == 'r')
1318 ui_cursor_shape(); /* may show different cursor shape */
1319 # ifdef FEAT_MOUSESHAPE
1320 update_mouseshape(-1);
1321 # endif
1323 #endif
1325 #ifdef FEAT_CMDL_INFO
1326 if (oap->op_type == OP_NOP && oap->regname == 0
1327 # ifdef FEAT_AUTOCMD
1328 && ca.cmdchar != K_CURSORHOLD
1329 # endif
1331 clear_showcmd();
1332 #endif
1334 checkpcmark(); /* check if we moved since setting pcmark */
1335 vim_free(ca.searchbuf);
1337 #ifdef FEAT_MBYTE
1338 if (has_mbyte)
1339 mb_adjust_cursor();
1340 #endif
1342 #ifdef FEAT_SCROLLBIND
1343 if (curwin->w_p_scb && toplevel)
1345 validate_cursor(); /* may need to update w_leftcol */
1346 do_check_scrollbind(TRUE);
1348 #endif
1351 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1352 * if still inside a mapping that started in Visual mode).
1353 * May switch from Visual to Select mode after CTRL-O command.
1355 if ( oap->op_type == OP_NOP
1356 #ifdef FEAT_VISUAL
1357 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1358 || restart_VIsual_select == 1)
1359 #else
1360 && restart_edit != 0
1361 #endif
1362 && !(ca.retval & CA_COMMAND_BUSY)
1363 && stuff_empty()
1364 && oap->regname == 0)
1366 #ifdef FEAT_VISUAL
1367 if (restart_VIsual_select == 1)
1369 VIsual_select = TRUE;
1370 showmode();
1371 restart_VIsual_select = 0;
1373 #endif
1374 if (restart_edit != 0
1375 #ifdef FEAT_VISUAL
1376 && !VIsual_active && old_mapped_len == 0
1377 #endif
1379 (void)edit(restart_edit, FALSE, 1L);
1382 #ifdef FEAT_VISUAL
1383 if (restart_VIsual_select == 2)
1384 restart_VIsual_select = 1;
1385 #endif
1387 /* Save count before an operator for next time. */
1388 opcount = ca.opcount;
1392 * Handle an operator after visual mode or when the movement is finished
1394 void
1395 do_pending_operator(cap, old_col, gui_yank)
1396 cmdarg_T *cap;
1397 int old_col;
1398 int gui_yank;
1400 oparg_T *oap = cap->oap;
1401 pos_T old_cursor;
1402 int empty_region_error;
1403 int restart_edit_save;
1405 #ifdef FEAT_VISUAL
1406 /* The visual area is remembered for redo */
1407 static int redo_VIsual_mode = NUL; /* 'v', 'V', or Ctrl-V */
1408 static linenr_T redo_VIsual_line_count; /* number of lines */
1409 static colnr_T redo_VIsual_col; /* number of cols or end column */
1410 static long redo_VIsual_count; /* count for Visual operator */
1411 # ifdef FEAT_VIRTUALEDIT
1412 int include_line_break = FALSE;
1413 # endif
1414 #endif
1416 #if defined(FEAT_CLIPBOARD)
1418 * Yank the visual area into the GUI selection register before we operate
1419 * on it and lose it forever.
1420 * Don't do it if a specific register was specified, so that ""x"*P works.
1421 * This could call do_pending_operator() recursively, but that's OK
1422 * because gui_yank will be TRUE for the nested call.
1424 if (clip_star.available
1425 && oap->op_type != OP_NOP
1426 && !gui_yank
1427 # ifdef FEAT_VISUAL
1428 && VIsual_active
1429 && !redo_VIsual_busy
1430 # endif
1431 && oap->regname == 0)
1432 clip_auto_select();
1433 #endif
1434 old_cursor = curwin->w_cursor;
1437 * If an operation is pending, handle it...
1439 if ((finish_op
1440 #ifdef FEAT_VISUAL
1441 || VIsual_active
1442 #endif
1443 ) && oap->op_type != OP_NOP)
1445 #ifdef FEAT_VISUAL
1446 oap->is_VIsual = VIsual_active;
1447 if (oap->motion_force == 'V')
1448 oap->motion_type = MLINE;
1449 else if (oap->motion_force == 'v')
1451 /* If the motion was linewise, "inclusive" will not have been set.
1452 * Use "exclusive" to be consistent. Makes "dvj" work nice. */
1453 if (oap->motion_type == MLINE)
1454 oap->inclusive = FALSE;
1455 /* If the motion already was characterwise, toggle "inclusive" */
1456 else if (oap->motion_type == MCHAR)
1457 oap->inclusive = !oap->inclusive;
1458 oap->motion_type = MCHAR;
1460 else if (oap->motion_force == Ctrl_V)
1462 /* Change line- or characterwise motion into Visual block mode. */
1463 VIsual_active = TRUE;
1464 VIsual = oap->start;
1465 VIsual_mode = Ctrl_V;
1466 VIsual_select = FALSE;
1467 VIsual_reselect = FALSE;
1469 #endif
1471 /* only redo yank when 'y' flag is in 'cpoptions' */
1472 /* never redo "zf" (define fold) */
1473 if ((vim_strchr(p_cpo, CPO_YANK) != NULL || oap->op_type != OP_YANK)
1474 #ifdef FEAT_VISUAL
1475 && (!VIsual_active || oap->motion_force)
1476 #endif
1477 && cap->cmdchar != 'D'
1478 #ifdef FEAT_FOLDING
1479 && oap->op_type != OP_FOLD
1480 && oap->op_type != OP_FOLDOPEN
1481 && oap->op_type != OP_FOLDOPENREC
1482 && oap->op_type != OP_FOLDCLOSE
1483 && oap->op_type != OP_FOLDCLOSEREC
1484 && oap->op_type != OP_FOLDDEL
1485 && oap->op_type != OP_FOLDDELREC
1486 #endif
1489 prep_redo(oap->regname, cap->count0,
1490 get_op_char(oap->op_type), get_extra_op_char(oap->op_type),
1491 oap->motion_force, cap->cmdchar, cap->nchar);
1492 if (cap->cmdchar == '/' || cap->cmdchar == '?') /* was a search */
1495 * If 'cpoptions' does not contain 'r', insert the search
1496 * pattern to really repeat the same command.
1498 if (vim_strchr(p_cpo, CPO_REDO) == NULL)
1499 AppendToRedobuffLit(cap->searchbuf, -1);
1500 AppendToRedobuff(NL_STR);
1502 else if (cap->cmdchar == ':')
1504 /* do_cmdline() has stored the first typed line in
1505 * "repeat_cmdline". When several lines are typed repeating
1506 * won't be possible. */
1507 if (repeat_cmdline == NULL)
1508 ResetRedobuff();
1509 else
1511 AppendToRedobuffLit(repeat_cmdline, -1);
1512 AppendToRedobuff(NL_STR);
1513 vim_free(repeat_cmdline);
1514 repeat_cmdline = NULL;
1519 #ifdef FEAT_VISUAL
1520 if (redo_VIsual_busy)
1522 oap->start = curwin->w_cursor;
1523 curwin->w_cursor.lnum += redo_VIsual_line_count - 1;
1524 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1525 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1526 VIsual_mode = redo_VIsual_mode;
1527 if (VIsual_mode == 'v')
1529 if (redo_VIsual_line_count <= 1)
1530 curwin->w_cursor.col += redo_VIsual_col - 1;
1531 else
1532 curwin->w_cursor.col = redo_VIsual_col;
1534 if (redo_VIsual_col == MAXCOL)
1536 curwin->w_curswant = MAXCOL;
1537 coladvance((colnr_T)MAXCOL);
1539 cap->count0 = redo_VIsual_count;
1540 if (redo_VIsual_count != 0)
1541 cap->count1 = redo_VIsual_count;
1542 else
1543 cap->count1 = 1;
1545 else if (VIsual_active)
1547 if (!gui_yank)
1549 /* Save the current VIsual area for '< and '> marks, and "gv" */
1550 curbuf->b_visual.vi_start = VIsual;
1551 curbuf->b_visual.vi_end = curwin->w_cursor;
1552 curbuf->b_visual.vi_mode = VIsual_mode;
1553 curbuf->b_visual.vi_curswant = curwin->w_curswant;
1554 # ifdef FEAT_EVAL
1555 curbuf->b_visual_mode_eval = VIsual_mode;
1556 # endif
1559 /* In Select mode, a linewise selection is operated upon like a
1560 * characterwise selection. */
1561 if (VIsual_select && VIsual_mode == 'V')
1563 if (lt(VIsual, curwin->w_cursor))
1565 VIsual.col = 0;
1566 curwin->w_cursor.col =
1567 (colnr_T)STRLEN(ml_get(curwin->w_cursor.lnum));
1569 else
1571 curwin->w_cursor.col = 0;
1572 VIsual.col = (colnr_T)STRLEN(ml_get(VIsual.lnum));
1574 VIsual_mode = 'v';
1576 /* If 'selection' is "exclusive", backup one character for
1577 * charwise selections. */
1578 else if (VIsual_mode == 'v')
1580 # ifdef FEAT_VIRTUALEDIT
1581 include_line_break =
1582 # endif
1583 unadjust_for_sel();
1586 oap->start = VIsual;
1587 if (VIsual_mode == 'V')
1588 oap->start.col = 0;
1590 #endif /* FEAT_VISUAL */
1593 * Set oap->start to the first position of the operated text, oap->end
1594 * to the end of the operated text. w_cursor is equal to oap->start.
1596 if (lt(oap->start, curwin->w_cursor))
1598 #ifdef FEAT_FOLDING
1599 /* Include folded lines completely. */
1600 if (!VIsual_active)
1602 if (hasFolding(oap->start.lnum, &oap->start.lnum, NULL))
1603 oap->start.col = 0;
1604 if (hasFolding(curwin->w_cursor.lnum, NULL,
1605 &curwin->w_cursor.lnum))
1606 curwin->w_cursor.col = (colnr_T)STRLEN(ml_get_curline());
1608 #endif
1609 oap->end = curwin->w_cursor;
1610 curwin->w_cursor = oap->start;
1612 /* w_virtcol may have been updated; if the cursor goes back to its
1613 * previous position w_virtcol becomes invalid and isn't updated
1614 * automatically. */
1615 curwin->w_valid &= ~VALID_VIRTCOL;
1617 else
1619 #ifdef FEAT_FOLDING
1620 /* Include folded lines completely. */
1621 if (!VIsual_active && oap->motion_type == MLINE)
1623 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum,
1624 NULL))
1625 curwin->w_cursor.col = 0;
1626 if (hasFolding(oap->start.lnum, NULL, &oap->start.lnum))
1627 oap->start.col = (colnr_T)STRLEN(ml_get(oap->start.lnum));
1629 #endif
1630 oap->end = oap->start;
1631 oap->start = curwin->w_cursor;
1634 oap->line_count = oap->end.lnum - oap->start.lnum + 1;
1636 #ifdef FEAT_VIRTUALEDIT
1637 /* Set "virtual_op" before resetting VIsual_active. */
1638 virtual_op = virtual_active();
1639 #endif
1641 #ifdef FEAT_VISUAL
1642 if (VIsual_active || redo_VIsual_busy)
1644 if (VIsual_mode == Ctrl_V) /* block mode */
1646 colnr_T start, end;
1648 oap->block_mode = TRUE;
1650 getvvcol(curwin, &(oap->start),
1651 &oap->start_vcol, NULL, &oap->end_vcol);
1652 if (!redo_VIsual_busy)
1654 getvvcol(curwin, &(oap->end), &start, NULL, &end);
1656 if (start < oap->start_vcol)
1657 oap->start_vcol = start;
1658 if (end > oap->end_vcol)
1660 if (*p_sel == 'e' && start >= 1
1661 && start - 1 >= oap->end_vcol)
1662 oap->end_vcol = start - 1;
1663 else
1664 oap->end_vcol = end;
1668 /* if '$' was used, get oap->end_vcol from longest line */
1669 if (curwin->w_curswant == MAXCOL)
1671 curwin->w_cursor.col = MAXCOL;
1672 oap->end_vcol = 0;
1673 for (curwin->w_cursor.lnum = oap->start.lnum;
1674 curwin->w_cursor.lnum <= oap->end.lnum;
1675 ++curwin->w_cursor.lnum)
1677 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &end);
1678 if (end > oap->end_vcol)
1679 oap->end_vcol = end;
1682 else if (redo_VIsual_busy)
1683 oap->end_vcol = oap->start_vcol + redo_VIsual_col - 1;
1685 * Correct oap->end.col and oap->start.col to be the
1686 * upper-left and lower-right corner of the block area.
1688 * (Actually, this does convert column positions into character
1689 * positions)
1691 curwin->w_cursor.lnum = oap->end.lnum;
1692 coladvance(oap->end_vcol);
1693 oap->end = curwin->w_cursor;
1695 curwin->w_cursor = oap->start;
1696 coladvance(oap->start_vcol);
1697 oap->start = curwin->w_cursor;
1700 if (!redo_VIsual_busy && !gui_yank)
1703 * Prepare to reselect and redo Visual: this is based on the
1704 * size of the Visual text
1706 resel_VIsual_mode = VIsual_mode;
1707 if (curwin->w_curswant == MAXCOL)
1708 resel_VIsual_col = MAXCOL;
1709 else if (VIsual_mode == Ctrl_V)
1710 resel_VIsual_col = oap->end_vcol - oap->start_vcol + 1;
1711 else if (oap->line_count > 1)
1712 resel_VIsual_col = oap->end.col;
1713 else
1714 resel_VIsual_col = oap->end.col - oap->start.col + 1;
1715 resel_VIsual_line_count = oap->line_count;
1718 /* can't redo yank (unless 'y' is in 'cpoptions') and ":" */
1719 if ((vim_strchr(p_cpo, CPO_YANK) != NULL || oap->op_type != OP_YANK)
1720 && oap->op_type != OP_COLON
1721 #ifdef FEAT_FOLDING
1722 && oap->op_type != OP_FOLD
1723 && oap->op_type != OP_FOLDOPEN
1724 && oap->op_type != OP_FOLDOPENREC
1725 && oap->op_type != OP_FOLDCLOSE
1726 && oap->op_type != OP_FOLDCLOSEREC
1727 && oap->op_type != OP_FOLDDEL
1728 && oap->op_type != OP_FOLDDELREC
1729 #endif
1730 && oap->motion_force == NUL
1733 /* Prepare for redoing. Only use the nchar field for "r",
1734 * otherwise it might be the second char of the operator. */
1735 prep_redo(oap->regname, 0L, NUL, 'v',
1736 get_op_char(oap->op_type),
1737 get_extra_op_char(oap->op_type),
1738 oap->op_type == OP_REPLACE ? cap->nchar : NUL);
1739 if (!redo_VIsual_busy)
1741 redo_VIsual_mode = resel_VIsual_mode;
1742 redo_VIsual_col = resel_VIsual_col;
1743 redo_VIsual_line_count = resel_VIsual_line_count;
1744 redo_VIsual_count = cap->count0;
1749 * oap->inclusive defaults to TRUE.
1750 * If oap->end is on a NUL (empty line) oap->inclusive becomes
1751 * FALSE. This makes "d}P" and "v}dP" work the same.
1753 if (oap->motion_force == NUL || oap->motion_type == MLINE)
1754 oap->inclusive = TRUE;
1755 if (VIsual_mode == 'V')
1756 oap->motion_type = MLINE;
1757 else
1759 oap->motion_type = MCHAR;
1760 if (VIsual_mode != Ctrl_V && *ml_get_pos(&(oap->end)) == NUL
1761 # ifdef FEAT_VIRTUALEDIT
1762 && (include_line_break || !virtual_op)
1763 # endif
1766 oap->inclusive = FALSE;
1767 /* Try to include the newline, unless it's an operator
1768 * that works on lines only */
1769 if (*p_sel != 'o'
1770 && !op_on_lines(oap->op_type)
1771 && oap->end.lnum < curbuf->b_ml.ml_line_count)
1773 ++oap->end.lnum;
1774 oap->end.col = 0;
1775 # ifdef FEAT_VIRTUALEDIT
1776 oap->end.coladd = 0;
1777 # endif
1778 ++oap->line_count;
1783 redo_VIsual_busy = FALSE;
1786 * Switch Visual off now, so screen updating does
1787 * not show inverted text when the screen is redrawn.
1788 * With OP_YANK and sometimes with OP_COLON and OP_FILTER there is
1789 * no screen redraw, so it is done here to remove the inverted
1790 * part.
1792 if (!gui_yank)
1794 VIsual_active = FALSE;
1795 # ifdef FEAT_MOUSE
1796 setmouse();
1797 mouse_dragging = 0;
1798 # endif
1799 if (mode_displayed)
1800 clear_cmdline = TRUE; /* unshow visual mode later */
1801 #ifdef FEAT_CMDL_INFO
1802 else
1803 clear_showcmd();
1804 #endif
1805 if ((oap->op_type == OP_YANK
1806 || oap->op_type == OP_COLON
1807 || oap->op_type == OP_FUNCTION
1808 || oap->op_type == OP_FILTER)
1809 && oap->motion_force == NUL)
1810 redraw_curbuf_later(INVERTED);
1813 #endif
1815 #ifdef FEAT_MBYTE
1816 /* Include the trailing byte of a multi-byte char. */
1817 if (has_mbyte && oap->inclusive)
1819 int l;
1821 l = (*mb_ptr2len)(ml_get_pos(&oap->end));
1822 if (l > 1)
1823 oap->end.col += l - 1;
1825 #endif
1826 curwin->w_set_curswant = TRUE;
1829 * oap->empty is set when start and end are the same. The inclusive
1830 * flag affects this too, unless yanking and the end is on a NUL.
1832 oap->empty = (oap->motion_type == MCHAR
1833 && (!oap->inclusive
1834 || (oap->op_type == OP_YANK
1835 && gchar_pos(&oap->end) == NUL))
1836 && equalpos(oap->start, oap->end)
1837 #ifdef FEAT_VIRTUALEDIT
1838 && !(virtual_op && oap->start.coladd != oap->end.coladd)
1839 #endif
1842 * For delete, change and yank, it's an error to operate on an
1843 * empty region, when 'E' included in 'cpoptions' (Vi compatible).
1845 empty_region_error = (oap->empty
1846 && vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL);
1848 #ifdef FEAT_VISUAL
1849 /* Force a redraw when operating on an empty Visual region, when
1850 * 'modifiable is off or creating a fold. */
1851 if (oap->is_VIsual && (oap->empty || !curbuf->b_p_ma
1852 # ifdef FEAT_FOLDING
1853 || oap->op_type == OP_FOLD
1854 # endif
1856 redraw_curbuf_later(INVERTED);
1857 #endif
1860 * If the end of an operator is in column one while oap->motion_type
1861 * is MCHAR and oap->inclusive is FALSE, we put op_end after the last
1862 * character in the previous line. If op_start is on or before the
1863 * first non-blank in the line, the operator becomes linewise
1864 * (strange, but that's the way vi does it).
1866 if ( oap->motion_type == MCHAR
1867 && oap->inclusive == FALSE
1868 && !(cap->retval & CA_NO_ADJ_OP_END)
1869 && oap->end.col == 0
1870 #ifdef FEAT_VISUAL
1871 && (!oap->is_VIsual || *p_sel == 'o')
1872 && !oap->block_mode
1873 #endif
1874 && oap->line_count > 1)
1876 oap->end_adjusted = TRUE; /* remember that we did this */
1877 --oap->line_count;
1878 --oap->end.lnum;
1879 if (inindent(0))
1880 oap->motion_type = MLINE;
1881 else
1883 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
1884 if (oap->end.col)
1886 --oap->end.col;
1887 oap->inclusive = TRUE;
1891 else
1892 oap->end_adjusted = FALSE;
1894 switch (oap->op_type)
1896 case OP_LSHIFT:
1897 case OP_RSHIFT:
1898 op_shift(oap, TRUE,
1899 #ifdef FEAT_VISUAL
1900 oap->is_VIsual ? (int)cap->count1 :
1901 #endif
1903 auto_format(FALSE, TRUE);
1904 break;
1906 case OP_JOIN_NS:
1907 case OP_JOIN:
1908 if (oap->line_count < 2)
1909 oap->line_count = 2;
1910 if (curwin->w_cursor.lnum + oap->line_count - 1 >
1911 curbuf->b_ml.ml_line_count)
1912 beep_flush();
1913 else
1915 do_do_join(oap->line_count, oap->op_type == OP_JOIN);
1916 auto_format(FALSE, TRUE);
1918 break;
1920 case OP_DELETE:
1921 #ifdef FEAT_VISUAL
1922 VIsual_reselect = FALSE; /* don't reselect now */
1923 #endif
1924 if (empty_region_error)
1925 vim_beep();
1926 else
1928 (void)op_delete(oap);
1929 if (oap->motion_type == MLINE && has_format_option(FO_AUTO))
1930 u_save_cursor(); /* cursor line wasn't saved yet */
1931 auto_format(FALSE, TRUE);
1933 break;
1935 case OP_YANK:
1936 if (empty_region_error)
1938 if (!gui_yank)
1939 vim_beep();
1941 else
1942 (void)op_yank(oap, FALSE, !gui_yank);
1943 check_cursor_col();
1944 break;
1946 case OP_CHANGE:
1947 #ifdef FEAT_VISUAL
1948 VIsual_reselect = FALSE; /* don't reselect now */
1949 #endif
1950 if (empty_region_error)
1951 vim_beep();
1952 else
1954 /* This is a new edit command, not a restart. Need to
1955 * remember it to make 'insertmode' work with mappings for
1956 * Visual mode. But do this only once and not when typed and
1957 * 'insertmode' isn't set. */
1958 if (p_im || !KeyTyped)
1959 restart_edit_save = restart_edit;
1960 else
1961 restart_edit_save = 0;
1962 restart_edit = 0;
1963 /* Reset finish_op now, don't want it set inside edit(). */
1964 finish_op = FALSE;
1965 if (op_change(oap)) /* will call edit() */
1966 cap->retval |= CA_COMMAND_BUSY;
1967 if (restart_edit == 0)
1968 restart_edit = restart_edit_save;
1970 break;
1972 case OP_FILTER:
1973 if (vim_strchr(p_cpo, CPO_FILTER) != NULL)
1974 AppendToRedobuff((char_u *)"!\r"); /* use any last used !cmd */
1975 else
1976 bangredo = TRUE; /* do_bang() will put cmd in redo buffer */
1978 case OP_INDENT:
1979 case OP_COLON:
1981 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
1983 * If 'equalprg' is empty, do the indenting internally.
1985 if (oap->op_type == OP_INDENT && *get_equalprg() == NUL)
1987 # ifdef FEAT_LISP
1988 if (curbuf->b_p_lisp)
1990 op_reindent(oap, get_lisp_indent);
1991 break;
1993 # endif
1994 # ifdef FEAT_CINDENT
1995 op_reindent(oap,
1996 # ifdef FEAT_EVAL
1997 *curbuf->b_p_inde != NUL ? get_expr_indent :
1998 # endif
1999 get_c_indent);
2000 break;
2001 # endif
2003 #endif
2005 op_colon(oap);
2006 break;
2008 case OP_TILDE:
2009 case OP_UPPER:
2010 case OP_LOWER:
2011 case OP_ROT13:
2012 if (empty_region_error)
2013 vim_beep();
2014 else
2015 op_tilde(oap);
2016 check_cursor_col();
2017 break;
2019 case OP_FORMAT:
2020 #if defined(FEAT_EVAL)
2021 if (*curbuf->b_p_fex != NUL)
2022 op_formatexpr(oap); /* use expression */
2023 else
2024 #endif
2025 if (*p_fp != NUL)
2026 op_colon(oap); /* use external command */
2027 else
2028 op_format(oap, FALSE); /* use internal function */
2029 break;
2031 case OP_FORMAT2:
2032 op_format(oap, TRUE); /* use internal function */
2033 break;
2035 case OP_FUNCTION:
2036 op_function(oap); /* call 'operatorfunc' */
2037 break;
2039 case OP_INSERT:
2040 case OP_APPEND:
2041 #ifdef FEAT_VISUAL
2042 VIsual_reselect = FALSE; /* don't reselect now */
2043 #endif
2044 #ifdef FEAT_VISUALEXTRA
2045 if (empty_region_error)
2046 vim_beep();
2047 else
2049 /* This is a new edit command, not a restart. Need to
2050 * remember it to make 'insertmode' work with mappings for
2051 * Visual mode. But do this only once. */
2052 restart_edit_save = restart_edit;
2053 restart_edit = 0;
2055 op_insert(oap, cap->count1);
2057 /* TODO: when inserting in several lines, should format all
2058 * the lines. */
2059 auto_format(FALSE, TRUE);
2061 if (restart_edit == 0)
2062 restart_edit = restart_edit_save;
2064 #else
2065 vim_beep();
2066 #endif
2067 break;
2069 case OP_REPLACE:
2070 #ifdef FEAT_VISUAL
2071 VIsual_reselect = FALSE; /* don't reselect now */
2072 #endif
2073 #ifdef FEAT_VISUALEXTRA
2074 if (empty_region_error)
2075 #endif
2076 vim_beep();
2077 #ifdef FEAT_VISUALEXTRA
2078 else
2079 op_replace(oap, cap->nchar);
2080 #endif
2081 break;
2083 #ifdef FEAT_FOLDING
2084 case OP_FOLD:
2085 VIsual_reselect = FALSE; /* don't reselect now */
2086 foldCreate(oap->start.lnum, oap->end.lnum);
2087 break;
2089 case OP_FOLDOPEN:
2090 case OP_FOLDOPENREC:
2091 case OP_FOLDCLOSE:
2092 case OP_FOLDCLOSEREC:
2093 VIsual_reselect = FALSE; /* don't reselect now */
2094 opFoldRange(oap->start.lnum, oap->end.lnum,
2095 oap->op_type == OP_FOLDOPEN
2096 || oap->op_type == OP_FOLDOPENREC,
2097 oap->op_type == OP_FOLDOPENREC
2098 || oap->op_type == OP_FOLDCLOSEREC,
2099 oap->is_VIsual);
2100 break;
2102 case OP_FOLDDEL:
2103 case OP_FOLDDELREC:
2104 VIsual_reselect = FALSE; /* don't reselect now */
2105 deleteFold(oap->start.lnum, oap->end.lnum,
2106 oap->op_type == OP_FOLDDELREC, oap->is_VIsual);
2107 break;
2108 #endif
2109 default:
2110 clearopbeep(oap);
2112 #ifdef FEAT_VIRTUALEDIT
2113 virtual_op = MAYBE;
2114 #endif
2115 if (!gui_yank)
2118 * if 'sol' not set, go back to old column for some commands
2120 if (!p_sol && oap->motion_type == MLINE && !oap->end_adjusted
2121 && (oap->op_type == OP_LSHIFT || oap->op_type == OP_RSHIFT
2122 || oap->op_type == OP_DELETE))
2123 coladvance(curwin->w_curswant = old_col);
2125 else
2127 curwin->w_cursor = old_cursor;
2129 #ifdef FEAT_VISUAL
2130 oap->block_mode = FALSE;
2131 #endif
2132 clearop(oap);
2137 * Handle indent and format operators and visual mode ":".
2139 static void
2140 op_colon(oap)
2141 oparg_T *oap;
2143 stuffcharReadbuff(':');
2144 #ifdef FEAT_VISUAL
2145 if (oap->is_VIsual)
2146 stuffReadbuff((char_u *)"'<,'>");
2147 else
2148 #endif
2151 * Make the range look nice, so it can be repeated.
2153 if (oap->start.lnum == curwin->w_cursor.lnum)
2154 stuffcharReadbuff('.');
2155 else
2156 stuffnumReadbuff((long)oap->start.lnum);
2157 if (oap->end.lnum != oap->start.lnum)
2159 stuffcharReadbuff(',');
2160 if (oap->end.lnum == curwin->w_cursor.lnum)
2161 stuffcharReadbuff('.');
2162 else if (oap->end.lnum == curbuf->b_ml.ml_line_count)
2163 stuffcharReadbuff('$');
2164 else if (oap->start.lnum == curwin->w_cursor.lnum)
2166 stuffReadbuff((char_u *)".+");
2167 stuffnumReadbuff((long)oap->line_count - 1);
2169 else
2170 stuffnumReadbuff((long)oap->end.lnum);
2173 if (oap->op_type != OP_COLON)
2174 stuffReadbuff((char_u *)"!");
2175 if (oap->op_type == OP_INDENT)
2177 #ifndef FEAT_CINDENT
2178 if (*get_equalprg() == NUL)
2179 stuffReadbuff((char_u *)"indent");
2180 else
2181 #endif
2182 stuffReadbuff(get_equalprg());
2183 stuffReadbuff((char_u *)"\n");
2185 else if (oap->op_type == OP_FORMAT)
2187 if (*p_fp == NUL)
2188 stuffReadbuff((char_u *)"fmt");
2189 else
2190 stuffReadbuff(p_fp);
2191 stuffReadbuff((char_u *)"\n']");
2195 * do_cmdline() does the rest
2200 * Handle the "g@" operator: call 'operatorfunc'.
2202 /*ARGSUSED*/
2203 static void
2204 op_function(oap)
2205 oparg_T *oap;
2207 #ifdef FEAT_EVAL
2208 char_u *(argv[1]);
2210 if (*p_opfunc == NUL)
2211 EMSG(_("E774: 'operatorfunc' is empty"));
2212 else
2214 /* Set '[ and '] marks to text to be operated on. */
2215 curbuf->b_op_start = oap->start;
2216 curbuf->b_op_end = oap->end;
2217 if (oap->motion_type != MLINE && !oap->inclusive)
2218 /* Exclude the end position. */
2219 decl(&curbuf->b_op_end);
2221 if (oap->block_mode)
2222 argv[0] = (char_u *)"block";
2223 else if (oap->motion_type == MLINE)
2224 argv[0] = (char_u *)"line";
2225 else
2226 argv[0] = (char_u *)"char";
2227 (void)call_func_retnr(p_opfunc, 1, argv, FALSE);
2229 #else
2230 EMSG(_("E775: Eval feature not available"));
2231 #endif
2234 #if defined(FEAT_MOUSE) || defined(PROTO)
2236 * Do the appropriate action for the current mouse click in the current mode.
2237 * Not used for Command-line mode.
2239 * Normal Mode:
2240 * event modi- position visual change action
2241 * fier cursor window
2242 * left press - yes end yes
2243 * left press C yes end yes "^]" (2)
2244 * left press S yes end yes "*" (2)
2245 * left drag - yes start if moved no
2246 * left relse - yes start if moved no
2247 * middle press - yes if not active no put register
2248 * middle press - yes if active no yank and put
2249 * right press - yes start or extend yes
2250 * right press S yes no change yes "#" (2)
2251 * right drag - yes extend no
2252 * right relse - yes extend no
2254 * Insert or Replace Mode:
2255 * event modi- position visual change action
2256 * fier cursor window
2257 * left press - yes (cannot be active) yes
2258 * left press C yes (cannot be active) yes "CTRL-O^]" (2)
2259 * left press S yes (cannot be active) yes "CTRL-O*" (2)
2260 * left drag - yes start or extend (1) no CTRL-O (1)
2261 * left relse - yes start or extend (1) no CTRL-O (1)
2262 * middle press - no (cannot be active) no put register
2263 * right press - yes start or extend yes CTRL-O
2264 * right press S yes (cannot be active) yes "CTRL-O#" (2)
2266 * (1) only if mouse pointer moved since press
2267 * (2) only if click is in same buffer
2269 * Return TRUE if start_arrow() should be called for edit mode.
2272 do_mouse(oap, c, dir, count, fixindent)
2273 oparg_T *oap; /* operator argument, can be NULL */
2274 int c; /* K_LEFTMOUSE, etc */
2275 int dir; /* Direction to 'put' if necessary */
2276 long count;
2277 int fixindent; /* PUT_FIXINDENT if fixing indent necessary */
2279 static int do_always = FALSE; /* ignore 'mouse' setting next time */
2280 static int got_click = FALSE; /* got a click some time back */
2282 int which_button; /* MOUSE_LEFT, _MIDDLE or _RIGHT */
2283 int is_click; /* If FALSE it's a drag or release event */
2284 int is_drag; /* If TRUE it's a drag event */
2285 int jump_flags = 0; /* flags for jump_to_mouse() */
2286 pos_T start_visual;
2287 int moved; /* Has cursor moved? */
2288 int in_status_line; /* mouse in status line */
2289 #ifdef FEAT_VERTSPLIT
2290 int in_sep_line; /* mouse in vertical separator line */
2291 #endif
2292 int c1, c2;
2293 #if defined(FEAT_FOLDING)
2294 pos_T save_cursor;
2295 #endif
2296 win_T *old_curwin = curwin;
2297 #ifdef FEAT_VISUAL
2298 static pos_T orig_cursor;
2299 colnr_T leftcol, rightcol;
2300 pos_T end_visual;
2301 int diff;
2302 int old_active = VIsual_active;
2303 int old_mode = VIsual_mode;
2304 #endif
2305 int regname;
2307 #if defined(FEAT_FOLDING)
2308 save_cursor = curwin->w_cursor;
2309 #endif
2312 * When GUI is active, always recognize mouse events, otherwise:
2313 * - Ignore mouse event in normal mode if 'mouse' doesn't include 'n'.
2314 * - Ignore mouse event in visual mode if 'mouse' doesn't include 'v'.
2315 * - For command line and insert mode 'mouse' is checked before calling
2316 * do_mouse().
2318 if (do_always)
2319 do_always = FALSE;
2320 else
2321 #ifdef FEAT_GUI
2322 if (!gui.in_use)
2323 #endif
2325 #ifdef FEAT_VISUAL
2326 if (VIsual_active)
2328 if (!mouse_has(MOUSE_VISUAL))
2329 return FALSE;
2331 else
2332 #endif
2333 if (State == NORMAL && !mouse_has(MOUSE_NORMAL))
2334 return FALSE;
2337 which_button = get_mouse_button(KEY2TERMCAP1(c), &is_click, &is_drag);
2339 #ifdef FEAT_MOUSESHAPE
2340 /* May have stopped dragging the status or separator line. The pointer is
2341 * most likely still on the status or separator line. */
2342 if (!is_drag && drag_status_line)
2344 drag_status_line = FALSE;
2345 update_mouseshape(SHAPE_IDX_STATUS);
2347 # ifdef FEAT_VERTSPLIT
2348 if (!is_drag && drag_sep_line)
2350 drag_sep_line = FALSE;
2351 update_mouseshape(SHAPE_IDX_VSEP);
2353 # endif
2354 #endif
2357 * Ignore drag and release events if we didn't get a click.
2359 if (is_click)
2360 got_click = TRUE;
2361 else
2363 if (!got_click) /* didn't get click, ignore */
2364 return FALSE;
2365 if (!is_drag) /* release, reset got_click */
2366 got_click = FALSE;
2369 #ifndef FEAT_VISUAL
2371 * ALT is only used for starging/extending Visual mode.
2373 if ((mod_mask & MOD_MASK_ALT))
2374 return FALSE;
2375 #endif
2378 * CTRL right mouse button does CTRL-T
2380 if (is_click && (mod_mask & MOD_MASK_CTRL) && which_button == MOUSE_RIGHT)
2382 if (State & INSERT)
2383 stuffcharReadbuff(Ctrl_O);
2384 if (count > 1)
2385 stuffnumReadbuff(count);
2386 stuffcharReadbuff(Ctrl_T);
2387 got_click = FALSE; /* ignore drag&release now */
2388 return FALSE;
2392 * CTRL only works with left mouse button
2394 if ((mod_mask & MOD_MASK_CTRL) && which_button != MOUSE_LEFT)
2395 return FALSE;
2398 * When a modifier is down, ignore drag and release events, as well as
2399 * multiple clicks and the middle mouse button.
2400 * Accept shift-leftmouse drags when 'mousemodel' is "popup.*".
2402 if ((mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT
2403 | MOD_MASK_META))
2404 && (!is_click
2405 || (mod_mask & MOD_MASK_MULTI_CLICK)
2406 || which_button == MOUSE_MIDDLE)
2407 && !((mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT))
2408 && mouse_model_popup()
2409 && which_button == MOUSE_LEFT)
2410 && !((mod_mask & MOD_MASK_ALT)
2411 && !mouse_model_popup()
2412 && which_button == MOUSE_RIGHT)
2414 return FALSE;
2417 * If the button press was used as the movement command for an operator
2418 * (eg "d<MOUSE>"), or it is the middle button that is held down, ignore
2419 * drag/release events.
2421 if (!is_click && which_button == MOUSE_MIDDLE)
2422 return FALSE;
2424 if (oap != NULL)
2425 regname = oap->regname;
2426 else
2427 regname = 0;
2430 * Middle mouse button does a 'put' of the selected text
2432 if (which_button == MOUSE_MIDDLE)
2434 if (State == NORMAL)
2437 * If an operator was pending, we don't know what the user wanted
2438 * to do. Go back to normal mode: Clear the operator and beep().
2440 if (oap != NULL && oap->op_type != OP_NOP)
2442 clearopbeep(oap);
2443 return FALSE;
2446 #ifdef FEAT_VISUAL
2448 * If visual was active, yank the highlighted text and put it
2449 * before the mouse pointer position.
2450 * In Select mode replace the highlighted text with the clipboard.
2452 if (VIsual_active)
2454 if (VIsual_select)
2456 stuffcharReadbuff(Ctrl_G);
2457 stuffReadbuff((char_u *)"\"+p");
2459 else
2461 stuffcharReadbuff('y');
2462 stuffcharReadbuff(K_MIDDLEMOUSE);
2464 do_always = TRUE; /* ignore 'mouse' setting next time */
2465 return FALSE;
2467 #endif
2469 * The rest is below jump_to_mouse()
2473 else if ((State & INSERT) == 0)
2474 return FALSE;
2477 * Middle click in insert mode doesn't move the mouse, just insert the
2478 * contents of a register. '.' register is special, can't insert that
2479 * with do_put().
2480 * Also paste at the cursor if the current mode isn't in 'mouse' (only
2481 * happens for the GUI).
2483 if ((State & INSERT) || !mouse_has(MOUSE_NORMAL))
2485 if (regname == '.')
2486 insert_reg(regname, TRUE);
2487 else
2489 #ifdef FEAT_CLIPBOARD
2490 if (clip_star.available && regname == 0)
2491 regname = '*';
2492 #endif
2493 if ((State & REPLACE_FLAG) && !yank_register_mline(regname))
2494 insert_reg(regname, TRUE);
2495 else
2497 do_put(regname, BACKWARD, 1L, fixindent | PUT_CURSEND);
2499 /* Repeat it with CTRL-R CTRL-O r or CTRL-R CTRL-P r */
2500 AppendCharToRedobuff(Ctrl_R);
2501 AppendCharToRedobuff(fixindent ? Ctrl_P : Ctrl_O);
2502 AppendCharToRedobuff(regname == 0 ? '"' : regname);
2505 return FALSE;
2509 /* When dragging or button-up stay in the same window. */
2510 if (!is_click)
2511 jump_flags |= MOUSE_FOCUS | MOUSE_DID_MOVE;
2513 start_visual.lnum = 0;
2515 #ifdef FEAT_WINDOWS
2516 /* Check for clicking in the tab page line. */
2517 if (mouse_row == 0 && firstwin->w_winrow > 0)
2519 if (is_drag)
2520 return FALSE;
2521 got_click = FALSE; /* ignore mouse-up and drag events */
2523 /* click in a tab selects that tab page */
2524 if (is_click
2525 # ifdef FEAT_CMDWIN
2526 && cmdwin_type == 0
2527 # endif
2528 && mouse_col < Columns)
2530 c1 = TabPageIdxs[mouse_col];
2531 if (c1 >= 0)
2533 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2535 /* double click opens new page */
2536 end_visual_mode();
2537 tabpage_new();
2538 tabpage_move(c1 == 0 ? 9999 : c1 - 1);
2540 else
2542 /* Go to specified tab page, or next one if not clicking
2543 * on a label. */
2544 goto_tabpage(c1);
2546 /* It's like clicking on the status line of a window. */
2547 if (curwin != old_curwin)
2548 end_visual_mode();
2551 else if (c1 < 0)
2553 tabpage_T *tp;
2555 /* Close the current or specified tab page. */
2556 if (c1 == -999)
2557 tp = curtab;
2558 else
2559 tp = find_tabpage(-c1);
2560 if (tp == curtab)
2562 if (first_tabpage->tp_next != NULL)
2563 tabpage_close(FALSE);
2565 else if (tp != NULL)
2566 tabpage_close_other(tp, FALSE);
2569 return TRUE;
2571 #endif
2574 * When 'mousemodel' is "popup" or "popup_setpos", translate mouse events:
2575 * right button up -> pop-up menu
2576 * shift-left button -> right button
2577 * alt-left button -> alt-right button
2579 if (mouse_model_popup())
2581 if (which_button == MOUSE_RIGHT
2582 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2585 * NOTE: Ignore right button down and drag mouse events.
2586 * Windows only shows the popup menu on the button up event.
2588 #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
2589 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2590 if (!is_click)
2591 return FALSE;
2592 #endif
2593 #if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN)
2594 if (is_click || is_drag)
2595 return FALSE;
2596 #endif
2597 #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
2598 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
2599 || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_PHOTON)
2600 if (gui.in_use)
2602 jump_flags = 0;
2603 if (STRCMP(p_mousem, "popup_setpos") == 0)
2605 /* First set the cursor position before showing the popup
2606 * menu. */
2607 #ifdef FEAT_VISUAL
2608 if (VIsual_active)
2610 pos_T m_pos;
2613 * set MOUSE_MAY_STOP_VIS if we are outside the
2614 * selection or the current window (might have false
2615 * negative here)
2617 if (mouse_row < W_WINROW(curwin)
2618 || mouse_row
2619 > (W_WINROW(curwin) + curwin->w_height))
2620 jump_flags = MOUSE_MAY_STOP_VIS;
2621 else if (get_fpos_of_mouse(&m_pos) != IN_BUFFER)
2622 jump_flags = MOUSE_MAY_STOP_VIS;
2623 else
2625 if ((lt(curwin->w_cursor, VIsual)
2626 && (lt(m_pos, curwin->w_cursor)
2627 || lt(VIsual, m_pos)))
2628 || (lt(VIsual, curwin->w_cursor)
2629 && (lt(m_pos, VIsual)
2630 || lt(curwin->w_cursor, m_pos))))
2632 jump_flags = MOUSE_MAY_STOP_VIS;
2634 else if (VIsual_mode == Ctrl_V)
2636 getvcols(curwin, &curwin->w_cursor, &VIsual,
2637 &leftcol, &rightcol);
2638 getvcol(curwin, &m_pos, NULL, &m_pos.col, NULL);
2639 if (m_pos.col < leftcol || m_pos.col > rightcol)
2640 jump_flags = MOUSE_MAY_STOP_VIS;
2644 else
2645 jump_flags = MOUSE_MAY_STOP_VIS;
2646 #endif
2648 if (jump_flags)
2650 jump_flags = jump_to_mouse(jump_flags, NULL, which_button);
2651 update_curbuf(
2652 #ifdef FEAT_VISUAL
2653 VIsual_active ? INVERTED :
2654 #endif
2655 VALID);
2656 setcursor();
2657 out_flush(); /* Update before showing popup menu */
2659 # ifdef FEAT_MENU
2660 gui_show_popupmenu();
2661 # endif
2662 return (jump_flags & CURSOR_MOVED) != 0;
2664 else
2665 return FALSE;
2666 #else
2667 return FALSE;
2668 #endif
2670 if (which_button == MOUSE_LEFT
2671 && (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT)))
2673 which_button = MOUSE_RIGHT;
2674 mod_mask &= ~MOD_MASK_SHIFT;
2678 #ifdef FEAT_VISUAL
2679 if ((State & (NORMAL | INSERT))
2680 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2682 if (which_button == MOUSE_LEFT)
2684 if (is_click)
2686 /* stop Visual mode for a left click in a window, but not when
2687 * on a status line */
2688 if (VIsual_active)
2689 jump_flags |= MOUSE_MAY_STOP_VIS;
2691 else if (mouse_has(MOUSE_VISUAL))
2692 jump_flags |= MOUSE_MAY_VIS;
2694 else if (which_button == MOUSE_RIGHT)
2696 if (is_click && VIsual_active)
2699 * Remember the start and end of visual before moving the
2700 * cursor.
2702 if (lt(curwin->w_cursor, VIsual))
2704 start_visual = curwin->w_cursor;
2705 end_visual = VIsual;
2707 else
2709 start_visual = VIsual;
2710 end_visual = curwin->w_cursor;
2713 jump_flags |= MOUSE_FOCUS;
2714 if (mouse_has(MOUSE_VISUAL))
2715 jump_flags |= MOUSE_MAY_VIS;
2718 #endif
2721 * If an operator is pending, ignore all drags and releases until the
2722 * next mouse click.
2724 if (!is_drag && oap != NULL && oap->op_type != OP_NOP)
2726 got_click = FALSE;
2727 oap->motion_type = MCHAR;
2730 /* When releasing the button let jump_to_mouse() know. */
2731 if (!is_click && !is_drag)
2732 jump_flags |= MOUSE_RELEASED;
2735 * JUMP!
2737 jump_flags = jump_to_mouse(jump_flags,
2738 oap == NULL ? NULL : &(oap->inclusive), which_button);
2739 moved = (jump_flags & CURSOR_MOVED);
2740 in_status_line = (jump_flags & IN_STATUS_LINE);
2741 #ifdef FEAT_VERTSPLIT
2742 in_sep_line = (jump_flags & IN_SEP_LINE);
2743 #endif
2745 #ifdef FEAT_NETBEANS_INTG
2746 if (usingNetbeans && isNetbeansBuffer(curbuf)
2747 && !(jump_flags & (IN_STATUS_LINE | IN_SEP_LINE)))
2749 int key = KEY2TERMCAP1(c);
2751 if (key == (int)KE_LEFTRELEASE || key == (int)KE_MIDDLERELEASE
2752 || key == (int)KE_RIGHTRELEASE)
2753 netbeans_button_release(which_button);
2755 #endif
2757 /* When jumping to another window, clear a pending operator. That's a bit
2758 * friendlier than beeping and not jumping to that window. */
2759 if (curwin != old_curwin && oap != NULL && oap->op_type != OP_NOP)
2760 clearop(oap);
2762 #ifdef FEAT_FOLDING
2763 if (mod_mask == 0
2764 && !is_drag
2765 && (jump_flags & (MOUSE_FOLD_CLOSE | MOUSE_FOLD_OPEN))
2766 && which_button == MOUSE_LEFT)
2768 /* open or close a fold at this line */
2769 if (jump_flags & MOUSE_FOLD_OPEN)
2770 openFold(curwin->w_cursor.lnum, 1L);
2771 else
2772 closeFold(curwin->w_cursor.lnum, 1L);
2773 /* don't move the cursor if still in the same window */
2774 if (curwin == old_curwin)
2775 curwin->w_cursor = save_cursor;
2777 #endif
2779 #if defined(FEAT_CLIPBOARD) && defined(FEAT_CMDWIN)
2780 if ((jump_flags & IN_OTHER_WIN) && !VIsual_active && clip_star.available)
2782 clip_modeless(which_button, is_click, is_drag);
2783 return FALSE;
2785 #endif
2787 #ifdef FEAT_VISUAL
2788 /* Set global flag that we are extending the Visual area with mouse
2789 * dragging; temporarily minimize 'scrolloff'. */
2790 if (VIsual_active && is_drag && p_so)
2792 /* In the very first line, allow scrolling one line */
2793 if (mouse_row == 0)
2794 mouse_dragging = 2;
2795 else
2796 mouse_dragging = 1;
2799 /* When dragging the mouse above the window, scroll down. */
2800 if (is_drag && mouse_row < 0 && !in_status_line)
2802 scroll_redraw(FALSE, 1L);
2803 mouse_row = 0;
2806 if (start_visual.lnum) /* right click in visual mode */
2808 /* When ALT is pressed make Visual mode blockwise. */
2809 if (mod_mask & MOD_MASK_ALT)
2810 VIsual_mode = Ctrl_V;
2813 * In Visual-block mode, divide the area in four, pick up the corner
2814 * that is in the quarter that the cursor is in.
2816 if (VIsual_mode == Ctrl_V)
2818 getvcols(curwin, &start_visual, &end_visual, &leftcol, &rightcol);
2819 if (curwin->w_curswant > (leftcol + rightcol) / 2)
2820 end_visual.col = leftcol;
2821 else
2822 end_visual.col = rightcol;
2823 if (curwin->w_cursor.lnum <
2824 (start_visual.lnum + end_visual.lnum) / 2)
2825 end_visual.lnum = end_visual.lnum;
2826 else
2827 end_visual.lnum = start_visual.lnum;
2829 /* move VIsual to the right column */
2830 start_visual = curwin->w_cursor; /* save the cursor pos */
2831 curwin->w_cursor = end_visual;
2832 coladvance(end_visual.col);
2833 VIsual = curwin->w_cursor;
2834 curwin->w_cursor = start_visual; /* restore the cursor */
2836 else
2839 * If the click is before the start of visual, change the start.
2840 * If the click is after the end of visual, change the end. If
2841 * the click is inside the visual, change the closest side.
2843 if (lt(curwin->w_cursor, start_visual))
2844 VIsual = end_visual;
2845 else if (lt(end_visual, curwin->w_cursor))
2846 VIsual = start_visual;
2847 else
2849 /* In the same line, compare column number */
2850 if (end_visual.lnum == start_visual.lnum)
2852 if (curwin->w_cursor.col - start_visual.col >
2853 end_visual.col - curwin->w_cursor.col)
2854 VIsual = start_visual;
2855 else
2856 VIsual = end_visual;
2859 /* In different lines, compare line number */
2860 else
2862 diff = (curwin->w_cursor.lnum - start_visual.lnum) -
2863 (end_visual.lnum - curwin->w_cursor.lnum);
2865 if (diff > 0) /* closest to end */
2866 VIsual = start_visual;
2867 else if (diff < 0) /* closest to start */
2868 VIsual = end_visual;
2869 else /* in the middle line */
2871 if (curwin->w_cursor.col <
2872 (start_visual.col + end_visual.col) / 2)
2873 VIsual = end_visual;
2874 else
2875 VIsual = start_visual;
2882 * If Visual mode started in insert mode, execute "CTRL-O"
2884 else if ((State & INSERT) && VIsual_active)
2885 stuffcharReadbuff(Ctrl_O);
2886 #endif
2889 * Middle mouse click: Put text before cursor.
2891 if (which_button == MOUSE_MIDDLE)
2893 #ifdef FEAT_CLIPBOARD
2894 if (clip_star.available && regname == 0)
2895 regname = '*';
2896 #endif
2897 if (yank_register_mline(regname))
2899 if (mouse_past_bottom)
2900 dir = FORWARD;
2902 else if (mouse_past_eol)
2903 dir = FORWARD;
2905 if (fixindent)
2907 c1 = (dir == BACKWARD) ? '[' : ']';
2908 c2 = 'p';
2910 else
2912 c1 = (dir == FORWARD) ? 'p' : 'P';
2913 c2 = NUL;
2915 prep_redo(regname, count, NUL, c1, NUL, c2, NUL);
2918 * Remember where the paste started, so in edit() Insstart can be set
2919 * to this position
2921 if (restart_edit != 0)
2922 where_paste_started = curwin->w_cursor;
2923 do_put(regname, dir, count, fixindent | PUT_CURSEND);
2926 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
2928 * Ctrl-Mouse click or double click in a quickfix window jumps to the
2929 * error under the mouse pointer.
2931 else if (((mod_mask & MOD_MASK_CTRL)
2932 || (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2933 && bt_quickfix(curbuf))
2935 if (State & INSERT)
2936 stuffcharReadbuff(Ctrl_O);
2937 if (curwin->w_llist_ref == NULL) /* quickfix window */
2938 stuffReadbuff((char_u *)":.cc\n");
2939 else /* location list window */
2940 stuffReadbuff((char_u *)":.ll\n");
2941 got_click = FALSE; /* ignore drag&release now */
2943 #endif
2946 * Ctrl-Mouse click (or double click in a help window) jumps to the tag
2947 * under the mouse pointer.
2949 else if ((mod_mask & MOD_MASK_CTRL) || (curbuf->b_help
2950 && (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK))
2952 if (State & INSERT)
2953 stuffcharReadbuff(Ctrl_O);
2954 stuffcharReadbuff(Ctrl_RSB);
2955 got_click = FALSE; /* ignore drag&release now */
2959 * Shift-Mouse click searches for the next occurrence of the word under
2960 * the mouse pointer
2962 else if ((mod_mask & MOD_MASK_SHIFT))
2964 if (State & INSERT
2965 #ifdef FEAT_VISUAL
2966 || (VIsual_active && VIsual_select)
2967 #endif
2969 stuffcharReadbuff(Ctrl_O);
2970 if (which_button == MOUSE_LEFT)
2971 stuffcharReadbuff('*');
2972 else /* MOUSE_RIGHT */
2973 stuffcharReadbuff('#');
2976 /* Handle double clicks, unless on status line */
2977 else if (in_status_line)
2979 #ifdef FEAT_MOUSESHAPE
2980 if ((is_drag || is_click) && !drag_status_line)
2982 drag_status_line = TRUE;
2983 update_mouseshape(-1);
2985 #endif
2987 #ifdef FEAT_VERTSPLIT
2988 else if (in_sep_line)
2990 # ifdef FEAT_MOUSESHAPE
2991 if ((is_drag || is_click) && !drag_sep_line)
2993 drag_sep_line = TRUE;
2994 update_mouseshape(-1);
2996 # endif
2998 #endif
2999 #ifdef FEAT_VISUAL
3000 else if ((mod_mask & MOD_MASK_MULTI_CLICK) && (State & (NORMAL | INSERT))
3001 && mouse_has(MOUSE_VISUAL))
3003 if (is_click || !VIsual_active)
3005 if (VIsual_active)
3006 orig_cursor = VIsual;
3007 else
3009 check_visual_highlight();
3010 VIsual = curwin->w_cursor;
3011 orig_cursor = VIsual;
3012 VIsual_active = TRUE;
3013 VIsual_reselect = TRUE;
3014 /* start Select mode if 'selectmode' contains "mouse" */
3015 may_start_select('o');
3016 setmouse();
3018 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
3020 /* Double click with ALT pressed makes it blockwise. */
3021 if (mod_mask & MOD_MASK_ALT)
3022 VIsual_mode = Ctrl_V;
3023 else
3024 VIsual_mode = 'v';
3026 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_3CLICK)
3027 VIsual_mode = 'V';
3028 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_4CLICK)
3029 VIsual_mode = Ctrl_V;
3030 #ifdef FEAT_CLIPBOARD
3031 /* Make sure the clipboard gets updated. Needed because start and
3032 * end may still be the same, and the selection needs to be owned */
3033 clip_star.vmode = NUL;
3034 #endif
3037 * A double click selects a word or a block.
3039 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
3041 pos_T *pos = NULL;
3042 int gc;
3044 if (is_click)
3046 /* If the character under the cursor (skipping white space) is
3047 * not a word character, try finding a match and select a (),
3048 * {}, [], #if/#endif, etc. block. */
3049 end_visual = curwin->w_cursor;
3050 while (gc = gchar_pos(&end_visual), vim_iswhite(gc))
3051 inc(&end_visual);
3052 if (oap != NULL)
3053 oap->motion_type = MCHAR;
3054 if (oap != NULL
3055 && VIsual_mode == 'v'
3056 && !vim_iswordc(gchar_pos(&end_visual))
3057 && equalpos(curwin->w_cursor, VIsual)
3058 && (pos = findmatch(oap, NUL)) != NULL)
3060 curwin->w_cursor = *pos;
3061 if (oap->motion_type == MLINE)
3062 VIsual_mode = 'V';
3063 else if (*p_sel == 'e')
3065 if (lt(curwin->w_cursor, VIsual))
3066 ++VIsual.col;
3067 else
3068 ++curwin->w_cursor.col;
3073 if (pos == NULL && (is_click || is_drag))
3075 /* When not found a match or when dragging: extend to include
3076 * a word. */
3077 if (lt(curwin->w_cursor, orig_cursor))
3079 find_start_of_word(&curwin->w_cursor);
3080 find_end_of_word(&VIsual);
3082 else
3084 find_start_of_word(&VIsual);
3085 if (*p_sel == 'e' && *ml_get_cursor() != NUL)
3086 #ifdef FEAT_MBYTE
3087 curwin->w_cursor.col +=
3088 (*mb_ptr2len)(ml_get_cursor());
3089 #else
3090 ++curwin->w_cursor.col;
3091 #endif
3092 find_end_of_word(&curwin->w_cursor);
3095 curwin->w_set_curswant = TRUE;
3097 if (is_click)
3098 redraw_curbuf_later(INVERTED); /* update the inversion */
3100 else if (VIsual_active && !old_active)
3102 if (mod_mask & MOD_MASK_ALT)
3103 VIsual_mode = Ctrl_V;
3104 else
3105 VIsual_mode = 'v';
3108 /* If Visual mode changed show it later. */
3109 if ((!VIsual_active && old_active && mode_displayed)
3110 || (VIsual_active && p_smd && msg_silent == 0
3111 && (!old_active || VIsual_mode != old_mode)))
3112 redraw_cmdline = TRUE;
3113 #endif
3115 return moved;
3118 #ifdef FEAT_VISUAL
3120 * Move "pos" back to the start of the word it's in.
3122 static void
3123 find_start_of_word(pos)
3124 pos_T *pos;
3126 char_u *line;
3127 int cclass;
3128 int col;
3130 line = ml_get(pos->lnum);
3131 cclass = get_mouse_class(line + pos->col);
3133 while (pos->col > 0)
3135 col = pos->col - 1;
3136 #ifdef FEAT_MBYTE
3137 col -= (*mb_head_off)(line, line + col);
3138 #endif
3139 if (get_mouse_class(line + col) != cclass)
3140 break;
3141 pos->col = col;
3146 * Move "pos" forward to the end of the word it's in.
3147 * When 'selection' is "exclusive", the position is just after the word.
3149 static void
3150 find_end_of_word(pos)
3151 pos_T *pos;
3153 char_u *line;
3154 int cclass;
3155 int col;
3157 line = ml_get(pos->lnum);
3158 if (*p_sel == 'e' && pos->col > 0)
3160 --pos->col;
3161 #ifdef FEAT_MBYTE
3162 pos->col -= (*mb_head_off)(line, line + pos->col);
3163 #endif
3165 cclass = get_mouse_class(line + pos->col);
3166 while (line[pos->col] != NUL)
3168 #ifdef FEAT_MBYTE
3169 col = pos->col + (*mb_ptr2len)(line + pos->col);
3170 #else
3171 col = pos->col + 1;
3172 #endif
3173 if (get_mouse_class(line + col) != cclass)
3175 if (*p_sel == 'e')
3176 pos->col = col;
3177 break;
3179 pos->col = col;
3184 * Get class of a character for selection: same class means same word.
3185 * 0: blank
3186 * 1: punctuation groups
3187 * 2: normal word character
3188 * >2: multi-byte word character.
3190 static int
3191 get_mouse_class(p)
3192 char_u *p;
3194 int c;
3196 #ifdef FEAT_MBYTE
3197 if (has_mbyte && MB_BYTE2LEN(p[0]) > 1)
3198 return mb_get_class(p);
3199 #endif
3201 c = *p;
3202 if (c == ' ' || c == '\t')
3203 return 0;
3205 if (vim_iswordc(c))
3206 return 2;
3209 * There are a few special cases where we want certain combinations of
3210 * characters to be considered as a single word. These are things like
3211 * "->", "/ *", "*=", "+=", "&=", "<=", ">=", "!=" etc. Otherwise, each
3212 * character is in it's own class.
3214 if (c != NUL && vim_strchr((char_u *)"-+*/%<>&|^!=", c) != NULL)
3215 return 1;
3216 return c;
3218 #endif /* FEAT_VISUAL */
3219 #endif /* FEAT_MOUSE */
3221 #if defined(FEAT_VISUAL) || defined(PROTO)
3223 * Check if highlighting for visual mode is possible, give a warning message
3224 * if not.
3226 void
3227 check_visual_highlight()
3229 static int did_check = FALSE;
3231 if (full_screen)
3233 if (!did_check && hl_attr(HLF_V) == 0)
3234 MSG(_("Warning: terminal cannot highlight"));
3235 did_check = TRUE;
3240 * End Visual mode.
3241 * This function should ALWAYS be called to end Visual mode, except from
3242 * do_pending_operator().
3244 void
3245 end_visual_mode()
3247 #ifdef FEAT_CLIPBOARD
3249 * If we are using the clipboard, then remember what was selected in case
3250 * we need to paste it somewhere while we still own the selection.
3251 * Only do this when the clipboard is already owned. Don't want to grab
3252 * the selection when hitting ESC.
3254 if (clip_star.available && clip_star.owned)
3255 clip_auto_select();
3256 #endif
3258 VIsual_active = FALSE;
3259 #ifdef FEAT_MOUSE
3260 setmouse();
3261 mouse_dragging = 0;
3262 #endif
3264 /* Save the current VIsual area for '< and '> marks, and "gv" */
3265 curbuf->b_visual.vi_mode = VIsual_mode;
3266 curbuf->b_visual.vi_start = VIsual;
3267 curbuf->b_visual.vi_end = curwin->w_cursor;
3268 curbuf->b_visual.vi_curswant = curwin->w_curswant;
3269 #ifdef FEAT_EVAL
3270 curbuf->b_visual_mode_eval = VIsual_mode;
3271 #endif
3272 #ifdef FEAT_VIRTUALEDIT
3273 if (!virtual_active())
3274 curwin->w_cursor.coladd = 0;
3275 #endif
3277 if (mode_displayed)
3278 clear_cmdline = TRUE; /* unshow visual mode later */
3279 #ifdef FEAT_CMDL_INFO
3280 else
3281 clear_showcmd();
3282 #endif
3284 adjust_cursor_eol();
3288 * Reset VIsual_active and VIsual_reselect.
3290 void
3291 reset_VIsual_and_resel()
3293 if (VIsual_active)
3295 end_visual_mode();
3296 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3298 VIsual_reselect = FALSE;
3302 * Reset VIsual_active and VIsual_reselect if it's set.
3304 void
3305 reset_VIsual()
3307 if (VIsual_active)
3309 end_visual_mode();
3310 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3311 VIsual_reselect = FALSE;
3314 #endif /* FEAT_VISUAL */
3316 #if defined(FEAT_BEVAL)
3317 static int find_is_eval_item __ARGS((char_u *ptr, int *colp, int *nbp, int dir));
3320 * Check for a balloon-eval special item to include when searching for an
3321 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
3322 * Returns TRUE if the character at "*ptr" should be included.
3323 * "dir" is FORWARD or BACKWARD, the direction of searching.
3324 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
3325 * "bnp" points to a counter for square brackets.
3327 static int
3328 find_is_eval_item(ptr, colp, bnp, dir)
3329 char_u *ptr;
3330 int *colp;
3331 int *bnp;
3332 int dir;
3334 /* Accept everything inside []. */
3335 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
3336 ++*bnp;
3337 if (*bnp > 0)
3339 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
3340 --*bnp;
3341 return TRUE;
3344 /* skip over "s.var" */
3345 if (*ptr == '.')
3346 return TRUE;
3348 /* two-character item: s->var */
3349 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
3350 && ptr[dir == BACKWARD ? -1 : 0] == '-')
3352 *colp += dir;
3353 return TRUE;
3355 return FALSE;
3357 #endif
3360 * Find the identifier under or to the right of the cursor.
3361 * "find_type" can have one of three values:
3362 * FIND_IDENT: find an identifier (keyword)
3363 * FIND_STRING: find any non-white string
3364 * FIND_IDENT + FIND_STRING: find any non-white string, identifier preferred.
3365 * FIND_EVAL: find text useful for C program debugging
3367 * There are three steps:
3368 * 1. Search forward for the start of an identifier/string. Doesn't move if
3369 * already on one.
3370 * 2. Search backward for the start of this identifier/string.
3371 * This doesn't match the real Vi but I like it a little better and it
3372 * shouldn't bother anyone.
3373 * 3. Search forward to the end of this identifier/string.
3374 * When FIND_IDENT isn't defined, we backup until a blank.
3376 * Returns the length of the string, or zero if no string is found.
3377 * If a string is found, a pointer to the string is put in "*string". This
3378 * string is not always NUL terminated.
3381 find_ident_under_cursor(string, find_type)
3382 char_u **string;
3383 int find_type;
3385 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
3386 curwin->w_cursor.col, string, find_type);
3390 * Like find_ident_under_cursor(), but for any window and any position.
3391 * However: Uses 'iskeyword' from the current window!.
3394 find_ident_at_pos(wp, lnum, startcol, string, find_type)
3395 win_T *wp;
3396 linenr_T lnum;
3397 colnr_T startcol;
3398 char_u **string;
3399 int find_type;
3401 char_u *ptr;
3402 int col = 0; /* init to shut up GCC */
3403 int i;
3404 #ifdef FEAT_MBYTE
3405 int this_class = 0;
3406 int prev_class;
3407 int prevcol;
3408 #endif
3409 #if defined(FEAT_BEVAL)
3410 int bn = 0; /* bracket nesting */
3411 #endif
3414 * if i == 0: try to find an identifier
3415 * if i == 1: try to find any non-white string
3417 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
3418 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
3421 * 1. skip to start of identifier/string
3423 col = startcol;
3424 #ifdef FEAT_MBYTE
3425 if (has_mbyte)
3427 while (ptr[col] != NUL)
3429 # if defined(FEAT_BEVAL)
3430 /* Stop at a ']' to evaluate "a[x]". */
3431 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3432 break;
3433 # endif
3434 this_class = mb_get_class(ptr + col);
3435 if (this_class != 0 && (i == 1 || this_class != 1))
3436 break;
3437 col += (*mb_ptr2len)(ptr + col);
3440 else
3441 #endif
3442 while (ptr[col] != NUL
3443 && (i == 0 ? !vim_iswordc(ptr[col]) : vim_iswhite(ptr[col]))
3444 # if defined(FEAT_BEVAL)
3445 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
3446 # endif
3448 ++col;
3450 #if defined(FEAT_BEVAL)
3451 /* When starting on a ']' count it, so that we include the '['. */
3452 bn = ptr[col] == ']';
3453 #endif
3456 * 2. Back up to start of identifier/string.
3458 #ifdef FEAT_MBYTE
3459 if (has_mbyte)
3461 /* Remember class of character under cursor. */
3462 # if defined(FEAT_BEVAL)
3463 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3464 this_class = mb_get_class((char_u *)"a");
3465 else
3466 # endif
3467 this_class = mb_get_class(ptr + col);
3468 while (col > 0 && this_class != 0)
3470 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
3471 prev_class = mb_get_class(ptr + prevcol);
3472 if (this_class != prev_class
3473 && (i == 0
3474 || prev_class == 0
3475 || (find_type & FIND_IDENT))
3476 # if defined(FEAT_BEVAL)
3477 && (!(find_type & FIND_EVAL)
3478 || prevcol == 0
3479 || !find_is_eval_item(ptr + prevcol, &prevcol,
3480 &bn, BACKWARD))
3481 # endif
3483 break;
3484 col = prevcol;
3487 /* If we don't want just any old string, or we've found an
3488 * identifier, stop searching. */
3489 if (this_class > 2)
3490 this_class = 2;
3491 if (!(find_type & FIND_STRING) || this_class == 2)
3492 break;
3494 else
3495 #endif
3497 while (col > 0
3498 && ((i == 0
3499 ? vim_iswordc(ptr[col - 1])
3500 : (!vim_iswhite(ptr[col - 1])
3501 && (!(find_type & FIND_IDENT)
3502 || !vim_iswordc(ptr[col - 1]))))
3503 #if defined(FEAT_BEVAL)
3504 || ((find_type & FIND_EVAL)
3505 && col > 1
3506 && find_is_eval_item(ptr + col - 1, &col,
3507 &bn, BACKWARD))
3508 #endif
3510 --col;
3512 /* If we don't want just any old string, or we've found an
3513 * identifier, stop searching. */
3514 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
3515 break;
3519 if (ptr[col] == NUL || (i == 0 && (
3520 #ifdef FEAT_MBYTE
3521 has_mbyte ? this_class != 2 :
3522 #endif
3523 !vim_iswordc(ptr[col]))))
3526 * didn't find an identifier or string
3528 if (find_type & FIND_STRING)
3529 EMSG(_("E348: No string under cursor"));
3530 else
3531 EMSG(_(e_noident));
3532 return 0;
3534 ptr += col;
3535 *string = ptr;
3538 * 3. Find the end if the identifier/string.
3540 #if defined(FEAT_BEVAL)
3541 bn = 0;
3542 startcol -= col;
3543 #endif
3544 col = 0;
3545 #ifdef FEAT_MBYTE
3546 if (has_mbyte)
3548 /* Search for point of changing multibyte character class. */
3549 this_class = mb_get_class(ptr);
3550 while (ptr[col] != NUL
3551 && ((i == 0 ? mb_get_class(ptr + col) == this_class
3552 : mb_get_class(ptr + col) != 0)
3553 # if defined(FEAT_BEVAL)
3554 || ((find_type & FIND_EVAL)
3555 && col <= (int)startcol
3556 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3557 # endif
3559 col += (*mb_ptr2len)(ptr + col);
3561 else
3562 #endif
3563 while ((i == 0 ? vim_iswordc(ptr[col])
3564 : (ptr[col] != NUL && !vim_iswhite(ptr[col])))
3565 # if defined(FEAT_BEVAL)
3566 || ((find_type & FIND_EVAL)
3567 && col <= (int)startcol
3568 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3569 # endif
3572 ++col;
3575 return col;
3579 * Prepare for redo of a normal command.
3581 static void
3582 prep_redo_cmd(cap)
3583 cmdarg_T *cap;
3585 prep_redo(cap->oap->regname, cap->count0,
3586 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
3590 * Prepare for redo of any command.
3591 * Note that only the last argument can be a multi-byte char.
3593 static void
3594 prep_redo(regname, num, cmd1, cmd2, cmd3, cmd4, cmd5)
3595 int regname;
3596 long num;
3597 int cmd1;
3598 int cmd2;
3599 int cmd3;
3600 int cmd4;
3601 int cmd5;
3603 ResetRedobuff();
3604 if (regname != 0) /* yank from specified buffer */
3606 AppendCharToRedobuff('"');
3607 AppendCharToRedobuff(regname);
3609 if (num)
3610 AppendNumberToRedobuff(num);
3612 if (cmd1 != NUL)
3613 AppendCharToRedobuff(cmd1);
3614 if (cmd2 != NUL)
3615 AppendCharToRedobuff(cmd2);
3616 if (cmd3 != NUL)
3617 AppendCharToRedobuff(cmd3);
3618 if (cmd4 != NUL)
3619 AppendCharToRedobuff(cmd4);
3620 if (cmd5 != NUL)
3621 AppendCharToRedobuff(cmd5);
3625 * check for operator active and clear it
3627 * return TRUE if operator was active
3629 static int
3630 checkclearop(oap)
3631 oparg_T *oap;
3633 if (oap->op_type == OP_NOP)
3634 return FALSE;
3635 clearopbeep(oap);
3636 return TRUE;
3640 * Check for operator or Visual active. Clear active operator.
3642 * Return TRUE if operator or Visual was active.
3644 static int
3645 checkclearopq(oap)
3646 oparg_T *oap;
3648 if (oap->op_type == OP_NOP
3649 #ifdef FEAT_VISUAL
3650 && !VIsual_active
3651 #endif
3653 return FALSE;
3654 clearopbeep(oap);
3655 return TRUE;
3658 static void
3659 clearop(oap)
3660 oparg_T *oap;
3662 oap->op_type = OP_NOP;
3663 oap->regname = 0;
3664 oap->motion_force = NUL;
3665 oap->use_reg_one = FALSE;
3668 static void
3669 clearopbeep(oap)
3670 oparg_T *oap;
3672 clearop(oap);
3673 beep_flush();
3676 #ifdef FEAT_VISUAL
3678 * Remove the shift modifier from a special key.
3680 static void
3681 unshift_special(cap)
3682 cmdarg_T *cap;
3684 switch (cap->cmdchar)
3686 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
3687 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
3688 case K_S_UP: cap->cmdchar = K_UP; break;
3689 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
3690 case K_S_HOME: cap->cmdchar = K_HOME; break;
3691 case K_S_END: cap->cmdchar = K_END; break;
3693 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
3695 #endif
3697 #if defined(FEAT_CMDL_INFO) || defined(PROTO)
3699 * Routines for displaying a partly typed command
3702 #ifdef FEAT_VISUAL /* need room for size of Visual area */
3703 # define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
3704 #else
3705 # define SHOWCMD_BUFLEN SHOWCMD_COLS + 1
3706 #endif
3707 static char_u showcmd_buf[SHOWCMD_BUFLEN];
3708 static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; /* For push_showcmd() */
3709 static int showcmd_is_clear = TRUE;
3710 static int showcmd_visual = FALSE;
3712 static void display_showcmd __ARGS((void));
3714 void
3715 clear_showcmd()
3717 if (!p_sc)
3718 return;
3720 #ifdef FEAT_VISUAL
3721 if (VIsual_active && !char_avail())
3723 int i = lt(VIsual, curwin->w_cursor);
3724 long lines;
3725 colnr_T leftcol, rightcol;
3726 linenr_T top, bot;
3728 /* Show the size of the Visual area. */
3729 if (i)
3731 top = VIsual.lnum;
3732 bot = curwin->w_cursor.lnum;
3734 else
3736 top = curwin->w_cursor.lnum;
3737 bot = VIsual.lnum;
3739 # ifdef FEAT_FOLDING
3740 /* Include closed folds as a whole. */
3741 hasFolding(top, &top, NULL);
3742 hasFolding(bot, NULL, &bot);
3743 # endif
3744 lines = bot - top + 1;
3746 if (VIsual_mode == Ctrl_V)
3748 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
3749 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
3750 (long)(rightcol - leftcol + 1));
3752 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
3753 sprintf((char *)showcmd_buf, "%ld", lines);
3754 else
3755 sprintf((char *)showcmd_buf, "%ld", (long)(i
3756 ? curwin->w_cursor.col - VIsual.col
3757 : VIsual.col - curwin->w_cursor.col) + (*p_sel != 'e'));
3758 showcmd_buf[SHOWCMD_COLS] = NUL; /* truncate */
3759 showcmd_visual = TRUE;
3761 else
3762 #endif
3764 showcmd_buf[0] = NUL;
3765 showcmd_visual = FALSE;
3767 /* Don't actually display something if there is nothing to clear. */
3768 if (showcmd_is_clear)
3769 return;
3772 display_showcmd();
3776 * Add 'c' to string of shown command chars.
3777 * Return TRUE if output has been written (and setcursor() has been called).
3780 add_to_showcmd(c)
3781 int c;
3783 char_u *p;
3784 int old_len;
3785 int extra_len;
3786 int overflow;
3787 #if defined(FEAT_MOUSE)
3788 int i;
3789 static int ignore[] =
3791 # ifdef FEAT_GUI
3792 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
3793 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
3794 # endif
3795 K_IGNORE,
3796 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE,
3797 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
3798 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
3799 K_MOUSEDOWN, K_MOUSEUP,
3800 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
3801 K_CURSORHOLD,
3804 #endif
3806 if (!p_sc || msg_silent != 0)
3807 return FALSE;
3809 if (showcmd_visual)
3811 showcmd_buf[0] = NUL;
3812 showcmd_visual = FALSE;
3815 #if defined(FEAT_MOUSE)
3816 /* Ignore keys that are scrollbar updates and mouse clicks */
3817 if (IS_SPECIAL(c))
3818 for (i = 0; ignore[i] != 0; ++i)
3819 if (ignore[i] == c)
3820 return FALSE;
3821 #endif
3823 p = transchar(c);
3824 old_len = (int)STRLEN(showcmd_buf);
3825 extra_len = (int)STRLEN(p);
3826 overflow = old_len + extra_len - SHOWCMD_COLS;
3827 if (overflow > 0)
3828 mch_memmove(showcmd_buf, showcmd_buf + overflow,
3829 old_len - overflow + 1);
3830 STRCAT(showcmd_buf, p);
3832 if (char_avail())
3833 return FALSE;
3835 display_showcmd();
3837 return TRUE;
3840 void
3841 add_to_showcmd_c(c)
3842 int c;
3844 if (!add_to_showcmd(c))
3845 setcursor();
3849 * Delete 'len' characters from the end of the shown command.
3851 static void
3852 del_from_showcmd(len)
3853 int len;
3855 int old_len;
3857 if (!p_sc)
3858 return;
3860 old_len = (int)STRLEN(showcmd_buf);
3861 if (len > old_len)
3862 len = old_len;
3863 showcmd_buf[old_len - len] = NUL;
3865 if (!char_avail())
3866 display_showcmd();
3870 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
3871 * something and there is a partial mapping.
3873 void
3874 push_showcmd()
3876 if (p_sc)
3877 STRCPY(old_showcmd_buf, showcmd_buf);
3880 void
3881 pop_showcmd()
3883 if (!p_sc)
3884 return;
3886 STRCPY(showcmd_buf, old_showcmd_buf);
3888 display_showcmd();
3891 static void
3892 display_showcmd()
3894 int len;
3896 cursor_off();
3898 len = (int)STRLEN(showcmd_buf);
3899 if (len == 0)
3900 showcmd_is_clear = TRUE;
3901 else
3903 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
3904 showcmd_is_clear = FALSE;
3908 * clear the rest of an old message by outputting up to SHOWCMD_COLS
3909 * spaces
3911 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
3913 setcursor(); /* put cursor back where it belongs */
3915 #endif
3917 #ifdef FEAT_SCROLLBIND
3919 * When "check" is FALSE, prepare for commands that scroll the window.
3920 * When "check" is TRUE, take care of scroll-binding after the window has
3921 * scrolled. Called from normal_cmd() and edit().
3923 void
3924 do_check_scrollbind(check)
3925 int check;
3927 static win_T *old_curwin = NULL;
3928 static linenr_T old_topline = 0;
3929 #ifdef FEAT_DIFF
3930 static int old_topfill = 0;
3931 #endif
3932 static buf_T *old_buf = NULL;
3933 static colnr_T old_leftcol = 0;
3935 if (check && curwin->w_p_scb)
3937 /* If a ":syncbind" command was just used, don't scroll, only reset
3938 * the values. */
3939 if (did_syncbind)
3940 did_syncbind = FALSE;
3941 else if (curwin == old_curwin)
3944 * Synchronize other windows, as necessary according to
3945 * 'scrollbind'. Don't do this after an ":edit" command, except
3946 * when 'diff' is set.
3948 if ((curwin->w_buffer == old_buf
3949 #ifdef FEAT_DIFF
3950 || curwin->w_p_diff
3951 #endif
3953 && (curwin->w_topline != old_topline
3954 #ifdef FEAT_DIFF
3955 || curwin->w_topfill != old_topfill
3956 #endif
3957 || curwin->w_leftcol != old_leftcol))
3959 check_scrollbind(curwin->w_topline - old_topline,
3960 (long)(curwin->w_leftcol - old_leftcol));
3963 else if (vim_strchr(p_sbo, 'j')) /* jump flag set in 'scrollopt' */
3966 * When switching between windows, make sure that the relative
3967 * vertical offset is valid for the new window. The relative
3968 * offset is invalid whenever another 'scrollbind' window has
3969 * scrolled to a point that would force the current window to
3970 * scroll past the beginning or end of its buffer. When the
3971 * resync is performed, some of the other 'scrollbind' windows may
3972 * need to jump so that the current window's relative position is
3973 * visible on-screen.
3975 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
3977 curwin->w_scbind_pos = curwin->w_topline;
3980 old_curwin = curwin;
3981 old_topline = curwin->w_topline;
3982 #ifdef FEAT_DIFF
3983 old_topfill = curwin->w_topfill;
3984 #endif
3985 old_buf = curwin->w_buffer;
3986 old_leftcol = curwin->w_leftcol;
3990 * Synchronize any windows that have "scrollbind" set, based on the
3991 * number of rows by which the current window has changed
3992 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
3994 void
3995 check_scrollbind(topline_diff, leftcol_diff)
3996 linenr_T topline_diff;
3997 long leftcol_diff;
3999 int want_ver;
4000 int want_hor;
4001 win_T *old_curwin = curwin;
4002 buf_T *old_curbuf = curbuf;
4003 #ifdef FEAT_VISUAL
4004 int old_VIsual_select = VIsual_select;
4005 int old_VIsual_active = VIsual_active;
4006 #endif
4007 colnr_T tgt_leftcol = curwin->w_leftcol;
4008 long topline;
4009 long y;
4012 * check 'scrollopt' string for vertical and horizontal scroll options
4014 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
4015 #ifdef FEAT_DIFF
4016 want_ver |= old_curwin->w_p_diff;
4017 #endif
4018 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
4021 * loop through the scrollbound windows and scroll accordingly
4023 #ifdef FEAT_VISUAL
4024 VIsual_select = VIsual_active = 0;
4025 #endif
4026 for (curwin = firstwin; curwin; curwin = curwin->w_next)
4028 curbuf = curwin->w_buffer;
4029 /* skip original window and windows with 'noscrollbind' */
4030 if (curwin != old_curwin && curwin->w_p_scb)
4033 * do the vertical scroll
4035 if (want_ver)
4037 #ifdef FEAT_DIFF
4038 if (old_curwin->w_p_diff && curwin->w_p_diff)
4040 diff_set_topline(old_curwin, curwin);
4042 else
4043 #endif
4045 curwin->w_scbind_pos += topline_diff;
4046 topline = curwin->w_scbind_pos;
4047 if (topline > curbuf->b_ml.ml_line_count)
4048 topline = curbuf->b_ml.ml_line_count;
4049 if (topline < 1)
4050 topline = 1;
4052 y = topline - curwin->w_topline;
4053 if (y > 0)
4054 scrollup(y, FALSE);
4055 else
4056 scrolldown(-y, FALSE);
4059 redraw_later(VALID);
4060 cursor_correct();
4061 #ifdef FEAT_WINDOWS
4062 curwin->w_redr_status = TRUE;
4063 #endif
4067 * do the horizontal scroll
4069 if (want_hor && curwin->w_leftcol != tgt_leftcol)
4071 curwin->w_leftcol = tgt_leftcol;
4072 leftcol_changed();
4078 * reset current-window
4080 #ifdef FEAT_VISUAL
4081 VIsual_select = old_VIsual_select;
4082 VIsual_active = old_VIsual_active;
4083 #endif
4084 curwin = old_curwin;
4085 curbuf = old_curbuf;
4087 #endif /* #ifdef FEAT_SCROLLBIND */
4090 * Command character that's ignored.
4091 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
4092 * xon/xoff
4094 static void
4095 nv_ignore(cap)
4096 cmdarg_T *cap;
4098 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
4102 * Command character that doesn't do anything, but unlike nv_ignore() does
4103 * start edit(). Used for "startinsert" executed while starting up.
4105 /*ARGSUSED */
4106 static void
4107 nv_nop(cap)
4108 cmdarg_T *cap;
4113 * Command character doesn't exist.
4115 static void
4116 nv_error(cap)
4117 cmdarg_T *cap;
4119 clearopbeep(cap->oap);
4123 * <Help> and <F1> commands.
4125 static void
4126 nv_help(cap)
4127 cmdarg_T *cap;
4129 if (!checkclearopq(cap->oap))
4130 ex_help(NULL);
4134 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
4136 static void
4137 nv_addsub(cap)
4138 cmdarg_T *cap;
4140 if (!checkclearopq(cap->oap)
4141 && do_addsub((int)cap->cmdchar, cap->count1) == OK)
4142 prep_redo_cmd(cap);
4146 * CTRL-F, CTRL-B, etc: Scroll page up or down.
4148 static void
4149 nv_page(cap)
4150 cmdarg_T *cap;
4152 if (!checkclearop(cap->oap))
4154 #ifdef FEAT_WINDOWS
4155 if (mod_mask & MOD_MASK_CTRL)
4157 /* <C-PageUp>: tab page back; <C-PageDown>: tab page forward */
4158 if (cap->arg == BACKWARD)
4159 goto_tabpage(-(int)cap->count1);
4160 else
4161 goto_tabpage((int)cap->count0);
4163 else
4164 #endif
4165 (void)onepage(cap->arg, cap->count1);
4170 * Implementation of "gd" and "gD" command.
4172 static void
4173 nv_gd(oap, nchar, thisblock)
4174 oparg_T *oap;
4175 int nchar;
4176 int thisblock; /* 1 for "1gd" and "1gD" */
4178 int len;
4179 char_u *ptr;
4181 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
4182 || find_decl(ptr, len, nchar == 'd', thisblock, 0) == FAIL)
4183 clearopbeep(oap);
4184 #ifdef FEAT_FOLDING
4185 else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
4186 foldOpenCursor();
4187 #endif
4191 * Search for variable declaration of "ptr[len]".
4192 * When "locally" is TRUE in the current function ("gd"), otherwise in the
4193 * current file ("gD").
4194 * When "thisblock" is TRUE check the {} block scope.
4195 * Return FAIL when not found.
4198 find_decl(ptr, len, locally, thisblock, searchflags)
4199 char_u *ptr;
4200 int len;
4201 int locally;
4202 int thisblock;
4203 int searchflags; /* flags passed to searchit() */
4205 char_u *pat;
4206 pos_T old_pos;
4207 pos_T par_pos;
4208 pos_T found_pos;
4209 int t;
4210 int save_p_ws;
4211 int save_p_scs;
4212 int retval = OK;
4213 int incll;
4215 if ((pat = alloc(len + 7)) == NULL)
4216 return FAIL;
4218 /* Put "\V" before the pattern to avoid that the special meaning of "."
4219 * and "~" causes trouble. */
4220 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
4221 len, ptr);
4222 old_pos = curwin->w_cursor;
4223 save_p_ws = p_ws;
4224 save_p_scs = p_scs;
4225 p_ws = FALSE; /* don't wrap around end of file now */
4226 p_scs = FALSE; /* don't switch ignorecase off now */
4229 * With "gD" go to line 1.
4230 * With "gd" Search back for the start of the current function, then go
4231 * back until a blank line. If this fails go to line 1.
4233 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
4235 setpcmark(); /* Set in findpar() otherwise */
4236 curwin->w_cursor.lnum = 1;
4237 par_pos = curwin->w_cursor;
4239 else
4241 par_pos = curwin->w_cursor;
4242 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
4243 --curwin->w_cursor.lnum;
4245 curwin->w_cursor.col = 0;
4247 /* Search forward for the identifier, ignore comment lines. */
4248 clearpos(&found_pos);
4249 for (;;)
4251 t = searchit(curwin, curbuf, &curwin->w_cursor, FORWARD,
4252 pat, 1L, searchflags, RE_LAST, (linenr_T)0, NULL);
4253 if (curwin->w_cursor.lnum >= old_pos.lnum)
4254 t = FAIL; /* match after start is failure too */
4256 if (thisblock && t != FAIL)
4258 pos_T *pos;
4260 /* Check that the block the match is in doesn't end before the
4261 * position where we started the search from. */
4262 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
4263 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
4264 && pos->lnum < old_pos.lnum)
4265 continue;
4268 if (t == FAIL)
4270 /* If we previously found a valid position, use it. */
4271 if (found_pos.lnum != 0)
4273 curwin->w_cursor = found_pos;
4274 t = OK;
4276 break;
4278 #ifdef FEAT_COMMENTS
4279 if (get_leader_len(ml_get_curline(), NULL, FALSE) > 0)
4281 /* Ignore this line, continue at start of next line. */
4282 ++curwin->w_cursor.lnum;
4283 curwin->w_cursor.col = 0;
4284 continue;
4286 #endif
4287 if (!locally) /* global search: use first match found */
4288 break;
4289 if (curwin->w_cursor.lnum >= par_pos.lnum)
4291 /* If we previously found a valid position, use it. */
4292 if (found_pos.lnum != 0)
4293 curwin->w_cursor = found_pos;
4294 break;
4297 /* For finding a local variable and the match is before the "{" search
4298 * to find a later match. For K&R style function declarations this
4299 * skips the function header without types. */
4300 found_pos = curwin->w_cursor;
4303 if (t == FAIL)
4305 retval = FAIL;
4306 curwin->w_cursor = old_pos;
4308 else
4310 curwin->w_set_curswant = TRUE;
4311 /* "n" searches forward now */
4312 reset_search_dir();
4315 vim_free(pat);
4316 p_ws = save_p_ws;
4317 p_scs = save_p_scs;
4319 return retval;
4323 * Move 'dist' lines in direction 'dir', counting lines by *screen*
4324 * lines rather than lines in the file.
4325 * 'dist' must be positive.
4327 * Return OK if able to move cursor, FAIL otherwise.
4329 static int
4330 nv_screengo(oap, dir, dist)
4331 oparg_T *oap;
4332 int dir;
4333 long dist;
4335 int linelen = linetabsize(ml_get_curline());
4336 int retval = OK;
4337 int atend = FALSE;
4338 int n;
4339 int col_off1; /* margin offset for first screen line */
4340 int col_off2; /* margin offset for wrapped screen line */
4341 int width1; /* text width for first screen line */
4342 int width2; /* test width for wrapped screen line */
4344 oap->motion_type = MCHAR;
4345 oap->inclusive = FALSE;
4347 col_off1 = curwin_col_off();
4348 col_off2 = col_off1 - curwin_col_off2();
4349 width1 = W_WIDTH(curwin) - col_off1;
4350 width2 = W_WIDTH(curwin) - col_off2;
4352 #ifdef FEAT_VERTSPLIT
4353 if (curwin->w_width != 0)
4355 #endif
4357 * Instead of sticking at the last character of the buffer line we
4358 * try to stick in the last column of the screen.
4360 if (curwin->w_curswant == MAXCOL)
4362 atend = TRUE;
4363 validate_virtcol();
4364 if (width1 <= 0)
4365 curwin->w_curswant = 0;
4366 else
4368 curwin->w_curswant = width1 - 1;
4369 if (curwin->w_virtcol > curwin->w_curswant)
4370 curwin->w_curswant += ((curwin->w_virtcol
4371 - curwin->w_curswant - 1) / width2 + 1) * width2;
4374 else
4376 if (linelen > width1)
4377 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4378 else
4379 n = width1;
4380 if (curwin->w_curswant > (colnr_T)n + 1)
4381 curwin->w_curswant -= ((curwin->w_curswant - n) / width2 + 1)
4382 * width2;
4385 while (dist--)
4387 if (dir == BACKWARD)
4389 if ((long)curwin->w_curswant >= width2)
4390 /* move back within line */
4391 curwin->w_curswant -= width2;
4392 else
4394 /* to previous line */
4395 if (curwin->w_cursor.lnum == 1)
4397 retval = FAIL;
4398 break;
4400 --curwin->w_cursor.lnum;
4401 #ifdef FEAT_FOLDING
4402 /* Move to the start of a closed fold. Don't do that when
4403 * 'foldopen' contains "all": it will open in a moment. */
4404 if (!(fdo_flags & FDO_ALL))
4405 (void)hasFolding(curwin->w_cursor.lnum,
4406 &curwin->w_cursor.lnum, NULL);
4407 #endif
4408 linelen = linetabsize(ml_get_curline());
4409 if (linelen > width1)
4410 curwin->w_curswant += (((linelen - width1 - 1) / width2)
4411 + 1) * width2;
4414 else /* dir == FORWARD */
4416 if (linelen > width1)
4417 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4418 else
4419 n = width1;
4420 if (curwin->w_curswant + width2 < (colnr_T)n)
4421 /* move forward within line */
4422 curwin->w_curswant += width2;
4423 else
4425 /* to next line */
4426 #ifdef FEAT_FOLDING
4427 /* Move to the end of a closed fold. */
4428 (void)hasFolding(curwin->w_cursor.lnum, NULL,
4429 &curwin->w_cursor.lnum);
4430 #endif
4431 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4433 retval = FAIL;
4434 break;
4436 curwin->w_cursor.lnum++;
4437 curwin->w_curswant %= width2;
4441 #ifdef FEAT_VERTSPLIT
4443 #endif
4445 coladvance(curwin->w_curswant);
4447 #if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
4448 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
4451 * Check for landing on a character that got split at the end of the
4452 * last line. We want to advance a screenline, not end up in the same
4453 * screenline or move two screenlines.
4455 validate_virtcol();
4456 if (curwin->w_virtcol > curwin->w_curswant
4457 && (curwin->w_curswant < (colnr_T)width1
4458 ? (curwin->w_curswant > (colnr_T)width1 / 2)
4459 : ((curwin->w_curswant - width1) % width2
4460 > (colnr_T)width2 / 2)))
4461 --curwin->w_cursor.col;
4463 #endif
4465 if (atend)
4466 curwin->w_curswant = MAXCOL; /* stick in the last column */
4468 return retval;
4471 #ifdef FEAT_MOUSE
4473 * Mouse scroll wheel: Default action is to scroll three lines, or one page
4474 * when Shift or Ctrl is used.
4475 * K_MOUSEUP (cap->arg == TRUE) or K_MOUSEDOWN (cap->arg == FALSE)
4477 static void
4478 nv_mousescroll(cap)
4479 cmdarg_T *cap;
4481 # if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4482 win_T *old_curwin = curwin;
4484 /* Currently we only get the mouse coordinates in the GUI. */
4485 if (gui.in_use && mouse_row >= 0 && mouse_col >= 0)
4487 int row, col;
4489 row = mouse_row;
4490 col = mouse_col;
4492 /* find the window at the pointer coordinates */
4493 curwin = mouse_find_win(&row, &col);
4494 curbuf = curwin->w_buffer;
4496 # endif
4498 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4500 (void)onepage(cap->arg ? FORWARD : BACKWARD, 1L);
4502 else
4504 cap->count1 = 3;
4505 cap->count0 = 3;
4506 nv_scroll_line(cap);
4509 # if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4510 curwin->w_redr_status = TRUE;
4512 curwin = old_curwin;
4513 curbuf = curwin->w_buffer;
4514 # endif
4518 * Mouse clicks and drags.
4520 static void
4521 nv_mouse(cap)
4522 cmdarg_T *cap;
4524 (void)do_mouse(cap->oap, cap->cmdchar, BACKWARD, cap->count1, 0);
4526 #endif
4529 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
4530 * cap->arg must be TRUE for CTRL-E.
4532 static void
4533 nv_scroll_line(cap)
4534 cmdarg_T *cap;
4536 if (!checkclearop(cap->oap))
4537 scroll_redraw(cap->arg, cap->count1);
4541 * Scroll "count" lines up or down, and redraw.
4543 void
4544 scroll_redraw(up, count)
4545 int up;
4546 long count;
4548 linenr_T prev_topline = curwin->w_topline;
4549 #ifdef FEAT_DIFF
4550 int prev_topfill = curwin->w_topfill;
4551 #endif
4552 linenr_T prev_lnum = curwin->w_cursor.lnum;
4554 if (up)
4555 scrollup(count, TRUE);
4556 else
4557 scrolldown(count, TRUE);
4558 if (p_so)
4560 /* Adjust the cursor position for 'scrolloff'. Mark w_topline as
4561 * valid, otherwise the screen jumps back at the end of the file. */
4562 cursor_correct();
4563 check_cursor_moved(curwin);
4564 curwin->w_valid |= VALID_TOPLINE;
4566 /* If moved back to where we were, at least move the cursor, otherwise
4567 * we get stuck at one position. Don't move the cursor up if the
4568 * first line of the buffer is already on the screen */
4569 while (curwin->w_topline == prev_topline
4570 #ifdef FEAT_DIFF
4571 && curwin->w_topfill == prev_topfill
4572 #endif
4575 if (up)
4577 if (curwin->w_cursor.lnum > prev_lnum
4578 || cursor_down(1L, FALSE) == FAIL)
4579 break;
4581 else
4583 if (curwin->w_cursor.lnum < prev_lnum
4584 || prev_topline == 1L
4585 || cursor_up(1L, FALSE) == FAIL)
4586 break;
4588 /* Mark w_topline as valid, otherwise the screen jumps back at the
4589 * end of the file. */
4590 check_cursor_moved(curwin);
4591 curwin->w_valid |= VALID_TOPLINE;
4594 if (curwin->w_cursor.lnum != prev_lnum)
4595 coladvance(curwin->w_curswant);
4596 redraw_later(VALID);
4600 * Commands that start with "z".
4602 static void
4603 nv_zet(cap)
4604 cmdarg_T *cap;
4606 long n;
4607 colnr_T col;
4608 int nchar = cap->nchar;
4609 #ifdef FEAT_FOLDING
4610 long old_fdl = curwin->w_p_fdl;
4611 int old_fen = curwin->w_p_fen;
4612 #endif
4613 #ifdef FEAT_SPELL
4614 int undo = FALSE;
4615 #endif
4617 if (VIM_ISDIGIT(nchar))
4620 * "z123{nchar}": edit the count before obtaining {nchar}
4622 if (checkclearop(cap->oap))
4623 return;
4624 n = nchar - '0';
4625 for (;;)
4627 #ifdef USE_ON_FLY_SCROLL
4628 dont_scroll = TRUE; /* disallow scrolling here */
4629 #endif
4630 ++no_mapping;
4631 ++allow_keys; /* no mapping for nchar, but allow key codes */
4632 nchar = plain_vgetc();
4633 #ifdef FEAT_LANGMAP
4634 LANGMAP_ADJUST(nchar, TRUE);
4635 #endif
4636 --no_mapping;
4637 --allow_keys;
4638 #ifdef FEAT_CMDL_INFO
4639 (void)add_to_showcmd(nchar);
4640 #endif
4641 if (nchar == K_DEL || nchar == K_KDEL)
4642 n /= 10;
4643 else if (VIM_ISDIGIT(nchar))
4644 n = n * 10 + (nchar - '0');
4645 else if (nchar == CAR)
4647 #ifdef FEAT_GUI
4648 need_mouse_correct = TRUE;
4649 #endif
4650 win_setheight((int)n);
4651 break;
4653 else if (nchar == 'l'
4654 || nchar == 'h'
4655 || nchar == K_LEFT
4656 || nchar == K_RIGHT)
4658 cap->count1 = n ? n * cap->count1 : cap->count1;
4659 goto dozet;
4661 else
4663 clearopbeep(cap->oap);
4664 break;
4667 cap->oap->op_type = OP_NOP;
4668 return;
4671 dozet:
4672 if (
4673 #ifdef FEAT_FOLDING
4674 /* "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
4675 * and "zC" only in Visual mode. "zj" and "zk" are motion
4676 * commands. */
4677 cap->nchar != 'f' && cap->nchar != 'F'
4678 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
4679 && cap->nchar != 'j' && cap->nchar != 'k'
4681 #endif
4682 checkclearop(cap->oap))
4683 return;
4686 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
4687 * If line number given, set cursor.
4689 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
4690 && cap->count0
4691 && cap->count0 != curwin->w_cursor.lnum)
4693 setpcmark();
4694 if (cap->count0 > curbuf->b_ml.ml_line_count)
4695 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4696 else
4697 curwin->w_cursor.lnum = cap->count0;
4698 check_cursor_col();
4701 switch (nchar)
4703 /* "z+", "z<CR>" and "zt": put cursor at top of screen */
4704 case '+':
4705 if (cap->count0 == 0)
4707 /* No count given: put cursor at the line below screen */
4708 validate_botline(); /* make sure w_botline is valid */
4709 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
4710 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4711 else
4712 curwin->w_cursor.lnum = curwin->w_botline;
4714 /* FALLTHROUGH */
4715 case NL:
4716 case CAR:
4717 case K_KENTER:
4718 beginline(BL_WHITE | BL_FIX);
4719 /* FALLTHROUGH */
4721 case 't': scroll_cursor_top(0, TRUE);
4722 redraw_later(VALID);
4723 break;
4725 /* "z." and "zz": put cursor in middle of screen */
4726 case '.': beginline(BL_WHITE | BL_FIX);
4727 /* FALLTHROUGH */
4729 case 'z': scroll_cursor_halfway(TRUE);
4730 redraw_later(VALID);
4731 break;
4733 /* "z^", "z-" and "zb": put cursor at bottom of screen */
4734 case '^': /* Strange Vi behavior: <count>z^ finds line at top of window
4735 * when <count> is at bottom of window, and puts that one at
4736 * bottom of window. */
4737 if (cap->count0 != 0)
4739 scroll_cursor_bot(0, TRUE);
4740 curwin->w_cursor.lnum = curwin->w_topline;
4742 else if (curwin->w_topline == 1)
4743 curwin->w_cursor.lnum = 1;
4744 else
4745 curwin->w_cursor.lnum = curwin->w_topline - 1;
4746 /* FALLTHROUGH */
4747 case '-':
4748 beginline(BL_WHITE | BL_FIX);
4749 /* FALLTHROUGH */
4751 case 'b': scroll_cursor_bot(0, TRUE);
4752 redraw_later(VALID);
4753 break;
4755 /* "zH" - scroll screen right half-page */
4756 case 'H':
4757 cap->count1 *= W_WIDTH(curwin) / 2;
4758 /* FALLTHROUGH */
4760 /* "zh" - scroll screen to the right */
4761 case 'h':
4762 case K_LEFT:
4763 if (!curwin->w_p_wrap)
4765 if ((colnr_T)cap->count1 > curwin->w_leftcol)
4766 curwin->w_leftcol = 0;
4767 else
4768 curwin->w_leftcol -= (colnr_T)cap->count1;
4769 leftcol_changed();
4771 break;
4773 /* "zL" - scroll screen left half-page */
4774 case 'L': cap->count1 *= W_WIDTH(curwin) / 2;
4775 /* FALLTHROUGH */
4777 /* "zl" - scroll screen to the left */
4778 case 'l':
4779 case K_RIGHT:
4780 if (!curwin->w_p_wrap)
4782 /* scroll the window left */
4783 curwin->w_leftcol += (colnr_T)cap->count1;
4784 leftcol_changed();
4786 break;
4788 /* "zs" - scroll screen, cursor at the start */
4789 case 's': if (!curwin->w_p_wrap)
4791 #ifdef FEAT_FOLDING
4792 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4793 col = 0; /* like the cursor is in col 0 */
4794 else
4795 #endif
4796 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
4797 if ((long)col > p_siso)
4798 col -= p_siso;
4799 else
4800 col = 0;
4801 if (curwin->w_leftcol != col)
4803 curwin->w_leftcol = col;
4804 redraw_later(NOT_VALID);
4807 break;
4809 /* "ze" - scroll screen, cursor at the end */
4810 case 'e': if (!curwin->w_p_wrap)
4812 #ifdef FEAT_FOLDING
4813 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4814 col = 0; /* like the cursor is in col 0 */
4815 else
4816 #endif
4817 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
4818 n = W_WIDTH(curwin) - curwin_col_off();
4819 if ((long)col + p_siso < n)
4820 col = 0;
4821 else
4822 col = col + p_siso - n + 1;
4823 if (curwin->w_leftcol != col)
4825 curwin->w_leftcol = col;
4826 redraw_later(NOT_VALID);
4829 break;
4831 #ifdef FEAT_FOLDING
4832 /* "zF": create fold command */
4833 /* "zf": create fold operator */
4834 case 'F':
4835 case 'f': if (foldManualAllowed(TRUE))
4837 cap->nchar = 'f';
4838 nv_operator(cap);
4839 curwin->w_p_fen = TRUE;
4841 /* "zF" is like "zfzf" */
4842 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
4844 nv_operator(cap);
4845 finish_op = TRUE;
4848 else
4849 clearopbeep(cap->oap);
4850 break;
4852 /* "zd": delete fold at cursor */
4853 /* "zD": delete fold at cursor recursively */
4854 case 'd':
4855 case 'D': if (foldManualAllowed(FALSE))
4857 if (VIsual_active)
4858 nv_operator(cap);
4859 else
4860 deleteFold(curwin->w_cursor.lnum,
4861 curwin->w_cursor.lnum, nchar == 'D', FALSE);
4863 break;
4865 /* "zE": erease all folds */
4866 case 'E': if (foldmethodIsManual(curwin))
4868 clearFolding(curwin);
4869 changed_window_setting();
4871 else if (foldmethodIsMarker(curwin))
4872 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
4873 TRUE, FALSE);
4874 else
4875 EMSG(_("E352: Cannot erase folds with current 'foldmethod'"));
4876 break;
4878 /* "zn": fold none: reset 'foldenable' */
4879 case 'n': curwin->w_p_fen = FALSE;
4880 break;
4882 /* "zN": fold Normal: set 'foldenable' */
4883 case 'N': curwin->w_p_fen = TRUE;
4884 break;
4886 /* "zi": invert folding: toggle 'foldenable' */
4887 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
4888 break;
4890 /* "za": open closed fold or close open fold at cursor */
4891 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4892 openFold(curwin->w_cursor.lnum, cap->count1);
4893 else
4895 closeFold(curwin->w_cursor.lnum, cap->count1);
4896 curwin->w_p_fen = TRUE;
4898 break;
4900 /* "zA": open fold at cursor recursively */
4901 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4902 openFoldRecurse(curwin->w_cursor.lnum);
4903 else
4905 closeFoldRecurse(curwin->w_cursor.lnum);
4906 curwin->w_p_fen = TRUE;
4908 break;
4910 /* "zo": open fold at cursor or Visual area */
4911 case 'o': if (VIsual_active)
4912 nv_operator(cap);
4913 else
4914 openFold(curwin->w_cursor.lnum, cap->count1);
4915 break;
4917 /* "zO": open fold recursively */
4918 case 'O': if (VIsual_active)
4919 nv_operator(cap);
4920 else
4921 openFoldRecurse(curwin->w_cursor.lnum);
4922 break;
4924 /* "zc": close fold at cursor or Visual area */
4925 case 'c': if (VIsual_active)
4926 nv_operator(cap);
4927 else
4928 closeFold(curwin->w_cursor.lnum, cap->count1);
4929 curwin->w_p_fen = TRUE;
4930 break;
4932 /* "zC": close fold recursively */
4933 case 'C': if (VIsual_active)
4934 nv_operator(cap);
4935 else
4936 closeFoldRecurse(curwin->w_cursor.lnum);
4937 curwin->w_p_fen = TRUE;
4938 break;
4940 /* "zv": open folds at the cursor */
4941 case 'v': foldOpenCursor();
4942 break;
4944 /* "zx": re-apply 'foldlevel' and open folds at the cursor */
4945 case 'x': curwin->w_p_fen = TRUE;
4946 newFoldLevel(); /* update right now */
4947 foldOpenCursor();
4948 break;
4950 /* "zX": undo manual opens/closes, re-apply 'foldlevel' */
4951 case 'X': curwin->w_p_fen = TRUE;
4952 old_fdl = -1; /* force an update */
4953 break;
4955 /* "zm": fold more */
4956 case 'm': if (curwin->w_p_fdl > 0)
4957 --curwin->w_p_fdl;
4958 old_fdl = -1; /* force an update */
4959 curwin->w_p_fen = TRUE;
4960 break;
4962 /* "zM": close all folds */
4963 case 'M': curwin->w_p_fdl = 0;
4964 old_fdl = -1; /* force an update */
4965 curwin->w_p_fen = TRUE;
4966 break;
4968 /* "zr": reduce folding */
4969 case 'r': ++curwin->w_p_fdl;
4970 break;
4972 /* "zR": open all folds */
4973 case 'R': curwin->w_p_fdl = getDeepestNesting();
4974 old_fdl = -1; /* force an update */
4975 break;
4977 case 'j': /* "zj" move to next fold downwards */
4978 case 'k': /* "zk" move to next fold upwards */
4979 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
4980 cap->count1) == FAIL)
4981 clearopbeep(cap->oap);
4982 break;
4984 #endif /* FEAT_FOLDING */
4986 #ifdef FEAT_SPELL
4987 case 'u': /* "zug" and "zuw": undo "zg" and "zw" */
4988 ++no_mapping;
4989 ++allow_keys; /* no mapping for nchar, but allow key codes */
4990 nchar = plain_vgetc();
4991 #ifdef FEAT_LANGMAP
4992 LANGMAP_ADJUST(nchar, TRUE);
4993 #endif
4994 --no_mapping;
4995 --allow_keys;
4996 #ifdef FEAT_CMDL_INFO
4997 (void)add_to_showcmd(nchar);
4998 #endif
4999 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
5001 clearopbeep(cap->oap);
5002 break;
5004 undo = TRUE;
5005 /*FALLTHROUGH*/
5007 case 'g': /* "zg": add good word to word list */
5008 case 'w': /* "zw": add wrong word to word list */
5009 case 'G': /* "zG": add good word to temp word list */
5010 case 'W': /* "zW": add wrong word to temp word list */
5012 char_u *ptr = NULL;
5013 int len;
5015 if (checkclearop(cap->oap))
5016 break;
5017 # ifdef FEAT_VISUAL
5018 if (VIsual_active && get_visual_text(cap, &ptr, &len)
5019 == FAIL)
5020 return;
5021 # endif
5022 if (ptr == NULL)
5024 pos_T pos = curwin->w_cursor;
5026 /* Find bad word under the cursor. */
5027 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
5028 if (len != 0 && curwin->w_cursor.col <= pos.col)
5029 ptr = ml_get_pos(&curwin->w_cursor);
5030 curwin->w_cursor = pos;
5033 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
5034 FIND_IDENT)) == 0)
5035 return;
5036 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W',
5037 (nchar == 'G' || nchar == 'W')
5038 ? 0 : (int)cap->count1,
5039 undo);
5041 break;
5043 case '=': /* "z=": suggestions for a badly spelled word */
5044 if (!checkclearop(cap->oap))
5045 spell_suggest((int)cap->count0);
5046 break;
5047 #endif
5049 default: clearopbeep(cap->oap);
5052 #ifdef FEAT_FOLDING
5053 /* Redraw when 'foldenable' changed */
5054 if (old_fen != curwin->w_p_fen)
5056 # ifdef FEAT_DIFF
5057 win_T *wp;
5059 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
5061 /* Adjust 'foldenable' in diff-synced windows. */
5062 FOR_ALL_WINDOWS(wp)
5064 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
5066 wp->w_p_fen = curwin->w_p_fen;
5067 changed_window_setting_win(wp);
5071 # endif
5072 changed_window_setting();
5075 /* Redraw when 'foldlevel' changed. */
5076 if (old_fdl != curwin->w_p_fdl)
5077 newFoldLevel();
5078 #endif
5081 #ifdef FEAT_GUI
5083 * Vertical scrollbar movement.
5085 static void
5086 nv_ver_scrollbar(cap)
5087 cmdarg_T *cap;
5089 if (cap->oap->op_type != OP_NOP)
5090 clearopbeep(cap->oap);
5092 /* Even if an operator was pending, we still want to scroll */
5093 gui_do_scroll();
5097 * Horizontal scrollbar movement.
5099 static void
5100 nv_hor_scrollbar(cap)
5101 cmdarg_T *cap;
5103 if (cap->oap->op_type != OP_NOP)
5104 clearopbeep(cap->oap);
5106 /* Even if an operator was pending, we still want to scroll */
5107 gui_do_horiz_scroll();
5109 #endif
5111 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
5113 * Click in GUI tab.
5115 static void
5116 nv_tabline(cap)
5117 cmdarg_T *cap;
5119 if (cap->oap->op_type != OP_NOP)
5120 clearopbeep(cap->oap);
5122 /* Even if an operator was pending, we still want to jump tabs. */
5123 goto_tabpage(current_tab);
5127 * Selected item in tab line menu.
5129 static void
5130 nv_tabmenu(cap)
5131 cmdarg_T *cap;
5133 if (cap->oap->op_type != OP_NOP)
5134 clearopbeep(cap->oap);
5136 /* Even if an operator was pending, we still want to jump tabs. */
5137 handle_tabmenu();
5141 * Handle selecting an item of the GUI tab line menu.
5142 * Used in Normal and Insert mode.
5144 void
5145 handle_tabmenu()
5147 switch (current_tabmenu)
5149 case TABLINE_MENU_CLOSE:
5150 if (current_tab == 0)
5151 do_cmdline_cmd((char_u *)"tabclose");
5152 else
5154 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
5155 current_tab);
5156 do_cmdline_cmd(IObuff);
5158 break;
5160 case TABLINE_MENU_NEW:
5161 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
5162 current_tab > 0 ? current_tab - 1 : 999);
5163 do_cmdline_cmd(IObuff);
5164 break;
5166 case TABLINE_MENU_OPEN:
5167 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
5168 current_tab > 0 ? current_tab - 1 : 999);
5169 do_cmdline_cmd(IObuff);
5170 break;
5173 #endif
5176 * "Q" command.
5178 static void
5179 nv_exmode(cap)
5180 cmdarg_T *cap;
5183 * Ignore 'Q' in Visual mode, just give a beep.
5185 #ifdef FEAT_VISUAL
5186 if (VIsual_active)
5187 vim_beep();
5188 else
5189 #endif
5190 if (!checkclearop(cap->oap))
5191 do_exmode(FALSE);
5195 * Handle a ":" command.
5197 static void
5198 nv_colon(cap)
5199 cmdarg_T *cap;
5201 int old_p_im;
5203 #ifdef FEAT_VISUAL
5204 if (VIsual_active)
5205 nv_operator(cap);
5206 else
5207 #endif
5209 if (cap->oap->op_type != OP_NOP)
5211 /* Using ":" as a movement is characterwise exclusive. */
5212 cap->oap->motion_type = MCHAR;
5213 cap->oap->inclusive = FALSE;
5215 else if (cap->count0)
5217 /* translate "count:" into ":.,.+(count - 1)" */
5218 stuffcharReadbuff('.');
5219 if (cap->count0 > 1)
5221 stuffReadbuff((char_u *)",.+");
5222 stuffnumReadbuff((long)cap->count0 - 1L);
5226 /* When typing, don't type below an old message */
5227 if (KeyTyped)
5228 compute_cmdrow();
5230 old_p_im = p_im;
5232 /* get a command line and execute it */
5233 do_cmdline(NULL, getexline, NULL,
5234 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
5236 /* If 'insertmode' changed, enter or exit Insert mode */
5237 if (p_im != old_p_im)
5239 if (p_im)
5240 restart_edit = 'i';
5241 else
5242 restart_edit = 0;
5245 /* The start of the operator may have become invalid by the Ex
5246 * command. */
5247 if (cap->oap->op_type != OP_NOP
5248 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
5249 || cap->oap->start.col >
5250 STRLEN(ml_get(cap->oap->start.lnum))))
5251 clearopbeep(cap->oap);
5256 * Handle CTRL-G command.
5258 static void
5259 nv_ctrlg(cap)
5260 cmdarg_T *cap;
5262 #ifdef FEAT_VISUAL
5263 if (VIsual_active) /* toggle Selection/Visual mode */
5265 VIsual_select = !VIsual_select;
5266 showmode();
5268 else
5269 #endif
5270 if (!checkclearop(cap->oap))
5271 /* print full name if count given or :cd used */
5272 fileinfo((int)cap->count0, FALSE, TRUE);
5276 * Handle CTRL-H <Backspace> command.
5278 static void
5279 nv_ctrlh(cap)
5280 cmdarg_T *cap;
5282 #ifdef FEAT_VISUAL
5283 if (VIsual_active && VIsual_select)
5285 cap->cmdchar = 'x'; /* BS key behaves like 'x' in Select mode */
5286 v_visop(cap);
5288 else
5289 #endif
5290 nv_left(cap);
5294 * CTRL-L: clear screen and redraw.
5296 static void
5297 nv_clear(cap)
5298 cmdarg_T *cap;
5300 if (!checkclearop(cap->oap))
5302 #if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
5304 * Right now, the BeBox doesn't seem to have an easy way to detect
5305 * window resizing, so we cheat and make the user detect it
5306 * manually with CTRL-L instead
5308 ui_get_shellsize();
5309 #endif
5310 #ifdef FEAT_SYN_HL
5311 /* Clear all syntax states to force resyncing. */
5312 syn_stack_free_all(curbuf);
5313 #endif
5314 redraw_later(CLEAR);
5319 * CTRL-O: In Select mode: switch to Visual mode for one command.
5320 * Otherwise: Go to older pcmark.
5322 static void
5323 nv_ctrlo(cap)
5324 cmdarg_T *cap;
5326 #ifdef FEAT_VISUAL
5327 if (VIsual_active && VIsual_select)
5329 VIsual_select = FALSE;
5330 showmode();
5331 restart_VIsual_select = 2; /* restart Select mode later */
5333 else
5334 #endif
5336 cap->count1 = -cap->count1;
5337 nv_pcmark(cap);
5342 * CTRL-^ command, short for ":e #"
5344 static void
5345 nv_hat(cap)
5346 cmdarg_T *cap;
5348 if (!checkclearopq(cap->oap))
5349 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
5350 GETF_SETMARK|GETF_ALT, FALSE);
5354 * "Z" commands.
5356 static void
5357 nv_Zet(cap)
5358 cmdarg_T *cap;
5360 if (!checkclearopq(cap->oap))
5362 switch (cap->nchar)
5364 /* "ZZ": equivalent to ":x". */
5365 case 'Z': do_cmdline_cmd((char_u *)"x");
5366 break;
5368 /* "ZQ": equivalent to ":q!" (Elvis compatible). */
5369 case 'Q': do_cmdline_cmd((char_u *)"q!");
5370 break;
5372 default: clearopbeep(cap->oap);
5377 #if defined(FEAT_WINDOWS) || defined(PROTO)
5379 * Call nv_ident() as if "c1" was used, with "c2" as next character.
5381 void
5382 do_nv_ident(c1, c2)
5383 int c1;
5384 int c2;
5386 oparg_T oa;
5387 cmdarg_T ca;
5389 clear_oparg(&oa);
5390 vim_memset(&ca, 0, sizeof(ca));
5391 ca.oap = &oa;
5392 ca.cmdchar = c1;
5393 ca.nchar = c2;
5394 nv_ident(&ca);
5396 #endif
5399 * Handle the commands that use the word under the cursor.
5400 * [g] CTRL-] :ta to current identifier
5401 * [g] 'K' run program for current identifier
5402 * [g] '*' / to current identifier or string
5403 * [g] '#' ? to current identifier or string
5404 * g ']' :tselect for current identifier
5406 static void
5407 nv_ident(cap)
5408 cmdarg_T *cap;
5410 char_u *ptr = NULL;
5411 char_u *buf;
5412 char_u *p;
5413 char_u *kp; /* value of 'keywordprg' */
5414 int kp_help; /* 'keywordprg' is ":help" */
5415 int n = 0; /* init for GCC */
5416 int cmdchar;
5417 int g_cmd; /* "g" command */
5418 char_u *aux_ptr;
5419 int isman;
5420 int isman_s;
5422 if (cap->cmdchar == 'g') /* "g*", "g#", "g]" and "gCTRL-]" */
5424 cmdchar = cap->nchar;
5425 g_cmd = TRUE;
5427 else
5429 cmdchar = cap->cmdchar;
5430 g_cmd = FALSE;
5433 if (cmdchar == POUND) /* the pound sign, '#' for English keyboards */
5434 cmdchar = '#';
5437 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
5439 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
5441 #ifdef FEAT_VISUAL
5442 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
5443 return;
5444 #endif
5445 if (checkclearopq(cap->oap))
5446 return;
5449 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
5450 (cmdchar == '*' || cmdchar == '#')
5451 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
5453 clearop(cap->oap);
5454 return;
5457 /* Allocate buffer to put the command in. Inserting backslashes can
5458 * double the length of the word. p_kp / curbuf->b_p_kp could be added
5459 * and some numbers. */
5460 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
5461 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
5462 || STRCMP(kp, ":help") == 0);
5463 buf = alloc((unsigned)(n * 2 + 30 + STRLEN(kp)));
5464 if (buf == NULL)
5465 return;
5466 buf[0] = NUL;
5468 switch (cmdchar)
5470 case '*':
5471 case '#':
5473 * Put cursor at start of word, makes search skip the word
5474 * under the cursor.
5475 * Call setpcmark() first, so "*``" puts the cursor back where
5476 * it was.
5478 setpcmark();
5479 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
5481 if (!g_cmd && vim_iswordp(ptr))
5482 STRCPY(buf, "\\<");
5483 no_smartcase = TRUE; /* don't use 'smartcase' now */
5484 break;
5486 case 'K':
5487 if (kp_help)
5488 STRCPY(buf, "he! ");
5489 else
5491 /* An external command will probably use an argument starting
5492 * with "-" as an option. To avoid trouble we skip the "-". */
5493 while (*ptr == '-' && n > 0)
5495 ++ptr;
5496 --n;
5498 if (n == 0)
5500 EMSG(_(e_noident)); /* found dashes only */
5501 vim_free(buf);
5502 return;
5505 /* When a count is given, turn it into a range. Is this
5506 * really what we want? */
5507 isman = (STRCMP(kp, "man") == 0);
5508 isman_s = (STRCMP(kp, "man -s") == 0);
5509 if (cap->count0 != 0 && !(isman || isman_s))
5510 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
5512 STRCAT(buf, "! ");
5513 if (cap->count0 == 0 && isman_s)
5514 STRCAT(buf, "man");
5515 else
5516 STRCAT(buf, kp);
5517 STRCAT(buf, " ");
5518 if (cap->count0 != 0 && (isman || isman_s))
5520 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
5521 STRCAT(buf, " ");
5524 break;
5526 case ']':
5527 #ifdef FEAT_CSCOPE
5528 if (p_cst)
5529 STRCPY(buf, "cstag ");
5530 else
5531 #endif
5532 STRCPY(buf, "ts ");
5533 break;
5535 default:
5536 if (curbuf->b_help)
5537 STRCPY(buf, "he! ");
5538 else if (g_cmd)
5539 STRCPY(buf, "tj ");
5540 else
5541 sprintf((char *)buf, "%ldta ", cap->count0);
5545 * Now grab the chars in the identifier
5547 if (cmdchar == 'K' && !kp_help)
5549 /* Escape the argument properly for a shell command */
5550 ptr = vim_strnsave(ptr, n);
5551 p = vim_strsave_shellescape(ptr, TRUE);
5552 vim_free(ptr);
5553 if (p == NULL)
5555 vim_free(buf);
5556 return;
5558 buf = (char_u *)vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
5559 if (buf == NULL)
5561 vim_free(buf);
5562 vim_free(p);
5563 return;
5565 STRCAT(buf, p);
5566 vim_free(p);
5568 else
5570 if (cmdchar == '*')
5571 aux_ptr = (char_u *)(p_magic ? "/.*~[^$\\" : "/^$\\");
5572 else if (cmdchar == '#')
5573 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
5574 else
5575 /* Don't escape spaces and Tabs in a tag with a backslash */
5576 aux_ptr = (char_u *)"\\|\"\n*?[";
5578 p = buf + STRLEN(buf);
5579 while (n-- > 0)
5581 /* put a backslash before \ and some others */
5582 if (vim_strchr(aux_ptr, *ptr) != NULL)
5583 *p++ = '\\';
5584 #ifdef FEAT_MBYTE
5585 /* When current byte is a part of multibyte character, copy all
5586 * bytes of that character. */
5587 if (has_mbyte)
5589 int i;
5590 int len = (*mb_ptr2len)(ptr) - 1;
5592 for (i = 0; i < len && n >= 1; ++i, --n)
5593 *p++ = *ptr++;
5595 #endif
5596 *p++ = *ptr++;
5598 *p = NUL;
5602 * Execute the command.
5604 if (cmdchar == '*' || cmdchar == '#')
5606 if (!g_cmd && (
5607 #ifdef FEAT_MBYTE
5608 has_mbyte ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr)) :
5609 #endif
5610 vim_iswordc(ptr[-1])))
5611 STRCAT(buf, "\\>");
5612 #ifdef FEAT_CMDHIST
5613 /* put pattern in search history */
5614 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
5615 #endif
5616 normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0);
5618 else
5619 do_cmdline_cmd(buf);
5621 vim_free(buf);
5624 #if defined(FEAT_VISUAL) || defined(PROTO)
5626 * Get visually selected text, within one line only.
5627 * Returns FAIL if more than one line selected.
5630 get_visual_text(cap, pp, lenp)
5631 cmdarg_T *cap;
5632 char_u **pp; /* return: start of selected text */
5633 int *lenp; /* return: length of selected text */
5635 if (VIsual_mode != 'V')
5636 unadjust_for_sel();
5637 if (VIsual.lnum != curwin->w_cursor.lnum)
5639 if (cap != NULL)
5640 clearopbeep(cap->oap);
5641 return FAIL;
5643 if (VIsual_mode == 'V')
5645 *pp = ml_get_curline();
5646 *lenp = (int)STRLEN(*pp);
5648 else
5650 if (lt(curwin->w_cursor, VIsual))
5652 *pp = ml_get_pos(&curwin->w_cursor);
5653 *lenp = VIsual.col - curwin->w_cursor.col + 1;
5655 else
5657 *pp = ml_get_pos(&VIsual);
5658 *lenp = curwin->w_cursor.col - VIsual.col + 1;
5660 #ifdef FEAT_MBYTE
5661 if (has_mbyte)
5662 /* Correct the length to include the whole last character. */
5663 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
5664 #endif
5666 reset_VIsual_and_resel();
5667 return OK;
5669 #endif
5672 * CTRL-T: backwards in tag stack
5674 static void
5675 nv_tagpop(cap)
5676 cmdarg_T *cap;
5678 if (!checkclearopq(cap->oap))
5679 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
5683 * Handle scrolling command 'H', 'L' and 'M'.
5685 static void
5686 nv_scroll(cap)
5687 cmdarg_T *cap;
5689 int used = 0;
5690 long n;
5691 #ifdef FEAT_FOLDING
5692 linenr_T lnum;
5693 #endif
5694 int half;
5696 cap->oap->motion_type = MLINE;
5697 setpcmark();
5699 if (cap->cmdchar == 'L')
5701 validate_botline(); /* make sure curwin->w_botline is valid */
5702 curwin->w_cursor.lnum = curwin->w_botline - 1;
5703 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
5704 curwin->w_cursor.lnum = 1;
5705 else
5707 #ifdef FEAT_FOLDING
5708 if (hasAnyFolding(curwin))
5710 /* Count a fold for one screen line. */
5711 for (n = cap->count1 - 1; n > 0
5712 && curwin->w_cursor.lnum > curwin->w_topline; --n)
5714 (void)hasFolding(curwin->w_cursor.lnum,
5715 &curwin->w_cursor.lnum, NULL);
5716 --curwin->w_cursor.lnum;
5719 else
5720 #endif
5721 curwin->w_cursor.lnum -= cap->count1 - 1;
5724 else
5726 if (cap->cmdchar == 'M')
5728 #ifdef FEAT_DIFF
5729 /* Don't count filler lines above the window. */
5730 used -= diff_check_fill(curwin, curwin->w_topline)
5731 - curwin->w_topfill;
5732 #endif
5733 validate_botline(); /* make sure w_empty_rows is valid */
5734 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
5735 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
5737 #ifdef FEAT_DIFF
5738 /* Count half he number of filler lines to be "below this
5739 * line" and half to be "above the next line". */
5740 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
5741 + n) / 2 >= half)
5743 --n;
5744 break;
5746 #endif
5747 used += plines(curwin->w_topline + n);
5748 if (used >= half)
5749 break;
5750 #ifdef FEAT_FOLDING
5751 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
5752 n = lnum - curwin->w_topline;
5753 #endif
5755 if (n > 0 && used > curwin->w_height)
5756 --n;
5758 else /* (cap->cmdchar == 'H') */
5760 n = cap->count1 - 1;
5761 #ifdef FEAT_FOLDING
5762 if (hasAnyFolding(curwin))
5764 /* Count a fold for one screen line. */
5765 lnum = curwin->w_topline;
5766 while (n-- > 0 && lnum < curwin->w_botline - 1)
5768 hasFolding(lnum, NULL, &lnum);
5769 ++lnum;
5771 n = lnum - curwin->w_topline;
5773 #endif
5775 curwin->w_cursor.lnum = curwin->w_topline + n;
5776 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5777 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5780 cursor_correct(); /* correct for 'so' */
5781 beginline(BL_SOL | BL_FIX);
5785 * Cursor right commands.
5787 static void
5788 nv_right(cap)
5789 cmdarg_T *cap;
5791 long n;
5792 #ifdef FEAT_VISUAL
5793 int PAST_LINE;
5794 #else
5795 # define PAST_LINE 0
5796 #endif
5798 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
5800 /* <C-Right> and <S-Right> move a word or WORD right */
5801 if (mod_mask & MOD_MASK_CTRL)
5802 cap->arg = TRUE;
5803 nv_wordcmd(cap);
5804 return;
5807 cap->oap->motion_type = MCHAR;
5808 cap->oap->inclusive = FALSE;
5809 #ifdef FEAT_VISUAL
5810 PAST_LINE = (VIsual_active && *p_sel != 'o');
5812 # ifdef FEAT_VIRTUALEDIT
5814 * In virtual mode, there's no such thing as "PAST_LINE", as lines are
5815 * (theoretically) infinitely long.
5817 if (virtual_active())
5818 PAST_LINE = 0;
5819 # endif
5820 #endif
5822 for (n = cap->count1; n > 0; --n)
5824 if ((!PAST_LINE && oneright() == FAIL)
5825 || (PAST_LINE && *ml_get_cursor() == NUL))
5828 * <Space> wraps to next line if 'whichwrap' has 's'.
5829 * 'l' wraps to next line if 'whichwrap' has 'l'.
5830 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
5832 if ( ((cap->cmdchar == ' '
5833 && vim_strchr(p_ww, 's') != NULL)
5834 || (cap->cmdchar == 'l'
5835 && vim_strchr(p_ww, 'l') != NULL)
5836 || (cap->cmdchar == K_RIGHT
5837 && vim_strchr(p_ww, '>') != NULL))
5838 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5840 /* When deleting we also count the NL as a character.
5841 * Set cap->oap->inclusive when last char in the line is
5842 * included, move to next line after that */
5843 if ( cap->oap->op_type != OP_NOP
5844 && !cap->oap->inclusive
5845 && !lineempty(curwin->w_cursor.lnum))
5846 cap->oap->inclusive = TRUE;
5847 else
5849 ++curwin->w_cursor.lnum;
5850 curwin->w_cursor.col = 0;
5851 #ifdef FEAT_VIRTUALEDIT
5852 curwin->w_cursor.coladd = 0;
5853 #endif
5854 curwin->w_set_curswant = TRUE;
5855 cap->oap->inclusive = FALSE;
5857 continue;
5859 if (cap->oap->op_type == OP_NOP)
5861 /* Only beep and flush if not moved at all */
5862 if (n == cap->count1)
5863 beep_flush();
5865 else
5867 if (!lineempty(curwin->w_cursor.lnum))
5868 cap->oap->inclusive = TRUE;
5870 break;
5872 #ifdef FEAT_VISUAL
5873 else if (PAST_LINE)
5875 curwin->w_set_curswant = TRUE;
5876 # ifdef FEAT_VIRTUALEDIT
5877 if (virtual_active())
5878 oneright();
5879 else
5880 # endif
5882 # ifdef FEAT_MBYTE
5883 if (has_mbyte)
5884 curwin->w_cursor.col +=
5885 (*mb_ptr2len)(ml_get_cursor());
5886 else
5887 # endif
5888 ++curwin->w_cursor.col;
5891 #endif
5893 #ifdef FEAT_FOLDING
5894 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
5895 && cap->oap->op_type == OP_NOP)
5896 foldOpenCursor();
5897 #endif
5901 * Cursor left commands.
5903 * Returns TRUE when operator end should not be adjusted.
5905 static void
5906 nv_left(cap)
5907 cmdarg_T *cap;
5909 long n;
5911 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
5913 /* <C-Left> and <S-Left> move a word or WORD left */
5914 if (mod_mask & MOD_MASK_CTRL)
5915 cap->arg = 1;
5916 nv_bck_word(cap);
5917 return;
5920 cap->oap->motion_type = MCHAR;
5921 cap->oap->inclusive = FALSE;
5922 for (n = cap->count1; n > 0; --n)
5924 if (oneleft() == FAIL)
5926 /* <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
5927 * 'h' wraps to previous line if 'whichwrap' has 'h'.
5928 * CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
5930 if ( (((cap->cmdchar == K_BS
5931 || cap->cmdchar == Ctrl_H)
5932 && vim_strchr(p_ww, 'b') != NULL)
5933 || (cap->cmdchar == 'h'
5934 && vim_strchr(p_ww, 'h') != NULL)
5935 || (cap->cmdchar == K_LEFT
5936 && vim_strchr(p_ww, '<') != NULL))
5937 && curwin->w_cursor.lnum > 1)
5939 --(curwin->w_cursor.lnum);
5940 coladvance((colnr_T)MAXCOL);
5941 curwin->w_set_curswant = TRUE;
5943 /* When the NL before the first char has to be deleted we
5944 * put the cursor on the NUL after the previous line.
5945 * This is a very special case, be careful!
5946 * Don't adjust op_end now, otherwise it won't work. */
5947 if ( (cap->oap->op_type == OP_DELETE
5948 || cap->oap->op_type == OP_CHANGE)
5949 && !lineempty(curwin->w_cursor.lnum))
5951 if (*ml_get_cursor() != NUL)
5952 ++curwin->w_cursor.col;
5953 cap->retval |= CA_NO_ADJ_OP_END;
5955 continue;
5957 /* Only beep and flush if not moved at all */
5958 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
5959 beep_flush();
5960 break;
5963 #ifdef FEAT_FOLDING
5964 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
5965 && cap->oap->op_type == OP_NOP)
5966 foldOpenCursor();
5967 #endif
5971 * Cursor up commands.
5972 * cap->arg is TRUE for "-": Move cursor to first non-blank.
5974 static void
5975 nv_up(cap)
5976 cmdarg_T *cap;
5978 if (mod_mask & MOD_MASK_SHIFT)
5980 /* <S-Up> is page up */
5981 cap->arg = BACKWARD;
5982 nv_page(cap);
5984 else
5986 cap->oap->motion_type = MLINE;
5987 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
5988 clearopbeep(cap->oap);
5989 else if (cap->arg)
5990 beginline(BL_WHITE | BL_FIX);
5995 * Cursor down commands.
5996 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
5998 static void
5999 nv_down(cap)
6000 cmdarg_T *cap;
6002 if (mod_mask & MOD_MASK_SHIFT)
6004 /* <S-Down> is page down */
6005 cap->arg = FORWARD;
6006 nv_page(cap);
6008 else
6009 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
6010 /* In a quickfix window a <CR> jumps to the error under the cursor. */
6011 if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
6012 if (curwin->w_llist_ref == NULL)
6013 do_cmdline_cmd((char_u *)".cc"); /* quickfix window */
6014 else
6015 do_cmdline_cmd((char_u *)".ll"); /* location list window */
6016 else
6017 #endif
6019 #ifdef FEAT_CMDWIN
6020 /* In the cmdline window a <CR> executes the command. */
6021 if (cmdwin_type != 0 && cap->cmdchar == CAR)
6022 cmdwin_result = CAR;
6023 else
6024 #endif
6026 cap->oap->motion_type = MLINE;
6027 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
6028 clearopbeep(cap->oap);
6029 else if (cap->arg)
6030 beginline(BL_WHITE | BL_FIX);
6035 #ifdef FEAT_SEARCHPATH
6037 * Grab the file name under the cursor and edit it.
6039 static void
6040 nv_gotofile(cap)
6041 cmdarg_T *cap;
6043 char_u *ptr;
6044 linenr_T lnum = -1;
6046 if (text_locked())
6048 clearopbeep(cap->oap);
6049 text_locked_msg();
6050 return;
6052 #ifdef FEAT_AUTOCMD
6053 if (curbuf_locked())
6055 clearop(cap->oap);
6056 return;
6058 #endif
6060 ptr = grab_file_name(cap->count1, &lnum);
6062 if (ptr != NULL)
6064 /* do autowrite if necessary */
6065 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !P_HID(curbuf))
6066 autowrite(curbuf, FALSE);
6067 setpcmark();
6068 (void)do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
6069 P_HID(curbuf) ? ECMD_HIDE : 0, curwin);
6070 if (cap->nchar == 'F' && lnum >= 0)
6072 curwin->w_cursor.lnum = lnum;
6073 check_cursor_lnum();
6074 beginline(BL_SOL | BL_FIX);
6076 vim_free(ptr);
6078 else
6079 clearop(cap->oap);
6081 #endif
6084 * <End> command: to end of current line or last line.
6086 static void
6087 nv_end(cap)
6088 cmdarg_T *cap;
6090 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) /* CTRL-END = goto last line */
6092 cap->arg = TRUE;
6093 nv_goto(cap);
6094 cap->count1 = 1; /* to end of current line */
6096 nv_dollar(cap);
6100 * Handle the "$" command.
6102 static void
6103 nv_dollar(cap)
6104 cmdarg_T *cap;
6106 cap->oap->motion_type = MCHAR;
6107 cap->oap->inclusive = TRUE;
6108 #ifdef FEAT_VIRTUALEDIT
6109 /* In virtual mode when off the edge of a line and an operator
6110 * is pending (whew!) keep the cursor where it is.
6111 * Otherwise, send it to the end of the line. */
6112 if (!virtual_active() || gchar_cursor() != NUL
6113 || cap->oap->op_type == OP_NOP)
6114 #endif
6115 curwin->w_curswant = MAXCOL; /* so we stay at the end */
6116 if (cursor_down((long)(cap->count1 - 1),
6117 cap->oap->op_type == OP_NOP) == FAIL)
6118 clearopbeep(cap->oap);
6119 #ifdef FEAT_FOLDING
6120 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6121 foldOpenCursor();
6122 #endif
6126 * Implementation of '?' and '/' commands.
6127 * If cap->arg is TRUE don't set PC mark.
6129 static void
6130 nv_search(cap)
6131 cmdarg_T *cap;
6133 oparg_T *oap = cap->oap;
6135 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
6137 /* Translate "g??" to "g?g?" */
6138 cap->cmdchar = 'g';
6139 cap->nchar = '?';
6140 nv_operator(cap);
6141 return;
6144 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0);
6146 if (cap->searchbuf == NULL)
6148 clearop(oap);
6149 return;
6152 normal_search(cap, cap->cmdchar, cap->searchbuf,
6153 (cap->arg ? 0 : SEARCH_MARK));
6157 * Handle "N" and "n" commands.
6158 * cap->arg is SEARCH_REV for "N", 0 for "n".
6160 static void
6161 nv_next(cap)
6162 cmdarg_T *cap;
6164 normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg);
6168 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
6169 * Uses only cap->count1 and cap->oap from "cap".
6171 static void
6172 normal_search(cap, dir, pat, opt)
6173 cmdarg_T *cap;
6174 int dir;
6175 char_u *pat;
6176 int opt; /* extra flags for do_search() */
6178 int i;
6180 cap->oap->motion_type = MCHAR;
6181 cap->oap->inclusive = FALSE;
6182 cap->oap->use_reg_one = TRUE;
6183 curwin->w_set_curswant = TRUE;
6185 i = do_search(cap->oap, dir, pat, cap->count1,
6186 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, NULL);
6187 if (i == 0)
6188 clearop(cap->oap);
6189 else
6191 if (i == 2)
6192 cap->oap->motion_type = MLINE;
6193 #ifdef FEAT_VIRTUALEDIT
6194 curwin->w_cursor.coladd = 0;
6195 #endif
6196 #ifdef FEAT_FOLDING
6197 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
6198 foldOpenCursor();
6199 #endif
6202 /* "/$" will put the cursor after the end of the line, may need to
6203 * correct that here */
6204 check_cursor();
6208 * Character search commands.
6209 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
6210 * ',' and FALSE for ';'.
6211 * cap->nchar is NUL for ',' and ';' (repeat the search)
6213 static void
6214 nv_csearch(cap)
6215 cmdarg_T *cap;
6217 int t_cmd;
6219 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
6220 t_cmd = TRUE;
6221 else
6222 t_cmd = FALSE;
6224 cap->oap->motion_type = MCHAR;
6225 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
6226 clearopbeep(cap->oap);
6227 else
6229 curwin->w_set_curswant = TRUE;
6230 #ifdef FEAT_VIRTUALEDIT
6231 /* Include a Tab for "tx" and for "dfx". */
6232 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
6233 && (t_cmd || cap->oap->op_type != OP_NOP))
6235 colnr_T scol, ecol;
6237 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
6238 curwin->w_cursor.coladd = ecol - scol;
6240 else
6241 curwin->w_cursor.coladd = 0;
6242 #endif
6243 #ifdef FEAT_VISUAL
6244 adjust_for_sel(cap);
6245 #endif
6246 #ifdef FEAT_FOLDING
6247 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6248 foldOpenCursor();
6249 #endif
6254 * "[" and "]" commands.
6255 * cap->arg is BACKWARD for "[" and FORWARD for "]".
6257 static void
6258 nv_brackets(cap)
6259 cmdarg_T *cap;
6261 pos_T new_pos;
6262 pos_T prev_pos;
6263 pos_T *pos = NULL; /* init for GCC */
6264 pos_T old_pos; /* cursor position before command */
6265 int flag;
6266 long n;
6267 int findc;
6268 int c;
6270 cap->oap->motion_type = MCHAR;
6271 cap->oap->inclusive = FALSE;
6272 old_pos = curwin->w_cursor;
6273 #ifdef FEAT_VIRTUALEDIT
6274 curwin->w_cursor.coladd = 0; /* TODO: don't do this for an error. */
6275 #endif
6277 #ifdef FEAT_SEARCHPATH
6279 * "[f" or "]f" : Edit file under the cursor (same as "gf")
6281 if (cap->nchar == 'f')
6282 nv_gotofile(cap);
6283 else
6284 #endif
6286 #ifdef FEAT_FIND_ID
6288 * Find the occurrence(s) of the identifier or define under cursor
6289 * in current and included files or jump to the first occurrence.
6291 * search list jump
6292 * fwd bwd fwd bwd fwd bwd
6293 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
6294 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
6296 if (vim_strchr((char_u *)
6297 #ifdef EBCDIC
6298 "iI\005dD\067",
6299 #else
6300 "iI\011dD\004",
6301 #endif
6302 cap->nchar) != NULL)
6304 char_u *ptr;
6305 int len;
6307 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
6308 clearop(cap->oap);
6309 else
6311 find_pattern_in_path(ptr, 0, len, TRUE,
6312 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
6313 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
6314 cap->count1,
6315 isupper(cap->nchar) ? ACTION_SHOW_ALL :
6316 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
6317 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
6318 (linenr_T)MAXLNUM);
6319 curwin->w_set_curswant = TRUE;
6322 else
6323 #endif
6326 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
6327 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
6328 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
6329 * "[m" or "]m" search for prev/next start of (Java) method.
6330 * "[M" or "]M" search for prev/next end of (Java) method.
6332 if ( (cap->cmdchar == '['
6333 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
6334 || (cap->cmdchar == ']'
6335 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
6337 if (cap->nchar == '*')
6338 cap->nchar = '/';
6339 new_pos.lnum = 0;
6340 prev_pos.lnum = 0;
6341 if (cap->nchar == 'm' || cap->nchar == 'M')
6343 if (cap->cmdchar == '[')
6344 findc = '{';
6345 else
6346 findc = '}';
6347 n = 9999;
6349 else
6351 findc = cap->nchar;
6352 n = cap->count1;
6354 for ( ; n > 0; --n)
6356 if ((pos = findmatchlimit(cap->oap, findc,
6357 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
6359 if (new_pos.lnum == 0) /* nothing found */
6361 if (cap->nchar != 'm' && cap->nchar != 'M')
6362 clearopbeep(cap->oap);
6364 else
6365 pos = &new_pos; /* use last one found */
6366 break;
6368 prev_pos = new_pos;
6369 curwin->w_cursor = *pos;
6370 new_pos = *pos;
6372 curwin->w_cursor = old_pos;
6375 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
6376 * brought us to the match for "[m" and "]M" when inside a method.
6377 * Try finding the '{' or '}' we want to be at.
6378 * Also repeat for the given count.
6380 if (cap->nchar == 'm' || cap->nchar == 'M')
6382 /* norm is TRUE for "]M" and "[m" */
6383 int norm = ((findc == '{') == (cap->nchar == 'm'));
6385 n = cap->count1;
6386 /* found a match: we were inside a method */
6387 if (prev_pos.lnum != 0)
6389 pos = &prev_pos;
6390 curwin->w_cursor = prev_pos;
6391 if (norm)
6392 --n;
6394 else
6395 pos = NULL;
6396 while (n > 0)
6398 for (;;)
6400 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
6402 /* if not found anything, that's an error */
6403 if (pos == NULL)
6404 clearopbeep(cap->oap);
6405 n = 0;
6406 break;
6408 c = gchar_cursor();
6409 if (c == '{' || c == '}')
6411 /* Must have found end/start of class: use it.
6412 * Or found the place to be at. */
6413 if ((c == findc && norm) || (n == 1 && !norm))
6415 new_pos = curwin->w_cursor;
6416 pos = &new_pos;
6417 n = 0;
6419 /* if no match found at all, we started outside of the
6420 * class and we're inside now. Just go on. */
6421 else if (new_pos.lnum == 0)
6423 new_pos = curwin->w_cursor;
6424 pos = &new_pos;
6426 /* found start/end of other method: go to match */
6427 else if ((pos = findmatchlimit(cap->oap, findc,
6428 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
6429 0)) == NULL)
6430 n = 0;
6431 else
6432 curwin->w_cursor = *pos;
6433 break;
6436 --n;
6438 curwin->w_cursor = old_pos;
6439 if (pos == NULL && new_pos.lnum != 0)
6440 clearopbeep(cap->oap);
6442 if (pos != NULL)
6444 setpcmark();
6445 curwin->w_cursor = *pos;
6446 curwin->w_set_curswant = TRUE;
6447 #ifdef FEAT_FOLDING
6448 if ((fdo_flags & FDO_BLOCK) && KeyTyped
6449 && cap->oap->op_type == OP_NOP)
6450 foldOpenCursor();
6451 #endif
6456 * "[[", "[]", "]]" and "][": move to start or end of function
6458 else if (cap->nchar == '[' || cap->nchar == ']')
6460 if (cap->nchar == cap->cmdchar) /* "]]" or "[[" */
6461 flag = '{';
6462 else
6463 flag = '}'; /* "][" or "[]" */
6465 curwin->w_set_curswant = TRUE;
6467 * Imitate strange Vi behaviour: When using "]]" with an operator
6468 * we also stop at '}'.
6470 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
6471 (cap->oap->op_type != OP_NOP
6472 && cap->arg == FORWARD && flag == '{')))
6473 clearopbeep(cap->oap);
6474 else
6476 if (cap->oap->op_type == OP_NOP)
6477 beginline(BL_WHITE | BL_FIX);
6478 #ifdef FEAT_FOLDING
6479 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6480 foldOpenCursor();
6481 #endif
6486 * "[p", "[P", "]P" and "]p": put with indent adjustment
6488 else if (cap->nchar == 'p' || cap->nchar == 'P')
6490 if (!checkclearop(cap->oap))
6492 prep_redo_cmd(cap);
6493 do_put(cap->oap->regname,
6494 (cap->cmdchar == ']' && cap->nchar == 'p') ? FORWARD : BACKWARD,
6495 cap->count1, PUT_FIXINDENT);
6500 * "['", "[`", "]'" and "]`": jump to next mark
6502 else if (cap->nchar == '\'' || cap->nchar == '`')
6504 pos = &curwin->w_cursor;
6505 for (n = cap->count1; n > 0; --n)
6507 prev_pos = *pos;
6508 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
6509 cap->nchar == '\'');
6510 if (pos == NULL)
6511 break;
6513 if (pos == NULL)
6514 pos = &prev_pos;
6515 nv_cursormark(cap, cap->nchar == '\'', pos);
6518 #ifdef FEAT_MOUSE
6520 * [ or ] followed by a middle mouse click: put selected text with
6521 * indent adjustment. Any other button just does as usual.
6523 else if (cap->nchar >= K_LEFTMOUSE && cap->nchar <= K_RIGHTRELEASE)
6525 (void)do_mouse(cap->oap, cap->nchar,
6526 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
6527 cap->count1, PUT_FIXINDENT);
6529 #endif /* FEAT_MOUSE */
6531 #ifdef FEAT_FOLDING
6533 * "[z" and "]z": move to start or end of open fold.
6535 else if (cap->nchar == 'z')
6537 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6538 cap->count1) == FAIL)
6539 clearopbeep(cap->oap);
6541 #endif
6543 #ifdef FEAT_DIFF
6545 * "[c" and "]c": move to next or previous diff-change.
6547 else if (cap->nchar == 'c')
6549 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
6550 cap->count1) == FAIL)
6551 clearopbeep(cap->oap);
6553 #endif
6555 #ifdef FEAT_SPELL
6557 * "[s", "[S", "]s" and "]S": move to next spell error.
6559 else if (cap->nchar == 's' || cap->nchar == 'S')
6561 setpcmark();
6562 for (n = 0; n < cap->count1; ++n)
6563 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6564 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
6566 clearopbeep(cap->oap);
6567 break;
6569 # ifdef FEAT_FOLDING
6570 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
6571 foldOpenCursor();
6572 # endif
6574 #endif
6576 /* Not a valid cap->nchar. */
6577 else
6578 clearopbeep(cap->oap);
6582 * Handle Normal mode "%" command.
6584 static void
6585 nv_percent(cap)
6586 cmdarg_T *cap;
6588 pos_T *pos;
6589 #ifdef FEAT_FOLDING
6590 linenr_T lnum = curwin->w_cursor.lnum;
6591 #endif
6593 cap->oap->inclusive = TRUE;
6594 if (cap->count0) /* {cnt}% : goto {cnt} percentage in file */
6596 if (cap->count0 > 100)
6597 clearopbeep(cap->oap);
6598 else
6600 cap->oap->motion_type = MLINE;
6601 setpcmark();
6602 /* Round up, so CTRL-G will give same value. Watch out for a
6603 * large line count, the line number must not go negative! */
6604 if (curbuf->b_ml.ml_line_count > 1000000)
6605 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
6606 / 100L * cap->count0;
6607 else
6608 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
6609 cap->count0 + 99L) / 100L;
6610 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6611 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6612 beginline(BL_SOL | BL_FIX);
6615 else /* "%" : go to matching paren */
6617 cap->oap->motion_type = MCHAR;
6618 cap->oap->use_reg_one = TRUE;
6619 if ((pos = findmatch(cap->oap, NUL)) == NULL)
6620 clearopbeep(cap->oap);
6621 else
6623 setpcmark();
6624 curwin->w_cursor = *pos;
6625 curwin->w_set_curswant = TRUE;
6626 #ifdef FEAT_VIRTUALEDIT
6627 curwin->w_cursor.coladd = 0;
6628 #endif
6629 #ifdef FEAT_VISUAL
6630 adjust_for_sel(cap);
6631 #endif
6634 #ifdef FEAT_FOLDING
6635 if (cap->oap->op_type == OP_NOP
6636 && lnum != curwin->w_cursor.lnum
6637 && (fdo_flags & FDO_PERCENT)
6638 && KeyTyped)
6639 foldOpenCursor();
6640 #endif
6644 * Handle "(" and ")" commands.
6645 * cap->arg is BACKWARD for "(" and FORWARD for ")".
6647 static void
6648 nv_brace(cap)
6649 cmdarg_T *cap;
6651 cap->oap->motion_type = MCHAR;
6652 cap->oap->use_reg_one = TRUE;
6653 /* The motion used to be inclusive for "(", but that is not what Vi does. */
6654 cap->oap->inclusive = FALSE;
6655 curwin->w_set_curswant = TRUE;
6657 if (findsent(cap->arg, cap->count1) == FAIL)
6658 clearopbeep(cap->oap);
6659 else
6661 /* Don't leave the cursor on the NUL past end of line. */
6662 adjust_cursor(cap->oap);
6663 #ifdef FEAT_VIRTUALEDIT
6664 curwin->w_cursor.coladd = 0;
6665 #endif
6666 #ifdef FEAT_FOLDING
6667 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6668 foldOpenCursor();
6669 #endif
6674 * "m" command: Mark a position.
6676 static void
6677 nv_mark(cap)
6678 cmdarg_T *cap;
6680 if (!checkclearop(cap->oap))
6682 if (setmark(cap->nchar) == FAIL)
6683 clearopbeep(cap->oap);
6688 * "{" and "}" commands.
6689 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
6691 static void
6692 nv_findpar(cap)
6693 cmdarg_T *cap;
6695 cap->oap->motion_type = MCHAR;
6696 cap->oap->inclusive = FALSE;
6697 cap->oap->use_reg_one = TRUE;
6698 curwin->w_set_curswant = TRUE;
6699 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
6700 clearopbeep(cap->oap);
6701 else
6703 #ifdef FEAT_VIRTUALEDIT
6704 curwin->w_cursor.coladd = 0;
6705 #endif
6706 #ifdef FEAT_FOLDING
6707 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6708 foldOpenCursor();
6709 #endif
6714 * "u" command: Undo or make lower case.
6716 static void
6717 nv_undo(cap)
6718 cmdarg_T *cap;
6720 if (cap->oap->op_type == OP_LOWER
6721 #ifdef FEAT_VISUAL
6722 || VIsual_active
6723 #endif
6726 /* translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" */
6727 cap->cmdchar = 'g';
6728 cap->nchar = 'u';
6729 nv_operator(cap);
6731 else
6732 nv_kundo(cap);
6736 * <Undo> command.
6738 static void
6739 nv_kundo(cap)
6740 cmdarg_T *cap;
6742 if (!checkclearopq(cap->oap))
6744 u_undo((int)cap->count1);
6745 curwin->w_set_curswant = TRUE;
6750 * Handle the "r" command.
6752 static void
6753 nv_replace(cap)
6754 cmdarg_T *cap;
6756 char_u *ptr;
6757 int had_ctrl_v;
6758 long n;
6760 if (checkclearop(cap->oap))
6761 return;
6763 /* get another character */
6764 if (cap->nchar == Ctrl_V)
6766 had_ctrl_v = Ctrl_V;
6767 cap->nchar = get_literal();
6768 /* Don't redo a multibyte character with CTRL-V. */
6769 if (cap->nchar > DEL)
6770 had_ctrl_v = NUL;
6772 else
6773 had_ctrl_v = NUL;
6775 /* Abort if the character is a special key. */
6776 if (IS_SPECIAL(cap->nchar))
6778 clearopbeep(cap->oap);
6779 return;
6782 #ifdef FEAT_VISUAL
6783 /* Visual mode "r" */
6784 if (VIsual_active)
6786 if (got_int)
6787 reset_VIsual();
6788 nv_operator(cap);
6789 return;
6791 #endif
6793 #ifdef FEAT_VIRTUALEDIT
6794 /* Break tabs, etc. */
6795 if (virtual_active())
6797 if (u_save_cursor() == FAIL)
6798 return;
6799 if (gchar_cursor() == NUL)
6801 /* Add extra space and put the cursor on the first one. */
6802 coladvance_force((colnr_T)(getviscol() + cap->count1));
6803 curwin->w_cursor.col -= cap->count1;
6805 else if (gchar_cursor() == TAB)
6806 coladvance_force(getviscol());
6808 #endif
6810 /* Abort if not enough characters to replace. */
6811 ptr = ml_get_cursor();
6812 if (STRLEN(ptr) < (unsigned)cap->count1
6813 #ifdef FEAT_MBYTE
6814 || (has_mbyte && mb_charlen(ptr) < cap->count1)
6815 #endif
6818 clearopbeep(cap->oap);
6819 return;
6823 * Replacing with a TAB is done by edit() when it is complicated because
6824 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
6825 * Other characters are done below to avoid problems with things like
6826 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
6828 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
6830 stuffnumReadbuff(cap->count1);
6831 stuffcharReadbuff('R');
6832 stuffcharReadbuff('\t');
6833 stuffcharReadbuff(ESC);
6834 return;
6837 /* save line for undo */
6838 if (u_save_cursor() == FAIL)
6839 return;
6841 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
6844 * Replace character(s) by a single newline.
6845 * Strange vi behaviour: Only one newline is inserted.
6846 * Delete the characters here.
6847 * Insert the newline with an insert command, takes care of
6848 * autoindent. The insert command depends on being on the last
6849 * character of a line or not.
6851 #ifdef FEAT_MBYTE
6852 (void)del_chars(cap->count1, FALSE); /* delete the characters */
6853 #else
6854 (void)del_bytes(cap->count1, FALSE, FALSE); /* delete the characters */
6855 #endif
6856 stuffcharReadbuff('\r');
6857 stuffcharReadbuff(ESC);
6859 /* Give 'r' to edit(), to get the redo command right. */
6860 invoke_edit(cap, TRUE, 'r', FALSE);
6862 else
6864 prep_redo(cap->oap->regname, cap->count1,
6865 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
6867 curbuf->b_op_start = curwin->w_cursor;
6868 #ifdef FEAT_MBYTE
6869 if (has_mbyte)
6871 int old_State = State;
6873 if (cap->ncharC1 != 0)
6874 AppendCharToRedobuff(cap->ncharC1);
6875 if (cap->ncharC2 != 0)
6876 AppendCharToRedobuff(cap->ncharC2);
6878 /* This is slow, but it handles replacing a single-byte with a
6879 * multi-byte and the other way around. Also handles adding
6880 * composing characters for utf-8. */
6881 for (n = cap->count1; n > 0; --n)
6883 State = REPLACE;
6884 ins_char(cap->nchar);
6885 State = old_State;
6886 if (cap->ncharC1 != 0)
6887 ins_char(cap->ncharC1);
6888 if (cap->ncharC2 != 0)
6889 ins_char(cap->ncharC2);
6892 else
6893 #endif
6896 * Replace the characters within one line.
6898 for (n = cap->count1; n > 0; --n)
6901 * Get ptr again, because u_save and/or showmatch() will have
6902 * released the line. At the same time we let know that the
6903 * line will be changed.
6905 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
6906 ptr[curwin->w_cursor.col] = cap->nchar;
6907 if (p_sm && msg_silent == 0)
6908 showmatch(cap->nchar);
6909 ++curwin->w_cursor.col;
6911 #ifdef FEAT_NETBEANS_INTG
6912 if (usingNetbeans)
6914 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
6916 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
6917 (long)cap->count1);
6918 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
6919 &ptr[start], (int)cap->count1);
6921 #endif
6923 /* mark the buffer as changed and prepare for displaying */
6924 changed_bytes(curwin->w_cursor.lnum,
6925 (colnr_T)(curwin->w_cursor.col - cap->count1));
6927 --curwin->w_cursor.col; /* cursor on the last replaced char */
6928 #ifdef FEAT_MBYTE
6929 /* if the character on the left of the current cursor is a multi-byte
6930 * character, move two characters left */
6931 if (has_mbyte)
6932 mb_adjust_cursor();
6933 #endif
6934 curbuf->b_op_end = curwin->w_cursor;
6935 curwin->w_set_curswant = TRUE;
6936 set_last_insert(cap->nchar);
6940 #ifdef FEAT_VISUAL
6942 * 'o': Exchange start and end of Visual area.
6943 * 'O': same, but in block mode exchange left and right corners.
6945 static void
6946 v_swap_corners(cmdchar)
6947 int cmdchar;
6949 pos_T old_cursor;
6950 colnr_T left, right;
6952 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
6954 old_cursor = curwin->w_cursor;
6955 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
6956 curwin->w_cursor.lnum = VIsual.lnum;
6957 coladvance(left);
6958 VIsual = curwin->w_cursor;
6960 curwin->w_cursor.lnum = old_cursor.lnum;
6961 curwin->w_curswant = right;
6962 /* 'selection "exclusive" and cursor at right-bottom corner: move it
6963 * right one column */
6964 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
6965 ++curwin->w_curswant;
6966 coladvance(curwin->w_curswant);
6967 if (curwin->w_cursor.col == old_cursor.col
6968 #ifdef FEAT_VIRTUALEDIT
6969 && (!virtual_active()
6970 || curwin->w_cursor.coladd == old_cursor.coladd)
6971 #endif
6974 curwin->w_cursor.lnum = VIsual.lnum;
6975 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
6976 ++right;
6977 coladvance(right);
6978 VIsual = curwin->w_cursor;
6980 curwin->w_cursor.lnum = old_cursor.lnum;
6981 coladvance(left);
6982 curwin->w_curswant = left;
6985 else
6987 old_cursor = curwin->w_cursor;
6988 curwin->w_cursor = VIsual;
6989 VIsual = old_cursor;
6990 curwin->w_set_curswant = TRUE;
6993 #endif /* FEAT_VISUAL */
6996 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
6998 static void
6999 nv_Replace(cap)
7000 cmdarg_T *cap;
7002 #ifdef FEAT_VISUAL
7003 if (VIsual_active) /* "R" is replace lines */
7005 cap->cmdchar = 'c';
7006 cap->nchar = NUL;
7007 VIsual_mode = 'V';
7008 nv_operator(cap);
7010 else
7011 #endif
7012 if (!checkclearopq(cap->oap))
7014 if (!curbuf->b_p_ma)
7015 EMSG(_(e_modifiable));
7016 else
7018 #ifdef FEAT_VIRTUALEDIT
7019 if (virtual_active())
7020 coladvance(getviscol());
7021 #endif
7022 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
7027 #ifdef FEAT_VREPLACE
7029 * "gr".
7031 static void
7032 nv_vreplace(cap)
7033 cmdarg_T *cap;
7035 # ifdef FEAT_VISUAL
7036 if (VIsual_active)
7038 cap->cmdchar = 'r';
7039 cap->nchar = cap->extra_char;
7040 nv_replace(cap); /* Do same as "r" in Visual mode for now */
7042 else
7043 # endif
7044 if (!checkclearopq(cap->oap))
7046 if (!curbuf->b_p_ma)
7047 EMSG(_(e_modifiable));
7048 else
7050 if (cap->extra_char == Ctrl_V) /* get another character */
7051 cap->extra_char = get_literal();
7052 stuffcharReadbuff(cap->extra_char);
7053 stuffcharReadbuff(ESC);
7054 # ifdef FEAT_VIRTUALEDIT
7055 if (virtual_active())
7056 coladvance(getviscol());
7057 # endif
7058 invoke_edit(cap, TRUE, 'v', FALSE);
7062 #endif
7065 * Swap case for "~" command, when it does not work like an operator.
7067 static void
7068 n_swapchar(cap)
7069 cmdarg_T *cap;
7071 long n;
7072 pos_T startpos;
7073 int did_change = 0;
7074 #ifdef FEAT_NETBEANS_INTG
7075 pos_T pos;
7076 char_u *ptr;
7077 int count;
7078 #endif
7080 if (checkclearopq(cap->oap))
7081 return;
7083 if (lineempty(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
7085 clearopbeep(cap->oap);
7086 return;
7089 prep_redo_cmd(cap);
7091 if (u_save_cursor() == FAIL)
7092 return;
7094 startpos = curwin->w_cursor;
7095 #ifdef FEAT_NETBEANS_INTG
7096 pos = startpos;
7097 #endif
7098 for (n = cap->count1; n > 0; --n)
7100 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
7101 inc_cursor();
7102 if (gchar_cursor() == NUL)
7104 if (vim_strchr(p_ww, '~') != NULL
7105 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
7107 #ifdef FEAT_NETBEANS_INTG
7108 if (usingNetbeans)
7110 if (did_change)
7112 ptr = ml_get(pos.lnum);
7113 count = (int)STRLEN(ptr) - pos.col;
7114 netbeans_removed(curbuf, pos.lnum, pos.col,
7115 (long)count);
7116 netbeans_inserted(curbuf, pos.lnum, pos.col,
7117 &ptr[pos.col], count);
7119 pos.col = 0;
7120 pos.lnum++;
7122 #endif
7123 ++curwin->w_cursor.lnum;
7124 curwin->w_cursor.col = 0;
7125 if (n > 1)
7127 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
7128 break;
7129 u_clearline();
7132 else
7133 break;
7136 #ifdef FEAT_NETBEANS_INTG
7137 if (did_change && usingNetbeans)
7139 ptr = ml_get(pos.lnum);
7140 count = curwin->w_cursor.col - pos.col;
7141 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
7142 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
7144 #endif
7147 check_cursor();
7148 curwin->w_set_curswant = TRUE;
7149 if (did_change)
7151 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
7152 0L);
7153 curbuf->b_op_start = startpos;
7154 curbuf->b_op_end = curwin->w_cursor;
7155 if (curbuf->b_op_end.col > 0)
7156 --curbuf->b_op_end.col;
7161 * Move cursor to mark.
7163 static void
7164 nv_cursormark(cap, flag, pos)
7165 cmdarg_T *cap;
7166 int flag;
7167 pos_T *pos;
7169 if (check_mark(pos) == FAIL)
7170 clearop(cap->oap);
7171 else
7173 if (cap->cmdchar == '\''
7174 || cap->cmdchar == '`'
7175 || cap->cmdchar == '['
7176 || cap->cmdchar == ']')
7177 setpcmark();
7178 curwin->w_cursor = *pos;
7179 if (flag)
7180 beginline(BL_WHITE | BL_FIX);
7181 else
7182 check_cursor();
7184 cap->oap->motion_type = flag ? MLINE : MCHAR;
7185 if (cap->cmdchar == '`')
7186 cap->oap->use_reg_one = TRUE;
7187 cap->oap->inclusive = FALSE; /* ignored if not MCHAR */
7188 curwin->w_set_curswant = TRUE;
7191 #ifdef FEAT_VISUAL
7193 * Handle commands that are operators in Visual mode.
7195 static void
7196 v_visop(cap)
7197 cmdarg_T *cap;
7199 static char_u trans[] = "YyDdCcxdXdAAIIrr";
7201 /* Uppercase means linewise, except in block mode, then "D" deletes till
7202 * the end of the line, and "C" replaces til EOL */
7203 if (isupper(cap->cmdchar))
7205 if (VIsual_mode != Ctrl_V)
7206 VIsual_mode = 'V';
7207 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
7208 curwin->w_curswant = MAXCOL;
7210 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
7211 nv_operator(cap);
7213 #endif
7216 * "s" and "S" commands.
7218 static void
7219 nv_subst(cap)
7220 cmdarg_T *cap;
7222 #ifdef FEAT_VISUAL
7223 if (VIsual_active) /* "vs" and "vS" are the same as "vc" */
7225 if (cap->cmdchar == 'S')
7226 VIsual_mode = 'V';
7227 cap->cmdchar = 'c';
7228 nv_operator(cap);
7230 else
7231 #endif
7232 nv_optrans(cap);
7236 * Abbreviated commands.
7238 static void
7239 nv_abbrev(cap)
7240 cmdarg_T *cap;
7242 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
7243 cap->cmdchar = 'x'; /* DEL key behaves like 'x' */
7245 #ifdef FEAT_VISUAL
7246 /* in Visual mode these commands are operators */
7247 if (VIsual_active)
7248 v_visop(cap);
7249 else
7250 #endif
7251 nv_optrans(cap);
7255 * Translate a command into another command.
7257 static void
7258 nv_optrans(cap)
7259 cmdarg_T *cap;
7261 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
7262 (char_u *)"d$", (char_u *)"c$",
7263 (char_u *)"cl", (char_u *)"cc",
7264 (char_u *)"yy", (char_u *)":s\r"};
7265 static char_u *str = (char_u *)"xXDCsSY&";
7267 if (!checkclearopq(cap->oap))
7269 /* In Vi "2D" doesn't delete the next line. Can't translate it
7270 * either, because "2." should also not use the count. */
7271 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
7273 cap->oap->start = curwin->w_cursor;
7274 cap->oap->op_type = OP_DELETE;
7275 #ifdef FEAT_EVAL
7276 set_op_var(OP_DELETE);
7277 #endif
7278 cap->count1 = 1;
7279 nv_dollar(cap);
7280 finish_op = TRUE;
7281 ResetRedobuff();
7282 AppendCharToRedobuff('D');
7284 else
7286 if (cap->count0)
7287 stuffnumReadbuff(cap->count0);
7288 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
7291 cap->opcount = 0;
7295 * "'" and "`" commands. Also for "g'" and "g`".
7296 * cap->arg is TRUE for "'" and "g'".
7298 static void
7299 nv_gomark(cap)
7300 cmdarg_T *cap;
7302 pos_T *pos;
7303 int c;
7304 #ifdef FEAT_FOLDING
7305 linenr_T lnum = curwin->w_cursor.lnum;
7306 int old_KeyTyped = KeyTyped; /* getting file may reset it */
7307 #endif
7309 if (cap->cmdchar == 'g')
7310 c = cap->extra_char;
7311 else
7312 c = cap->nchar;
7313 pos = getmark(c, (cap->oap->op_type == OP_NOP));
7314 if (pos == (pos_T *)-1) /* jumped to other file */
7316 if (cap->arg)
7318 check_cursor_lnum();
7319 beginline(BL_WHITE | BL_FIX);
7321 else
7322 check_cursor();
7324 else
7325 nv_cursormark(cap, cap->arg, pos);
7327 #ifdef FEAT_VIRTUALEDIT
7328 /* May need to clear the coladd that a mark includes. */
7329 if (!virtual_active())
7330 curwin->w_cursor.coladd = 0;
7331 #endif
7332 #ifdef FEAT_FOLDING
7333 if (cap->oap->op_type == OP_NOP
7334 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
7335 && (fdo_flags & FDO_MARK)
7336 && old_KeyTyped)
7337 foldOpenCursor();
7338 #endif
7342 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
7344 static void
7345 nv_pcmark(cap)
7346 cmdarg_T *cap;
7348 #ifdef FEAT_JUMPLIST
7349 pos_T *pos;
7350 # ifdef FEAT_FOLDING
7351 linenr_T lnum = curwin->w_cursor.lnum;
7352 int old_KeyTyped = KeyTyped; /* getting file may reset it */
7353 # endif
7355 if (!checkclearopq(cap->oap))
7357 if (cap->cmdchar == 'g')
7358 pos = movechangelist((int)cap->count1);
7359 else
7360 pos = movemark((int)cap->count1);
7361 if (pos == (pos_T *)-1) /* jump to other file */
7363 curwin->w_set_curswant = TRUE;
7364 check_cursor();
7366 else if (pos != NULL) /* can jump */
7367 nv_cursormark(cap, FALSE, pos);
7368 else if (cap->cmdchar == 'g')
7370 if (curbuf->b_changelistlen == 0)
7371 EMSG(_("E664: changelist is empty"));
7372 else if (cap->count1 < 0)
7373 EMSG(_("E662: At start of changelist"));
7374 else
7375 EMSG(_("E663: At end of changelist"));
7377 else
7378 clearopbeep(cap->oap);
7379 # ifdef FEAT_FOLDING
7380 if (cap->oap->op_type == OP_NOP
7381 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
7382 && (fdo_flags & FDO_MARK)
7383 && old_KeyTyped)
7384 foldOpenCursor();
7385 # endif
7387 #else
7388 clearopbeep(cap->oap);
7389 #endif
7393 * Handle '"' command.
7395 static void
7396 nv_regname(cap)
7397 cmdarg_T *cap;
7399 if (checkclearop(cap->oap))
7400 return;
7401 #ifdef FEAT_EVAL
7402 if (cap->nchar == '=')
7403 cap->nchar = get_expr_register();
7404 #endif
7405 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
7407 cap->oap->regname = cap->nchar;
7408 cap->opcount = cap->count0; /* remember count before '"' */
7409 #ifdef FEAT_EVAL
7410 set_reg_var(cap->oap->regname);
7411 #endif
7413 else
7414 clearopbeep(cap->oap);
7417 #ifdef FEAT_VISUAL
7419 * Handle "v", "V" and "CTRL-V" commands.
7420 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
7421 * is TRUE.
7422 * Handle CTRL-Q just like CTRL-V.
7424 static void
7425 nv_visual(cap)
7426 cmdarg_T *cap;
7428 if (cap->cmdchar == Ctrl_Q)
7429 cap->cmdchar = Ctrl_V;
7431 /* 'v', 'V' and CTRL-V can be used while an operator is pending to make it
7432 * characterwise, linewise, or blockwise. */
7433 if (cap->oap->op_type != OP_NOP)
7435 cap->oap->motion_force = cap->cmdchar;
7436 finish_op = FALSE; /* operator doesn't finish now but later */
7437 return;
7440 VIsual_select = cap->arg;
7441 if (VIsual_active) /* change Visual mode */
7443 if (VIsual_mode == cap->cmdchar) /* stop visual mode */
7444 end_visual_mode();
7445 else /* toggle char/block mode */
7446 { /* or char/line mode */
7447 VIsual_mode = cap->cmdchar;
7448 showmode();
7450 redraw_curbuf_later(INVERTED); /* update the inversion */
7452 else /* start Visual mode */
7454 check_visual_highlight();
7455 if (cap->count0) /* use previously selected part */
7457 if (resel_VIsual_mode == NUL) /* there is none */
7459 beep_flush();
7460 return;
7462 VIsual = curwin->w_cursor;
7464 VIsual_active = TRUE;
7465 VIsual_reselect = TRUE;
7466 if (!cap->arg)
7467 /* start Select mode when 'selectmode' contains "cmd" */
7468 may_start_select('c');
7469 #ifdef FEAT_MOUSE
7470 setmouse();
7471 #endif
7472 if (p_smd && msg_silent == 0)
7473 redraw_cmdline = TRUE; /* show visual mode later */
7475 * For V and ^V, we multiply the number of lines even if there
7476 * was only one -- webb
7478 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
7480 curwin->w_cursor.lnum +=
7481 resel_VIsual_line_count * cap->count0 - 1;
7482 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7483 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7485 VIsual_mode = resel_VIsual_mode;
7486 if (VIsual_mode == 'v')
7488 if (resel_VIsual_line_count <= 1)
7489 curwin->w_cursor.col += resel_VIsual_col * cap->count0 - 1;
7490 else
7491 curwin->w_cursor.col = resel_VIsual_col;
7492 check_cursor_col();
7494 if (resel_VIsual_col == MAXCOL)
7496 curwin->w_curswant = MAXCOL;
7497 coladvance((colnr_T)MAXCOL);
7499 else if (VIsual_mode == Ctrl_V)
7501 validate_virtcol();
7502 curwin->w_curswant = curwin->w_virtcol
7503 + resel_VIsual_col * cap->count0 - 1;
7504 coladvance(curwin->w_curswant);
7506 else
7507 curwin->w_set_curswant = TRUE;
7508 redraw_curbuf_later(INVERTED); /* show the inversion */
7510 else
7512 if (!cap->arg)
7513 /* start Select mode when 'selectmode' contains "cmd" */
7514 may_start_select('c');
7515 n_start_visual_mode(cap->cmdchar);
7521 * Start selection for Shift-movement keys.
7523 void
7524 start_selection()
7526 /* if 'selectmode' contains "key", start Select mode */
7527 may_start_select('k');
7528 n_start_visual_mode('v');
7532 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
7534 void
7535 may_start_select(c)
7536 int c;
7538 VIsual_select = (stuff_empty() && typebuf_typed()
7539 && (vim_strchr(p_slm, c) != NULL));
7543 * Start Visual mode "c".
7544 * Should set VIsual_select before calling this.
7546 static void
7547 n_start_visual_mode(c)
7548 int c;
7550 VIsual_mode = c;
7551 VIsual_active = TRUE;
7552 VIsual_reselect = TRUE;
7553 #ifdef FEAT_VIRTUALEDIT
7554 /* Corner case: the 0 position in a tab may change when going into
7555 * virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting.
7557 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB)
7558 coladvance(curwin->w_virtcol);
7559 #endif
7560 VIsual = curwin->w_cursor;
7562 #ifdef FEAT_FOLDING
7563 foldAdjustVisual();
7564 #endif
7566 #ifdef FEAT_MOUSE
7567 setmouse();
7568 #endif
7569 if (p_smd && msg_silent == 0)
7570 redraw_cmdline = TRUE; /* show visual mode later */
7571 #ifdef FEAT_CLIPBOARD
7572 /* Make sure the clipboard gets updated. Needed because start and
7573 * end may still be the same, and the selection needs to be owned */
7574 clip_star.vmode = NUL;
7575 #endif
7577 /* Only need to redraw this line, unless still need to redraw an old
7578 * Visual area (when 'lazyredraw' is set). */
7579 if (curwin->w_redr_type < INVERTED)
7581 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
7582 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
7586 #endif /* FEAT_VISUAL */
7589 * CTRL-W: Window commands
7591 static void
7592 nv_window(cap)
7593 cmdarg_T *cap;
7595 #ifdef FEAT_WINDOWS
7596 if (!checkclearop(cap->oap))
7597 do_window(cap->nchar, cap->count0, NUL); /* everything is in window.c */
7598 #else
7599 (void)checkclearop(cap->oap);
7600 #endif
7604 * CTRL-Z: Suspend
7606 static void
7607 nv_suspend(cap)
7608 cmdarg_T *cap;
7610 clearop(cap->oap);
7611 #ifdef FEAT_VISUAL
7612 if (VIsual_active)
7613 end_visual_mode(); /* stop Visual mode */
7614 #endif
7615 do_cmdline_cmd((char_u *)"st");
7619 * Commands starting with "g".
7621 static void
7622 nv_g_cmd(cap)
7623 cmdarg_T *cap;
7625 oparg_T *oap = cap->oap;
7626 #ifdef FEAT_VISUAL
7627 pos_T tpos;
7628 #endif
7629 int i;
7630 int flag = FALSE;
7632 switch (cap->nchar)
7634 #ifdef MEM_PROFILE
7636 * "g^A": dump log of used memory.
7638 case Ctrl_A:
7639 vim_mem_profile_dump();
7640 break;
7641 #endif
7643 #ifdef FEAT_VREPLACE
7645 * "gR": Enter virtual replace mode.
7647 case 'R':
7648 cap->arg = TRUE;
7649 nv_Replace(cap);
7650 break;
7652 case 'r':
7653 nv_vreplace(cap);
7654 break;
7655 #endif
7657 case '&':
7658 do_cmdline_cmd((char_u *)"%s//~/&");
7659 break;
7661 #ifdef FEAT_VISUAL
7663 * "gv": Reselect the previous Visual area. If Visual already active,
7664 * exchange previous and current Visual area.
7666 case 'v':
7667 if (checkclearop(oap))
7668 break;
7670 if ( curbuf->b_visual.vi_start.lnum == 0
7671 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
7672 || curbuf->b_visual.vi_end.lnum == 0)
7673 beep_flush();
7674 else
7676 /* set w_cursor to the start of the Visual area, tpos to the end */
7677 if (VIsual_active)
7679 i = VIsual_mode;
7680 VIsual_mode = curbuf->b_visual.vi_mode;
7681 curbuf->b_visual.vi_mode = i;
7682 # ifdef FEAT_EVAL
7683 curbuf->b_visual_mode_eval = i;
7684 # endif
7685 i = curwin->w_curswant;
7686 curwin->w_curswant = curbuf->b_visual.vi_curswant;
7687 curbuf->b_visual.vi_curswant = i;
7689 tpos = curbuf->b_visual.vi_end;
7690 curbuf->b_visual.vi_end = curwin->w_cursor;
7691 curwin->w_cursor = curbuf->b_visual.vi_start;
7692 curbuf->b_visual.vi_start = VIsual;
7694 else
7696 VIsual_mode = curbuf->b_visual.vi_mode;
7697 curwin->w_curswant = curbuf->b_visual.vi_curswant;
7698 tpos = curbuf->b_visual.vi_end;
7699 curwin->w_cursor = curbuf->b_visual.vi_start;
7702 VIsual_active = TRUE;
7703 VIsual_reselect = TRUE;
7705 /* Set Visual to the start and w_cursor to the end of the Visual
7706 * area. Make sure they are on an existing character. */
7707 check_cursor();
7708 VIsual = curwin->w_cursor;
7709 curwin->w_cursor = tpos;
7710 check_cursor();
7711 update_topline();
7713 * When called from normal "g" command: start Select mode when
7714 * 'selectmode' contains "cmd". When called for K_SELECT, always
7715 * start Select mode.
7717 if (cap->arg)
7718 VIsual_select = TRUE;
7719 else
7720 may_start_select('c');
7721 #ifdef FEAT_MOUSE
7722 setmouse();
7723 #endif
7724 #ifdef FEAT_CLIPBOARD
7725 /* Make sure the clipboard gets updated. Needed because start and
7726 * end are still the same, and the selection needs to be owned */
7727 clip_star.vmode = NUL;
7728 #endif
7729 redraw_curbuf_later(INVERTED);
7730 showmode();
7732 break;
7734 * "gV": Don't reselect the previous Visual area after a Select mode
7735 * mapping of menu.
7737 case 'V':
7738 VIsual_reselect = FALSE;
7739 break;
7742 * "gh": start Select mode.
7743 * "gH": start Select line mode.
7744 * "g^H": start Select block mode.
7746 case K_BS:
7747 cap->nchar = Ctrl_H;
7748 /* FALLTHROUGH */
7749 case 'h':
7750 case 'H':
7751 case Ctrl_H:
7752 # ifdef EBCDIC
7753 /* EBCDIC: 'v'-'h' != '^v'-'^h' */
7754 if (cap->nchar == Ctrl_H)
7755 cap->cmdchar = Ctrl_V;
7756 else
7757 # endif
7758 cap->cmdchar = cap->nchar + ('v' - 'h');
7759 cap->arg = TRUE;
7760 nv_visual(cap);
7761 break;
7762 #endif /* FEAT_VISUAL */
7765 * "gj" and "gk" two new funny movement keys -- up and down
7766 * movement based on *screen* line rather than *file* line.
7768 case 'j':
7769 case K_DOWN:
7770 /* with 'nowrap' it works just like the normal "j" command; also when
7771 * in a closed fold */
7772 if (!curwin->w_p_wrap
7773 #ifdef FEAT_FOLDING
7774 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7775 #endif
7778 oap->motion_type = MLINE;
7779 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
7781 else
7782 i = nv_screengo(oap, FORWARD, cap->count1);
7783 if (i == FAIL)
7784 clearopbeep(oap);
7785 break;
7787 case 'k':
7788 case K_UP:
7789 /* with 'nowrap' it works just like the normal "k" command; also when
7790 * in a closed fold */
7791 if (!curwin->w_p_wrap
7792 #ifdef FEAT_FOLDING
7793 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7794 #endif
7797 oap->motion_type = MLINE;
7798 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
7800 else
7801 i = nv_screengo(oap, BACKWARD, cap->count1);
7802 if (i == FAIL)
7803 clearopbeep(oap);
7804 break;
7807 * "gJ": join two lines without inserting a space.
7809 case 'J':
7810 nv_join(cap);
7811 break;
7814 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
7815 * "gm": middle of "g0" and "g$".
7817 case '^':
7818 flag = TRUE;
7819 /* FALLTHROUGH */
7821 case '0':
7822 case 'm':
7823 case K_HOME:
7824 case K_KHOME:
7825 oap->motion_type = MCHAR;
7826 oap->inclusive = FALSE;
7827 if (curwin->w_p_wrap
7828 #ifdef FEAT_VERTSPLIT
7829 && curwin->w_width != 0
7830 #endif
7833 int width1 = W_WIDTH(curwin) - curwin_col_off();
7834 int width2 = width1 + curwin_col_off2();
7836 validate_virtcol();
7837 i = 0;
7838 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
7839 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
7841 else
7842 i = curwin->w_leftcol;
7843 /* Go to the middle of the screen line. When 'number' is on and lines
7844 * are wrapping the middle can be more to the left. */
7845 if (cap->nchar == 'm')
7846 i += (W_WIDTH(curwin) - curwin_col_off()
7847 + ((curwin->w_p_wrap && i > 0)
7848 ? curwin_col_off2() : 0)) / 2;
7849 coladvance((colnr_T)i);
7850 if (flag)
7853 i = gchar_cursor();
7854 while (vim_iswhite(i) && oneright() == OK);
7856 curwin->w_set_curswant = TRUE;
7857 break;
7859 case '_':
7860 /* "g_": to the last non-blank character in the line or <count> lines
7861 * downward. */
7862 cap->oap->motion_type = MCHAR;
7863 cap->oap->inclusive = TRUE;
7864 curwin->w_curswant = MAXCOL;
7865 if (cursor_down((long)(cap->count1 - 1),
7866 cap->oap->op_type == OP_NOP) == FAIL)
7867 clearopbeep(cap->oap);
7868 else
7870 char_u *ptr = ml_get_curline();
7872 /* In Visual mode we may end up after the line. */
7873 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
7874 --curwin->w_cursor.col;
7876 /* Decrease the cursor column until it's on a non-blank. */
7877 while (curwin->w_cursor.col > 0
7878 && vim_iswhite(ptr[curwin->w_cursor.col]))
7879 --curwin->w_cursor.col;
7880 curwin->w_set_curswant = TRUE;
7882 break;
7884 case '$':
7885 case K_END:
7886 case K_KEND:
7888 int col_off = curwin_col_off();
7890 oap->motion_type = MCHAR;
7891 oap->inclusive = TRUE;
7892 if (curwin->w_p_wrap
7893 #ifdef FEAT_VERTSPLIT
7894 && curwin->w_width != 0
7895 #endif
7898 curwin->w_curswant = MAXCOL; /* so we stay at the end */
7899 if (cap->count1 == 1)
7901 int width1 = W_WIDTH(curwin) - col_off;
7902 int width2 = width1 + curwin_col_off2();
7904 validate_virtcol();
7905 i = width1 - 1;
7906 if (curwin->w_virtcol >= (colnr_T)width1)
7907 i += ((curwin->w_virtcol - width1) / width2 + 1)
7908 * width2;
7909 coladvance((colnr_T)i);
7910 #if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
7911 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
7914 * Check for landing on a character that got split at
7915 * the end of the line. We do not want to advance to
7916 * the next screen line.
7918 validate_virtcol();
7919 if (curwin->w_virtcol > (colnr_T)i)
7920 --curwin->w_cursor.col;
7922 #endif
7924 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
7925 clearopbeep(oap);
7927 else
7929 i = curwin->w_leftcol + W_WIDTH(curwin) - col_off - 1;
7930 coladvance((colnr_T)i);
7932 /* Make sure we stick in this column. */
7933 validate_virtcol();
7934 curwin->w_curswant = curwin->w_virtcol;
7935 curwin->w_set_curswant = FALSE;
7938 break;
7941 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
7943 case '*':
7944 case '#':
7945 #if POUND != '#'
7946 case POUND: /* pound sign (sometimes equal to '#') */
7947 #endif
7948 case Ctrl_RSB: /* :tag or :tselect for current identifier */
7949 case ']': /* :tselect for current identifier */
7950 nv_ident(cap);
7951 break;
7954 * ge and gE: go back to end of word
7956 case 'e':
7957 case 'E':
7958 oap->motion_type = MCHAR;
7959 curwin->w_set_curswant = TRUE;
7960 oap->inclusive = TRUE;
7961 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
7962 clearopbeep(oap);
7963 break;
7966 * "g CTRL-G": display info about cursor position
7968 case Ctrl_G:
7969 cursor_pos_info();
7970 break;
7973 * "gi": start Insert at the last position.
7975 case 'i':
7976 if (curbuf->b_last_insert.lnum != 0)
7978 curwin->w_cursor = curbuf->b_last_insert;
7979 check_cursor_lnum();
7980 i = (int)STRLEN(ml_get_curline());
7981 if (curwin->w_cursor.col > (colnr_T)i)
7983 #ifdef FEAT_VIRTUALEDIT
7984 if (virtual_active())
7985 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
7986 #endif
7987 curwin->w_cursor.col = i;
7990 cap->cmdchar = 'i';
7991 nv_edit(cap);
7992 break;
7995 * "gI": Start insert in column 1.
7997 case 'I':
7998 beginline(0);
7999 if (!checkclearopq(oap))
8000 invoke_edit(cap, FALSE, 'g', FALSE);
8001 break;
8003 #ifdef FEAT_SEARCHPATH
8005 * "gf": goto file, edit file under cursor
8006 * "]f" and "[f": can also be used.
8008 case 'f':
8009 case 'F':
8010 nv_gotofile(cap);
8011 break;
8012 #endif
8014 /* "g'm" and "g`m": jump to mark without setting pcmark */
8015 case '\'':
8016 cap->arg = TRUE;
8017 /*FALLTHROUGH*/
8018 case '`':
8019 nv_gomark(cap);
8020 break;
8023 * "gs": Goto sleep.
8025 case 's':
8026 do_sleep(cap->count1 * 1000L);
8027 break;
8030 * "ga": Display the ascii value of the character under the
8031 * cursor. It is displayed in decimal, hex, and octal. -- webb
8033 case 'a':
8034 do_ascii(NULL);
8035 break;
8037 #ifdef FEAT_MBYTE
8039 * "g8": Display the bytes used for the UTF-8 character under the
8040 * cursor. It is displayed in hex.
8041 * "8g8" finds illegal byte sequence.
8043 case '8':
8044 if (cap->count0 == 8)
8045 utf_find_illegal();
8046 else
8047 show_utf8();
8048 break;
8049 #endif
8051 case '<':
8052 show_sb_text();
8053 break;
8056 * "gg": Goto the first line in file. With a count it goes to
8057 * that line number like for "G". -- webb
8059 case 'g':
8060 cap->arg = FALSE;
8061 nv_goto(cap);
8062 break;
8065 * Two-character operators:
8066 * "gq" Format text
8067 * "gw" Format text and keep cursor position
8068 * "g~" Toggle the case of the text.
8069 * "gu" Change text to lower case.
8070 * "gU" Change text to upper case.
8071 * "g?" rot13 encoding
8072 * "g@" call 'operatorfunc'
8074 case 'q':
8075 case 'w':
8076 oap->cursor_start = curwin->w_cursor;
8077 /*FALLTHROUGH*/
8078 case '~':
8079 case 'u':
8080 case 'U':
8081 case '?':
8082 case '@':
8083 nv_operator(cap);
8084 break;
8087 * "gd": Find first occurrence of pattern under the cursor in the
8088 * current function
8089 * "gD": idem, but in the current file.
8091 case 'd':
8092 case 'D':
8093 nv_gd(oap, cap->nchar, (int)cap->count0);
8094 break;
8096 #ifdef FEAT_MOUSE
8098 * g<*Mouse> : <C-*mouse>
8100 case K_MIDDLEMOUSE:
8101 case K_MIDDLEDRAG:
8102 case K_MIDDLERELEASE:
8103 case K_LEFTMOUSE:
8104 case K_LEFTDRAG:
8105 case K_LEFTRELEASE:
8106 case K_RIGHTMOUSE:
8107 case K_RIGHTDRAG:
8108 case K_RIGHTRELEASE:
8109 case K_X1MOUSE:
8110 case K_X1DRAG:
8111 case K_X1RELEASE:
8112 case K_X2MOUSE:
8113 case K_X2DRAG:
8114 case K_X2RELEASE:
8115 mod_mask = MOD_MASK_CTRL;
8116 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
8117 break;
8118 #endif
8120 case K_IGNORE:
8121 break;
8124 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
8126 case 'p':
8127 case 'P':
8128 nv_put(cap);
8129 break;
8131 #ifdef FEAT_BYTEOFF
8132 /* "go": goto byte count from start of buffer */
8133 case 'o':
8134 goto_byte(cap->count0);
8135 break;
8136 #endif
8138 /* "gQ": improved Ex mode */
8139 case 'Q':
8140 if (text_locked())
8142 clearopbeep(cap->oap);
8143 text_locked_msg();
8144 break;
8147 if (!checkclearopq(oap))
8148 do_exmode(TRUE);
8149 break;
8151 #ifdef FEAT_JUMPLIST
8152 case ',':
8153 nv_pcmark(cap);
8154 break;
8156 case ';':
8157 cap->count1 = -cap->count1;
8158 nv_pcmark(cap);
8159 break;
8160 #endif
8162 #ifdef FEAT_WINDOWS
8163 case 't':
8164 goto_tabpage((int)cap->count0);
8165 break;
8166 case 'T':
8167 goto_tabpage(-(int)cap->count1);
8168 break;
8169 #endif
8171 case '+':
8172 case '-': /* "g+" and "g-": undo or redo along the timeline */
8173 if (!checkclearopq(oap))
8174 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
8175 FALSE, FALSE);
8176 break;
8178 default:
8179 clearopbeep(oap);
8180 break;
8185 * Handle "o" and "O" commands.
8187 static void
8188 n_opencmd(cap)
8189 cmdarg_T *cap;
8191 if (!checkclearopq(cap->oap))
8193 #ifdef FEAT_FOLDING
8194 if (cap->cmdchar == 'O')
8195 /* Open above the first line of a folded sequence of lines */
8196 (void)hasFolding(curwin->w_cursor.lnum,
8197 &curwin->w_cursor.lnum, NULL);
8198 else
8199 /* Open below the last line of a folded sequence of lines */
8200 (void)hasFolding(curwin->w_cursor.lnum,
8201 NULL, &curwin->w_cursor.lnum);
8202 #endif
8203 if (u_save((linenr_T)(curwin->w_cursor.lnum -
8204 (cap->cmdchar == 'O' ? 1 : 0)),
8205 (linenr_T)(curwin->w_cursor.lnum +
8206 (cap->cmdchar == 'o' ? 1 : 0))
8207 ) == OK
8208 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
8209 #ifdef FEAT_COMMENTS
8210 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM :
8211 #endif
8212 0, 0))
8214 /* When '#' is in 'cpoptions' ignore the count. */
8215 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
8216 cap->count1 = 1;
8217 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
8223 * "." command: redo last change.
8225 static void
8226 nv_dot(cap)
8227 cmdarg_T *cap;
8229 if (!checkclearopq(cap->oap))
8232 * If "restart_edit" is TRUE, the last but one command is repeated
8233 * instead of the last command (inserting text). This is used for
8234 * CTRL-O <.> in insert mode.
8236 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
8237 clearopbeep(cap->oap);
8242 * CTRL-R: undo undo
8244 static void
8245 nv_redo(cap)
8246 cmdarg_T *cap;
8248 if (!checkclearopq(cap->oap))
8250 u_redo((int)cap->count1);
8251 curwin->w_set_curswant = TRUE;
8256 * Handle "U" command.
8258 static void
8259 nv_Undo(cap)
8260 cmdarg_T *cap;
8262 /* In Visual mode and typing "gUU" triggers an operator */
8263 if (cap->oap->op_type == OP_UPPER
8264 #ifdef FEAT_VISUAL
8265 || VIsual_active
8266 #endif
8269 /* translate "gUU" to "gUgU" */
8270 cap->cmdchar = 'g';
8271 cap->nchar = 'U';
8272 nv_operator(cap);
8274 else if (!checkclearopq(cap->oap))
8276 u_undoline();
8277 curwin->w_set_curswant = TRUE;
8282 * '~' command: If tilde is not an operator and Visual is off: swap case of a
8283 * single character.
8285 static void
8286 nv_tilde(cap)
8287 cmdarg_T *cap;
8289 if (!p_to
8290 #ifdef FEAT_VISUAL
8291 && !VIsual_active
8292 #endif
8293 && cap->oap->op_type != OP_TILDE)
8294 n_swapchar(cap);
8295 else
8296 nv_operator(cap);
8300 * Handle an operator command.
8301 * The actual work is done by do_pending_operator().
8303 static void
8304 nv_operator(cap)
8305 cmdarg_T *cap;
8307 int op_type;
8309 op_type = get_op_type(cap->cmdchar, cap->nchar);
8311 if (op_type == cap->oap->op_type) /* double operator works on lines */
8312 nv_lineop(cap);
8313 else if (!checkclearop(cap->oap))
8315 cap->oap->start = curwin->w_cursor;
8316 cap->oap->op_type = op_type;
8317 #ifdef FEAT_EVAL
8318 set_op_var(op_type);
8319 #endif
8323 #ifdef FEAT_EVAL
8325 * Set v:operator to the characters for "optype".
8327 static void
8328 set_op_var(optype)
8329 int optype;
8331 char_u opchars[3];
8333 if (optype == OP_NOP)
8334 set_vim_var_string(VV_OP, NULL, 0);
8335 else
8337 opchars[0] = get_op_char(optype);
8338 opchars[1] = get_extra_op_char(optype);
8339 opchars[2] = NUL;
8340 set_vim_var_string(VV_OP, opchars, -1);
8343 #endif
8346 * Handle linewise operator "dd", "yy", etc.
8348 * "_" is is a strange motion command that helps make operators more logical.
8349 * It is actually implemented, but not documented in the real Vi. This motion
8350 * command actually refers to "the current line". Commands like "dd" and "yy"
8351 * are really an alternate form of "d_" and "y_". It does accept a count, so
8352 * "d3_" works to delete 3 lines.
8354 static void
8355 nv_lineop(cap)
8356 cmdarg_T *cap;
8358 cap->oap->motion_type = MLINE;
8359 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
8360 clearopbeep(cap->oap);
8361 else if ( cap->oap->op_type == OP_DELETE
8362 || cap->oap->op_type == OP_LSHIFT
8363 || cap->oap->op_type == OP_RSHIFT)
8364 beginline(BL_SOL | BL_FIX);
8365 else if (cap->oap->op_type != OP_YANK) /* 'Y' does not move cursor */
8366 beginline(BL_WHITE | BL_FIX);
8370 * <Home> command.
8372 static void
8373 nv_home(cap)
8374 cmdarg_T *cap;
8376 /* CTRL-HOME is like "gg" */
8377 if (mod_mask & MOD_MASK_CTRL)
8378 nv_goto(cap);
8379 else
8381 cap->count0 = 1;
8382 nv_pipe(cap);
8384 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
8385 one-character line). */
8389 * "|" command.
8391 static void
8392 nv_pipe(cap)
8393 cmdarg_T *cap;
8395 cap->oap->motion_type = MCHAR;
8396 cap->oap->inclusive = FALSE;
8397 beginline(0);
8398 if (cap->count0 > 0)
8400 coladvance((colnr_T)(cap->count0 - 1));
8401 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
8403 else
8404 curwin->w_curswant = 0;
8405 /* keep curswant at the column where we wanted to go, not where
8406 we ended; differs if line is too short */
8407 curwin->w_set_curswant = FALSE;
8411 * Handle back-word command "b" and "B".
8412 * cap->arg is 1 for "B"
8414 static void
8415 nv_bck_word(cap)
8416 cmdarg_T *cap;
8418 cap->oap->motion_type = MCHAR;
8419 cap->oap->inclusive = FALSE;
8420 curwin->w_set_curswant = TRUE;
8421 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
8422 clearopbeep(cap->oap);
8423 #ifdef FEAT_FOLDING
8424 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8425 foldOpenCursor();
8426 #endif
8430 * Handle word motion commands "e", "E", "w" and "W".
8431 * cap->arg is TRUE for "E" and "W".
8433 static void
8434 nv_wordcmd(cap)
8435 cmdarg_T *cap;
8437 int n;
8438 int word_end;
8439 int flag = FALSE;
8440 pos_T startpos = curwin->w_cursor;
8443 * Set inclusive for the "E" and "e" command.
8445 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
8446 word_end = TRUE;
8447 else
8448 word_end = FALSE;
8449 cap->oap->inclusive = word_end;
8452 * "cw" and "cW" are a special case.
8454 if (!word_end && cap->oap->op_type == OP_CHANGE)
8456 n = gchar_cursor();
8457 if (n != NUL) /* not an empty line */
8459 if (vim_iswhite(n))
8462 * Reproduce a funny Vi behaviour: "cw" on a blank only
8463 * changes one character, not all blanks until the start of
8464 * the next word. Only do this when the 'w' flag is included
8465 * in 'cpoptions'.
8467 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
8469 cap->oap->inclusive = TRUE;
8470 cap->oap->motion_type = MCHAR;
8471 return;
8474 else
8477 * This is a little strange. To match what the real Vi does,
8478 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
8479 * that we are not on a space or a TAB. This seems impolite
8480 * at first, but it's really more what we mean when we say
8481 * 'cw'.
8482 * Another strangeness: When standing on the end of a word
8483 * "ce" will change until the end of the next wordt, but "cw"
8484 * will change only one character! This is done by setting
8485 * flag.
8487 cap->oap->inclusive = TRUE;
8488 word_end = TRUE;
8489 flag = TRUE;
8494 cap->oap->motion_type = MCHAR;
8495 curwin->w_set_curswant = TRUE;
8496 if (word_end)
8497 n = end_word(cap->count1, cap->arg, flag, FALSE);
8498 else
8499 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
8501 /* Don't leave the cursor on the NUL past the end of line. Unless we
8502 * didn't move it forward. */
8503 if (lt(startpos, curwin->w_cursor))
8504 adjust_cursor(cap->oap);
8506 if (n == FAIL && cap->oap->op_type == OP_NOP)
8507 clearopbeep(cap->oap);
8508 else
8510 #ifdef FEAT_VISUAL
8511 adjust_for_sel(cap);
8512 #endif
8513 #ifdef FEAT_FOLDING
8514 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8515 foldOpenCursor();
8516 #endif
8521 * Used after a movement command: If the cursor ends up on the NUL after the
8522 * end of the line, may move it back to the last character and make the motion
8523 * inclusive.
8525 static void
8526 adjust_cursor(oap)
8527 oparg_T *oap;
8529 /* The cursor cannot remain on the NUL when:
8530 * - the column is > 0
8531 * - not in Visual mode or 'selection' is "o"
8532 * - 'virtualedit' is not "all" and not "onemore".
8534 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
8535 #ifdef FEAT_VISUAL
8536 && (!VIsual_active || *p_sel == 'o')
8537 #endif
8538 #ifdef FEAT_VIRTUALEDIT
8539 && !virtual_active() && (ve_flags & VE_ONEMORE) == 0
8540 #endif
8543 --curwin->w_cursor.col;
8544 #ifdef FEAT_MBYTE
8545 /* prevent cursor from moving on the trail byte */
8546 if (has_mbyte)
8547 mb_adjust_cursor();
8548 #endif
8549 oap->inclusive = TRUE;
8554 * "0" and "^" commands.
8555 * cap->arg is the argument for beginline().
8557 static void
8558 nv_beginline(cap)
8559 cmdarg_T *cap;
8561 cap->oap->motion_type = MCHAR;
8562 cap->oap->inclusive = FALSE;
8563 beginline(cap->arg);
8564 #ifdef FEAT_FOLDING
8565 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8566 foldOpenCursor();
8567 #endif
8568 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
8569 one-character line). */
8572 #ifdef FEAT_VISUAL
8574 * In exclusive Visual mode, may include the last character.
8576 static void
8577 adjust_for_sel(cap)
8578 cmdarg_T *cap;
8580 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
8581 && gchar_cursor() != NUL && lt(VIsual, curwin->w_cursor))
8583 # ifdef FEAT_MBYTE
8584 if (has_mbyte)
8585 inc_cursor();
8586 else
8587 # endif
8588 ++curwin->w_cursor.col;
8589 cap->oap->inclusive = FALSE;
8594 * Exclude last character at end of Visual area for 'selection' == "exclusive".
8595 * Should check VIsual_mode before calling this.
8596 * Returns TRUE when backed up to the previous line.
8598 static int
8599 unadjust_for_sel()
8601 pos_T *pp;
8603 if (*p_sel == 'e' && !equalpos(VIsual, curwin->w_cursor))
8605 if (lt(VIsual, curwin->w_cursor))
8606 pp = &curwin->w_cursor;
8607 else
8608 pp = &VIsual;
8609 #ifdef FEAT_VIRTUALEDIT
8610 if (pp->coladd > 0)
8611 --pp->coladd;
8612 else
8613 #endif
8614 if (pp->col > 0)
8616 --pp->col;
8617 #ifdef FEAT_MBYTE
8618 mb_adjustpos(pp);
8619 #endif
8621 else if (pp->lnum > 1)
8623 --pp->lnum;
8624 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
8625 return TRUE;
8628 return FALSE;
8632 * SELECT key in Normal or Visual mode: end of Select mode mapping.
8634 static void
8635 nv_select(cap)
8636 cmdarg_T *cap;
8638 if (VIsual_active)
8639 VIsual_select = TRUE;
8640 else if (VIsual_reselect)
8642 cap->nchar = 'v'; /* fake "gv" command */
8643 cap->arg = TRUE;
8644 nv_g_cmd(cap);
8648 #endif
8651 * "G", "gg", CTRL-END, CTRL-HOME.
8652 * cap->arg is TRUE for "G".
8654 static void
8655 nv_goto(cap)
8656 cmdarg_T *cap;
8658 linenr_T lnum;
8660 if (cap->arg)
8661 lnum = curbuf->b_ml.ml_line_count;
8662 else
8663 lnum = 1L;
8664 cap->oap->motion_type = MLINE;
8665 setpcmark();
8667 /* When a count is given, use it instead of the default lnum */
8668 if (cap->count0 != 0)
8669 lnum = cap->count0;
8670 if (lnum < 1L)
8671 lnum = 1L;
8672 else if (lnum > curbuf->b_ml.ml_line_count)
8673 lnum = curbuf->b_ml.ml_line_count;
8674 curwin->w_cursor.lnum = lnum;
8675 beginline(BL_SOL | BL_FIX);
8676 #ifdef FEAT_FOLDING
8677 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
8678 foldOpenCursor();
8679 #endif
8683 * CTRL-\ in Normal mode.
8685 static void
8686 nv_normal(cap)
8687 cmdarg_T *cap;
8689 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
8691 clearop(cap->oap);
8692 if (restart_edit != 0 && mode_displayed)
8693 clear_cmdline = TRUE; /* unshow mode later */
8694 restart_edit = 0;
8695 #ifdef FEAT_CMDWIN
8696 if (cmdwin_type != 0)
8697 cmdwin_result = Ctrl_C;
8698 #endif
8699 #ifdef FEAT_VISUAL
8700 if (VIsual_active)
8702 end_visual_mode(); /* stop Visual */
8703 redraw_curbuf_later(INVERTED);
8705 #endif
8706 /* CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. */
8707 if (cap->nchar == Ctrl_G && p_im)
8708 restart_edit = 'a';
8710 else
8711 clearopbeep(cap->oap);
8715 * ESC in Normal mode: beep, but don't flush buffers.
8716 * Don't even beep if we are canceling a command.
8718 static void
8719 nv_esc(cap)
8720 cmdarg_T *cap;
8722 int no_reason;
8724 no_reason = (cap->oap->op_type == OP_NOP
8725 && cap->opcount == 0
8726 && cap->count0 == 0
8727 && cap->oap->regname == 0
8728 && !p_im);
8730 if (cap->arg) /* TRUE for CTRL-C */
8732 if (restart_edit == 0
8733 #ifdef FEAT_CMDWIN
8734 && cmdwin_type == 0
8735 #endif
8736 #ifdef FEAT_VISUAL
8737 && !VIsual_active
8738 #endif
8739 && no_reason)
8740 MSG(_("Type :quit<Enter> to exit Vim"));
8742 /* Don't reset "restart_edit" when 'insertmode' is set, it won't be
8743 * set again below when halfway a mapping. */
8744 if (!p_im)
8745 restart_edit = 0;
8746 #ifdef FEAT_CMDWIN
8747 if (cmdwin_type != 0)
8749 cmdwin_result = K_IGNORE;
8750 got_int = FALSE; /* don't stop executing autocommands et al. */
8751 return;
8753 #endif
8756 #ifdef FEAT_VISUAL
8757 if (VIsual_active)
8759 end_visual_mode(); /* stop Visual */
8760 check_cursor_col(); /* make sure cursor is not beyond EOL */
8761 curwin->w_set_curswant = TRUE;
8762 redraw_curbuf_later(INVERTED);
8764 else
8765 #endif
8766 if (no_reason)
8767 vim_beep();
8768 clearop(cap->oap);
8770 /* A CTRL-C is often used at the start of a menu. When 'insertmode' is
8771 * set return to Insert mode afterwards. */
8772 if (restart_edit == 0 && goto_im()
8773 #ifdef FEAT_EX_EXTRA
8774 && ex_normal_busy == 0
8775 #endif
8777 restart_edit = 'a';
8781 * Handle "A", "a", "I", "i" and <Insert> commands.
8783 static void
8784 nv_edit(cap)
8785 cmdarg_T *cap;
8787 /* <Insert> is equal to "i" */
8788 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
8789 cap->cmdchar = 'i';
8791 #ifdef FEAT_VISUAL
8792 /* in Visual mode "A" and "I" are an operator */
8793 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
8794 v_visop(cap);
8796 /* in Visual mode and after an operator "a" and "i" are for text objects */
8797 else
8798 #endif
8799 if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
8800 && (cap->oap->op_type != OP_NOP
8801 #ifdef FEAT_VISUAL
8802 || VIsual_active
8803 #endif
8806 #ifdef FEAT_TEXTOBJ
8807 nv_object(cap);
8808 #else
8809 clearopbeep(cap->oap);
8810 #endif
8812 else if (!curbuf->b_p_ma && !p_im)
8814 /* Only give this error when 'insertmode' is off. */
8815 EMSG(_(e_modifiable));
8816 clearop(cap->oap);
8818 else if (!checkclearopq(cap->oap))
8820 switch (cap->cmdchar)
8822 case 'A': /* "A"ppend after the line */
8823 curwin->w_set_curswant = TRUE;
8824 #ifdef FEAT_VIRTUALEDIT
8825 if (ve_flags == VE_ALL)
8827 int save_State = State;
8829 /* Pretent Insert mode here to allow the cursor on the
8830 * character past the end of the line */
8831 State = INSERT;
8832 coladvance((colnr_T)MAXCOL);
8833 State = save_State;
8835 else
8836 #endif
8837 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
8838 break;
8840 case 'I': /* "I"nsert before the first non-blank */
8841 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
8842 beginline(BL_WHITE);
8843 else
8844 beginline(BL_WHITE|BL_FIX);
8845 break;
8847 case 'a': /* "a"ppend is like "i"nsert on the next character. */
8848 #ifdef FEAT_VIRTUALEDIT
8849 /* increment coladd when in virtual space, increment the
8850 * column otherwise, also to append after an unprintable char */
8851 if (virtual_active()
8852 && (curwin->w_cursor.coladd > 0
8853 || *ml_get_cursor() == NUL
8854 || *ml_get_cursor() == TAB))
8855 curwin->w_cursor.coladd++;
8856 else
8857 #endif
8858 if (*ml_get_cursor() != NUL)
8859 inc_cursor();
8860 break;
8863 #ifdef FEAT_VIRTUALEDIT
8864 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
8866 int save_State = State;
8868 /* Pretent Insert mode here to allow the cursor on the
8869 * character past the end of the line */
8870 State = INSERT;
8871 coladvance(getviscol());
8872 State = save_State;
8874 #endif
8876 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
8881 * Invoke edit() and take care of "restart_edit" and the return value.
8883 static void
8884 invoke_edit(cap, repl, cmd, startln)
8885 cmdarg_T *cap;
8886 int repl; /* "r" or "gr" command */
8887 int cmd;
8888 int startln;
8890 int restart_edit_save = 0;
8892 /* Complicated: When the user types "a<C-O>a" we don't want to do Insert
8893 * mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
8894 * it. */
8895 if (repl || !stuff_empty())
8896 restart_edit_save = restart_edit;
8897 else
8898 restart_edit_save = 0;
8900 /* Always reset "restart_edit", this is not a restarted edit. */
8901 restart_edit = 0;
8903 if (edit(cmd, startln, cap->count1))
8904 cap->retval |= CA_COMMAND_BUSY;
8906 if (restart_edit == 0)
8907 restart_edit = restart_edit_save;
8910 #ifdef FEAT_TEXTOBJ
8912 * "a" or "i" while an operator is pending or in Visual mode: object motion.
8914 static void
8915 nv_object(cap)
8916 cmdarg_T *cap;
8918 int flag;
8919 int include;
8920 char_u *mps_save;
8922 if (cap->cmdchar == 'i')
8923 include = FALSE; /* "ix" = inner object: exclude white space */
8924 else
8925 include = TRUE; /* "ax" = an object: include white space */
8927 /* Make sure (), [], {} and <> are in 'matchpairs' */
8928 mps_save = curbuf->b_p_mps;
8929 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
8931 switch (cap->nchar)
8933 case 'w': /* "aw" = a word */
8934 flag = current_word(cap->oap, cap->count1, include, FALSE);
8935 break;
8936 case 'W': /* "aW" = a WORD */
8937 flag = current_word(cap->oap, cap->count1, include, TRUE);
8938 break;
8939 case 'b': /* "ab" = a braces block */
8940 case '(':
8941 case ')':
8942 flag = current_block(cap->oap, cap->count1, include, '(', ')');
8943 break;
8944 case 'B': /* "aB" = a Brackets block */
8945 case '{':
8946 case '}':
8947 flag = current_block(cap->oap, cap->count1, include, '{', '}');
8948 break;
8949 case '[': /* "a[" = a [] block */
8950 case ']':
8951 flag = current_block(cap->oap, cap->count1, include, '[', ']');
8952 break;
8953 case '<': /* "a<" = a <> block */
8954 case '>':
8955 flag = current_block(cap->oap, cap->count1, include, '<', '>');
8956 break;
8957 case 't': /* "at" = a tag block (xml and html) */
8958 flag = current_tagblock(cap->oap, cap->count1, include);
8959 break;
8960 case 'p': /* "ap" = a paragraph */
8961 flag = current_par(cap->oap, cap->count1, include, 'p');
8962 break;
8963 case 's': /* "as" = a sentence */
8964 flag = current_sent(cap->oap, cap->count1, include);
8965 break;
8966 case '"': /* "a"" = a double quoted string */
8967 case '\'': /* "a'" = a single quoted string */
8968 case '`': /* "a`" = a backtick quoted string */
8969 flag = current_quote(cap->oap, cap->count1, include,
8970 cap->nchar);
8971 break;
8972 #if 0 /* TODO */
8973 case 'S': /* "aS" = a section */
8974 case 'f': /* "af" = a filename */
8975 case 'u': /* "au" = a URL */
8976 #endif
8977 default:
8978 flag = FAIL;
8979 break;
8982 curbuf->b_p_mps = mps_save;
8983 if (flag == FAIL)
8984 clearopbeep(cap->oap);
8985 adjust_cursor_col();
8986 curwin->w_set_curswant = TRUE;
8988 #endif
8991 * "q" command: Start/stop recording.
8992 * "q:", "q/", "q?": edit command-line in command-line window.
8994 static void
8995 nv_record(cap)
8996 cmdarg_T *cap;
8998 if (cap->oap->op_type == OP_FORMAT)
9000 /* "gqq" is the same as "gqgq": format line */
9001 cap->cmdchar = 'g';
9002 cap->nchar = 'q';
9003 nv_operator(cap);
9005 else if (!checkclearop(cap->oap))
9007 #ifdef FEAT_CMDWIN
9008 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
9010 stuffcharReadbuff(cap->nchar);
9011 stuffcharReadbuff(K_CMDWIN);
9013 else
9014 #endif
9015 /* (stop) recording into a named register, unless executing a
9016 * register */
9017 if (!Exec_reg && do_record(cap->nchar) == FAIL)
9018 clearopbeep(cap->oap);
9023 * Handle the "@r" command.
9025 static void
9026 nv_at(cap)
9027 cmdarg_T *cap;
9029 if (checkclearop(cap->oap))
9030 return;
9031 #ifdef FEAT_EVAL
9032 if (cap->nchar == '=')
9034 if (get_expr_register() == NUL)
9035 return;
9037 #endif
9038 while (cap->count1-- && !got_int)
9040 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
9042 clearopbeep(cap->oap);
9043 break;
9045 line_breakcheck();
9050 * Handle the CTRL-U and CTRL-D commands.
9052 static void
9053 nv_halfpage(cap)
9054 cmdarg_T *cap;
9056 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
9057 || (cap->cmdchar == Ctrl_D
9058 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
9059 clearopbeep(cap->oap);
9060 else if (!checkclearop(cap->oap))
9061 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
9065 * Handle "J" or "gJ" command.
9067 static void
9068 nv_join(cap)
9069 cmdarg_T *cap;
9071 #ifdef FEAT_VISUAL
9072 if (VIsual_active) /* join the visual lines */
9073 nv_operator(cap);
9074 else
9075 #endif
9076 if (!checkclearop(cap->oap))
9078 if (cap->count0 <= 1)
9079 cap->count0 = 2; /* default for join is two lines! */
9080 if (curwin->w_cursor.lnum + cap->count0 - 1 >
9081 curbuf->b_ml.ml_line_count)
9082 clearopbeep(cap->oap); /* beyond last line */
9083 else
9085 prep_redo(cap->oap->regname, cap->count0,
9086 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
9087 do_do_join(cap->count0, cap->nchar == NUL);
9093 * "P", "gP", "p" and "gp" commands.
9095 static void
9096 nv_put(cap)
9097 cmdarg_T *cap;
9099 #ifdef FEAT_VISUAL
9100 int regname = 0;
9101 void *reg1 = NULL, *reg2 = NULL;
9102 int empty = FALSE;
9103 int was_visual = FALSE;
9104 #endif
9105 int dir;
9106 int flags = 0;
9108 if (cap->oap->op_type != OP_NOP)
9110 #ifdef FEAT_DIFF
9111 /* "dp" is ":diffput" */
9112 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
9114 clearop(cap->oap);
9115 nv_diffgetput(TRUE);
9117 else
9118 #endif
9119 clearopbeep(cap->oap);
9121 else
9123 dir = (cap->cmdchar == 'P'
9124 || (cap->cmdchar == 'g' && cap->nchar == 'P'))
9125 ? BACKWARD : FORWARD;
9126 prep_redo_cmd(cap);
9127 if (cap->cmdchar == 'g')
9128 flags |= PUT_CURSEND;
9130 #ifdef FEAT_VISUAL
9131 if (VIsual_active)
9133 /* Putting in Visual mode: The put text replaces the selected
9134 * text. First delete the selected text, then put the new text.
9135 * Need to save and restore the registers that the delete
9136 * overwrites if the old contents is being put.
9138 was_visual = TRUE;
9139 regname = cap->oap->regname;
9140 # ifdef FEAT_CLIPBOARD
9141 adjust_clip_reg(&regname);
9142 # endif
9143 if (regname == 0 || VIM_ISDIGIT(regname)
9144 # ifdef FEAT_CLIPBOARD
9145 || (clip_unnamed && (regname == '*' || regname == '+'))
9146 # endif
9150 /* the delete is going to overwrite the register we want to
9151 * put, save it first. */
9152 reg1 = get_register(regname, TRUE);
9155 /* Now delete the selected text. */
9156 cap->cmdchar = 'd';
9157 cap->nchar = NUL;
9158 cap->oap->regname = NUL;
9159 nv_operator(cap);
9160 do_pending_operator(cap, 0, FALSE);
9161 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
9163 /* delete PUT_LINE_BACKWARD; */
9164 cap->oap->regname = regname;
9166 if (reg1 != NULL)
9168 /* Delete probably changed the register we want to put, save
9169 * it first. Then put back what was there before the delete. */
9170 reg2 = get_register(regname, FALSE);
9171 put_register(regname, reg1);
9174 /* When deleted a linewise Visual area, put the register as
9175 * lines to avoid it joined with the next line. When deletion was
9176 * characterwise, split a line when putting lines. */
9177 if (VIsual_mode == 'V')
9178 flags |= PUT_LINE;
9179 else if (VIsual_mode == 'v')
9180 flags |= PUT_LINE_SPLIT;
9181 if (VIsual_mode == Ctrl_V && dir == FORWARD)
9182 flags |= PUT_LINE_FORWARD;
9183 dir = BACKWARD;
9184 if ((VIsual_mode != 'V'
9185 && curwin->w_cursor.col < curbuf->b_op_start.col)
9186 || (VIsual_mode == 'V'
9187 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
9188 /* cursor is at the end of the line or end of file, put
9189 * forward. */
9190 dir = FORWARD;
9192 #endif
9193 do_put(cap->oap->regname, dir, cap->count1, flags);
9195 #ifdef FEAT_VISUAL
9196 /* If a register was saved, put it back now. */
9197 if (reg2 != NULL)
9198 put_register(regname, reg2);
9200 /* What to reselect with "gv"? Selecting the just put text seems to
9201 * be the most useful, since the original text was removed. */
9202 if (was_visual)
9204 curbuf->b_visual.vi_start = curbuf->b_op_start;
9205 curbuf->b_visual.vi_end = curbuf->b_op_end;
9208 /* When all lines were selected and deleted do_put() leaves an empty
9209 * line that needs to be deleted now. */
9210 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
9212 ml_delete(curbuf->b_ml.ml_line_count, TRUE);
9214 /* If the cursor was in that line, move it to the end of the last
9215 * line. */
9216 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
9218 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
9219 coladvance((colnr_T)MAXCOL);
9222 #endif
9223 auto_format(FALSE, TRUE);
9228 * "o" and "O" commands.
9230 static void
9231 nv_open(cap)
9232 cmdarg_T *cap;
9234 #ifdef FEAT_DIFF
9235 /* "do" is ":diffget" */
9236 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
9238 clearop(cap->oap);
9239 nv_diffgetput(FALSE);
9241 else
9242 #endif
9243 #ifdef FEAT_VISUAL
9244 if (VIsual_active) /* switch start and end of visual */
9245 v_swap_corners(cap->cmdchar);
9246 else
9247 #endif
9248 n_opencmd(cap);
9251 #ifdef FEAT_SNIFF
9252 /*ARGSUSED*/
9253 static void
9254 nv_sniff(cap)
9255 cmdarg_T *cap;
9257 ProcessSniffRequests();
9259 #endif
9261 #ifdef FEAT_NETBEANS_INTG
9262 static void
9263 nv_nbcmd(cap)
9264 cmdarg_T *cap;
9266 netbeans_keycommand(cap->nchar);
9268 #endif
9270 #ifdef FEAT_DND
9271 /*ARGSUSED*/
9272 static void
9273 nv_drop(cap)
9274 cmdarg_T *cap;
9276 do_put('~', BACKWARD, 1L, PUT_CURSEND);
9278 #endif
9280 #ifdef FEAT_AUTOCMD
9282 * Trigger CursorHold event.
9283 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
9284 * input buffer. "did_cursorhold" is set to avoid retriggering.
9286 /*ARGSUSED*/
9287 static void
9288 nv_cursorhold(cap)
9289 cmdarg_T *cap;
9291 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
9292 did_cursorhold = TRUE;
9293 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
9295 #endif