blob: 98ff6965ec13d4689dfdad043202cbe1fd3bed1a [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;
Bram Moolenaar51485f02005-06-04 21:55:20 +00002826 int gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827
2828 if (is_click)
2829 {
2830 /* If the character under the cursor (skipping white space) is
2831 * not a word character, try finding a match and select a (),
2832 * {}, [], #if/#endif, etc. block. */
2833 end_visual = curwin->w_cursor;
Bram Moolenaar51485f02005-06-04 21:55:20 +00002834 while (gc = gchar_pos(&end_visual), vim_iswhite(gc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 inc(&end_visual);
2836 if (oap != NULL)
2837 oap->motion_type = MCHAR;
2838 if (oap != NULL
2839 && VIsual_mode == 'v'
2840 && !vim_iswordc(gchar_pos(&end_visual))
2841 && equalpos(curwin->w_cursor, VIsual)
2842 && (pos = findmatch(oap, NUL)) != NULL)
2843 {
2844 curwin->w_cursor = *pos;
2845 if (oap->motion_type == MLINE)
2846 VIsual_mode = 'V';
2847 else if (*p_sel == 'e')
2848 {
2849 if (lt(curwin->w_cursor, VIsual))
2850 ++VIsual.col;
2851 else
2852 ++curwin->w_cursor.col;
2853 }
2854 }
2855 }
2856
2857 if (pos == NULL && (is_click || is_drag))
2858 {
2859 /* When not found a match or when dragging: extend to include
2860 * a word. */
2861 if (lt(curwin->w_cursor, orig_cursor))
2862 {
2863 find_start_of_word(&curwin->w_cursor);
2864 find_end_of_word(&VIsual);
2865 }
2866 else
2867 {
2868 find_start_of_word(&VIsual);
2869 if (*p_sel == 'e' && *ml_get_cursor() != NUL)
2870#ifdef FEAT_MBYTE
2871 curwin->w_cursor.col +=
2872 (*mb_ptr2len_check)(ml_get_cursor());
2873#else
2874 ++curwin->w_cursor.col;
2875#endif
2876 find_end_of_word(&curwin->w_cursor);
2877 }
2878 }
2879 curwin->w_set_curswant = TRUE;
2880 }
2881 if (is_click)
2882 redraw_curbuf_later(INVERTED); /* update the inversion */
2883 }
2884 else if (VIsual_active && !old_active)
2885 VIsual_mode = 'v';
2886
2887 /* If Visual mode changed show it later. */
2888 if (p_smd && (VIsual_active != old_active || VIsual_mode != old_mode))
2889 redraw_cmdline = TRUE;
2890#endif
2891
2892 return moved;
2893}
2894
2895#ifdef FEAT_VISUAL
2896/*
2897 * Move "pos" back to the start of the word it's in.
2898 */
2899 static void
2900find_start_of_word(pos)
2901 pos_T *pos;
2902{
2903 char_u *line;
2904 int cclass;
2905 int col;
2906
2907 line = ml_get(pos->lnum);
2908 cclass = get_mouse_class(line + pos->col);
2909
2910 while (pos->col > 0)
2911 {
2912 col = pos->col - 1;
2913#ifdef FEAT_MBYTE
2914 col -= (*mb_head_off)(line, line + col);
2915#endif
2916 if (get_mouse_class(line + col) != cclass)
2917 break;
2918 pos->col = col;
2919 }
2920}
2921
2922/*
2923 * Move "pos" forward to the end of the word it's in.
2924 * When 'selection' is "exclusive", the position is just after the word.
2925 */
2926 static void
2927find_end_of_word(pos)
2928 pos_T *pos;
2929{
2930 char_u *line;
2931 int cclass;
2932 int col;
2933
2934 line = ml_get(pos->lnum);
2935 if (*p_sel == 'e' && pos->col > 0)
2936 {
2937 --pos->col;
2938#ifdef FEAT_MBYTE
2939 pos->col -= (*mb_head_off)(line, line + pos->col);
2940#endif
2941 }
2942 cclass = get_mouse_class(line + pos->col);
2943 while (line[pos->col] != NUL)
2944 {
2945#ifdef FEAT_MBYTE
2946 col = pos->col + (*mb_ptr2len_check)(line + pos->col);
2947#else
2948 col = pos->col + 1;
2949#endif
2950 if (get_mouse_class(line + col) != cclass)
2951 {
2952 if (*p_sel == 'e')
2953 pos->col = col;
2954 break;
2955 }
2956 pos->col = col;
2957 }
2958}
2959
2960/*
2961 * Get class of a character for selection: same class means same word.
2962 * 0: blank
2963 * 1: punctuation groups
2964 * 2: normal word character
2965 * >2: multi-byte word character.
2966 */
2967 static int
2968get_mouse_class(p)
2969 char_u *p;
2970{
2971 int c;
2972
2973#ifdef FEAT_MBYTE
2974 if (has_mbyte && MB_BYTE2LEN(p[0]) > 1)
2975 return mb_get_class(p);
2976#endif
2977
2978 c = *p;
2979 if (c == ' ' || c == '\t')
2980 return 0;
2981
2982 if (vim_iswordc(c))
2983 return 2;
2984
2985 /*
2986 * There are a few special cases where we want certain combinations of
2987 * characters to be considered as a single word. These are things like
2988 * "->", "/ *", "*=", "+=", "&=", "<=", ">=", "!=" etc. Otherwise, each
2989 * character is in it's own class.
2990 */
2991 if (c != NUL && vim_strchr((char_u *)"-+*/%<>&|^!=", c) != NULL)
2992 return 1;
2993 return c;
2994}
2995#endif /* FEAT_VISUAL */
2996#endif /* FEAT_MOUSE */
2997
2998#if defined(FEAT_VISUAL) || defined(PROTO)
2999/*
3000 * Check if highlighting for visual mode is possible, give a warning message
3001 * if not.
3002 */
3003 void
3004check_visual_highlight()
3005{
3006 static int did_check = FALSE;
3007
3008 if (full_screen)
3009 {
3010 if (!did_check && hl_attr(HLF_V) == 0)
3011 MSG(_("Warning: terminal cannot highlight"));
3012 did_check = TRUE;
3013 }
3014}
3015
3016/*
3017 * End visual mode.
3018 * This function should ALWAYS be called to end Visual mode, except from
3019 * do_pending_operator().
3020 */
3021 void
3022end_visual_mode()
3023{
3024#ifdef FEAT_CLIPBOARD
3025 /*
3026 * If we are using the clipboard, then remember what was selected in case
3027 * we need to paste it somewhere while we still own the selection.
3028 * Only do this when the clipboard is already owned. Don't want to grab
3029 * the selection when hitting ESC.
3030 */
3031 if (clip_star.available && clip_star.owned)
3032 clip_auto_select();
3033#endif
3034
3035 VIsual_active = FALSE;
3036#ifdef FEAT_MOUSE
3037 setmouse();
3038 mouse_dragging = 0;
3039#endif
3040
3041 /* Save the current VIsual area for '< and '> marks, and "gv" */
3042 curbuf->b_visual_mode = VIsual_mode;
3043#ifdef FEAT_EVAL
3044 curbuf->b_visual_mode_eval = VIsual_mode;
3045#endif
3046 curbuf->b_visual_start = VIsual;
3047 curbuf->b_visual_end = curwin->w_cursor;
3048 curbuf->b_visual_curswant = curwin->w_curswant;
3049#ifdef FEAT_VIRTUALEDIT
3050 if (!virtual_active())
3051 curwin->w_cursor.coladd = 0;
3052#endif
3053
3054 if (p_smd)
3055 clear_cmdline = TRUE; /* unshow visual mode later */
3056#ifdef FEAT_CMDL_INFO
3057 else
3058 clear_showcmd();
3059#endif
3060
3061 /* Don't leave the cursor past the end of the line */
3062 if (curwin->w_cursor.col > 0 && *ml_get_cursor() == NUL)
3063 --curwin->w_cursor.col;
3064}
3065
3066/*
3067 * Reset VIsual_active and VIsual_reselect.
3068 */
3069 void
3070reset_VIsual_and_resel()
3071{
3072 if (VIsual_active)
3073 {
3074 end_visual_mode();
3075 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3076 }
3077 VIsual_reselect = FALSE;
3078}
3079
3080/*
3081 * Reset VIsual_active and VIsual_reselect if it's set.
3082 */
3083 void
3084reset_VIsual()
3085{
3086 if (VIsual_active)
3087 {
3088 end_visual_mode();
3089 redraw_curbuf_later(INVERTED); /* delete the inversion later */
3090 VIsual_reselect = FALSE;
3091 }
3092}
3093#endif /* FEAT_VISUAL */
3094
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003095#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096static int find_is_eval_item __ARGS((char_u *ptr, int *colp, int *nbp, int dir));
3097
3098/*
3099 * Check for a balloon-eval special item to include when searching for an
3100 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
3101 * Returns TRUE if the character at "*ptr" should be included.
3102 * "dir" is FORWARD or BACKWARD, the direction of searching.
3103 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
3104 * "bnp" points to a counter for square brackets.
3105 */
3106 static int
3107find_is_eval_item(ptr, colp, bnp, dir)
3108 char_u *ptr;
3109 int *colp;
3110 int *bnp;
3111 int dir;
3112{
3113 /* Accept everything inside []. */
3114 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
3115 ++*bnp;
3116 if (*bnp > 0)
3117 {
3118 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
3119 --*bnp;
3120 return TRUE;
3121 }
3122
3123 /* skip over "s.var" */
3124 if (*ptr == '.')
3125 return TRUE;
3126
3127 /* two-character item: s->var */
3128 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
3129 && ptr[dir == BACKWARD ? -1 : 0] == '-')
3130 {
3131 *colp += dir;
3132 return TRUE;
3133 }
3134 return FALSE;
3135}
3136#endif
3137
3138/*
3139 * Find the identifier under or to the right of the cursor.
3140 * "find_type" can have one of three values:
3141 * FIND_IDENT: find an identifier (keyword)
3142 * FIND_STRING: find any non-white string
3143 * FIND_IDENT + FIND_STRING: find any non-white string, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003144 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 *
3146 * There are three steps:
3147 * 1. Search forward for the start of an identifier/string. Doesn't move if
3148 * already on one.
3149 * 2. Search backward for the start of this identifier/string.
3150 * This doesn't match the real Vi but I like it a little better and it
3151 * shouldn't bother anyone.
3152 * 3. Search forward to the end of this identifier/string.
3153 * When FIND_IDENT isn't defined, we backup until a blank.
3154 *
3155 * Returns the length of the string, or zero if no string is found.
3156 * If a string is found, a pointer to the string is put in "*string". This
3157 * string is not always NUL terminated.
3158 */
3159 int
3160find_ident_under_cursor(string, find_type)
3161 char_u **string;
3162 int find_type;
3163{
3164 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
3165 curwin->w_cursor.col, string, find_type);
3166}
3167
3168/*
3169 * Like find_ident_under_cursor(), but for any window and any position.
3170 * However: Uses 'iskeyword' from the current window!.
3171 */
3172 int
3173find_ident_at_pos(wp, lnum, startcol, string, find_type)
3174 win_T *wp;
3175 linenr_T lnum;
3176 colnr_T startcol;
3177 char_u **string;
3178 int find_type;
3179{
3180 char_u *ptr;
3181 int col = 0; /* init to shut up GCC */
3182 int i;
3183#ifdef FEAT_MBYTE
3184 int this_class = 0;
3185 int prev_class;
3186 int prevcol;
3187#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003188#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 int bn = 0; /* bracket nesting */
3190#endif
3191
3192 /*
3193 * if i == 0: try to find an identifier
3194 * if i == 1: try to find any non-white string
3195 */
3196 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
3197 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
3198 {
3199 /*
3200 * 1. skip to start of identifier/string
3201 */
3202 col = startcol;
3203#ifdef FEAT_MBYTE
3204 if (has_mbyte)
3205 {
3206 while (ptr[col] != NUL)
3207 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003208# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 /* Stop at a ']' to evaluate "a[x]". */
3210 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3211 break;
3212# endif
3213 this_class = mb_get_class(ptr + col);
3214 if (this_class != 0 && (i == 1 || this_class != 1))
3215 break;
3216 col += (*mb_ptr2len_check)(ptr + col);
3217 }
3218 }
3219 else
3220#endif
3221 while (ptr[col] != NUL
3222 && (i == 0 ? !vim_iswordc(ptr[col]) : vim_iswhite(ptr[col]))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003223# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
3225# endif
3226 )
3227 ++col;
3228
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003229#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 /* When starting on a ']' count it, so that we include the '['. */
3231 bn = ptr[col] == ']';
3232#endif
3233
3234 /*
3235 * 2. Back up to start of identifier/string.
3236 */
3237#ifdef FEAT_MBYTE
3238 if (has_mbyte)
3239 {
3240 /* Remember class of character under cursor. */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003241# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 if ((find_type & FIND_EVAL) && ptr[col] == ']')
3243 this_class = mb_get_class((char_u *)"a");
3244 else
3245# endif
3246 this_class = mb_get_class(ptr + col);
3247 while (col > 0)
3248 {
3249 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
3250 prev_class = mb_get_class(ptr + prevcol);
3251 if (this_class != prev_class
3252 && (i == 0
3253 || prev_class == 0
3254 || (find_type & FIND_IDENT))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003255# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 && (!(find_type & FIND_EVAL)
3257 || prevcol == 0
3258 || !find_is_eval_item(ptr + prevcol, &prevcol,
3259 &bn, BACKWARD))
3260# endif
3261 )
3262 break;
3263 col = prevcol;
3264 }
3265
3266 /* If we don't want just any old string, or we've found an
3267 * identifier, stop searching. */
3268 if (this_class > 2)
3269 this_class = 2;
3270 if (!(find_type & FIND_STRING) || this_class == 2)
3271 break;
3272 }
3273 else
3274#endif
3275 {
3276 while (col > 0
3277 && ((i == 0
3278 ? vim_iswordc(ptr[col - 1])
3279 : (!vim_iswhite(ptr[col - 1])
3280 && (!(find_type & FIND_IDENT)
3281 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003282#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 || ((find_type & FIND_EVAL)
3284 && col > 1
3285 && find_is_eval_item(ptr + col - 1, &col,
3286 &bn, BACKWARD))
3287#endif
3288 ))
3289 --col;
3290
3291 /* If we don't want just any old string, or we've found an
3292 * identifier, stop searching. */
3293 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
3294 break;
3295 }
3296 }
3297
3298 if (ptr[col] == NUL || (i == 0 && (
3299#ifdef FEAT_MBYTE
3300 has_mbyte ? this_class != 2 :
3301#endif
3302 !vim_iswordc(ptr[col]))))
3303 {
3304 /*
3305 * didn't find an identifier or string
3306 */
3307 if (find_type & FIND_STRING)
3308 EMSG(_("E348: No string under cursor"));
3309 else
3310 EMSG(_("E349: No identifier under cursor"));
3311 return 0;
3312 }
3313 ptr += col;
3314 *string = ptr;
3315
3316 /*
3317 * 3. Find the end if the identifier/string.
3318 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003319#if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 bn = 0;
3321 startcol -= col;
3322#endif
3323 col = 0;
3324#ifdef FEAT_MBYTE
3325 if (has_mbyte)
3326 {
3327 /* Search for point of changing multibyte character class. */
3328 this_class = mb_get_class(ptr);
3329 while (ptr[col] != NUL
3330 && ((i == 0 ? mb_get_class(ptr + col) == this_class
3331 : mb_get_class(ptr + col) != 0)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003332# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 || ((find_type & FIND_EVAL)
3334 && col <= (int)startcol
3335 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3336# endif
3337 ))
3338 col += (*mb_ptr2len_check)(ptr + col);
3339 }
3340 else
3341#endif
3342 while ((i == 0 ? vim_iswordc(ptr[col])
3343 : (ptr[col] != NUL && !vim_iswhite(ptr[col])))
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003344# if defined(FEAT_BEVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 || ((find_type & FIND_EVAL)
3346 && col <= (int)startcol
3347 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
3348# endif
3349 )
3350 {
3351 ++col;
3352 }
3353
3354 return col;
3355}
3356
3357/*
3358 * Prepare for redo of a normal command.
3359 */
3360 static void
3361prep_redo_cmd(cap)
3362 cmdarg_T *cap;
3363{
3364 prep_redo(cap->oap->regname, cap->count0,
3365 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
3366}
3367
3368/*
3369 * Prepare for redo of any command.
3370 * Note that only the last argument can be a multi-byte char.
3371 */
3372 static void
3373prep_redo(regname, num, cmd1, cmd2, cmd3, cmd4, cmd5)
3374 int regname;
3375 long num;
3376 int cmd1;
3377 int cmd2;
3378 int cmd3;
3379 int cmd4;
3380 int cmd5;
3381{
3382 ResetRedobuff();
3383 if (regname != 0) /* yank from specified buffer */
3384 {
3385 AppendCharToRedobuff('"');
3386 AppendCharToRedobuff(regname);
3387 }
3388 if (num)
3389 AppendNumberToRedobuff(num);
3390
3391 if (cmd1 != NUL)
3392 AppendCharToRedobuff(cmd1);
3393 if (cmd2 != NUL)
3394 AppendCharToRedobuff(cmd2);
3395 if (cmd3 != NUL)
3396 AppendCharToRedobuff(cmd3);
3397 if (cmd4 != NUL)
3398 AppendCharToRedobuff(cmd4);
3399 if (cmd5 != NUL)
3400 AppendCharToRedobuff(cmd5);
3401}
3402
3403/*
3404 * check for operator active and clear it
3405 *
3406 * return TRUE if operator was active
3407 */
3408 static int
3409checkclearop(oap)
3410 oparg_T *oap;
3411{
3412 if (oap->op_type == OP_NOP)
3413 return FALSE;
3414 clearopbeep(oap);
3415 return TRUE;
3416}
3417
3418/*
3419 * check for operator or Visual active and clear it
3420 *
3421 * return TRUE if operator was active
3422 */
3423 static int
3424checkclearopq(oap)
3425 oparg_T *oap;
3426{
3427 if (oap->op_type == OP_NOP
3428#ifdef FEAT_VISUAL
3429 && !VIsual_active
3430#endif
3431 )
3432 return FALSE;
3433 clearopbeep(oap);
3434 return TRUE;
3435}
3436
3437 static void
3438clearop(oap)
3439 oparg_T *oap;
3440{
3441 oap->op_type = OP_NOP;
3442 oap->regname = 0;
3443 oap->motion_force = NUL;
3444 oap->use_reg_one = FALSE;
3445}
3446
3447 static void
3448clearopbeep(oap)
3449 oparg_T *oap;
3450{
3451 clearop(oap);
3452 beep_flush();
3453}
3454
3455#ifdef FEAT_VISUAL
3456/*
3457 * Remove the shift modifier from a special key.
3458 */
3459 static void
3460unshift_special(cap)
3461 cmdarg_T *cap;
3462{
3463 switch (cap->cmdchar)
3464 {
3465 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
3466 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
3467 case K_S_UP: cap->cmdchar = K_UP; break;
3468 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
3469 case K_S_HOME: cap->cmdchar = K_HOME; break;
3470 case K_S_END: cap->cmdchar = K_END; break;
3471 }
3472 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
3473}
3474#endif
3475
3476#if defined(FEAT_CMDL_INFO) || defined(PROTO)
3477/*
3478 * Routines for displaying a partly typed command
3479 */
3480
3481#ifdef FEAT_VISUAL /* need room for size of Visual area */
3482# define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
3483#else
3484# define SHOWCMD_BUFLEN SHOWCMD_COLS + 1
3485#endif
3486static char_u showcmd_buf[SHOWCMD_BUFLEN];
3487static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; /* For push_showcmd() */
3488static int showcmd_is_clear = TRUE;
3489static int showcmd_visual = FALSE;
3490
3491static void display_showcmd __ARGS((void));
3492
3493 void
3494clear_showcmd()
3495{
3496 if (!p_sc)
3497 return;
3498
3499#ifdef FEAT_VISUAL
3500 if (VIsual_active && !char_avail())
3501 {
3502 int i = lt(VIsual, curwin->w_cursor);
3503 long lines;
3504 colnr_T leftcol, rightcol;
3505 linenr_T top, bot;
3506
3507 /* Show the size of the Visual area. */
3508 if (i)
3509 {
3510 top = VIsual.lnum;
3511 bot = curwin->w_cursor.lnum;
3512 }
3513 else
3514 {
3515 top = curwin->w_cursor.lnum;
3516 bot = VIsual.lnum;
3517 }
3518# ifdef FEAT_FOLDING
3519 /* Include closed folds as a whole. */
3520 hasFolding(top, &top, NULL);
3521 hasFolding(bot, NULL, &bot);
3522# endif
3523 lines = bot - top + 1;
3524
3525 if (VIsual_mode == Ctrl_V)
3526 {
3527 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
3528 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
3529 (long)(rightcol - leftcol + 1));
3530 }
3531 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
3532 sprintf((char *)showcmd_buf, "%ld", lines);
3533 else
3534 sprintf((char *)showcmd_buf, "%ld", (long)(i
3535 ? curwin->w_cursor.col - VIsual.col
3536 : VIsual.col - curwin->w_cursor.col) + (*p_sel != 'e'));
3537 showcmd_buf[SHOWCMD_COLS] = NUL; /* truncate */
3538 showcmd_visual = TRUE;
3539 }
3540 else
3541#endif
3542 {
3543 showcmd_buf[0] = NUL;
3544 showcmd_visual = FALSE;
3545
3546 /* Don't actually display something if there is nothing to clear. */
3547 if (showcmd_is_clear)
3548 return;
3549 }
3550
3551 display_showcmd();
3552}
3553
3554/*
3555 * Add 'c' to string of shown command chars.
3556 * Return TRUE if output has been written (and setcursor() has been called).
3557 */
3558 int
3559add_to_showcmd(c)
3560 int c;
3561{
3562 char_u *p;
3563 int old_len;
3564 int extra_len;
3565 int overflow;
3566#if defined(FEAT_MOUSE)
3567 int i;
3568 static int ignore[] =
3569 {
3570#ifdef FEAT_GUI
3571 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
3572 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
3573#endif
3574 K_IGNORE,
3575 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE,
3576 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
3577 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
3578 K_MOUSEDOWN, K_MOUSEUP,
3579 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
3580 0
3581 };
3582#endif
3583
3584 if (!p_sc)
3585 return FALSE;
3586
3587 if (showcmd_visual)
3588 {
3589 showcmd_buf[0] = NUL;
3590 showcmd_visual = FALSE;
3591 }
3592
3593#if defined(FEAT_MOUSE)
3594 /* Ignore keys that are scrollbar updates and mouse clicks */
3595 if (IS_SPECIAL(c))
3596 for (i = 0; ignore[i] != 0; ++i)
3597 if (ignore[i] == c)
3598 return FALSE;
3599#endif
3600
3601 p = transchar(c);
3602 old_len = (int)STRLEN(showcmd_buf);
3603 extra_len = (int)STRLEN(p);
3604 overflow = old_len + extra_len - SHOWCMD_COLS;
3605 if (overflow > 0)
3606 STRCPY(showcmd_buf, showcmd_buf + overflow);
3607 STRCAT(showcmd_buf, p);
3608
3609 if (char_avail())
3610 return FALSE;
3611
3612 display_showcmd();
3613
3614 return TRUE;
3615}
3616
3617 void
3618add_to_showcmd_c(c)
3619 int c;
3620{
3621 if (!add_to_showcmd(c))
3622 setcursor();
3623}
3624
3625/*
3626 * Delete 'len' characters from the end of the shown command.
3627 */
3628 static void
3629del_from_showcmd(len)
3630 int len;
3631{
3632 int old_len;
3633
3634 if (!p_sc)
3635 return;
3636
3637 old_len = (int)STRLEN(showcmd_buf);
3638 if (len > old_len)
3639 len = old_len;
3640 showcmd_buf[old_len - len] = NUL;
3641
3642 if (!char_avail())
3643 display_showcmd();
3644}
3645
3646/*
3647 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
3648 * something and there is a partial mapping.
3649 */
3650 void
3651push_showcmd()
3652{
3653 if (p_sc)
3654 STRCPY(old_showcmd_buf, showcmd_buf);
3655}
3656
3657 void
3658pop_showcmd()
3659{
3660 if (!p_sc)
3661 return;
3662
3663 STRCPY(showcmd_buf, old_showcmd_buf);
3664
3665 display_showcmd();
3666}
3667
3668 static void
3669display_showcmd()
3670{
3671 int len;
3672
3673 cursor_off();
3674
3675 len = (int)STRLEN(showcmd_buf);
3676 if (len == 0)
3677 showcmd_is_clear = TRUE;
3678 else
3679 {
3680 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
3681 showcmd_is_clear = FALSE;
3682 }
3683
3684 /*
3685 * clear the rest of an old message by outputing up to SHOWCMD_COLS spaces
3686 */
3687 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
3688
3689 setcursor(); /* put cursor back where it belongs */
3690}
3691#endif
3692
3693#ifdef FEAT_SCROLLBIND
3694/*
3695 * When "check" is FALSE, prepare for commands that scroll the window.
3696 * When "check" is TRUE, take care of scroll-binding after the window has
3697 * scrolled. Called from normal_cmd() and edit().
3698 */
3699 void
3700do_check_scrollbind(check)
3701 int check;
3702{
3703 static win_T *old_curwin = NULL;
3704 static linenr_T old_topline = 0;
3705#ifdef FEAT_DIFF
3706 static int old_topfill = 0;
3707#endif
3708 static buf_T *old_buf = NULL;
3709 static colnr_T old_leftcol = 0;
3710
3711 if (check && curwin->w_p_scb)
3712 {
3713 /* If a ":syncbind" command was just used, don't scroll, only reset
3714 * the values. */
3715 if (did_syncbind)
3716 did_syncbind = FALSE;
3717 else if (curwin == old_curwin)
3718 {
3719 /*
3720 * Synchronize other windows, as necessary according to
3721 * 'scrollbind'. Don't do this after an ":edit" command, except
3722 * when 'diff' is set.
3723 */
3724 if ((curwin->w_buffer == old_buf
3725#ifdef FEAT_DIFF
3726 || curwin->w_p_diff
3727#endif
3728 )
3729 && (curwin->w_topline != old_topline
3730#ifdef FEAT_DIFF
3731 || curwin->w_topfill != old_topfill
3732#endif
3733 || curwin->w_leftcol != old_leftcol))
3734 {
3735 check_scrollbind(curwin->w_topline - old_topline,
3736 (long)(curwin->w_leftcol - old_leftcol));
3737 }
3738 }
3739 else if (vim_strchr(p_sbo, 'j')) /* jump flag set in 'scrollopt' */
3740 {
3741 /*
3742 * When switching between windows, make sure that the relative
3743 * vertical offset is valid for the new window. The relative
3744 * offset is invalid whenever another 'scrollbind' window has
3745 * scrolled to a point that would force the current window to
3746 * scroll past the beginning or end of its buffer. When the
3747 * resync is performed, some of the other 'scrollbind' windows may
3748 * need to jump so that the current window's relative position is
3749 * visible on-screen.
3750 */
3751 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
3752 }
3753 curwin->w_scbind_pos = curwin->w_topline;
3754 }
3755
3756 old_curwin = curwin;
3757 old_topline = curwin->w_topline;
3758#ifdef FEAT_DIFF
3759 old_topfill = curwin->w_topfill;
3760#endif
3761 old_buf = curwin->w_buffer;
3762 old_leftcol = curwin->w_leftcol;
3763}
3764
3765/*
3766 * Synchronize any windows that have "scrollbind" set, based on the
3767 * number of rows by which the current window has changed
3768 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
3769 */
3770 void
3771check_scrollbind(topline_diff, leftcol_diff)
3772 linenr_T topline_diff;
3773 long leftcol_diff;
3774{
3775 int want_ver;
3776 int want_hor;
3777 win_T *old_curwin = curwin;
3778 buf_T *old_curbuf = curbuf;
3779#ifdef FEAT_VISUAL
3780 int old_VIsual_select = VIsual_select;
3781 int old_VIsual_active = VIsual_active;
3782#endif
3783 colnr_T tgt_leftcol = curwin->w_leftcol;
3784 long topline;
3785 long y;
3786
3787 /*
3788 * check 'scrollopt' string for vertical and horizontal scroll options
3789 */
3790 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
3791#ifdef FEAT_DIFF
3792 want_ver |= old_curwin->w_p_diff;
3793#endif
3794 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
3795
3796 /*
3797 * loop through the scrollbound windows and scroll accordingly
3798 */
3799#ifdef FEAT_VISUAL
3800 VIsual_select = VIsual_active = 0;
3801#endif
3802 for (curwin = firstwin; curwin; curwin = curwin->w_next)
3803 {
3804 curbuf = curwin->w_buffer;
3805 /* skip original window and windows with 'noscrollbind' */
3806 if (curwin != old_curwin && curwin->w_p_scb)
3807 {
3808 /*
3809 * do the vertical scroll
3810 */
3811 if (want_ver)
3812 {
3813#ifdef FEAT_DIFF
3814 if (old_curwin->w_p_diff && curwin->w_p_diff)
3815 {
3816 diff_set_topline(old_curwin, curwin);
3817 }
3818 else
3819#endif
3820 {
3821 curwin->w_scbind_pos += topline_diff;
3822 topline = curwin->w_scbind_pos;
3823 if (topline > curbuf->b_ml.ml_line_count)
3824 topline = curbuf->b_ml.ml_line_count;
3825 if (topline < 1)
3826 topline = 1;
3827
3828 y = topline - curwin->w_topline;
3829 if (y > 0)
3830 scrollup(y, FALSE);
3831 else
3832 scrolldown(-y, FALSE);
3833 }
3834
3835 redraw_later(VALID);
3836 cursor_correct();
3837#ifdef FEAT_WINDOWS
3838 curwin->w_redr_status = TRUE;
3839#endif
3840 }
3841
3842 /*
3843 * do the horizontal scroll
3844 */
3845 if (want_hor && curwin->w_leftcol != tgt_leftcol)
3846 {
3847 curwin->w_leftcol = tgt_leftcol;
3848 leftcol_changed();
3849 }
3850 }
3851 }
3852
3853 /*
3854 * reset current-window
3855 */
3856#ifdef FEAT_VISUAL
3857 VIsual_select = old_VIsual_select;
3858 VIsual_active = old_VIsual_active;
3859#endif
3860 curwin = old_curwin;
3861 curbuf = old_curbuf;
3862}
3863#endif /* #ifdef FEAT_SCROLLBIND */
3864
3865/*
3866 * Command character that's ignored.
3867 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
3868 * xon/xoff
3869 */
3870/*ARGSUSED */
3871 static void
3872nv_ignore(cap)
3873 cmdarg_T *cap;
3874{
Bram Moolenaarfc735152005-03-22 22:54:12 +00003875 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876}
3877
3878/*
3879 * Command character doesn't exist.
3880 */
3881 static void
3882nv_error(cap)
3883 cmdarg_T *cap;
3884{
3885 clearopbeep(cap->oap);
3886}
3887
3888/*
3889 * <Help> and <F1> commands.
3890 */
3891 static void
3892nv_help(cap)
3893 cmdarg_T *cap;
3894{
3895 if (!checkclearopq(cap->oap))
3896 ex_help(NULL);
3897}
3898
3899/*
3900 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
3901 */
3902 static void
3903nv_addsub(cap)
3904 cmdarg_T *cap;
3905{
3906 if (!checkclearopq(cap->oap)
3907 && do_addsub((int)cap->cmdchar, cap->count1) == OK)
3908 prep_redo_cmd(cap);
3909}
3910
3911/*
3912 * CTRL-F, CTRL-B, etc: Scroll page up or down.
3913 */
3914 static void
3915nv_page(cap)
3916 cmdarg_T *cap;
3917{
3918 if (!checkclearop(cap->oap))
3919 (void)onepage(cap->arg, cap->count1);
3920}
3921
3922/*
3923 * Implementation of "gd" and "gD" command.
3924 */
3925 static void
3926nv_gd(oap, nchar)
3927 oparg_T *oap;
3928 int nchar;
3929{
3930 int len;
3931 char_u *pat;
3932 pos_T old_pos;
3933 int t;
3934 int save_p_ws;
3935 int save_p_scs;
3936 char_u *ptr;
3937
Bram Moolenaard9d30582005-05-18 22:10:28 +00003938 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
3939 || (pat = alloc(len + 7)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 {
3941 clearopbeep(oap);
3942 return;
3943 }
Bram Moolenaard9d30582005-05-18 22:10:28 +00003944
3945 /* Put "\V" before the pattern to avoid that the special meaning of "."
3946 * and "~" causes trouble. */
3947 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
3948 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 old_pos = curwin->w_cursor;
3950 save_p_ws = p_ws;
3951 save_p_scs = p_scs;
3952 p_ws = FALSE; /* don't wrap around end of file now */
3953 p_scs = FALSE; /* don't switch ignorecase off now */
3954
3955 /*
3956 * With "gD" go to line 1.
3957 * With "gd" Search back for the start of the current function, then go
3958 * back until a blank line. If this fails go to line 1.
3959 */
3960 if (nchar == 'D' || !findpar(oap, BACKWARD, 1L, '{', FALSE))
3961 {
3962 setpcmark(); /* Set in findpar() otherwise */
3963 curwin->w_cursor.lnum = 1;
3964 }
3965 else
3966 {
3967 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
3968 --curwin->w_cursor.lnum;
3969 }
3970 curwin->w_cursor.col = 0;
3971
3972 /* Search forward for the identifier, ignore comment lines. */
3973 while ((t = searchit(curwin, curbuf, &curwin->w_cursor, FORWARD, pat, 1L, 0,
3974 RE_LAST)) != FAIL
3975#ifdef FEAT_COMMENTS
3976 && get_leader_len(ml_get_curline(), NULL, FALSE) > 0
3977#endif
3978 && old_pos.lnum > curwin->w_cursor.lnum)
3979 {
3980 /* Ignore this line, continue at start of next line. */
3981 ++curwin->w_cursor.lnum;
3982 curwin->w_cursor.col = 0;
3983 }
3984 if (t == FAIL || old_pos.lnum <= curwin->w_cursor.lnum)
3985 {
3986 clearopbeep(oap);
3987 curwin->w_cursor = old_pos;
3988 }
3989 else
3990 {
3991 curwin->w_set_curswant = TRUE;
3992#ifdef FEAT_FOLDING
3993 if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
3994 foldOpenCursor();
3995#endif
3996 /* "n" searches forward now */
3997 reset_search_dir();
3998 }
3999
4000 vim_free(pat);
4001 p_ws = save_p_ws;
4002 p_scs = save_p_scs;
4003}
4004
4005/*
4006 * Move 'dist' lines in direction 'dir', counting lines by *screen*
4007 * lines rather than lines in the file.
4008 * 'dist' must be positive.
4009 *
4010 * Return OK if able to move cursor, FAIL otherwise.
4011 */
4012 static int
4013nv_screengo(oap, dir, dist)
4014 oparg_T *oap;
4015 int dir;
4016 long dist;
4017{
4018 int linelen = linetabsize(ml_get_curline());
4019 int retval = OK;
4020 int atend = FALSE;
4021 int n;
4022 int col_off1; /* margin offset for first screen line */
4023 int col_off2; /* margin offset for wrapped screen line */
4024 int width1; /* text width for first screen line */
4025 int width2; /* test width for wrapped screen line */
4026
4027 oap->motion_type = MCHAR;
4028 oap->inclusive = FALSE;
4029
4030 col_off1 = curwin_col_off();
4031 col_off2 = col_off1 - curwin_col_off2();
4032 width1 = W_WIDTH(curwin) - col_off1;
4033 width2 = W_WIDTH(curwin) - col_off2;
4034
4035#ifdef FEAT_VERTSPLIT
4036 if (curwin->w_width != 0)
4037 {
4038#endif
4039 /*
4040 * Instead of sticking at the last character of the buffer line we
4041 * try to stick in the last column of the screen.
4042 */
4043 if (curwin->w_curswant == MAXCOL)
4044 {
4045 atend = TRUE;
4046 validate_virtcol();
4047 if (width1 <= 0)
4048 curwin->w_curswant = 0;
4049 else
4050 {
4051 curwin->w_curswant = width1 - 1;
4052 if (curwin->w_virtcol > curwin->w_curswant)
4053 curwin->w_curswant += ((curwin->w_virtcol
4054 - curwin->w_curswant - 1) / width2 + 1) * width2;
4055 }
4056 }
4057 else
4058 {
4059 if (linelen > width1)
4060 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4061 else
4062 n = width1;
4063 if (curwin->w_curswant > (colnr_T)n + 1)
4064 curwin->w_curswant -= ((curwin->w_curswant - n) / width2 + 1)
4065 * width2;
4066 }
4067
4068 while (dist--)
4069 {
4070 if (dir == BACKWARD)
4071 {
4072 if ((long)curwin->w_curswant >= width2)
4073 /* move back within line */
4074 curwin->w_curswant -= width2;
4075 else
4076 {
4077 /* to previous line */
4078 if (curwin->w_cursor.lnum == 1)
4079 {
4080 retval = FAIL;
4081 break;
4082 }
4083 --curwin->w_cursor.lnum;
4084#ifdef FEAT_FOLDING
4085 /* Move to the start of a closed fold. Don't do that when
4086 * 'foldopen' contains "all": it will open in a moment. */
4087 if (!(fdo_flags & FDO_ALL))
4088 (void)hasFolding(curwin->w_cursor.lnum,
4089 &curwin->w_cursor.lnum, NULL);
4090#endif
4091 linelen = linetabsize(ml_get_curline());
4092 if (linelen > width1)
4093 curwin->w_curswant += (((linelen - width1 - 1) / width2)
4094 + 1) * width2;
4095 }
4096 }
4097 else /* dir == FORWARD */
4098 {
4099 if (linelen > width1)
4100 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4101 else
4102 n = width1;
4103 if (curwin->w_curswant + width2 < (colnr_T)n)
4104 /* move forward within line */
4105 curwin->w_curswant += width2;
4106 else
4107 {
4108 /* to next line */
4109#ifdef FEAT_FOLDING
4110 /* Move to the end of a closed fold. */
4111 (void)hasFolding(curwin->w_cursor.lnum, NULL,
4112 &curwin->w_cursor.lnum);
4113#endif
4114 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4115 {
4116 retval = FAIL;
4117 break;
4118 }
4119 curwin->w_cursor.lnum++;
4120 curwin->w_curswant %= width2;
4121 }
4122 }
4123 }
4124#ifdef FEAT_VERTSPLIT
4125 }
4126#endif
4127
4128 coladvance(curwin->w_curswant);
4129
4130#if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
4131 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
4132 {
4133 /*
4134 * Check for landing on a character that got split at the end of the
4135 * last line. We want to advance a screenline, not end up in the same
4136 * screenline or move two screenlines.
4137 */
4138 validate_virtcol();
4139 if (curwin->w_virtcol > curwin->w_curswant
4140 && (curwin->w_curswant < (colnr_T)width1
4141 ? (curwin->w_curswant > (colnr_T)width1 / 2)
4142 : ((curwin->w_curswant - width1) % width2
4143 > (colnr_T)width2 / 2)))
4144 --curwin->w_cursor.col;
4145 }
4146#endif
4147
4148 if (atend)
4149 curwin->w_curswant = MAXCOL; /* stick in the last column */
4150
4151 return retval;
4152}
4153
4154#ifdef FEAT_MOUSE
4155/*
4156 * Mouse scroll wheel: Default action is to scroll three lines, or one page
4157 * when Shift or Ctrl is used.
4158 * K_MOUSEUP (cap->arg == TRUE) or K_MOUSEDOWN (cap->arg == FALSE)
4159 */
4160 static void
4161nv_mousescroll(cap)
4162 cmdarg_T *cap;
4163{
4164# if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4165 win_T *old_curwin;
4166
4167 old_curwin = curwin;
4168
4169 /* Currently we only get the mouse coordinates in the GUI. */
4170 if (gui.in_use && mouse_row >= 0 && mouse_col >= 0)
4171 {
4172 int row, col;
4173
4174 row = mouse_row;
4175 col = mouse_col;
4176
4177 /* find the window at the pointer coordinates */
4178 curwin = mouse_find_win(&row, &col);
4179 curbuf = curwin->w_buffer;
4180 }
4181# endif
4182
4183 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4184 {
4185 (void)onepage(cap->arg ? FORWARD : BACKWARD, 1L);
4186 }
4187 else
4188 {
4189 cap->count1 = 3;
4190 cap->count0 = 3;
4191 nv_scroll_line(cap);
4192 }
4193
4194# if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4195 curwin->w_redr_status = TRUE;
4196
4197 curwin = old_curwin;
4198 curbuf = curwin->w_buffer;
4199# endif
4200}
4201
4202/*
4203 * Mouse clicks and drags.
4204 */
4205 static void
4206nv_mouse(cap)
4207 cmdarg_T *cap;
4208{
4209 (void)do_mouse(cap->oap, cap->cmdchar, BACKWARD, cap->count1, 0);
4210}
4211#endif
4212
4213/*
4214 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
4215 * cap->arg must be TRUE for CTRL-E.
4216 */
4217 static void
4218nv_scroll_line(cap)
4219 cmdarg_T *cap;
4220{
4221 if (!checkclearop(cap->oap))
4222 scroll_redraw(cap->arg, cap->count1);
4223}
4224
4225/*
4226 * Scroll "count" lines up or down, and redraw.
4227 */
4228 void
4229scroll_redraw(up, count)
4230 int up;
4231 long count;
4232{
4233 linenr_T prev_topline = curwin->w_topline;
4234#ifdef FEAT_DIFF
4235 int prev_topfill = curwin->w_topfill;
4236#endif
4237 linenr_T prev_lnum = curwin->w_cursor.lnum;
4238
4239 if (up)
4240 scrollup(count, TRUE);
4241 else
4242 scrolldown(count, TRUE);
4243 if (p_so)
4244 {
4245 /* Adjust the cursor position for 'scrolloff'. Mark w_topline as
4246 * valid, otherwise the screen jumps back at the end of the file. */
4247 cursor_correct();
4248 check_cursor_moved(curwin);
4249 curwin->w_valid |= VALID_TOPLINE;
4250
4251 /* If moved back to where we were, at least move the cursor, otherwise
4252 * we get stuck at one position. Don't move the cursor up if the
4253 * first line of the buffer is already on the screen */
4254 while (curwin->w_topline == prev_topline
4255#ifdef FEAT_DIFF
4256 && curwin->w_topfill == prev_topfill
4257#endif
4258 )
4259 {
4260 if (up)
4261 {
4262 if (curwin->w_cursor.lnum > prev_lnum
4263 || cursor_down(1L, FALSE) == FAIL)
4264 break;
4265 }
4266 else
4267 {
4268 if (curwin->w_cursor.lnum < prev_lnum
4269 || prev_topline == 1L
4270 || cursor_up(1L, FALSE) == FAIL)
4271 break;
4272 }
4273 /* Mark w_topline as valid, otherwise the screen jumps back at the
4274 * end of the file. */
4275 check_cursor_moved(curwin);
4276 curwin->w_valid |= VALID_TOPLINE;
4277 }
4278 }
4279 if (curwin->w_cursor.lnum != prev_lnum)
4280 coladvance(curwin->w_curswant);
4281 redraw_later(VALID);
4282}
4283
4284/*
4285 * Commands that start with "z".
4286 */
4287 static void
4288nv_zet(cap)
4289 cmdarg_T *cap;
4290{
4291 long n;
4292 colnr_T col;
4293 int nchar = cap->nchar;
4294#ifdef FEAT_FOLDING
4295 long old_fdl = curwin->w_p_fdl;
4296 int old_fen = curwin->w_p_fen;
4297#endif
4298
4299 if (VIM_ISDIGIT(nchar))
4300 {
4301 /*
4302 * "z123{nchar}": edit the count before obtaining {nchar}
4303 */
4304 if (checkclearop(cap->oap))
4305 return;
4306 n = nchar - '0';
4307 for (;;)
4308 {
4309#ifdef USE_ON_FLY_SCROLL
4310 dont_scroll = TRUE; /* disallow scrolling here */
4311#endif
4312 ++no_mapping;
4313 ++allow_keys; /* no mapping for nchar, but allow key codes */
4314 nchar = safe_vgetc();
4315#ifdef FEAT_LANGMAP
4316 LANGMAP_ADJUST(nchar, TRUE);
4317#endif
4318 --no_mapping;
4319 --allow_keys;
4320#ifdef FEAT_CMDL_INFO
4321 (void)add_to_showcmd(nchar);
4322#endif
4323 if (nchar == K_DEL || nchar == K_KDEL)
4324 n /= 10;
4325 else if (VIM_ISDIGIT(nchar))
4326 n = n * 10 + (nchar - '0');
4327 else if (nchar == CAR)
4328 {
4329#ifdef FEAT_GUI
4330 need_mouse_correct = TRUE;
4331#endif
4332 win_setheight((int)n);
4333 break;
4334 }
4335 else if (nchar == 'l'
4336 || nchar == 'h'
4337 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00004338 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 {
4340 cap->count1 = n ? n * cap->count1 : cap->count1;
4341 goto dozet;
4342 }
4343 else
4344 {
4345 clearopbeep(cap->oap);
4346 break;
4347 }
4348 }
4349 cap->oap->op_type = OP_NOP;
4350 return;
4351 }
4352
4353dozet:
4354 if (
4355#ifdef FEAT_FOLDING
4356 /* "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
4357 * and "zC" only in Visual mode. "zj" and "zk" are motion
4358 * commands. */
4359 cap->nchar != 'f' && cap->nchar != 'F'
4360 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
4361 && cap->nchar != 'j' && cap->nchar != 'k'
4362 &&
4363#endif
4364 checkclearop(cap->oap))
4365 return;
4366
4367 /*
4368 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
4369 * If line number given, set cursor.
4370 */
4371 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
4372 && cap->count0
4373 && cap->count0 != curwin->w_cursor.lnum)
4374 {
4375 setpcmark();
4376 if (cap->count0 > curbuf->b_ml.ml_line_count)
4377 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4378 else
4379 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004380 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 }
4382
4383 switch (nchar)
4384 {
4385 /* "z+", "z<CR>" and "zt": put cursor at top of screen */
4386 case '+':
4387 if (cap->count0 == 0)
4388 {
4389 /* No count given: put cursor at the line below screen */
4390 validate_botline(); /* make sure w_botline is valid */
4391 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
4392 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4393 else
4394 curwin->w_cursor.lnum = curwin->w_botline;
4395 }
4396 /* FALLTHROUGH */
4397 case NL:
4398 case CAR:
4399 case K_KENTER:
4400 beginline(BL_WHITE | BL_FIX);
4401 /* FALLTHROUGH */
4402
4403 case 't': scroll_cursor_top(0, TRUE);
4404 redraw_later(VALID);
4405 break;
4406
4407 /* "z." and "zz": put cursor in middle of screen */
4408 case '.': beginline(BL_WHITE | BL_FIX);
4409 /* FALLTHROUGH */
4410
4411 case 'z': scroll_cursor_halfway(TRUE);
4412 redraw_later(VALID);
4413 break;
4414
4415 /* "z^", "z-" and "zb": put cursor at bottom of screen */
4416 case '^': /* Strange Vi behavior: <count>z^ finds line at top of window
4417 * when <count> is at bottom of window, and puts that one at
4418 * bottom of window. */
4419 if (cap->count0 != 0)
4420 {
4421 scroll_cursor_bot(0, TRUE);
4422 curwin->w_cursor.lnum = curwin->w_topline;
4423 }
4424 else if (curwin->w_topline == 1)
4425 curwin->w_cursor.lnum = 1;
4426 else
4427 curwin->w_cursor.lnum = curwin->w_topline - 1;
4428 /* FALLTHROUGH */
4429 case '-':
4430 beginline(BL_WHITE | BL_FIX);
4431 /* FALLTHROUGH */
4432
4433 case 'b': scroll_cursor_bot(0, TRUE);
4434 redraw_later(VALID);
4435 break;
4436
4437 /* "zH" - scroll screen right half-page */
4438 case 'H':
4439 cap->count1 *= W_WIDTH(curwin) / 2;
4440 /* FALLTHROUGH */
4441
4442 /* "zh" - scroll screen to the right */
4443 case 'h':
4444 case K_LEFT:
4445 if (!curwin->w_p_wrap)
4446 {
4447 if ((colnr_T)cap->count1 > curwin->w_leftcol)
4448 curwin->w_leftcol = 0;
4449 else
4450 curwin->w_leftcol -= (colnr_T)cap->count1;
4451 leftcol_changed();
4452 }
4453 break;
4454
4455 /* "zL" - scroll screen left half-page */
4456 case 'L': cap->count1 *= W_WIDTH(curwin) / 2;
4457 /* FALLTHROUGH */
4458
4459 /* "zl" - scroll screen to the left */
4460 case 'l':
4461 case K_RIGHT:
4462 if (!curwin->w_p_wrap)
4463 {
4464 /* scroll the window left */
4465 curwin->w_leftcol += (colnr_T)cap->count1;
4466 leftcol_changed();
4467 }
4468 break;
4469
4470 /* "zs" - scroll screen, cursor at the start */
4471 case 's': if (!curwin->w_p_wrap)
4472 {
4473#ifdef FEAT_FOLDING
4474 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4475 col = 0; /* like the cursor is in col 0 */
4476 else
4477#endif
4478 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
4479 if ((long)col > p_siso)
4480 col -= p_siso;
4481 else
4482 col = 0;
4483 if (curwin->w_leftcol != col)
4484 {
4485 curwin->w_leftcol = col;
4486 redraw_later(NOT_VALID);
4487 }
4488 }
4489 break;
4490
4491 /* "ze" - scroll screen, cursor at the end */
4492 case 'e': if (!curwin->w_p_wrap)
4493 {
4494#ifdef FEAT_FOLDING
4495 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4496 col = 0; /* like the cursor is in col 0 */
4497 else
4498#endif
4499 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
4500 n = W_WIDTH(curwin) - curwin_col_off();
4501 if ((long)col + p_siso < n)
4502 col = 0;
4503 else
4504 col = col + p_siso - n + 1;
4505 if (curwin->w_leftcol != col)
4506 {
4507 curwin->w_leftcol = col;
4508 redraw_later(NOT_VALID);
4509 }
4510 }
4511 break;
4512
4513#ifdef FEAT_FOLDING
4514 /* "zF": create fold command */
4515 /* "zf": create fold operator */
4516 case 'F':
4517 case 'f': if (foldManualAllowed(TRUE))
4518 {
4519 cap->nchar = 'f';
4520 nv_operator(cap);
4521 curwin->w_p_fen = TRUE;
4522
4523 /* "zF" is like "zfzf" */
4524 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
4525 {
4526 nv_operator(cap);
4527 finish_op = TRUE;
4528 }
4529 }
4530 else
4531 clearopbeep(cap->oap);
4532 break;
4533
4534 /* "zd": delete fold at cursor */
4535 /* "zD": delete fold at cursor recursively */
4536 case 'd':
4537 case 'D': if (foldManualAllowed(FALSE))
4538 {
4539 if (VIsual_active)
4540 nv_operator(cap);
4541 else
4542 deleteFold(curwin->w_cursor.lnum,
4543 curwin->w_cursor.lnum, nchar == 'D', FALSE);
4544 }
4545 break;
4546
4547 /* "zE": erease all folds */
4548 case 'E': if (foldmethodIsManual(curwin))
4549 {
4550 clearFolding(curwin);
4551 changed_window_setting();
4552 }
4553 else if (foldmethodIsMarker(curwin))
4554 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
4555 TRUE, FALSE);
4556 else
4557 EMSG(_("E352: Cannot erase folds with current 'foldmethod'"));
4558 break;
4559
4560 /* "zn": fold none: reset 'foldenable' */
4561 case 'n': curwin->w_p_fen = FALSE;
4562 break;
4563
4564 /* "zN": fold Normal: set 'foldenable' */
4565 case 'N': curwin->w_p_fen = TRUE;
4566 break;
4567
4568 /* "zi": invert folding: toggle 'foldenable' */
4569 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
4570 break;
4571
4572 /* "za": open closed fold or close open fold at cursor */
4573 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4574 openFold(curwin->w_cursor.lnum, cap->count1);
4575 else
4576 {
4577 closeFold(curwin->w_cursor.lnum, cap->count1);
4578 curwin->w_p_fen = TRUE;
4579 }
4580 break;
4581
4582 /* "zA": open fold at cursor recursively */
4583 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
4584 openFoldRecurse(curwin->w_cursor.lnum);
4585 else
4586 {
4587 closeFoldRecurse(curwin->w_cursor.lnum);
4588 curwin->w_p_fen = TRUE;
4589 }
4590 break;
4591
4592 /* "zo": open fold at cursor or Visual area */
4593 case 'o': if (VIsual_active)
4594 nv_operator(cap);
4595 else
4596 openFold(curwin->w_cursor.lnum, cap->count1);
4597 break;
4598
4599 /* "zO": open fold recursively */
4600 case 'O': if (VIsual_active)
4601 nv_operator(cap);
4602 else
4603 openFoldRecurse(curwin->w_cursor.lnum);
4604 break;
4605
4606 /* "zc": close fold at cursor or Visual area */
4607 case 'c': if (VIsual_active)
4608 nv_operator(cap);
4609 else
4610 closeFold(curwin->w_cursor.lnum, cap->count1);
4611 curwin->w_p_fen = TRUE;
4612 break;
4613
4614 /* "zC": close fold recursively */
4615 case 'C': if (VIsual_active)
4616 nv_operator(cap);
4617 else
4618 closeFoldRecurse(curwin->w_cursor.lnum);
4619 curwin->w_p_fen = TRUE;
4620 break;
4621
4622 /* "zv": open folds at the cursor */
4623 case 'v': foldOpenCursor();
4624 break;
4625
4626 /* "zx": re-apply 'foldlevel' and open folds at the cursor */
4627 case 'x': curwin->w_p_fen = TRUE;
4628 newFoldLevel(); /* update right now */
4629 foldOpenCursor();
4630 break;
4631
4632 /* "zX": undo manual opens/closes, re-apply 'foldlevel' */
4633 case 'X': curwin->w_p_fen = TRUE;
4634 old_fdl = -1; /* force an update */
4635 break;
4636
4637 /* "zm": fold more */
4638 case 'm': if (curwin->w_p_fdl > 0)
4639 --curwin->w_p_fdl;
4640 old_fdl = -1; /* force an update */
4641 curwin->w_p_fen = TRUE;
4642 break;
4643
4644 /* "zM": close all folds */
4645 case 'M': curwin->w_p_fdl = 0;
4646 old_fdl = -1; /* force an update */
4647 curwin->w_p_fen = TRUE;
4648 break;
4649
4650 /* "zr": reduce folding */
4651 case 'r': ++curwin->w_p_fdl;
4652 break;
4653
4654 /* "zR": open all folds */
4655 case 'R': curwin->w_p_fdl = getDeepestNesting();
4656 old_fdl = -1; /* force an update */
4657 break;
4658
4659 case 'j': /* "zj" move to next fold downwards */
4660 case 'k': /* "zk" move to next fold upwards */
4661 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
4662 cap->count1) == FAIL)
4663 clearopbeep(cap->oap);
4664 break;
4665
4666#endif /* FEAT_FOLDING */
4667
Bram Moolenaarb765d632005-06-07 21:00:02 +00004668#ifdef FEAT_SYN_HL
4669 case 'g': /* "zg": add good word to word list */
4670 case 'w': /* "zw": add wrong word to word list */
4671 {
4672 char_u *ptr = NULL;
4673 int len;
4674
4675 if (checkclearop(cap->oap))
4676 break;
4677# ifdef FEAT_VISUAL
4678 if (VIsual_active && get_visual_text(cap, &ptr, &len)
4679 == FAIL)
4680 return;
4681# endif
4682 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
4683 FIND_IDENT)) == 0)
4684 return;
4685 spell_add_word(ptr, len, nchar == 'w');
4686 }
4687#endif
4688
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 default: clearopbeep(cap->oap);
4690 }
4691
4692#ifdef FEAT_FOLDING
4693 /* Redraw when 'foldenable' changed */
4694 if (old_fen != curwin->w_p_fen)
4695 {
4696# ifdef FEAT_DIFF
4697 win_T *wp;
4698
4699 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
4700 {
4701 /* Adjust 'foldenable' in diff-synced windows. */
4702 FOR_ALL_WINDOWS(wp)
4703 {
4704 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
4705 {
4706 wp->w_p_fen = curwin->w_p_fen;
4707 changed_window_setting_win(wp);
4708 }
4709 }
4710 }
4711# endif
4712 changed_window_setting();
4713 }
4714
4715 /* Redraw when 'foldlevel' changed. */
4716 if (old_fdl != curwin->w_p_fdl)
4717 newFoldLevel();
4718#endif
4719}
4720
4721#ifdef FEAT_GUI
4722/*
4723 * Vertical scrollbar movement.
4724 */
4725 static void
4726nv_ver_scrollbar(cap)
4727 cmdarg_T *cap;
4728{
4729 if (cap->oap->op_type != OP_NOP)
4730 clearopbeep(cap->oap);
4731
4732 /* Even if an operator was pending, we still want to scroll */
4733 gui_do_scroll();
4734}
4735
4736/*
4737 * Horizontal scrollbar movement.
4738 */
4739 static void
4740nv_hor_scrollbar(cap)
4741 cmdarg_T *cap;
4742{
4743 if (cap->oap->op_type != OP_NOP)
4744 clearopbeep(cap->oap);
4745
4746 /* Even if an operator was pending, we still want to scroll */
4747 gui_do_horiz_scroll();
4748}
4749#endif
4750
4751/*
4752 * "Q" command.
4753 */
4754 static void
4755nv_exmode(cap)
4756 cmdarg_T *cap;
4757{
4758 /*
4759 * Ignore 'Q' in Visual mode, just give a beep.
4760 */
4761#ifdef FEAT_VISUAL
4762 if (VIsual_active)
4763 vim_beep();
4764 else
4765#endif
4766 if (!checkclearop(cap->oap))
4767 do_exmode(FALSE);
4768}
4769
4770/*
4771 * Handle a ":" command.
4772 */
4773 static void
4774nv_colon(cap)
4775 cmdarg_T *cap;
4776{
4777 int old_p_im;
4778
4779#ifdef FEAT_VISUAL
4780 if (VIsual_active)
4781 nv_operator(cap);
4782 else
4783#endif
4784 {
4785 if (cap->oap->op_type != OP_NOP)
4786 {
4787 /* Using ":" as a movement is characterwise exclusive. */
4788 cap->oap->motion_type = MCHAR;
4789 cap->oap->inclusive = FALSE;
4790 }
4791 else if (cap->count0)
4792 {
4793 /* translate "count:" into ":.,.+(count - 1)" */
4794 stuffcharReadbuff('.');
4795 if (cap->count0 > 1)
4796 {
4797 stuffReadbuff((char_u *)",.+");
4798 stuffnumReadbuff((long)cap->count0 - 1L);
4799 }
4800 }
4801
4802 /* When typing, don't type below an old message */
4803 if (KeyTyped)
4804 compute_cmdrow();
4805
4806 old_p_im = p_im;
4807
4808 /* get a command line and execute it */
4809 do_cmdline(NULL, getexline, NULL,
4810 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
4811
4812 /* If 'insertmode' changed, enter or exit Insert mode */
4813 if (p_im != old_p_im)
4814 {
4815 if (p_im)
4816 restart_edit = 'i';
4817 else
4818 restart_edit = 0;
4819 }
4820
4821 /* The start of the operator may have become invalid by the Ex
4822 * command. */
4823 if (cap->oap->op_type != OP_NOP
4824 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
4825 || cap->oap->start.col >
4826 STRLEN(ml_get(cap->oap->start.lnum))))
4827 clearopbeep(cap->oap);
4828 }
4829}
4830
4831/*
4832 * Handle CTRL-G command.
4833 */
4834 static void
4835nv_ctrlg(cap)
4836 cmdarg_T *cap;
4837{
4838#ifdef FEAT_VISUAL
4839 if (VIsual_active) /* toggle Selection/Visual mode */
4840 {
4841 VIsual_select = !VIsual_select;
4842 showmode();
4843 }
4844 else
4845#endif
4846 if (!checkclearop(cap->oap))
4847 /* print full name if count given or :cd used */
4848 fileinfo((int)cap->count0, FALSE, TRUE);
4849}
4850
4851/*
4852 * Handle CTRL-H <Backspace> command.
4853 */
4854 static void
4855nv_ctrlh(cap)
4856 cmdarg_T *cap;
4857{
4858#ifdef FEAT_VISUAL
4859 if (VIsual_active && VIsual_select)
4860 {
4861 cap->cmdchar = 'x'; /* BS key behaves like 'x' in Select mode */
4862 v_visop(cap);
4863 }
4864 else
4865#endif
4866 nv_left(cap);
4867}
4868
4869/*
4870 * CTRL-L: clear screen and redraw.
4871 */
4872 static void
4873nv_clear(cap)
4874 cmdarg_T *cap;
4875{
4876 if (!checkclearop(cap->oap))
4877 {
4878#if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
4879 /*
4880 * Right now, the BeBox doesn't seem to have an easy way to detect
4881 * window resizing, so we cheat and make the user detect it
4882 * manually with CTRL-L instead
4883 */
4884 ui_get_shellsize();
4885#endif
4886#ifdef FEAT_SYN_HL
4887 /* Clear all syntax states to force resyncing. */
4888 syn_stack_free_all(curbuf);
4889#endif
4890 redraw_later(CLEAR);
4891 }
4892}
4893
4894/*
4895 * CTRL-O: In Select mode: switch to Visual mode for one command.
4896 * Otherwise: Go to older pcmark.
4897 */
4898 static void
4899nv_ctrlo(cap)
4900 cmdarg_T *cap;
4901{
4902#ifdef FEAT_VISUAL
4903 if (VIsual_active && VIsual_select)
4904 {
4905 VIsual_select = FALSE;
4906 showmode();
4907 restart_VIsual_select = 2; /* restart Select mode later */
4908 }
4909 else
4910#endif
4911 {
4912 cap->count1 = -cap->count1;
4913 nv_pcmark(cap);
4914 }
4915}
4916
4917/*
4918 * CTRL-^ command, short for ":e #"
4919 */
4920 static void
4921nv_hat(cap)
4922 cmdarg_T *cap;
4923{
4924 if (!checkclearopq(cap->oap))
4925 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
4926 GETF_SETMARK|GETF_ALT, FALSE);
4927}
4928
4929/*
4930 * "Z" commands.
4931 */
4932 static void
4933nv_Zet(cap)
4934 cmdarg_T *cap;
4935{
4936 if (!checkclearopq(cap->oap))
4937 {
4938 switch (cap->nchar)
4939 {
4940 /* "ZZ": equivalent to ":x". */
4941 case 'Z': do_cmdline_cmd((char_u *)"x");
4942 break;
4943
4944 /* "ZQ": equivalent to ":q!" (Elvis compatible). */
4945 case 'Q': do_cmdline_cmd((char_u *)"q!");
4946 break;
4947
4948 default: clearopbeep(cap->oap);
4949 }
4950 }
4951}
4952
4953#if defined(FEAT_WINDOWS) || defined(PROTO)
4954/*
4955 * Call nv_ident() as if "c1" was used, with "c2" as next character.
4956 */
4957 void
4958do_nv_ident(c1, c2)
4959 int c1;
4960 int c2;
4961{
4962 oparg_T oa;
4963 cmdarg_T ca;
4964
4965 clear_oparg(&oa);
4966 vim_memset(&ca, 0, sizeof(ca));
4967 ca.oap = &oa;
4968 ca.cmdchar = c1;
4969 ca.nchar = c2;
4970 nv_ident(&ca);
4971}
4972#endif
4973
4974/*
4975 * Handle the commands that use the word under the cursor.
4976 * [g] CTRL-] :ta to current identifier
4977 * [g] 'K' run program for current identifier
4978 * [g] '*' / to current identifier or string
4979 * [g] '#' ? to current identifier or string
4980 * g ']' :tselect for current identifier
4981 */
4982 static void
4983nv_ident(cap)
4984 cmdarg_T *cap;
4985{
4986 char_u *ptr = NULL;
4987 char_u *buf;
4988 char_u *p;
4989 char_u *kp; /* value of 'keywordprg' */
4990 int kp_help; /* 'keywordprg' is ":help" */
4991 int n = 0; /* init for GCC */
4992 int cmdchar;
4993 int g_cmd; /* "g" command */
4994 char_u *aux_ptr;
4995 int isman;
4996 int isman_s;
4997
4998 if (cap->cmdchar == 'g') /* "g*", "g#", "g]" and "gCTRL-]" */
4999 {
5000 cmdchar = cap->nchar;
5001 g_cmd = TRUE;
5002 }
5003 else
5004 {
5005 cmdchar = cap->cmdchar;
5006 g_cmd = FALSE;
5007 }
5008
5009 if (cmdchar == POUND) /* the pound sign, '#' for English keyboards */
5010 cmdchar = '#';
5011
5012 /*
5013 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
5014 */
5015 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
5016 {
5017#ifdef FEAT_VISUAL
5018 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
5019 return;
5020#endif
5021 if (checkclearopq(cap->oap))
5022 return;
5023 }
5024
5025 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
5026 (cmdchar == '*' || cmdchar == '#')
5027 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
5028 {
5029 clearop(cap->oap);
5030 return;
5031 }
5032
5033 /* Allocate buffer to put the command in. Inserting backslashes can
5034 * double the length of the word. p_kp / curbuf->b_p_kp could be added
5035 * and some numbers. */
5036 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
5037 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
5038 || STRCMP(kp, ":help") == 0);
5039 buf = alloc((unsigned)(n * 2 + 30 + STRLEN(kp)));
5040 if (buf == NULL)
5041 return;
5042 buf[0] = NUL;
5043
5044 switch (cmdchar)
5045 {
5046 case '*':
5047 case '#':
5048 /*
5049 * Put cursor at start of word, makes search skip the word
5050 * under the cursor.
5051 * Call setpcmark() first, so "*``" puts the cursor back where
5052 * it was.
5053 */
5054 setpcmark();
5055 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
5056
5057 if (!g_cmd && vim_iswordp(ptr))
5058 STRCPY(buf, "\\<");
5059 no_smartcase = TRUE; /* don't use 'smartcase' now */
5060 break;
5061
5062 case 'K':
5063 if (kp_help)
5064 STRCPY(buf, "he! ");
5065 else
5066 {
5067 /* When a count is given, turn it into a range. Is this
5068 * really what we want? */
5069 isman = (STRCMP(kp, "man") == 0);
5070 isman_s = (STRCMP(kp, "man -s") == 0);
5071 if (cap->count0 != 0 && !(isman || isman_s))
5072 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
5073
5074 STRCAT(buf, "! ");
5075 if (cap->count0 == 0 && isman_s)
5076 STRCAT(buf, "man");
5077 else
5078 STRCAT(buf, kp);
5079 STRCAT(buf, " ");
5080 if (cap->count0 != 0 && (isman || isman_s))
5081 {
5082 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
5083 STRCAT(buf, " ");
5084 }
5085 }
5086 break;
5087
5088 case ']':
5089#ifdef FEAT_CSCOPE
5090 if (p_cst)
5091 STRCPY(buf, "cstag ");
5092 else
5093#endif
5094 STRCPY(buf, "ts ");
5095 break;
5096
5097 default:
5098 if (curbuf->b_help)
5099 STRCPY(buf, "he! ");
5100 else if (g_cmd)
5101 STRCPY(buf, "tj ");
5102 else
5103 STRCPY(buf, "ta ");
5104 }
5105
5106 /*
5107 * Now grab the chars in the identifier
5108 */
5109 if (cmdchar == '*')
5110 aux_ptr = (char_u *)(p_magic ? "/.*~[^$\\" : "/^$\\");
5111 else if (cmdchar == '#')
5112 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
5113 else if (cmdchar == 'K' && !kp_help)
5114 aux_ptr = (char_u *)" \t\\\"|!";
5115 else
5116 /* Don't escape spaces and Tabs in a tag with a backslash */
5117 aux_ptr = (char_u *)"\\|\"";
5118
5119 p = buf + STRLEN(buf);
5120 while (n-- > 0)
5121 {
5122 /* put a backslash before \ and some others */
5123 if (vim_strchr(aux_ptr, *ptr) != NULL)
5124 *p++ = '\\';
5125#ifdef FEAT_MBYTE
5126 /* When current byte is a part of multibyte character, copy all bytes
5127 * of that character. */
5128 if (has_mbyte)
5129 {
5130 int i;
5131 int len = (*mb_ptr2len_check)(ptr) - 1;
5132
5133 for (i = 0; i < len && n >= 1; ++i, --n)
5134 *p++ = *ptr++;
5135 }
5136#endif
5137 *p++ = *ptr++;
5138 }
5139 *p = NUL;
5140
5141 /*
5142 * Execute the command.
5143 */
5144 if (cmdchar == '*' || cmdchar == '#')
5145 {
5146 if (!g_cmd && (
5147#ifdef FEAT_MBYTE
5148 has_mbyte ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr)) :
5149#endif
5150 vim_iswordc(ptr[-1])))
5151 STRCAT(buf, "\\>");
5152#ifdef FEAT_CMDHIST
5153 /* put pattern in search history */
5154 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
5155#endif
5156 normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0);
5157 }
5158 else
5159 do_cmdline_cmd(buf);
5160
5161 vim_free(buf);
5162}
5163
5164#ifdef FEAT_VISUAL
5165/*
5166 * Get visually selected text, within one line only.
5167 * Returns FAIL if more than one line selected.
5168 */
5169 static int
5170get_visual_text(cap, pp, lenp)
5171 cmdarg_T *cap;
5172 char_u **pp; /* return: start of selected text */
5173 int *lenp; /* return: length of selected text */
5174{
5175 if (VIsual_mode != 'V')
5176 unadjust_for_sel();
5177 if (VIsual.lnum != curwin->w_cursor.lnum)
5178 {
5179 clearopbeep(cap->oap);
5180 return FAIL;
5181 }
5182 if (VIsual_mode == 'V')
5183 {
5184 *pp = ml_get_curline();
5185 *lenp = (int)STRLEN(*pp);
5186 }
5187 else
5188 {
5189 if (lt(curwin->w_cursor, VIsual))
5190 {
5191 *pp = ml_get_pos(&curwin->w_cursor);
5192 *lenp = VIsual.col - curwin->w_cursor.col + 1;
5193 }
5194 else
5195 {
5196 *pp = ml_get_pos(&VIsual);
5197 *lenp = curwin->w_cursor.col - VIsual.col + 1;
5198 }
5199#ifdef FEAT_MBYTE
5200 if (has_mbyte)
5201 /* Correct the length to include the whole last character. */
5202 *lenp += (*mb_ptr2len_check)(*pp + (*lenp - 1)) - 1;
5203#endif
5204 }
5205 reset_VIsual_and_resel();
5206 return OK;
5207}
5208#endif
5209
5210/*
5211 * CTRL-T: backwards in tag stack
5212 */
5213 static void
5214nv_tagpop(cap)
5215 cmdarg_T *cap;
5216{
5217 if (!checkclearopq(cap->oap))
5218 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
5219}
5220
5221/*
5222 * Handle scrolling command 'H', 'L' and 'M'.
5223 */
5224 static void
5225nv_scroll(cap)
5226 cmdarg_T *cap;
5227{
5228 int used = 0;
5229 long n;
5230#ifdef FEAT_FOLDING
5231 linenr_T lnum;
5232#endif
5233 int half;
5234
5235 cap->oap->motion_type = MLINE;
5236 setpcmark();
5237
5238 if (cap->cmdchar == 'L')
5239 {
5240 validate_botline(); /* make sure curwin->w_botline is valid */
5241 curwin->w_cursor.lnum = curwin->w_botline - 1;
5242 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
5243 curwin->w_cursor.lnum = 1;
5244 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005245 {
5246#ifdef FEAT_FOLDING
5247 if (hasAnyFolding(curwin))
5248 {
5249 /* Count a fold for one screen line. */
5250 for (n = cap->count1 - 1; n > 0
5251 && curwin->w_cursor.lnum > curwin->w_topline; --n)
5252 {
5253 (void)hasFolding(curwin->w_cursor.lnum,
5254 &curwin->w_cursor.lnum, NULL);
5255 --curwin->w_cursor.lnum;
5256 }
5257 }
5258 else
5259#endif
5260 curwin->w_cursor.lnum -= cap->count1 - 1;
5261 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262 }
5263 else
5264 {
5265 if (cap->cmdchar == 'M')
5266 {
5267#ifdef FEAT_DIFF
5268 /* Don't count filler lines above the window. */
5269 used -= diff_check_fill(curwin, curwin->w_topline)
5270 - curwin->w_topfill;
5271#endif
5272 validate_botline(); /* make sure w_empty_rows is valid */
5273 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
5274 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
5275 {
5276#ifdef FEAT_DIFF
5277 /* Count half he number of filler lines to be "below this
5278 * line" and half to be "above the next line". */
5279 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
5280 + n) / 2 >= half)
5281 {
5282 --n;
5283 break;
5284 }
5285#endif
5286 used += plines(curwin->w_topline + n);
5287 if (used >= half)
5288 break;
5289#ifdef FEAT_FOLDING
5290 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
5291 n = lnum - curwin->w_topline;
5292#endif
5293 }
5294 if (n > 0 && used > curwin->w_height)
5295 --n;
5296 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005297 else /* (cap->cmdchar == 'H') */
5298 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005300#ifdef FEAT_FOLDING
5301 if (hasAnyFolding(curwin))
5302 {
5303 /* Count a fold for one screen line. */
5304 lnum = curwin->w_topline;
5305 while (n-- > 0 && lnum < curwin->w_botline - 1)
5306 {
5307 hasFolding(lnum, NULL, &lnum);
5308 ++lnum;
5309 }
5310 n = lnum - curwin->w_topline;
5311 }
5312#endif
5313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 curwin->w_cursor.lnum = curwin->w_topline + n;
5315 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5316 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5317 }
5318
5319 cursor_correct(); /* correct for 'so' */
5320 beginline(BL_SOL | BL_FIX);
5321}
5322
5323/*
5324 * Cursor right commands.
5325 */
5326 static void
5327nv_right(cap)
5328 cmdarg_T *cap;
5329{
5330 long n;
5331#ifdef FEAT_VISUAL
5332 int PAST_LINE;
5333#else
5334# define PAST_LINE 0
5335#endif
5336
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005337 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
5338 {
5339 /* <C-Right> and <S-Right> move a word or WORD right */
5340 if (mod_mask & MOD_MASK_CTRL)
5341 cap->arg = TRUE;
5342 nv_wordcmd(cap);
5343 return;
5344 }
5345
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 cap->oap->motion_type = MCHAR;
5347 cap->oap->inclusive = FALSE;
5348#ifdef FEAT_VISUAL
5349 PAST_LINE = (VIsual_active && *p_sel != 'o');
5350
5351# ifdef FEAT_VIRTUALEDIT
5352 /*
5353 * In virtual mode, there's no such thing as "PAST_LINE", as lines are
5354 * (theoretically) infinitly long.
5355 */
5356 if (virtual_active())
5357 PAST_LINE = 0;
5358# endif
5359#endif
5360
5361 for (n = cap->count1; n > 0; --n)
5362 {
5363 if ((!PAST_LINE && oneright() == FAIL)
5364 || (PAST_LINE && *ml_get_cursor() == NUL))
5365 {
5366 /*
5367 * <Space> wraps to next line if 'whichwrap' bit 1 set.
5368 * 'l' wraps to next line if 'whichwrap' bit 2 set.
5369 * CURS_RIGHT wraps to next line if 'whichwrap' bit 3 set
5370 */
5371 if ( ((cap->cmdchar == ' '
5372 && vim_strchr(p_ww, 's') != NULL)
5373 || (cap->cmdchar == 'l'
5374 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00005375 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 && vim_strchr(p_ww, '>') != NULL))
5377 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5378 {
5379 /* When deleting we also count the NL as a character.
5380 * Set cap->oap->inclusive when last char in the line is
5381 * included, move to next line after that */
5382 if ( (cap->oap->op_type == OP_DELETE
5383 || cap->oap->op_type == OP_CHANGE)
5384 && !cap->oap->inclusive
5385 && !lineempty(curwin->w_cursor.lnum))
5386 cap->oap->inclusive = TRUE;
5387 else
5388 {
5389 ++curwin->w_cursor.lnum;
5390 curwin->w_cursor.col = 0;
5391#ifdef FEAT_VIRTUALEDIT
5392 curwin->w_cursor.coladd = 0;
5393#endif
5394 curwin->w_set_curswant = TRUE;
5395 cap->oap->inclusive = FALSE;
5396 }
5397 continue;
5398 }
5399 if (cap->oap->op_type == OP_NOP)
5400 {
5401 /* Only beep and flush if not moved at all */
5402 if (n == cap->count1)
5403 beep_flush();
5404 }
5405 else
5406 {
5407 if (!lineempty(curwin->w_cursor.lnum))
5408 cap->oap->inclusive = TRUE;
5409 }
5410 break;
5411 }
5412#ifdef FEAT_VISUAL
5413 else if (PAST_LINE)
5414 {
5415 curwin->w_set_curswant = TRUE;
5416# ifdef FEAT_VIRTUALEDIT
5417 if (virtual_active())
5418 oneright();
5419 else
5420# endif
5421 {
5422# ifdef FEAT_MBYTE
5423 if (has_mbyte)
5424 curwin->w_cursor.col +=
5425 (*mb_ptr2len_check)(ml_get_cursor());
5426 else
5427# endif
5428 ++curwin->w_cursor.col;
5429 }
5430 }
5431#endif
5432 }
5433#ifdef FEAT_FOLDING
5434 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
5435 && cap->oap->op_type == OP_NOP)
5436 foldOpenCursor();
5437#endif
5438}
5439
5440/*
5441 * Cursor left commands.
5442 *
5443 * Returns TRUE when operator end should not be adjusted.
5444 */
5445 static void
5446nv_left(cap)
5447 cmdarg_T *cap;
5448{
5449 long n;
5450
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005451 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
5452 {
5453 /* <C-Left> and <S-Left> move a word or WORD left */
5454 if (mod_mask & MOD_MASK_CTRL)
5455 cap->arg = 1;
5456 nv_bck_word(cap);
5457 return;
5458 }
5459
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460 cap->oap->motion_type = MCHAR;
5461 cap->oap->inclusive = FALSE;
5462 for (n = cap->count1; n > 0; --n)
5463 {
5464 if (oneleft() == FAIL)
5465 {
5466 /* <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
5467 * 'h' wraps to previous line if 'whichwrap' has 'h'.
5468 * CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
5469 */
5470 if ( (((cap->cmdchar == K_BS
5471 || cap->cmdchar == Ctrl_H)
5472 && vim_strchr(p_ww, 'b') != NULL)
5473 || (cap->cmdchar == 'h'
5474 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00005475 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 && vim_strchr(p_ww, '<') != NULL))
5477 && curwin->w_cursor.lnum > 1)
5478 {
5479 --(curwin->w_cursor.lnum);
5480 coladvance((colnr_T)MAXCOL);
5481 curwin->w_set_curswant = TRUE;
5482
5483 /* When the NL before the first char has to be deleted we
5484 * put the cursor on the NUL after the previous line.
5485 * This is a very special case, be careful!
5486 * don't adjust op_end now, otherwise it won't work */
5487 if ( (cap->oap->op_type == OP_DELETE
5488 || cap->oap->op_type == OP_CHANGE)
5489 && !lineempty(curwin->w_cursor.lnum))
5490 {
5491 ++curwin->w_cursor.col;
5492 cap->retval |= CA_NO_ADJ_OP_END;
5493 }
5494 continue;
5495 }
5496 /* Only beep and flush if not moved at all */
5497 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
5498 beep_flush();
5499 break;
5500 }
5501 }
5502#ifdef FEAT_FOLDING
5503 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
5504 && cap->oap->op_type == OP_NOP)
5505 foldOpenCursor();
5506#endif
5507}
5508
5509/*
5510 * Cursor up commands.
5511 * cap->arg is TRUE for "-": Move cursor to first non-blank.
5512 */
5513 static void
5514nv_up(cap)
5515 cmdarg_T *cap;
5516{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005517 if (mod_mask & MOD_MASK_SHIFT)
5518 {
5519 /* <S-Up> is page up */
5520 cap->arg = BACKWARD;
5521 nv_page(cap);
5522 }
5523 else
5524 {
5525 cap->oap->motion_type = MLINE;
5526 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
5527 clearopbeep(cap->oap);
5528 else if (cap->arg)
5529 beginline(BL_WHITE | BL_FIX);
5530 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531}
5532
5533/*
5534 * Cursor down commands.
5535 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
5536 */
5537 static void
5538nv_down(cap)
5539 cmdarg_T *cap;
5540{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005541 if (mod_mask & MOD_MASK_SHIFT)
5542 {
5543 /* <S-Down> is page down */
5544 cap->arg = FORWARD;
5545 nv_page(cap);
5546 }
5547 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5549 /* In a quickfix window a <CR> jumps to the error under the cursor. */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005550 if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551 do_cmdline_cmd((char_u *)".cc");
5552 else
5553#endif
5554 {
5555#ifdef FEAT_CMDWIN
5556 /* In the cmdline window a <CR> executes the command. */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005557 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 cmdwin_result = CAR;
5559 else
5560#endif
5561 {
5562 cap->oap->motion_type = MLINE;
5563 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
5564 clearopbeep(cap->oap);
5565 else if (cap->arg)
5566 beginline(BL_WHITE | BL_FIX);
5567 }
5568 }
5569}
5570
5571#ifdef FEAT_SEARCHPATH
5572/*
5573 * Grab the file name under the cursor and edit it.
5574 */
5575 static void
5576nv_gotofile(cap)
5577 cmdarg_T *cap;
5578{
5579 char_u *ptr;
5580
5581#ifdef FEAT_CMDWIN
5582 if (cmdwin_type != 0)
5583 {
5584 clearopbeep(cap->oap);
5585 return;
5586 }
5587#endif
5588
5589# ifdef FEAT_VISUAL
5590 /*
5591 * In Visual mode, use the selected text as a file name.
5592 * Don't allow selection across multiple lines.
5593 */
5594 if (VIsual_active)
5595 {
5596 int len;
5597
5598 if (get_visual_text(cap, &ptr, &len) == FAIL)
5599 return;
5600 ptr = find_file_name_in_path(ptr, len,
5601 FNAME_MESS|FNAME_EXP|FNAME_REL, cap->count1, curbuf->b_ffname);
5602 }
5603 else
5604# endif
5605 ptr = file_name_at_cursor(FNAME_MESS|FNAME_HYP|FNAME_EXP|FNAME_REL,
5606 cap->count1);
5607
5608 if (ptr != NULL)
5609 {
5610 /* do autowrite if necessary */
5611 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !P_HID(curbuf))
5612 autowrite(curbuf, FALSE);
5613 setpcmark();
5614 (void)do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
5615 P_HID(curbuf) ? ECMD_HIDE : 0);
5616 vim_free(ptr);
5617 }
5618 else
5619 clearop(cap->oap);
5620}
5621#endif
5622
5623/*
5624 * <End> command: to end of current line or last line.
5625 */
5626 static void
5627nv_end(cap)
5628 cmdarg_T *cap;
5629{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005630 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) /* CTRL-END = goto last line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005631 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005632 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633 nv_goto(cap);
5634 cap->count1 = 1; /* to end of current line */
5635 }
5636 nv_dollar(cap);
5637}
5638
5639/*
5640 * Handle the "$" command.
5641 */
5642 static void
5643nv_dollar(cap)
5644 cmdarg_T *cap;
5645{
5646 cap->oap->motion_type = MCHAR;
5647 cap->oap->inclusive = TRUE;
5648#ifdef FEAT_VIRTUALEDIT
5649 /* In virtual mode when off the edge of a line and an operator
5650 * is pending (whew!) keep the cursor where it is.
5651 * Otherwise, send it to the end of the line. */
5652 if (!virtual_active() || gchar_cursor() != NUL
5653 || cap->oap->op_type == OP_NOP)
5654#endif
5655 curwin->w_curswant = MAXCOL; /* so we stay at the end */
5656 if (cursor_down((long)(cap->count1 - 1),
5657 cap->oap->op_type == OP_NOP) == FAIL)
5658 clearopbeep(cap->oap);
5659#ifdef FEAT_FOLDING
5660 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
5661 foldOpenCursor();
5662#endif
5663}
5664
5665/*
5666 * Implementation of '?' and '/' commands.
5667 * If cap->arg is TRUE don't set PC mark.
5668 */
5669 static void
5670nv_search(cap)
5671 cmdarg_T *cap;
5672{
5673 oparg_T *oap = cap->oap;
5674
5675 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
5676 {
5677 /* Translate "g??" to "g?g?" */
5678 cap->cmdchar = 'g';
5679 cap->nchar = '?';
5680 nv_operator(cap);
5681 return;
5682 }
5683
5684 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0);
5685
5686 if (cap->searchbuf == NULL)
5687 {
5688 clearop(oap);
5689 return;
5690 }
5691
5692 normal_search(cap, cap->cmdchar, cap->searchbuf,
5693 (cap->arg ? 0 : SEARCH_MARK));
5694}
5695
5696/*
5697 * Handle "N" and "n" commands.
5698 * cap->arg is SEARCH_REV for "N", 0 for "n".
5699 */
5700 static void
5701nv_next(cap)
5702 cmdarg_T *cap;
5703{
5704 normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg);
5705}
5706
5707/*
5708 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
5709 * Uses only cap->count1 and cap->oap from "cap".
5710 */
5711 static void
5712normal_search(cap, dir, pat, opt)
5713 cmdarg_T *cap;
5714 int dir;
5715 char_u *pat;
5716 int opt; /* extra flags for do_search() */
5717{
5718 int i;
5719
5720 cap->oap->motion_type = MCHAR;
5721 cap->oap->inclusive = FALSE;
5722 cap->oap->use_reg_one = TRUE;
5723 curwin->w_set_curswant = TRUE;
5724
5725 i = do_search(cap->oap, dir, pat, cap->count1,
5726 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG);
5727 if (i == 0)
5728 clearop(cap->oap);
5729 else
5730 {
5731 if (i == 2)
5732 cap->oap->motion_type = MLINE;
5733#ifdef FEAT_VIRTUALEDIT
5734 curwin->w_cursor.coladd = 0;
5735#endif
5736#ifdef FEAT_FOLDING
5737 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
5738 foldOpenCursor();
5739#endif
5740 }
5741
5742 /* "/$" will put the cursor after the end of the line, may need to
5743 * correct that here */
5744 check_cursor();
5745}
5746
5747/*
5748 * Character search commands.
5749 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
5750 * ',' and FALSE for ';'.
5751 * cap->nchar is NUL for ',' and ';' (repeat the search)
5752 */
5753 static void
5754nv_csearch(cap)
5755 cmdarg_T *cap;
5756{
5757 int t_cmd;
5758
5759 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
5760 t_cmd = TRUE;
5761 else
5762 t_cmd = FALSE;
5763
5764 cap->oap->motion_type = MCHAR;
5765 if (cap->arg == BACKWARD)
5766 cap->oap->inclusive = FALSE;
5767 else
5768 cap->oap->inclusive = TRUE;
5769 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
5770 clearopbeep(cap->oap);
5771 else
5772 {
5773 curwin->w_set_curswant = TRUE;
5774#ifdef FEAT_VIRTUALEDIT
5775 /* Include a Tab for "tx" and for "dfx". */
5776 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
5777 && (t_cmd || cap->oap->op_type != OP_NOP))
5778 {
5779 colnr_T scol, ecol;
5780
5781 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
5782 curwin->w_cursor.coladd = ecol - scol;
5783 }
5784 else
5785 curwin->w_cursor.coladd = 0;
5786#endif
5787#ifdef FEAT_VISUAL
5788 adjust_for_sel(cap);
5789#endif
5790#ifdef FEAT_FOLDING
5791 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
5792 foldOpenCursor();
5793#endif
5794 }
5795}
5796
5797/*
5798 * "[" and "]" commands.
5799 * cap->arg is BACKWARD for "[" and FORWARD for "]".
5800 */
5801 static void
5802nv_brackets(cap)
5803 cmdarg_T *cap;
5804{
5805 pos_T new_pos;
5806 pos_T prev_pos;
5807 pos_T *pos = NULL; /* init for GCC */
5808 pos_T old_pos; /* cursor position before command */
5809 int flag;
5810 long n;
5811 int findc;
5812 int c;
5813
5814 cap->oap->motion_type = MCHAR;
5815 cap->oap->inclusive = FALSE;
5816 old_pos = curwin->w_cursor;
5817#ifdef FEAT_VIRTUALEDIT
5818 curwin->w_cursor.coladd = 0; /* TODO: don't do this for an error. */
5819#endif
5820
5821#ifdef FEAT_SEARCHPATH
5822 /*
5823 * "[f" or "]f" : Edit file under the cursor (same as "gf")
5824 */
5825 if (cap->nchar == 'f')
5826 nv_gotofile(cap);
5827 else
5828#endif
5829
5830#ifdef FEAT_FIND_ID
5831 /*
5832 * Find the occurence(s) of the identifier or define under cursor
5833 * in current and included files or jump to the first occurence.
5834 *
5835 * search list jump
5836 * fwd bwd fwd bwd fwd bwd
5837 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
5838 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
5839 */
5840 if (vim_strchr((char_u *)
5841#ifdef EBCDIC
5842 "iI\005dD\067",
5843#else
5844 "iI\011dD\004",
5845#endif
5846 cap->nchar) != NULL)
5847 {
5848 char_u *ptr;
5849 int len;
5850
5851 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
5852 clearop(cap->oap);
5853 else
5854 {
5855 find_pattern_in_path(ptr, 0, len, TRUE,
5856 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
5857 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
5858 cap->count1,
5859 isupper(cap->nchar) ? ACTION_SHOW_ALL :
5860 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
5861 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
5862 (linenr_T)MAXLNUM);
5863 curwin->w_set_curswant = TRUE;
5864 }
5865 }
5866 else
5867#endif
5868
5869 /*
5870 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
5871 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
5872 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
5873 * "[m" or "]m" search for prev/next start of (Java) method.
5874 * "[M" or "]M" search for prev/next end of (Java) method.
5875 */
5876 if ( (cap->cmdchar == '['
5877 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
5878 || (cap->cmdchar == ']'
5879 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
5880 {
5881 if (cap->nchar == '*')
5882 cap->nchar = '/';
5883 new_pos.lnum = 0;
5884 prev_pos.lnum = 0;
5885 if (cap->nchar == 'm' || cap->nchar == 'M')
5886 {
5887 if (cap->cmdchar == '[')
5888 findc = '{';
5889 else
5890 findc = '}';
5891 n = 9999;
5892 }
5893 else
5894 {
5895 findc = cap->nchar;
5896 n = cap->count1;
5897 }
5898 for ( ; n > 0; --n)
5899 {
5900 if ((pos = findmatchlimit(cap->oap, findc,
5901 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
5902 {
5903 if (new_pos.lnum == 0) /* nothing found */
5904 {
5905 if (cap->nchar != 'm' && cap->nchar != 'M')
5906 clearopbeep(cap->oap);
5907 }
5908 else
5909 pos = &new_pos; /* use last one found */
5910 break;
5911 }
5912 prev_pos = new_pos;
5913 curwin->w_cursor = *pos;
5914 new_pos = *pos;
5915 }
5916 curwin->w_cursor = old_pos;
5917
5918 /*
5919 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
5920 * brought us to the match for "[m" and "]M" when inside a method.
5921 * Try finding the '{' or '}' we want to be at.
5922 * Also repeat for the given count.
5923 */
5924 if (cap->nchar == 'm' || cap->nchar == 'M')
5925 {
5926 /* norm is TRUE for "]M" and "[m" */
5927 int norm = ((findc == '{') == (cap->nchar == 'm'));
5928
5929 n = cap->count1;
5930 /* found a match: we were inside a method */
5931 if (prev_pos.lnum != 0)
5932 {
5933 pos = &prev_pos;
5934 curwin->w_cursor = prev_pos;
5935 if (norm)
5936 --n;
5937 }
5938 else
5939 pos = NULL;
5940 while (n > 0)
5941 {
5942 for (;;)
5943 {
5944 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
5945 {
5946 /* if not found anything, that's an error */
5947 if (pos == NULL)
5948 clearopbeep(cap->oap);
5949 n = 0;
5950 break;
5951 }
5952 c = gchar_cursor();
5953 if (c == '{' || c == '}')
5954 {
5955 /* Must have found end/start of class: use it.
5956 * Or found the place to be at. */
5957 if ((c == findc && norm) || (n == 1 && !norm))
5958 {
5959 new_pos = curwin->w_cursor;
5960 pos = &new_pos;
5961 n = 0;
5962 }
5963 /* if no match found at all, we started outside of the
5964 * class and we're inside now. Just go on. */
5965 else if (new_pos.lnum == 0)
5966 {
5967 new_pos = curwin->w_cursor;
5968 pos = &new_pos;
5969 }
5970 /* found start/end of other method: go to match */
5971 else if ((pos = findmatchlimit(cap->oap, findc,
5972 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
5973 0)) == NULL)
5974 n = 0;
5975 else
5976 curwin->w_cursor = *pos;
5977 break;
5978 }
5979 }
5980 --n;
5981 }
5982 curwin->w_cursor = old_pos;
5983 if (pos == NULL && new_pos.lnum != 0)
5984 clearopbeep(cap->oap);
5985 }
5986 if (pos != NULL)
5987 {
5988 setpcmark();
5989 curwin->w_cursor = *pos;
5990 curwin->w_set_curswant = TRUE;
5991#ifdef FEAT_FOLDING
5992 if ((fdo_flags & FDO_BLOCK) && KeyTyped
5993 && cap->oap->op_type == OP_NOP)
5994 foldOpenCursor();
5995#endif
5996 }
5997 }
5998
5999 /*
6000 * "[[", "[]", "]]" and "][": move to start or end of function
6001 */
6002 else if (cap->nchar == '[' || cap->nchar == ']')
6003 {
6004 if (cap->nchar == cap->cmdchar) /* "]]" or "[[" */
6005 flag = '{';
6006 else
6007 flag = '}'; /* "][" or "[]" */
6008
6009 curwin->w_set_curswant = TRUE;
6010 /*
6011 * Imitate strange Vi behaviour: When using "]]" with an operator
6012 * we also stop at '}'.
6013 */
6014 if (!findpar(cap->oap, cap->arg, cap->count1, flag,
6015 (cap->oap->op_type != OP_NOP
6016 && cap->arg == FORWARD && flag == '{')))
6017 clearopbeep(cap->oap);
6018 else
6019 {
6020 if (cap->oap->op_type == OP_NOP)
6021 beginline(BL_WHITE | BL_FIX);
6022#ifdef FEAT_FOLDING
6023 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6024 foldOpenCursor();
6025#endif
6026 }
6027 }
6028
6029 /*
6030 * "[p", "[P", "]P" and "]p": put with indent adjustment
6031 */
6032 else if (cap->nchar == 'p' || cap->nchar == 'P')
6033 {
6034 if (!checkclearopq(cap->oap))
6035 {
6036 prep_redo_cmd(cap);
6037 do_put(cap->oap->regname,
6038 (cap->cmdchar == ']' && cap->nchar == 'p') ? FORWARD : BACKWARD,
6039 cap->count1, PUT_FIXINDENT);
6040 }
6041 }
6042
6043 /*
6044 * "['", "[`", "]'" and "]`": jump to next mark
6045 */
6046 else if (cap->nchar == '\'' || cap->nchar == '`')
6047 {
6048 pos = &curwin->w_cursor;
6049 for (n = cap->count1; n > 0; --n)
6050 {
6051 prev_pos = *pos;
6052 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
6053 cap->nchar == '\'');
6054 if (pos == NULL)
6055 break;
6056 }
6057 if (pos == NULL)
6058 pos = &prev_pos;
6059 nv_cursormark(cap, cap->nchar == '\'', pos);
6060 }
6061
6062#ifdef FEAT_MOUSE
6063 /*
6064 * [ or ] followed by a middle mouse click: put selected text with
6065 * indent adjustment. Any other button just does as usual.
6066 */
6067 else if (cap->nchar >= K_LEFTMOUSE && cap->nchar <= K_RIGHTRELEASE)
6068 {
6069 (void)do_mouse(cap->oap, cap->nchar,
6070 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
6071 cap->count1, PUT_FIXINDENT);
6072 }
6073#endif /* FEAT_MOUSE */
6074
6075#ifdef FEAT_FOLDING
6076 /*
6077 * "[z" and "]z": move to start or end of open fold.
6078 */
6079 else if (cap->nchar == 'z')
6080 {
6081 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
6082 cap->count1) == FAIL)
6083 clearopbeep(cap->oap);
6084 }
6085#endif
6086
6087#ifdef FEAT_DIFF
6088 /*
6089 * "[c" and "]c": move to next or previous diff-change.
6090 */
6091 else if (cap->nchar == 'c')
6092 {
6093 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
6094 cap->count1) == FAIL)
6095 clearopbeep(cap->oap);
6096 }
6097#endif
6098
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006099#ifdef FEAT_SYN_HL
6100 /*
6101 * "[s", "[S", "]s" and "]S": move to next spell error.
6102 */
6103 else if (cap->nchar == 's' || cap->nchar == 'S')
6104 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00006105 setpcmark();
6106 for (n = 0; n < cap->count1; ++n)
6107 if (spell_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006108 cap->nchar == 's' ? TRUE : FALSE) == FAIL)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00006109 {
6110 clearopbeep(cap->oap);
6111 break;
6112 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006113 }
6114#endif
6115
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 /* Not a valid cap->nchar. */
6117 else
6118 clearopbeep(cap->oap);
6119}
6120
6121/*
6122 * Handle Normal mode "%" command.
6123 */
6124 static void
6125nv_percent(cap)
6126 cmdarg_T *cap;
6127{
6128 pos_T *pos;
6129#ifdef FEAT_FOLDING
6130 linenr_T lnum = curwin->w_cursor.lnum;
6131#endif
6132
6133 cap->oap->inclusive = TRUE;
6134 if (cap->count0) /* {cnt}% : goto {cnt} percentage in file */
6135 {
6136 if (cap->count0 > 100)
6137 clearopbeep(cap->oap);
6138 else
6139 {
6140 cap->oap->motion_type = MLINE;
6141 setpcmark();
6142 /* Round up, so CTRL-G will give same value. Watch out for a
6143 * large line count, the line number must not go negative! */
6144 if (curbuf->b_ml.ml_line_count > 1000000)
6145 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
6146 / 100L * cap->count0;
6147 else
6148 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
6149 cap->count0 + 99L) / 100L;
6150 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6151 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6152 beginline(BL_SOL | BL_FIX);
6153 }
6154 }
6155 else /* "%" : go to matching paren */
6156 {
6157 cap->oap->motion_type = MCHAR;
6158 cap->oap->use_reg_one = TRUE;
6159 if ((pos = findmatch(cap->oap, NUL)) == NULL)
6160 clearopbeep(cap->oap);
6161 else
6162 {
6163 setpcmark();
6164 curwin->w_cursor = *pos;
6165 curwin->w_set_curswant = TRUE;
6166#ifdef FEAT_VIRTUALEDIT
6167 curwin->w_cursor.coladd = 0;
6168#endif
6169#ifdef FEAT_VISUAL
6170 adjust_for_sel(cap);
6171#endif
6172 }
6173 }
6174#ifdef FEAT_FOLDING
6175 if (cap->oap->op_type == OP_NOP
6176 && lnum != curwin->w_cursor.lnum
6177 && (fdo_flags & FDO_PERCENT)
6178 && KeyTyped)
6179 foldOpenCursor();
6180#endif
6181}
6182
6183/*
6184 * Handle "(" and ")" commands.
6185 * cap->arg is BACKWARD for "(" and FORWARD for ")".
6186 */
6187 static void
6188nv_brace(cap)
6189 cmdarg_T *cap;
6190{
6191 cap->oap->motion_type = MCHAR;
6192 cap->oap->use_reg_one = TRUE;
6193 if (cap->cmdchar == ')')
6194 cap->oap->inclusive = FALSE;
6195 else
6196 cap->oap->inclusive = TRUE;
6197 curwin->w_set_curswant = TRUE;
6198
6199 if (findsent(cap->arg, cap->count1) == FAIL)
6200 clearopbeep(cap->oap);
6201 else
6202 {
6203#ifdef FEAT_VIRTUALEDIT
6204 curwin->w_cursor.coladd = 0;
6205#endif
6206#ifdef FEAT_FOLDING
6207 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6208 foldOpenCursor();
6209#endif
6210 }
6211}
6212
6213/*
6214 * "m" command: Mark a position.
6215 */
6216 static void
6217nv_mark(cap)
6218 cmdarg_T *cap;
6219{
6220 if (!checkclearop(cap->oap))
6221 {
6222 if (setmark(cap->nchar) == FAIL)
6223 clearopbeep(cap->oap);
6224 }
6225}
6226
6227/*
6228 * "{" and "}" commands.
6229 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
6230 */
6231 static void
6232nv_findpar(cap)
6233 cmdarg_T *cap;
6234{
6235 cap->oap->motion_type = MCHAR;
6236 cap->oap->inclusive = FALSE;
6237 cap->oap->use_reg_one = TRUE;
6238 curwin->w_set_curswant = TRUE;
6239 if (!findpar(cap->oap, cap->arg, cap->count1, NUL, FALSE))
6240 clearopbeep(cap->oap);
6241 else
6242 {
6243#ifdef FEAT_VIRTUALEDIT
6244 curwin->w_cursor.coladd = 0;
6245#endif
6246#ifdef FEAT_FOLDING
6247 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
6248 foldOpenCursor();
6249#endif
6250 }
6251}
6252
6253/*
6254 * "u" command: Undo or make lower case.
6255 */
6256 static void
6257nv_undo(cap)
6258 cmdarg_T *cap;
6259{
6260 if (cap->oap->op_type == OP_LOWER
6261#ifdef FEAT_VISUAL
6262 || VIsual_active
6263#endif
6264 )
6265 {
6266 /* translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" */
6267 cap->cmdchar = 'g';
6268 cap->nchar = 'u';
6269 nv_operator(cap);
6270 }
6271 else
6272 nv_kundo(cap);
6273}
6274
6275/*
6276 * <Undo> command.
6277 */
6278 static void
6279nv_kundo(cap)
6280 cmdarg_T *cap;
6281{
6282 if (!checkclearopq(cap->oap))
6283 {
6284 u_undo((int)cap->count1);
6285 curwin->w_set_curswant = TRUE;
6286 }
6287}
6288
6289/*
6290 * Handle the "r" command.
6291 */
6292 static void
6293nv_replace(cap)
6294 cmdarg_T *cap;
6295{
6296 char_u *ptr;
6297 int had_ctrl_v;
6298 long n;
6299
6300 if (checkclearop(cap->oap))
6301 return;
6302
6303 /* get another character */
6304 if (cap->nchar == Ctrl_V)
6305 {
6306 had_ctrl_v = Ctrl_V;
6307 cap->nchar = get_literal();
6308 /* Don't redo a multibyte character with CTRL-V. */
6309 if (cap->nchar > DEL)
6310 had_ctrl_v = NUL;
6311 }
6312 else
6313 had_ctrl_v = NUL;
6314
6315#ifdef FEAT_VISUAL
6316 /* Visual mode "r" */
6317 if (VIsual_active)
6318 {
6319 nv_operator(cap);
6320 return;
6321 }
6322#endif
6323
6324#ifdef FEAT_VIRTUALEDIT
6325 /* Break tabs, etc. */
6326 if (virtual_active())
6327 {
6328 if (u_save_cursor() == FAIL)
6329 return;
6330 if (gchar_cursor() == NUL)
6331 {
6332 /* Add extra space and put the cursor on the first one. */
6333 coladvance_force((colnr_T)(getviscol() + cap->count1));
6334 curwin->w_cursor.col -= cap->count1;
6335 }
6336 else if (gchar_cursor() == TAB)
6337 coladvance_force(getviscol());
6338 }
6339#endif
6340
6341 /*
6342 * Check for a special key or not enough characters to replace.
6343 */
6344 ptr = ml_get_cursor();
6345 if (IS_SPECIAL(cap->nchar) || STRLEN(ptr) < (unsigned)cap->count1
6346#ifdef FEAT_MBYTE
6347 || (has_mbyte && mb_charlen(ptr) < cap->count1)
6348#endif
6349 )
6350 {
6351 clearopbeep(cap->oap);
6352 return;
6353 }
6354
6355 /*
6356 * Replacing with a TAB is done by edit() when it is complicated because
6357 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
6358 * Other characters are done below to avoid problems with things like
6359 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
6360 */
6361 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
6362 {
6363 stuffnumReadbuff(cap->count1);
6364 stuffcharReadbuff('R');
6365 stuffcharReadbuff('\t');
6366 stuffcharReadbuff(ESC);
6367 return;
6368 }
6369
6370 /* save line for undo */
6371 if (u_save_cursor() == FAIL)
6372 return;
6373
6374 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
6375 {
6376 /*
6377 * Replace character(s) by a single newline.
6378 * Strange vi behaviour: Only one newline is inserted.
6379 * Delete the characters here.
6380 * Insert the newline with an insert command, takes care of
6381 * autoindent. The insert command depends on being on the last
6382 * character of a line or not.
6383 */
6384#ifdef FEAT_MBYTE
6385 (void)del_chars(cap->count1, FALSE); /* delete the characters */
6386#else
6387 (void)del_bytes(cap->count1, FALSE); /* delete the characters */
6388#endif
6389 stuffcharReadbuff('\r');
6390 stuffcharReadbuff(ESC);
6391
6392 /* Give 'r' to edit(), to get the redo command right. */
6393 invoke_edit(cap, TRUE, 'r', FALSE);
6394 }
6395 else
6396 {
6397 prep_redo(cap->oap->regname, cap->count1,
6398 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
6399
6400 curbuf->b_op_start = curwin->w_cursor;
6401#ifdef FEAT_MBYTE
6402 if (has_mbyte)
6403 {
6404 int old_State = State;
6405
6406 if (cap->ncharC1 != 0)
6407 AppendCharToRedobuff(cap->ncharC1);
6408 if (cap->ncharC2 != 0)
6409 AppendCharToRedobuff(cap->ncharC2);
6410
6411 /* This is slow, but it handles replacing a single-byte with a
6412 * multi-byte and the other way around. Also handles adding
6413 * composing characters for utf-8. */
6414 for (n = cap->count1; n > 0; --n)
6415 {
6416 State = REPLACE;
6417 ins_char(cap->nchar);
6418 State = old_State;
6419 if (cap->ncharC1 != 0)
6420 ins_char(cap->ncharC1);
6421 if (cap->ncharC2 != 0)
6422 ins_char(cap->ncharC2);
6423 }
6424 }
6425 else
6426#endif
6427 {
6428 /*
6429 * Replace the characters within one line.
6430 */
6431 for (n = cap->count1; n > 0; --n)
6432 {
6433 /*
6434 * Get ptr again, because u_save and/or showmatch() will have
6435 * released the line. At the same time we let know that the
6436 * line will be changed.
6437 */
6438 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
6439 ptr[curwin->w_cursor.col] = cap->nchar;
6440 if (p_sm && msg_silent == 0)
6441 showmatch(cap->nchar);
6442 ++curwin->w_cursor.col;
6443 }
6444#ifdef FEAT_NETBEANS_INTG
6445 if (usingNetbeans)
6446 {
6447 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
6448
Bram Moolenaar009b2592004-10-24 19:18:58 +00006449 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
6450 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00006452 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 }
6454#endif
6455
6456 /* mark the buffer as changed and prepare for displaying */
6457 changed_bytes(curwin->w_cursor.lnum,
6458 (colnr_T)(curwin->w_cursor.col - cap->count1));
6459 }
6460 --curwin->w_cursor.col; /* cursor on the last replaced char */
6461#ifdef FEAT_MBYTE
6462 /* if the character on the left of the current cursor is a multi-byte
6463 * character, move two characters left */
6464 if (has_mbyte)
6465 mb_adjust_cursor();
6466#endif
6467 curbuf->b_op_end = curwin->w_cursor;
6468 curwin->w_set_curswant = TRUE;
6469 set_last_insert(cap->nchar);
6470 }
6471}
6472
6473#ifdef FEAT_VISUAL
6474/*
6475 * 'o': Exchange start and end of Visual area.
6476 * 'O': same, but in block mode exchange left and right corners.
6477 */
6478 static void
6479v_swap_corners(cmdchar)
6480 int cmdchar;
6481{
6482 pos_T old_cursor;
6483 colnr_T left, right;
6484
6485 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
6486 {
6487 old_cursor = curwin->w_cursor;
6488 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
6489 curwin->w_cursor.lnum = VIsual.lnum;
6490 coladvance(left);
6491 VIsual = curwin->w_cursor;
6492
6493 curwin->w_cursor.lnum = old_cursor.lnum;
6494 curwin->w_curswant = right;
6495 /* 'selection "exclusive" and cursor at right-bottom corner: move it
6496 * right one column */
6497 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
6498 ++curwin->w_curswant;
6499 coladvance(curwin->w_curswant);
6500 if (curwin->w_cursor.col == old_cursor.col
6501#ifdef FEAT_VIRTUALEDIT
6502 && (!virtual_active()
6503 || curwin->w_cursor.coladd == old_cursor.coladd)
6504#endif
6505 )
6506 {
6507 curwin->w_cursor.lnum = VIsual.lnum;
6508 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
6509 ++right;
6510 coladvance(right);
6511 VIsual = curwin->w_cursor;
6512
6513 curwin->w_cursor.lnum = old_cursor.lnum;
6514 coladvance(left);
6515 curwin->w_curswant = left;
6516 }
6517 }
6518 else
6519 {
6520 old_cursor = curwin->w_cursor;
6521 curwin->w_cursor = VIsual;
6522 VIsual = old_cursor;
6523 curwin->w_set_curswant = TRUE;
6524 }
6525}
6526#endif /* FEAT_VISUAL */
6527
6528/*
6529 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
6530 */
6531 static void
6532nv_Replace(cap)
6533 cmdarg_T *cap;
6534{
6535#ifdef FEAT_VISUAL
6536 if (VIsual_active) /* "R" is replace lines */
6537 {
6538 cap->cmdchar = 'c';
6539 cap->nchar = NUL;
6540 VIsual_mode = 'V';
6541 nv_operator(cap);
6542 }
6543 else
6544#endif
6545 if (!checkclearopq(cap->oap))
6546 {
6547 if (!curbuf->b_p_ma)
6548 EMSG(_(e_modifiable));
6549 else
6550 {
6551#ifdef FEAT_VIRTUALEDIT
6552 if (virtual_active())
6553 coladvance(getviscol());
6554#endif
6555 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
6556 }
6557 }
6558}
6559
6560#ifdef FEAT_VREPLACE
6561/*
6562 * "gr".
6563 */
6564 static void
6565nv_vreplace(cap)
6566 cmdarg_T *cap;
6567{
6568# ifdef FEAT_VISUAL
6569 if (VIsual_active)
6570 {
6571 cap->cmdchar = 'r';
6572 cap->nchar = cap->extra_char;
6573 nv_replace(cap); /* Do same as "r" in Visual mode for now */
6574 }
6575 else
6576# endif
6577 if (!checkclearopq(cap->oap))
6578 {
6579 if (!curbuf->b_p_ma)
6580 EMSG(_(e_modifiable));
6581 else
6582 {
6583 if (cap->extra_char == Ctrl_V) /* get another character */
6584 cap->extra_char = get_literal();
6585 stuffcharReadbuff(cap->extra_char);
6586 stuffcharReadbuff(ESC);
6587# ifdef FEAT_VIRTUALEDIT
6588 if (virtual_active())
6589 coladvance(getviscol());
6590# endif
6591 invoke_edit(cap, TRUE, 'v', FALSE);
6592 }
6593 }
6594}
6595#endif
6596
6597/*
6598 * Swap case for "~" command, when it does not work like an operator.
6599 */
6600 static void
6601n_swapchar(cap)
6602 cmdarg_T *cap;
6603{
6604 long n;
6605 pos_T startpos;
6606 int did_change = 0;
6607#ifdef FEAT_NETBEANS_INTG
6608 pos_T pos;
6609 char_u *ptr;
6610 int count;
6611#endif
6612
6613 if (checkclearopq(cap->oap))
6614 return;
6615
6616 if (lineempty(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
6617 {
6618 clearopbeep(cap->oap);
6619 return;
6620 }
6621
6622 prep_redo_cmd(cap);
6623
6624 if (u_save_cursor() == FAIL)
6625 return;
6626
6627 startpos = curwin->w_cursor;
6628#ifdef FEAT_NETBEANS_INTG
6629 pos = startpos;
6630#endif
6631 for (n = cap->count1; n > 0; --n)
6632 {
6633 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
6634 inc_cursor();
6635 if (gchar_cursor() == NUL)
6636 {
6637 if (vim_strchr(p_ww, '~') != NULL
6638 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
6639 {
6640#ifdef FEAT_NETBEANS_INTG
6641 if (usingNetbeans)
6642 {
6643 if (did_change)
6644 {
6645 ptr = ml_get(pos.lnum);
6646 count = STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00006647 netbeans_removed(curbuf, pos.lnum, pos.col,
6648 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006649 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00006650 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651 }
6652 pos.col = 0;
6653 pos.lnum++;
6654 }
6655#endif
6656 ++curwin->w_cursor.lnum;
6657 curwin->w_cursor.col = 0;
6658 if (n > 1)
6659 {
6660 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
6661 break;
6662 u_clearline();
6663 }
6664 }
6665 else
6666 break;
6667 }
6668 }
6669#ifdef FEAT_NETBEANS_INTG
6670 if (did_change && usingNetbeans)
6671 {
6672 ptr = ml_get(pos.lnum);
6673 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00006674 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
6675 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676 }
6677#endif
6678
6679
6680 check_cursor();
6681 curwin->w_set_curswant = TRUE;
6682 if (did_change)
6683 {
6684 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
6685 0L);
6686 curbuf->b_op_start = startpos;
6687 curbuf->b_op_end = curwin->w_cursor;
6688 if (curbuf->b_op_end.col > 0)
6689 --curbuf->b_op_end.col;
6690 }
6691}
6692
6693/*
6694 * Move cursor to mark.
6695 */
6696 static void
6697nv_cursormark(cap, flag, pos)
6698 cmdarg_T *cap;
6699 int flag;
6700 pos_T *pos;
6701{
6702 if (check_mark(pos) == FAIL)
6703 clearop(cap->oap);
6704 else
6705 {
6706 if (cap->cmdchar == '\''
6707 || cap->cmdchar == '`'
6708 || cap->cmdchar == '['
6709 || cap->cmdchar == ']')
6710 setpcmark();
6711 curwin->w_cursor = *pos;
6712 if (flag)
6713 beginline(BL_WHITE | BL_FIX);
6714 else
6715 check_cursor();
6716 }
6717 cap->oap->motion_type = flag ? MLINE : MCHAR;
6718 if (cap->cmdchar == '`')
6719 cap->oap->use_reg_one = TRUE;
6720 cap->oap->inclusive = FALSE; /* ignored if not MCHAR */
6721 curwin->w_set_curswant = TRUE;
6722}
6723
6724#ifdef FEAT_VISUAL
6725/*
6726 * Handle commands that are operators in Visual mode.
6727 */
6728 static void
6729v_visop(cap)
6730 cmdarg_T *cap;
6731{
6732 static char_u trans[] = "YyDdCcxdXdAAIIrr";
6733
6734 /* Uppercase means linewise, except in block mode, then "D" deletes till
6735 * the end of the line, and "C" replaces til EOL */
6736 if (isupper(cap->cmdchar))
6737 {
6738 if (VIsual_mode != Ctrl_V)
6739 VIsual_mode = 'V';
6740 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
6741 curwin->w_curswant = MAXCOL;
6742 }
6743 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
6744 nv_operator(cap);
6745}
6746#endif
6747
6748/*
6749 * "s" and "S" commands.
6750 */
6751 static void
6752nv_subst(cap)
6753 cmdarg_T *cap;
6754{
6755#ifdef FEAT_VISUAL
6756 if (VIsual_active) /* "vs" and "vS" are the same as "vc" */
6757 {
6758 if (cap->cmdchar == 'S')
6759 VIsual_mode = 'V';
6760 cap->cmdchar = 'c';
6761 nv_operator(cap);
6762 }
6763 else
6764#endif
6765 nv_optrans(cap);
6766}
6767
6768/*
6769 * Abbreviated commands.
6770 */
6771 static void
6772nv_abbrev(cap)
6773 cmdarg_T *cap;
6774{
6775 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
6776 cap->cmdchar = 'x'; /* DEL key behaves like 'x' */
6777
6778#ifdef FEAT_VISUAL
6779 /* in Visual mode these commands are operators */
6780 if (VIsual_active)
6781 v_visop(cap);
6782 else
6783#endif
6784 nv_optrans(cap);
6785}
6786
6787/*
6788 * Translate a command into another command.
6789 */
6790 static void
6791nv_optrans(cap)
6792 cmdarg_T *cap;
6793{
6794 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
6795 (char_u *)"d$", (char_u *)"c$",
6796 (char_u *)"cl", (char_u *)"cc",
6797 (char_u *)"yy", (char_u *)":s\r"};
6798 static char_u *str = (char_u *)"xXDCsSY&";
6799
6800 if (!checkclearopq(cap->oap))
6801 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006802 /* In Vi "2D" doesn't delete the next line. Can't translate it
6803 * either, because "2." should also not use the count. */
6804 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
6805 {
6806 cap->oap->start = curwin->w_cursor;
6807 cap->oap->op_type = OP_DELETE;
6808 cap->count1 = 1;
6809 nv_dollar(cap);
6810 finish_op = TRUE;
6811 ResetRedobuff();
6812 AppendCharToRedobuff('D');
6813 }
6814 else
6815 {
6816 if (cap->count0)
6817 stuffnumReadbuff(cap->count0);
6818 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
6819 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006820 }
6821 cap->opcount = 0;
6822}
6823
6824/*
6825 * "'" and "`" commands. Also for "g'" and "g`".
6826 * cap->arg is TRUE for "'" and "g'".
6827 */
6828 static void
6829nv_gomark(cap)
6830 cmdarg_T *cap;
6831{
6832 pos_T *pos;
6833 int c;
6834#ifdef FEAT_FOLDING
6835 linenr_T lnum = curwin->w_cursor.lnum;
6836 int old_KeyTyped = KeyTyped; /* getting file may reset it */
6837#endif
6838
6839 if (cap->cmdchar == 'g')
6840 c = cap->extra_char;
6841 else
6842 c = cap->nchar;
6843 pos = getmark(c, (cap->oap->op_type == OP_NOP));
6844 if (pos == (pos_T *)-1) /* jumped to other file */
6845 {
6846 if (cap->arg)
6847 {
6848 check_cursor_lnum();
6849 beginline(BL_WHITE | BL_FIX);
6850 }
6851 else
6852 check_cursor();
6853 }
6854 else
6855 nv_cursormark(cap, cap->arg, pos);
6856
6857#ifdef FEAT_VIRTUALEDIT
6858 /* May need to clear the coladd that a mark includes. */
6859 if (!virtual_active())
6860 curwin->w_cursor.coladd = 0;
6861#endif
6862#ifdef FEAT_FOLDING
6863 if (cap->oap->op_type == OP_NOP
6864 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
6865 && (fdo_flags & FDO_MARK)
6866 && old_KeyTyped)
6867 foldOpenCursor();
6868#endif
6869}
6870
6871/*
6872 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
6873 */
6874 static void
6875nv_pcmark(cap)
6876 cmdarg_T *cap;
6877{
6878#ifdef FEAT_JUMPLIST
6879 pos_T *pos;
6880# ifdef FEAT_FOLDING
6881 linenr_T lnum = curwin->w_cursor.lnum;
6882 int old_KeyTyped = KeyTyped; /* getting file may reset it */
6883# endif
6884
6885 if (!checkclearopq(cap->oap))
6886 {
6887 if (cap->cmdchar == 'g')
6888 pos = movechangelist((int)cap->count1);
6889 else
6890 pos = movemark((int)cap->count1);
6891 if (pos == (pos_T *)-1) /* jump to other file */
6892 {
6893 curwin->w_set_curswant = TRUE;
6894 check_cursor();
6895 }
6896 else if (pos != NULL) /* can jump */
6897 nv_cursormark(cap, FALSE, pos);
6898 else if (cap->cmdchar == 'g')
6899 {
6900 if (curbuf->b_changelistlen == 0)
6901 EMSG(_("E664: changelist is empty"));
6902 else if (cap->count1 < 0)
6903 EMSG(_("E662: At start of changelist"));
6904 else
6905 EMSG(_("E663: At end of changelist"));
6906 }
6907 else
6908 clearopbeep(cap->oap);
6909# ifdef FEAT_FOLDING
6910 if (cap->oap->op_type == OP_NOP
6911 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
6912 && (fdo_flags & FDO_MARK)
6913 && old_KeyTyped)
6914 foldOpenCursor();
6915# endif
6916 }
6917#else
6918 clearopbeep(cap->oap);
6919#endif
6920}
6921
6922/*
6923 * Handle '"' command.
6924 */
6925 static void
6926nv_regname(cap)
6927 cmdarg_T *cap;
6928{
6929 if (checkclearop(cap->oap))
6930 return;
6931#ifdef FEAT_EVAL
6932 if (cap->nchar == '=')
6933 cap->nchar = get_expr_register();
6934#endif
6935 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
6936 {
6937 cap->oap->regname = cap->nchar;
6938 cap->opcount = cap->count0; /* remember count before '"' */
6939#ifdef FEAT_EVAL
6940 set_reg_var(cap->oap->regname);
6941#endif
6942 }
6943 else
6944 clearopbeep(cap->oap);
6945}
6946
6947#ifdef FEAT_VISUAL
6948/*
6949 * Handle "v", "V" and "CTRL-V" commands.
6950 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
6951 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00006952 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006953 */
6954 static void
6955nv_visual(cap)
6956 cmdarg_T *cap;
6957{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006958 if (cap->cmdchar == Ctrl_Q)
6959 cap->cmdchar = Ctrl_V;
6960
Bram Moolenaar071d4272004-06-13 20:20:40 +00006961 /* 'v', 'V' and CTRL-V can be used while an operator is pending to make it
6962 * characterwise, linewise, or blockwise. */
6963 if (cap->oap->op_type != OP_NOP)
6964 {
6965 cap->oap->motion_force = cap->cmdchar;
6966 finish_op = FALSE; /* operator doesn't finish now but later */
6967 return;
6968 }
6969
6970 VIsual_select = cap->arg;
6971 if (VIsual_active) /* change Visual mode */
6972 {
6973 if (VIsual_mode == cap->cmdchar) /* stop visual mode */
6974 end_visual_mode();
6975 else /* toggle char/block mode */
6976 { /* or char/line mode */
6977 VIsual_mode = cap->cmdchar;
6978 showmode();
6979 }
6980 redraw_curbuf_later(INVERTED); /* update the inversion */
6981 }
6982 else /* start Visual mode */
6983 {
6984 check_visual_highlight();
6985 if (cap->count0) /* use previously selected part */
6986 {
6987 if (resel_VIsual_mode == NUL) /* there is none */
6988 {
6989 beep_flush();
6990 return;
6991 }
6992 VIsual = curwin->w_cursor;
6993
6994 VIsual_active = TRUE;
6995 VIsual_reselect = TRUE;
6996 if (!cap->arg)
6997 /* start Select mode when 'selectmode' contains "cmd" */
6998 may_start_select('c');
6999#ifdef FEAT_MOUSE
7000 setmouse();
7001#endif
7002 if (p_smd)
7003 redraw_cmdline = TRUE; /* show visual mode later */
7004 /*
7005 * For V and ^V, we multiply the number of lines even if there
7006 * was only one -- webb
7007 */
7008 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
7009 {
7010 curwin->w_cursor.lnum +=
7011 resel_VIsual_line_count * cap->count0 - 1;
7012 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7013 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7014 }
7015 VIsual_mode = resel_VIsual_mode;
7016 if (VIsual_mode == 'v')
7017 {
7018 if (resel_VIsual_line_count <= 1)
7019 curwin->w_cursor.col += resel_VIsual_col * cap->count0 - 1;
7020 else
7021 curwin->w_cursor.col = resel_VIsual_col;
7022 check_cursor_col();
7023 }
7024 if (resel_VIsual_col == MAXCOL)
7025 {
7026 curwin->w_curswant = MAXCOL;
7027 coladvance((colnr_T)MAXCOL);
7028 }
7029 else if (VIsual_mode == Ctrl_V)
7030 {
7031 validate_virtcol();
7032 curwin->w_curswant = curwin->w_virtcol
7033 + resel_VIsual_col * cap->count0 - 1;
7034 coladvance(curwin->w_curswant);
7035 }
7036 else
7037 curwin->w_set_curswant = TRUE;
7038 redraw_curbuf_later(INVERTED); /* show the inversion */
7039 }
7040 else
7041 {
7042 if (!cap->arg)
7043 /* start Select mode when 'selectmode' contains "cmd" */
7044 may_start_select('c');
7045 n_start_visual_mode(cap->cmdchar);
7046 }
7047 }
7048}
7049
7050/*
7051 * Start selection for Shift-movement keys.
7052 */
7053 void
7054start_selection()
7055{
7056 /* if 'selectmode' contains "key", start Select mode */
7057 may_start_select('k');
7058 n_start_visual_mode('v');
7059}
7060
7061/*
7062 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
7063 */
7064 void
7065may_start_select(c)
7066 int c;
7067{
7068 VIsual_select = (stuff_empty() && typebuf_typed()
7069 && (vim_strchr(p_slm, c) != NULL));
7070}
7071
7072/*
7073 * Start Visual mode "c".
7074 * Should set VIsual_select before calling this.
7075 */
7076 static void
7077n_start_visual_mode(c)
7078 int c;
7079{
7080 VIsual_mode = c;
7081 VIsual_active = TRUE;
7082 VIsual_reselect = TRUE;
7083#ifdef FEAT_VIRTUALEDIT
7084 /* Corner case: the 0 position in a tab may change when going into
7085 * virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting.
7086 */
7087 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB)
7088 coladvance(curwin->w_virtcol);
7089#endif
7090 VIsual = curwin->w_cursor;
7091
7092#ifdef FEAT_FOLDING
7093 foldAdjustVisual();
7094#endif
7095
7096#ifdef FEAT_MOUSE
7097 setmouse();
7098#endif
7099 if (p_smd)
7100 redraw_cmdline = TRUE; /* show visual mode later */
7101#ifdef FEAT_CLIPBOARD
7102 /* Make sure the clipboard gets updated. Needed because start and
7103 * end may still be the same, and the selection needs to be owned */
7104 clip_star.vmode = NUL;
7105#endif
7106
7107 /* Only need to redraw this line, unless still need to redraw an old
7108 * Visual area (when 'lazyredraw' is set). */
7109 if (curwin->w_redr_type < INVERTED)
7110 {
7111 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
7112 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
7113 }
7114}
7115
7116#endif /* FEAT_VISUAL */
7117
7118/*
7119 * CTRL-W: Window commands
7120 */
7121 static void
7122nv_window(cap)
7123 cmdarg_T *cap;
7124{
7125#ifdef FEAT_WINDOWS
7126 if (!checkclearop(cap->oap))
7127 do_window(cap->nchar, cap->count0, NUL); /* everything is in window.c */
7128#else
7129 (void)checkclearop(cap->oap);
7130#endif
7131}
7132
7133/*
7134 * CTRL-Z: Suspend
7135 */
7136 static void
7137nv_suspend(cap)
7138 cmdarg_T *cap;
7139{
7140 clearop(cap->oap);
7141#ifdef FEAT_VISUAL
7142 if (VIsual_active)
7143 end_visual_mode(); /* stop Visual mode */
7144#endif
7145 do_cmdline_cmd((char_u *)"st");
7146}
7147
7148/*
7149 * Commands starting with "g".
7150 */
7151 static void
7152nv_g_cmd(cap)
7153 cmdarg_T *cap;
7154{
7155 oparg_T *oap = cap->oap;
7156#ifdef FEAT_VISUAL
7157 pos_T tpos;
7158#endif
7159 int i;
7160 int flag = FALSE;
7161
7162 switch (cap->nchar)
7163 {
7164#ifdef MEM_PROFILE
7165 /*
7166 * "g^A": dump log of used memory.
7167 */
7168 case Ctrl_A:
7169 vim_mem_profile_dump();
7170 break;
7171#endif
7172
7173#ifdef FEAT_VREPLACE
7174 /*
7175 * "gR": Enter virtual replace mode.
7176 */
7177 case 'R':
7178 cap->arg = TRUE;
7179 nv_Replace(cap);
7180 break;
7181
7182 case 'r':
7183 nv_vreplace(cap);
7184 break;
7185#endif
7186
7187 case '&':
7188 do_cmdline_cmd((char_u *)"%s//~/&");
7189 break;
7190
7191#ifdef FEAT_VISUAL
7192 /*
7193 * "gv": Reselect the previous Visual area. If Visual already active,
7194 * exchange previous and current Visual area.
7195 */
7196 case 'v':
7197 if (checkclearop(oap))
7198 break;
7199
7200 if ( curbuf->b_visual_start.lnum == 0
7201 || curbuf->b_visual_start.lnum > curbuf->b_ml.ml_line_count
7202 || curbuf->b_visual_end.lnum == 0)
7203 beep_flush();
7204 else
7205 {
7206 /* set w_cursor to the start of the Visual area, tpos to the end */
7207 if (VIsual_active)
7208 {
7209 i = VIsual_mode;
7210 VIsual_mode = curbuf->b_visual_mode;
7211 curbuf->b_visual_mode = i;
7212# ifdef FEAT_EVAL
7213 curbuf->b_visual_mode_eval = i;
7214# endif
7215 i = curwin->w_curswant;
7216 curwin->w_curswant = curbuf->b_visual_curswant;
7217 curbuf->b_visual_curswant = i;
7218
7219 tpos = curbuf->b_visual_end;
7220 curbuf->b_visual_end = curwin->w_cursor;
7221 curwin->w_cursor = curbuf->b_visual_start;
7222 curbuf->b_visual_start = VIsual;
7223 }
7224 else
7225 {
7226 VIsual_mode = curbuf->b_visual_mode;
7227 curwin->w_curswant = curbuf->b_visual_curswant;
7228 tpos = curbuf->b_visual_end;
7229 curwin->w_cursor = curbuf->b_visual_start;
7230 }
7231
7232 VIsual_active = TRUE;
7233 VIsual_reselect = TRUE;
7234
7235 /* Set Visual to the start and w_cursor to the end of the Visual
7236 * area. Make sure they are on an existing character. */
7237 check_cursor();
7238 VIsual = curwin->w_cursor;
7239 curwin->w_cursor = tpos;
7240 check_cursor();
7241 update_topline();
7242 /*
7243 * When called from normal "g" command: start Select mode when
7244 * 'selectmode' contains "cmd". When called for K_SELECT, always
7245 * start Select mode.
7246 */
7247 if (cap->arg)
7248 VIsual_select = TRUE;
7249 else
7250 may_start_select('c');
7251#ifdef FEAT_MOUSE
7252 setmouse();
7253#endif
7254#ifdef FEAT_CLIPBOARD
7255 /* Make sure the clipboard gets updated. Needed because start and
7256 * end are still the same, and the selection needs to be owned */
7257 clip_star.vmode = NUL;
7258#endif
7259 redraw_curbuf_later(INVERTED);
7260 showmode();
7261 }
7262 break;
7263 /*
7264 * "gV": Don't reselect the previous Visual area after a Select mode
7265 * mapping of menu.
7266 */
7267 case 'V':
7268 VIsual_reselect = FALSE;
7269 break;
7270
7271 /*
7272 * "gh": start Select mode.
7273 * "gH": start Select line mode.
7274 * "g^H": start Select block mode.
7275 */
7276 case K_BS:
7277 cap->nchar = Ctrl_H;
7278 /* FALLTHROUGH */
7279 case 'h':
7280 case 'H':
7281 case Ctrl_H:
7282# ifdef EBCDIC
7283 /* EBCDIC: 'v'-'h' != '^v'-'^h' */
7284 if (cap->nchar == Ctrl_H)
7285 cap->cmdchar = Ctrl_V;
7286 else
7287# endif
7288 cap->cmdchar = cap->nchar + ('v' - 'h');
7289 cap->arg = TRUE;
7290 nv_visual(cap);
7291 break;
7292#endif /* FEAT_VISUAL */
7293
7294 /*
7295 * "gj" and "gk" two new funny movement keys -- up and down
7296 * movement based on *screen* line rather than *file* line.
7297 */
7298 case 'j':
7299 case K_DOWN:
7300 /* with 'nowrap' it works just like the normal "j" command; also when
7301 * in a closed fold */
7302 if (!curwin->w_p_wrap
7303#ifdef FEAT_FOLDING
7304 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7305#endif
7306 )
7307 {
7308 oap->motion_type = MLINE;
7309 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
7310 }
7311 else
7312 i = nv_screengo(oap, FORWARD, cap->count1);
7313 if (i == FAIL)
7314 clearopbeep(oap);
7315 break;
7316
7317 case 'k':
7318 case K_UP:
7319 /* with 'nowrap' it works just like the normal "k" command; also when
7320 * in a closed fold */
7321 if (!curwin->w_p_wrap
7322#ifdef FEAT_FOLDING
7323 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
7324#endif
7325 )
7326 {
7327 oap->motion_type = MLINE;
7328 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
7329 }
7330 else
7331 i = nv_screengo(oap, BACKWARD, cap->count1);
7332 if (i == FAIL)
7333 clearopbeep(oap);
7334 break;
7335
7336 /*
7337 * "gJ": join two lines without inserting a space.
7338 */
7339 case 'J':
7340 nv_join(cap);
7341 break;
7342
7343 /*
7344 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
7345 * "gm": middle of "g0" and "g$".
7346 */
7347 case '^':
7348 flag = TRUE;
7349 /* FALLTHROUGH */
7350
7351 case '0':
7352 case 'm':
7353 case K_HOME:
7354 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355 oap->motion_type = MCHAR;
7356 oap->inclusive = FALSE;
7357 if (curwin->w_p_wrap
7358#ifdef FEAT_VERTSPLIT
7359 && curwin->w_width != 0
7360#endif
7361 )
7362 {
7363 int width1 = W_WIDTH(curwin) - curwin_col_off();
7364 int width2 = width1 + curwin_col_off2();
7365
7366 validate_virtcol();
7367 i = 0;
7368 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
7369 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
7370 }
7371 else
7372 i = curwin->w_leftcol;
7373 /* Go to the middle of the screen line. When 'number' is on and lines
7374 * are wrapping the middle can be more to the left.*/
7375 if (cap->nchar == 'm')
7376 i += (W_WIDTH(curwin) - curwin_col_off()
7377 + ((curwin->w_p_wrap && i > 0)
7378 ? curwin_col_off2() : 0)) / 2;
7379 coladvance((colnr_T)i);
7380 if (flag)
7381 {
7382 do
7383 i = gchar_cursor();
7384 while (vim_iswhite(i) && oneright() == OK);
7385 }
7386 curwin->w_set_curswant = TRUE;
7387 break;
7388
7389 case '_':
7390 /* "g_": to the last non-blank character in the line or <count> lines
7391 * downward. */
7392 cap->oap->motion_type = MCHAR;
7393 cap->oap->inclusive = TRUE;
7394 curwin->w_curswant = MAXCOL;
7395 if (cursor_down((long)(cap->count1 - 1),
7396 cap->oap->op_type == OP_NOP) == FAIL)
7397 clearopbeep(cap->oap);
7398 else
7399 {
7400 char_u *ptr = ml_get_curline();
7401
7402 /* In Visual mode we may end up after the line. */
7403 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
7404 --curwin->w_cursor.col;
7405
7406 /* Decrease the cursor column until it's on a non-blank. */
7407 while (curwin->w_cursor.col > 0
7408 && vim_iswhite(ptr[curwin->w_cursor.col]))
7409 --curwin->w_cursor.col;
7410 curwin->w_set_curswant = TRUE;
7411 }
7412 break;
7413
7414 case '$':
7415 case K_END:
7416 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007417 {
7418 int col_off = curwin_col_off();
7419
7420 oap->motion_type = MCHAR;
7421 oap->inclusive = TRUE;
7422 if (curwin->w_p_wrap
7423#ifdef FEAT_VERTSPLIT
7424 && curwin->w_width != 0
7425#endif
7426 )
7427 {
7428 curwin->w_curswant = MAXCOL; /* so we stay at the end */
7429 if (cap->count1 == 1)
7430 {
7431 int width1 = W_WIDTH(curwin) - col_off;
7432 int width2 = width1 + curwin_col_off2();
7433
7434 validate_virtcol();
7435 i = width1 - 1;
7436 if (curwin->w_virtcol >= (colnr_T)width1)
7437 i += ((curwin->w_virtcol - width1) / width2 + 1)
7438 * width2;
7439 coladvance((colnr_T)i);
7440#if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
7441 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
7442 {
7443 /*
7444 * Check for landing on a character that got split at
7445 * the end of the line. We do not want to advance to
7446 * the next screen line.
7447 */
7448 validate_virtcol();
7449 if (curwin->w_virtcol > (colnr_T)i)
7450 --curwin->w_cursor.col;
7451 }
7452#endif
7453 }
7454 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
7455 clearopbeep(oap);
7456 }
7457 else
7458 {
7459 i = curwin->w_leftcol + W_WIDTH(curwin) - col_off - 1;
7460 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007461
7462 /* Make sure we stick in this column. */
7463 validate_virtcol();
7464 curwin->w_curswant = curwin->w_virtcol;
7465 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007466 }
7467 }
7468 break;
7469
7470 /*
7471 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
7472 */
7473 case '*':
7474 case '#':
7475#if POUND != '#'
7476 case POUND: /* pound sign (sometimes equal to '#') */
7477#endif
7478 case Ctrl_RSB: /* :tag or :tselect for current identifier */
7479 case ']': /* :tselect for current identifier */
7480 nv_ident(cap);
7481 break;
7482
7483 /*
7484 * ge and gE: go back to end of word
7485 */
7486 case 'e':
7487 case 'E':
7488 oap->motion_type = MCHAR;
7489 curwin->w_set_curswant = TRUE;
7490 oap->inclusive = TRUE;
7491 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
7492 clearopbeep(oap);
7493 break;
7494
7495 /*
7496 * "g CTRL-G": display info about cursor position
7497 */
7498 case Ctrl_G:
7499 cursor_pos_info();
7500 break;
7501
7502 /*
7503 * "gi": start Insert at the last position.
7504 */
7505 case 'i':
7506 if (curbuf->b_last_insert.lnum != 0)
7507 {
7508 curwin->w_cursor = curbuf->b_last_insert;
7509 check_cursor_lnum();
7510 i = (int)STRLEN(ml_get_curline());
7511 if (curwin->w_cursor.col > (colnr_T)i)
7512 {
7513#ifdef FEAT_VIRTUALEDIT
7514 if (virtual_active())
7515 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
7516#endif
7517 curwin->w_cursor.col = i;
7518 }
7519 }
7520 cap->cmdchar = 'i';
7521 nv_edit(cap);
7522 break;
7523
7524 /*
7525 * "gI": Start insert in column 1.
7526 */
7527 case 'I':
7528 beginline(0);
7529 if (!checkclearopq(oap))
7530 invoke_edit(cap, FALSE, 'g', FALSE);
7531 break;
7532
7533#ifdef FEAT_SEARCHPATH
7534 /*
7535 * "gf": goto file, edit file under cursor
7536 * "]f" and "[f": can also be used.
7537 */
7538 case 'f':
7539 nv_gotofile(cap);
7540 break;
7541#endif
7542
7543 /* "g'm" and "g`m": jump to mark without setting pcmark */
7544 case '\'':
7545 cap->arg = TRUE;
7546 /*FALLTHROUGH*/
7547 case '`':
7548 nv_gomark(cap);
7549 break;
7550
7551 /*
7552 * "gs": Goto sleep.
7553 */
7554 case 's':
7555 do_sleep(cap->count1 * 1000L);
7556 break;
7557
7558 /*
7559 * "ga": Display the ascii value of the character under the
7560 * cursor. It is displayed in decimal, hex, and octal. -- webb
7561 */
7562 case 'a':
7563 do_ascii(NULL);
7564 break;
7565
7566#ifdef FEAT_MBYTE
7567 /*
7568 * "g8": Display the bytes used for the UTF-8 character under the
7569 * cursor. It is displayed in hex.
7570 */
7571 case '8':
7572 show_utf8();
7573 break;
7574#endif
7575
7576 /*
7577 * "gg": Goto the first line in file. With a count it goes to
7578 * that line number like for "G". -- webb
7579 */
7580 case 'g':
7581 cap->arg = FALSE;
7582 nv_goto(cap);
7583 break;
7584
7585 /*
7586 * Two-character operators:
7587 * "gq" Format text
7588 * "gw" Format text and keep cursor position
7589 * "g~" Toggle the case of the text.
7590 * "gu" Change text to lower case.
7591 * "gU" Change text to upper case.
7592 * "g?" rot13 encoding
7593 */
7594 case 'q':
7595 case 'w':
7596 oap->cursor_start = curwin->w_cursor;
7597 /*FALLTHROUGH*/
7598 case '~':
7599 case 'u':
7600 case 'U':
7601 case '?':
7602 nv_operator(cap);
7603 break;
7604
7605 /*
7606 * "gd": Find first occurence of pattern under the cursor in the
7607 * current function
7608 * "gD": idem, but in the current file.
7609 */
7610 case 'd':
7611 case 'D':
7612 nv_gd(oap, cap->nchar);
7613 break;
7614
7615#ifdef FEAT_MOUSE
7616 /*
7617 * g<*Mouse> : <C-*mouse>
7618 */
7619 case K_MIDDLEMOUSE:
7620 case K_MIDDLEDRAG:
7621 case K_MIDDLERELEASE:
7622 case K_LEFTMOUSE:
7623 case K_LEFTDRAG:
7624 case K_LEFTRELEASE:
7625 case K_RIGHTMOUSE:
7626 case K_RIGHTDRAG:
7627 case K_RIGHTRELEASE:
7628 case K_X1MOUSE:
7629 case K_X1DRAG:
7630 case K_X1RELEASE:
7631 case K_X2MOUSE:
7632 case K_X2DRAG:
7633 case K_X2RELEASE:
7634 mod_mask = MOD_MASK_CTRL;
7635 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
7636 break;
7637#endif
7638
7639 case K_IGNORE:
7640 break;
7641
7642 /*
7643 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
7644 */
7645 case 'p':
7646 case 'P':
7647 nv_put(cap);
7648 break;
7649
7650#ifdef FEAT_BYTEOFF
7651 /* "go": goto byte count from start of buffer */
7652 case 'o':
7653 goto_byte(cap->count0);
7654 break;
7655#endif
7656
7657 /* "gQ": improved Ex mode */
7658 case 'Q':
7659#ifdef FEAT_CMDWIN
7660 if (cmdwin_type != 0)
7661 {
7662 clearopbeep(cap->oap);
7663 break;
7664 }
7665#endif
7666 if (!checkclearopq(oap))
7667 do_exmode(TRUE);
7668 break;
7669
7670#ifdef FEAT_JUMPLIST
7671 case ',':
7672 nv_pcmark(cap);
7673 break;
7674
7675 case ';':
7676 cap->count1 = -cap->count1;
7677 nv_pcmark(cap);
7678 break;
7679#endif
7680
7681 default:
7682 clearopbeep(oap);
7683 break;
7684 }
7685}
7686
7687/*
7688 * Handle "o" and "O" commands.
7689 */
7690 static void
7691n_opencmd(cap)
7692 cmdarg_T *cap;
7693{
7694 if (!checkclearopq(cap->oap))
7695 {
7696#ifdef FEAT_FOLDING
7697 if (cap->cmdchar == 'O')
7698 /* Open above the first line of a folded sequence of lines */
7699 (void)hasFolding(curwin->w_cursor.lnum,
7700 &curwin->w_cursor.lnum, NULL);
7701 else
7702 /* Open below the last line of a folded sequence of lines */
7703 (void)hasFolding(curwin->w_cursor.lnum,
7704 NULL, &curwin->w_cursor.lnum);
7705#endif
7706 if (u_save((linenr_T)(curwin->w_cursor.lnum -
7707 (cap->cmdchar == 'O' ? 1 : 0)),
7708 (linenr_T)(curwin->w_cursor.lnum +
7709 (cap->cmdchar == 'o' ? 1 : 0))
7710 ) == OK
7711 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
7712#ifdef FEAT_COMMENTS
7713 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM :
7714#endif
7715 0, 0))
7716 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007717 /* When '#' is in 'cpoptions' ignore the count. */
7718 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
7719 cap->count1 = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007720 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
7721 }
7722 }
7723}
7724
7725/*
7726 * "." command: redo last change.
7727 */
7728 static void
7729nv_dot(cap)
7730 cmdarg_T *cap;
7731{
7732 if (!checkclearopq(cap->oap))
7733 {
7734 /*
7735 * If "restart_edit" is TRUE, the last but one command is repeated
7736 * instead of the last command (inserting text). This is used for
7737 * CTRL-O <.> in insert mode.
7738 */
7739 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
7740 clearopbeep(cap->oap);
7741 }
7742}
7743
7744/*
7745 * CTRL-R: undo undo
7746 */
7747 static void
7748nv_redo(cap)
7749 cmdarg_T *cap;
7750{
7751 if (!checkclearopq(cap->oap))
7752 {
7753 u_redo((int)cap->count1);
7754 curwin->w_set_curswant = TRUE;
7755 }
7756}
7757
7758/*
7759 * Handle "U" command.
7760 */
7761 static void
7762nv_Undo(cap)
7763 cmdarg_T *cap;
7764{
7765 /* In Visual mode and typing "gUU" triggers an operator */
7766 if (cap->oap->op_type == OP_UPPER
7767#ifdef FEAT_VISUAL
7768 || VIsual_active
7769#endif
7770 )
7771 {
7772 /* translate "gUU" to "gUgU" */
7773 cap->cmdchar = 'g';
7774 cap->nchar = 'U';
7775 nv_operator(cap);
7776 }
7777 else if (!checkclearopq(cap->oap))
7778 {
7779 u_undoline();
7780 curwin->w_set_curswant = TRUE;
7781 }
7782}
7783
7784/*
7785 * '~' command: If tilde is not an operator and Visual is off: swap case of a
7786 * single character.
7787 */
7788 static void
7789nv_tilde(cap)
7790 cmdarg_T *cap;
7791{
7792 if (!p_to
7793#ifdef FEAT_VISUAL
7794 && !VIsual_active
7795#endif
7796 && cap->oap->op_type != OP_TILDE)
7797 n_swapchar(cap);
7798 else
7799 nv_operator(cap);
7800}
7801
7802/*
7803 * Handle an operator command.
7804 * The actual work is done by do_pending_operator().
7805 */
7806 static void
7807nv_operator(cap)
7808 cmdarg_T *cap;
7809{
7810 int op_type;
7811
7812 op_type = get_op_type(cap->cmdchar, cap->nchar);
7813
7814 if (op_type == cap->oap->op_type) /* double operator works on lines */
7815 nv_lineop(cap);
7816 else if (!checkclearop(cap->oap))
7817 {
7818 cap->oap->start = curwin->w_cursor;
7819 cap->oap->op_type = op_type;
7820 }
7821}
7822
7823/*
7824 * Handle linewise operator "dd", "yy", etc.
7825 *
7826 * "_" is is a strange motion command that helps make operators more logical.
7827 * It is actually implemented, but not documented in the real Vi. This motion
7828 * command actually refers to "the current line". Commands like "dd" and "yy"
7829 * are really an alternate form of "d_" and "y_". It does accept a count, so
7830 * "d3_" works to delete 3 lines.
7831 */
7832 static void
7833nv_lineop(cap)
7834 cmdarg_T *cap;
7835{
7836 cap->oap->motion_type = MLINE;
7837 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
7838 clearopbeep(cap->oap);
7839 else if ( cap->oap->op_type == OP_DELETE
7840 || cap->oap->op_type == OP_LSHIFT
7841 || cap->oap->op_type == OP_RSHIFT)
7842 beginline(BL_SOL | BL_FIX);
7843 else if (cap->oap->op_type != OP_YANK) /* 'Y' does not move cursor */
7844 beginline(BL_WHITE | BL_FIX);
7845}
7846
7847/*
7848 * <Home> command.
7849 */
7850 static void
7851nv_home(cap)
7852 cmdarg_T *cap;
7853{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00007854 /* CTRL-HOME is like "gg" */
7855 if (mod_mask & MOD_MASK_CTRL)
7856 nv_goto(cap);
7857 else
7858 {
7859 cap->count0 = 1;
7860 nv_pipe(cap);
7861 }
Bram Moolenaara88d9682005-03-25 21:45:43 +00007862 ins_at_eol = FALSE; /* Don't move cursor past eol (only necessary in a
7863 one-character line). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007864}
7865
7866/*
7867 * "|" command.
7868 */
7869 static void
7870nv_pipe(cap)
7871 cmdarg_T *cap;
7872{
7873 cap->oap->motion_type = MCHAR;
7874 cap->oap->inclusive = FALSE;
7875 beginline(0);
7876 if (cap->count0 > 0)
7877 {
7878 coladvance((colnr_T)(cap->count0 - 1));
7879 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
7880 }
7881 else
7882 curwin->w_curswant = 0;
7883 /* keep curswant at the column where we wanted to go, not where
7884 we ended; differs if line is too short */
7885 curwin->w_set_curswant = FALSE;
7886}
7887
7888/*
7889 * Handle back-word command "b" and "B".
7890 * cap->arg is 1 for "B"
7891 */
7892 static void
7893nv_bck_word(cap)
7894 cmdarg_T *cap;
7895{
7896 cap->oap->motion_type = MCHAR;
7897 cap->oap->inclusive = FALSE;
7898 curwin->w_set_curswant = TRUE;
7899 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
7900 clearopbeep(cap->oap);
7901#ifdef FEAT_FOLDING
7902 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
7903 foldOpenCursor();
7904#endif
7905}
7906
7907/*
7908 * Handle word motion commands "e", "E", "w" and "W".
7909 * cap->arg is TRUE for "E" and "W".
7910 */
7911 static void
7912nv_wordcmd(cap)
7913 cmdarg_T *cap;
7914{
7915 int n;
7916 int word_end;
7917 int flag = FALSE;
7918
7919 /*
7920 * Set inclusive for the "E" and "e" command.
7921 */
7922 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
7923 word_end = TRUE;
7924 else
7925 word_end = FALSE;
7926 cap->oap->inclusive = word_end;
7927
7928 /*
7929 * "cw" and "cW" are a special case.
7930 */
7931 if (!word_end && cap->oap->op_type == OP_CHANGE)
7932 {
7933 n = gchar_cursor();
7934 if (n != NUL) /* not an empty line */
7935 {
7936 if (vim_iswhite(n))
7937 {
7938 /*
7939 * Reproduce a funny Vi behaviour: "cw" on a blank only
7940 * changes one character, not all blanks until the start of
7941 * the next word. Only do this when the 'w' flag is included
7942 * in 'cpoptions'.
7943 */
7944 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
7945 {
7946 cap->oap->inclusive = TRUE;
7947 cap->oap->motion_type = MCHAR;
7948 return;
7949 }
7950 }
7951 else
7952 {
7953 /*
7954 * This is a little strange. To match what the real Vi does,
7955 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
7956 * that we are not on a space or a TAB. This seems impolite
7957 * at first, but it's really more what we mean when we say
7958 * 'cw'.
7959 * Another strangeness: When standing on the end of a word
7960 * "ce" will change until the end of the next wordt, but "cw"
7961 * will change only one character! This is done by setting
7962 * flag.
7963 */
7964 cap->oap->inclusive = TRUE;
7965 word_end = TRUE;
7966 flag = TRUE;
7967 }
7968 }
7969 }
7970
7971 cap->oap->motion_type = MCHAR;
7972 curwin->w_set_curswant = TRUE;
7973 if (word_end)
7974 n = end_word(cap->count1, cap->arg, flag, FALSE);
7975 else
7976 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
7977
7978 /* Don't leave the cursor on the NUL past a line */
7979 if (curwin->w_cursor.col && gchar_cursor() == NUL)
7980 {
7981 --curwin->w_cursor.col;
7982 cap->oap->inclusive = TRUE;
7983 }
7984
7985 if (n == FAIL && cap->oap->op_type == OP_NOP)
7986 clearopbeep(cap->oap);
7987 else
7988 {
7989#ifdef FEAT_VISUAL
7990 adjust_for_sel(cap);
7991#endif
7992#ifdef FEAT_FOLDING
7993 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
7994 foldOpenCursor();
7995#endif
7996 }
7997}
7998
7999/*
8000 * "0" and "^" commands.
8001 * cap->arg is the argument for beginline().
8002 */
8003 static void
8004nv_beginline(cap)
8005 cmdarg_T *cap;
8006{
8007 cap->oap->motion_type = MCHAR;
8008 cap->oap->inclusive = FALSE;
8009 beginline(cap->arg);
8010#ifdef FEAT_FOLDING
8011 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
8012 foldOpenCursor();
8013#endif
8014}
8015
8016#ifdef FEAT_VISUAL
8017/*
8018 * In exclusive Visual mode, may include the last character.
8019 */
8020 static void
8021adjust_for_sel(cap)
8022 cmdarg_T *cap;
8023{
8024 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
8025 && gchar_cursor() != NUL && lt(VIsual, curwin->w_cursor))
8026 {
8027# ifdef FEAT_MBYTE
8028 if (has_mbyte)
8029 inc_cursor();
8030 else
8031# endif
8032 ++curwin->w_cursor.col;
8033 cap->oap->inclusive = FALSE;
8034 }
8035}
8036
8037/*
8038 * Exclude last character at end of Visual area for 'selection' == "exclusive".
8039 * Should check VIsual_mode before calling this.
8040 * Returns TRUE when backed up to the previous line.
8041 */
8042 static int
8043unadjust_for_sel()
8044{
8045 pos_T *pp;
8046
8047 if (*p_sel == 'e' && !equalpos(VIsual, curwin->w_cursor))
8048 {
8049 if (lt(VIsual, curwin->w_cursor))
8050 pp = &curwin->w_cursor;
8051 else
8052 pp = &VIsual;
8053#ifdef FEAT_VIRTUALEDIT
8054 if (pp->coladd > 0)
8055 --pp->coladd;
8056 else
8057#endif
8058 if (pp->col > 0)
8059 {
8060 --pp->col;
8061#ifdef FEAT_MBYTE
8062 mb_adjustpos(pp);
8063#endif
8064 }
8065 else if (pp->lnum > 1)
8066 {
8067 --pp->lnum;
8068 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
8069 return TRUE;
8070 }
8071 }
8072 return FALSE;
8073}
8074
8075/*
8076 * SELECT key in Normal or Visual mode: end of Select mode mapping.
8077 */
8078 static void
8079nv_select(cap)
8080 cmdarg_T *cap;
8081{
8082 if (VIsual_active)
8083 VIsual_select = TRUE;
8084 else if (VIsual_reselect)
8085 {
8086 cap->nchar = 'v'; /* fake "gv" command */
8087 cap->arg = TRUE;
8088 nv_g_cmd(cap);
8089 }
8090}
8091
8092#endif
8093
8094/*
8095 * "G", "gg", CTRL-END, CTRL-HOME.
8096 * cap->arg is TRUE for "G".
8097 */
8098 static void
8099nv_goto(cap)
8100 cmdarg_T *cap;
8101{
8102 linenr_T lnum;
8103
8104 if (cap->arg)
8105 lnum = curbuf->b_ml.ml_line_count;
8106 else
8107 lnum = 1L;
8108 cap->oap->motion_type = MLINE;
8109 setpcmark();
8110
8111 /* When a count is given, use it instead of the default lnum */
8112 if (cap->count0 != 0)
8113 lnum = cap->count0;
8114 if (lnum < 1L)
8115 lnum = 1L;
8116 else if (lnum > curbuf->b_ml.ml_line_count)
8117 lnum = curbuf->b_ml.ml_line_count;
8118 curwin->w_cursor.lnum = lnum;
8119 beginline(BL_SOL | BL_FIX);
8120#ifdef FEAT_FOLDING
8121 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
8122 foldOpenCursor();
8123#endif
8124}
8125
8126/*
8127 * CTRL-\ in Normal mode.
8128 */
8129 static void
8130nv_normal(cap)
8131 cmdarg_T *cap;
8132{
8133 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
8134 {
8135 clearop(cap->oap);
8136 if (restart_edit != 0 && p_smd)
8137 clear_cmdline = TRUE; /* unshow mode later */
8138 restart_edit = 0;
8139#ifdef FEAT_CMDWIN
8140 if (cmdwin_type != 0)
8141 cmdwin_result = Ctrl_C;
8142#endif
8143#ifdef FEAT_VISUAL
8144 if (VIsual_active)
8145 {
8146 end_visual_mode(); /* stop Visual */
8147 redraw_curbuf_later(INVERTED);
8148 }
8149#endif
8150 /* CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. */
8151 if (cap->nchar == Ctrl_G && p_im)
8152 restart_edit = 'a';
8153 }
8154 else
8155 clearopbeep(cap->oap);
8156}
8157
8158/*
8159 * ESC in Normal mode: beep, but don't flush buffers.
8160 * Don't even beep if we are canceling a command.
8161 */
8162 static void
8163nv_esc(cap)
8164 cmdarg_T *cap;
8165{
8166 int no_reason;
8167
8168 no_reason = (cap->oap->op_type == OP_NOP
8169 && cap->opcount == 0
8170 && cap->count0 == 0
8171 && cap->oap->regname == 0
8172 && !p_im);
8173
8174 if (cap->arg) /* TRUE for CTRL-C */
8175 {
8176 if (restart_edit == 0
8177#ifdef FEAT_CMDWIN
8178 && cmdwin_type == 0
8179#endif
8180#ifdef FEAT_VISUAL
8181 && !VIsual_active
8182#endif
8183 && no_reason)
8184 MSG(_("Type :quit<Enter> to exit Vim"));
8185
8186 /* Don't reset "restart_edit" when 'insertmode' is set, it won't be
8187 * set again below when halfway a mapping. */
8188 if (!p_im)
8189 restart_edit = 0;
8190#ifdef FEAT_CMDWIN
8191 if (cmdwin_type != 0)
8192 {
8193 cmdwin_result = K_IGNORE;
8194 got_int = FALSE; /* don't stop executing autocommands et al. */
8195 return;
8196 }
8197#endif
8198 }
8199
8200#ifdef FEAT_VISUAL
8201 if (VIsual_active)
8202 {
8203 end_visual_mode(); /* stop Visual */
8204 check_cursor_col(); /* make sure cursor is not beyond EOL */
8205 curwin->w_set_curswant = TRUE;
8206 redraw_curbuf_later(INVERTED);
8207 }
8208 else
8209#endif
8210 if (no_reason)
8211 vim_beep();
8212 clearop(cap->oap);
8213
8214 /* A CTRL-C is often used at the start of a menu. When 'insertmode' is
8215 * set return to Insert mode afterwards. */
8216 if (restart_edit == 0 && goto_im()
8217#ifdef FEAT_EX_EXTRA
8218 && ex_normal_busy == 0
8219#endif
8220 )
8221 restart_edit = 'a';
8222}
8223
8224/*
8225 * Handle "A", "a", "I", "i" and <Insert> commands.
8226 */
8227 static void
8228nv_edit(cap)
8229 cmdarg_T *cap;
8230{
8231 /* <Insert> is equal to "i" */
8232 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
8233 cap->cmdchar = 'i';
8234
8235#ifdef FEAT_VISUAL
8236 /* in Visual mode "A" and "I" are an operator */
8237 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
8238 v_visop(cap);
8239
8240 /* in Visual mode and after an operator "a" and "i" are for text objects */
8241 else
8242#endif
8243 if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
8244 && (cap->oap->op_type != OP_NOP
8245#ifdef FEAT_VISUAL
8246 || VIsual_active
8247#endif
8248 ))
8249 {
8250#ifdef FEAT_TEXTOBJ
8251 nv_object(cap);
8252#else
8253 clearopbeep(cap->oap);
8254#endif
8255 }
8256 else if (!curbuf->b_p_ma && !p_im)
8257 {
8258 /* Only give this error when 'insertmode' is off. */
8259 EMSG(_(e_modifiable));
8260 clearop(cap->oap);
8261 }
8262 else if (!checkclearopq(cap->oap))
8263 {
8264 switch (cap->cmdchar)
8265 {
8266 case 'A': /* "A"ppend after the line */
8267 curwin->w_set_curswant = TRUE;
8268#ifdef FEAT_VIRTUALEDIT
8269 if (ve_flags == VE_ALL)
8270 {
8271 int save_State = State;
8272
8273 /* Pretent Insert mode here to allow the cursor on the
8274 * character past the end of the line */
8275 State = INSERT;
8276 coladvance((colnr_T)MAXCOL);
8277 State = save_State;
8278 }
8279 else
8280#endif
8281 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
8282 break;
8283
8284 case 'I': /* "I"nsert before the first non-blank */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00008285 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
8286 beginline(BL_WHITE);
8287 else
8288 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008289 break;
8290
8291 case 'a': /* "a"ppend is like "i"nsert on the next character. */
8292#ifdef FEAT_VIRTUALEDIT
8293 /* increment coladd when in virtual space, increment the
8294 * column otherwise, also to append after an unprintable char */
8295 if (virtual_active()
8296 && (curwin->w_cursor.coladd > 0
8297 || *ml_get_cursor() == NUL
8298 || *ml_get_cursor() == TAB))
8299 curwin->w_cursor.coladd++;
8300 else
8301#endif
8302 if (*ml_get_cursor() != NUL)
8303 inc_cursor();
8304 break;
8305 }
8306
8307#ifdef FEAT_VIRTUALEDIT
8308 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
8309 {
8310 int save_State = State;
8311
8312 /* Pretent Insert mode here to allow the cursor on the
8313 * character past the end of the line */
8314 State = INSERT;
8315 coladvance(getviscol());
8316 State = save_State;
8317 }
8318#endif
8319
8320 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
8321 }
8322}
8323
8324/*
8325 * Invoke edit() and take care of "restart_edit" and the return value.
8326 */
8327 static void
8328invoke_edit(cap, repl, cmd, startln)
8329 cmdarg_T *cap;
8330 int repl; /* "r" or "gr" command */
8331 int cmd;
8332 int startln;
8333{
8334 int restart_edit_save = 0;
8335
8336 /* Complicated: When the user types "a<C-O>a" we don't want to do Insert
8337 * mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
8338 * it. */
8339 if (repl || !stuff_empty())
8340 restart_edit_save = restart_edit;
8341 else
8342 restart_edit_save = 0;
8343
8344 /* Always reset "restart_edit", this is not a restarted edit. */
8345 restart_edit = 0;
8346
8347 if (edit(cmd, startln, cap->count1))
8348 cap->retval |= CA_COMMAND_BUSY;
8349
8350 if (restart_edit == 0)
8351 restart_edit = restart_edit_save;
8352}
8353
8354#ifdef FEAT_TEXTOBJ
8355/*
8356 * "a" or "i" while an operator is pending or in Visual mode: object motion.
8357 */
8358 static void
8359nv_object(cap)
8360 cmdarg_T *cap;
8361{
8362 int flag;
8363 int include;
8364 char_u *mps_save;
8365
8366 if (cap->cmdchar == 'i')
8367 include = FALSE; /* "ix" = inner object: exclude white space */
8368 else
8369 include = TRUE; /* "ax" = an object: include white space */
8370
8371 /* Make sure (), [], {} and <> are in 'matchpairs' */
8372 mps_save = curbuf->b_p_mps;
8373 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
8374
8375 switch (cap->nchar)
8376 {
8377 case 'w': /* "aw" = a word */
8378 flag = current_word(cap->oap, cap->count1, include, FALSE);
8379 break;
8380 case 'W': /* "aW" = a WORD */
8381 flag = current_word(cap->oap, cap->count1, include, TRUE);
8382 break;
8383 case 'b': /* "ab" = a braces block */
8384 case '(':
8385 case ')':
8386 flag = current_block(cap->oap, cap->count1, include, '(', ')');
8387 break;
8388 case 'B': /* "aB" = a Brackets block */
8389 case '{':
8390 case '}':
8391 flag = current_block(cap->oap, cap->count1, include, '{', '}');
8392 break;
8393 case '[': /* "a[" = a [] block */
8394 case ']':
8395 flag = current_block(cap->oap, cap->count1, include, '[', ']');
8396 break;
8397 case '<': /* "a<" = a <> block */
8398 case '>':
8399 flag = current_block(cap->oap, cap->count1, include, '<', '>');
8400 break;
8401 case 'p': /* "ap" = a paragraph */
8402 flag = current_par(cap->oap, cap->count1, include, 'p');
8403 break;
8404 case 's': /* "as" = a sentence */
8405 flag = current_sent(cap->oap, cap->count1, include);
8406 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00008407 case '"': /* "a"" = a double quoted string */
8408 case '\'': /* "a'" = a single quoted string */
8409 case '`': /* "a`" = a backtick quoted string */
8410 flag = current_quote(cap->oap, cap->count1, include,
8411 cap->nchar);
8412 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008413#if 0 /* TODO */
8414 case 'S': /* "aS" = a section */
8415 case 'f': /* "af" = a filename */
8416 case 'u': /* "au" = a URL */
8417#endif
8418 default:
8419 flag = FAIL;
8420 break;
8421 }
8422
8423 curbuf->b_p_mps = mps_save;
8424 if (flag == FAIL)
8425 clearopbeep(cap->oap);
8426 adjust_cursor_col();
8427 curwin->w_set_curswant = TRUE;
8428}
8429#endif
8430
8431/*
8432 * "q" command: Start/stop recording.
8433 * "q:", "q/", "q?": edit command-line in command-line window.
8434 */
8435 static void
8436nv_record(cap)
8437 cmdarg_T *cap;
8438{
8439 if (cap->oap->op_type == OP_FORMAT)
8440 {
8441 /* "gqq" is the same as "gqgq": format line */
8442 cap->cmdchar = 'g';
8443 cap->nchar = 'q';
8444 nv_operator(cap);
8445 }
8446 else if (!checkclearop(cap->oap))
8447 {
8448#ifdef FEAT_CMDWIN
8449 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
8450 {
8451 stuffcharReadbuff(cap->nchar);
8452 stuffcharReadbuff(K_CMDWIN);
8453 }
8454 else
8455#endif
8456 /* (stop) recording into a named register, unless executing a
8457 * register */
8458 if (!Exec_reg && do_record(cap->nchar) == FAIL)
8459 clearopbeep(cap->oap);
8460 }
8461}
8462
8463/*
8464 * Handle the "@r" command.
8465 */
8466 static void
8467nv_at(cap)
8468 cmdarg_T *cap;
8469{
8470 if (checkclearop(cap->oap))
8471 return;
8472#ifdef FEAT_EVAL
8473 if (cap->nchar == '=')
8474 {
8475 if (get_expr_register() == NUL)
8476 return;
8477 }
8478#endif
8479 while (cap->count1-- && !got_int)
8480 {
8481 if (do_execreg(cap->nchar, FALSE, FALSE) == FAIL)
8482 {
8483 clearopbeep(cap->oap);
8484 break;
8485 }
8486 line_breakcheck();
8487 }
8488}
8489
8490/*
8491 * Handle the CTRL-U and CTRL-D commands.
8492 */
8493 static void
8494nv_halfpage(cap)
8495 cmdarg_T *cap;
8496{
8497 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
8498 || (cap->cmdchar == Ctrl_D
8499 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
8500 clearopbeep(cap->oap);
8501 else if (!checkclearop(cap->oap))
8502 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
8503}
8504
8505/*
8506 * Handle "J" or "gJ" command.
8507 */
8508 static void
8509nv_join(cap)
8510 cmdarg_T *cap;
8511{
8512#ifdef FEAT_VISUAL
8513 if (VIsual_active) /* join the visual lines */
8514 nv_operator(cap);
8515 else
8516#endif
8517 if (!checkclearop(cap->oap))
8518 {
8519 if (cap->count0 <= 1)
8520 cap->count0 = 2; /* default for join is two lines! */
8521 if (curwin->w_cursor.lnum + cap->count0 - 1 >
8522 curbuf->b_ml.ml_line_count)
8523 clearopbeep(cap->oap); /* beyond last line */
8524 else
8525 {
8526 prep_redo(cap->oap->regname, cap->count0,
8527 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
8528 do_do_join(cap->count0, cap->nchar == NUL);
8529 }
8530 }
8531}
8532
8533/*
8534 * "P", "gP", "p" and "gp" commands.
8535 */
8536 static void
8537nv_put(cap)
8538 cmdarg_T *cap;
8539{
8540#ifdef FEAT_VISUAL
8541 int regname = 0;
8542 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00008543 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008544 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008545#endif
8546 int dir;
8547 int flags = 0;
8548
8549 if (cap->oap->op_type != OP_NOP)
8550 {
8551#ifdef FEAT_DIFF
8552 /* "dp" is ":diffput" */
8553 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
8554 {
8555 clearop(cap->oap);
8556 nv_diffgetput(TRUE);
8557 }
8558 else
8559#endif
8560 clearopbeep(cap->oap);
8561 }
8562 else
8563 {
8564 dir = (cap->cmdchar == 'P'
8565 || (cap->cmdchar == 'g' && cap->nchar == 'P'))
8566 ? BACKWARD : FORWARD;
8567 prep_redo_cmd(cap);
8568 if (cap->cmdchar == 'g')
8569 flags |= PUT_CURSEND;
8570
8571#ifdef FEAT_VISUAL
8572 if (VIsual_active)
8573 {
8574 /* Putting in Visual mode: The put text replaces the selected
8575 * text. First delete the selected text, then put the new text.
8576 * Need to save and restore the registers that the delete
8577 * overwrites if the old contents is being put.
8578 */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008579 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008580 regname = cap->oap->regname;
8581# ifdef FEAT_CLIPBOARD
8582 adjust_clip_reg(&regname);
8583# endif
8584 if (regname == 0 || VIM_ISDIGIT(regname)
8585# ifdef FEAT_CLIPBOARD
8586 || (clip_unnamed && (regname == '*' || regname == '+'))
8587# endif
8588
8589 )
8590 {
8591 /* the delete is going to overwrite the register we want to
8592 * put, save it first. */
8593 reg1 = get_register(regname, TRUE);
8594 }
8595
8596 /* Now delete the selected text. */
8597 cap->cmdchar = 'd';
8598 cap->nchar = NUL;
8599 cap->oap->regname = NUL;
8600 nv_operator(cap);
8601 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00008602 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008603
8604 /* delete PUT_LINE_BACKWARD; */
8605 cap->oap->regname = regname;
8606
8607 if (reg1 != NULL)
8608 {
8609 /* Delete probably changed the register we want to put, save
8610 * it first. Then put back what was there before the delete. */
8611 reg2 = get_register(regname, FALSE);
8612 put_register(regname, reg1);
8613 }
8614
8615 /* When deleted a linewise Visual area, put the register as
8616 * lines to avoid it joined with the next line. When deletion was
8617 * characterwise, split a line when putting lines. */
8618 if (VIsual_mode == 'V')
8619 flags |= PUT_LINE;
8620 else if (VIsual_mode == 'v')
8621 flags |= PUT_LINE_SPLIT;
8622 if (VIsual_mode == Ctrl_V && dir == FORWARD)
8623 flags |= PUT_LINE_FORWARD;
8624 dir = BACKWARD;
8625 if ((VIsual_mode != 'V'
8626 && curwin->w_cursor.col < curbuf->b_op_start.col)
8627 || (VIsual_mode == 'V'
8628 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
8629 /* cursor is at the end of the line or end of file, put
8630 * forward. */
8631 dir = FORWARD;
8632 }
8633#endif
8634 do_put(cap->oap->regname, dir, cap->count1, flags);
8635
8636#ifdef FEAT_VISUAL
8637 /* If a register was saved, put it back now. */
8638 if (reg2 != NULL)
8639 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008640
8641 /* What to reselect with "gv"? Selecting the just put text seems to
8642 * be the most useful, since the original text was removed. */
8643 if (was_visual)
8644 {
8645 curbuf->b_visual_start = curbuf->b_op_start;
8646 curbuf->b_visual_end = curbuf->b_op_end;
8647 }
8648
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00008649 /* When all lines were selected and deleted do_put() leaves an empty
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008650 * line that needs to be deleted now. */
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00008651 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
8652 ml_delete(curbuf->b_ml.ml_line_count, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008653#endif
8654 auto_format(FALSE, TRUE);
8655 }
8656}
8657
8658/*
8659 * "o" and "O" commands.
8660 */
8661 static void
8662nv_open(cap)
8663 cmdarg_T *cap;
8664{
8665#ifdef FEAT_DIFF
8666 /* "do" is ":diffget" */
8667 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
8668 {
8669 clearop(cap->oap);
8670 nv_diffgetput(FALSE);
8671 }
8672 else
8673#endif
8674#ifdef FEAT_VISUAL
8675 if (VIsual_active) /* switch start and end of visual */
8676 v_swap_corners(cap->cmdchar);
8677 else
8678#endif
8679 n_opencmd(cap);
8680}
8681
8682#ifdef FEAT_SNIFF
8683/*ARGSUSED*/
8684 static void
8685nv_sniff(cap)
8686 cmdarg_T *cap;
8687{
8688 ProcessSniffRequests();
8689}
8690#endif
8691
8692#ifdef FEAT_NETBEANS_INTG
8693 static void
8694nv_nbcmd(cap)
8695 cmdarg_T *cap;
8696{
8697 netbeans_keycommand(cap->nchar);
8698}
8699#endif
8700
8701#ifdef FEAT_DND
8702/*ARGSUSED*/
8703 static void
8704nv_drop(cap)
8705 cmdarg_T *cap;
8706{
8707 do_put('~', BACKWARD, 1L, PUT_CURSEND);
8708}
8709#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00008710
8711#ifdef FEAT_AUTOCMD
8712/*
8713 * Trigger CursorHold event.
8714 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
8715 * input buffer. "did_cursorhold" is set to avoid retriggering.
8716 */
8717/*ARGSUSED*/
8718 static void
8719nv_cursorhold(cap)
8720 cmdarg_T *cap;
8721{
8722 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
8723 did_cursorhold = TRUE;
Bram Moolenaarfc735152005-03-22 22:54:12 +00008724 cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
Bram Moolenaar3918c952005-03-15 22:34:55 +00008725}
8726#endif
8727