blob: 207576698e76cfa1e0c2891adcf3e6665509f2be [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * normal.c: Contains the main routine for processing characters in command
11 * mode. Communicates closely with the code in ops.c to handle
12 * the operators.
13 */
14
15#include "vim.h"
16
17#ifdef FEAT_VISUAL
18/*
19 * The Visual area is remembered for reselection.
20 */
21static int resel_VIsual_mode = NUL; /* 'v', 'V', or Ctrl-V */
22static linenr_T resel_VIsual_line_count; /* number of lines */
23static colnr_T resel_VIsual_col; /* nr of cols or end col */
24
25static int restart_VIsual_select = 0;
26#endif
27
28static int
29# ifdef __BORLANDC__
30_RTLENTRYF
31# endif
32 nv_compare __ARGS((const void *s1, const void *s2));
33static int find_command __ARGS((int cmdchar));
34static void op_colon __ARGS((oparg_T *oap));
35#if defined(FEAT_MOUSE) && defined(FEAT_VISUAL)
36static void find_start_of_word __ARGS((pos_T *));
37static void find_end_of_word __ARGS((pos_T *));
38static int get_mouse_class __ARGS((char_u *p));
39#endif
40static void prep_redo_cmd __ARGS((cmdarg_T *cap));
41static void prep_redo __ARGS((int regname, long, int, int, int, int, int));
42static int checkclearop __ARGS((oparg_T *oap));
43static int checkclearopq __ARGS((oparg_T *oap));
44static void clearop __ARGS((oparg_T *oap));
45static void clearopbeep __ARGS((oparg_T *oap));
46#ifdef FEAT_VISUAL
47static void unshift_special __ARGS((cmdarg_T *cap));
48#endif
49#ifdef FEAT_CMDL_INFO
50static void del_from_showcmd __ARGS((int));
51#endif
52
53/*
54 * nv_*(): functions called to handle Normal and Visual mode commands.
55 * n_*(): functions called to handle Normal mode commands.
56 * v_*(): functions called to handle Visual mode commands.
57 */
58static void nv_ignore __ARGS((cmdarg_T *cap));
59static void nv_error __ARGS((cmdarg_T *cap));
60static void nv_help __ARGS((cmdarg_T *cap));
61static void nv_addsub __ARGS((cmdarg_T *cap));
62static void nv_page __ARGS((cmdarg_T *cap));
63static void nv_gd __ARGS((oparg_T *oap, int nchar));
64static int nv_screengo __ARGS((oparg_T *oap, int dir, long dist));
65#ifdef FEAT_MOUSE
66static void nv_mousescroll __ARGS((cmdarg_T *cap));
67static void nv_mouse __ARGS((cmdarg_T *cap));
68#endif
69static void nv_scroll_line __ARGS((cmdarg_T *cap));
70static void nv_zet __ARGS((cmdarg_T *cap));
71#ifdef FEAT_GUI
72static void nv_ver_scrollbar __ARGS((cmdarg_T *cap));
73static void nv_hor_scrollbar __ARGS((cmdarg_T *cap));
74#endif
75static void nv_exmode __ARGS((cmdarg_T *cap));
76static void nv_colon __ARGS((cmdarg_T *cap));
77static void nv_ctrlg __ARGS((cmdarg_T *cap));
78static void nv_ctrlh __ARGS((cmdarg_T *cap));
79static void nv_clear __ARGS((cmdarg_T *cap));
80static void nv_ctrlo __ARGS((cmdarg_T *cap));
81static void nv_hat __ARGS((cmdarg_T *cap));
82static void nv_Zet __ARGS((cmdarg_T *cap));
83static void nv_ident __ARGS((cmdarg_T *cap));
84#ifdef FEAT_VISUAL
85static int get_visual_text __ARGS((cmdarg_T *cap, char_u **pp, int *lenp));
86#endif
87static void nv_tagpop __ARGS((cmdarg_T *cap));
88static void nv_scroll __ARGS((cmdarg_T *cap));
89static void nv_right __ARGS((cmdarg_T *cap));
90static void nv_left __ARGS((cmdarg_T *cap));
91static void nv_up __ARGS((cmdarg_T *cap));
92static void nv_down __ARGS((cmdarg_T *cap));
93#ifdef FEAT_SEARCHPATH
94static void nv_gotofile __ARGS((cmdarg_T *cap));
95#endif
96static void nv_end __ARGS((cmdarg_T *cap));
97static void nv_dollar __ARGS((cmdarg_T *cap));
98static void nv_search __ARGS((cmdarg_T *cap));
99static void nv_next __ARGS((cmdarg_T *cap));
100static void normal_search __ARGS((cmdarg_T *cap, int dir, char_u *pat, int opt));
101static void nv_csearch __ARGS((cmdarg_T *cap));
102static void nv_brackets __ARGS((cmdarg_T *cap));
103static void nv_percent __ARGS((cmdarg_T *cap));
104static void nv_brace __ARGS((cmdarg_T *cap));
105static void nv_mark __ARGS((cmdarg_T *cap));
106static void nv_findpar __ARGS((cmdarg_T *cap));
107static void nv_undo __ARGS((cmdarg_T *cap));
108static void nv_kundo __ARGS((cmdarg_T *cap));
109static void nv_Replace __ARGS((cmdarg_T *cap));
110#ifdef FEAT_VREPLACE
111static void nv_vreplace __ARGS((cmdarg_T *cap));
112#endif
113#ifdef FEAT_VISUAL
114static void v_swap_corners __ARGS((int cmdchar));
115#endif
116static void nv_replace __ARGS((cmdarg_T *cap));
117static void n_swapchar __ARGS((cmdarg_T *cap));
118static void nv_cursormark __ARGS((cmdarg_T *cap, int flag, pos_T *pos));
119#ifdef FEAT_VISUAL
120static void v_visop __ARGS((cmdarg_T *cap));
121#endif
122static void nv_subst __ARGS((cmdarg_T *cap));
123static void nv_abbrev __ARGS((cmdarg_T *cap));
124static void nv_optrans __ARGS((cmdarg_T *cap));
125static void nv_gomark __ARGS((cmdarg_T *cap));
126static void nv_pcmark __ARGS((cmdarg_T *cap));
127static void nv_regname __ARGS((cmdarg_T *cap));
128#ifdef FEAT_VISUAL
129static void nv_visual __ARGS((cmdarg_T *cap));
130static void n_start_visual_mode __ARGS((int c));
131#endif
132static void nv_window __ARGS((cmdarg_T *cap));
133static void nv_suspend __ARGS((cmdarg_T *cap));
134static void nv_g_cmd __ARGS((cmdarg_T *cap));
135static void n_opencmd __ARGS((cmdarg_T *cap));
136static void nv_dot __ARGS((cmdarg_T *cap));
137static void nv_redo __ARGS((cmdarg_T *cap));
138static void nv_Undo __ARGS((cmdarg_T *cap));
139static void nv_tilde __ARGS((cmdarg_T *cap));
140static void nv_operator __ARGS((cmdarg_T *cap));
141static void nv_lineop __ARGS((cmdarg_T *cap));
142static void nv_home __ARGS((cmdarg_T *cap));
143static void nv_pipe __ARGS((cmdarg_T *cap));
144static void nv_bck_word __ARGS((cmdarg_T *cap));
145static void nv_wordcmd __ARGS((cmdarg_T *cap));
146static void nv_beginline __ARGS((cmdarg_T *cap));
147#ifdef FEAT_VISUAL
148static void adjust_for_sel __ARGS((cmdarg_T *cap));
149static int unadjust_for_sel __ARGS((void));
150static void nv_select __ARGS((cmdarg_T *cap));
151#endif
152static void nv_goto __ARGS((cmdarg_T *cap));
153static void nv_normal __ARGS((cmdarg_T *cap));
154static void nv_esc __ARGS((cmdarg_T *oap));
155static void nv_edit __ARGS((cmdarg_T *cap));
156static void invoke_edit __ARGS((cmdarg_T *cap, int repl, int cmd, int startln));
157#ifdef FEAT_TEXTOBJ
158static void nv_object __ARGS((cmdarg_T *cap));
159#endif
160static void nv_record __ARGS((cmdarg_T *cap));
161static void nv_at __ARGS((cmdarg_T *cap));
162static void nv_halfpage __ARGS((cmdarg_T *cap));
163static void nv_join __ARGS((cmdarg_T *cap));
164static void nv_put __ARGS((cmdarg_T *cap));
165static void nv_open __ARGS((cmdarg_T *cap));
166#ifdef FEAT_SNIFF
167static void nv_sniff __ARGS((cmdarg_T *cap));
168#endif
169#ifdef FEAT_NETBEANS_INTG
170static void nv_nbcmd __ARGS((cmdarg_T *cap));
171#endif
172#ifdef FEAT_DND
173static void nv_drop __ARGS((cmdarg_T *cap));
174#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +0000175#ifdef FEAT_AUTOCMD
176static void nv_cursorhold __ARGS((cmdarg_T *cap));
177#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178
179/*
180 * Function to be called for a Normal or Visual mode command.
181 * The argument is a cmdarg_T.
182 */
183typedef void (*nv_func_T) __ARGS((cmdarg_T *cap));
184
185/* Values for cmd_flags. */
186#define NV_NCH 0x01 /* may need to get a second char */
187#define NV_NCH_NOP (0x02|NV_NCH) /* get second char when no operator pending */
188#define NV_NCH_ALW (0x04|NV_NCH) /* always get a second char */
189#define NV_LANG 0x08 /* second char needs language adjustment */
190
191#define NV_SS 0x10 /* may start selection */
192#define NV_SSS 0x20 /* may start selection with shift modifier */
193#define NV_STS 0x40 /* may stop selection without shift modif. */
194#define NV_RL 0x80 /* 'rightleft' modifies command */
195#define NV_KEEPREG 0x100 /* don't clear regname */
196#define NV_NCW 0x200 /* not allowed in command-line window */
197
198/*
199 * Generally speaking, every Normal mode command should either clear any
200 * pending operator (with *clearop*()), or set the motion type variable
201 * oap->motion_type.
202 *
203 * When a cursor motion command is made, it is marked as being a character or
204 * line oriented motion. Then, if an operator is in effect, the operation
205 * becomes character or line oriented accordingly.
206 */
207
208/*
209 * This table contains one entry for every Normal or Visual mode command.
210 * The order doesn't matter, init_normal_cmds() will create a sorted index.
211 * It is faster when all keys from zero to '~' are present.
212 */
213static const struct nv_cmd
214{
215 int cmd_char; /* (first) command character */
216 nv_func_T cmd_func; /* function for this command */
217 short_u cmd_flags; /* NV_ flags */
218 short cmd_arg; /* value for ca.arg */
219} nv_cmds[] =
220{
221 {NUL, nv_error, 0, 0},
222 {Ctrl_A, nv_addsub, 0, 0},
223 {Ctrl_B, nv_page, NV_STS, BACKWARD},
224 {Ctrl_C, nv_esc, 0, TRUE},
225 {Ctrl_D, nv_halfpage, 0, 0},
226 {Ctrl_E, nv_scroll_line, 0, TRUE},
227 {Ctrl_F, nv_page, NV_STS, FORWARD},
228 {Ctrl_G, nv_ctrlg, 0, 0},
229 {Ctrl_H, nv_ctrlh, 0, 0},
230 {Ctrl_I, nv_pcmark, 0, 0},
231 {NL, nv_down, 0, FALSE},
232 {Ctrl_K, nv_error, 0, 0},
233 {Ctrl_L, nv_clear, 0, 0},
234 {CAR, nv_down, 0, TRUE},
235 {Ctrl_N, nv_down, NV_STS, FALSE},
236 {Ctrl_O, nv_ctrlo, 0, 0},
237 {Ctrl_P, nv_up, NV_STS, FALSE},
Bram Moolenaardf177f62005-02-22 08:39:57 +0000238#ifdef FEAT_VISUAL
239 {Ctrl_Q, nv_visual, 0, FALSE},
240#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 {Ctrl_Q, nv_ignore, 0, 0},
Bram Moolenaardf177f62005-02-22 08:39:57 +0000242#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243 {Ctrl_R, nv_redo, 0, 0},
244 {Ctrl_S, nv_ignore, 0, 0},
245 {Ctrl_T, nv_tagpop, NV_NCW, 0},
246 {Ctrl_U, nv_halfpage, 0, 0},
247#ifdef FEAT_VISUAL
248 {Ctrl_V, nv_visual, 0, FALSE},
249 {'V', nv_visual, 0, FALSE},
250 {'v', nv_visual, 0, FALSE},
251#else
252 {Ctrl_V, nv_error, 0, 0},
253 {'V', nv_error, 0, 0},
254 {'v', nv_error, 0, 0},
255#endif
256 {Ctrl_W, nv_window, 0, 0},
257 {Ctrl_X, nv_addsub, 0, 0},
258 {Ctrl_Y, nv_scroll_line, 0, FALSE},
259 {Ctrl_Z, nv_suspend, 0, 0},
260 {ESC, nv_esc, 0, FALSE},
261 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0},
262 {Ctrl_RSB, nv_ident, NV_NCW, 0},
263 {Ctrl_HAT, nv_hat, NV_NCW, 0},
264 {Ctrl__, nv_error, 0, 0},
265 {' ', nv_right, 0, 0},
266 {'!', nv_operator, 0, 0},
267 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0},
268 {'#', nv_ident, 0, 0},
269 {'$', nv_dollar, 0, 0},
270 {'%', nv_percent, 0, 0},
271 {'&', nv_optrans, 0, 0},
272 {'\'', nv_gomark, NV_NCH_ALW, TRUE},
273 {'(', nv_brace, 0, BACKWARD},
274 {')', nv_brace, 0, FORWARD},
275 {'*', nv_ident, 0, 0},
276 {'+', nv_down, 0, TRUE},
277 {',', nv_csearch, 0, TRUE},
278 {'-', nv_up, 0, TRUE},
279 {'.', nv_dot, NV_KEEPREG, 0},
280 {'/', nv_search, 0, FALSE},
281 {'0', nv_beginline, 0, 0},
282 {'1', nv_ignore, 0, 0},
283 {'2', nv_ignore, 0, 0},
284 {'3', nv_ignore, 0, 0},
285 {'4', nv_ignore, 0, 0},
286 {'5', nv_ignore, 0, 0},
287 {'6', nv_ignore, 0, 0},
288 {'7', nv_ignore, 0, 0},
289 {'8', nv_ignore, 0, 0},
290 {'9', nv_ignore, 0, 0},
291 {':', nv_colon, 0, 0},
292 {';', nv_csearch, 0, FALSE},
293 {'<', nv_operator, NV_RL, 0},
294 {'=', nv_operator, 0, 0},
295 {'>', nv_operator, NV_RL, 0},
296 {'?', nv_search, 0, FALSE},
297 {'@', nv_at, NV_NCH_NOP, FALSE},
298 {'A', nv_edit, 0, 0},
299 {'B', nv_bck_word, 0, 1},
300 {'C', nv_abbrev, NV_KEEPREG, 0},
301 {'D', nv_abbrev, NV_KEEPREG, 0},
302 {'E', nv_wordcmd, 0, TRUE},
303 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
304 {'G', nv_goto, 0, TRUE},
305 {'H', nv_scroll, 0, 0},
306 {'I', nv_edit, 0, 0},
307 {'J', nv_join, 0, 0},
308 {'K', nv_ident, 0, 0},
309 {'L', nv_scroll, 0, 0},
310 {'M', nv_scroll, 0, 0},
311 {'N', nv_next, 0, SEARCH_REV},
312 {'O', nv_open, 0, 0},
313 {'P', nv_put, 0, 0},
314 {'Q', nv_exmode, NV_NCW, 0},
315 {'R', nv_Replace, 0, FALSE},
316 {'S', nv_subst, NV_KEEPREG, 0},
317 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
318 {'U', nv_Undo, 0, 0},
319 {'W', nv_wordcmd, 0, TRUE},
320 {'X', nv_abbrev, NV_KEEPREG, 0},
321 {'Y', nv_abbrev, NV_KEEPREG, 0},
322 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0},
323 {'[', nv_brackets, NV_NCH_ALW, BACKWARD},
324 {'\\', nv_error, 0, 0},
325 {']', nv_brackets, NV_NCH_ALW, FORWARD},
326 {'^', nv_beginline, 0, BL_WHITE | BL_FIX},
327 {'_', nv_lineop, 0, 0},
328 {'`', nv_gomark, NV_NCH_ALW, FALSE},
329 {'a', nv_edit, NV_NCH, 0},
330 {'b', nv_bck_word, 0, 0},
331 {'c', nv_operator, 0, 0},
332 {'d', nv_operator, 0, 0},
333 {'e', nv_wordcmd, 0, FALSE},
334 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
335 {'g', nv_g_cmd, NV_NCH_ALW, FALSE},
336 {'h', nv_left, NV_RL, 0},
337 {'i', nv_edit, NV_NCH, 0},
338 {'j', nv_down, 0, FALSE},
339 {'k', nv_up, 0, FALSE},
340 {'l', nv_right, NV_RL, 0},
341 {'m', nv_mark, NV_NCH_NOP, 0},
342 {'n', nv_next, 0, 0},
343 {'o', nv_open, 0, 0},
344 {'p', nv_put, 0, 0},
345 {'q', nv_record, NV_NCH, 0},
346 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0},
347 {'s', nv_subst, NV_KEEPREG, 0},
348 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
349 {'u', nv_undo, 0, 0},
350 {'w', nv_wordcmd, 0, FALSE},
351 {'x', nv_abbrev, NV_KEEPREG, 0},
352 {'y', nv_operator, 0, 0},
353 {'z', nv_zet, NV_NCH_ALW, 0},
354 {'{', nv_findpar, 0, BACKWARD},
355 {'|', nv_pipe, 0, 0},
356 {'}', nv_findpar, 0, FORWARD},
357 {'~', nv_tilde, 0, 0},
358
359 /* pound sign */
360 {POUND, nv_ident, 0, 0},
361#ifdef FEAT_MOUSE
362 {K_MOUSEUP, nv_mousescroll, 0, TRUE},
363 {K_MOUSEDOWN, nv_mousescroll, 0, FALSE},
364 {K_LEFTMOUSE, nv_mouse, 0, 0},
365 {K_LEFTMOUSE_NM, nv_mouse, 0, 0},
366 {K_LEFTDRAG, nv_mouse, 0, 0},
367 {K_LEFTRELEASE, nv_mouse, 0, 0},
368 {K_LEFTRELEASE_NM, nv_mouse, 0, 0},
369 {K_MIDDLEMOUSE, nv_mouse, 0, 0},
370 {K_MIDDLEDRAG, nv_mouse, 0, 0},
371 {K_MIDDLERELEASE, nv_mouse, 0, 0},
372 {K_RIGHTMOUSE, nv_mouse, 0, 0},
373 {K_RIGHTDRAG, nv_mouse, 0, 0},
374 {K_RIGHTRELEASE, nv_mouse, 0, 0},
375 {K_X1MOUSE, nv_mouse, 0, 0},
376 {K_X1DRAG, nv_mouse, 0, 0},
377 {K_X1RELEASE, nv_mouse, 0, 0},
378 {K_X2MOUSE, nv_mouse, 0, 0},
379 {K_X2DRAG, nv_mouse, 0, 0},
380 {K_X2RELEASE, nv_mouse, 0, 0},
381#endif
382 {K_IGNORE, nv_ignore, 0, 0},
383 {K_INS, nv_edit, 0, 0},
384 {K_KINS, nv_edit, 0, 0},
385 {K_BS, nv_ctrlh, 0, 0},
386 {K_UP, nv_up, NV_SSS|NV_STS, FALSE},
387 {K_S_UP, nv_page, NV_SS, BACKWARD},
388 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE},
389 {K_S_DOWN, nv_page, NV_SS, FORWARD},
390 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0},
391 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0},
392 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1},
393 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0},
394 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE},
395 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE},
396 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
397 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
398 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
399 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
400 {K_END, nv_end, NV_SSS|NV_STS, FALSE},
401 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402 {K_S_END, nv_end, NV_SS, FALSE},
403 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE},
404 {K_HOME, nv_home, NV_SSS|NV_STS, 0},
405 {K_KHOME, nv_home, NV_SSS|NV_STS, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 {K_S_HOME, nv_home, NV_SS, 0},
407 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE},
408 {K_DEL, nv_abbrev, 0, 0},
409 {K_KDEL, nv_abbrev, 0, 0},
410 {K_UNDO, nv_kundo, 0, 0},
411 {K_HELP, nv_help, NV_NCW, 0},
412 {K_F1, nv_help, NV_NCW, 0},
413 {K_XF1, nv_help, NV_NCW, 0},
414#ifdef FEAT_VISUAL
415 {K_SELECT, nv_select, 0, 0},
416#endif
417#ifdef FEAT_GUI
418 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0},
419 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0},
420#endif
421#ifdef FEAT_FKMAP
422 {K_F8, farsi_fkey, 0, 0},
423 {K_F9, farsi_fkey, 0, 0},
424#endif
425#ifdef FEAT_SNIFF
426 {K_SNIFF, nv_sniff, 0, 0},
427#endif
428#ifdef FEAT_NETBEANS_INTG
429 {K_F21, nv_nbcmd, NV_NCH_ALW, 0},
430#endif
431#ifdef FEAT_DND
432 {K_DROP, nv_drop, NV_STS, 0},
433#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +0000434#ifdef FEAT_AUTOCMD
435 {K_CURSORHOLD, nv_cursorhold, 0, 0},
436#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437};
438
439/* Number of commands in nv_cmds[]. */
440#define NV_CMDS_SIZE (sizeof(nv_cmds) / sizeof(struct nv_cmd))
441
442/* Sorted index of commands in nv_cmds[]. */
443static short nv_cmd_idx[NV_CMDS_SIZE];
444
445/* The highest index for which
446 * nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char] */
447static int nv_max_linear;
448
449/*
450 * Compare functions for qsort() below, that checks the command character
451 * through the index in nv_cmd_idx[].
452 */
453 static int
454#ifdef __BORLANDC__
455_RTLENTRYF
456#endif
457nv_compare(s1, s2)
458 const void *s1;
459 const void *s2;
460{
461 int c1, c2;
462
463 /* The commands are sorted on absolute value. */
464 c1 = nv_cmds[*(const short *)s1].cmd_char;
465 c2 = nv_cmds[*(const short *)s2].cmd_char;
466 if (c1 < 0)
467 c1 = -c1;
468 if (c2 < 0)
469 c2 = -c2;
470 return c1 - c2;
471}
472
473/*
474 * Initialize the nv_cmd_idx[] table.
475 */
476 void
477init_normal_cmds()
478{
479 int i;
480
481 /* Fill the index table with a one to one relation. */
482 for (i = 0; i < NV_CMDS_SIZE; ++i)
483 nv_cmd_idx[i] = i;
484
485 /* Sort the commands by the command character. */
486 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
487
488 /* Find the first entry that can't be indexed by the command character. */
489 for (i = 0; i < NV_CMDS_SIZE; ++i)
490 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char)
491 break;
492 nv_max_linear = i - 1;
493}
494
495/*
496 * Search for a command in the commands table.
497 * Returns -1 for invalid command.
498 */
499 static int
500find_command(cmdchar)
501 int cmdchar;
502{
503 int i;
504 int idx;
505 int top, bot;
506 int c;
507
508#ifdef FEAT_MBYTE
509 /* A multi-byte character is never a command. */
510 if (cmdchar >= 0x100)
511 return -1;
512#endif
513
514 /* We use the absolute value of the character. Special keys have a
515 * negative value, but are sorted on their absolute value. */
516 if (cmdchar < 0)
517 cmdchar = -cmdchar;
518
519 /* If the character is in the first part: The character is the index into
520 * nv_cmd_idx[]. */
521 if (cmdchar <= nv_max_linear)
522 return nv_cmd_idx[cmdchar];
523
524 /* Perform a binary search. */
525 bot = nv_max_linear + 1;
526 top = NV_CMDS_SIZE - 1;
527 idx = -1;
528 while (bot <= top)
529 {
530 i = (top + bot) / 2;
531 c = nv_cmds[nv_cmd_idx[i]].cmd_char;
532 if (c < 0)
533 c = -c;
534 if (cmdchar == c)
535 {
536 idx = nv_cmd_idx[i];
537 break;
538 }
539 if (cmdchar > c)
540 bot = i + 1;
541 else
542 top = i - 1;
543 }
544 return idx;
545}
546
547/*
548 * Execute a command in Normal mode.
549 */
550/*ARGSUSED*/
551 void
552normal_cmd(oap, toplevel)
553 oparg_T *oap;
554 int toplevel; /* TRUE when called from main() */
555{
556 static long opcount = 0; /* ca.opcount saved here */
557 cmdarg_T ca; /* command arguments */
558 int c;
559 int ctrl_w = FALSE; /* got CTRL-W command */
560 int old_col = curwin->w_curswant;
561#ifdef FEAT_CMDL_INFO
562 int need_flushbuf; /* need to call out_flush() */
563#endif
564#ifdef FEAT_VISUAL
565 pos_T old_pos; /* cursor position before command */
566 int mapped_len;
567#endif
568 static int old_mapped_len = 0;
569 int idx;
570
571 vim_memset(&ca, 0, sizeof(ca)); /* also resets ca.retval */
572 ca.oap = oap;
573 ca.opcount = opcount;
574
575#ifdef FEAT_SNIFF
576 want_sniff_request = sniff_connected;
577#endif
578
579 /*
580 * If there is an operator pending, then the command we take this time
581 * will terminate it. Finish_op tells us to finish the operation before
582 * returning this time (unless the operation was cancelled).
583 */
584#ifdef CURSOR_SHAPE
585 c = finish_op;
586#endif
587 finish_op = (oap->op_type != OP_NOP);
588#ifdef CURSOR_SHAPE
589 if (finish_op != c)
590 {
591 ui_cursor_shape(); /* may show different cursor shape */
592# ifdef FEAT_MOUSESHAPE
593 update_mouseshape(-1);
594# endif
595 }
596#endif
597
598 if (!finish_op && !oap->regname)
599 ca.opcount = 0;
600
601#ifdef FEAT_VISUAL
602 mapped_len = typebuf_maplen();
603#endif
604
605 State = NORMAL_BUSY;
606#ifdef USE_ON_FLY_SCROLL
607 dont_scroll = FALSE; /* allow scrolling here */
608#endif
609
610 /*
611 * Get the command character from the user.
612 */
613 c = safe_vgetc();
614
615#ifdef FEAT_LANGMAP
616 LANGMAP_ADJUST(c, TRUE);
617#endif
618
619 /*
620 * If a mapping was started in Visual or Select mode, remember the length
621 * of the mapping. This is used below to not return to Insert mode for as
622 * long as the mapping is being executed.
623 */
624 if (restart_edit == 0)
625 old_mapped_len = 0;
626 else if (old_mapped_len
627#ifdef FEAT_VISUAL
628 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0)
629#endif
630 )
631 old_mapped_len = typebuf_maplen();
632
633 if (c == NUL)
634 c = K_ZERO;
635
636#ifdef FEAT_VISUAL
637 /*
638 * In Select mode, typed text replaces the selection.
639 */
640 if (VIsual_active
641 && VIsual_select
642 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
643 {
644# ifdef FEAT_MBYTE
645 char_u buf[MB_MAXBYTES + 1];
646
647 buf[(*mb_char2bytes)(c, buf)] = NUL;
648# else
649 char_u buf[2];
650
651 buf[0] = c;
652 buf[1] = NUL;
653# endif
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000654 /* Fake a "c"hange command. When "restart_edit" is set (e.g., because
655 * 'insertmode' is set) fake a "d"elete command, Insert mode will
656 * restart automatically.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 * Insert the typed character in the typeahead buffer, so that it will
658 * be mapped in Insert mode. Required for ":lmap" to work. May cause
659 * mapping a character from ":vnoremap"... */
660 (void)ins_typebuf(buf, REMAP_YES, 0, !KeyTyped, FALSE);
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000661 if (restart_edit != 0)
662 c = 'd';
663 else
664 c = 'c';
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 }
666#endif
667
668#ifdef FEAT_CMDL_INFO
669 need_flushbuf = add_to_showcmd(c);
670#endif
671
672getcount:
673#ifdef FEAT_VISUAL
674 if (!(VIsual_active && VIsual_select))
675#endif
676 {
677 /*
678 * Handle a count before a command and compute ca.count0.
679 * Note that '0' is a command and not the start of a count, but it's
680 * part of a count after other digits.
681 */
682 while ( (c >= '1' && c <= '9')
683 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
684 {
685 if (c == K_DEL || c == K_KDEL)
686 {
687 ca.count0 /= 10;
688#ifdef FEAT_CMDL_INFO
689 del_from_showcmd(4); /* delete the digit and ~@% */
690#endif
691 }
692 else
693 ca.count0 = ca.count0 * 10 + (c - '0');
694 if (ca.count0 < 0) /* got too large! */
695 ca.count0 = 999999999L;
696 if (ctrl_w)
697 {
698 ++no_mapping;
699 ++allow_keys; /* no mapping for nchar, but keys */
700 }
701 ++no_zero_mapping; /* don't map zero here */
702 c = safe_vgetc();
703#ifdef FEAT_LANGMAP
704 LANGMAP_ADJUST(c, TRUE);
705#endif
706 --no_zero_mapping;
707 if (ctrl_w)
708 {
709 --no_mapping;
710 --allow_keys;
711 }
712#ifdef FEAT_CMDL_INFO
713 need_flushbuf |= add_to_showcmd(c);
714#endif
715 }
716
717 /*
718 * If we got CTRL-W there may be a/another count
719 */
720 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
721 {
722 ctrl_w = TRUE;
723 ca.opcount = ca.count0; /* remember first count */
724 ca.count0 = 0;
725 ++no_mapping;
726 ++allow_keys; /* no mapping for nchar, but keys */
727 c = safe_vgetc(); /* get next character */
728#ifdef FEAT_LANGMAP
729 LANGMAP_ADJUST(c, TRUE);
730#endif
731 --no_mapping;
732 --allow_keys;
733#ifdef FEAT_CMDL_INFO
734 need_flushbuf |= add_to_showcmd(c);
735#endif
736 goto getcount; /* jump back */
737 }
738 }
739
740 /*
741 * If we're in the middle of an operator (including after entering a yank
742 * buffer with '"') AND we had a count before the operator, then that
743 * count overrides the current value of ca.count0.
744 * What this means effectively, is that commands like "3dw" get turned
745 * into "d3w" which makes things fall into place pretty neatly.
746 * If you give a count before AND after the operator, they are multiplied.
747 */
748 if (ca.opcount != 0)
749 {
750 if (ca.count0)
751 ca.count0 *= ca.opcount;
752 else
753 ca.count0 = ca.opcount;
754 }
755
756 /*
757 * Always remember the count. It will be set to zero (on the next call,
758 * above) when there is no pending operator.
759 * When called from main(), save the count for use by the "count" built-in
760 * variable.
761 */
762 ca.opcount = ca.count0;
763 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
764
765#ifdef FEAT_EVAL
766 /*
767 * Only set v:count when called from main() and not a stuffed command.
768 */
769 if (toplevel && stuff_empty())
770 set_vcount(ca.count0, ca.count1);
771#endif
772
773 /*
774 * Find the command character in the table of commands.
775 * For CTRL-W we already got nchar when looking for a count.
776 */
777 if (ctrl_w)
778 {
779 ca.nchar = c;
780 ca.cmdchar = Ctrl_W;
781 }
782 else
783 ca.cmdchar = c;
784 idx = find_command(ca.cmdchar);
785 if (idx < 0)
786 {
787 /* Not a known command: beep. */
788 clearopbeep(oap);
789 goto normal_end;
790 }
791#ifdef FEAT_CMDWIN
792 if (cmdwin_type != 0 && (nv_cmds[idx].cmd_flags & NV_NCW))
793 {
794 /* This command is not allowed in the cmdline window: beep. */
795 clearopbeep(oap);
796 EMSG(_(e_cmdwin));
797 goto normal_end;
798 }
799#endif
800
801#ifdef FEAT_VISUAL
802 /*
803 * In Visual/Select mode, a few keys are handled in a special way.
804 */
805 if (VIsual_active)
806 {
807 /* when 'keymodel' contains "stopsel" may stop Select/Visual mode */
808 if (km_stopsel
809 && (nv_cmds[idx].cmd_flags & NV_STS)
810 && !(mod_mask & MOD_MASK_SHIFT))
811 {
812 end_visual_mode();
813 redraw_curbuf_later(INVERTED);
814 }
815
816 /* Keys that work different when 'keymodel' contains "startsel" */
817 if (km_startsel)
818 {
819 if (nv_cmds[idx].cmd_flags & NV_SS)
820 {
821 unshift_special(&ca);
822 idx = find_command(ca.cmdchar);
823 }
824 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
825 && (mod_mask & MOD_MASK_SHIFT))
826 {
827 mod_mask &= ~MOD_MASK_SHIFT;
828 }
829 }
830 }
831#endif
832
833#ifdef FEAT_RIGHTLEFT
834 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
835 && (nv_cmds[idx].cmd_flags & NV_RL))
836 {
837 /* Invert horizontal movements and operations. Only when typed by the
838 * user directly, not when the result of a mapping or "x" translated
839 * to "dl". */
840 switch (ca.cmdchar)
841 {
842 case 'l': ca.cmdchar = 'h'; break;
843 case K_RIGHT: ca.cmdchar = K_LEFT; break;
844 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
845 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
846 case 'h': ca.cmdchar = 'l'; break;
847 case K_LEFT: ca.cmdchar = K_RIGHT; break;
848 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
849 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
850 case '>': ca.cmdchar = '<'; break;
851 case '<': ca.cmdchar = '>'; break;
852 }
853 idx = find_command(ca.cmdchar);
854 }
855#endif
856
857 /*
858 * Get an additional character if we need one.
859 */
860 if ((nv_cmds[idx].cmd_flags & NV_NCH)
861 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
862 && oap->op_type == OP_NOP)
863 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
864 || (ca.cmdchar == 'q'
865 && oap->op_type == OP_NOP
866 && !Recording
867 && !Exec_reg)
868 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
869 && (oap->op_type != OP_NOP
870#ifdef FEAT_VISUAL
871 || VIsual_active
872#endif
873 ))))
874 {
875 int *cp;
876 int repl = FALSE; /* get character for replace mode */
877 int lit = FALSE; /* get extra character literally */
878 int langmap_active = FALSE; /* using :lmap mappings */
879 int lang; /* getting a text character */
880#ifdef USE_IM_CONTROL
881 int save_smd; /* saved value of p_smd */
882#endif
883
884 ++no_mapping;
885 ++allow_keys; /* no mapping for nchar, but allow key codes */
886 if (ca.cmdchar == 'g')
887 {
888 /*
889 * For 'g' get the next character now, so that we can check for
890 * "gr", "g'" and "g`".
891 */
892 ca.nchar = safe_vgetc();
893#ifdef FEAT_LANGMAP
894 LANGMAP_ADJUST(ca.nchar, TRUE);
895#endif
896#ifdef FEAT_CMDL_INFO
897 need_flushbuf |= add_to_showcmd(ca.nchar);
898#endif
899 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
900 || ca.nchar == Ctrl_BSL)
901 {
902 cp = &ca.extra_char; /* need to get a third character */
903 if (ca.nchar != 'r')
904 lit = TRUE; /* get it literally */
905 else
906 repl = TRUE; /* get it in replace mode */
907 }
908 else
909 cp = NULL; /* no third character needed */
910 }
911 else
912 {
913 if (ca.cmdchar == 'r') /* get it in replace mode */
914 repl = TRUE;
915 cp = &ca.nchar;
916 }
917 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
918
919 /*
920 * Get a second or third character.
921 */
922 if (cp != NULL)
923 {
924#ifdef CURSOR_SHAPE
925 if (repl)
926 {
927 State = REPLACE; /* pretend Replace mode */
928 ui_cursor_shape(); /* show different cursor shape */
929 }
930#endif
931 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
932 {
933 /* Allow mappings defined with ":lmap". */
934 --no_mapping;
935 --allow_keys;
936 if (repl)
937 State = LREPLACE;
938 else
939 State = LANGMAP;
940 langmap_active = TRUE;
941 }
942#ifdef USE_IM_CONTROL
943 save_smd = p_smd;
944 p_smd = FALSE; /* Don't let the IM code show the mode here */
945 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
946 im_set_active(TRUE);
947#endif
948
949 *cp = safe_vgetc();
950
951 if (langmap_active)
952 {
953 /* Undo the decrement done above */
954 ++no_mapping;
955 ++allow_keys;
956 State = NORMAL_BUSY;
957 }
958#ifdef USE_IM_CONTROL
959 if (lang)
960 {
961 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
962 im_save_status(&curbuf->b_p_iminsert);
963 im_set_active(FALSE);
964 }
965 p_smd = save_smd;
966#endif
967#ifdef CURSOR_SHAPE
968 State = NORMAL_BUSY;
969#endif
970#ifdef FEAT_CMDL_INFO
971 need_flushbuf |= add_to_showcmd(*cp);
972#endif
973
974 if (!lit)
975 {
976#ifdef FEAT_DIGRAPHS
977 /* Typing CTRL-K gets a digraph. */
978 if (*cp == Ctrl_K
979 && ((nv_cmds[idx].cmd_flags & NV_LANG)
980 || cp == &ca.extra_char)
981 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
982 {
983 c = get_digraph(FALSE);
984 if (c > 0)
985 {
986 *cp = c;
987# ifdef FEAT_CMDL_INFO
988 /* Guessing how to update showcmd here... */
989 del_from_showcmd(3);
990 need_flushbuf |= add_to_showcmd(*cp);
991# endif
992 }
993 }
994#endif
995
996#ifdef FEAT_LANGMAP
997 /* adjust chars > 127, except after "tTfFr" commands */
998 LANGMAP_ADJUST(*cp, !lang);
999#endif
1000#ifdef FEAT_RIGHTLEFT
1001 /* adjust Hebrew mapped char */
1002 if (p_hkmap && lang && KeyTyped)
1003 *cp = hkmap(*cp);
1004# ifdef FEAT_FKMAP
1005 /* adjust Farsi mapped char */
1006 if (p_fkmap && lang && KeyTyped)
1007 *cp = fkmap(*cp);
1008# endif
1009#endif
1010 }
1011
1012 /*
1013 * When the next character is CTRL-\ a following CTRL-N means the
1014 * command is aborted and we go to Normal mode.
1015 */
1016 if (cp == &ca.extra_char
1017 && ca.nchar == Ctrl_BSL
1018 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
1019 {
1020 ca.cmdchar = Ctrl_BSL;
1021 ca.nchar = ca.extra_char;
1022 idx = find_command(ca.cmdchar);
1023 }
1024 else if (*cp == Ctrl_BSL)
1025 {
1026 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
1027
1028 /* There is a busy wait here when typing "f<C-\>" and then
1029 * something different from CTRL-N. Can't be avoided. */
1030 while ((c = vpeekc()) <= 0 && towait > 0L)
1031 {
1032 do_sleep(towait > 50L ? 50L : towait);
1033 towait -= 50L;
1034 }
1035 if (c > 0)
1036 {
1037 c = safe_vgetc();
1038 if (c != Ctrl_N && c != Ctrl_G)
1039 vungetc(c);
1040 else
1041 {
1042 ca.cmdchar = Ctrl_BSL;
1043 ca.nchar = c;
1044 idx = find_command(ca.cmdchar);
1045 }
1046 }
1047 }
1048
1049#ifdef FEAT_MBYTE
1050 /* When getting a text character and the next character is a
1051 * multi-byte character, it could be a composing character.
1052 * However, don't wait for it to arrive. */
1053 while (enc_utf8 && lang && (c = vpeekc()) > 0
1054 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1055 {
1056 c = safe_vgetc();
1057 if (!utf_iscomposing(c))
1058 {
1059 vungetc(c); /* it wasn't, put it back */
1060 break;
1061 }
1062 else if (ca.ncharC1 == 0)
1063 ca.ncharC1 = c;
1064 else
1065 ca.ncharC2 = c;
1066 }
1067#endif
1068 }
1069 --no_mapping;
1070 --allow_keys;
1071 }
1072
1073#ifdef FEAT_CMDL_INFO
1074 /*
1075 * Flush the showcmd characters onto the screen so we can see them while
1076 * the command is being executed. Only do this when the shown command was
1077 * actually displayed, otherwise this will slow down a lot when executing
1078 * mappings.
1079 */
1080 if (need_flushbuf)
1081 out_flush();
1082#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00001083#ifdef FEAT_AUTOCMD
1084 did_cursorhold = FALSE;
1085#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086
1087 State = NORMAL;
1088
1089 if (ca.nchar == ESC)
1090 {
1091 clearop(oap);
1092 if (restart_edit == 0 && goto_im())
1093 restart_edit = 'a';
1094 goto normal_end;
1095 }
1096
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001097 if (ca.cmdchar != K_IGNORE)
1098 {
1099 msg_didout = FALSE; /* don't scroll screen up for normal command */
1100 msg_col = 0;
1101 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102
1103#ifdef FEAT_VISUAL
1104 old_pos = curwin->w_cursor; /* remember where cursor was */
1105
1106 /* When 'keymodel' contains "startsel" some keys start Select/Visual
1107 * mode. */
1108 if (!VIsual_active && km_startsel)
1109 {
1110 if (nv_cmds[idx].cmd_flags & NV_SS)
1111 {
1112 start_selection();
1113 unshift_special(&ca);
1114 idx = find_command(ca.cmdchar);
1115 }
1116 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1117 && (mod_mask & MOD_MASK_SHIFT))
1118 {
1119 start_selection();
1120 mod_mask &= ~MOD_MASK_SHIFT;
1121 }
1122 }
1123#endif
1124
1125 /*
1126 * Execute the command!
1127 * Call the command function found in the commands table.
1128 */
1129 ca.arg = nv_cmds[idx].cmd_arg;
1130 (nv_cmds[idx].cmd_func)(&ca);
1131
1132 /*
1133 * If we didn't start or finish an operator, reset oap->regname, unless we
1134 * need it later.
1135 */
1136 if (!finish_op
1137 && !oap->op_type
1138 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1139 {
1140 clearop(oap);
1141#ifdef FEAT_EVAL
1142 set_reg_var('"');
1143#endif
1144 }
1145
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001146 /* get the length of mapped chars again after typing a count, second
1147 * character or "z333<cr>". */
1148 if (old_mapped_len > 0)
1149 old_mapped_len = typebuf_maplen();
1150
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 /*
1152 * If an operation is pending, handle it...
1153 */
1154 do_pending_operator(&ca, old_col, FALSE);
1155
1156 /*
1157 * Wait for a moment when a message is displayed that will be overwritten
1158 * by the mode message.
1159 * In Visual mode and with "^O" in Insert mode, a short message will be
1160 * overwritten by the mode message. Wait a bit, until a key is hit.
1161 * In Visual mode, it's more important to keep the Visual area updated
1162 * than keeping a message (e.g. from a /pat search).
1163 * Only do this if the command was typed, not from a mapping.
1164 * Don't wait when emsg_silent is non-zero.
1165 * Also wait a bit after an error message, e.g. for "^O:".
1166 * Don't redraw the screen, it would remove the message.
1167 */
1168 if ( ((p_smd
1169 && (restart_edit != 0
1170#ifdef FEAT_VISUAL
1171 || (VIsual_active
1172 && old_pos.lnum == curwin->w_cursor.lnum
1173 && old_pos.col == curwin->w_cursor.col)
1174#endif
1175 )
1176 && (clear_cmdline
1177 || redraw_cmdline)
1178 && (msg_didout || (msg_didany && msg_scroll))
1179 && !msg_nowait
1180 && KeyTyped)
1181 || (restart_edit != 0
1182#ifdef FEAT_VISUAL
1183 && !VIsual_active
1184#endif
1185 && (msg_scroll
1186 || emsg_on_display)))
1187 && oap->regname == 0
1188 && !(ca.retval & CA_COMMAND_BUSY)
1189 && stuff_empty()
1190 && typebuf_typed()
1191 && emsg_silent == 0
1192 && !did_wait_return
1193 && oap->op_type == OP_NOP)
1194 {
1195 int save_State = State;
1196
1197 /* Draw the cursor with the right shape here */
1198 if (restart_edit != 0)
1199 State = INSERT;
1200
1201 /* If need to redraw, and there is a "keep_msg", redraw before the
1202 * delay */
1203 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1204 {
1205 char_u *kmsg;
1206
1207 kmsg = keep_msg;
1208 keep_msg = NULL;
1209 /* showmode() will clear keep_msg, but we want to use it anyway */
1210 update_screen(0);
1211 /* now reset it, otherwise it's put in the history again */
1212 keep_msg = kmsg;
1213 msg_attr(kmsg, keep_msg_attr);
1214 vim_free(kmsg);
1215 }
1216 setcursor();
1217 cursor_on();
1218 out_flush();
1219 if (msg_scroll || emsg_on_display)
1220 ui_delay(1000L, TRUE); /* wait at least one second */
1221 ui_delay(3000L, FALSE); /* wait up to three seconds */
1222 State = save_State;
1223
1224 msg_scroll = FALSE;
1225 emsg_on_display = FALSE;
1226 }
1227
1228 /*
1229 * Finish up after executing a Normal mode command.
1230 */
1231normal_end:
1232
1233 msg_nowait = FALSE;
1234
1235 /* Reset finish_op, in case it was set */
1236#ifdef CURSOR_SHAPE
1237 c = finish_op;
1238#endif
1239 finish_op = FALSE;
1240#ifdef CURSOR_SHAPE
1241 /* Redraw the cursor with another shape, if we were in Operator-pending
1242 * mode or did a replace command. */
1243 if (c || ca.cmdchar == 'r')
1244 {
1245 ui_cursor_shape(); /* may show different cursor shape */
1246# ifdef FEAT_MOUSESHAPE
1247 update_mouseshape(-1);
1248# endif
1249 }
1250#endif
1251
1252#ifdef FEAT_CMDL_INFO
1253 if (oap->op_type == OP_NOP && oap->regname == 0)
1254 clear_showcmd();
1255#endif
1256
1257 checkpcmark(); /* check if we moved since setting pcmark */
1258 vim_free(ca.searchbuf);
1259
1260#ifdef FEAT_MBYTE
1261 if (has_mbyte)
1262 mb_adjust_cursor();
1263#endif
1264
1265#ifdef FEAT_SCROLLBIND
1266 if (curwin->w_p_scb && toplevel)
1267 {
1268 validate_cursor(); /* may need to update w_leftcol */
1269 do_check_scrollbind(TRUE);
1270 }
1271#endif
1272
1273 /*
1274 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1275 * if still inside a mapping that started in Visual mode).
1276 * May switch from Visual to Select mode after CTRL-O command.
1277 */
1278 if ( oap->op_type == OP_NOP
1279#ifdef FEAT_VISUAL
1280 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1281 || restart_VIsual_select == 1)
1282#endif
1283 && !(ca.retval & CA_COMMAND_BUSY)
1284 && stuff_empty()
1285 && oap->regname == 0)
1286 {
1287#ifdef FEAT_VISUAL
1288 if (restart_VIsual_select == 1)
1289 {
1290 VIsual_select = TRUE;
1291 showmode();
1292 restart_VIsual_select = 0;
1293 }
1294#endif
1295 if (restart_edit != 0
1296#ifdef FEAT_VISUAL
1297 && !VIsual_active
1298#endif
1299 && old_mapped_len == 0)
1300 (void)edit(restart_edit, FALSE, 1L);
1301 }
1302
1303#ifdef FEAT_VISUAL
1304 if (restart_VIsual_select == 2)
1305 restart_VIsual_select = 1;
1306#endif
1307
1308 /* Save count before an operator for next time. */
1309 opcount = ca.opcount;
1310}
1311
1312/*
1313 * Handle an operator after visual mode or when the movement is finished
1314 */
1315 void
1316do_pending_operator(cap, old_col, gui_yank)
1317 cmdarg_T *cap;
1318 int old_col;
1319 int gui_yank;
1320{
1321 oparg_T *oap = cap->oap;
1322 pos_T old_cursor;
1323 int empty_region_error;
1324 int restart_edit_save;
1325
1326#ifdef FEAT_VISUAL
1327 /* The visual area is remembered for redo */
1328 static int redo_VIsual_mode = NUL; /* 'v', 'V', or Ctrl-V */
1329 static linenr_T redo_VIsual_line_count; /* number of lines */
1330 static colnr_T redo_VIsual_col; /* number of cols or end column */
1331 static long redo_VIsual_count; /* count for Visual operator */
1332# ifdef FEAT_VIRTUALEDIT
1333 int include_line_break = FALSE;
1334# endif
1335#endif
1336
1337#if defined(FEAT_CLIPBOARD)
1338 /*
1339 * Yank the visual area into the GUI selection register before we operate
1340 * on it and lose it forever.
1341 * Don't do it if a specific register was specified, so that ""x"*P works.
1342 * This could call do_pending_operator() recursively, but that's OK
1343 * because gui_yank will be TRUE for the nested call.
1344 */
1345 if (clip_star.available
1346 && oap->op_type != OP_NOP
1347 && !gui_yank
1348# ifdef FEAT_VISUAL
1349 && VIsual_active
1350 && !redo_VIsual_busy
1351# endif
1352 && oap->regname == 0)
1353 clip_auto_select();
1354#endif
1355 old_cursor = curwin->w_cursor;
1356
1357 /*
1358 * If an operation is pending, handle it...
1359 */
1360 if ((finish_op
1361#ifdef FEAT_VISUAL
1362 || VIsual_active
1363#endif
1364 ) && oap->op_type != OP_NOP)
1365 {
1366#ifdef FEAT_VISUAL
1367 oap->is_VIsual = VIsual_active;
1368 if (oap->motion_force == 'V')
1369 oap->motion_type = MLINE;
1370 else if (oap->motion_force == 'v')
1371 {
1372 /* If the motion was linewise, "inclusive" will not have been set.
1373 * Use "exclusive" to be consistent. Makes "dvj" work nice. */
1374 if (oap->motion_type == MLINE)
1375 oap->inclusive = FALSE;
1376 /* If the motion already was characterwise, toggle "inclusive" */
1377 else if (oap->motion_type == MCHAR)
1378 oap->inclusive = !oap->inclusive;
1379 oap->motion_type = MCHAR;
1380 }
1381 else if (oap->motion_force == Ctrl_V)
1382 {
1383 /* Change line- or characterwise motion into Visual block mode. */
1384 VIsual_active = TRUE;
1385 VIsual = oap->start;
1386 VIsual_mode = Ctrl_V;
1387 VIsual_select = FALSE;
1388 VIsual_reselect = FALSE;
1389 }
1390#endif
1391
1392 /* only redo yank when 'y' flag is in 'cpoptions' */
1393 /* never redo "zf" (define fold) */
1394 if ((vim_strchr(p_cpo, CPO_YANK) != NULL || oap->op_type != OP_YANK)
1395#ifdef FEAT_VISUAL
1396 && (!VIsual_active || oap->motion_force)
1397#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00001398 && cap->cmdchar != 'D'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399#ifdef FEAT_FOLDING
1400 && oap->op_type != OP_FOLD
1401 && oap->op_type != OP_FOLDOPEN
1402 && oap->op_type != OP_FOLDOPENREC
1403 && oap->op_type != OP_FOLDCLOSE
1404 && oap->op_type != OP_FOLDCLOSEREC
1405 && oap->op_type != OP_FOLDDEL
1406 && oap->op_type != OP_FOLDDELREC
1407#endif
1408 )
1409 {
1410 prep_redo(oap->regname, cap->count0,
1411 get_op_char(oap->op_type), get_extra_op_char(oap->op_type),
1412 oap->motion_force, cap->cmdchar, cap->nchar);
1413 if (cap->cmdchar == '/' || cap->cmdchar == '?') /* was a search */
1414 {
1415 /*
1416 * If 'cpoptions' does not contain 'r', insert the search
1417 * pattern to really repeat the same command.
1418 */
1419 if (vim_strchr(p_cpo, CPO_REDO) == NULL)
1420 AppendToRedobuffLit(cap->searchbuf);
1421 AppendToRedobuff(NL_STR);
1422 }
1423 else if (cap->cmdchar == ':')
1424 {
1425 /* do_cmdline() has stored the first typed line in
1426 * "repeat_cmdline". When several lines are typed repeating
1427 * won't be possible. */
1428 if (repeat_cmdline == NULL)
1429 ResetRedobuff();
1430 else
1431 {
1432 AppendToRedobuffLit(repeat_cmdline);
1433 AppendToRedobuff(NL_STR);
1434 vim_free(repeat_cmdline);
1435 repeat_cmdline = NULL;
1436 }
1437 }
1438 }
1439
1440#ifdef FEAT_VISUAL
1441 if (redo_VIsual_busy)
1442 {
1443 oap->start = curwin->w_cursor;
1444 curwin->w_cursor.lnum += redo_VIsual_line_count - 1;
1445 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1446 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1447 VIsual_mode = redo_VIsual_mode;
1448 if (VIsual_mode == 'v')
1449 {
1450 if (redo_VIsual_line_count <= 1)
1451 curwin->w_cursor.col += redo_VIsual_col - 1;
1452 else
1453 curwin->w_cursor.col = redo_VIsual_col;
1454 }
1455 if (redo_VIsual_col == MAXCOL)
1456 {
1457 curwin->w_curswant = MAXCOL;
1458 coladvance((colnr_T)MAXCOL);
1459 }
1460 cap->count0 = redo_VIsual_count;
1461 if (redo_VIsual_count != 0)
1462 cap->count1 = redo_VIsual_count;
1463 else
1464 cap->count1 = 1;
1465 }
1466 else if (VIsual_active)
1467 {
1468 /* Save the current VIsual area for '< and '> marks, and "gv" */
1469 curbuf->b_visual_start = VIsual;
1470 curbuf->b_visual_end = curwin->w_cursor;
1471 curbuf->b_visual_mode = VIsual_mode;
1472# ifdef FEAT_EVAL
1473 curbuf->b_visual_mode_eval = VIsual_mode;
1474# endif
1475 curbuf->b_visual_curswant = curwin->w_curswant;
1476
1477 /* In Select mode, a linewise selection is operated upon like a
1478 * characterwise selection. */
1479 if (VIsual_select && VIsual_mode == 'V')
1480 {
1481 if (lt(VIsual, curwin->w_cursor))
1482 {
1483 VIsual.col = 0;
1484 curwin->w_cursor.col =
1485 (colnr_T)STRLEN(ml_get(curwin->w_cursor.lnum));
1486 }
1487 else
1488 {
1489 curwin->w_cursor.col = 0;
1490 VIsual.col = (colnr_T)STRLEN(ml_get(VIsual.lnum));
1491 }
1492 VIsual_mode = 'v';
1493 }
1494 /* If 'selection' is "exclusive", backup one character for
1495 * charwise selections. */
1496 else if (VIsual_mode == 'v')
1497 {
1498# ifdef FEAT_VIRTUALEDIT
1499 include_line_break =
1500# endif
1501 unadjust_for_sel();
1502 }
1503
1504 oap->start = VIsual;
1505 if (VIsual_mode == 'V')
1506 oap->start.col = 0;
1507 }
1508#endif /* FEAT_VISUAL */
1509
1510 /*
1511 * Set oap->start to the first position of the operated text, oap->end
1512 * to the end of the operated text. w_cursor is equal to oap->start.
1513 */
1514 if (lt(oap->start, curwin->w_cursor))
1515 {
1516#ifdef FEAT_FOLDING
1517 /* Include folded lines completely. */
1518 if (!VIsual_active)
1519 {
1520 if (hasFolding(oap->start.lnum, &oap->start.lnum, NULL))
1521 oap->start.col = 0;
1522 if (hasFolding(curwin->w_cursor.lnum, NULL,
1523 &curwin->w_cursor.lnum))
1524 curwin->w_cursor.col = (colnr_T)STRLEN(ml_get_curline());
1525 }
1526#endif
1527 oap->end = curwin->w_cursor;
1528 curwin->w_cursor = oap->start;
1529
1530 /* w_virtcol may have been updated; if the cursor goes back to its
1531 * previous position w_virtcol becomes invalid and isn't updated
1532 * automatically. */
1533 curwin->w_valid &= ~VALID_VIRTCOL;
1534 }
1535 else
1536 {
1537#ifdef FEAT_FOLDING
1538 /* Include folded lines completely. */
1539 if (!VIsual_active && oap->motion_type == MLINE)
1540 {
1541 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum,
1542 NULL))
1543 curwin->w_cursor.col = 0;
1544 if (hasFolding(oap->start.lnum, NULL, &oap->start.lnum))
1545 oap->start.col = (colnr_T)STRLEN(ml_get(oap->start.lnum));
1546 }
1547#endif
1548 oap->end = oap->start;
1549 oap->start = curwin->w_cursor;
1550 }
1551
1552 oap->line_count = oap->end.lnum - oap->start.lnum + 1;
1553
1554#ifdef FEAT_VIRTUALEDIT
1555 /* Set "virtual_op" before resetting VIsual_active. */
1556 virtual_op = virtual_active();
1557#endif
1558
1559#ifdef FEAT_VISUAL
1560 if (VIsual_active || redo_VIsual_busy)
1561 {
1562 if (VIsual_mode == Ctrl_V) /* block mode */
1563 {
1564 colnr_T start, end;
1565
1566 oap->block_mode = TRUE;
1567
1568 getvvcol(curwin, &(oap->start),
1569 &oap->start_vcol, NULL, &oap->end_vcol);
1570 if (!redo_VIsual_busy)
1571 {
1572 getvvcol(curwin, &(oap->end), &start, NULL, &end);
1573
1574 if (start < oap->start_vcol)
1575 oap->start_vcol = start;
1576 if (end > oap->end_vcol)
1577 {
1578 if (*p_sel == 'e' && start >= 1
1579 && start - 1 >= oap->end_vcol)
1580 oap->end_vcol = start - 1;
1581 else
1582 oap->end_vcol = end;
1583 }
1584 }
1585
1586 /* if '$' was used, get oap->end_vcol from longest line */
1587 if (curwin->w_curswant == MAXCOL)
1588 {
1589 curwin->w_cursor.col = MAXCOL;
1590 oap->end_vcol = 0;
1591 for (curwin->w_cursor.lnum = oap->start.lnum;
1592 curwin->w_cursor.lnum <= oap->end.lnum;
1593 ++curwin->w_cursor.lnum)
1594 {
1595 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &end);
1596 if (end > oap->end_vcol)
1597 oap->end_vcol = end;
1598 }
1599 }
1600 else if (redo_VIsual_busy)
1601 oap->end_vcol = oap->start_vcol + redo_VIsual_col - 1;
1602 /*
1603 * Correct oap->end.col and oap->start.col to be the
1604 * upper-left and lower-right corner of the block area.
1605 *
1606 * (Actually, this does convert column positions into character
1607 * positions)
1608 */
1609 curwin->w_cursor.lnum = oap->end.lnum;
1610 coladvance(oap->end_vcol);
1611 oap->end = curwin->w_cursor;
1612
1613 curwin->w_cursor = oap->start;
1614 coladvance(oap->start_vcol);
1615 oap->start = curwin->w_cursor;
1616 }
1617
1618 if (!redo_VIsual_busy && !gui_yank)
1619 {
1620 /*
1621 * Prepare to reselect and redo Visual: this is based on the
1622 * size of the Visual text
1623 */
1624 resel_VIsual_mode = VIsual_mode;
1625 if (curwin->w_curswant == MAXCOL)
1626 resel_VIsual_col = MAXCOL;
1627 else if (VIsual_mode == Ctrl_V)
1628 resel_VIsual_col = oap->end_vcol - oap->start_vcol + 1;
1629 else if (oap->line_count > 1)
1630 resel_VIsual_col = oap->end.col;
1631 else
1632 resel_VIsual_col = oap->end.col - oap->start.col + 1;
1633 resel_VIsual_line_count = oap->line_count;
1634 }
1635
1636 /* can't redo yank (unless 'y' is in 'cpoptions') and ":" */
1637 if ((vim_strchr(p_cpo, CPO_YANK) != NULL || oap->op_type != OP_YANK)
1638 && oap->op_type != OP_COLON
1639#ifdef FEAT_FOLDING
1640 && oap->op_type != OP_FOLD
1641 && oap->op_type != OP_FOLDOPEN
1642 && oap->op_type != OP_FOLDOPENREC
1643 && oap->op_type != OP_FOLDCLOSE
1644 && oap->op_type != OP_FOLDCLOSEREC
1645 && oap->op_type != OP_FOLDDEL
1646 && oap->op_type != OP_FOLDDELREC
1647#endif
1648 && oap->motion_force == NUL
1649 )
1650 {
1651 /* Prepare for redoing. Only use the nchar field for "r",
1652 * otherwise it might be the second char of the operator. */
1653 prep_redo(oap->regname, 0L, NUL, 'v',
1654 get_op_char(oap->op_type),
1655 get_extra_op_char(oap->op_type),
1656 oap->op_type == OP_REPLACE ? cap->nchar : NUL);
1657 if (!redo_VIsual_busy)
1658 {
1659 redo_VIsual_mode = resel_VIsual_mode;
1660 redo_VIsual_col = resel_VIsual_col;
1661 redo_VIsual_line_count = resel_VIsual_line_count;
1662 redo_VIsual_count = cap->count0;
1663 }
1664 }
1665
1666 /*
1667 * oap->inclusive defaults to TRUE.
1668 * If oap->end is on a NUL (empty line) oap->inclusive becomes
1669 * FALSE. This makes "d}P" and "v}dP" work the same.
1670 */
1671 if (oap->motion_force == NUL || oap->motion_type == MLINE)
1672 oap->inclusive = TRUE;
1673 if (VIsual_mode == 'V')
1674 oap->motion_type = MLINE;
1675 else
1676 {
1677 oap->motion_type = MCHAR;
1678 if (VIsual_mode != Ctrl_V && *ml_get_pos(&(oap->end)) == NUL
1679# ifdef FEAT_VIRTUALEDIT
1680 && (include_line_break || !virtual_op)
1681# endif
1682 )
1683 {
1684 oap->inclusive = FALSE;
1685 /* Try to include the newline, unless it's an operator
1686 * that works on lines only */
1687 if (*p_sel != 'o'
1688 && !op_on_lines(oap->op_type)
1689 && oap->end.lnum < curbuf->b_ml.ml_line_count)
1690 {
1691 ++oap->end.lnum;
1692 oap->end.col = 0;
1693# ifdef FEAT_VIRTUALEDIT
1694 oap->end.coladd = 0;
1695# endif
1696 ++oap->line_count;
1697 }
1698 }
1699 }
1700
1701 redo_VIsual_busy = FALSE;
1702 /*
1703 * Switch Visual off now, so screen updating does
1704 * not show inverted text when the screen is redrawn.
1705 * With OP_YANK and sometimes with OP_COLON and OP_FILTER there is
1706 * no screen redraw, so it is done here to remove the inverted
1707 * part.
1708 */
1709 if (!gui_yank)
1710 {
1711 VIsual_active = FALSE;
1712# ifdef FEAT_MOUSE
1713 setmouse();
1714 mouse_dragging = 0;
1715# endif
1716 if (p_smd)
1717 clear_cmdline = TRUE; /* unshow visual mode later */
1718#ifdef FEAT_CMDL_INFO
1719 else
1720 clear_showcmd();
1721#endif
1722 if ((oap->op_type == OP_YANK
1723 || oap->op_type == OP_COLON
1724 || oap->op_type == OP_FILTER)
1725 && oap->motion_force == NUL)
1726 redraw_curbuf_later(INVERTED);
1727 }
1728 }
1729#endif
1730
1731#ifdef FEAT_MBYTE
1732 /* Include the trailing byte of a multi-byte char. */
1733 if (has_mbyte && oap->inclusive)
1734 {
1735 int l;
1736
1737 l = (*mb_ptr2len_check)(ml_get_pos(&oap->end));
1738 if (l > 1)
1739 oap->end.col += l - 1;
1740 }
1741#endif
1742 curwin->w_set_curswant = TRUE;
1743
1744 /*
1745 * oap->empty is set when start and end are the same. The inclusive
1746 * flag affects this too, unless yanking and the end is on a NUL.
1747 */
1748 oap->empty = (oap->motion_type == MCHAR
1749 && (!oap->inclusive
1750 || (oap->op_type == OP_YANK
1751 && gchar_pos(&oap->end) == NUL))
1752 && equalpos(oap->start, oap->end)
1753#ifdef FEAT_VIRTUALEDIT
1754 && !(virtual_op && oap->start.coladd != oap->end.coladd)
1755#endif
1756 );
1757 /*
1758 * For delete, change and yank, it's an error to operate on an
1759 * empty region, when 'E' included in 'cpoptions' (Vi compatible).
1760 */
1761 empty_region_error = (oap->empty
1762 && vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL);
1763
1764#ifdef FEAT_VISUAL
1765 /* Force a redraw when operating on an empty Visual region, when
1766 * 'modifiable is off or creating a fold. */
1767 if (oap->is_VIsual && (oap->empty || !curbuf->b_p_ma
1768# ifdef FEAT_FOLDING
1769 || oap->op_type == OP_FOLD
1770# endif
1771 ))
1772 redraw_curbuf_later(INVERTED);
1773#endif
1774
1775 /*
1776 * If the end of an operator is in column one while oap->motion_type
1777 * is MCHAR and oap->inclusive is FALSE, we put op_end after the last
1778 * character in the previous line. If op_start is on or before the
1779 * first non-blank in the line, the operator becomes linewise
1780 * (strange, but that's the way vi does it).
1781 */
1782 if ( oap->motion_type == MCHAR
1783 && oap->inclusive == FALSE
1784 && !(cap->retval & CA_NO_ADJ_OP_END)
1785 && oap->end.col == 0
1786#ifdef FEAT_VISUAL
1787 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaar34114692005-01-02 11:28:13 +00001788 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789#endif
1790 && oap->line_count > 1)
1791 {
1792 oap->end_adjusted = TRUE; /* remember that we did this */
1793 --oap->line_count;
1794 --oap->end.lnum;
1795 if (inindent(0))
1796 oap->motion_type = MLINE;
1797 else
1798 {
1799 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
1800 if (oap->end.col)
1801 {
1802 --oap->end.col;
1803 oap->inclusive = TRUE;
1804 }
1805 }
1806 }
1807 else
1808 oap->end_adjusted = FALSE;
1809
1810 switch (oap->op_type)
1811 {
1812 case OP_LSHIFT:
1813 case OP_RSHIFT:
1814 op_shift(oap, TRUE,
1815#ifdef FEAT_VISUAL
1816 oap->is_VIsual ? (int)cap->count1 :
1817#endif
1818 1);
1819 auto_format(FALSE, TRUE);
1820 break;
1821
1822 case OP_JOIN_NS:
1823 case OP_JOIN:
1824 if (oap->line_count < 2)
1825 oap->line_count = 2;
1826 if (curwin->w_cursor.lnum + oap->line_count - 1 >
1827 curbuf->b_ml.ml_line_count)
1828 beep_flush();
1829 else
1830 {
1831 do_do_join(oap->line_count, oap->op_type == OP_JOIN);
1832 auto_format(FALSE, TRUE);
1833 }
1834 break;
1835
1836 case OP_DELETE:
1837#ifdef FEAT_VISUAL
1838 VIsual_reselect = FALSE; /* don't reselect now */
1839#endif
1840 if (empty_region_error)
1841 vim_beep();
1842 else
1843 {
1844 (void)op_delete(oap);
1845 if (oap->motion_type == MLINE && has_format_option(FO_AUTO))
1846 u_save_cursor(); /* cursor line wasn't saved yet */
1847 auto_format(FALSE, TRUE);
1848 }
1849 break;
1850
1851 case OP_YANK:
1852 if (empty_region_error)
1853 {
1854 if (!gui_yank)
1855 vim_beep();
1856 }
1857 else
1858 (void)op_yank(oap, FALSE, !gui_yank);
1859 check_cursor_col();
1860 break;
1861
1862 case OP_CHANGE:
1863#ifdef FEAT_VISUAL
1864 VIsual_reselect = FALSE; /* don't reselect now */
1865#endif
1866 if (empty_region_error)
1867 vim_beep();
1868 else
1869 {
1870 /* This is a new edit command, not a restart. Need to
1871 * remember it to make 'insertmode' work with mappings for
1872 * Visual mode. But do this only once and not when typed and
1873 * 'insertmode' isn't set. */
1874 if (p_im || !KeyTyped)
1875 restart_edit_save = restart_edit;
1876 else
1877 restart_edit_save = 0;
1878 restart_edit = 0;
1879 /* Reset finish_op now, don't want it set inside edit(). */
1880 finish_op = FALSE;
1881 if (op_change(oap)) /* will call edit() */
1882 cap->retval |= CA_COMMAND_BUSY;
1883 if (restart_edit == 0)
1884 restart_edit = restart_edit_save;
1885 }
1886 break;
1887
1888 case OP_FILTER:
1889 if (vim_strchr(p_cpo, CPO_FILTER) != NULL)
1890 AppendToRedobuff((char_u *)"!\r"); /* use any last used !cmd */
1891 else
1892 bangredo = TRUE; /* do_bang() will put cmd in redo buffer */
1893
1894 case OP_INDENT:
1895 case OP_COLON:
1896
1897#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
1898 /*
1899 * If 'equalprg' is empty, do the indenting internally.
1900 */
1901 if (oap->op_type == OP_INDENT && *get_equalprg() == NUL)
1902 {
1903# ifdef FEAT_LISP
1904 if (curbuf->b_p_lisp)
1905 {
1906 op_reindent(oap, get_lisp_indent);
1907 break;
1908 }
1909# endif
1910# ifdef FEAT_CINDENT
1911 op_reindent(oap,
1912# ifdef FEAT_EVAL
1913 *curbuf->b_p_inde != NUL ? get_expr_indent :
1914# endif
1915 get_c_indent);
1916 break;
1917# endif
1918 }
1919#endif
1920
1921 op_colon(oap);
1922 break;
1923
1924 case OP_TILDE:
1925 case OP_UPPER:
1926 case OP_LOWER:
1927 case OP_ROT13:
1928 if (empty_region_error)
1929 vim_beep();
1930 else
1931 op_tilde(oap);
1932 check_cursor_col();
1933 break;
1934
1935 case OP_FORMAT:
1936 if (*p_fp != NUL)
1937 op_colon(oap); /* use external command */
1938 else
1939 op_format(oap, FALSE); /* use internal function */
1940 break;
1941
1942 case OP_FORMAT2:
1943 op_format(oap, TRUE); /* use internal function */
1944 break;
1945
1946 case OP_INSERT:
1947 case OP_APPEND:
1948#ifdef FEAT_VISUAL
1949 VIsual_reselect = FALSE; /* don't reselect now */
1950#endif
1951#ifdef FEAT_VISUALEXTRA
1952 if (empty_region_error)
1953 vim_beep();
1954 else
1955 {
1956 /* This is a new edit command, not a restart. Need to
1957 * remember it to make 'insertmode' work with mappings for
1958 * Visual mode. But do this only once. */
1959 restart_edit_save = restart_edit;
1960 restart_edit = 0;
1961
1962 op_insert(oap, cap->count1);
1963
1964 /* TODO: when inserting in several lines, should format all
1965 * the lines. */
1966 auto_format(FALSE, TRUE);
1967
1968 if (restart_edit == 0)
1969 restart_edit = restart_edit_save;
1970 }
1971#else
1972 vim_beep();
1973#endif
1974 break;
1975
1976 case OP_REPLACE:
1977#ifdef FEAT_VISUAL
1978 VIsual_reselect = FALSE; /* don't reselect now */
1979#endif
1980#ifdef FEAT_VISUALEXTRA
1981 if (empty_region_error)
1982#endif
1983 vim_beep();
1984#ifdef FEAT_VISUALEXTRA
1985 else
1986 op_replace(oap, cap->nchar);
1987#endif
1988 break;
1989
1990#ifdef FEAT_FOLDING
1991 case OP_FOLD:
1992 VIsual_reselect = FALSE; /* don't reselect now */
1993 foldCreate(oap->start.lnum, oap->end.lnum);
1994 break;
1995
1996 case OP_FOLDOPEN:
1997 case OP_FOLDOPENREC:
1998 case OP_FOLDCLOSE:
1999 case OP_FOLDCLOSEREC:
2000 VIsual_reselect = FALSE; /* don't reselect now */
2001 opFoldRange(oap->start.lnum, oap->end.lnum,
2002 oap->op_type == OP_FOLDOPEN
2003 || oap->op_type == OP_FOLDOPENREC,
2004 oap->op_type == OP_FOLDOPENREC
2005 || oap->op_type == OP_FOLDCLOSEREC,
2006 oap->is_VIsual);
2007 break;
2008
2009 case OP_FOLDDEL:
2010 case OP_FOLDDELREC:
2011 VIsual_reselect = FALSE; /* don't reselect now */
2012 deleteFold(oap->start.lnum, oap->end.lnum,
2013 oap->op_type == OP_FOLDDELREC, oap->is_VIsual);
2014 break;
2015#endif
2016 default:
2017 clearopbeep(oap);
2018 }
2019#ifdef FEAT_VIRTUALEDIT
2020 virtual_op = MAYBE;
2021#endif
2022 if (!gui_yank)
2023 {
2024 /*
2025 * if 'sol' not set, go back to old column for some commands
2026 */
2027 if (!p_sol && oap->motion_type == MLINE && !oap->end_adjusted
2028 && (oap->op_type == OP_LSHIFT || oap->op_type == OP_RSHIFT
2029 || oap->op_type == OP_DELETE))
2030 coladvance(curwin->w_curswant = old_col);
2031 }
2032 else
2033 {
2034 curwin->w_cursor = old_cursor;
2035 }
2036#ifdef FEAT_VISUAL
2037 oap->block_mode = FALSE;
2038#endif
2039 clearop(oap);
2040 }
2041}
2042
2043/*
2044 * Handle indent and format operators and visual mode ":".
2045 */
2046 static void
2047op_colon(oap)
2048 oparg_T *oap;
2049{
2050 stuffcharReadbuff(':');
2051#ifdef FEAT_VISUAL
2052 if (oap->is_VIsual)
2053 stuffReadbuff((char_u *)"'<,'>");
2054 else
2055#endif
2056 {
2057 /*
2058 * Make the range look nice, so it can be repeated.
2059 */
2060 if (oap->start.lnum == curwin->w_cursor.lnum)
2061 stuffcharReadbuff('.');
2062 else
2063 stuffnumReadbuff((long)oap->start.lnum);
2064 if (oap->end.lnum != oap->start.lnum)
2065 {
2066 stuffcharReadbuff(',');
2067 if (oap->end.lnum == curwin->w_cursor.lnum)
2068 stuffcharReadbuff('.');
2069 else if (oap->end.lnum == curbuf->b_ml.ml_line_count)
2070 stuffcharReadbuff('$');
2071 else if (oap->start.lnum == curwin->w_cursor.lnum)
2072 {
2073 stuffReadbuff((char_u *)".+");
2074 stuffnumReadbuff((long)oap->line_count - 1);
2075 }
2076 else
2077 stuffnumReadbuff((long)oap->end.lnum);
2078 }
2079 }
2080 if (oap->op_type != OP_COLON)
2081 stuffReadbuff((char_u *)"!");
2082 if (oap->op_type == OP_INDENT)
2083 {
2084#ifndef FEAT_CINDENT
2085 if (*get_equalprg() == NUL)
2086 stuffReadbuff((char_u *)"indent");
2087 else
2088#endif
2089 stuffReadbuff(get_equalprg());
2090 stuffReadbuff((char_u *)"\n");
2091 }
2092 else if (oap->op_type == OP_FORMAT)
2093 {
2094 if (*p_fp == NUL)
2095 stuffReadbuff((char_u *)"fmt");
2096 else
2097 stuffReadbuff(p_fp);
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002098 stuffReadbuff((char_u *)"\n']");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 }
2100
2101 /*
2102 * do_cmdline() does the rest
2103 */
2104}
2105
2106#if defined(FEAT_MOUSE) || defined(PROTO)
2107/*
2108 * Do the appropriate action for the current mouse click in the current mode.
2109 * Not used for Command-line mode.
2110 *
2111 * Normal Mode:
2112 * event modi- position visual change action
2113 * fier cursor window
2114 * left press - yes end yes
2115 * left press C yes end yes "^]" (2)
2116 * left press S yes end yes "*" (2)
2117 * left drag - yes start if moved no
2118 * left relse - yes start if moved no
2119 * middle press - yes if not active no put register
2120 * middle press - yes if active no yank and put
2121 * right press - yes start or extend yes
2122 * right press S yes no change yes "#" (2)
2123 * right drag - yes extend no
2124 * right relse - yes extend no
2125 *
2126 * Insert or Replace Mode:
2127 * event modi- position visual change action
2128 * fier cursor window
2129 * left press - yes (cannot be active) yes
2130 * left press C yes (cannot be active) yes "CTRL-O^]" (2)
2131 * left press S yes (cannot be active) yes "CTRL-O*" (2)
2132 * left drag - yes start or extend (1) no CTRL-O (1)
2133 * left relse - yes start or extend (1) no CTRL-O (1)
2134 * middle press - no (cannot be active) no put register
2135 * right press - yes start or extend yes CTRL-O
2136 * right press S yes (cannot be active) yes "CTRL-O#" (2)
2137 *
2138 * (1) only if mouse pointer moved since press
2139 * (2) only if click is in same buffer
2140 *
2141 * Return TRUE if start_arrow() should be called for edit mode.
2142 */
2143 int
2144do_mouse(oap, c, dir, count, fixindent)
2145 oparg_T *oap; /* operator argument, can be NULL */
2146 int c; /* K_LEFTMOUSE, etc */
2147 int dir; /* Direction to 'put' if necessary */
2148 long count;
2149 int fixindent; /* PUT_FIXINDENT if fixing indent necessary */
2150{
2151 static int do_always = FALSE; /* ignore 'mouse' setting next time */
2152 static int got_click = FALSE; /* got a click some time back */
2153
2154 int which_button; /* MOUSE_LEFT, _MIDDLE or _RIGHT */
2155 int is_click; /* If FALSE it's a drag or release event */
2156 int is_drag; /* If TRUE it's a drag event */
2157 int jump_flags = 0; /* flags for jump_to_mouse() */
2158 pos_T start_visual;
2159 int moved; /* Has cursor moved? */
2160 int in_status_line; /* mouse in status line */
2161#ifdef FEAT_VERTSPLIT
2162 int in_sep_line; /* mouse in vertical separator line */
2163#endif
2164 int c1, c2;
2165#if defined(FEAT_FOLDING)
2166 pos_T save_cursor;
2167#endif
2168 win_T *old_curwin = curwin;
2169#ifdef FEAT_VISUAL
2170 static pos_T orig_cursor;
2171 colnr_T leftcol, rightcol;
2172 pos_T end_visual;
2173 int diff;
2174 int old_active = VIsual_active;
2175 int old_mode = VIsual_mode;
2176#endif
2177 int regname;
2178
2179#if defined(FEAT_FOLDING)
2180 save_cursor = curwin->w_cursor;
2181#endif
2182
2183 /*
2184 * When GUI is active, always recognize mouse events, otherwise:
2185 * - Ignore mouse event in normal mode if 'mouse' doesn't include 'n'.
2186 * - Ignore mouse event in visual mode if 'mouse' doesn't include 'v'.
2187 * - For command line and insert mode 'mouse' is checked before calling
2188 * do_mouse().
2189 */
2190 if (do_always)
2191 do_always = FALSE;
2192 else
2193#ifdef FEAT_GUI
2194 if (!gui.in_use)
2195#endif
2196 {
2197#ifdef FEAT_VISUAL
2198 if (VIsual_active)
2199 {
2200 if (!mouse_has(MOUSE_VISUAL))
2201 return FALSE;
2202 }
2203 else
2204#endif
2205 if (State == NORMAL && !mouse_has(MOUSE_NORMAL))
2206 return FALSE;
2207 }
2208
2209 which_button = get_mouse_button(KEY2TERMCAP1(c), &is_click, &is_drag);
2210
2211#ifdef FEAT_MOUSESHAPE
2212 /* May have stopped dragging the status or separator line. The pointer is
2213 * most likely still on the status or separator line. */
2214 if (!is_drag && drag_status_line)
2215 {
2216 drag_status_line = FALSE;
2217 update_mouseshape(SHAPE_IDX_STATUS);
2218 }
2219# ifdef FEAT_VERTSPLIT
2220 if (!is_drag && drag_sep_line)
2221 {
2222 drag_sep_line = FALSE;
2223 update_mouseshape(SHAPE_IDX_VSEP);
2224 }
2225# endif
2226#endif
2227
2228 /*
2229 * Ignore drag and release events if we didn't get a click.
2230 */
2231 if (is_click)
2232 got_click = TRUE;
2233 else
2234 {
2235 if (!got_click) /* didn't get click, ignore */
2236 return FALSE;
2237 if (!is_drag) /* release, reset got_click */
2238 got_click = FALSE;
2239 }
2240
2241 /*
2242 * ALT is currently ignored
2243 */
2244 if ((mod_mask & MOD_MASK_ALT))
2245 return FALSE;
2246
2247 /*
2248 * CTRL right mouse button does CTRL-T
2249 */
2250 if (is_click && (mod_mask & MOD_MASK_CTRL) && which_button == MOUSE_RIGHT)
2251 {
2252 if (State & INSERT)
2253 stuffcharReadbuff(Ctrl_O);
2254 if (count > 1)
2255 stuffnumReadbuff(count);
2256 stuffcharReadbuff(Ctrl_T);
2257 got_click = FALSE; /* ignore drag&release now */
2258 return FALSE;
2259 }
2260
2261 /*
2262 * CTRL only works with left mouse button
2263 */
2264 if ((mod_mask & MOD_MASK_CTRL) && which_button != MOUSE_LEFT)
2265 return FALSE;
2266
2267 /*
2268 * When a modifier is down, ignore drag and release events, as well as
2269 * multiple clicks and the middle mouse button.
2270 * Accept shift-leftmouse drags when 'mousemodel' is "popup.*".
2271 */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002272 if ((mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT
2273 | MOD_MASK_META))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 && (!is_click
2275 || (mod_mask & MOD_MASK_MULTI_CLICK)
2276 || which_button == MOUSE_MIDDLE)
2277 && !((mod_mask & MOD_MASK_SHIFT)
2278 && mouse_model_popup()
2279 && which_button == MOUSE_LEFT)
2280 )
2281 return FALSE;
2282
2283 /*
2284 * If the button press was used as the movement command for an operator
2285 * (eg "d<MOUSE>"), or it is the middle button that is held down, ignore
2286 * drag/release events.
2287 */
2288 if (!is_click && which_button == MOUSE_MIDDLE)
2289 return FALSE;
2290
2291 if (oap != NULL)
2292 regname = oap->regname;
2293 else
2294 regname = 0;
2295
2296 /*
2297 * Middle mouse button does a 'put' of the selected text
2298 */
2299 if (which_button == MOUSE_MIDDLE)
2300 {
2301 if (State == NORMAL)
2302 {
2303 /*
2304 * If an operator was pending, we don't know what the user wanted
2305 * to do. Go back to normal mode: Clear the operator and beep().
2306 */
2307 if (oap != NULL && oap->op_type != OP_NOP)
2308 {
2309 clearopbeep(oap);
2310 return FALSE;
2311 }
2312
2313#ifdef FEAT_VISUAL
2314 /*
2315 * If visual was active, yank the highlighted text and put it
2316 * before the mouse pointer position.
2317 */
2318 if (VIsual_active)
2319 {
2320 stuffcharReadbuff('y');
2321 stuffcharReadbuff(K_MIDDLEMOUSE);
2322 do_always = TRUE; /* ignore 'mouse' setting next time */
2323 return FALSE;
2324 }
2325#endif
2326 /*
2327 * The rest is below jump_to_mouse()
2328 */
2329 }
2330
2331 else if ((State & INSERT) == 0)
2332 return FALSE;
2333
2334 /*
2335 * Middle click in insert mode doesn't move the mouse, just insert the
2336 * contents of a register. '.' register is special, can't insert that
2337 * with do_put().
2338 * Also paste at the cursor if the current mode isn't in 'mouse' (only
2339 * happens for the GUI).
2340 */
2341 if ((State & INSERT) || !mouse_has(MOUSE_NORMAL))
2342 {
2343 if (regname == '.')
2344 insert_reg(regname, TRUE);
2345 else
2346 {
2347#ifdef FEAT_CLIPBOARD
2348 if (clip_star.available && regname == 0)
2349 regname = '*';
2350#endif
2351 if ((State & REPLACE_FLAG) && !yank_register_mline(regname))
2352 insert_reg(regname, TRUE);
2353 else
2354 {
2355 do_put(regname, BACKWARD, 1L, fixindent | PUT_CURSEND);
2356
2357 /* Repeat it with CTRL-R CTRL-O r or CTRL-R CTRL-P r */
2358 AppendCharToRedobuff(Ctrl_R);
2359 AppendCharToRedobuff(fixindent ? Ctrl_P : Ctrl_O);
2360 AppendCharToRedobuff(regname == 0 ? '"' : regname);
2361 }
2362 }
2363 return FALSE;
2364 }
2365 }
2366
2367 /* When dragging or button-up stay in the same window. */
2368 if (!is_click)
2369 jump_flags |= MOUSE_FOCUS | MOUSE_DID_MOVE;
2370
2371 start_visual.lnum = 0;
2372
2373 /*
2374 * When 'mousemodel' is "popup" or "popup_setpos", translate mouse events:
2375 * right button up -> pop-up menu
2376 * shift-left button -> right button
2377 */
2378 if (mouse_model_popup())
2379 {
2380 if (which_button == MOUSE_RIGHT
2381 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2382 {
2383 /*
2384 * NOTE: Ignore right button down and drag mouse events.
2385 * Windows only shows the popup menu on the button up event.
2386 */
Bram Moolenaar843ee412004-06-30 16:16:41 +00002387#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_KDE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 if (!is_click)
2389 return FALSE;
2390#endif
2391#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN)
2392 if (is_click || is_drag)
2393 return FALSE;
2394#endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00002395#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_KDE) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
2397 || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_PHOTON)
2398 if (gui.in_use)
2399 {
2400 jump_flags = 0;
2401 if (STRCMP(p_mousem, "popup_setpos") == 0)
2402 {
2403 /* First set the cursor position before showing the popup
2404 * menu. */
2405#ifdef FEAT_VISUAL
2406 if (VIsual_active)
2407 {
2408 pos_T m_pos;
2409
2410 /*
2411 * set MOUSE_MAY_STOP_VIS if we are outside the
2412 * selection or the current window (might have false
2413 * negative here)
2414 */
2415 if (mouse_row < W_WINROW(curwin)
2416 || mouse_row
2417 > (W_WINROW(curwin) + curwin->w_height))
2418 jump_flags = MOUSE_MAY_STOP_VIS;
2419 else if (get_fpos_of_mouse(&m_pos) != IN_BUFFER)
2420 jump_flags = MOUSE_MAY_STOP_VIS;
2421 else
2422 {
2423 if ((lt(curwin->w_cursor, VIsual)
2424 && (lt(m_pos, curwin->w_cursor)
2425 || lt(VIsual, m_pos)))
2426 || (lt(VIsual, curwin->w_cursor)
2427 && (lt(m_pos, VIsual)
2428 || lt(curwin->w_cursor, m_pos))))
2429 {
2430 jump_flags = MOUSE_MAY_STOP_VIS;
2431 }
2432 else if (VIsual_mode == Ctrl_V)
2433 {
2434 getvcols(curwin, &curwin->w_cursor, &VIsual,
2435 &leftcol, &rightcol);
2436 getvcol(curwin, &m_pos, NULL, &m_pos.col, NULL);
2437 if (m_pos.col < leftcol || m_pos.col > rightcol)
2438 jump_flags = MOUSE_MAY_STOP_VIS;
2439 }
2440 }
2441 }
2442 else
2443 jump_flags = MOUSE_MAY_STOP_VIS;
2444#endif
2445 }
2446 if (jump_flags)
2447 {
2448 jump_flags = jump_to_mouse(jump_flags, NULL, which_button);
2449 update_curbuf(
2450#ifdef FEAT_VISUAL
2451 VIsual_active ? INVERTED :
2452#endif
2453 VALID);
2454 setcursor();
2455 out_flush(); /* Update before showing popup menu */
2456 }
2457# ifdef FEAT_MENU
2458 gui_show_popupmenu();
2459# endif
2460 return (jump_flags & CURSOR_MOVED) != 0;
2461 }
2462 else
2463 return FALSE;
2464#else
2465 return FALSE;
2466#endif
2467 }
2468 if (which_button == MOUSE_LEFT && (mod_mask & MOD_MASK_SHIFT))
2469 {
2470 which_button = MOUSE_RIGHT;
2471 mod_mask &= ~MOD_MASK_SHIFT;
2472 }
2473 }
2474
2475#ifdef FEAT_VISUAL
2476 if ((State & (NORMAL | INSERT))
2477 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
2478 {
2479 if (which_button == MOUSE_LEFT)
2480 {
2481 if (is_click)
2482 {
2483 /* stop Visual mode for a left click in a window, but not when
2484 * on a status line */
2485 if (VIsual_active)
2486 jump_flags |= MOUSE_MAY_STOP_VIS;
2487 }
2488 else if (mouse_has(MOUSE_VISUAL))
2489 jump_flags |= MOUSE_MAY_VIS;
2490 }
2491 else if (which_button == MOUSE_RIGHT)
2492 {
2493 if (is_click && VIsual_active)
2494 {
2495 /*
2496 * Remember the start and end of visual before moving the
2497 * cursor.
2498 */
2499 if (lt(curwin->w_cursor, VIsual))
2500 {
2501 start_visual = curwin->w_cursor;
2502 end_visual = VIsual;
2503 }
2504 else
2505 {
2506 start_visual = VIsual;
2507 end_visual = curwin->w_cursor;
2508 }
2509 }
2510 jump_flags |= MOUSE_FOCUS;
2511 if (mouse_has(MOUSE_VISUAL))
2512 jump_flags |= MOUSE_MAY_VIS;
2513 }
2514 }
2515#endif
2516
2517 /*
2518 * If an operator is pending, ignore all drags and releases until the
2519 * next mouse click.
2520 */
2521 if (!is_drag && oap != NULL && oap->op_type != OP_NOP)
2522 {
2523 got_click = FALSE;
2524 oap->motion_type = MCHAR;
2525 }
2526
2527 /* When releasing the button let jump_to_mouse() know. */
2528 if (!is_click && !is_drag)
2529 jump_flags |= MOUSE_RELEASED;
2530
2531 /*
2532 * JUMP!
2533 */
2534 jump_flags = jump_to_mouse(jump_flags,
2535 oap == NULL ? NULL : &(oap->inclusive), which_button);
2536 moved = (jump_flags & CURSOR_MOVED);
2537 in_status_line = (jump_flags & IN_STATUS_LINE);
2538#ifdef FEAT_VERTSPLIT
2539 in_sep_line = (jump_flags & IN_SEP_LINE);
2540#endif
2541
2542#ifdef FEAT_NETBEANS_INTG
2543 if (usingNetbeans && isNetbeansBuffer(curbuf)
2544 && !(jump_flags & (IN_STATUS_LINE | IN_SEP_LINE)))
2545 {
2546 int key = KEY2TERMCAP1(c);
2547
2548 if (key == (int)KE_LEFTRELEASE || key == (int)KE_MIDDLERELEASE
2549 || key == (int)KE_RIGHTRELEASE)
2550 netbeans_button_release(which_button);
2551 }
2552#endif
2553
2554 /* When jumping to another window, clear a pending operator. That's a bit
2555 * friendlier than beeping and not jumping to that window. */
2556 if (curwin != old_curwin && oap != NULL && oap->op_type != OP_NOP)
2557 clearop(oap);
2558
2559#ifdef FEAT_FOLDING
2560 if (mod_mask == 0
2561 && !is_drag
2562 && (jump_flags & (MOUSE_FOLD_CLOSE | MOUSE_FOLD_OPEN))
2563 && which_button == MOUSE_LEFT)
2564 {
2565 /* open or close a fold at this line */
2566 if (jump_flags & MOUSE_FOLD_OPEN)
2567 openFold(curwin->w_cursor.lnum, 1L);
2568 else
2569 closeFold(curwin->w_cursor.lnum, 1L);
2570 /* don't move the cursor if still in the same window */
2571 if (curwin == old_curwin)
2572 curwin->w_cursor = save_cursor;
2573 }
2574#endif
2575
2576#if defined(FEAT_CLIPBOARD) && defined(FEAT_CMDWIN)
2577 if ((jump_flags & IN_OTHER_WIN) && !VIsual_active && clip_star.available)
2578 {
2579 clip_modeless(which_button, is_click, is_drag);
2580 return FALSE;
2581 }
2582#endif
2583
2584#ifdef FEAT_VISUAL
2585 /* Set global flag that we are extending the Visual area with mouse
2586 * dragging; temporarily mimimize 'scrolloff'. */
2587 if (VIsual_active && is_drag && p_so)
2588 {
2589 /* In the very first line, allow scrolling one line */
2590 if (mouse_row == 0)
2591 mouse_dragging = 2;
2592 else
2593 mouse_dragging = 1;
2594 }
2595
2596 /* When dragging the mouse above the window, scroll down. */
2597 if (is_drag && mouse_row < 0 && !in_status_line)
2598 {
2599 scroll_redraw(FALSE, 1L);
2600 mouse_row = 0;
2601 }
2602
2603 if (start_visual.lnum) /* right click in visual mode */
2604 {
2605 /*
2606 * In Visual-block mode, divide the area in four, pick up the corner
2607 * that is in the quarter that the cursor is in.
2608 */
2609 if (VIsual_mode == Ctrl_V)
2610 {
2611 getvcols(curwin, &start_visual, &end_visual, &leftcol, &rightcol);
2612 if (curwin->w_curswant > (leftcol + rightcol) / 2)
2613 end_visual.col = leftcol;
2614 else
2615 end_visual.col = rightcol;
2616 if (curwin->w_cursor.lnum <
2617 (start_visual.lnum + end_visual.lnum) / 2)
2618 end_visual.lnum = end_visual.lnum;
2619 else
2620 end_visual.lnum = start_visual.lnum;
2621
2622 /* move VIsual to the right column */
2623 start_visual = curwin->w_cursor; /* save the cursor pos */
2624 curwin->w_cursor = end_visual;
2625 coladvance(end_visual.col);
2626 VIsual = curwin->w_cursor;
2627 curwin->w_cursor = start_visual; /* restore the cursor */
2628 }
2629 else
2630 {
2631 /*
2632 * If the click is before the start of visual, change the start.
2633 * If the click is after the end of visual, change the end. If
2634 * the click is inside the visual, change the closest side.
2635 */
2636 if (lt(curwin->w_cursor, start_visual))
2637 VIsual = end_visual;
2638 else if (lt(end_visual, curwin->w_cursor))
2639 VIsual = start_visual;
2640 else
2641 {
2642 /* In the same line, compare column number */
2643 if (end_visual.lnum == start_visual.lnum)
2644 {
2645 if (curwin->w_cursor.col - start_visual.col >
2646 end_visual.col - curwin->w_cursor.col)
2647 VIsual = start_visual;
2648 else
2649 VIsual = end_visual;
2650 }
2651
2652 /* In different lines, compare line number */
2653 else
2654 {
2655 diff = (curwin->w_cursor.lnum - start_visual.lnum) -
2656 (end_visual.lnum - curwin->w_cursor.lnum);
2657
2658 if (diff > 0) /* closest to end */
2659 VIsual = start_visual;
2660 else if (diff < 0) /* closest to start */
2661 VIsual = end_visual;
2662 else /* in the middle line */
2663 {
2664 if (curwin->w_cursor.col <
2665 (start_visual.col + end_visual.col) / 2)
2666 VIsual = end_visual;
2667 else
2668 VIsual = start_visual;
2669 }
2670 }
2671 }
2672 }
2673 }
2674 /*
2675 * If Visual mode started in insert mode, execute "CTRL-O"
2676 */
2677 else if ((State & INSERT) && VIsual_active)
2678 stuffcharReadbuff(Ctrl_O);
2679#endif
2680
2681 /*
2682 * Middle mouse click: Put text before cursor.
2683 */
2684 if (which_button == MOUSE_MIDDLE)
2685 {
2686#ifdef FEAT_CLIPBOARD
2687 if (clip_star.available && regname == 0)
2688 regname = '*';
2689#endif
2690 if (yank_register_mline(regname))
2691 {
2692 if (mouse_past_bottom)
2693 dir = FORWARD;
2694 }
2695 else if (mouse_past_eol)
2696 dir = FORWARD;
2697
2698 if (fixindent)
2699 {
2700 c1 = (dir == BACKWARD) ? '[' : ']';
2701 c2 = 'p';
2702 }
2703 else
2704 {
2705 c1 = (dir == FORWARD) ? 'p' : 'P';
2706 c2 = NUL;
2707 }
2708 prep_redo(regname, count, NUL, c1, NUL, c2, NUL);
2709
2710 /*
2711 * Remember where the paste started, so in edit() Insstart can be set
2712 * to this position
2713 */
2714 if (restart_edit != 0)
2715 where_paste_started = curwin->w_cursor;
2716 do_put(regname, dir, count, fixindent | PUT_CURSEND);
2717 }
2718
2719#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
2720 /*
2721 * Ctrl-Mouse click or double click in a quickfix window jumps to the
2722 * error under the mouse pointer.
2723 */
2724 else if (((mod_mask & MOD_MASK_CTRL)
2725 || (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2726 && bt_quickfix(curbuf))
2727 {
2728 if (State & INSERT)
2729 stuffcharReadbuff(Ctrl_O);
2730 stuffReadbuff((char_u *)":.cc\n");
2731 got_click = FALSE; /* ignore drag&release now */
2732 }
2733#endif
2734
2735 /*
2736 * Ctrl-Mouse click (or double click in a help window) jumps to the tag
2737 * under the mouse pointer.
2738 */
2739 else if ((mod_mask & MOD_MASK_CTRL) || (curbuf->b_help
2740 && (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK))
2741 {
2742 if (State & INSERT)
2743 stuffcharReadbuff(Ctrl_O);
2744 stuffcharReadbuff(Ctrl_RSB);
2745 got_click = FALSE; /* ignore drag&release now */
2746 }
2747
2748 /*
2749 * Shift-Mouse click searches for the next occurrence of the word under
2750 * the mouse pointer
2751 */
2752 else if ((mod_mask & MOD_MASK_SHIFT))
2753 {
2754 if (State & INSERT
2755#ifdef FEAT_VISUAL
2756 || (VIsual_active && VIsual_select)
2757#endif
2758 )
2759 stuffcharReadbuff(Ctrl_O);
2760 if (which_button == MOUSE_LEFT)
2761 stuffcharReadbuff('*');
2762 else /* MOUSE_RIGHT */
2763 stuffcharReadbuff('#');
2764 }
2765
2766 /* Handle double clicks, unless on status line */
2767 else if (in_status_line)
2768 {
2769#ifdef FEAT_MOUSESHAPE
2770 if ((is_drag || is_click) && !drag_status_line)
2771 {
2772 drag_status_line = TRUE;
2773 update_mouseshape(-1);
2774 }
2775#endif
2776 }
2777#ifdef FEAT_VERTSPLIT
2778 else if (in_sep_line)
2779 {
2780# ifdef FEAT_MOUSESHAPE
2781 if ((is_drag || is_click) && !drag_sep_line)
2782 {
2783 drag_sep_line = TRUE;
2784 update_mouseshape(-1);
2785 }
2786# endif
2787 }
2788#endif
2789#ifdef FEAT_VISUAL
2790 else if ((mod_mask & MOD_MASK_MULTI_CLICK) && (State & (NORMAL | INSERT))
2791 && mouse_has(MOUSE_VISUAL))
2792 {
2793 if (is_click || !VIsual_active)
2794 {
2795 if (VIsual_active)
2796 orig_cursor = VIsual;
2797 else
2798 {
2799 check_visual_highlight();
2800 VIsual = curwin->w_cursor;
2801 orig_cursor = VIsual;
2802 VIsual_active = TRUE;
2803 VIsual_reselect = TRUE;
2804 /* start Select mode if 'selectmode' contains "mouse" */
2805 may_start_select('o');
2806 setmouse();
2807 }
2808 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2809 VIsual_mode = 'v';
2810 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_3CLICK)
2811 VIsual_mode = 'V';
2812 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_4CLICK)
2813 VIsual_mode = Ctrl_V;
2814#ifdef FEAT_CLIPBOARD
2815 /* Make sure the clipboard gets updated. Needed because start and
2816 * end may still be the same, and the selection needs to be owned */
2817 clip_star.vmode = NUL;
2818#endif
2819 }
2820 /*
2821 * A double click selects a word or a block.
2822 */
2823 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
2824 {
2825 pos_T *pos = NULL;
2826
2827 if (is_click)
2828 {
2829 /* If the character under the cursor (skipping white space) is
2830 * not a word character, try finding a match and select a (),
2831 * {}, [], #if/#endif, etc. block. */
2832 end_visual = curwin->w_cursor;
2833 while (vim_iswhite(gchar_pos(&end_visual)))
2834 inc(&end_visual);
2835 if (oap != NULL)
2836 oap->motion_type = MCHAR;
2837 if (oap != NULL
2838 && VIsual_mode == 'v'
2839 && !vim_iswordc(gchar_pos(&end_visual))
2840 && equalpos(curwin->w_cursor, VIsual)
2841 && (pos = findmatch(oap, NUL)) != NULL)
2842 {
2843 curwin->w_cursor = *pos;
2844 if (oap->motion_type == MLINE)
2845 VIsual_mode = 'V';
2846 else if (*p_sel == 'e')
2847 {
2848 if (lt(curwin->w_cursor, VIsual))
2849 ++VIsual.col;
2850 else
2851 ++curwin->w_cursor.col;
2852 }
2853 }
2854 }
2855
2856 if (pos == NULL && (is_click || is_drag))
2857 {
2858 /* When not found a match or when dragging: extend to include
2859 * a word. */
2860 if (lt(curwin->w_cursor, orig_cursor))
2861 {
2862 find_start_of_word(&curwin->w_cursor);
2863 find_end_of_word(&VIsual);
2864 }
2865 else
2866 {
2867 find_start_of_word(&VIsual);
2868 if (*p_sel == 'e' && *ml_get_cursor() != NUL)
2869#ifdef FEAT_MBYTE
2870 curwin->w_cursor.col +=
2871 (*mb_ptr2len_check)(ml_get_cursor());
2872#else
2873 ++curwin->w_cursor.col;
2874#endif
2875 find_end_of_word(&curwin->w_cursor);
2876 }
2877 }
2878 curwin->w_set_curswant = TRUE;
2879 }
2880 if (is_click)
2881 redraw_curbuf_later(INVERTED); /* update the inversion */
2882 }
2883 else if (VIsual_active && !old_active)
2884 VIsual_mode = 'v';
2885
2886 /* If Visual mode changed show it later. */
2887 if (p_smd && (VIsual_active != old_active || VIsual_mode != old_mode))
2888 redraw_cmdline = TRUE;
2889#endif
2890
2891 return moved;
2892}
2893
2894#ifdef FEAT_VISUAL
2895/*
2896 * Move "pos" back to the start of the word it's in.
2897 */
2898 static void
2899find_start_of_word(pos)
2900 pos_T *pos;
2901{
2902 char_u *line;
2903 int cclass;
2904 int col;
2905
2906 line = ml_get(pos->lnum);
2907 cclass = get_mouse_class(line + pos->col);
2908
2909 while (pos->col > 0)
2910 {
2911 col = pos->col - 1;
2912#ifdef FEAT_MBYTE
2913 col -= (*mb_head_off)(line, line + col);
2914#endif
2915 if (get_mouse_class(line + col) != cclass)
2916 break;
2917 pos->col = col;
2918 }
2919}
2920
2921/*
2922 * Move "pos" forward to the end of the word it's in.
2923 * When 'selection' is "exclusive", the position is just after the word.
2924 */
2925 static void
2926find_end_of_word(pos)
2927 pos_T *pos;
2928{
2929 char_u *line;
2930 int cclass;
2931 int col;
2932
2933 line = ml_get(pos->lnum);
2934 if (*p_sel == 'e' && pos->col > 0)
2935 {
2936 --pos->col;
2937#ifdef FEAT_MBYTE
2938 pos->col -= (*mb_head_off)(line, line + pos->col);
2939#endif
2940 }
2941 cclass = get_mouse_class(line + pos->col);
2942 while (line[pos->col] != NUL)
2943 {
2944#ifdef FEAT_MBYTE
2945 col = pos->col + (*mb_ptr2len_check)(line + pos->col);
2946#else
2947 col = pos->col + 1;
2948#endif
2949 if (get_mouse_class(line + col) != cclass)
2950 {
2951 if (*p_sel == 'e')
2952 pos->col = col;
2953 break;
2954 }
2955 pos->col = col;
2956 }
2957}
2958
2959/*
2960 * Get class of a character for selection: same class means same word.
2961 * 0: blank
2962 * 1: punctuation groups
2963 * 2: normal word character
2964 * >2: multi-byte word character.
2965 */
2966 static int
2967get_mouse_class(p)
2968 char_u *p;
2969{
2970 int c;
2971
2972#ifdef FEAT_MBYTE
2973 if (has_mbyte && MB_BYTE2LEN(p[0]) > 1)
2974 return mb_get_class(p);
2975#endif
2976
2977 c = *p;
2978 if (c == ' ' || c == '\t')
2979 return 0;
2980
2981 if (vim_iswordc(c))
2982 return 2;
2983
2984 /*
2985 * There are a few special cases where we want certain combinations of
2986 * characters to be considered as a single word. These are things like
2987 * "->", "/ *", "*=", "+=", "&=", "<=", ">=", "!=" etc. Otherwise, each
2988 * character is in it's own class.
2989 */
2990 if (c != NUL && vim_strchr((char_u *)"-+*/%<>&|^!=", c) != NULL)
2991 return 1;
2992 return c;
2993}
2994#endif /* FEAT_VISUAL */
2995#endif /* FEAT_MOUSE */
2996
2997#if defined(FEAT_VISUAL) || defined(PROTO)
2998/*
2999 * Check if highlighting for visual mode is possible, give a warning message
3000 * if not.
3001 */
3002 void
3003check_visual_highlight()
3004{
3005 static int did_check = FALSE;
3006
3007 if (full_screen)
3008 {
3009 if (!did_check && hl_attr(HLF_V) == 0)
3010 MSG(_("Warning: terminal cannot highlight"));
3011 did_check = TRUE;
3012 }
3013}
3014
3015/*
3016 * End visual mode.
3017 * This function should ALWAYS be called to end Visual mode, except from
3018 * do_pending_operator().
3019 */
3020 void
3021end_visual_mode()
3022{
3023#ifdef FEAT_CLIPBOARD
3024 /*
3025 * If we are using the clipboard, then remember what was selected in case
3026 * we need to paste it somewhere while we still own the selection.
3027 * Only do this when the clipboard is already owned. Don't want to grab
3028 * the selection when hitting ESC.
3029 */
3030 if (clip_star.available && clip_star.owned)
3031 clip_auto_select();
3032#endif
3033
3034 VIsual_active = FALSE;
3035#ifdef FEAT_MOUSE
3036 setmouse();
3037 mouse_dragging = 0;
3038#endif
3039
3040 /* Save the current VIsual area for '< and '> marks, and "gv" */
3041 curbuf->b_visual_mode = VIsual_mode;
3042#ifdef FEAT_EVAL
3043 curbuf->b_visual_mode_eval = VIsual_mode;
3044#endif
3045 curbuf->b_visual_start = VIsual;
3046 curbuf->b_visual_end = curwin->w_cursor;
3047 curbuf->b_visual_curswant = curwin->w_curswant;
3048#ifdef FEAT_VIRTUALEDIT
3049 if (!virtual_active())
3050 curwin->w_cursor.coladd = 0;
3051#endif
3052
3053 if (p_smd)
3054 clear_cmdline = TRUE; /* unshow visual mode later */
3055#ifdef FEAT_CMDL_INFO
3056 else
3057 clear_showcmd();
3058#endif
3059
3060 /* Don't leave the cursor past the end of the line */
3061 if (curwin->w_cursor.col > 0 && *ml_get_cursor() == NUL)
3062 --curwin->w_cursor.col;
3063}
3064
3065/*
3066 * Reset VIsual_active and VIsual_reselect.
3067 */
3068 void
3069reset_VIsual_and_resel()
3070{
3071 if (VIsual_active)
3072 {
3073 end_visual_mode();
3074 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3075 }
3076 VIsual_reselect = FALSE;
3077}
3078
3079/*
3080 * Reset VIsual_active and VIsual_reselect if it's set.
3081 */
3082 void
3083reset_VIsual()
3084{
3085 if (VIsual_active)
3086 {
3087 end_visual_mode();
3088 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3089 VIsual_reselect = FALSE;
3090 }
3091}
3092#endif /* FEAT_VISUAL */
3093
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003094#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095static int find_is_eval_item __ARGS((char_u *ptr, int *colp, int *nbp, int dir));
3096
3097/*
3098 * Check for a balloon-eval special item to include when searching for an
3099 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
3100 * Returns TRUE if the character at "*ptr" should be included.
3101 * "dir" is FORWARD or BACKWARD, the direction of searching.
3102 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
3103 * "bnp" points to a counter for square brackets.
3104 */
3105 static int
3106find_is_eval_item(ptr, colp, bnp, dir)
3107 char_u *ptr;
3108 int *colp;
3109 int *bnp;
3110 int dir;
3111{
3112 /* Accept everything inside []. */
3113 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
3114 ++*bnp;
3115 if (*bnp > 0)
3116 {
3117 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
3118 --*bnp;
3119 return TRUE;
3120 }
3121
3122 /* skip over "s.var" */
3123 if (*ptr == '.')
3124 return TRUE;
3125
3126 /* two-character item: s->var */
3127 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
3128 && ptr[dir == BACKWARD ? -1 : 0] == '-')
3129 {
3130 *colp += dir;
3131 return TRUE;
3132 }
3133 return FALSE;
3134}
3135#endif
3136
3137/*
3138 * Find the identifier under or to the right of the cursor.
3139 * "find_type" can have one of three values:
3140 * FIND_IDENT: find an identifier (keyword)
3141 * FIND_STRING: find any non-white string
3142 * FIND_IDENT + FIND_STRING: find any non-white string, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003143 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 *
3145 * There are three steps:
3146 * 1. Search forward for the start of an identifier/string. Doesn't move if
3147 * already on one.
3148 * 2. Search backward for the start of this identifier/string.
3149 * This doesn't match the real Vi but I like it a little better and it
3150 * shouldn't bother anyone.
3151 * 3. Search forward to the end of this identifier/string.
3152 * When FIND_IDENT isn't defined, we backup until a blank.
3153 *
3154 * Returns the length of the string, or zero if no string is found.
3155 * If a string is found, a pointer to the string is put in "*string". This
3156 * string is not always NUL terminated.
3157 */
3158 int
3159find_ident_under_cursor(string, find_type)
3160 char_u **string;
3161 int find_type;
3162{
3163 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
3164 curwin->w_cursor.col, string, find_type);
3165}
3166
3167/*
3168 * Like find_ident_under_cursor(), but for any window and any position.
3169 * However: Uses 'iskeyword' from the current window!.
3170 */
3171 int
3172find_ident_at_pos(wp, lnum, startcol, string, find_type)
3173 win_T *wp;
3174 linenr_T lnum;
3175 colnr_T startcol;
3176 char_u **string;
3177 int find_type;
3178{
3179 char_u *ptr;
3180 int col = 0; /* init to shut up GCC */
3181 int i;
3182#ifdef FEAT_MBYTE
3183 int this_class = 0;
3184 int prev_class;
3185 int prevcol;
3186#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003187#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 int bn = 0; /* bracket nesting */
3189#endif
3190
3191 /*
3192 * if i == 0: try to find an identifier
3193 * if i == 1: try to find any non-white string
3194 */
3195 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
3196 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
3197 {
3198 /*
3199 * 1. skip to start of identifier/string
3200 */
3201 col = startcol;
3202#ifdef FEAT_MBYTE
3203 if (has_mbyte)
3204 {
3205 while (ptr[col] != NUL)
3206 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003207# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 /* Stop at a ']' to evaluate "a[x]". */
3209 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3210 break;
3211# endif
3212 this_class = mb_get_class(ptr + col);
3213 if (this_class != 0 && (i == 1 || this_class != 1))
3214 break;
3215 col += (*mb_ptr2len_check)(ptr + col);
3216 }
3217 }
3218 else
3219#endif
3220 while (ptr[col] != NUL
3221 && (i == 0 ? !vim_iswordc(ptr[col]) : vim_iswhite(ptr[col]))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003222# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
3224# endif
3225 )
3226 ++col;
3227
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003228#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 /* When starting on a ']' count it, so that we include the '['. */
3230 bn = ptr[col] == ']';
3231#endif
3232
3233 /*
3234 * 2. Back up to start of identifier/string.
3235 */
3236#ifdef FEAT_MBYTE
3237 if (has_mbyte)
3238 {
3239 /* Remember class of character under cursor. */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003240# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3242 this_class = mb_get_class((char_u *)"a");
3243 else
3244# endif
3245 this_class = mb_get_class(ptr + col);
3246 while (col > 0)
3247 {
3248 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
3249 prev_class = mb_get_class(ptr + prevcol);
3250 if (this_class != prev_class
3251 && (i == 0
3252 || prev_class == 0
3253 || (find_type & FIND_IDENT))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003254# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 && (!(find_type & FIND_EVAL)
3256 || prevcol == 0
3257 || !find_is_eval_item(ptr + prevcol, &prevcol,
3258 &bn, BACKWARD))
3259# endif
3260 )
3261 break;
3262 col = prevcol;
3263 }
3264
3265 /* If we don't want just any old string, or we've found an
3266 * identifier, stop searching. */
3267 if (this_class > 2)
3268 this_class = 2;
3269 if (!(find_type & FIND_STRING) || this_class == 2)
3270 break;
3271 }
3272 else
3273#endif
3274 {
3275 while (col > 0
3276 && ((i == 0
3277 ? vim_iswordc(ptr[col - 1])
3278 : (!vim_iswhite(ptr[col - 1])
3279 && (!(find_type & FIND_IDENT)
3280 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003281#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 || ((find_type & FIND_EVAL)
3283 && col > 1
3284 && find_is_eval_item(ptr + col - 1, &col,
3285 &bn, BACKWARD))
3286#endif
3287 ))
3288 --col;
3289
3290 /* If we don't want just any old string, or we've found an
3291 * identifier, stop searching. */
3292 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
3293 break;
3294 }
3295 }
3296
3297 if (ptr[col] == NUL || (i == 0 && (
3298#ifdef FEAT_MBYTE
3299 has_mbyte ? this_class != 2 :
3300#endif
3301 !vim_iswordc(ptr[col]))))
3302 {
3303 /*
3304 * didn't find an identifier or string
3305 */
3306 if (find_type & FIND_STRING)
3307 EMSG(_("E348: No string under cursor"));
3308 else
3309 EMSG(_("E349: No identifier under cursor"));
3310 return 0;
3311 }
3312 ptr += col;
3313 *string = ptr;
3314
3315 /*
3316 * 3. Find the end if the identifier/string.
3317 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003318#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 bn = 0;
3320 startcol -= col;
3321#endif
3322 col = 0;
3323#ifdef FEAT_MBYTE
3324 if (has_mbyte)
3325 {
3326 /* Search for point of changing multibyte character class. */
3327 this_class = mb_get_class(ptr);
3328 while (ptr[col] != NUL
3329 && ((i == 0 ? mb_get_class(ptr + col) == this_class
3330 : mb_get_class(ptr + col) != 0)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003331# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332 || ((find_type & FIND_EVAL)
3333 && col <= (int)startcol
3334 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3335# endif
3336 ))
3337 col += (*mb_ptr2len_check)(ptr + col);
3338 }
3339 else
3340#endif
3341 while ((i == 0 ? vim_iswordc(ptr[col])
3342 : (ptr[col] != NUL && !vim_iswhite(ptr[col])))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003343# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 || ((find_type & FIND_EVAL)
3345 && col <= (int)startcol
3346 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3347# endif
3348 )
3349 {
3350 ++col;
3351 }
3352
3353 return col;
3354}
3355
3356/*
3357 * Prepare for redo of a normal command.
3358 */
3359 static void
3360prep_redo_cmd(cap)
3361 cmdarg_T *cap;
3362{
3363 prep_redo(cap->oap->regname, cap->count0,
3364 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
3365}
3366
3367/*
3368 * Prepare for redo of any command.
3369 * Note that only the last argument can be a multi-byte char.
3370 */
3371 static void
3372prep_redo(regname, num, cmd1, cmd2, cmd3, cmd4, cmd5)
3373 int regname;
3374 long num;
3375 int cmd1;
3376 int cmd2;
3377 int cmd3;
3378 int cmd4;
3379 int cmd5;
3380{
3381 ResetRedobuff();
3382 if (regname != 0) /* yank from specified buffer */
3383 {
3384 AppendCharToRedobuff('"');
3385 AppendCharToRedobuff(regname);
3386 }
3387 if (num)
3388 AppendNumberToRedobuff(num);
3389
3390 if (cmd1 != NUL)
3391 AppendCharToRedobuff(cmd1);
3392 if (cmd2 != NUL)
3393 AppendCharToRedobuff(cmd2);
3394 if (cmd3 != NUL)
3395 AppendCharToRedobuff(cmd3);
3396 if (cmd4 != NUL)
3397 AppendCharToRedobuff(cmd4);
3398 if (cmd5 != NUL)
3399 AppendCharToRedobuff(cmd5);
3400}
3401
3402/*
3403 * check for operator active and clear it
3404 *
3405 * return TRUE if operator was active
3406 */
3407 static int
3408checkclearop(oap)
3409 oparg_T *oap;
3410{
3411 if (oap->op_type == OP_NOP)
3412 return FALSE;
3413 clearopbeep(oap);
3414 return TRUE;
3415}
3416
3417/*
3418 * check for operator or Visual active and clear it
3419 *
3420 * return TRUE if operator was active
3421 */
3422 static int
3423checkclearopq(oap)
3424 oparg_T *oap;
3425{
3426 if (oap->op_type == OP_NOP
3427#ifdef FEAT_VISUAL
3428 && !VIsual_active
3429#endif
3430 )
3431 return FALSE;
3432 clearopbeep(oap);
3433 return TRUE;
3434}
3435
3436 static void
3437clearop(oap)
3438 oparg_T *oap;
3439{
3440 oap->op_type = OP_NOP;
3441 oap->regname = 0;
3442 oap->motion_force = NUL;
3443 oap->use_reg_one = FALSE;
3444}
3445
3446 static void
3447clearopbeep(oap)
3448 oparg_T *oap;
3449{
3450 clearop(oap);
3451 beep_flush();
3452}
3453
3454#ifdef FEAT_VISUAL
3455/*
3456 * Remove the shift modifier from a special key.
3457 */
3458 static void
3459unshift_special(cap)
3460 cmdarg_T *cap;
3461{
3462 switch (cap->cmdchar)
3463 {
3464 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
3465 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
3466 case K_S_UP: cap->cmdchar = K_UP; break;
3467 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
3468 case K_S_HOME: cap->cmdchar = K_HOME; break;
3469 case K_S_END: cap->cmdchar = K_END; break;
3470 }
3471 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
3472}
3473#endif
3474
3475#if defined(FEAT_CMDL_INFO) || defined(PROTO)
3476/*
3477 * Routines for displaying a partly typed command
3478 */
3479
3480#ifdef FEAT_VISUAL /* need room for size of Visual area */
3481# define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
3482#else
3483# define SHOWCMD_BUFLEN SHOWCMD_COLS + 1
3484#endif
3485static char_u showcmd_buf[SHOWCMD_BUFLEN];
3486static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; /* For push_showcmd() */
3487static int showcmd_is_clear = TRUE;
3488static int showcmd_visual = FALSE;
3489
3490static void display_showcmd __ARGS((void));
3491
3492 void
3493clear_showcmd()
3494{
3495 if (!p_sc)
3496 return;
3497
3498#ifdef FEAT_VISUAL
3499 if (VIsual_active && !char_avail())
3500 {
3501 int i = lt(VIsual, curwin->w_cursor);
3502 long lines;
3503 colnr_T leftcol, rightcol;
3504 linenr_T top, bot;
3505
3506 /* Show the size of the Visual area. */
3507 if (i)
3508 {
3509 top = VIsual.lnum;
3510 bot = curwin->w_cursor.lnum;
3511 }
3512 else
3513 {
3514 top = curwin->w_cursor.lnum;
3515 bot = VIsual.lnum;
3516 }
3517# ifdef FEAT_FOLDING
3518 /* Include closed folds as a whole. */
3519 hasFolding(top, &top, NULL);
3520 hasFolding(bot, NULL, &bot);
3521# endif
3522 lines = bot - top + 1;
3523
3524 if (VIsual_mode == Ctrl_V)
3525 {
3526 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
3527 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
3528 (long)(rightcol - leftcol + 1));
3529 }
3530 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
3531 sprintf((char *)showcmd_buf, "%ld", lines);
3532 else
3533 sprintf((char *)showcmd_buf, "%ld", (long)(i
3534 ? curwin->w_cursor.col - VIsual.col
3535 : VIsual.col - curwin->w_cursor.col) + (*p_sel != 'e'));
3536 showcmd_buf[SHOWCMD_COLS] = NUL; /* truncate */
3537 showcmd_visual = TRUE;
3538 }
3539 else
3540#endif
3541 {
3542 showcmd_buf[0] = NUL;
3543 showcmd_visual = FALSE;
3544
3545 /* Don't actually display something if there is nothing to clear. */
3546 if (showcmd_is_clear)
3547 return;
3548 }
3549
3550 display_showcmd();
3551}
3552
3553/*
3554 * Add 'c' to string of shown command chars.
3555 * Return TRUE if output has been written (and setcursor() has been called).
3556 */
3557 int
3558add_to_showcmd(c)
3559 int c;
3560{
3561 char_u *p;
3562 int old_len;
3563 int extra_len;
3564 int overflow;
3565#if defined(FEAT_MOUSE)
3566 int i;
3567 static int ignore[] =
3568 {
3569#ifdef FEAT_GUI
3570 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
3571 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
3572#endif
3573 K_IGNORE,
3574 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE,
3575 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
3576 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
3577 K_MOUSEDOWN, K_MOUSEUP,
3578 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
3579 0
3580 };
3581#endif
3582
3583 if (!p_sc)
3584 return FALSE;
3585
3586 if (showcmd_visual)
3587 {
3588 showcmd_buf[0] = NUL;
3589 showcmd_visual = FALSE;
3590 }
3591
3592#if defined(FEAT_MOUSE)
3593 /* Ignore keys that are scrollbar updates and mouse clicks */
3594 if (IS_SPECIAL(c))
3595 for (i = 0; ignore[i] != 0; ++i)
3596 if (ignore[i] == c)
3597 return FALSE;
3598#endif
3599
3600 p = transchar(c);
3601 old_len = (int)STRLEN(showcmd_buf);
3602 extra_len = (int)STRLEN(p);
3603 overflow = old_len + extra_len - SHOWCMD_COLS;
3604 if (overflow > 0)
3605 STRCPY(showcmd_buf, showcmd_buf + overflow);
3606 STRCAT(showcmd_buf, p);
3607
3608 if (char_avail())
3609 return FALSE;
3610
3611 display_showcmd();
3612
3613 return TRUE;
3614}
3615
3616 void
3617add_to_showcmd_c(c)
3618 int c;
3619{
3620 if (!add_to_showcmd(c))
3621 setcursor();
3622}
3623
3624/*
3625 * Delete 'len' characters from the end of the shown command.
3626 */
3627 static void
3628del_from_showcmd(len)
3629 int len;
3630{
3631 int old_len;
3632
3633 if (!p_sc)
3634 return;
3635
3636 old_len = (int)STRLEN(showcmd_buf);
3637 if (len > old_len)
3638 len = old_len;
3639 showcmd_buf[old_len - len] = NUL;
3640
3641 if (!char_avail())
3642 display_showcmd();
3643}
3644
3645/*
3646 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
3647 * something and there is a partial mapping.
3648 */
3649 void
3650push_showcmd()
3651{
3652 if (p_sc)
3653 STRCPY(old_showcmd_buf, showcmd_buf);
3654}
3655
3656 void
3657pop_showcmd()
3658{
3659 if (!p_sc)
3660 return;
3661
3662 STRCPY(showcmd_buf, old_showcmd_buf);
3663
3664 display_showcmd();
3665}
3666
3667 static void
3668display_showcmd()
3669{
3670 int len;
3671
3672 cursor_off();
3673
3674 len = (int)STRLEN(showcmd_buf);
3675 if (len == 0)
3676 showcmd_is_clear = TRUE;
3677 else
3678 {
3679 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
3680 showcmd_is_clear = FALSE;
3681 }
3682
3683 /*
3684 * clear the rest of an old message by outputing up to SHOWCMD_COLS spaces
3685 */
3686 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
3687
3688 setcursor(); /* put cursor back where it belongs */
3689}
3690#endif
3691
3692#ifdef FEAT_SCROLLBIND
3693/*
3694 * When "check" is FALSE, prepare for commands that scroll the window.
3695 * When "check" is TRUE, take care of scroll-binding after the window has
3696 * scrolled. Called from normal_cmd() and edit().
3697 */
3698 void
3699do_check_scrollbind(check)
3700 int check;
3701{
3702 static win_T *old_curwin = NULL;
3703 static linenr_T old_topline = 0;
3704#ifdef FEAT_DIFF
3705 static int old_topfill = 0;
3706#endif
3707 static buf_T *old_buf = NULL;
3708 static colnr_T old_leftcol = 0;
3709
3710 if (check && curwin->w_p_scb)
3711 {
3712 /* If a ":syncbind" command was just used, don't scroll, only reset
3713 * the values. */
3714 if (did_syncbind)
3715 did_syncbind = FALSE;
3716 else if (curwin == old_curwin)
3717 {
3718 /*
3719 * Synchronize other windows, as necessary according to
3720 * 'scrollbind'. Don't do this after an ":edit" command, except
3721 * when 'diff' is set.
3722 */
3723 if ((curwin->w_buffer == old_buf
3724#ifdef FEAT_DIFF
3725 || curwin->w_p_diff
3726#endif
3727 )
3728 && (curwin->w_topline != old_topline
3729#ifdef FEAT_DIFF
3730 || curwin->w_topfill != old_topfill
3731#endif
3732 || curwin->w_leftcol != old_leftcol))
3733 {
3734 check_scrollbind(curwin->w_topline - old_topline,
3735 (long)(curwin->w_leftcol - old_leftcol));
3736 }
3737 }
3738 else if (vim_strchr(p_sbo, 'j')) /* jump flag set in 'scrollopt' */
3739 {
3740 /*
3741 * When switching between windows, make sure that the relative
3742 * vertical offset is valid for the new window. The relative
3743 * offset is invalid whenever another 'scrollbind' window has
3744 * scrolled to a point that would force the current window to
3745 * scroll past the beginning or end of its buffer. When the
3746 * resync is performed, some of the other 'scrollbind' windows may
3747 * need to jump so that the current window's relative position is
3748 * visible on-screen.
3749 */
3750 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
3751 }
3752 curwin->w_scbind_pos = curwin->w_topline;
3753 }
3754
3755 old_curwin = curwin;
3756 old_topline = curwin->w_topline;
3757#ifdef FEAT_DIFF
3758 old_topfill = curwin->w_topfill;
3759#endif
3760 old_buf = curwin->w_buffer;
3761 old_leftcol = curwin->w_leftcol;
3762}
3763
3764/*
3765 * Synchronize any windows that have "scrollbind" set, based on the
3766 * number of rows by which the current window has changed
3767 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
3768 */
3769 void
3770check_scrollbind(topline_diff, leftcol_diff)
3771 linenr_T topline_diff;
3772 long leftcol_diff;
3773{
3774 int want_ver;
3775 int want_hor;
3776 win_T *old_curwin = curwin;
3777 buf_T *old_curbuf = curbuf;
3778#ifdef FEAT_VISUAL
3779 int old_VIsual_select = VIsual_select;
3780 int old_VIsual_active = VIsual_active;
3781#endif
3782 colnr_T tgt_leftcol = curwin->w_leftcol;
3783 long topline;
3784 long y;
3785
3786 /*
3787 * check 'scrollopt' string for vertical and horizontal scroll options
3788 */
3789 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
3790#ifdef FEAT_DIFF
3791 want_ver |= old_curwin->w_p_diff;
3792#endif
3793 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
3794
3795 /*
3796 * loop through the scrollbound windows and scroll accordingly
3797 */
3798#ifdef FEAT_VISUAL
3799 VIsual_select = VIsual_active = 0;
3800#endif
3801 for (curwin = firstwin; curwin; curwin = curwin->w_next)
3802 {
3803 curbuf = curwin->w_buffer;
3804 /* skip original window and windows with 'noscrollbind' */
3805 if (curwin != old_curwin && curwin->w_p_scb)
3806 {
3807 /*
3808 * do the vertical scroll
3809 */
3810 if (want_ver)
3811 {
3812#ifdef FEAT_DIFF
3813 if (old_curwin->w_p_diff && curwin->w_p_diff)
3814 {
3815 diff_set_topline(old_curwin, curwin);
3816 }
3817 else
3818#endif
3819 {
3820 curwin->w_scbind_pos += topline_diff;
3821 topline = curwin->w_scbind_pos;
3822 if (topline > curbuf->b_ml.ml_line_count)
3823 topline = curbuf->b_ml.ml_line_count;
3824 if (topline < 1)
3825 topline = 1;
3826
3827 y = topline - curwin->w_topline;
3828 if (y > 0)
3829 scrollup(y, FALSE);
3830 else
3831 scrolldown(-y, FALSE);
3832 }
3833
3834 redraw_later(VALID);
3835 cursor_correct();
3836#ifdef FEAT_WINDOWS
3837 curwin->w_redr_status = TRUE;
3838#endif
3839 }
3840
3841 /*
3842 * do the horizontal scroll
3843 */
3844 if (want_hor && curwin->w_leftcol != tgt_leftcol)
3845 {
3846 curwin->w_leftcol = tgt_leftcol;
3847 leftcol_changed();
3848 }
3849 }
3850 }
3851
3852 /*
3853 * reset current-window
3854 */
3855#ifdef FEAT_VISUAL
3856 VIsual_select = old_VIsual_select;
3857 VIsual_active = old_VIsual_active;
3858#endif
3859 curwin = old_curwin;
3860 curbuf = old_curbuf;
3861}
3862#endif /* #ifdef FEAT_SCROLLBIND */
3863
3864/*
3865 * Command character that's ignored.
3866 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
3867 * xon/xoff
3868 */
3869/*ARGSUSED */
3870 static void
3871nv_ignore(cap)
3872 cmdarg_T *cap;
3873{
Bram Moolenaarfc735152005-03-22 22:54:12 +00003874 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875}
3876
3877/*
3878 * Command character doesn't exist.
3879 */
3880 static void
3881nv_error(cap)
3882 cmdarg_T *cap;
3883{
3884 clearopbeep(cap->oap);
3885}
3886
3887/*
3888 * <Help> and <F1> commands.
3889 */
3890 static void
3891nv_help(cap)
3892 cmdarg_T *cap;
3893{
3894 if (!checkclearopq(cap->oap))
3895 ex_help(NULL);
3896}
3897
3898/*
3899 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
3900 */
3901 static void
3902nv_addsub(cap)
3903 cmdarg_T *cap;
3904{
3905 if (!checkclearopq(cap->oap)
3906 && do_addsub((int)cap->cmdchar, cap->count1) == OK)
3907 prep_redo_cmd(cap);
3908}
3909
3910/*
3911 * CTRL-F, CTRL-B, etc: Scroll page up or down.
3912 */
3913 static void
3914nv_page(cap)
3915 cmdarg_T *cap;
3916{
3917 if (!checkclearop(cap->oap))
3918 (void)onepage(cap->arg, cap->count1);
3919}
3920
3921/*
3922 * Implementation of "gd" and "gD" command.
3923 */
3924 static void
3925nv_gd(oap, nchar)
3926 oparg_T *oap;
3927 int nchar;
3928{
3929 int len;
3930 char_u *pat;
3931 pos_T old_pos;
3932 int t;
3933 int save_p_ws;
3934 int save_p_scs;
3935 char_u *ptr;
3936
Bram Moolenaard9d30582005-05-18 22:10:28 +00003937 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
3938 || (pat = alloc(len + 7)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 {
3940 clearopbeep(oap);
3941 return;
3942 }
Bram Moolenaard9d30582005-05-18 22:10:28 +00003943
3944 /* Put "\V" before the pattern to avoid that the special meaning of "."
3945 * and "~" causes trouble. */
3946 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
3947 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 old_pos = curwin->w_cursor;
3949 save_p_ws = p_ws;
3950 save_p_scs = p_scs;
3951 p_ws = FALSE; /* don't wrap around end of file now */
3952 p_scs = FALSE; /* don't switch ignorecase off now */
3953
3954 /*
3955 * With "gD" go to line 1.
3956 * With "gd" Search back for the start of the current function, then go
3957 * back until a blank line. If this fails go to line 1.
3958 */
3959 if (nchar == 'D' || !findpar(oap, BACKWARD, 1L, '{', FALSE))
3960 {
3961 setpcmark(); /* Set in findpar() otherwise */
3962 curwin->w_cursor.lnum = 1;
3963 }
3964 else
3965 {
3966 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
3967 --curwin->w_cursor.lnum;
3968 }
3969 curwin->w_cursor.col = 0;
3970
3971 /* Search forward for the identifier, ignore comment lines. */
3972 while ((t = searchit(curwin, curbuf, &curwin->w_cursor, FORWARD, pat, 1L, 0,
3973 RE_LAST)) != FAIL
3974#ifdef FEAT_COMMENTS
3975 && get_leader_len(ml_get_curline(), NULL, FALSE) > 0
3976#endif
3977 && old_pos.lnum > curwin->w_cursor.lnum)
3978 {
3979 /* Ignore this line, continue at start of next line. */
3980 ++curwin->w_cursor.lnum;
3981 curwin->w_cursor.col = 0;
3982 }
3983 if (t == FAIL || old_pos.lnum <= curwin->w_cursor.lnum)
3984 {
3985 clearopbeep(oap);
3986 curwin->w_cursor = old_pos;
3987 }
3988 else
3989 {
3990 curwin->w_set_curswant = TRUE;
3991#ifdef FEAT_FOLDING
3992 if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
3993 foldOpenCursor();
3994#endif
3995 /* "n" searches forward now */
3996 reset_search_dir();
3997 }
3998
3999 vim_free(pat);
4000 p_ws = save_p_ws;
4001 p_scs = save_p_scs;
4002}
4003
4004/*
4005 * Move 'dist' lines in direction 'dir', counting lines by *screen*
4006 * lines rather than lines in the file.
4007 * 'dist' must be positive.
4008 *
4009 * Return OK if able to move cursor, FAIL otherwise.
4010 */
4011 static int
4012nv_screengo(oap, dir, dist)
4013 oparg_T *oap;
4014 int dir;
4015 long dist;
4016{
4017 int linelen = linetabsize(ml_get_curline());
4018 int retval = OK;
4019 int atend = FALSE;
4020 int n;
4021 int col_off1; /* margin offset for first screen line */
4022 int col_off2; /* margin offset for wrapped screen line */
4023 int width1; /* text width for first screen line */
4024 int width2; /* test width for wrapped screen line */
4025
4026 oap->motion_type = MCHAR;
4027 oap->inclusive = FALSE;
4028
4029 col_off1 = curwin_col_off();
4030 col_off2 = col_off1 - curwin_col_off2();
4031 width1 = W_WIDTH(curwin) - col_off1;
4032 width2 = W_WIDTH(curwin) - col_off2;
4033
4034#ifdef FEAT_VERTSPLIT
4035 if (curwin->w_width != 0)
4036 {
4037#endif
4038 /*
4039 * Instead of sticking at the last character of the buffer line we
4040 * try to stick in the last column of the screen.
4041 */
4042 if (curwin->w_curswant == MAXCOL)
4043 {
4044 atend = TRUE;
4045 validate_virtcol();
4046 if (width1 <= 0)
4047 curwin->w_curswant = 0;
4048 else
4049 {
4050 curwin->w_curswant = width1 - 1;
4051 if (curwin->w_virtcol > curwin->w_curswant)
4052 curwin->w_curswant += ((curwin->w_virtcol
4053 - curwin->w_curswant - 1) / width2 + 1) * width2;
4054 }
4055 }
4056 else
4057 {
4058 if (linelen > width1)
4059 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4060 else
4061 n = width1;
4062 if (curwin->w_curswant > (colnr_T)n + 1)
4063 curwin->w_curswant -= ((curwin->w_curswant - n) / width2 + 1)
4064 * width2;
4065 }
4066
4067 while (dist--)
4068 {
4069 if (dir == BACKWARD)
4070 {
4071 if ((long)curwin->w_curswant >= width2)
4072 /* move back within line */
4073 curwin->w_curswant -= width2;
4074 else
4075 {
4076 /* to previous line */
4077 if (curwin->w_cursor.lnum == 1)
4078 {
4079 retval = FAIL;
4080 break;
4081 }
4082 --curwin->w_cursor.lnum;
4083#ifdef FEAT_FOLDING
4084 /* Move to the start of a closed fold. Don't do that when
4085 * 'foldopen' contains "all": it will open in a moment. */
4086 if (!(fdo_flags & FDO_ALL))
4087 (void)hasFolding(curwin->w_cursor.lnum,
4088 &curwin->w_cursor.lnum, NULL);
4089#endif
4090 linelen = linetabsize(ml_get_curline());
4091 if (linelen > width1)
4092 curwin->w_curswant += (((linelen - width1 - 1) / width2)
4093 + 1) * width2;
4094 }
4095 }
4096 else /* dir == FORWARD */
4097 {
4098 if (linelen > width1)
4099 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4100 else
4101 n = width1;
4102 if (curwin->w_curswant + width2 < (colnr_T)n)
4103 /* move forward within line */
4104 curwin->w_curswant += width2;
4105 else
4106 {
4107 /* to next line */
4108#ifdef FEAT_FOLDING
4109 /* Move to the end of a closed fold. */
4110 (void)hasFolding(curwin->w_cursor.lnum, NULL,
4111 &curwin->w_cursor.lnum);
4112#endif
4113 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4114 {
4115 retval = FAIL;
4116 break;
4117 }
4118 curwin->w_cursor.lnum++;
4119 curwin->w_curswant %= width2;
4120 }
4121 }
4122 }
4123#ifdef FEAT_VERTSPLIT
4124 }
4125#endif
4126
4127 coladvance(curwin->w_curswant);
4128
4129#if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
4130 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
4131 {
4132 /*
4133 * Check for landing on a character that got split at the end of the
4134 * last line. We want to advance a screenline, not end up in the same
4135 * screenline or move two screenlines.
4136 */
4137 validate_virtcol();
4138 if (curwin->w_virtcol > curwin->w_curswant
4139 && (curwin->w_curswant < (colnr_T)width1
4140 ? (curwin->w_curswant > (colnr_T)width1 / 2)
4141 : ((curwin->w_curswant - width1) % width2
4142 > (colnr_T)width2 / 2)))
4143 --curwin->w_cursor.col;
4144 }
4145#endif
4146
4147 if (atend)
4148 curwin->w_curswant = MAXCOL; /* stick in the last column */
4149
4150 return retval;
4151}
4152
4153#ifdef FEAT_MOUSE
4154/*
4155 * Mouse scroll wheel: Default action is to scroll three lines, or one page
4156 * when Shift or Ctrl is used.
4157 * K_MOUSEUP (cap->arg == TRUE) or K_MOUSEDOWN (cap->arg == FALSE)
4158 */
4159 static void
4160nv_mousescroll(cap)
4161 cmdarg_T *cap;
4162{
4163# if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4164 win_T *old_curwin;
4165
4166 old_curwin = curwin;
4167
4168 /* Currently we only get the mouse coordinates in the GUI. */
4169 if (gui.in_use && mouse_row >= 0 && mouse_col >= 0)
4170 {
4171 int row, col;
4172
4173 row = mouse_row;
4174 col = mouse_col;
4175
4176 /* find the window at the pointer coordinates */
4177 curwin = mouse_find_win(&row, &col);
4178 curbuf = curwin->w_buffer;
4179 }
4180# endif
4181
4182 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4183 {
4184 (void)onepage(cap->arg ? FORWARD : BACKWARD, 1L);
4185 }
4186 else
4187 {
4188 cap->count1 = 3;
4189 cap->count0 = 3;
4190 nv_scroll_line(cap);
4191 }
4192
4193# if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4194 curwin->w_redr_status = TRUE;
4195
4196 curwin = old_curwin;
4197 curbuf = curwin->w_buffer;
4198# endif
4199}
4200
4201/*
4202 * Mouse clicks and drags.
4203 */
4204 static void
4205nv_mouse(cap)
4206 cmdarg_T *cap;
4207{
4208 (void)do_mouse(cap->oap, cap->cmdchar, BACKWARD, cap->count1, 0);
4209}
4210#endif
4211
4212/*
4213 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
4214 * cap->arg must be TRUE for CTRL-E.
4215 */
4216 static void
4217nv_scroll_line(cap)
4218 cmdarg_T *cap;
4219{
4220 if (!checkclearop(cap->oap))
4221 scroll_redraw(cap->arg, cap->count1);
4222}
4223
4224/*
4225 * Scroll "count" lines up or down, and redraw.
4226 */
4227 void
4228scroll_redraw(up, count)
4229 int up;
4230 long count;
4231{
4232 linenr_T prev_topline = curwin->w_topline;
4233#ifdef FEAT_DIFF
4234 int prev_topfill = curwin->w_topfill;
4235#endif
4236 linenr_T prev_lnum = curwin->w_cursor.lnum;
4237
4238 if (up)
4239 scrollup(count, TRUE);
4240 else
4241 scrolldown(count, TRUE);
4242 if (p_so)
4243 {
4244 /* Adjust the cursor position for 'scrolloff'. Mark w_topline as
4245 * valid, otherwise the screen jumps back at the end of the file. */
4246 cursor_correct();
4247 check_cursor_moved(curwin);
4248 curwin->w_valid |= VALID_TOPLINE;
4249
4250 /* If moved back to where we were, at least move the cursor, otherwise
4251 * we get stuck at one position. Don't move the cursor up if the
4252 * first line of the buffer is already on the screen */
4253 while (curwin->w_topline == prev_topline
4254#ifdef FEAT_DIFF
4255 && curwin->w_topfill == prev_topfill
4256#endif
4257 )
4258 {
4259 if (up)
4260 {
4261 if (curwin->w_cursor.lnum > prev_lnum
4262 || cursor_down(1L, FALSE) == FAIL)
4263 break;
4264 }
4265 else
4266 {
4267 if (curwin->w_cursor.lnum < prev_lnum
4268 || prev_topline == 1L
4269 || cursor_up(1L, FALSE) == FAIL)
4270 break;
4271 }
4272 /* Mark w_topline as valid, otherwise the screen jumps back at the
4273 * end of the file. */
4274 check_cursor_moved(curwin);
4275 curwin->w_valid |= VALID_TOPLINE;
4276 }
4277 }
4278 if (curwin->w_cursor.lnum != prev_lnum)
4279 coladvance(curwin->w_curswant);
4280 redraw_later(VALID);
4281}
4282
4283/*
4284 * Commands that start with "z".
4285 */
4286 static void
4287nv_zet(cap)
4288 cmdarg_T *cap;
4289{
4290 long n;
4291 colnr_T col;
4292 int nchar = cap->nchar;
4293#ifdef FEAT_FOLDING
4294 long old_fdl = curwin->w_p_fdl;
4295 int old_fen = curwin->w_p_fen;
4296#endif
4297
4298 if (VIM_ISDIGIT(nchar))
4299 {
4300 /*
4301 * "z123{nchar}": edit the count before obtaining {nchar}
4302 */
4303 if (checkclearop(cap->oap))
4304 return;
4305 n = nchar - '0';
4306 for (;;)
4307 {
4308#ifdef USE_ON_FLY_SCROLL
4309 dont_scroll = TRUE; /* disallow scrolling here */
4310#endif
4311 ++no_mapping;
4312 ++allow_keys; /* no mapping for nchar, but allow key codes */
4313 nchar = safe_vgetc();
4314#ifdef FEAT_LANGMAP
4315 LANGMAP_ADJUST(nchar, TRUE);
4316#endif
4317 --no_mapping;
4318 --allow_keys;
4319#ifdef FEAT_CMDL_INFO
4320 (void)add_to_showcmd(nchar);
4321#endif
4322 if (nchar == K_DEL || nchar == K_KDEL)
4323 n /= 10;
4324 else if (VIM_ISDIGIT(nchar))
4325 n = n * 10 + (nchar - '0');
4326 else if (nchar == CAR)
4327 {
4328#ifdef FEAT_GUI
4329 need_mouse_correct = TRUE;
4330#endif
4331 win_setheight((int)n);
4332 break;
4333 }
4334 else if (nchar == 'l'
4335 || nchar == 'h'
4336 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00004337 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 {
4339 cap->count1 = n ? n * cap->count1 : cap->count1;
4340 goto dozet;
4341 }
4342 else
4343 {
4344 clearopbeep(cap->oap);
4345 break;
4346 }
4347 }
4348 cap->oap->op_type = OP_NOP;
4349 return;
4350 }
4351
4352dozet:
4353 if (
4354#ifdef FEAT_FOLDING
4355 /* "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
4356 * and "zC" only in Visual mode. "zj" and "zk" are motion
4357 * commands. */
4358 cap->nchar != 'f' && cap->nchar != 'F'
4359 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
4360 && cap->nchar != 'j' && cap->nchar != 'k'
4361 &&
4362#endif
4363 checkclearop(cap->oap))
4364 return;
4365
4366 /*
4367 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
4368 * If line number given, set cursor.
4369 */
4370 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
4371 && cap->count0
4372 && cap->count0 != curwin->w_cursor.lnum)
4373 {
4374 setpcmark();
4375 if (cap->count0 > curbuf->b_ml.ml_line_count)
4376 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4377 else
4378 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004379 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 }
4381
4382 switch (nchar)
4383 {
4384 /* "z+", "z<CR>" and "zt": put cursor at top of screen */
4385 case '+':
4386 if (cap->count0 == 0)
4387 {
4388 /* No count given: put cursor at the line below screen */
4389 validate_botline(); /* make sure w_botline is valid */
4390 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
4391 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4392 else
4393 curwin->w_cursor.lnum = curwin->w_botline;
4394 }
4395 /* FALLTHROUGH */
4396 case NL:
4397 case CAR:
4398 case K_KENTER:
4399 beginline(BL_WHITE | BL_FIX);
4400 /* FALLTHROUGH */
4401
4402 case 't': scroll_cursor_top(0, TRUE);
4403 redraw_later(VALID);
4404 break;
4405
4406 /* "z." and "zz": put cursor in middle of screen */
4407 case '.': beginline(BL_WHITE | BL_FIX);
4408 /* FALLTHROUGH */
4409
4410 case 'z': scroll_cursor_halfway(TRUE);
4411 redraw_later(VALID);
4412 break;
4413
4414 /* "z^", "z-" and "zb": put cursor at bottom of screen */
4415 case '^': /* Strange Vi behavior: <count>z^ finds line at top of window
4416 * when <count> is at bottom of window, and puts that one at
4417 * bottom of window. */
4418 if (cap->count0 != 0)
4419 {
4420 scroll_cursor_bot(0, TRUE);
4421 curwin->w_cursor.lnum = curwin->w_topline;
4422 }
4423 else if (curwin->w_topline == 1)
4424 curwin->w_cursor.lnum = 1;
4425 else
4426 curwin->w_cursor.lnum = curwin->w_topline - 1;
4427 /* FALLTHROUGH */
4428 case '-':
4429 beginline(BL_WHITE | BL_FIX);
4430 /* FALLTHROUGH */
4431
4432 case 'b': scroll_cursor_bot(0, TRUE);
4433 redraw_later(VALID);
4434 break;
4435
4436 /* "zH" - scroll screen right half-page */
4437 case 'H':
4438 cap->count1 *= W_WIDTH(curwin) / 2;
4439 /* FALLTHROUGH */
4440
4441 /* "zh" - scroll screen to the right */
4442 case 'h':
4443 case K_LEFT:
4444 if (!curwin->w_p_wrap)
4445 {
4446 if ((colnr_T)cap->count1 > curwin->w_leftcol)
4447 curwin->w_leftcol = 0;
4448 else
4449 curwin->w_leftcol -= (colnr_T)cap->count1;
4450 leftcol_changed();
4451 }
4452 break;
4453
4454 /* "zL" - scroll screen left half-page */
4455 case 'L': cap->count1 *= W_WIDTH(curwin) / 2;
4456 /* FALLTHROUGH */
4457
4458 /* "zl" - scroll screen to the left */
4459 case 'l':
4460 case K_RIGHT:
4461 if (!curwin->w_p_wrap)
4462 {
4463 /* scroll the window left */
4464 curwin->w_leftcol += (colnr_T)cap->count1;
4465 leftcol_changed();
4466 }
4467 break;
4468
4469 /* "zs" - scroll screen, cursor at the start */
4470 case 's': if (!curwin->w_p_wrap)
4471 {
4472#ifdef FEAT_FOLDING
4473 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4474 col = 0; /* like the cursor is in col 0 */
4475 else
4476#endif
4477 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
4478 if ((long)col > p_siso)
4479 col -= p_siso;
4480 else
4481 col = 0;
4482 if (curwin->w_leftcol != col)
4483 {
4484 curwin->w_leftcol = col;
4485 redraw_later(NOT_VALID);
4486 }
4487 }
4488 break;
4489
4490 /* "ze" - scroll screen, cursor at the end */
4491 case 'e': if (!curwin->w_p_wrap)
4492 {
4493#ifdef FEAT_FOLDING
4494 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4495 col = 0; /* like the cursor is in col 0 */
4496 else
4497#endif
4498 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
4499 n = W_WIDTH(curwin) - curwin_col_off();
4500 if ((long)col + p_siso < n)
4501 col = 0;
4502 else
4503 col = col + p_siso - n + 1;
4504 if (curwin->w_leftcol != col)
4505 {
4506 curwin->w_leftcol = col;
4507 redraw_later(NOT_VALID);
4508 }
4509 }
4510 break;
4511
4512#ifdef FEAT_FOLDING
4513 /* "zF": create fold command */
4514 /* "zf": create fold operator */
4515 case 'F':
4516 case 'f': if (foldManualAllowed(TRUE))
4517 {
4518 cap->nchar = 'f';
4519 nv_operator(cap);
4520 curwin->w_p_fen = TRUE;
4521
4522 /* "zF" is like "zfzf" */
4523 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
4524 {
4525 nv_operator(cap);
4526 finish_op = TRUE;
4527 }
4528 }
4529 else
4530 clearopbeep(cap->oap);
4531 break;
4532
4533 /* "zd": delete fold at cursor */
4534 /* "zD": delete fold at cursor recursively */
4535 case 'd':
4536 case 'D': if (foldManualAllowed(FALSE))
4537 {
4538 if (VIsual_active)
4539 nv_operator(cap);
4540 else
4541 deleteFold(curwin->w_cursor.lnum,
4542 curwin->w_cursor.lnum, nchar == 'D', FALSE);
4543 }
4544 break;
4545
4546 /* "zE": erease all folds */
4547 case 'E': if (foldmethodIsManual(curwin))
4548 {
4549 clearFolding(curwin);
4550 changed_window_setting();
4551 }
4552 else if (foldmethodIsMarker(curwin))
4553 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
4554 TRUE, FALSE);
4555 else
4556 EMSG(_("E352: Cannot erase folds with current 'foldmethod'"));
4557 break;
4558
4559 /* "zn": fold none: reset 'foldenable' */
4560 case 'n': curwin->w_p_fen = FALSE;
4561 break;
4562
4563 /* "zN": fold Normal: set 'foldenable' */
4564 case 'N': curwin->w_p_fen = TRUE;
4565 break;
4566
4567 /* "zi": invert folding: toggle 'foldenable' */
4568 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
4569 break;
4570
4571 /* "za": open closed fold or close open fold at cursor */
4572 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4573 openFold(curwin->w_cursor.lnum, cap->count1);
4574 else
4575 {
4576 closeFold(curwin->w_cursor.lnum, cap->count1);
4577 curwin->w_p_fen = TRUE;
4578 }
4579 break;
4580
4581 /* "zA": open fold at cursor recursively */
4582 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4583 openFoldRecurse(curwin->w_cursor.lnum);
4584 else
4585 {
4586 closeFoldRecurse(curwin->w_cursor.lnum);
4587 curwin->w_p_fen = TRUE;
4588 }
4589 break;
4590
4591 /* "zo": open fold at cursor or Visual area */
4592 case 'o': if (VIsual_active)
4593 nv_operator(cap);
4594 else
4595 openFold(curwin->w_cursor.lnum, cap->count1);
4596 break;
4597
4598 /* "zO": open fold recursively */
4599 case 'O': if (VIsual_active)
4600 nv_operator(cap);
4601 else
4602 openFoldRecurse(curwin->w_cursor.lnum);
4603 break;
4604
4605 /* "zc": close fold at cursor or Visual area */
4606 case 'c': if (VIsual_active)
4607 nv_operator(cap);
4608 else
4609 closeFold(curwin->w_cursor.lnum, cap->count1);
4610 curwin->w_p_fen = TRUE;
4611 break;
4612
4613 /* "zC": close fold recursively */
4614 case 'C': if (VIsual_active)
4615 nv_operator(cap);
4616 else
4617 closeFoldRecurse(curwin->w_cursor.lnum);
4618 curwin->w_p_fen = TRUE;
4619 break;
4620
4621 /* "zv": open folds at the cursor */
4622 case 'v': foldOpenCursor();
4623 break;
4624
4625 /* "zx": re-apply 'foldlevel' and open folds at the cursor */
4626 case 'x': curwin->w_p_fen = TRUE;
4627 newFoldLevel(); /* update right now */
4628 foldOpenCursor();
4629 break;
4630
4631 /* "zX": undo manual opens/closes, re-apply 'foldlevel' */
4632 case 'X': curwin->w_p_fen = TRUE;
4633 old_fdl = -1; /* force an update */
4634 break;
4635
4636 /* "zm": fold more */
4637 case 'm': if (curwin->w_p_fdl > 0)
4638 --curwin->w_p_fdl;
4639 old_fdl = -1; /* force an update */
4640 curwin->w_p_fen = TRUE;
4641 break;
4642
4643 /* "zM": close all folds */
4644 case 'M': curwin->w_p_fdl = 0;
4645 old_fdl = -1; /* force an update */
4646 curwin->w_p_fen = TRUE;
4647 break;
4648
4649 /* "zr": reduce folding */
4650 case 'r': ++curwin->w_p_fdl;
4651 break;
4652
4653 /* "zR": open all folds */
4654 case 'R': curwin->w_p_fdl = getDeepestNesting();
4655 old_fdl = -1; /* force an update */
4656 break;
4657
4658 case 'j': /* "zj" move to next fold downwards */
4659 case 'k': /* "zk" move to next fold upwards */
4660 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
4661 cap->count1) == FAIL)
4662 clearopbeep(cap->oap);
4663 break;
4664
4665#endif /* FEAT_FOLDING */
4666
4667 default: clearopbeep(cap->oap);
4668 }
4669
4670#ifdef FEAT_FOLDING
4671 /* Redraw when 'foldenable' changed */
4672 if (old_fen != curwin->w_p_fen)
4673 {
4674# ifdef FEAT_DIFF
4675 win_T *wp;
4676
4677 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
4678 {
4679 /* Adjust 'foldenable' in diff-synced windows. */
4680 FOR_ALL_WINDOWS(wp)
4681 {
4682 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
4683 {
4684 wp->w_p_fen = curwin->w_p_fen;
4685 changed_window_setting_win(wp);
4686 }
4687 }
4688 }
4689# endif
4690 changed_window_setting();
4691 }
4692
4693 /* Redraw when 'foldlevel' changed. */
4694 if (old_fdl != curwin->w_p_fdl)
4695 newFoldLevel();
4696#endif
4697}
4698
4699#ifdef FEAT_GUI
4700/*
4701 * Vertical scrollbar movement.
4702 */
4703 static void
4704nv_ver_scrollbar(cap)
4705 cmdarg_T *cap;
4706{
4707 if (cap->oap->op_type != OP_NOP)
4708 clearopbeep(cap->oap);
4709
4710 /* Even if an operator was pending, we still want to scroll */
4711 gui_do_scroll();
4712}
4713
4714/*
4715 * Horizontal scrollbar movement.
4716 */
4717 static void
4718nv_hor_scrollbar(cap)
4719 cmdarg_T *cap;
4720{
4721 if (cap->oap->op_type != OP_NOP)
4722 clearopbeep(cap->oap);
4723
4724 /* Even if an operator was pending, we still want to scroll */
4725 gui_do_horiz_scroll();
4726}
4727#endif
4728
4729/*
4730 * "Q" command.
4731 */
4732 static void
4733nv_exmode(cap)
4734 cmdarg_T *cap;
4735{
4736 /*
4737 * Ignore 'Q' in Visual mode, just give a beep.
4738 */
4739#ifdef FEAT_VISUAL
4740 if (VIsual_active)
4741 vim_beep();
4742 else
4743#endif
4744 if (!checkclearop(cap->oap))
4745 do_exmode(FALSE);
4746}
4747
4748/*
4749 * Handle a ":" command.
4750 */
4751 static void
4752nv_colon(cap)
4753 cmdarg_T *cap;
4754{
4755 int old_p_im;
4756
4757#ifdef FEAT_VISUAL
4758 if (VIsual_active)
4759 nv_operator(cap);
4760 else
4761#endif
4762 {
4763 if (cap->oap->op_type != OP_NOP)
4764 {
4765 /* Using ":" as a movement is characterwise exclusive. */
4766 cap->oap->motion_type = MCHAR;
4767 cap->oap->inclusive = FALSE;
4768 }
4769 else if (cap->count0)
4770 {
4771 /* translate "count:" into ":.,.+(count - 1)" */
4772 stuffcharReadbuff('.');
4773 if (cap->count0 > 1)
4774 {
4775 stuffReadbuff((char_u *)",.+");
4776 stuffnumReadbuff((long)cap->count0 - 1L);
4777 }
4778 }
4779
4780 /* When typing, don't type below an old message */
4781 if (KeyTyped)
4782 compute_cmdrow();
4783
4784 old_p_im = p_im;
4785
4786 /* get a command line and execute it */
4787 do_cmdline(NULL, getexline, NULL,
4788 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
4789
4790 /* If 'insertmode' changed, enter or exit Insert mode */
4791 if (p_im != old_p_im)
4792 {
4793 if (p_im)
4794 restart_edit = 'i';
4795 else
4796 restart_edit = 0;
4797 }
4798
4799 /* The start of the operator may have become invalid by the Ex
4800 * command. */
4801 if (cap->oap->op_type != OP_NOP
4802 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
4803 || cap->oap->start.col >
4804 STRLEN(ml_get(cap->oap->start.lnum))))
4805 clearopbeep(cap->oap);
4806 }
4807}
4808
4809/*
4810 * Handle CTRL-G command.
4811 */
4812 static void
4813nv_ctrlg(cap)
4814 cmdarg_T *cap;
4815{
4816#ifdef FEAT_VISUAL
4817 if (VIsual_active) /* toggle Selection/Visual mode */
4818 {
4819 VIsual_select = !VIsual_select;
4820 showmode();
4821 }
4822 else
4823#endif
4824 if (!checkclearop(cap->oap))
4825 /* print full name if count given or :cd used */
4826 fileinfo((int)cap->count0, FALSE, TRUE);
4827}
4828
4829/*
4830 * Handle CTRL-H <Backspace> command.
4831 */
4832 static void
4833nv_ctrlh(cap)
4834 cmdarg_T *cap;
4835{
4836#ifdef FEAT_VISUAL
4837 if (VIsual_active && VIsual_select)
4838 {
4839 cap->cmdchar = 'x'; /* BS key behaves like 'x' in Select mode */
4840 v_visop(cap);
4841 }
4842 else
4843#endif
4844 nv_left(cap);
4845}
4846
4847/*
4848 * CTRL-L: clear screen and redraw.
4849 */
4850 static void
4851nv_clear(cap)
4852 cmdarg_T *cap;
4853{
4854 if (!checkclearop(cap->oap))
4855 {
4856#if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
4857 /*
4858 * Right now, the BeBox doesn't seem to have an easy way to detect
4859 * window resizing, so we cheat and make the user detect it
4860 * manually with CTRL-L instead
4861 */
4862 ui_get_shellsize();
4863#endif
4864#ifdef FEAT_SYN_HL
4865 /* Clear all syntax states to force resyncing. */
4866 syn_stack_free_all(curbuf);
4867#endif
4868 redraw_later(CLEAR);
4869 }
4870}
4871
4872/*
4873 * CTRL-O: In Select mode: switch to Visual mode for one command.
4874 * Otherwise: Go to older pcmark.
4875 */
4876 static void
4877nv_ctrlo(cap)
4878 cmdarg_T *cap;
4879{
4880#ifdef FEAT_VISUAL
4881 if (VIsual_active && VIsual_select)
4882 {
4883 VIsual_select = FALSE;
4884 showmode();
4885 restart_VIsual_select = 2; /* restart Select mode later */
4886 }
4887 else
4888#endif
4889 {
4890 cap->count1 = -cap->count1;
4891 nv_pcmark(cap);
4892 }
4893}
4894
4895/*
4896 * CTRL-^ command, short for ":e #"
4897 */
4898 static void
4899nv_hat(cap)
4900 cmdarg_T *cap;
4901{
4902 if (!checkclearopq(cap->oap))
4903 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
4904 GETF_SETMARK|GETF_ALT, FALSE);
4905}
4906
4907/*
4908 * "Z" commands.
4909 */
4910 static void
4911nv_Zet(cap)
4912 cmdarg_T *cap;
4913{
4914 if (!checkclearopq(cap->oap))
4915 {
4916 switch (cap->nchar)
4917 {
4918 /* "ZZ": equivalent to ":x". */
4919 case 'Z': do_cmdline_cmd((char_u *)"x");
4920 break;
4921
4922 /* "ZQ": equivalent to ":q!" (Elvis compatible). */
4923 case 'Q': do_cmdline_cmd((char_u *)"q!");
4924 break;
4925
4926 default: clearopbeep(cap->oap);
4927 }
4928 }
4929}
4930
4931#if defined(FEAT_WINDOWS) || defined(PROTO)
4932/*
4933 * Call nv_ident() as if "c1" was used, with "c2" as next character.
4934 */
4935 void
4936do_nv_ident(c1, c2)
4937 int c1;
4938 int c2;
4939{
4940 oparg_T oa;
4941 cmdarg_T ca;
4942
4943 clear_oparg(&oa);
4944 vim_memset(&ca, 0, sizeof(ca));
4945 ca.oap = &oa;
4946 ca.cmdchar = c1;
4947 ca.nchar = c2;
4948 nv_ident(&ca);
4949}
4950#endif
4951
4952/*
4953 * Handle the commands that use the word under the cursor.
4954 * [g] CTRL-] :ta to current identifier
4955 * [g] 'K' run program for current identifier
4956 * [g] '*' / to current identifier or string
4957 * [g] '#' ? to current identifier or string
4958 * g ']' :tselect for current identifier
4959 */
4960 static void
4961nv_ident(cap)
4962 cmdarg_T *cap;
4963{
4964 char_u *ptr = NULL;
4965 char_u *buf;
4966 char_u *p;
4967 char_u *kp; /* value of 'keywordprg' */
4968 int kp_help; /* 'keywordprg' is ":help" */
4969 int n = 0; /* init for GCC */
4970 int cmdchar;
4971 int g_cmd; /* "g" command */
4972 char_u *aux_ptr;
4973 int isman;
4974 int isman_s;
4975
4976 if (cap->cmdchar == 'g') /* "g*", "g#", "g]" and "gCTRL-]" */
4977 {
4978 cmdchar = cap->nchar;
4979 g_cmd = TRUE;
4980 }
4981 else
4982 {
4983 cmdchar = cap->cmdchar;
4984 g_cmd = FALSE;
4985 }
4986
4987 if (cmdchar == POUND) /* the pound sign, '#' for English keyboards */
4988 cmdchar = '#';
4989
4990 /*
4991 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
4992 */
4993 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
4994 {
4995#ifdef FEAT_VISUAL
4996 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
4997 return;
4998#endif
4999 if (checkclearopq(cap->oap))
5000 return;
5001 }
5002
5003 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
5004 (cmdchar == '*' || cmdchar == '#')
5005 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
5006 {
5007 clearop(cap->oap);
5008 return;
5009 }
5010
5011 /* Allocate buffer to put the command in. Inserting backslashes can
5012 * double the length of the word. p_kp / curbuf->b_p_kp could be added
5013 * and some numbers. */
5014 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
5015 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
5016 || STRCMP(kp, ":help") == 0);
5017 buf = alloc((unsigned)(n * 2 + 30 + STRLEN(kp)));
5018 if (buf == NULL)
5019 return;
5020 buf[0] = NUL;
5021
5022 switch (cmdchar)
5023 {
5024 case '*':
5025 case '#':
5026 /*
5027 * Put cursor at start of word, makes search skip the word
5028 * under the cursor.
5029 * Call setpcmark() first, so "*``" puts the cursor back where
5030 * it was.
5031 */
5032 setpcmark();
5033 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
5034
5035 if (!g_cmd && vim_iswordp(ptr))
5036 STRCPY(buf, "\\<");
5037 no_smartcase = TRUE; /* don't use 'smartcase' now */
5038 break;
5039
5040 case 'K':
5041 if (kp_help)
5042 STRCPY(buf, "he! ");
5043 else
5044 {
5045 /* When a count is given, turn it into a range. Is this
5046 * really what we want? */
5047 isman = (STRCMP(kp, "man") == 0);
5048 isman_s = (STRCMP(kp, "man -s") == 0);
5049 if (cap->count0 != 0 && !(isman || isman_s))
5050 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
5051
5052 STRCAT(buf, "! ");
5053 if (cap->count0 == 0 && isman_s)
5054 STRCAT(buf, "man");
5055 else
5056 STRCAT(buf, kp);
5057 STRCAT(buf, " ");
5058 if (cap->count0 != 0 && (isman || isman_s))
5059 {
5060 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
5061 STRCAT(buf, " ");
5062 }
5063 }
5064 break;
5065
5066 case ']':
5067#ifdef FEAT_CSCOPE
5068 if (p_cst)
5069 STRCPY(buf, "cstag ");
5070 else
5071#endif
5072 STRCPY(buf, "ts ");
5073 break;
5074
5075 default:
5076 if (curbuf->b_help)
5077 STRCPY(buf, "he! ");
5078 else if (g_cmd)
5079 STRCPY(buf, "tj ");
5080 else
5081 STRCPY(buf, "ta ");
5082 }
5083
5084 /*
5085 * Now grab the chars in the identifier
5086 */
5087 if (cmdchar == '*')
5088 aux_ptr = (char_u *)(p_magic ? "/.*~[^$\\" : "/^$\\");
5089 else if (cmdchar == '#')
5090 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
5091 else if (cmdchar == 'K' && !kp_help)
5092 aux_ptr = (char_u *)" \t\\\"|!";
5093 else
5094 /* Don't escape spaces and Tabs in a tag with a backslash */
5095 aux_ptr = (char_u *)"\\|\"";
5096
5097 p = buf + STRLEN(buf);
5098 while (n-- > 0)
5099 {
5100 /* put a backslash before \ and some others */
5101 if (vim_strchr(aux_ptr, *ptr) != NULL)
5102 *p++ = '\\';
5103#ifdef FEAT_MBYTE
5104 /* When current byte is a part of multibyte character, copy all bytes
5105 * of that character. */
5106 if (has_mbyte)
5107 {
5108 int i;
5109 int len = (*mb_ptr2len_check)(ptr) - 1;
5110
5111 for (i = 0; i < len && n >= 1; ++i, --n)
5112 *p++ = *ptr++;
5113 }
5114#endif
5115 *p++ = *ptr++;
5116 }
5117 *p = NUL;
5118
5119 /*
5120 * Execute the command.
5121 */
5122 if (cmdchar == '*' || cmdchar == '#')
5123 {
5124 if (!g_cmd && (
5125#ifdef FEAT_MBYTE
5126 has_mbyte ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr)) :
5127#endif
5128 vim_iswordc(ptr[-1])))
5129 STRCAT(buf, "\\>");
5130#ifdef FEAT_CMDHIST
5131 /* put pattern in search history */
5132 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
5133#endif
5134 normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0);
5135 }
5136 else
5137 do_cmdline_cmd(buf);
5138
5139 vim_free(buf);
5140}
5141
5142#ifdef FEAT_VISUAL
5143/*
5144 * Get visually selected text, within one line only.
5145 * Returns FAIL if more than one line selected.
5146 */
5147 static int
5148get_visual_text(cap, pp, lenp)
5149 cmdarg_T *cap;
5150 char_u **pp; /* return: start of selected text */
5151 int *lenp; /* return: length of selected text */
5152{
5153 if (VIsual_mode != 'V')
5154 unadjust_for_sel();
5155 if (VIsual.lnum != curwin->w_cursor.lnum)
5156 {
5157 clearopbeep(cap->oap);
5158 return FAIL;
5159 }
5160 if (VIsual_mode == 'V')
5161 {
5162 *pp = ml_get_curline();
5163 *lenp = (int)STRLEN(*pp);
5164 }
5165 else
5166 {
5167 if (lt(curwin->w_cursor, VIsual))
5168 {
5169 *pp = ml_get_pos(&curwin->w_cursor);
5170 *lenp = VIsual.col - curwin->w_cursor.col + 1;
5171 }
5172 else
5173 {
5174 *pp = ml_get_pos(&VIsual);
5175 *lenp = curwin->w_cursor.col - VIsual.col + 1;
5176 }
5177#ifdef FEAT_MBYTE
5178 if (has_mbyte)
5179 /* Correct the length to include the whole last character. */
5180 *lenp += (*mb_ptr2len_check)(*pp + (*lenp - 1)) - 1;
5181#endif
5182 }
5183 reset_VIsual_and_resel();
5184 return OK;
5185}
5186#endif
5187
5188/*
5189 * CTRL-T: backwards in tag stack
5190 */
5191 static void
5192nv_tagpop(cap)
5193 cmdarg_T *cap;
5194{
5195 if (!checkclearopq(cap->oap))
5196 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
5197}
5198
5199/*
5200 * Handle scrolling command 'H', 'L' and 'M'.
5201 */
5202 static void
5203nv_scroll(cap)
5204 cmdarg_T *cap;
5205{
5206 int used = 0;
5207 long n;
5208#ifdef FEAT_FOLDING
5209 linenr_T lnum;
5210#endif
5211 int half;
5212
5213 cap->oap->motion_type = MLINE;
5214 setpcmark();
5215
5216 if (cap->cmdchar == 'L')
5217 {
5218 validate_botline(); /* make sure curwin->w_botline is valid */
5219 curwin->w_cursor.lnum = curwin->w_botline - 1;
5220 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
5221 curwin->w_cursor.lnum = 1;
5222 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005223 {
5224#ifdef FEAT_FOLDING
5225 if (hasAnyFolding(curwin))
5226 {
5227 /* Count a fold for one screen line. */
5228 for (n = cap->count1 - 1; n > 0
5229 && curwin->w_cursor.lnum > curwin->w_topline; --n)
5230 {
5231 (void)hasFolding(curwin->w_cursor.lnum,
5232 &curwin->w_cursor.lnum, NULL);
5233 --curwin->w_cursor.lnum;
5234 }
5235 }
5236 else
5237#endif
5238 curwin->w_cursor.lnum -= cap->count1 - 1;
5239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 }
5241 else
5242 {
5243 if (cap->cmdchar == 'M')
5244 {
5245#ifdef FEAT_DIFF
5246 /* Don't count filler lines above the window. */
5247 used -= diff_check_fill(curwin, curwin->w_topline)
5248 - curwin->w_topfill;
5249#endif
5250 validate_botline(); /* make sure w_empty_rows is valid */
5251 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
5252 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
5253 {
5254#ifdef FEAT_DIFF
5255 /* Count half he number of filler lines to be "below this
5256 * line" and half to be "above the next line". */
5257 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
5258 + n) / 2 >= half)
5259 {
5260 --n;
5261 break;
5262 }
5263#endif
5264 used += plines(curwin->w_topline + n);
5265 if (used >= half)
5266 break;
5267#ifdef FEAT_FOLDING
5268 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
5269 n = lnum - curwin->w_topline;
5270#endif
5271 }
5272 if (n > 0 && used > curwin->w_height)
5273 --n;
5274 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005275 else /* (cap->cmdchar == 'H') */
5276 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005278#ifdef FEAT_FOLDING
5279 if (hasAnyFolding(curwin))
5280 {
5281 /* Count a fold for one screen line. */
5282 lnum = curwin->w_topline;
5283 while (n-- > 0 && lnum < curwin->w_botline - 1)
5284 {
5285 hasFolding(lnum, NULL, &lnum);
5286 ++lnum;
5287 }
5288 n = lnum - curwin->w_topline;
5289 }
5290#endif
5291 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 curwin->w_cursor.lnum = curwin->w_topline + n;
5293 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5294 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5295 }
5296
5297 cursor_correct(); /* correct for 'so' */
5298 beginline(BL_SOL | BL_FIX);
5299}
5300
5301/*
5302 * Cursor right commands.
5303 */
5304 static void
5305nv_right(cap)
5306 cmdarg_T *cap;
5307{
5308 long n;
5309#ifdef FEAT_VISUAL
5310 int PAST_LINE;
5311#else
5312# define PAST_LINE 0
5313#endif
5314
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005315 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
5316 {
5317 /* <C-Right> and <S-Right> move a word or WORD right */
5318 if (mod_mask & MOD_MASK_CTRL)
5319 cap->arg = TRUE;
5320 nv_wordcmd(cap);
5321 return;
5322 }
5323
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 cap->oap->motion_type = MCHAR;
5325 cap->oap->inclusive = FALSE;
5326#ifdef FEAT_VISUAL
5327 PAST_LINE = (VIsual_active && *p_sel != 'o');
5328
5329# ifdef FEAT_VIRTUALEDIT
5330 /*
5331 * In virtual mode, there's no such thing as "PAST_LINE", as lines are
5332 * (theoretically) infinitly long.
5333 */
5334 if (virtual_active())
5335 PAST_LINE = 0;
5336# endif
5337#endif
5338
5339 for (n = cap->count1; n > 0; --n)
5340 {
5341 if ((!PAST_LINE && oneright() == FAIL)
5342 || (PAST_LINE && *ml_get_cursor() == NUL))
5343 {
5344 /*
5345 * <Space> wraps to next line if 'whichwrap' bit 1 set.
5346 * 'l' wraps to next line if 'whichwrap' bit 2 set.
5347 * CURS_RIGHT wraps to next line if 'whichwrap' bit 3 set
5348 */
5349 if ( ((cap->cmdchar == ' '
5350 && vim_strchr(p_ww, 's') != NULL)
5351 || (cap->cmdchar == 'l'
5352 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00005353 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 && vim_strchr(p_ww, '>') != NULL))
5355 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5356 {
5357 /* When deleting we also count the NL as a character.
5358 * Set cap->oap->inclusive when last char in the line is
5359 * included, move to next line after that */
5360 if ( (cap->oap->op_type == OP_DELETE
5361 || cap->oap->op_type == OP_CHANGE)
5362 && !cap->oap->inclusive
5363 && !lineempty(curwin->w_cursor.lnum))
5364 cap->oap->inclusive = TRUE;
5365 else
5366 {
5367 ++curwin->w_cursor.lnum;
5368 curwin->w_cursor.col = 0;
5369#ifdef FEAT_VIRTUALEDIT
5370 curwin->w_cursor.coladd = 0;
5371#endif
5372 curwin->w_set_curswant = TRUE;
5373 cap->oap->inclusive = FALSE;
5374 }
5375 continue;
5376 }
5377 if (cap->oap->op_type == OP_NOP)
5378 {
5379 /* Only beep and flush if not moved at all */
5380 if (n == cap->count1)
5381 beep_flush();
5382 }
5383 else
5384 {
5385 if (!lineempty(curwin->w_cursor.lnum))
5386 cap->oap->inclusive = TRUE;
5387 }
5388 break;
5389 }
5390#ifdef FEAT_VISUAL
5391 else if (PAST_LINE)
5392 {
5393 curwin->w_set_curswant = TRUE;
5394# ifdef FEAT_VIRTUALEDIT
5395 if (virtual_active())
5396 oneright();
5397 else
5398# endif
5399 {
5400# ifdef FEAT_MBYTE
5401 if (has_mbyte)
5402 curwin->w_cursor.col +=
5403 (*mb_ptr2len_check)(ml_get_cursor());
5404 else
5405# endif
5406 ++curwin->w_cursor.col;
5407 }
5408 }
5409#endif
5410 }
5411#ifdef FEAT_FOLDING
5412 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
5413 && cap->oap->op_type == OP_NOP)
5414 foldOpenCursor();
5415#endif
5416}
5417
5418/*
5419 * Cursor left commands.
5420 *
5421 * Returns TRUE when operator end should not be adjusted.
5422 */
5423 static void
5424nv_left(cap)
5425 cmdarg_T *cap;
5426{
5427 long n;
5428
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005429 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
5430 {
5431 /* <C-Left> and <S-Left> move a word or WORD left */
5432 if (mod_mask & MOD_MASK_CTRL)
5433 cap->arg = 1;
5434 nv_bck_word(cap);
5435 return;
5436 }
5437
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 cap->oap->motion_type = MCHAR;
5439 cap->oap->inclusive = FALSE;
5440 for (n = cap->count1; n > 0; --n)
5441 {
5442 if (oneleft() == FAIL)
5443 {
5444 /* <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
5445 * 'h' wraps to previous line if 'whichwrap' has 'h'.
5446 * CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
5447 */
5448 if ( (((cap->cmdchar == K_BS
5449 || cap->cmdchar == Ctrl_H)
5450 && vim_strchr(p_ww, 'b') != NULL)
5451 || (cap->cmdchar == 'h'
5452 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00005453 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 && vim_strchr(p_ww, '<') != NULL))
5455 && curwin->w_cursor.lnum > 1)
5456 {
5457 --(curwin->w_cursor.lnum);
5458 coladvance((colnr_T)MAXCOL);
5459 curwin->w_set_curswant = TRUE;
5460
5461 /* When the NL before the first char has to be deleted we
5462 * put the cursor on the NUL after the previous line.
5463 * This is a very special case, be careful!
5464 * don't adjust op_end now, otherwise it won't work */
5465 if ( (cap->oap->op_type == OP_DELETE
5466 || cap->oap->op_type == OP_CHANGE)
5467 && !lineempty(curwin->w_cursor.lnum))
5468 {
5469 ++curwin->w_cursor.col;
5470 cap->retval |= CA_NO_ADJ_OP_END;
5471 }
5472 continue;
5473 }
5474 /* Only beep and flush if not moved at all */
5475 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
5476 beep_flush();
5477 break;
5478 }
5479 }
5480#ifdef FEAT_FOLDING
5481 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
5482 && cap->oap->op_type == OP_NOP)
5483 foldOpenCursor();
5484#endif
5485}
5486
5487/*
5488 * Cursor up commands.
5489 * cap->arg is TRUE for "-": Move cursor to first non-blank.
5490 */
5491 static void
5492nv_up(cap)
5493 cmdarg_T *cap;
5494{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005495 if (mod_mask & MOD_MASK_SHIFT)
5496 {
5497 /* <S-Up> is page up */
5498 cap->arg = BACKWARD;
5499 nv_page(cap);
5500 }
5501 else
5502 {
5503 cap->oap->motion_type = MLINE;
5504 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
5505 clearopbeep(cap->oap);
5506 else if (cap->arg)
5507 beginline(BL_WHITE | BL_FIX);
5508 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509}
5510
5511/*
5512 * Cursor down commands.
5513 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
5514 */
5515 static void
5516nv_down(cap)
5517 cmdarg_T *cap;
5518{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005519 if (mod_mask & MOD_MASK_SHIFT)
5520 {
5521 /* <S-Down> is page down */
5522 cap->arg = FORWARD;
5523 nv_page(cap);
5524 }
5525 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5527 /* In a quickfix window a <CR> jumps to the error under the cursor. */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005528 if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 do_cmdline_cmd((char_u *)".cc");
5530 else
5531#endif
5532 {
5533#ifdef FEAT_CMDWIN
5534 /* In the cmdline window a <CR> executes the command. */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005535 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 cmdwin_result = CAR;
5537 else
5538#endif
5539 {
5540 cap->oap->motion_type = MLINE;
5541 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
5542 clearopbeep(cap->oap);
5543 else if (cap->arg)
5544 beginline(BL_WHITE | BL_FIX);
5545 }
5546 }
5547}
5548
5549#ifdef FEAT_SEARCHPATH
5550/*
5551 * Grab the file name under the cursor and edit it.
5552 */
5553 static void
5554nv_gotofile(cap)
5555 cmdarg_T *cap;
5556{
5557 char_u *ptr;
5558
5559#ifdef FEAT_CMDWIN
5560 if (cmdwin_type != 0)
5561 {
5562 clearopbeep(cap->oap);
5563 return;
5564 }
5565#endif
5566
5567# ifdef FEAT_VISUAL
5568 /*
5569 * In Visual mode, use the selected text as a file name.
5570 * Don't allow selection across multiple lines.
5571 */
5572 if (VIsual_active)
5573 {
5574 int len;
5575
5576 if (get_visual_text(cap, &ptr, &len) == FAIL)
5577 return;
5578 ptr = find_file_name_in_path(ptr, len,
5579 FNAME_MESS|FNAME_EXP|FNAME_REL, cap->count1, curbuf->b_ffname);
5580 }
5581 else
5582# endif
5583 ptr = file_name_at_cursor(FNAME_MESS|FNAME_HYP|FNAME_EXP|FNAME_REL,
5584 cap->count1);
5585
5586 if (ptr != NULL)
5587 {
5588 /* do autowrite if necessary */
5589 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !P_HID(curbuf))
5590 autowrite(curbuf, FALSE);
5591 setpcmark();
5592 (void)do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
5593 P_HID(curbuf) ? ECMD_HIDE : 0);
5594 vim_free(ptr);
5595 }
5596 else
5597 clearop(cap->oap);
5598}
5599#endif
5600
5601/*
5602 * <End> command: to end of current line or last line.
5603 */
5604 static void
5605nv_end(cap)
5606 cmdarg_T *cap;
5607{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005608 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) /* CTRL-END = goto last line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005610 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 nv_goto(cap);
5612 cap->count1 = 1; /* to end of current line */
5613 }
5614 nv_dollar(cap);
5615}
5616
5617/*
5618 * Handle the "$" command.
5619 */
5620 static void
5621nv_dollar(cap)
5622 cmdarg_T *cap;
5623{
5624 cap->oap->motion_type = MCHAR;
5625 cap->oap->inclusive = TRUE;
5626#ifdef FEAT_VIRTUALEDIT
5627 /* In virtual mode when off the edge of a line and an operator
5628 * is pending (whew!) keep the cursor where it is.
5629 * Otherwise, send it to the end of the line. */
5630 if (!virtual_active() || gchar_cursor() != NUL
5631 || cap->oap->op_type == OP_NOP)
5632#endif
5633 curwin->w_curswant = MAXCOL; /* so we stay at the end */
5634 if (cursor_down((long)(cap->count1 - 1),
5635 cap->oap->op_type == OP_NOP) == FAIL)
5636 clearopbeep(cap->oap);
5637#ifdef FEAT_FOLDING
5638 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
5639 foldOpenCursor();
5640#endif
5641}
5642
5643/*
5644 * Implementation of '?' and '/' commands.
5645 * If cap->arg is TRUE don't set PC mark.
5646 */
5647 static void
5648nv_search(cap)
5649 cmdarg_T *cap;
5650{
5651 oparg_T *oap = cap->oap;
5652
5653 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
5654 {
5655 /* Translate "g??" to "g?g?" */
5656 cap->cmdchar = 'g';
5657 cap->nchar = '?';
5658 nv_operator(cap);
5659 return;
5660 }
5661
5662 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0);
5663
5664 if (cap->searchbuf == NULL)
5665 {
5666 clearop(oap);
5667 return;
5668 }
5669
5670 normal_search(cap, cap->cmdchar, cap->searchbuf,
5671 (cap->arg ? 0 : SEARCH_MARK));
5672}
5673
5674/*
5675 * Handle "N" and "n" commands.
5676 * cap->arg is SEARCH_REV for "N", 0 for "n".
5677 */
5678 static void
5679nv_next(cap)
5680 cmdarg_T *cap;
5681{
5682 normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg);
5683}
5684
5685/*
5686 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
5687 * Uses only cap->count1 and cap->oap from "cap".
5688 */
5689 static void
5690normal_search(cap, dir, pat, opt)
5691 cmdarg_T *cap;
5692 int dir;
5693 char_u *pat;
5694 int opt; /* extra flags for do_search() */
5695{
5696 int i;
5697
5698 cap->oap->motion_type = MCHAR;
5699 cap->oap->inclusive = FALSE;
5700 cap->oap->use_reg_one = TRUE;
5701 curwin->w_set_curswant = TRUE;
5702
5703 i = do_search(cap->oap, dir, pat, cap->count1,
5704 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG);
5705 if (i == 0)
5706 clearop(cap->oap);
5707 else
5708 {
5709 if (i == 2)
5710 cap->oap->motion_type = MLINE;
5711#ifdef FEAT_VIRTUALEDIT
5712 curwin->w_cursor.coladd = 0;
5713#endif
5714#ifdef FEAT_FOLDING
5715 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
5716 foldOpenCursor();
5717#endif
5718 }
5719
5720 /* "/$" will put the cursor after the end of the line, may need to
5721 * correct that here */
5722 check_cursor();
5723}
5724
5725/*
5726 * Character search commands.
5727 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
5728 * ',' and FALSE for ';'.
5729 * cap->nchar is NUL for ',' and ';' (repeat the search)
5730 */
5731 static void
5732nv_csearch(cap)
5733 cmdarg_T *cap;
5734{
5735 int t_cmd;
5736
5737 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
5738 t_cmd = TRUE;
5739 else
5740 t_cmd = FALSE;
5741
5742 cap->oap->motion_type = MCHAR;
5743 if (cap->arg == BACKWARD)
5744 cap->oap->inclusive = FALSE;
5745 else
5746 cap->oap->inclusive = TRUE;
5747 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
5748 clearopbeep(cap->oap);
5749 else
5750 {
5751 curwin->w_set_curswant = TRUE;
5752#ifdef FEAT_VIRTUALEDIT
5753 /* Include a Tab for "tx" and for "dfx". */
5754 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
5755 && (t_cmd || cap->oap->op_type != OP_NOP))
5756 {
5757 colnr_T scol, ecol;
5758
5759 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
5760 curwin->w_cursor.coladd = ecol - scol;
5761 }
5762 else
5763 curwin->w_cursor.coladd = 0;
5764#endif
5765#ifdef FEAT_VISUAL
5766 adjust_for_sel(cap);
5767#endif
5768#ifdef FEAT_FOLDING
5769 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
5770 foldOpenCursor();
5771#endif
5772 }
5773}
5774
5775/*
5776 * "[" and "]" commands.
5777 * cap->arg is BACKWARD for "[" and FORWARD for "]".
5778 */
5779 static void
5780nv_brackets(cap)
5781 cmdarg_T *cap;
5782{
5783 pos_T new_pos;
5784 pos_T prev_pos;
5785 pos_T *pos = NULL; /* init for GCC */
5786 pos_T old_pos; /* cursor position before command */
5787 int flag;
5788 long n;
5789 int findc;
5790 int c;
5791
5792 cap->oap->motion_type = MCHAR;
5793 cap->oap->inclusive = FALSE;
5794 old_pos = curwin->w_cursor;
5795#ifdef FEAT_VIRTUALEDIT
5796 curwin->w_cursor.coladd = 0; /* TODO: don't do this for an error. */
5797#endif
5798
5799#ifdef FEAT_SEARCHPATH
5800 /*
5801 * "[f" or "]f" : Edit file under the cursor (same as "gf")
5802 */
5803 if (cap->nchar == 'f')
5804 nv_gotofile(cap);
5805 else
5806#endif
5807
5808#ifdef FEAT_FIND_ID
5809 /*
5810 * Find the occurence(s) of the identifier or define under cursor
5811 * in current and included files or jump to the first occurence.
5812 *
5813 * search list jump
5814 * fwd bwd fwd bwd fwd bwd
5815 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
5816 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
5817 */
5818 if (vim_strchr((char_u *)
5819#ifdef EBCDIC
5820 "iI\005dD\067",
5821#else
5822 "iI\011dD\004",
5823#endif
5824 cap->nchar) != NULL)
5825 {
5826 char_u *ptr;
5827 int len;
5828
5829 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
5830 clearop(cap->oap);
5831 else
5832 {
5833 find_pattern_in_path(ptr, 0, len, TRUE,
5834 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
5835 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
5836 cap->count1,
5837 isupper(cap->nchar) ? ACTION_SHOW_ALL :
5838 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
5839 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
5840 (linenr_T)MAXLNUM);
5841 curwin->w_set_curswant = TRUE;
5842 }
5843 }
5844 else
5845#endif
5846
5847 /*
5848 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
5849 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
5850 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
5851 * "[m" or "]m" search for prev/next start of (Java) method.
5852 * "[M" or "]M" search for prev/next end of (Java) method.
5853 */
5854 if ( (cap->cmdchar == '['
5855 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
5856 || (cap->cmdchar == ']'
5857 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
5858 {
5859 if (cap->nchar == '*')
5860 cap->nchar = '/';
5861 new_pos.lnum = 0;
5862 prev_pos.lnum = 0;
5863 if (cap->nchar == 'm' || cap->nchar == 'M')
5864 {
5865 if (cap->cmdchar == '[')
5866 findc = '{';
5867 else
5868 findc = '}';
5869 n = 9999;
5870 }
5871 else
5872 {
5873 findc = cap->nchar;
5874 n = cap->count1;
5875 }
5876 for ( ; n > 0; --n)
5877 {
5878 if ((pos = findmatchlimit(cap->oap, findc,
5879 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
5880 {
5881 if (new_pos.lnum == 0) /* nothing found */
5882 {
5883 if (cap->nchar != 'm' && cap->nchar != 'M')
5884 clearopbeep(cap->oap);
5885 }
5886 else
5887 pos = &new_pos; /* use last one found */
5888 break;
5889 }
5890 prev_pos = new_pos;
5891 curwin->w_cursor = *pos;
5892 new_pos = *pos;
5893 }
5894 curwin->w_cursor = old_pos;
5895
5896 /*
5897 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
5898 * brought us to the match for "[m" and "]M" when inside a method.
5899 * Try finding the '{' or '}' we want to be at.
5900 * Also repeat for the given count.
5901 */
5902 if (cap->nchar == 'm' || cap->nchar == 'M')
5903 {
5904 /* norm is TRUE for "]M" and "[m" */
5905 int norm = ((findc == '{') == (cap->nchar == 'm'));
5906
5907 n = cap->count1;
5908 /* found a match: we were inside a method */
5909 if (prev_pos.lnum != 0)
5910 {
5911 pos = &prev_pos;
5912 curwin->w_cursor = prev_pos;
5913 if (norm)
5914 --n;
5915 }
5916 else
5917 pos = NULL;
5918 while (n > 0)
5919 {
5920 for (;;)
5921 {
5922 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
5923 {
5924 /* if not found anything, that's an error */
5925 if (pos == NULL)
5926 clearopbeep(cap->oap);
5927 n = 0;
5928 break;
5929 }
5930 c = gchar_cursor();
5931 if (c == '{' || c == '}')
5932 {
5933 /* Must have found end/start of class: use it.
5934 * Or found the place to be at. */
5935 if ((c == findc && norm) || (n == 1 && !norm))
5936 {
5937 new_pos = curwin->w_cursor;
5938 pos = &new_pos;
5939 n = 0;
5940 }
5941 /* if no match found at all, we started outside of the
5942 * class and we're inside now. Just go on. */
5943 else if (new_pos.lnum == 0)
5944 {
5945 new_pos = curwin->w_cursor;
5946 pos = &new_pos;
5947 }
5948 /* found start/end of other method: go to match */
5949 else if ((pos = findmatchlimit(cap->oap, findc,
5950 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
5951 0)) == NULL)
5952 n = 0;
5953 else
5954 curwin->w_cursor = *pos;
5955 break;
5956 }
5957 }
5958 --n;
5959 }
5960 curwin->w_cursor = old_pos;
5961 if (pos == NULL && new_pos.lnum != 0)
5962 clearopbeep(cap->oap);
5963 }
5964 if (pos != NULL)
5965 {
5966 setpcmark();
5967 curwin->w_cursor = *pos;
5968 curwin->w_set_curswant = TRUE;
5969#ifdef FEAT_FOLDING
5970 if ((fdo_flags & FDO_BLOCK) && KeyTyped
5971 && cap->oap->op_type == OP_NOP)
5972 foldOpenCursor();
5973#endif
5974 }
5975 }
5976
5977 /*
5978 * "[[", "[]", "]]" and "][": move to start or end of function
5979 */
5980 else if (cap->nchar == '[' || cap->nchar == ']')
5981 {
5982 if (cap->nchar == cap->cmdchar) /* "]]" or "[[" */
5983 flag = '{';
5984 else
5985 flag = '}'; /* "][" or "[]" */
5986
5987 curwin->w_set_curswant = TRUE;
5988 /*
5989 * Imitate strange Vi behaviour: When using "]]" with an operator
5990 * we also stop at '}'.
5991 */
5992 if (!findpar(cap->oap, cap->arg, cap->count1, flag,
5993 (cap->oap->op_type != OP_NOP
5994 && cap->arg == FORWARD && flag == '{')))
5995 clearopbeep(cap->oap);
5996 else
5997 {
5998 if (cap->oap->op_type == OP_NOP)
5999 beginline(BL_WHITE | BL_FIX);
6000#ifdef FEAT_FOLDING
6001 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6002 foldOpenCursor();
6003#endif
6004 }
6005 }
6006
6007 /*
6008 * "[p", "[P", "]P" and "]p": put with indent adjustment
6009 */
6010 else if (cap->nchar == 'p' || cap->nchar == 'P')
6011 {
6012 if (!checkclearopq(cap->oap))
6013 {
6014 prep_redo_cmd(cap);
6015 do_put(cap->oap->regname,
6016 (cap->cmdchar == ']' && cap->nchar == 'p') ? FORWARD : BACKWARD,
6017 cap->count1, PUT_FIXINDENT);
6018 }
6019 }
6020
6021 /*
6022 * "['", "[`", "]'" and "]`": jump to next mark
6023 */
6024 else if (cap->nchar == '\'' || cap->nchar == '`')
6025 {
6026 pos = &curwin->w_cursor;
6027 for (n = cap->count1; n > 0; --n)
6028 {
6029 prev_pos = *pos;
6030 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
6031 cap->nchar == '\'');
6032 if (pos == NULL)
6033 break;
6034 }
6035 if (pos == NULL)
6036 pos = &prev_pos;
6037 nv_cursormark(cap, cap->nchar == '\'', pos);
6038 }
6039
6040#ifdef FEAT_MOUSE
6041 /*
6042 * [ or ] followed by a middle mouse click: put selected text with
6043 * indent adjustment. Any other button just does as usual.
6044 */
6045 else if (cap->nchar >= K_LEFTMOUSE && cap->nchar <= K_RIGHTRELEASE)
6046 {
6047 (void)do_mouse(cap->oap, cap->nchar,
6048 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
6049 cap->count1, PUT_FIXINDENT);
6050 }
6051#endif /* FEAT_MOUSE */
6052
6053#ifdef FEAT_FOLDING
6054 /*
6055 * "[z" and "]z": move to start or end of open fold.
6056 */
6057 else if (cap->nchar == 'z')
6058 {
6059 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6060 cap->count1) == FAIL)
6061 clearopbeep(cap->oap);
6062 }
6063#endif
6064
6065#ifdef FEAT_DIFF
6066 /*
6067 * "[c" and "]c": move to next or previous diff-change.
6068 */
6069 else if (cap->nchar == 'c')
6070 {
6071 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
6072 cap->count1) == FAIL)
6073 clearopbeep(cap->oap);
6074 }
6075#endif
6076
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006077#ifdef FEAT_SYN_HL
6078 /*
6079 * "[s", "[S", "]s" and "]S": move to next spell error.
6080 */
6081 else if (cap->nchar == 's' || cap->nchar == 'S')
6082 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00006083 setpcmark();
6084 for (n = 0; n < cap->count1; ++n)
6085 if (spell_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006086 cap->nchar == 's' ? TRUE : FALSE) == FAIL)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00006087 {
6088 clearopbeep(cap->oap);
6089 break;
6090 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006091 }
6092#endif
6093
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 /* Not a valid cap->nchar. */
6095 else
6096 clearopbeep(cap->oap);
6097}
6098
6099/*
6100 * Handle Normal mode "%" command.
6101 */
6102 static void
6103nv_percent(cap)
6104 cmdarg_T *cap;
6105{
6106 pos_T *pos;
6107#ifdef FEAT_FOLDING
6108 linenr_T lnum = curwin->w_cursor.lnum;
6109#endif
6110
6111 cap->oap->inclusive = TRUE;
6112 if (cap->count0) /* {cnt}% : goto {cnt} percentage in file */
6113 {
6114 if (cap->count0 > 100)
6115 clearopbeep(cap->oap);
6116 else
6117 {
6118 cap->oap->motion_type = MLINE;
6119 setpcmark();
6120 /* Round up, so CTRL-G will give same value. Watch out for a
6121 * large line count, the line number must not go negative! */
6122 if (curbuf->b_ml.ml_line_count > 1000000)
6123 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
6124 / 100L * cap->count0;
6125 else
6126 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
6127 cap->count0 + 99L) / 100L;
6128 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6129 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6130 beginline(BL_SOL | BL_FIX);
6131 }
6132 }
6133 else /* "%" : go to matching paren */
6134 {
6135 cap->oap->motion_type = MCHAR;
6136 cap->oap->use_reg_one = TRUE;
6137 if ((pos = findmatch(cap->oap, NUL)) == NULL)
6138 clearopbeep(cap->oap);
6139 else
6140 {
6141 setpcmark();
6142 curwin->w_cursor = *pos;
6143 curwin->w_set_curswant = TRUE;
6144#ifdef FEAT_VIRTUALEDIT
6145 curwin->w_cursor.coladd = 0;
6146#endif
6147#ifdef FEAT_VISUAL
6148 adjust_for_sel(cap);
6149#endif
6150 }
6151 }
6152#ifdef FEAT_FOLDING
6153 if (cap->oap->op_type == OP_NOP
6154 && lnum != curwin->w_cursor.lnum
6155 && (fdo_flags & FDO_PERCENT)
6156 && KeyTyped)
6157 foldOpenCursor();
6158#endif
6159}
6160
6161/*
6162 * Handle "(" and ")" commands.
6163 * cap->arg is BACKWARD for "(" and FORWARD for ")".
6164 */
6165 static void
6166nv_brace(cap)
6167 cmdarg_T *cap;
6168{
6169 cap->oap->motion_type = MCHAR;
6170 cap->oap->use_reg_one = TRUE;
6171 if (cap->cmdchar == ')')
6172 cap->oap->inclusive = FALSE;
6173 else
6174 cap->oap->inclusive = TRUE;
6175 curwin->w_set_curswant = TRUE;
6176
6177 if (findsent(cap->arg, cap->count1) == FAIL)
6178 clearopbeep(cap->oap);
6179 else
6180 {
6181#ifdef FEAT_VIRTUALEDIT
6182 curwin->w_cursor.coladd = 0;
6183#endif
6184#ifdef FEAT_FOLDING
6185 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6186 foldOpenCursor();
6187#endif
6188 }
6189}
6190
6191/*
6192 * "m" command: Mark a position.
6193 */
6194 static void
6195nv_mark(cap)
6196 cmdarg_T *cap;
6197{
6198 if (!checkclearop(cap->oap))
6199 {
6200 if (setmark(cap->nchar) == FAIL)
6201 clearopbeep(cap->oap);
6202 }
6203}
6204
6205/*
6206 * "{" and "}" commands.
6207 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
6208 */
6209 static void
6210nv_findpar(cap)
6211 cmdarg_T *cap;
6212{
6213 cap->oap->motion_type = MCHAR;
6214 cap->oap->inclusive = FALSE;
6215 cap->oap->use_reg_one = TRUE;
6216 curwin->w_set_curswant = TRUE;
6217 if (!findpar(cap->oap, cap->arg, cap->count1, NUL, FALSE))
6218 clearopbeep(cap->oap);
6219 else
6220 {
6221#ifdef FEAT_VIRTUALEDIT
6222 curwin->w_cursor.coladd = 0;
6223#endif
6224#ifdef FEAT_FOLDING
6225 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6226 foldOpenCursor();
6227#endif
6228 }
6229}
6230
6231/*
6232 * "u" command: Undo or make lower case.
6233 */
6234 static void
6235nv_undo(cap)
6236 cmdarg_T *cap;
6237{
6238 if (cap->oap->op_type == OP_LOWER
6239#ifdef FEAT_VISUAL
6240 || VIsual_active
6241#endif
6242 )
6243 {
6244 /* translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" */
6245 cap->cmdchar = 'g';
6246 cap->nchar = 'u';
6247 nv_operator(cap);
6248 }
6249 else
6250 nv_kundo(cap);
6251}
6252
6253/*
6254 * <Undo> command.
6255 */
6256 static void
6257nv_kundo(cap)
6258 cmdarg_T *cap;
6259{
6260 if (!checkclearopq(cap->oap))
6261 {
6262 u_undo((int)cap->count1);
6263 curwin->w_set_curswant = TRUE;
6264 }
6265}
6266
6267/*
6268 * Handle the "r" command.
6269 */
6270 static void
6271nv_replace(cap)
6272 cmdarg_T *cap;
6273{
6274 char_u *ptr;
6275 int had_ctrl_v;
6276 long n;
6277
6278 if (checkclearop(cap->oap))
6279 return;
6280
6281 /* get another character */
6282 if (cap->nchar == Ctrl_V)
6283 {
6284 had_ctrl_v = Ctrl_V;
6285 cap->nchar = get_literal();
6286 /* Don't redo a multibyte character with CTRL-V. */
6287 if (cap->nchar > DEL)
6288 had_ctrl_v = NUL;
6289 }
6290 else
6291 had_ctrl_v = NUL;
6292
6293#ifdef FEAT_VISUAL
6294 /* Visual mode "r" */
6295 if (VIsual_active)
6296 {
6297 nv_operator(cap);
6298 return;
6299 }
6300#endif
6301
6302#ifdef FEAT_VIRTUALEDIT
6303 /* Break tabs, etc. */
6304 if (virtual_active())
6305 {
6306 if (u_save_cursor() == FAIL)
6307 return;
6308 if (gchar_cursor() == NUL)
6309 {
6310 /* Add extra space and put the cursor on the first one. */
6311 coladvance_force((colnr_T)(getviscol() + cap->count1));
6312 curwin->w_cursor.col -= cap->count1;
6313 }
6314 else if (gchar_cursor() == TAB)
6315 coladvance_force(getviscol());
6316 }
6317#endif
6318
6319 /*
6320 * Check for a special key or not enough characters to replace.
6321 */
6322 ptr = ml_get_cursor();
6323 if (IS_SPECIAL(cap->nchar) || STRLEN(ptr) < (unsigned)cap->count1
6324#ifdef FEAT_MBYTE
6325 || (has_mbyte && mb_charlen(ptr) < cap->count1)
6326#endif
6327 )
6328 {
6329 clearopbeep(cap->oap);
6330 return;
6331 }
6332
6333 /*
6334 * Replacing with a TAB is done by edit() when it is complicated because
6335 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
6336 * Other characters are done below to avoid problems with things like
6337 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
6338 */
6339 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
6340 {
6341 stuffnumReadbuff(cap->count1);
6342 stuffcharReadbuff('R');
6343 stuffcharReadbuff('\t');
6344 stuffcharReadbuff(ESC);
6345 return;
6346 }
6347
6348 /* save line for undo */
6349 if (u_save_cursor() == FAIL)
6350 return;
6351
6352 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
6353 {
6354 /*
6355 * Replace character(s) by a single newline.
6356 * Strange vi behaviour: Only one newline is inserted.
6357 * Delete the characters here.
6358 * Insert the newline with an insert command, takes care of
6359 * autoindent. The insert command depends on being on the last
6360 * character of a line or not.
6361 */
6362#ifdef FEAT_MBYTE
6363 (void)del_chars(cap->count1, FALSE); /* delete the characters */
6364#else
6365 (void)del_bytes(cap->count1, FALSE); /* delete the characters */
6366#endif
6367 stuffcharReadbuff('\r');
6368 stuffcharReadbuff(ESC);
6369
6370 /* Give 'r' to edit(), to get the redo command right. */
6371 invoke_edit(cap, TRUE, 'r', FALSE);
6372 }
6373 else
6374 {
6375 prep_redo(cap->oap->regname, cap->count1,
6376 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
6377
6378 curbuf->b_op_start = curwin->w_cursor;
6379#ifdef FEAT_MBYTE
6380 if (has_mbyte)
6381 {
6382 int old_State = State;
6383
6384 if (cap->ncharC1 != 0)
6385 AppendCharToRedobuff(cap->ncharC1);
6386 if (cap->ncharC2 != 0)
6387 AppendCharToRedobuff(cap->ncharC2);
6388
6389 /* This is slow, but it handles replacing a single-byte with a
6390 * multi-byte and the other way around. Also handles adding
6391 * composing characters for utf-8. */
6392 for (n = cap->count1; n > 0; --n)
6393 {
6394 State = REPLACE;
6395 ins_char(cap->nchar);
6396 State = old_State;
6397 if (cap->ncharC1 != 0)
6398 ins_char(cap->ncharC1);
6399 if (cap->ncharC2 != 0)
6400 ins_char(cap->ncharC2);
6401 }
6402 }
6403 else
6404#endif
6405 {
6406 /*
6407 * Replace the characters within one line.
6408 */
6409 for (n = cap->count1; n > 0; --n)
6410 {
6411 /*
6412 * Get ptr again, because u_save and/or showmatch() will have
6413 * released the line. At the same time we let know that the
6414 * line will be changed.
6415 */
6416 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
6417 ptr[curwin->w_cursor.col] = cap->nchar;
6418 if (p_sm && msg_silent == 0)
6419 showmatch(cap->nchar);
6420 ++curwin->w_cursor.col;
6421 }
6422#ifdef FEAT_NETBEANS_INTG
6423 if (usingNetbeans)
6424 {
6425 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
6426
Bram Moolenaar009b2592004-10-24 19:18:58 +00006427 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
6428 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00006430 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431 }
6432#endif
6433
6434 /* mark the buffer as changed and prepare for displaying */
6435 changed_bytes(curwin->w_cursor.lnum,
6436 (colnr_T)(curwin->w_cursor.col - cap->count1));
6437 }
6438 --curwin->w_cursor.col; /* cursor on the last replaced char */
6439#ifdef FEAT_MBYTE
6440 /* if the character on the left of the current cursor is a multi-byte
6441 * character, move two characters left */
6442 if (has_mbyte)
6443 mb_adjust_cursor();
6444#endif
6445 curbuf->b_op_end = curwin->w_cursor;
6446 curwin->w_set_curswant = TRUE;
6447 set_last_insert(cap->nchar);
6448 }
6449}
6450
6451#ifdef FEAT_VISUAL
6452/*
6453 * 'o': Exchange start and end of Visual area.
6454 * 'O': same, but in block mode exchange left and right corners.
6455 */
6456 static void
6457v_swap_corners(cmdchar)
6458 int cmdchar;
6459{
6460 pos_T old_cursor;
6461 colnr_T left, right;
6462
6463 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
6464 {
6465 old_cursor = curwin->w_cursor;
6466 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
6467 curwin->w_cursor.lnum = VIsual.lnum;
6468 coladvance(left);
6469 VIsual = curwin->w_cursor;
6470
6471 curwin->w_cursor.lnum = old_cursor.lnum;
6472 curwin->w_curswant = right;
6473 /* 'selection "exclusive" and cursor at right-bottom corner: move it
6474 * right one column */
6475 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
6476 ++curwin->w_curswant;
6477 coladvance(curwin->w_curswant);
6478 if (curwin->w_cursor.col == old_cursor.col
6479#ifdef FEAT_VIRTUALEDIT
6480 && (!virtual_active()
6481 || curwin->w_cursor.coladd == old_cursor.coladd)
6482#endif
6483 )
6484 {
6485 curwin->w_cursor.lnum = VIsual.lnum;
6486 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
6487 ++right;
6488 coladvance(right);
6489 VIsual = curwin->w_cursor;
6490
6491 curwin->w_cursor.lnum = old_cursor.lnum;
6492 coladvance(left);
6493 curwin->w_curswant = left;
6494 }
6495 }
6496 else
6497 {
6498 old_cursor = curwin->w_cursor;
6499 curwin->w_cursor = VIsual;
6500 VIsual = old_cursor;
6501 curwin->w_set_curswant = TRUE;
6502 }
6503}
6504#endif /* FEAT_VISUAL */
6505
6506/*
6507 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
6508 */
6509 static void
6510nv_Replace(cap)
6511 cmdarg_T *cap;
6512{
6513#ifdef FEAT_VISUAL
6514 if (VIsual_active) /* "R" is replace lines */
6515 {
6516 cap->cmdchar = 'c';
6517 cap->nchar = NUL;
6518 VIsual_mode = 'V';
6519 nv_operator(cap);
6520 }
6521 else
6522#endif
6523 if (!checkclearopq(cap->oap))
6524 {
6525 if (!curbuf->b_p_ma)
6526 EMSG(_(e_modifiable));
6527 else
6528 {
6529#ifdef FEAT_VIRTUALEDIT
6530 if (virtual_active())
6531 coladvance(getviscol());
6532#endif
6533 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
6534 }
6535 }
6536}
6537
6538#ifdef FEAT_VREPLACE
6539/*
6540 * "gr".
6541 */
6542 static void
6543nv_vreplace(cap)
6544 cmdarg_T *cap;
6545{
6546# ifdef FEAT_VISUAL
6547 if (VIsual_active)
6548 {
6549 cap->cmdchar = 'r';
6550 cap->nchar = cap->extra_char;
6551 nv_replace(cap); /* Do same as "r" in Visual mode for now */
6552 }
6553 else
6554# endif
6555 if (!checkclearopq(cap->oap))
6556 {
6557 if (!curbuf->b_p_ma)
6558 EMSG(_(e_modifiable));
6559 else
6560 {
6561 if (cap->extra_char == Ctrl_V) /* get another character */
6562 cap->extra_char = get_literal();
6563 stuffcharReadbuff(cap->extra_char);
6564 stuffcharReadbuff(ESC);
6565# ifdef FEAT_VIRTUALEDIT
6566 if (virtual_active())
6567 coladvance(getviscol());
6568# endif
6569 invoke_edit(cap, TRUE, 'v', FALSE);
6570 }
6571 }
6572}
6573#endif
6574
6575/*
6576 * Swap case for "~" command, when it does not work like an operator.
6577 */
6578 static void
6579n_swapchar(cap)
6580 cmdarg_T *cap;
6581{
6582 long n;
6583 pos_T startpos;
6584 int did_change = 0;
6585#ifdef FEAT_NETBEANS_INTG
6586 pos_T pos;
6587 char_u *ptr;
6588 int count;
6589#endif
6590
6591 if (checkclearopq(cap->oap))
6592 return;
6593
6594 if (lineempty(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
6595 {
6596 clearopbeep(cap->oap);
6597 return;
6598 }
6599
6600 prep_redo_cmd(cap);
6601
6602 if (u_save_cursor() == FAIL)
6603 return;
6604
6605 startpos = curwin->w_cursor;
6606#ifdef FEAT_NETBEANS_INTG
6607 pos = startpos;
6608#endif
6609 for (n = cap->count1; n > 0; --n)
6610 {
6611 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
6612 inc_cursor();
6613 if (gchar_cursor() == NUL)
6614 {
6615 if (vim_strchr(p_ww, '~') != NULL
6616 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
6617 {
6618#ifdef FEAT_NETBEANS_INTG
6619 if (usingNetbeans)
6620 {
6621 if (did_change)
6622 {
6623 ptr = ml_get(pos.lnum);
6624 count = STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00006625 netbeans_removed(curbuf, pos.lnum, pos.col,
6626 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00006628 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006629 }
6630 pos.col = 0;
6631 pos.lnum++;
6632 }
6633#endif
6634 ++curwin->w_cursor.lnum;
6635 curwin->w_cursor.col = 0;
6636 if (n > 1)
6637 {
6638 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
6639 break;
6640 u_clearline();
6641 }
6642 }
6643 else
6644 break;
6645 }
6646 }
6647#ifdef FEAT_NETBEANS_INTG
6648 if (did_change && usingNetbeans)
6649 {
6650 ptr = ml_get(pos.lnum);
6651 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00006652 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
6653 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654 }
6655#endif
6656
6657
6658 check_cursor();
6659 curwin->w_set_curswant = TRUE;
6660 if (did_change)
6661 {
6662 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
6663 0L);
6664 curbuf->b_op_start = startpos;
6665 curbuf->b_op_end = curwin->w_cursor;
6666 if (curbuf->b_op_end.col > 0)
6667 --curbuf->b_op_end.col;
6668 }
6669}
6670
6671/*
6672 * Move cursor to mark.
6673 */
6674 static void
6675nv_cursormark(cap, flag, pos)
6676 cmdarg_T *cap;
6677 int flag;
6678 pos_T *pos;
6679{
6680 if (check_mark(pos) == FAIL)
6681 clearop(cap->oap);
6682 else
6683 {
6684 if (cap->cmdchar == '\''
6685 || cap->cmdchar == '`'
6686 || cap->cmdchar == '['
6687 || cap->cmdchar == ']')
6688 setpcmark();
6689 curwin->w_cursor = *pos;
6690 if (flag)
6691 beginline(BL_WHITE | BL_FIX);
6692 else
6693 check_cursor();
6694 }
6695 cap->oap->motion_type = flag ? MLINE : MCHAR;
6696 if (cap->cmdchar == '`')
6697 cap->oap->use_reg_one = TRUE;
6698 cap->oap->inclusive = FALSE; /* ignored if not MCHAR */
6699 curwin->w_set_curswant = TRUE;
6700}
6701
6702#ifdef FEAT_VISUAL
6703/*
6704 * Handle commands that are operators in Visual mode.
6705 */
6706 static void
6707v_visop(cap)
6708 cmdarg_T *cap;
6709{
6710 static char_u trans[] = "YyDdCcxdXdAAIIrr";
6711
6712 /* Uppercase means linewise, except in block mode, then "D" deletes till
6713 * the end of the line, and "C" replaces til EOL */
6714 if (isupper(cap->cmdchar))
6715 {
6716 if (VIsual_mode != Ctrl_V)
6717 VIsual_mode = 'V';
6718 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
6719 curwin->w_curswant = MAXCOL;
6720 }
6721 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
6722 nv_operator(cap);
6723}
6724#endif
6725
6726/*
6727 * "s" and "S" commands.
6728 */
6729 static void
6730nv_subst(cap)
6731 cmdarg_T *cap;
6732{
6733#ifdef FEAT_VISUAL
6734 if (VIsual_active) /* "vs" and "vS" are the same as "vc" */
6735 {
6736 if (cap->cmdchar == 'S')
6737 VIsual_mode = 'V';
6738 cap->cmdchar = 'c';
6739 nv_operator(cap);
6740 }
6741 else
6742#endif
6743 nv_optrans(cap);
6744}
6745
6746/*
6747 * Abbreviated commands.
6748 */
6749 static void
6750nv_abbrev(cap)
6751 cmdarg_T *cap;
6752{
6753 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
6754 cap->cmdchar = 'x'; /* DEL key behaves like 'x' */
6755
6756#ifdef FEAT_VISUAL
6757 /* in Visual mode these commands are operators */
6758 if (VIsual_active)
6759 v_visop(cap);
6760 else
6761#endif
6762 nv_optrans(cap);
6763}
6764
6765/*
6766 * Translate a command into another command.
6767 */
6768 static void
6769nv_optrans(cap)
6770 cmdarg_T *cap;
6771{
6772 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
6773 (char_u *)"d$", (char_u *)"c$",
6774 (char_u *)"cl", (char_u *)"cc",
6775 (char_u *)"yy", (char_u *)":s\r"};
6776 static char_u *str = (char_u *)"xXDCsSY&";
6777
6778 if (!checkclearopq(cap->oap))
6779 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006780 /* In Vi "2D" doesn't delete the next line. Can't translate it
6781 * either, because "2." should also not use the count. */
6782 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
6783 {
6784 cap->oap->start = curwin->w_cursor;
6785 cap->oap->op_type = OP_DELETE;
6786 cap->count1 = 1;
6787 nv_dollar(cap);
6788 finish_op = TRUE;
6789 ResetRedobuff();
6790 AppendCharToRedobuff('D');
6791 }
6792 else
6793 {
6794 if (cap->count0)
6795 stuffnumReadbuff(cap->count0);
6796 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
6797 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798 }
6799 cap->opcount = 0;
6800}
6801
6802/*
6803 * "'" and "`" commands. Also for "g'" and "g`".
6804 * cap->arg is TRUE for "'" and "g'".
6805 */
6806 static void
6807nv_gomark(cap)
6808 cmdarg_T *cap;
6809{
6810 pos_T *pos;
6811 int c;
6812#ifdef FEAT_FOLDING
6813 linenr_T lnum = curwin->w_cursor.lnum;
6814 int old_KeyTyped = KeyTyped; /* getting file may reset it */
6815#endif
6816
6817 if (cap->cmdchar == 'g')
6818 c = cap->extra_char;
6819 else
6820 c = cap->nchar;
6821 pos = getmark(c, (cap->oap->op_type == OP_NOP));
6822 if (pos == (pos_T *)-1) /* jumped to other file */
6823 {
6824 if (cap->arg)
6825 {
6826 check_cursor_lnum();
6827 beginline(BL_WHITE | BL_FIX);
6828 }
6829 else
6830 check_cursor();
6831 }
6832 else
6833 nv_cursormark(cap, cap->arg, pos);
6834
6835#ifdef FEAT_VIRTUALEDIT
6836 /* May need to clear the coladd that a mark includes. */
6837 if (!virtual_active())
6838 curwin->w_cursor.coladd = 0;
6839#endif
6840#ifdef FEAT_FOLDING
6841 if (cap->oap->op_type == OP_NOP
6842 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
6843 && (fdo_flags & FDO_MARK)
6844 && old_KeyTyped)
6845 foldOpenCursor();
6846#endif
6847}
6848
6849/*
6850 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
6851 */
6852 static void
6853nv_pcmark(cap)
6854 cmdarg_T *cap;
6855{
6856#ifdef FEAT_JUMPLIST
6857 pos_T *pos;
6858# ifdef FEAT_FOLDING
6859 linenr_T lnum = curwin->w_cursor.lnum;
6860 int old_KeyTyped = KeyTyped; /* getting file may reset it */
6861# endif
6862
6863 if (!checkclearopq(cap->oap))
6864 {
6865 if (cap->cmdchar == 'g')
6866 pos = movechangelist((int)cap->count1);
6867 else
6868 pos = movemark((int)cap->count1);
6869 if (pos == (pos_T *)-1) /* jump to other file */
6870 {
6871 curwin->w_set_curswant = TRUE;
6872 check_cursor();
6873 }
6874 else if (pos != NULL) /* can jump */
6875 nv_cursormark(cap, FALSE, pos);
6876 else if (cap->cmdchar == 'g')
6877 {
6878 if (curbuf->b_changelistlen == 0)
6879 EMSG(_("E664: changelist is empty"));
6880 else if (cap->count1 < 0)
6881 EMSG(_("E662: At start of changelist"));
6882 else
6883 EMSG(_("E663: At end of changelist"));
6884 }
6885 else
6886 clearopbeep(cap->oap);
6887# ifdef FEAT_FOLDING
6888 if (cap->oap->op_type == OP_NOP
6889 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
6890 && (fdo_flags & FDO_MARK)
6891 && old_KeyTyped)
6892 foldOpenCursor();
6893# endif
6894 }
6895#else
6896 clearopbeep(cap->oap);
6897#endif
6898}
6899
6900/*
6901 * Handle '"' command.
6902 */
6903 static void
6904nv_regname(cap)
6905 cmdarg_T *cap;
6906{
6907 if (checkclearop(cap->oap))
6908 return;
6909#ifdef FEAT_EVAL
6910 if (cap->nchar == '=')
6911 cap->nchar = get_expr_register();
6912#endif
6913 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
6914 {
6915 cap->oap->regname = cap->nchar;
6916 cap->opcount = cap->count0; /* remember count before '"' */
6917#ifdef FEAT_EVAL
6918 set_reg_var(cap->oap->regname);
6919#endif
6920 }
6921 else
6922 clearopbeep(cap->oap);
6923}
6924
6925#ifdef FEAT_VISUAL
6926/*
6927 * Handle "v", "V" and "CTRL-V" commands.
6928 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
6929 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00006930 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006931 */
6932 static void
6933nv_visual(cap)
6934 cmdarg_T *cap;
6935{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006936 if (cap->cmdchar == Ctrl_Q)
6937 cap->cmdchar = Ctrl_V;
6938
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939 /* 'v', 'V' and CTRL-V can be used while an operator is pending to make it
6940 * characterwise, linewise, or blockwise. */
6941 if (cap->oap->op_type != OP_NOP)
6942 {
6943 cap->oap->motion_force = cap->cmdchar;
6944 finish_op = FALSE; /* operator doesn't finish now but later */
6945 return;
6946 }
6947
6948 VIsual_select = cap->arg;
6949 if (VIsual_active) /* change Visual mode */
6950 {
6951 if (VIsual_mode == cap->cmdchar) /* stop visual mode */
6952 end_visual_mode();
6953 else /* toggle char/block mode */
6954 { /* or char/line mode */
6955 VIsual_mode = cap->cmdchar;
6956 showmode();
6957 }
6958 redraw_curbuf_later(INVERTED); /* update the inversion */
6959 }
6960 else /* start Visual mode */
6961 {
6962 check_visual_highlight();
6963 if (cap->count0) /* use previously selected part */
6964 {
6965 if (resel_VIsual_mode == NUL) /* there is none */
6966 {
6967 beep_flush();
6968 return;
6969 }
6970 VIsual = curwin->w_cursor;
6971
6972 VIsual_active = TRUE;
6973 VIsual_reselect = TRUE;
6974 if (!cap->arg)
6975 /* start Select mode when 'selectmode' contains "cmd" */
6976 may_start_select('c');
6977#ifdef FEAT_MOUSE
6978 setmouse();
6979#endif
6980 if (p_smd)
6981 redraw_cmdline = TRUE; /* show visual mode later */
6982 /*
6983 * For V and ^V, we multiply the number of lines even if there
6984 * was only one -- webb
6985 */
6986 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
6987 {
6988 curwin->w_cursor.lnum +=
6989 resel_VIsual_line_count * cap->count0 - 1;
6990 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6991 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6992 }
6993 VIsual_mode = resel_VIsual_mode;
6994 if (VIsual_mode == 'v')
6995 {
6996 if (resel_VIsual_line_count <= 1)
6997 curwin->w_cursor.col += resel_VIsual_col * cap->count0 - 1;
6998 else
6999 curwin->w_cursor.col = resel_VIsual_col;
7000 check_cursor_col();
7001 }
7002 if (resel_VIsual_col == MAXCOL)
7003 {
7004 curwin->w_curswant = MAXCOL;
7005 coladvance((colnr_T)MAXCOL);
7006 }
7007 else if (VIsual_mode == Ctrl_V)
7008 {
7009 validate_virtcol();
7010 curwin->w_curswant = curwin->w_virtcol
7011 + resel_VIsual_col * cap->count0 - 1;
7012 coladvance(curwin->w_curswant);
7013 }
7014 else
7015 curwin->w_set_curswant = TRUE;
7016 redraw_curbuf_later(INVERTED); /* show the inversion */
7017 }
7018 else
7019 {
7020 if (!cap->arg)
7021 /* start Select mode when 'selectmode' contains "cmd" */
7022 may_start_select('c');
7023 n_start_visual_mode(cap->cmdchar);
7024 }
7025 }
7026}
7027
7028/*
7029 * Start selection for Shift-movement keys.
7030 */
7031 void
7032start_selection()
7033{
7034 /* if 'selectmode' contains "key", start Select mode */
7035 may_start_select('k');
7036 n_start_visual_mode('v');
7037}
7038
7039/*
7040 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
7041 */
7042 void
7043may_start_select(c)
7044 int c;
7045{
7046 VIsual_select = (stuff_empty() && typebuf_typed()
7047 && (vim_strchr(p_slm, c) != NULL));
7048}
7049
7050/*
7051 * Start Visual mode "c".
7052 * Should set VIsual_select before calling this.
7053 */
7054 static void
7055n_start_visual_mode(c)
7056 int c;
7057{
7058 VIsual_mode = c;
7059 VIsual_active = TRUE;
7060 VIsual_reselect = TRUE;
7061#ifdef FEAT_VIRTUALEDIT
7062 /* Corner case: the 0 position in a tab may change when going into
7063 * virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting.
7064 */
7065 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB)
7066 coladvance(curwin->w_virtcol);
7067#endif
7068 VIsual = curwin->w_cursor;
7069
7070#ifdef FEAT_FOLDING
7071 foldAdjustVisual();
7072#endif
7073
7074#ifdef FEAT_MOUSE
7075 setmouse();
7076#endif
7077 if (p_smd)
7078 redraw_cmdline = TRUE; /* show visual mode later */
7079#ifdef FEAT_CLIPBOARD
7080 /* Make sure the clipboard gets updated. Needed because start and
7081 * end may still be the same, and the selection needs to be owned */
7082 clip_star.vmode = NUL;
7083#endif
7084
7085 /* Only need to redraw this line, unless still need to redraw an old
7086 * Visual area (when 'lazyredraw' is set). */
7087 if (curwin->w_redr_type < INVERTED)
7088 {
7089 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
7090 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
7091 }
7092}
7093
7094#endif /* FEAT_VISUAL */
7095
7096/*
7097 * CTRL-W: Window commands
7098 */
7099 static void
7100nv_window(cap)
7101 cmdarg_T *cap;
7102{
7103#ifdef FEAT_WINDOWS
7104 if (!checkclearop(cap->oap))
7105 do_window(cap->nchar, cap->count0, NUL); /* everything is in window.c */
7106#else
7107 (void)checkclearop(cap->oap);
7108#endif
7109}
7110
7111/*
7112 * CTRL-Z: Suspend
7113 */
7114 static void
7115nv_suspend(cap)
7116 cmdarg_T *cap;
7117{
7118 clearop(cap->oap);
7119#ifdef FEAT_VISUAL
7120 if (VIsual_active)
7121 end_visual_mode(); /* stop Visual mode */
7122#endif
7123 do_cmdline_cmd((char_u *)"st");
7124}
7125
7126/*
7127 * Commands starting with "g".
7128 */
7129 static void
7130nv_g_cmd(cap)
7131 cmdarg_T *cap;
7132{
7133 oparg_T *oap = cap->oap;
7134#ifdef FEAT_VISUAL
7135 pos_T tpos;
7136#endif
7137 int i;
7138 int flag = FALSE;
7139
7140 switch (cap->nchar)
7141 {
7142#ifdef MEM_PROFILE
7143 /*
7144 * "g^A": dump log of used memory.
7145 */
7146 case Ctrl_A:
7147 vim_mem_profile_dump();
7148 break;
7149#endif
7150
7151#ifdef FEAT_VREPLACE
7152 /*
7153 * "gR": Enter virtual replace mode.
7154 */
7155 case 'R':
7156 cap->arg = TRUE;
7157 nv_Replace(cap);
7158 break;
7159
7160 case 'r':
7161 nv_vreplace(cap);
7162 break;
7163#endif
7164
7165 case '&':
7166 do_cmdline_cmd((char_u *)"%s//~/&");
7167 break;
7168
7169#ifdef FEAT_VISUAL
7170 /*
7171 * "gv": Reselect the previous Visual area. If Visual already active,
7172 * exchange previous and current Visual area.
7173 */
7174 case 'v':
7175 if (checkclearop(oap))
7176 break;
7177
7178 if ( curbuf->b_visual_start.lnum == 0
7179 || curbuf->b_visual_start.lnum > curbuf->b_ml.ml_line_count
7180 || curbuf->b_visual_end.lnum == 0)
7181 beep_flush();
7182 else
7183 {
7184 /* set w_cursor to the start of the Visual area, tpos to the end */
7185 if (VIsual_active)
7186 {
7187 i = VIsual_mode;
7188 VIsual_mode = curbuf->b_visual_mode;
7189 curbuf->b_visual_mode = i;
7190# ifdef FEAT_EVAL
7191 curbuf->b_visual_mode_eval = i;
7192# endif
7193 i = curwin->w_curswant;
7194 curwin->w_curswant = curbuf->b_visual_curswant;
7195 curbuf->b_visual_curswant = i;
7196
7197 tpos = curbuf->b_visual_end;
7198 curbuf->b_visual_end = curwin->w_cursor;
7199 curwin->w_cursor = curbuf->b_visual_start;
7200 curbuf->b_visual_start = VIsual;
7201 }
7202 else
7203 {
7204 VIsual_mode = curbuf->b_visual_mode;
7205 curwin->w_curswant = curbuf->b_visual_curswant;
7206 tpos = curbuf->b_visual_end;
7207 curwin->w_cursor = curbuf->b_visual_start;
7208 }
7209
7210 VIsual_active = TRUE;
7211 VIsual_reselect = TRUE;
7212
7213 /* Set Visual to the start and w_cursor to the end of the Visual
7214 * area. Make sure they are on an existing character. */
7215 check_cursor();
7216 VIsual = curwin->w_cursor;
7217 curwin->w_cursor = tpos;
7218 check_cursor();
7219 update_topline();
7220 /*
7221 * When called from normal "g" command: start Select mode when
7222 * 'selectmode' contains "cmd". When called for K_SELECT, always
7223 * start Select mode.
7224 */
7225 if (cap->arg)
7226 VIsual_select = TRUE;
7227 else
7228 may_start_select('c');
7229#ifdef FEAT_MOUSE
7230 setmouse();
7231#endif
7232#ifdef FEAT_CLIPBOARD
7233 /* Make sure the clipboard gets updated. Needed because start and
7234 * end are still the same, and the selection needs to be owned */
7235 clip_star.vmode = NUL;
7236#endif
7237 redraw_curbuf_later(INVERTED);
7238 showmode();
7239 }
7240 break;
7241 /*
7242 * "gV": Don't reselect the previous Visual area after a Select mode
7243 * mapping of menu.
7244 */
7245 case 'V':
7246 VIsual_reselect = FALSE;
7247 break;
7248
7249 /*
7250 * "gh": start Select mode.
7251 * "gH": start Select line mode.
7252 * "g^H": start Select block mode.
7253 */
7254 case K_BS:
7255 cap->nchar = Ctrl_H;
7256 /* FALLTHROUGH */
7257 case 'h':
7258 case 'H':
7259 case Ctrl_H:
7260# ifdef EBCDIC
7261 /* EBCDIC: 'v'-'h' != '^v'-'^h' */
7262 if (cap->nchar == Ctrl_H)
7263 cap->cmdchar = Ctrl_V;
7264 else
7265# endif
7266 cap->cmdchar = cap->nchar + ('v' - 'h');
7267 cap->arg = TRUE;
7268 nv_visual(cap);
7269 break;
7270#endif /* FEAT_VISUAL */
7271
7272 /*
7273 * "gj" and "gk" two new funny movement keys -- up and down
7274 * movement based on *screen* line rather than *file* line.
7275 */
7276 case 'j':
7277 case K_DOWN:
7278 /* with 'nowrap' it works just like the normal "j" command; also when
7279 * in a closed fold */
7280 if (!curwin->w_p_wrap
7281#ifdef FEAT_FOLDING
7282 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7283#endif
7284 )
7285 {
7286 oap->motion_type = MLINE;
7287 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
7288 }
7289 else
7290 i = nv_screengo(oap, FORWARD, cap->count1);
7291 if (i == FAIL)
7292 clearopbeep(oap);
7293 break;
7294
7295 case 'k':
7296 case K_UP:
7297 /* with 'nowrap' it works just like the normal "k" command; also when
7298 * in a closed fold */
7299 if (!curwin->w_p_wrap
7300#ifdef FEAT_FOLDING
7301 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7302#endif
7303 )
7304 {
7305 oap->motion_type = MLINE;
7306 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
7307 }
7308 else
7309 i = nv_screengo(oap, BACKWARD, cap->count1);
7310 if (i == FAIL)
7311 clearopbeep(oap);
7312 break;
7313
7314 /*
7315 * "gJ": join two lines without inserting a space.
7316 */
7317 case 'J':
7318 nv_join(cap);
7319 break;
7320
7321 /*
7322 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
7323 * "gm": middle of "g0" and "g$".
7324 */
7325 case '^':
7326 flag = TRUE;
7327 /* FALLTHROUGH */
7328
7329 case '0':
7330 case 'm':
7331 case K_HOME:
7332 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007333 oap->motion_type = MCHAR;
7334 oap->inclusive = FALSE;
7335 if (curwin->w_p_wrap
7336#ifdef FEAT_VERTSPLIT
7337 && curwin->w_width != 0
7338#endif
7339 )
7340 {
7341 int width1 = W_WIDTH(curwin) - curwin_col_off();
7342 int width2 = width1 + curwin_col_off2();
7343
7344 validate_virtcol();
7345 i = 0;
7346 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
7347 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
7348 }
7349 else
7350 i = curwin->w_leftcol;
7351 /* Go to the middle of the screen line. When 'number' is on and lines
7352 * are wrapping the middle can be more to the left.*/
7353 if (cap->nchar == 'm')
7354 i += (W_WIDTH(curwin) - curwin_col_off()
7355 + ((curwin->w_p_wrap && i > 0)
7356 ? curwin_col_off2() : 0)) / 2;
7357 coladvance((colnr_T)i);
7358 if (flag)
7359 {
7360 do
7361 i = gchar_cursor();
7362 while (vim_iswhite(i) && oneright() == OK);
7363 }
7364 curwin->w_set_curswant = TRUE;
7365 break;
7366
7367 case '_':
7368 /* "g_": to the last non-blank character in the line or <count> lines
7369 * downward. */
7370 cap->oap->motion_type = MCHAR;
7371 cap->oap->inclusive = TRUE;
7372 curwin->w_curswant = MAXCOL;
7373 if (cursor_down((long)(cap->count1 - 1),
7374 cap->oap->op_type == OP_NOP) == FAIL)
7375 clearopbeep(cap->oap);
7376 else
7377 {
7378 char_u *ptr = ml_get_curline();
7379
7380 /* In Visual mode we may end up after the line. */
7381 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
7382 --curwin->w_cursor.col;
7383
7384 /* Decrease the cursor column until it's on a non-blank. */
7385 while (curwin->w_cursor.col > 0
7386 && vim_iswhite(ptr[curwin->w_cursor.col]))
7387 --curwin->w_cursor.col;
7388 curwin->w_set_curswant = TRUE;
7389 }
7390 break;
7391
7392 case '$':
7393 case K_END:
7394 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007395 {
7396 int col_off = curwin_col_off();
7397
7398 oap->motion_type = MCHAR;
7399 oap->inclusive = TRUE;
7400 if (curwin->w_p_wrap
7401#ifdef FEAT_VERTSPLIT
7402 && curwin->w_width != 0
7403#endif
7404 )
7405 {
7406 curwin->w_curswant = MAXCOL; /* so we stay at the end */
7407 if (cap->count1 == 1)
7408 {
7409 int width1 = W_WIDTH(curwin) - col_off;
7410 int width2 = width1 + curwin_col_off2();
7411
7412 validate_virtcol();
7413 i = width1 - 1;
7414 if (curwin->w_virtcol >= (colnr_T)width1)
7415 i += ((curwin->w_virtcol - width1) / width2 + 1)
7416 * width2;
7417 coladvance((colnr_T)i);
7418#if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
7419 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
7420 {
7421 /*
7422 * Check for landing on a character that got split at
7423 * the end of the line. We do not want to advance to
7424 * the next screen line.
7425 */
7426 validate_virtcol();
7427 if (curwin->w_virtcol > (colnr_T)i)
7428 --curwin->w_cursor.col;
7429 }
7430#endif
7431 }
7432 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
7433 clearopbeep(oap);
7434 }
7435 else
7436 {
7437 i = curwin->w_leftcol + W_WIDTH(curwin) - col_off - 1;
7438 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007439
7440 /* Make sure we stick in this column. */
7441 validate_virtcol();
7442 curwin->w_curswant = curwin->w_virtcol;
7443 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007444 }
7445 }
7446 break;
7447
7448 /*
7449 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
7450 */
7451 case '*':
7452 case '#':
7453#if POUND != '#'
7454 case POUND: /* pound sign (sometimes equal to '#') */
7455#endif
7456 case Ctrl_RSB: /* :tag or :tselect for current identifier */
7457 case ']': /* :tselect for current identifier */
7458 nv_ident(cap);
7459 break;
7460
7461 /*
7462 * ge and gE: go back to end of word
7463 */
7464 case 'e':
7465 case 'E':
7466 oap->motion_type = MCHAR;
7467 curwin->w_set_curswant = TRUE;
7468 oap->inclusive = TRUE;
7469 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
7470 clearopbeep(oap);
7471 break;
7472
7473 /*
7474 * "g CTRL-G": display info about cursor position
7475 */
7476 case Ctrl_G:
7477 cursor_pos_info();
7478 break;
7479
7480 /*
7481 * "gi": start Insert at the last position.
7482 */
7483 case 'i':
7484 if (curbuf->b_last_insert.lnum != 0)
7485 {
7486 curwin->w_cursor = curbuf->b_last_insert;
7487 check_cursor_lnum();
7488 i = (int)STRLEN(ml_get_curline());
7489 if (curwin->w_cursor.col > (colnr_T)i)
7490 {
7491#ifdef FEAT_VIRTUALEDIT
7492 if (virtual_active())
7493 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
7494#endif
7495 curwin->w_cursor.col = i;
7496 }
7497 }
7498 cap->cmdchar = 'i';
7499 nv_edit(cap);
7500 break;
7501
7502 /*
7503 * "gI": Start insert in column 1.
7504 */
7505 case 'I':
7506 beginline(0);
7507 if (!checkclearopq(oap))
7508 invoke_edit(cap, FALSE, 'g', FALSE);
7509 break;
7510
7511#ifdef FEAT_SEARCHPATH
7512 /*
7513 * "gf": goto file, edit file under cursor
7514 * "]f" and "[f": can also be used.
7515 */
7516 case 'f':
7517 nv_gotofile(cap);
7518 break;
7519#endif
7520
7521 /* "g'm" and "g`m": jump to mark without setting pcmark */
7522 case '\'':
7523 cap->arg = TRUE;
7524 /*FALLTHROUGH*/
7525 case '`':
7526 nv_gomark(cap);
7527 break;
7528
7529 /*
7530 * "gs": Goto sleep.
7531 */
7532 case 's':
7533 do_sleep(cap->count1 * 1000L);
7534 break;
7535
7536 /*
7537 * "ga": Display the ascii value of the character under the
7538 * cursor. It is displayed in decimal, hex, and octal. -- webb
7539 */
7540 case 'a':
7541 do_ascii(NULL);
7542 break;
7543
7544#ifdef FEAT_MBYTE
7545 /*
7546 * "g8": Display the bytes used for the UTF-8 character under the
7547 * cursor. It is displayed in hex.
7548 */
7549 case '8':
7550 show_utf8();
7551 break;
7552#endif
7553
7554 /*
7555 * "gg": Goto the first line in file. With a count it goes to
7556 * that line number like for "G". -- webb
7557 */
7558 case 'g':
7559 cap->arg = FALSE;
7560 nv_goto(cap);
7561 break;
7562
7563 /*
7564 * Two-character operators:
7565 * "gq" Format text
7566 * "gw" Format text and keep cursor position
7567 * "g~" Toggle the case of the text.
7568 * "gu" Change text to lower case.
7569 * "gU" Change text to upper case.
7570 * "g?" rot13 encoding
7571 */
7572 case 'q':
7573 case 'w':
7574 oap->cursor_start = curwin->w_cursor;
7575 /*FALLTHROUGH*/
7576 case '~':
7577 case 'u':
7578 case 'U':
7579 case '?':
7580 nv_operator(cap);
7581 break;
7582
7583 /*
7584 * "gd": Find first occurence of pattern under the cursor in the
7585 * current function
7586 * "gD": idem, but in the current file.
7587 */
7588 case 'd':
7589 case 'D':
7590 nv_gd(oap, cap->nchar);
7591 break;
7592
7593#ifdef FEAT_MOUSE
7594 /*
7595 * g<*Mouse> : <C-*mouse>
7596 */
7597 case K_MIDDLEMOUSE:
7598 case K_MIDDLEDRAG:
7599 case K_MIDDLERELEASE:
7600 case K_LEFTMOUSE:
7601 case K_LEFTDRAG:
7602 case K_LEFTRELEASE:
7603 case K_RIGHTMOUSE:
7604 case K_RIGHTDRAG:
7605 case K_RIGHTRELEASE:
7606 case K_X1MOUSE:
7607 case K_X1DRAG:
7608 case K_X1RELEASE:
7609 case K_X2MOUSE:
7610 case K_X2DRAG:
7611 case K_X2RELEASE:
7612 mod_mask = MOD_MASK_CTRL;
7613 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
7614 break;
7615#endif
7616
7617 case K_IGNORE:
7618 break;
7619
7620 /*
7621 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
7622 */
7623 case 'p':
7624 case 'P':
7625 nv_put(cap);
7626 break;
7627
7628#ifdef FEAT_BYTEOFF
7629 /* "go": goto byte count from start of buffer */
7630 case 'o':
7631 goto_byte(cap->count0);
7632 break;
7633#endif
7634
7635 /* "gQ": improved Ex mode */
7636 case 'Q':
7637#ifdef FEAT_CMDWIN
7638 if (cmdwin_type != 0)
7639 {
7640 clearopbeep(cap->oap);
7641 break;
7642 }
7643#endif
7644 if (!checkclearopq(oap))
7645 do_exmode(TRUE);
7646 break;
7647
7648#ifdef FEAT_JUMPLIST
7649 case ',':
7650 nv_pcmark(cap);
7651 break;
7652
7653 case ';':
7654 cap->count1 = -cap->count1;
7655 nv_pcmark(cap);
7656 break;
7657#endif
7658
7659 default:
7660 clearopbeep(oap);
7661 break;
7662 }
7663}
7664
7665/*
7666 * Handle "o" and "O" commands.
7667 */
7668 static void
7669n_opencmd(cap)
7670 cmdarg_T *cap;
7671{
7672 if (!checkclearopq(cap->oap))
7673 {
7674#ifdef FEAT_FOLDING
7675 if (cap->cmdchar == 'O')
7676 /* Open above the first line of a folded sequence of lines */
7677 (void)hasFolding(curwin->w_cursor.lnum,
7678 &curwin->w_cursor.lnum, NULL);
7679 else
7680 /* Open below the last line of a folded sequence of lines */
7681 (void)hasFolding(curwin->w_cursor.lnum,
7682 NULL, &curwin->w_cursor.lnum);
7683#endif
7684 if (u_save((linenr_T)(curwin->w_cursor.lnum -
7685 (cap->cmdchar == 'O' ? 1 : 0)),
7686 (linenr_T)(curwin->w_cursor.lnum +
7687 (cap->cmdchar == 'o' ? 1 : 0))
7688 ) == OK
7689 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
7690#ifdef FEAT_COMMENTS
7691 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM :
7692#endif
7693 0, 0))
7694 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007695 /* When '#' is in 'cpoptions' ignore the count. */
7696 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
7697 cap->count1 = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007698 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
7699 }
7700 }
7701}
7702
7703/*
7704 * "." command: redo last change.
7705 */
7706 static void
7707nv_dot(cap)
7708 cmdarg_T *cap;
7709{
7710 if (!checkclearopq(cap->oap))
7711 {
7712 /*
7713 * If "restart_edit" is TRUE, the last but one command is repeated
7714 * instead of the last command (inserting text). This is used for
7715 * CTRL-O <.> in insert mode.
7716 */
7717 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
7718 clearopbeep(cap->oap);
7719 }
7720}
7721
7722/*
7723 * CTRL-R: undo undo
7724 */
7725 static void
7726nv_redo(cap)
7727 cmdarg_T *cap;
7728{
7729 if (!checkclearopq(cap->oap))
7730 {
7731 u_redo((int)cap->count1);
7732 curwin->w_set_curswant = TRUE;
7733 }
7734}
7735
7736/*
7737 * Handle "U" command.
7738 */
7739 static void
7740nv_Undo(cap)
7741 cmdarg_T *cap;
7742{
7743 /* In Visual mode and typing "gUU" triggers an operator */
7744 if (cap->oap->op_type == OP_UPPER
7745#ifdef FEAT_VISUAL
7746 || VIsual_active
7747#endif
7748 )
7749 {
7750 /* translate "gUU" to "gUgU" */
7751 cap->cmdchar = 'g';
7752 cap->nchar = 'U';
7753 nv_operator(cap);
7754 }
7755 else if (!checkclearopq(cap->oap))
7756 {
7757 u_undoline();
7758 curwin->w_set_curswant = TRUE;
7759 }
7760}
7761
7762/*
7763 * '~' command: If tilde is not an operator and Visual is off: swap case of a
7764 * single character.
7765 */
7766 static void
7767nv_tilde(cap)
7768 cmdarg_T *cap;
7769{
7770 if (!p_to
7771#ifdef FEAT_VISUAL
7772 && !VIsual_active
7773#endif
7774 && cap->oap->op_type != OP_TILDE)
7775 n_swapchar(cap);
7776 else
7777 nv_operator(cap);
7778}
7779
7780/*
7781 * Handle an operator command.
7782 * The actual work is done by do_pending_operator().
7783 */
7784 static void
7785nv_operator(cap)
7786 cmdarg_T *cap;
7787{
7788 int op_type;
7789
7790 op_type = get_op_type(cap->cmdchar, cap->nchar);
7791
7792 if (op_type == cap->oap->op_type) /* double operator works on lines */
7793 nv_lineop(cap);
7794 else if (!checkclearop(cap->oap))
7795 {
7796 cap->oap->start = curwin->w_cursor;
7797 cap->oap->op_type = op_type;
7798 }
7799}
7800
7801/*
7802 * Handle linewise operator "dd", "yy", etc.
7803 *
7804 * "_" is is a strange motion command that helps make operators more logical.
7805 * It is actually implemented, but not documented in the real Vi. This motion
7806 * command actually refers to "the current line". Commands like "dd" and "yy"
7807 * are really an alternate form of "d_" and "y_". It does accept a count, so
7808 * "d3_" works to delete 3 lines.
7809 */
7810 static void
7811nv_lineop(cap)
7812 cmdarg_T *cap;
7813{
7814 cap->oap->motion_type = MLINE;
7815 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
7816 clearopbeep(cap->oap);
7817 else if ( cap->oap->op_type == OP_DELETE
7818 || cap->oap->op_type == OP_LSHIFT
7819 || cap->oap->op_type == OP_RSHIFT)
7820 beginline(BL_SOL | BL_FIX);
7821 else if (cap->oap->op_type != OP_YANK) /* 'Y' does not move cursor */
7822 beginline(BL_WHITE | BL_FIX);
7823}
7824
7825/*
7826 * <Home> command.
7827 */
7828 static void
7829nv_home(cap)
7830 cmdarg_T *cap;
7831{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00007832 /* CTRL-HOME is like "gg" */
7833 if (mod_mask & MOD_MASK_CTRL)
7834 nv_goto(cap);
7835 else
7836 {
7837 cap->count0 = 1;
7838 nv_pipe(cap);
7839 }
Bram Moolenaara88d9682005-03-25 21:45:43 +00007840 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
7841 one-character line). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007842}
7843
7844/*
7845 * "|" command.
7846 */
7847 static void
7848nv_pipe(cap)
7849 cmdarg_T *cap;
7850{
7851 cap->oap->motion_type = MCHAR;
7852 cap->oap->inclusive = FALSE;
7853 beginline(0);
7854 if (cap->count0 > 0)
7855 {
7856 coladvance((colnr_T)(cap->count0 - 1));
7857 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
7858 }
7859 else
7860 curwin->w_curswant = 0;
7861 /* keep curswant at the column where we wanted to go, not where
7862 we ended; differs if line is too short */
7863 curwin->w_set_curswant = FALSE;
7864}
7865
7866/*
7867 * Handle back-word command "b" and "B".
7868 * cap->arg is 1 for "B"
7869 */
7870 static void
7871nv_bck_word(cap)
7872 cmdarg_T *cap;
7873{
7874 cap->oap->motion_type = MCHAR;
7875 cap->oap->inclusive = FALSE;
7876 curwin->w_set_curswant = TRUE;
7877 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
7878 clearopbeep(cap->oap);
7879#ifdef FEAT_FOLDING
7880 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
7881 foldOpenCursor();
7882#endif
7883}
7884
7885/*
7886 * Handle word motion commands "e", "E", "w" and "W".
7887 * cap->arg is TRUE for "E" and "W".
7888 */
7889 static void
7890nv_wordcmd(cap)
7891 cmdarg_T *cap;
7892{
7893 int n;
7894 int word_end;
7895 int flag = FALSE;
7896
7897 /*
7898 * Set inclusive for the "E" and "e" command.
7899 */
7900 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
7901 word_end = TRUE;
7902 else
7903 word_end = FALSE;
7904 cap->oap->inclusive = word_end;
7905
7906 /*
7907 * "cw" and "cW" are a special case.
7908 */
7909 if (!word_end && cap->oap->op_type == OP_CHANGE)
7910 {
7911 n = gchar_cursor();
7912 if (n != NUL) /* not an empty line */
7913 {
7914 if (vim_iswhite(n))
7915 {
7916 /*
7917 * Reproduce a funny Vi behaviour: "cw" on a blank only
7918 * changes one character, not all blanks until the start of
7919 * the next word. Only do this when the 'w' flag is included
7920 * in 'cpoptions'.
7921 */
7922 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
7923 {
7924 cap->oap->inclusive = TRUE;
7925 cap->oap->motion_type = MCHAR;
7926 return;
7927 }
7928 }
7929 else
7930 {
7931 /*
7932 * This is a little strange. To match what the real Vi does,
7933 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
7934 * that we are not on a space or a TAB. This seems impolite
7935 * at first, but it's really more what we mean when we say
7936 * 'cw'.
7937 * Another strangeness: When standing on the end of a word
7938 * "ce" will change until the end of the next wordt, but "cw"
7939 * will change only one character! This is done by setting
7940 * flag.
7941 */
7942 cap->oap->inclusive = TRUE;
7943 word_end = TRUE;
7944 flag = TRUE;
7945 }
7946 }
7947 }
7948
7949 cap->oap->motion_type = MCHAR;
7950 curwin->w_set_curswant = TRUE;
7951 if (word_end)
7952 n = end_word(cap->count1, cap->arg, flag, FALSE);
7953 else
7954 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
7955
7956 /* Don't leave the cursor on the NUL past a line */
7957 if (curwin->w_cursor.col && gchar_cursor() == NUL)
7958 {
7959 --curwin->w_cursor.col;
7960 cap->oap->inclusive = TRUE;
7961 }
7962
7963 if (n == FAIL && cap->oap->op_type == OP_NOP)
7964 clearopbeep(cap->oap);
7965 else
7966 {
7967#ifdef FEAT_VISUAL
7968 adjust_for_sel(cap);
7969#endif
7970#ifdef FEAT_FOLDING
7971 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
7972 foldOpenCursor();
7973#endif
7974 }
7975}
7976
7977/*
7978 * "0" and "^" commands.
7979 * cap->arg is the argument for beginline().
7980 */
7981 static void
7982nv_beginline(cap)
7983 cmdarg_T *cap;
7984{
7985 cap->oap->motion_type = MCHAR;
7986 cap->oap->inclusive = FALSE;
7987 beginline(cap->arg);
7988#ifdef FEAT_FOLDING
7989 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
7990 foldOpenCursor();
7991#endif
7992}
7993
7994#ifdef FEAT_VISUAL
7995/*
7996 * In exclusive Visual mode, may include the last character.
7997 */
7998 static void
7999adjust_for_sel(cap)
8000 cmdarg_T *cap;
8001{
8002 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
8003 && gchar_cursor() != NUL && lt(VIsual, curwin->w_cursor))
8004 {
8005# ifdef FEAT_MBYTE
8006 if (has_mbyte)
8007 inc_cursor();
8008 else
8009# endif
8010 ++curwin->w_cursor.col;
8011 cap->oap->inclusive = FALSE;
8012 }
8013}
8014
8015/*
8016 * Exclude last character at end of Visual area for 'selection' == "exclusive".
8017 * Should check VIsual_mode before calling this.
8018 * Returns TRUE when backed up to the previous line.
8019 */
8020 static int
8021unadjust_for_sel()
8022{
8023 pos_T *pp;
8024
8025 if (*p_sel == 'e' && !equalpos(VIsual, curwin->w_cursor))
8026 {
8027 if (lt(VIsual, curwin->w_cursor))
8028 pp = &curwin->w_cursor;
8029 else
8030 pp = &VIsual;
8031#ifdef FEAT_VIRTUALEDIT
8032 if (pp->coladd > 0)
8033 --pp->coladd;
8034 else
8035#endif
8036 if (pp->col > 0)
8037 {
8038 --pp->col;
8039#ifdef FEAT_MBYTE
8040 mb_adjustpos(pp);
8041#endif
8042 }
8043 else if (pp->lnum > 1)
8044 {
8045 --pp->lnum;
8046 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
8047 return TRUE;
8048 }
8049 }
8050 return FALSE;
8051}
8052
8053/*
8054 * SELECT key in Normal or Visual mode: end of Select mode mapping.
8055 */
8056 static void
8057nv_select(cap)
8058 cmdarg_T *cap;
8059{
8060 if (VIsual_active)
8061 VIsual_select = TRUE;
8062 else if (VIsual_reselect)
8063 {
8064 cap->nchar = 'v'; /* fake "gv" command */
8065 cap->arg = TRUE;
8066 nv_g_cmd(cap);
8067 }
8068}
8069
8070#endif
8071
8072/*
8073 * "G", "gg", CTRL-END, CTRL-HOME.
8074 * cap->arg is TRUE for "G".
8075 */
8076 static void
8077nv_goto(cap)
8078 cmdarg_T *cap;
8079{
8080 linenr_T lnum;
8081
8082 if (cap->arg)
8083 lnum = curbuf->b_ml.ml_line_count;
8084 else
8085 lnum = 1L;
8086 cap->oap->motion_type = MLINE;
8087 setpcmark();
8088
8089 /* When a count is given, use it instead of the default lnum */
8090 if (cap->count0 != 0)
8091 lnum = cap->count0;
8092 if (lnum < 1L)
8093 lnum = 1L;
8094 else if (lnum > curbuf->b_ml.ml_line_count)
8095 lnum = curbuf->b_ml.ml_line_count;
8096 curwin->w_cursor.lnum = lnum;
8097 beginline(BL_SOL | BL_FIX);
8098#ifdef FEAT_FOLDING
8099 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
8100 foldOpenCursor();
8101#endif
8102}
8103
8104/*
8105 * CTRL-\ in Normal mode.
8106 */
8107 static void
8108nv_normal(cap)
8109 cmdarg_T *cap;
8110{
8111 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
8112 {
8113 clearop(cap->oap);
8114 if (restart_edit != 0 && p_smd)
8115 clear_cmdline = TRUE; /* unshow mode later */
8116 restart_edit = 0;
8117#ifdef FEAT_CMDWIN
8118 if (cmdwin_type != 0)
8119 cmdwin_result = Ctrl_C;
8120#endif
8121#ifdef FEAT_VISUAL
8122 if (VIsual_active)
8123 {
8124 end_visual_mode(); /* stop Visual */
8125 redraw_curbuf_later(INVERTED);
8126 }
8127#endif
8128 /* CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. */
8129 if (cap->nchar == Ctrl_G && p_im)
8130 restart_edit = 'a';
8131 }
8132 else
8133 clearopbeep(cap->oap);
8134}
8135
8136/*
8137 * ESC in Normal mode: beep, but don't flush buffers.
8138 * Don't even beep if we are canceling a command.
8139 */
8140 static void
8141nv_esc(cap)
8142 cmdarg_T *cap;
8143{
8144 int no_reason;
8145
8146 no_reason = (cap->oap->op_type == OP_NOP
8147 && cap->opcount == 0
8148 && cap->count0 == 0
8149 && cap->oap->regname == 0
8150 && !p_im);
8151
8152 if (cap->arg) /* TRUE for CTRL-C */
8153 {
8154 if (restart_edit == 0
8155#ifdef FEAT_CMDWIN
8156 && cmdwin_type == 0
8157#endif
8158#ifdef FEAT_VISUAL
8159 && !VIsual_active
8160#endif
8161 && no_reason)
8162 MSG(_("Type :quit<Enter> to exit Vim"));
8163
8164 /* Don't reset "restart_edit" when 'insertmode' is set, it won't be
8165 * set again below when halfway a mapping. */
8166 if (!p_im)
8167 restart_edit = 0;
8168#ifdef FEAT_CMDWIN
8169 if (cmdwin_type != 0)
8170 {
8171 cmdwin_result = K_IGNORE;
8172 got_int = FALSE; /* don't stop executing autocommands et al. */
8173 return;
8174 }
8175#endif
8176 }
8177
8178#ifdef FEAT_VISUAL
8179 if (VIsual_active)
8180 {
8181 end_visual_mode(); /* stop Visual */
8182 check_cursor_col(); /* make sure cursor is not beyond EOL */
8183 curwin->w_set_curswant = TRUE;
8184 redraw_curbuf_later(INVERTED);
8185 }
8186 else
8187#endif
8188 if (no_reason)
8189 vim_beep();
8190 clearop(cap->oap);
8191
8192 /* A CTRL-C is often used at the start of a menu. When 'insertmode' is
8193 * set return to Insert mode afterwards. */
8194 if (restart_edit == 0 && goto_im()
8195#ifdef FEAT_EX_EXTRA
8196 && ex_normal_busy == 0
8197#endif
8198 )
8199 restart_edit = 'a';
8200}
8201
8202/*
8203 * Handle "A", "a", "I", "i" and <Insert> commands.
8204 */
8205 static void
8206nv_edit(cap)
8207 cmdarg_T *cap;
8208{
8209 /* <Insert> is equal to "i" */
8210 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
8211 cap->cmdchar = 'i';
8212
8213#ifdef FEAT_VISUAL
8214 /* in Visual mode "A" and "I" are an operator */
8215 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
8216 v_visop(cap);
8217
8218 /* in Visual mode and after an operator "a" and "i" are for text objects */
8219 else
8220#endif
8221 if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
8222 && (cap->oap->op_type != OP_NOP
8223#ifdef FEAT_VISUAL
8224 || VIsual_active
8225#endif
8226 ))
8227 {
8228#ifdef FEAT_TEXTOBJ
8229 nv_object(cap);
8230#else
8231 clearopbeep(cap->oap);
8232#endif
8233 }
8234 else if (!curbuf->b_p_ma && !p_im)
8235 {
8236 /* Only give this error when 'insertmode' is off. */
8237 EMSG(_(e_modifiable));
8238 clearop(cap->oap);
8239 }
8240 else if (!checkclearopq(cap->oap))
8241 {
8242 switch (cap->cmdchar)
8243 {
8244 case 'A': /* "A"ppend after the line */
8245 curwin->w_set_curswant = TRUE;
8246#ifdef FEAT_VIRTUALEDIT
8247 if (ve_flags == VE_ALL)
8248 {
8249 int save_State = State;
8250
8251 /* Pretent Insert mode here to allow the cursor on the
8252 * character past the end of the line */
8253 State = INSERT;
8254 coladvance((colnr_T)MAXCOL);
8255 State = save_State;
8256 }
8257 else
8258#endif
8259 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
8260 break;
8261
8262 case 'I': /* "I"nsert before the first non-blank */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00008263 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
8264 beginline(BL_WHITE);
8265 else
8266 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008267 break;
8268
8269 case 'a': /* "a"ppend is like "i"nsert on the next character. */
8270#ifdef FEAT_VIRTUALEDIT
8271 /* increment coladd when in virtual space, increment the
8272 * column otherwise, also to append after an unprintable char */
8273 if (virtual_active()
8274 && (curwin->w_cursor.coladd > 0
8275 || *ml_get_cursor() == NUL
8276 || *ml_get_cursor() == TAB))
8277 curwin->w_cursor.coladd++;
8278 else
8279#endif
8280 if (*ml_get_cursor() != NUL)
8281 inc_cursor();
8282 break;
8283 }
8284
8285#ifdef FEAT_VIRTUALEDIT
8286 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
8287 {
8288 int save_State = State;
8289
8290 /* Pretent Insert mode here to allow the cursor on the
8291 * character past the end of the line */
8292 State = INSERT;
8293 coladvance(getviscol());
8294 State = save_State;
8295 }
8296#endif
8297
8298 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
8299 }
8300}
8301
8302/*
8303 * Invoke edit() and take care of "restart_edit" and the return value.
8304 */
8305 static void
8306invoke_edit(cap, repl, cmd, startln)
8307 cmdarg_T *cap;
8308 int repl; /* "r" or "gr" command */
8309 int cmd;
8310 int startln;
8311{
8312 int restart_edit_save = 0;
8313
8314 /* Complicated: When the user types "a<C-O>a" we don't want to do Insert
8315 * mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
8316 * it. */
8317 if (repl || !stuff_empty())
8318 restart_edit_save = restart_edit;
8319 else
8320 restart_edit_save = 0;
8321
8322 /* Always reset "restart_edit", this is not a restarted edit. */
8323 restart_edit = 0;
8324
8325 if (edit(cmd, startln, cap->count1))
8326 cap->retval |= CA_COMMAND_BUSY;
8327
8328 if (restart_edit == 0)
8329 restart_edit = restart_edit_save;
8330}
8331
8332#ifdef FEAT_TEXTOBJ
8333/*
8334 * "a" or "i" while an operator is pending or in Visual mode: object motion.
8335 */
8336 static void
8337nv_object(cap)
8338 cmdarg_T *cap;
8339{
8340 int flag;
8341 int include;
8342 char_u *mps_save;
8343
8344 if (cap->cmdchar == 'i')
8345 include = FALSE; /* "ix" = inner object: exclude white space */
8346 else
8347 include = TRUE; /* "ax" = an object: include white space */
8348
8349 /* Make sure (), [], {} and <> are in 'matchpairs' */
8350 mps_save = curbuf->b_p_mps;
8351 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
8352
8353 switch (cap->nchar)
8354 {
8355 case 'w': /* "aw" = a word */
8356 flag = current_word(cap->oap, cap->count1, include, FALSE);
8357 break;
8358 case 'W': /* "aW" = a WORD */
8359 flag = current_word(cap->oap, cap->count1, include, TRUE);
8360 break;
8361 case 'b': /* "ab" = a braces block */
8362 case '(':
8363 case ')':
8364 flag = current_block(cap->oap, cap->count1, include, '(', ')');
8365 break;
8366 case 'B': /* "aB" = a Brackets block */
8367 case '{':
8368 case '}':
8369 flag = current_block(cap->oap, cap->count1, include, '{', '}');
8370 break;
8371 case '[': /* "a[" = a [] block */
8372 case ']':
8373 flag = current_block(cap->oap, cap->count1, include, '[', ']');
8374 break;
8375 case '<': /* "a<" = a <> block */
8376 case '>':
8377 flag = current_block(cap->oap, cap->count1, include, '<', '>');
8378 break;
8379 case 'p': /* "ap" = a paragraph */
8380 flag = current_par(cap->oap, cap->count1, include, 'p');
8381 break;
8382 case 's': /* "as" = a sentence */
8383 flag = current_sent(cap->oap, cap->count1, include);
8384 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00008385 case '"': /* "a"" = a double quoted string */
8386 case '\'': /* "a'" = a single quoted string */
8387 case '`': /* "a`" = a backtick quoted string */
8388 flag = current_quote(cap->oap, cap->count1, include,
8389 cap->nchar);
8390 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008391#if 0 /* TODO */
8392 case 'S': /* "aS" = a section */
8393 case 'f': /* "af" = a filename */
8394 case 'u': /* "au" = a URL */
8395#endif
8396 default:
8397 flag = FAIL;
8398 break;
8399 }
8400
8401 curbuf->b_p_mps = mps_save;
8402 if (flag == FAIL)
8403 clearopbeep(cap->oap);
8404 adjust_cursor_col();
8405 curwin->w_set_curswant = TRUE;
8406}
8407#endif
8408
8409/*
8410 * "q" command: Start/stop recording.
8411 * "q:", "q/", "q?": edit command-line in command-line window.
8412 */
8413 static void
8414nv_record(cap)
8415 cmdarg_T *cap;
8416{
8417 if (cap->oap->op_type == OP_FORMAT)
8418 {
8419 /* "gqq" is the same as "gqgq": format line */
8420 cap->cmdchar = 'g';
8421 cap->nchar = 'q';
8422 nv_operator(cap);
8423 }
8424 else if (!checkclearop(cap->oap))
8425 {
8426#ifdef FEAT_CMDWIN
8427 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
8428 {
8429 stuffcharReadbuff(cap->nchar);
8430 stuffcharReadbuff(K_CMDWIN);
8431 }
8432 else
8433#endif
8434 /* (stop) recording into a named register, unless executing a
8435 * register */
8436 if (!Exec_reg && do_record(cap->nchar) == FAIL)
8437 clearopbeep(cap->oap);
8438 }
8439}
8440
8441/*
8442 * Handle the "@r" command.
8443 */
8444 static void
8445nv_at(cap)
8446 cmdarg_T *cap;
8447{
8448 if (checkclearop(cap->oap))
8449 return;
8450#ifdef FEAT_EVAL
8451 if (cap->nchar == '=')
8452 {
8453 if (get_expr_register() == NUL)
8454 return;
8455 }
8456#endif
8457 while (cap->count1-- && !got_int)
8458 {
8459 if (do_execreg(cap->nchar, FALSE, FALSE) == FAIL)
8460 {
8461 clearopbeep(cap->oap);
8462 break;
8463 }
8464 line_breakcheck();
8465 }
8466}
8467
8468/*
8469 * Handle the CTRL-U and CTRL-D commands.
8470 */
8471 static void
8472nv_halfpage(cap)
8473 cmdarg_T *cap;
8474{
8475 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
8476 || (cap->cmdchar == Ctrl_D
8477 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
8478 clearopbeep(cap->oap);
8479 else if (!checkclearop(cap->oap))
8480 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
8481}
8482
8483/*
8484 * Handle "J" or "gJ" command.
8485 */
8486 static void
8487nv_join(cap)
8488 cmdarg_T *cap;
8489{
8490#ifdef FEAT_VISUAL
8491 if (VIsual_active) /* join the visual lines */
8492 nv_operator(cap);
8493 else
8494#endif
8495 if (!checkclearop(cap->oap))
8496 {
8497 if (cap->count0 <= 1)
8498 cap->count0 = 2; /* default for join is two lines! */
8499 if (curwin->w_cursor.lnum + cap->count0 - 1 >
8500 curbuf->b_ml.ml_line_count)
8501 clearopbeep(cap->oap); /* beyond last line */
8502 else
8503 {
8504 prep_redo(cap->oap->regname, cap->count0,
8505 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
8506 do_do_join(cap->count0, cap->nchar == NUL);
8507 }
8508 }
8509}
8510
8511/*
8512 * "P", "gP", "p" and "gp" commands.
8513 */
8514 static void
8515nv_put(cap)
8516 cmdarg_T *cap;
8517{
8518#ifdef FEAT_VISUAL
8519 int regname = 0;
8520 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00008521 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008522 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008523#endif
8524 int dir;
8525 int flags = 0;
8526
8527 if (cap->oap->op_type != OP_NOP)
8528 {
8529#ifdef FEAT_DIFF
8530 /* "dp" is ":diffput" */
8531 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
8532 {
8533 clearop(cap->oap);
8534 nv_diffgetput(TRUE);
8535 }
8536 else
8537#endif
8538 clearopbeep(cap->oap);
8539 }
8540 else
8541 {
8542 dir = (cap->cmdchar == 'P'
8543 || (cap->cmdchar == 'g' && cap->nchar == 'P'))
8544 ? BACKWARD : FORWARD;
8545 prep_redo_cmd(cap);
8546 if (cap->cmdchar == 'g')
8547 flags |= PUT_CURSEND;
8548
8549#ifdef FEAT_VISUAL
8550 if (VIsual_active)
8551 {
8552 /* Putting in Visual mode: The put text replaces the selected
8553 * text. First delete the selected text, then put the new text.
8554 * Need to save and restore the registers that the delete
8555 * overwrites if the old contents is being put.
8556 */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008557 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008558 regname = cap->oap->regname;
8559# ifdef FEAT_CLIPBOARD
8560 adjust_clip_reg(&regname);
8561# endif
8562 if (regname == 0 || VIM_ISDIGIT(regname)
8563# ifdef FEAT_CLIPBOARD
8564 || (clip_unnamed && (regname == '*' || regname == '+'))
8565# endif
8566
8567 )
8568 {
8569 /* the delete is going to overwrite the register we want to
8570 * put, save it first. */
8571 reg1 = get_register(regname, TRUE);
8572 }
8573
8574 /* Now delete the selected text. */
8575 cap->cmdchar = 'd';
8576 cap->nchar = NUL;
8577 cap->oap->regname = NUL;
8578 nv_operator(cap);
8579 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00008580 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008581
8582 /* delete PUT_LINE_BACKWARD; */
8583 cap->oap->regname = regname;
8584
8585 if (reg1 != NULL)
8586 {
8587 /* Delete probably changed the register we want to put, save
8588 * it first. Then put back what was there before the delete. */
8589 reg2 = get_register(regname, FALSE);
8590 put_register(regname, reg1);
8591 }
8592
8593 /* When deleted a linewise Visual area, put the register as
8594 * lines to avoid it joined with the next line. When deletion was
8595 * characterwise, split a line when putting lines. */
8596 if (VIsual_mode == 'V')
8597 flags |= PUT_LINE;
8598 else if (VIsual_mode == 'v')
8599 flags |= PUT_LINE_SPLIT;
8600 if (VIsual_mode == Ctrl_V && dir == FORWARD)
8601 flags |= PUT_LINE_FORWARD;
8602 dir = BACKWARD;
8603 if ((VIsual_mode != 'V'
8604 && curwin->w_cursor.col < curbuf->b_op_start.col)
8605 || (VIsual_mode == 'V'
8606 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
8607 /* cursor is at the end of the line or end of file, put
8608 * forward. */
8609 dir = FORWARD;
8610 }
8611#endif
8612 do_put(cap->oap->regname, dir, cap->count1, flags);
8613
8614#ifdef FEAT_VISUAL
8615 /* If a register was saved, put it back now. */
8616 if (reg2 != NULL)
8617 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008618
8619 /* What to reselect with "gv"? Selecting the just put text seems to
8620 * be the most useful, since the original text was removed. */
8621 if (was_visual)
8622 {
8623 curbuf->b_visual_start = curbuf->b_op_start;
8624 curbuf->b_visual_end = curbuf->b_op_end;
8625 }
8626
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00008627 /* When all lines were selected and deleted do_put() leaves an empty
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008628 * line that needs to be deleted now. */
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00008629 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
8630 ml_delete(curbuf->b_ml.ml_line_count, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008631#endif
8632 auto_format(FALSE, TRUE);
8633 }
8634}
8635
8636/*
8637 * "o" and "O" commands.
8638 */
8639 static void
8640nv_open(cap)
8641 cmdarg_T *cap;
8642{
8643#ifdef FEAT_DIFF
8644 /* "do" is ":diffget" */
8645 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
8646 {
8647 clearop(cap->oap);
8648 nv_diffgetput(FALSE);
8649 }
8650 else
8651#endif
8652#ifdef FEAT_VISUAL
8653 if (VIsual_active) /* switch start and end of visual */
8654 v_swap_corners(cap->cmdchar);
8655 else
8656#endif
8657 n_opencmd(cap);
8658}
8659
8660#ifdef FEAT_SNIFF
8661/*ARGSUSED*/
8662 static void
8663nv_sniff(cap)
8664 cmdarg_T *cap;
8665{
8666 ProcessSniffRequests();
8667}
8668#endif
8669
8670#ifdef FEAT_NETBEANS_INTG
8671 static void
8672nv_nbcmd(cap)
8673 cmdarg_T *cap;
8674{
8675 netbeans_keycommand(cap->nchar);
8676}
8677#endif
8678
8679#ifdef FEAT_DND
8680/*ARGSUSED*/
8681 static void
8682nv_drop(cap)
8683 cmdarg_T *cap;
8684{
8685 do_put('~', BACKWARD, 1L, PUT_CURSEND);
8686}
8687#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00008688
8689#ifdef FEAT_AUTOCMD
8690/*
8691 * Trigger CursorHold event.
8692 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
8693 * input buffer. "did_cursorhold" is set to avoid retriggering.
8694 */
8695/*ARGSUSED*/
8696 static void
8697nv_cursorhold(cap)
8698 cmdarg_T *cap;
8699{
8700 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
8701 did_cursorhold = TRUE;
Bram Moolenaarfc735152005-03-22 22:54:12 +00008702 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar3918c952005-03-15 22:34:55 +00008703}
8704#endif
8705