1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
10 * normal.c: Contains the main routine for processing characters in command
11 * mode. Communicates closely with the code in ops.c to handle
19 * The Visual area is remembered for reselection.
21 static int resel_VIsual_mode
= NUL
; /* 'v', 'V', or Ctrl-V */
22 static linenr_T resel_VIsual_line_count
; /* number of lines */
23 static colnr_T resel_VIsual_col
; /* nr of cols or end col */
25 static int restart_VIsual_select
= 0;
32 nv_compare
__ARGS((const void *s1
, const void *s2
));
33 static int find_command
__ARGS((int cmdchar
));
34 static void op_colon
__ARGS((oparg_T
*oap
));
35 static void op_function
__ARGS((oparg_T
*oap
));
36 #if defined(FEAT_MOUSE) && defined(FEAT_VISUAL)
37 static void find_start_of_word
__ARGS((pos_T
*));
38 static void find_end_of_word
__ARGS((pos_T
*));
39 static int get_mouse_class
__ARGS((char_u
*p
));
41 static void prep_redo_cmd
__ARGS((cmdarg_T
*cap
));
42 static void prep_redo
__ARGS((int regname
, long, int, int, int, int, int));
43 static int checkclearop
__ARGS((oparg_T
*oap
));
44 static int checkclearopq
__ARGS((oparg_T
*oap
));
45 static void clearop
__ARGS((oparg_T
*oap
));
46 static void clearopbeep
__ARGS((oparg_T
*oap
));
48 static void unshift_special
__ARGS((cmdarg_T
*cap
));
51 static void del_from_showcmd
__ARGS((int));
55 * nv_*(): functions called to handle Normal and Visual mode commands.
56 * n_*(): functions called to handle Normal mode commands.
57 * v_*(): functions called to handle Visual mode commands.
59 static void nv_ignore
__ARGS((cmdarg_T
*cap
));
60 static void nv_nop
__ARGS((cmdarg_T
*cap
));
61 static void nv_error
__ARGS((cmdarg_T
*cap
));
62 static void nv_help
__ARGS((cmdarg_T
*cap
));
63 static void nv_addsub
__ARGS((cmdarg_T
*cap
));
64 static void nv_page
__ARGS((cmdarg_T
*cap
));
65 static void nv_gd
__ARGS((oparg_T
*oap
, int nchar
, int thisblock
));
66 static int nv_screengo
__ARGS((oparg_T
*oap
, int dir
, long dist
));
68 static void nv_mousescroll
__ARGS((cmdarg_T
*cap
));
69 static void nv_mouse
__ARGS((cmdarg_T
*cap
));
71 static void nv_scroll_line
__ARGS((cmdarg_T
*cap
));
72 static void nv_zet
__ARGS((cmdarg_T
*cap
));
74 static void nv_ver_scrollbar
__ARGS((cmdarg_T
*cap
));
75 static void nv_hor_scrollbar
__ARGS((cmdarg_T
*cap
));
77 #ifdef FEAT_GUI_TABLINE
78 static void nv_tabline
__ARGS((cmdarg_T
*cap
));
79 static void nv_tabmenu
__ARGS((cmdarg_T
*cap
));
81 static void nv_exmode
__ARGS((cmdarg_T
*cap
));
82 static void nv_colon
__ARGS((cmdarg_T
*cap
));
83 static void nv_ctrlg
__ARGS((cmdarg_T
*cap
));
84 static void nv_ctrlh
__ARGS((cmdarg_T
*cap
));
85 static void nv_clear
__ARGS((cmdarg_T
*cap
));
86 static void nv_ctrlo
__ARGS((cmdarg_T
*cap
));
87 static void nv_hat
__ARGS((cmdarg_T
*cap
));
88 static void nv_Zet
__ARGS((cmdarg_T
*cap
));
89 static void nv_ident
__ARGS((cmdarg_T
*cap
));
90 static void nv_tagpop
__ARGS((cmdarg_T
*cap
));
91 static void nv_scroll
__ARGS((cmdarg_T
*cap
));
92 static void nv_right
__ARGS((cmdarg_T
*cap
));
93 static void nv_left
__ARGS((cmdarg_T
*cap
));
94 static void nv_up
__ARGS((cmdarg_T
*cap
));
95 static void nv_down
__ARGS((cmdarg_T
*cap
));
96 #ifdef FEAT_SEARCHPATH
97 static void nv_gotofile
__ARGS((cmdarg_T
*cap
));
99 static void nv_end
__ARGS((cmdarg_T
*cap
));
100 static void nv_dollar
__ARGS((cmdarg_T
*cap
));
101 static void nv_search
__ARGS((cmdarg_T
*cap
));
102 static void nv_next
__ARGS((cmdarg_T
*cap
));
103 static void normal_search
__ARGS((cmdarg_T
*cap
, int dir
, char_u
*pat
, int opt
));
104 static void nv_csearch
__ARGS((cmdarg_T
*cap
));
105 static void nv_brackets
__ARGS((cmdarg_T
*cap
));
106 static void nv_percent
__ARGS((cmdarg_T
*cap
));
107 static void nv_brace
__ARGS((cmdarg_T
*cap
));
108 static void nv_mark
__ARGS((cmdarg_T
*cap
));
109 static void nv_findpar
__ARGS((cmdarg_T
*cap
));
110 static void nv_undo
__ARGS((cmdarg_T
*cap
));
111 static void nv_kundo
__ARGS((cmdarg_T
*cap
));
112 static void nv_Replace
__ARGS((cmdarg_T
*cap
));
114 static void nv_vreplace
__ARGS((cmdarg_T
*cap
));
117 static void v_swap_corners
__ARGS((int cmdchar
));
119 static void nv_replace
__ARGS((cmdarg_T
*cap
));
120 static void n_swapchar
__ARGS((cmdarg_T
*cap
));
121 static void nv_cursormark
__ARGS((cmdarg_T
*cap
, int flag
, pos_T
*pos
));
123 static void v_visop
__ARGS((cmdarg_T
*cap
));
125 static void nv_subst
__ARGS((cmdarg_T
*cap
));
126 static void nv_abbrev
__ARGS((cmdarg_T
*cap
));
127 static void nv_optrans
__ARGS((cmdarg_T
*cap
));
128 static void nv_gomark
__ARGS((cmdarg_T
*cap
));
129 static void nv_pcmark
__ARGS((cmdarg_T
*cap
));
130 static void nv_regname
__ARGS((cmdarg_T
*cap
));
132 static void nv_visual
__ARGS((cmdarg_T
*cap
));
133 static void n_start_visual_mode
__ARGS((int c
));
135 static void nv_window
__ARGS((cmdarg_T
*cap
));
136 static void nv_suspend
__ARGS((cmdarg_T
*cap
));
137 static void nv_g_cmd
__ARGS((cmdarg_T
*cap
));
138 static void n_opencmd
__ARGS((cmdarg_T
*cap
));
139 static void nv_dot
__ARGS((cmdarg_T
*cap
));
140 static void nv_redo
__ARGS((cmdarg_T
*cap
));
141 static void nv_Undo
__ARGS((cmdarg_T
*cap
));
142 static void nv_tilde
__ARGS((cmdarg_T
*cap
));
143 static void nv_operator
__ARGS((cmdarg_T
*cap
));
145 static void set_op_var
__ARGS((int optype
));
147 static void nv_lineop
__ARGS((cmdarg_T
*cap
));
148 static void nv_home
__ARGS((cmdarg_T
*cap
));
149 static void nv_pipe
__ARGS((cmdarg_T
*cap
));
150 static void nv_bck_word
__ARGS((cmdarg_T
*cap
));
151 static void nv_wordcmd
__ARGS((cmdarg_T
*cap
));
152 static void nv_beginline
__ARGS((cmdarg_T
*cap
));
153 static void adjust_cursor
__ARGS((oparg_T
*oap
));
155 static void adjust_for_sel
__ARGS((cmdarg_T
*cap
));
156 static int unadjust_for_sel
__ARGS((void));
157 static void nv_select
__ARGS((cmdarg_T
*cap
));
159 static void nv_goto
__ARGS((cmdarg_T
*cap
));
160 static void nv_normal
__ARGS((cmdarg_T
*cap
));
161 static void nv_esc
__ARGS((cmdarg_T
*oap
));
162 static void nv_edit
__ARGS((cmdarg_T
*cap
));
163 static void invoke_edit
__ARGS((cmdarg_T
*cap
, int repl
, int cmd
, int startln
));
165 static void nv_object
__ARGS((cmdarg_T
*cap
));
167 static void nv_record
__ARGS((cmdarg_T
*cap
));
168 static void nv_at
__ARGS((cmdarg_T
*cap
));
169 static void nv_halfpage
__ARGS((cmdarg_T
*cap
));
170 static void nv_join
__ARGS((cmdarg_T
*cap
));
171 static void nv_put
__ARGS((cmdarg_T
*cap
));
172 static void nv_open
__ARGS((cmdarg_T
*cap
));
174 static void nv_sniff
__ARGS((cmdarg_T
*cap
));
176 #ifdef FEAT_NETBEANS_INTG
177 static void nv_nbcmd
__ARGS((cmdarg_T
*cap
));
180 static void nv_drop
__ARGS((cmdarg_T
*cap
));
183 static void nv_cursorhold
__ARGS((cmdarg_T
*cap
));
187 * Function to be called for a Normal or Visual mode command.
188 * The argument is a cmdarg_T.
190 typedef void (*nv_func_T
) __ARGS((cmdarg_T
*cap
));
192 /* Values for cmd_flags. */
193 #define NV_NCH 0x01 /* may need to get a second char */
194 #define NV_NCH_NOP (0x02|NV_NCH) /* get second char when no operator pending */
195 #define NV_NCH_ALW (0x04|NV_NCH) /* always get a second char */
196 #define NV_LANG 0x08 /* second char needs language adjustment */
198 #define NV_SS 0x10 /* may start selection */
199 #define NV_SSS 0x20 /* may start selection with shift modifier */
200 #define NV_STS 0x40 /* may stop selection without shift modif. */
201 #define NV_RL 0x80 /* 'rightleft' modifies command */
202 #define NV_KEEPREG 0x100 /* don't clear regname */
203 #define NV_NCW 0x200 /* not allowed in command-line window */
206 * Generally speaking, every Normal mode command should either clear any
207 * pending operator (with *clearop*()), or set the motion type variable
210 * When a cursor motion command is made, it is marked as being a character or
211 * line oriented motion. Then, if an operator is in effect, the operation
212 * becomes character or line oriented accordingly.
216 * This table contains one entry for every Normal or Visual mode command.
217 * The order doesn't matter, init_normal_cmds() will create a sorted index.
218 * It is faster when all keys from zero to '~' are present.
220 static const struct nv_cmd
222 int cmd_char
; /* (first) command character */
223 nv_func_T cmd_func
; /* function for this command */
224 short_u cmd_flags
; /* NV_ flags */
225 short cmd_arg
; /* value for ca.arg */
228 {NUL
, nv_error
, 0, 0},
229 {Ctrl_A
, nv_addsub
, 0, 0},
230 {Ctrl_B
, nv_page
, NV_STS
, BACKWARD
},
231 {Ctrl_C
, nv_esc
, 0, TRUE
},
232 {Ctrl_D
, nv_halfpage
, 0, 0},
233 {Ctrl_E
, nv_scroll_line
, 0, TRUE
},
234 {Ctrl_F
, nv_page
, NV_STS
, FORWARD
},
235 {Ctrl_G
, nv_ctrlg
, 0, 0},
236 {Ctrl_H
, nv_ctrlh
, 0, 0},
237 {Ctrl_I
, nv_pcmark
, 0, 0},
238 {NL
, nv_down
, 0, FALSE
},
239 {Ctrl_K
, nv_error
, 0, 0},
240 {Ctrl_L
, nv_clear
, 0, 0},
241 {Ctrl_M
, nv_down
, 0, TRUE
},
242 {Ctrl_N
, nv_down
, NV_STS
, FALSE
},
243 {Ctrl_O
, nv_ctrlo
, 0, 0},
244 {Ctrl_P
, nv_up
, NV_STS
, FALSE
},
246 {Ctrl_Q
, nv_visual
, 0, FALSE
},
248 {Ctrl_Q
, nv_ignore
, 0, 0},
250 {Ctrl_R
, nv_redo
, 0, 0},
251 {Ctrl_S
, nv_ignore
, 0, 0},
252 {Ctrl_T
, nv_tagpop
, NV_NCW
, 0},
253 {Ctrl_U
, nv_halfpage
, 0, 0},
255 {Ctrl_V
, nv_visual
, 0, FALSE
},
256 {'V', nv_visual
, 0, FALSE
},
257 {'v', nv_visual
, 0, FALSE
},
259 {Ctrl_V
, nv_error
, 0, 0},
260 {'V', nv_error
, 0, 0},
261 {'v', nv_error
, 0, 0},
263 {Ctrl_W
, nv_window
, 0, 0},
264 {Ctrl_X
, nv_addsub
, 0, 0},
265 {Ctrl_Y
, nv_scroll_line
, 0, FALSE
},
266 {Ctrl_Z
, nv_suspend
, 0, 0},
267 {ESC
, nv_esc
, 0, FALSE
},
268 {Ctrl_BSL
, nv_normal
, NV_NCH_ALW
, 0},
269 {Ctrl_RSB
, nv_ident
, NV_NCW
, 0},
270 {Ctrl_HAT
, nv_hat
, NV_NCW
, 0},
271 {Ctrl__
, nv_error
, 0, 0},
272 {' ', nv_right
, 0, 0},
273 {'!', nv_operator
, 0, 0},
274 {'"', nv_regname
, NV_NCH_NOP
|NV_KEEPREG
, 0},
275 {'#', nv_ident
, 0, 0},
276 {'$', nv_dollar
, 0, 0},
277 {'%', nv_percent
, 0, 0},
278 {'&', nv_optrans
, 0, 0},
279 {'\'', nv_gomark
, NV_NCH_ALW
, TRUE
},
280 {'(', nv_brace
, 0, BACKWARD
},
281 {')', nv_brace
, 0, FORWARD
},
282 {'*', nv_ident
, 0, 0},
283 {'+', nv_down
, 0, TRUE
},
284 {',', nv_csearch
, 0, TRUE
},
285 {'-', nv_up
, 0, TRUE
},
286 {'.', nv_dot
, NV_KEEPREG
, 0},
287 {'/', nv_search
, 0, FALSE
},
288 {'0', nv_beginline
, 0, 0},
289 {'1', nv_ignore
, 0, 0},
290 {'2', nv_ignore
, 0, 0},
291 {'3', nv_ignore
, 0, 0},
292 {'4', nv_ignore
, 0, 0},
293 {'5', nv_ignore
, 0, 0},
294 {'6', nv_ignore
, 0, 0},
295 {'7', nv_ignore
, 0, 0},
296 {'8', nv_ignore
, 0, 0},
297 {'9', nv_ignore
, 0, 0},
298 {':', nv_colon
, 0, 0},
299 {';', nv_csearch
, 0, FALSE
},
300 {'<', nv_operator
, NV_RL
, 0},
301 {'=', nv_operator
, 0, 0},
302 {'>', nv_operator
, NV_RL
, 0},
303 {'?', nv_search
, 0, FALSE
},
304 {'@', nv_at
, NV_NCH_NOP
, FALSE
},
305 {'A', nv_edit
, 0, 0},
306 {'B', nv_bck_word
, 0, 1},
307 {'C', nv_abbrev
, NV_KEEPREG
, 0},
308 {'D', nv_abbrev
, NV_KEEPREG
, 0},
309 {'E', nv_wordcmd
, 0, TRUE
},
310 {'F', nv_csearch
, NV_NCH_ALW
|NV_LANG
, BACKWARD
},
311 {'G', nv_goto
, 0, TRUE
},
312 {'H', nv_scroll
, 0, 0},
313 {'I', nv_edit
, 0, 0},
314 {'J', nv_join
, 0, 0},
315 {'K', nv_ident
, 0, 0},
316 {'L', nv_scroll
, 0, 0},
317 {'M', nv_scroll
, 0, 0},
318 {'N', nv_next
, 0, SEARCH_REV
},
319 {'O', nv_open
, 0, 0},
321 {'Q', nv_exmode
, NV_NCW
, 0},
322 {'R', nv_Replace
, 0, FALSE
},
323 {'S', nv_subst
, NV_KEEPREG
, 0},
324 {'T', nv_csearch
, NV_NCH_ALW
|NV_LANG
, BACKWARD
},
325 {'U', nv_Undo
, 0, 0},
326 {'W', nv_wordcmd
, 0, TRUE
},
327 {'X', nv_abbrev
, NV_KEEPREG
, 0},
328 {'Y', nv_abbrev
, NV_KEEPREG
, 0},
329 {'Z', nv_Zet
, NV_NCH_NOP
|NV_NCW
, 0},
330 {'[', nv_brackets
, NV_NCH_ALW
, BACKWARD
},
331 {'\\', nv_error
, 0, 0},
332 {']', nv_brackets
, NV_NCH_ALW
, FORWARD
},
333 {'^', nv_beginline
, 0, BL_WHITE
| BL_FIX
},
334 {'_', nv_lineop
, 0, 0},
335 {'`', nv_gomark
, NV_NCH_ALW
, FALSE
},
336 {'a', nv_edit
, NV_NCH
, 0},
337 {'b', nv_bck_word
, 0, 0},
338 {'c', nv_operator
, 0, 0},
339 {'d', nv_operator
, 0, 0},
340 {'e', nv_wordcmd
, 0, FALSE
},
341 {'f', nv_csearch
, NV_NCH_ALW
|NV_LANG
, FORWARD
},
342 {'g', nv_g_cmd
, NV_NCH_ALW
, FALSE
},
343 {'h', nv_left
, NV_RL
, 0},
344 {'i', nv_edit
, NV_NCH
, 0},
345 {'j', nv_down
, 0, FALSE
},
346 {'k', nv_up
, 0, FALSE
},
347 {'l', nv_right
, NV_RL
, 0},
348 {'m', nv_mark
, NV_NCH_NOP
, 0},
349 {'n', nv_next
, 0, 0},
350 {'o', nv_open
, 0, 0},
352 {'q', nv_record
, NV_NCH
, 0},
353 {'r', nv_replace
, NV_NCH_NOP
|NV_LANG
, 0},
354 {'s', nv_subst
, NV_KEEPREG
, 0},
355 {'t', nv_csearch
, NV_NCH_ALW
|NV_LANG
, FORWARD
},
356 {'u', nv_undo
, 0, 0},
357 {'w', nv_wordcmd
, 0, FALSE
},
358 {'x', nv_abbrev
, NV_KEEPREG
, 0},
359 {'y', nv_operator
, 0, 0},
360 {'z', nv_zet
, NV_NCH_ALW
, 0},
361 {'{', nv_findpar
, 0, BACKWARD
},
362 {'|', nv_pipe
, 0, 0},
363 {'}', nv_findpar
, 0, FORWARD
},
364 {'~', nv_tilde
, 0, 0},
367 {POUND
, nv_ident
, 0, 0},
369 {K_MOUSEUP
, nv_mousescroll
, 0, TRUE
},
370 {K_MOUSEDOWN
, nv_mousescroll
, 0, FALSE
},
371 {K_LEFTMOUSE
, nv_mouse
, 0, 0},
372 {K_LEFTMOUSE_NM
, nv_mouse
, 0, 0},
373 {K_LEFTDRAG
, nv_mouse
, 0, 0},
374 {K_LEFTRELEASE
, nv_mouse
, 0, 0},
375 {K_LEFTRELEASE_NM
, nv_mouse
, 0, 0},
376 {K_MIDDLEMOUSE
, nv_mouse
, 0, 0},
377 {K_MIDDLEDRAG
, nv_mouse
, 0, 0},
378 {K_MIDDLERELEASE
, nv_mouse
, 0, 0},
379 {K_RIGHTMOUSE
, nv_mouse
, 0, 0},
380 {K_RIGHTDRAG
, nv_mouse
, 0, 0},
381 {K_RIGHTRELEASE
, nv_mouse
, 0, 0},
382 {K_X1MOUSE
, nv_mouse
, 0, 0},
383 {K_X1DRAG
, nv_mouse
, 0, 0},
384 {K_X1RELEASE
, nv_mouse
, 0, 0},
385 {K_X2MOUSE
, nv_mouse
, 0, 0},
386 {K_X2DRAG
, nv_mouse
, 0, 0},
387 {K_X2RELEASE
, nv_mouse
, 0, 0},
389 {K_IGNORE
, nv_ignore
, NV_KEEPREG
, 0},
390 {K_NOP
, nv_nop
, 0, 0},
391 {K_INS
, nv_edit
, 0, 0},
392 {K_KINS
, nv_edit
, 0, 0},
393 {K_BS
, nv_ctrlh
, 0, 0},
394 {K_UP
, nv_up
, NV_SSS
|NV_STS
, FALSE
},
395 {K_S_UP
, nv_page
, NV_SS
, BACKWARD
},
396 {K_DOWN
, nv_down
, NV_SSS
|NV_STS
, FALSE
},
397 {K_S_DOWN
, nv_page
, NV_SS
, FORWARD
},
398 {K_LEFT
, nv_left
, NV_SSS
|NV_STS
|NV_RL
, 0},
399 {K_S_LEFT
, nv_bck_word
, NV_SS
|NV_RL
, 0},
400 {K_C_LEFT
, nv_bck_word
, NV_SSS
|NV_RL
|NV_STS
, 1},
401 {K_RIGHT
, nv_right
, NV_SSS
|NV_STS
|NV_RL
, 0},
402 {K_S_RIGHT
, nv_wordcmd
, NV_SS
|NV_RL
, FALSE
},
403 {K_C_RIGHT
, nv_wordcmd
, NV_SSS
|NV_RL
|NV_STS
, TRUE
},
404 {K_PAGEUP
, nv_page
, NV_SSS
|NV_STS
, BACKWARD
},
405 {K_KPAGEUP
, nv_page
, NV_SSS
|NV_STS
, BACKWARD
},
406 {K_PAGEDOWN
, nv_page
, NV_SSS
|NV_STS
, FORWARD
},
407 {K_KPAGEDOWN
, nv_page
, NV_SSS
|NV_STS
, FORWARD
},
408 {K_END
, nv_end
, NV_SSS
|NV_STS
, FALSE
},
409 {K_KEND
, nv_end
, NV_SSS
|NV_STS
, FALSE
},
410 {K_S_END
, nv_end
, NV_SS
, FALSE
},
411 {K_C_END
, nv_end
, NV_SSS
|NV_STS
, TRUE
},
412 {K_HOME
, nv_home
, NV_SSS
|NV_STS
, 0},
413 {K_KHOME
, nv_home
, NV_SSS
|NV_STS
, 0},
414 {K_S_HOME
, nv_home
, NV_SS
, 0},
415 {K_C_HOME
, nv_goto
, NV_SSS
|NV_STS
, FALSE
},
416 {K_DEL
, nv_abbrev
, 0, 0},
417 {K_KDEL
, nv_abbrev
, 0, 0},
418 {K_UNDO
, nv_kundo
, 0, 0},
419 {K_HELP
, nv_help
, NV_NCW
, 0},
420 {K_F1
, nv_help
, NV_NCW
, 0},
421 {K_XF1
, nv_help
, NV_NCW
, 0},
423 {K_SELECT
, nv_select
, 0, 0},
426 {K_VER_SCROLLBAR
, nv_ver_scrollbar
, 0, 0},
427 {K_HOR_SCROLLBAR
, nv_hor_scrollbar
, 0, 0},
429 #ifdef FEAT_GUI_TABLINE
430 {K_TABLINE
, nv_tabline
, 0, 0},
431 {K_TABMENU
, nv_tabmenu
, 0, 0},
434 {K_F8
, farsi_fkey
, 0, 0},
435 {K_F9
, farsi_fkey
, 0, 0},
438 {K_SNIFF
, nv_sniff
, 0, 0},
440 #ifdef FEAT_NETBEANS_INTG
441 {K_F21
, nv_nbcmd
, NV_NCH_ALW
, 0},
444 {K_DROP
, nv_drop
, NV_STS
, 0},
447 {K_CURSORHOLD
, nv_cursorhold
, NV_KEEPREG
, 0},
451 /* Number of commands in nv_cmds[]. */
452 #define NV_CMDS_SIZE (sizeof(nv_cmds) / sizeof(struct nv_cmd))
454 /* Sorted index of commands in nv_cmds[]. */
455 static short nv_cmd_idx
[NV_CMDS_SIZE
];
457 /* The highest index for which
458 * nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char] */
459 static int nv_max_linear
;
462 * Compare functions for qsort() below, that checks the command character
463 * through the index in nv_cmd_idx[].
475 /* The commands are sorted on absolute value. */
476 c1
= nv_cmds
[*(const short *)s1
].cmd_char
;
477 c2
= nv_cmds
[*(const short *)s2
].cmd_char
;
486 * Initialize the nv_cmd_idx[] table.
493 /* Fill the index table with a one to one relation. */
494 for (i
= 0; i
< NV_CMDS_SIZE
; ++i
)
497 /* Sort the commands by the command character. */
498 qsort((void *)&nv_cmd_idx
, (size_t)NV_CMDS_SIZE
, sizeof(short), nv_compare
);
500 /* Find the first entry that can't be indexed by the command character. */
501 for (i
= 0; i
< NV_CMDS_SIZE
; ++i
)
502 if (i
!= nv_cmds
[nv_cmd_idx
[i
]].cmd_char
)
504 nv_max_linear
= i
- 1;
508 * Search for a command in the commands table.
509 * Returns -1 for invalid command.
512 find_command(cmdchar
)
521 /* A multi-byte character is never a command. */
522 if (cmdchar
>= 0x100)
526 /* We use the absolute value of the character. Special keys have a
527 * negative value, but are sorted on their absolute value. */
531 /* If the character is in the first part: The character is the index into
533 if (cmdchar
<= nv_max_linear
)
534 return nv_cmd_idx
[cmdchar
];
536 /* Perform a binary search. */
537 bot
= nv_max_linear
+ 1;
538 top
= NV_CMDS_SIZE
- 1;
543 c
= nv_cmds
[nv_cmd_idx
[i
]].cmd_char
;
560 * Execute a command in Normal mode.
564 normal_cmd(oap
, toplevel
)
566 int toplevel
; /* TRUE when called from main() */
568 static long opcount
= 0; /* ca.opcount saved here */
569 cmdarg_T ca
; /* command arguments */
571 int ctrl_w
= FALSE
; /* got CTRL-W command */
572 int old_col
= curwin
->w_curswant
;
573 #ifdef FEAT_CMDL_INFO
574 int need_flushbuf
; /* need to call out_flush() */
577 pos_T old_pos
; /* cursor position before command */
579 static int old_mapped_len
= 0;
583 vim_memset(&ca
, 0, sizeof(ca
)); /* also resets ca.retval */
585 ca
.opcount
= opcount
;
588 want_sniff_request
= sniff_connected
;
592 * If there is an operator pending, then the command we take this time
593 * will terminate it. Finish_op tells us to finish the operation before
594 * returning this time (unless the operation was cancelled).
599 finish_op
= (oap
->op_type
!= OP_NOP
);
603 ui_cursor_shape(); /* may show different cursor shape */
604 # ifdef FEAT_MOUSESHAPE
605 update_mouseshape(-1);
610 if (!finish_op
&& !oap
->regname
)
614 mapped_len
= typebuf_maplen();
618 #ifdef USE_ON_FLY_SCROLL
619 dont_scroll
= FALSE
; /* allow scrolling here */
623 * Get the command character from the user.
628 LANGMAP_ADJUST(c
, TRUE
);
633 * If a mapping was started in Visual or Select mode, remember the length
634 * of the mapping. This is used below to not return to Insert mode for as
635 * long as the mapping is being executed.
637 if (restart_edit
== 0)
639 else if (old_mapped_len
640 || (VIsual_active
&& mapped_len
== 0 && typebuf_maplen() > 0))
641 old_mapped_len
= typebuf_maplen();
649 * In Select mode, typed text replaces the selection.
653 && (vim_isprintc(c
) || c
== NL
|| c
== CAR
|| c
== K_KENTER
))
655 /* Fake a "c"hange command. When "restart_edit" is set (e.g., because
656 * 'insertmode' is set) fake a "d"elete command, Insert mode will
657 * restart automatically.
658 * Insert the typed character in the typeahead buffer, so that it can
659 * be mapped in Insert mode. Required for ":lmap" to work. */
661 if (restart_edit
!= 0)
665 msg_nowait
= TRUE
; /* don't delay going to insert mode */
669 #ifdef FEAT_CMDL_INFO
670 need_flushbuf
= add_to_showcmd(c
);
675 if (!(VIsual_active
&& VIsual_select
))
679 * Handle a count before a command and compute ca.count0.
680 * Note that '0' is a command and not the start of a count, but it's
681 * part of a count after other digits.
683 while ( (c
>= '1' && c
<= '9')
684 || (ca
.count0
!= 0 && (c
== K_DEL
|| c
== K_KDEL
|| c
== '0')))
686 if (c
== K_DEL
|| c
== K_KDEL
)
689 #ifdef FEAT_CMDL_INFO
690 del_from_showcmd(4); /* delete the digit and ~@% */
694 ca
.count0
= ca
.count0
* 10 + (c
- '0');
695 if (ca
.count0
< 0) /* got too large! */
696 ca
.count0
= 999999999L;
698 /* Set v:count here, when called from main() and not a stuffed
699 * command, so that v:count can be used in an expression mapping
700 * right after the count. */
701 if (toplevel
&& stuff_empty())
702 set_vcount(ca
.count0
, ca
.count0
== 0 ? 1 : ca
.count0
);
707 ++allow_keys
; /* no mapping for nchar, but keys */
709 ++no_zero_mapping
; /* don't map zero here */
712 LANGMAP_ADJUST(c
, TRUE
);
720 #ifdef FEAT_CMDL_INFO
721 need_flushbuf
|= add_to_showcmd(c
);
726 * If we got CTRL-W there may be a/another count
728 if (c
== Ctrl_W
&& !ctrl_w
&& oap
->op_type
== OP_NOP
)
731 ca
.opcount
= ca
.count0
; /* remember first count */
734 ++allow_keys
; /* no mapping for nchar, but keys */
735 c
= plain_vgetc(); /* get next character */
737 LANGMAP_ADJUST(c
, TRUE
);
741 #ifdef FEAT_CMDL_INFO
742 need_flushbuf
|= add_to_showcmd(c
);
744 goto getcount
; /* jump back */
749 * If we're in the middle of an operator (including after entering a yank
750 * buffer with '"') AND we had a count before the operator, then that
751 * count overrides the current value of ca.count0.
752 * What this means effectively, is that commands like "3dw" get turned
753 * into "d3w" which makes things fall into place pretty neatly.
754 * If you give a count before AND after the operator, they are multiplied.
759 ca
.count0
*= ca
.opcount
;
761 ca
.count0
= ca
.opcount
;
765 * Always remember the count. It will be set to zero (on the next call,
766 * above) when there is no pending operator.
767 * When called from main(), save the count for use by the "count" built-in
770 ca
.opcount
= ca
.count0
;
771 ca
.count1
= (ca
.count0
== 0 ? 1 : ca
.count0
);
775 * Only set v:count when called from main() and not a stuffed command.
777 if (toplevel
&& stuff_empty())
778 set_vcount(ca
.count0
, ca
.count1
);
782 * Find the command character in the table of commands.
783 * For CTRL-W we already got nchar when looking for a count.
792 idx
= find_command(ca
.cmdchar
);
795 /* Not a known command: beep. */
800 if (text_locked() && (nv_cmds
[idx
].cmd_flags
& NV_NCW
))
802 /* This command is not allowed wile editing a ccmdline: beep. */
808 if ((nv_cmds
[idx
].cmd_flags
& NV_NCW
) && curbuf_locked())
814 * In Visual/Select mode, a few keys are handled in a special way.
818 /* when 'keymodel' contains "stopsel" may stop Select/Visual mode */
820 && (nv_cmds
[idx
].cmd_flags
& NV_STS
)
821 && !(mod_mask
& MOD_MASK_SHIFT
))
824 redraw_curbuf_later(INVERTED
);
827 /* Keys that work different when 'keymodel' contains "startsel" */
830 if (nv_cmds
[idx
].cmd_flags
& NV_SS
)
832 unshift_special(&ca
);
833 idx
= find_command(ca
.cmdchar
);
841 else if ((nv_cmds
[idx
].cmd_flags
& NV_SSS
)
842 && (mod_mask
& MOD_MASK_SHIFT
))
844 mod_mask
&= ~MOD_MASK_SHIFT
;
850 #ifdef FEAT_RIGHTLEFT
851 if (curwin
->w_p_rl
&& KeyTyped
&& !KeyStuffed
852 && (nv_cmds
[idx
].cmd_flags
& NV_RL
))
854 /* Invert horizontal movements and operations. Only when typed by the
855 * user directly, not when the result of a mapping or "x" translated
859 case 'l': ca
.cmdchar
= 'h'; break;
860 case K_RIGHT
: ca
.cmdchar
= K_LEFT
; break;
861 case K_S_RIGHT
: ca
.cmdchar
= K_S_LEFT
; break;
862 case K_C_RIGHT
: ca
.cmdchar
= K_C_LEFT
; break;
863 case 'h': ca
.cmdchar
= 'l'; break;
864 case K_LEFT
: ca
.cmdchar
= K_RIGHT
; break;
865 case K_S_LEFT
: ca
.cmdchar
= K_S_RIGHT
; break;
866 case K_C_LEFT
: ca
.cmdchar
= K_C_RIGHT
; break;
867 case '>': ca
.cmdchar
= '<'; break;
868 case '<': ca
.cmdchar
= '>'; break;
870 idx
= find_command(ca
.cmdchar
);
875 * Get an additional character if we need one.
877 if ((nv_cmds
[idx
].cmd_flags
& NV_NCH
)
878 && (((nv_cmds
[idx
].cmd_flags
& NV_NCH_NOP
) == NV_NCH_NOP
879 && oap
->op_type
== OP_NOP
)
880 || (nv_cmds
[idx
].cmd_flags
& NV_NCH_ALW
) == NV_NCH_ALW
881 || (ca
.cmdchar
== 'q'
882 && oap
->op_type
== OP_NOP
885 || ((ca
.cmdchar
== 'a' || ca
.cmdchar
== 'i')
886 && (oap
->op_type
!= OP_NOP
893 int repl
= FALSE
; /* get character for replace mode */
894 int lit
= FALSE
; /* get extra character literally */
895 int langmap_active
= FALSE
; /* using :lmap mappings */
896 int lang
; /* getting a text character */
897 #ifdef USE_IM_CONTROL
898 int save_smd
; /* saved value of p_smd */
902 ++allow_keys
; /* no mapping for nchar, but allow key codes */
904 /* Don't generate a CursorHold event here, most commands can't handle
905 * it, e.g., nv_replace(), nv_csearch(). */
906 did_cursorhold
= TRUE
;
908 if (ca
.cmdchar
== 'g')
911 * For 'g' get the next character now, so that we can check for
912 * "gr", "g'" and "g`".
914 ca
.nchar
= plain_vgetc();
916 LANGMAP_ADJUST(ca
.nchar
, TRUE
);
918 #ifdef FEAT_CMDL_INFO
919 need_flushbuf
|= add_to_showcmd(ca
.nchar
);
921 if (ca
.nchar
== 'r' || ca
.nchar
== '\'' || ca
.nchar
== '`'
922 || ca
.nchar
== Ctrl_BSL
)
924 cp
= &ca
.extra_char
; /* need to get a third character */
926 lit
= TRUE
; /* get it literally */
928 repl
= TRUE
; /* get it in replace mode */
931 cp
= NULL
; /* no third character needed */
935 if (ca
.cmdchar
== 'r') /* get it in replace mode */
939 lang
= (repl
|| (nv_cmds
[idx
].cmd_flags
& NV_LANG
));
942 * Get a second or third character.
949 State
= REPLACE
; /* pretend Replace mode */
950 ui_cursor_shape(); /* show different cursor shape */
953 if (lang
&& curbuf
->b_p_iminsert
== B_IMODE_LMAP
)
955 /* Allow mappings defined with ":lmap". */
962 langmap_active
= TRUE
;
964 #ifdef USE_IM_CONTROL
966 p_smd
= FALSE
; /* Don't let the IM code show the mode here */
967 if (lang
&& curbuf
->b_p_iminsert
== B_IMODE_IM
)
975 /* Undo the decrement done above */
980 #ifdef USE_IM_CONTROL
983 if (curbuf
->b_p_iminsert
!= B_IMODE_LMAP
)
984 im_save_status(&curbuf
->b_p_iminsert
);
985 im_set_active(FALSE
);
992 #ifdef FEAT_CMDL_INFO
993 need_flushbuf
|= add_to_showcmd(*cp
);
999 /* Typing CTRL-K gets a digraph. */
1001 && ((nv_cmds
[idx
].cmd_flags
& NV_LANG
)
1002 || cp
== &ca
.extra_char
)
1003 && vim_strchr(p_cpo
, CPO_DIGRAPH
) == NULL
)
1005 c
= get_digraph(FALSE
);
1009 # ifdef FEAT_CMDL_INFO
1010 /* Guessing how to update showcmd here... */
1011 del_from_showcmd(3);
1012 need_flushbuf
|= add_to_showcmd(*cp
);
1019 /* adjust chars > 127, except after "tTfFr" commands */
1020 LANGMAP_ADJUST(*cp
, !lang
);
1022 #ifdef FEAT_RIGHTLEFT
1023 /* adjust Hebrew mapped char */
1024 if (p_hkmap
&& lang
&& KeyTyped
)
1027 /* adjust Farsi mapped char */
1028 if (p_fkmap
&& lang
&& KeyTyped
)
1035 * When the next character is CTRL-\ a following CTRL-N means the
1036 * command is aborted and we go to Normal mode.
1038 if (cp
== &ca
.extra_char
1039 && ca
.nchar
== Ctrl_BSL
1040 && (ca
.extra_char
== Ctrl_N
|| ca
.extra_char
== Ctrl_G
))
1042 ca
.cmdchar
= Ctrl_BSL
;
1043 ca
.nchar
= ca
.extra_char
;
1044 idx
= find_command(ca
.cmdchar
);
1046 else if (*cp
== Ctrl_BSL
)
1048 long towait
= (p_ttm
>= 0 ? p_ttm
: p_tm
);
1050 /* There is a busy wait here when typing "f<C-\>" and then
1051 * something different from CTRL-N. Can't be avoided. */
1052 while ((c
= vpeekc()) <= 0 && towait
> 0L)
1054 do_sleep(towait
> 50L ? 50L : towait
);
1060 if (c
!= Ctrl_N
&& c
!= Ctrl_G
)
1064 ca
.cmdchar
= Ctrl_BSL
;
1066 idx
= find_command(ca
.cmdchar
);
1072 /* When getting a text character and the next character is a
1073 * multi-byte character, it could be a composing character.
1074 * However, don't wait for it to arrive. */
1075 while (enc_utf8
&& lang
&& (c
= vpeekc()) > 0
1076 && (c
>= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1079 if (!utf_iscomposing(c
))
1081 vungetc(c
); /* it wasn't, put it back */
1084 else if (ca
.ncharC1
== 0)
1095 #ifdef FEAT_CMDL_INFO
1097 * Flush the showcmd characters onto the screen so we can see them while
1098 * the command is being executed. Only do this when the shown command was
1099 * actually displayed, otherwise this will slow down a lot when executing
1106 did_cursorhold
= FALSE
;
1111 if (ca
.nchar
== ESC
)
1114 if (restart_edit
== 0 && goto_im())
1119 if (ca
.cmdchar
!= K_IGNORE
)
1121 msg_didout
= FALSE
; /* don't scroll screen up for normal command */
1126 old_pos
= curwin
->w_cursor
; /* remember where cursor was */
1128 /* When 'keymodel' contains "startsel" some keys start Select/Visual
1130 if (!VIsual_active
&& km_startsel
)
1132 if (nv_cmds
[idx
].cmd_flags
& NV_SS
)
1135 unshift_special(&ca
);
1136 idx
= find_command(ca
.cmdchar
);
1138 else if ((nv_cmds
[idx
].cmd_flags
& NV_SSS
)
1139 && (mod_mask
& MOD_MASK_SHIFT
))
1142 mod_mask
&= ~MOD_MASK_SHIFT
;
1148 * Execute the command!
1149 * Call the command function found in the commands table.
1151 ca
.arg
= nv_cmds
[idx
].cmd_arg
;
1152 (nv_cmds
[idx
].cmd_func
)(&ca
);
1155 * If we didn't start or finish an operator, reset oap->regname, unless we
1160 && (idx
< 0 || !(nv_cmds
[idx
].cmd_flags
& NV_KEEPREG
)))
1169 /* Get the length of mapped chars again after typing a count, second
1170 * character or "z333<cr>". */
1171 if (old_mapped_len
> 0)
1172 old_mapped_len
= typebuf_maplen();
1176 * If an operation is pending, handle it...
1178 do_pending_operator(&ca
, old_col
, FALSE
);
1181 * Wait for a moment when a message is displayed that will be overwritten
1182 * by the mode message.
1183 * In Visual mode and with "^O" in Insert mode, a short message will be
1184 * overwritten by the mode message. Wait a bit, until a key is hit.
1185 * In Visual mode, it's more important to keep the Visual area updated
1186 * than keeping a message (e.g. from a /pat search).
1187 * Only do this if the command was typed, not from a mapping.
1188 * Don't wait when emsg_silent is non-zero.
1189 * Also wait a bit after an error message, e.g. for "^O:".
1190 * Don't redraw the screen, it would remove the message.
1194 && (restart_edit
!= 0
1197 && old_pos
.lnum
== curwin
->w_cursor
.lnum
1198 && old_pos
.col
== curwin
->w_cursor
.col
)
1203 && (msg_didout
|| (msg_didany
&& msg_scroll
))
1206 || (restart_edit
!= 0
1211 || emsg_on_display
)))
1212 && oap
->regname
== 0
1213 && !(ca
.retval
& CA_COMMAND_BUSY
)
1218 && oap
->op_type
== OP_NOP
)
1220 int save_State
= State
;
1222 /* Draw the cursor with the right shape here */
1223 if (restart_edit
!= 0)
1226 /* If need to redraw, and there is a "keep_msg", redraw before the
1228 if (must_redraw
&& keep_msg
!= NULL
&& !emsg_on_display
)
1234 /* showmode() will clear keep_msg, but we want to use it anyway */
1236 /* now reset it, otherwise it's put in the history again */
1238 msg_attr(kmsg
, keep_msg_attr
);
1244 if (msg_scroll
|| emsg_on_display
)
1245 ui_delay(1000L, TRUE
); /* wait at least one second */
1246 ui_delay(3000L, FALSE
); /* wait up to three seconds */
1250 emsg_on_display
= FALSE
;
1254 * Finish up after executing a Normal mode command.
1260 /* Reset finish_op, in case it was set */
1266 /* Redraw the cursor with another shape, if we were in Operator-pending
1267 * mode or did a replace command. */
1268 if (c
|| ca
.cmdchar
== 'r')
1270 ui_cursor_shape(); /* may show different cursor shape */
1271 # ifdef FEAT_MOUSESHAPE
1272 update_mouseshape(-1);
1277 #ifdef FEAT_CMDL_INFO
1278 if (oap
->op_type
== OP_NOP
&& oap
->regname
== 0)
1282 checkpcmark(); /* check if we moved since setting pcmark */
1283 vim_free(ca
.searchbuf
);
1290 #ifdef FEAT_SCROLLBIND
1291 if (curwin
->w_p_scb
&& toplevel
)
1293 validate_cursor(); /* may need to update w_leftcol */
1294 do_check_scrollbind(TRUE
);
1299 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1300 * if still inside a mapping that started in Visual mode).
1301 * May switch from Visual to Select mode after CTRL-O command.
1303 if ( oap
->op_type
== OP_NOP
1305 && ((restart_edit
!= 0 && !VIsual_active
&& old_mapped_len
== 0)
1306 || restart_VIsual_select
== 1)
1308 && restart_edit
!= 0
1310 && !(ca
.retval
& CA_COMMAND_BUSY
)
1312 && oap
->regname
== 0)
1315 if (restart_VIsual_select
== 1)
1317 VIsual_select
= TRUE
;
1319 restart_VIsual_select
= 0;
1322 if (restart_edit
!= 0
1324 && !VIsual_active
&& old_mapped_len
== 0
1327 (void)edit(restart_edit
, FALSE
, 1L);
1331 if (restart_VIsual_select
== 2)
1332 restart_VIsual_select
= 1;
1335 /* Save count before an operator for next time. */
1336 opcount
= ca
.opcount
;
1340 * Handle an operator after visual mode or when the movement is finished
1343 do_pending_operator(cap
, old_col
, gui_yank
)
1348 oparg_T
*oap
= cap
->oap
;
1350 int empty_region_error
;
1351 int restart_edit_save
;
1354 /* The visual area is remembered for redo */
1355 static int redo_VIsual_mode
= NUL
; /* 'v', 'V', or Ctrl-V */
1356 static linenr_T redo_VIsual_line_count
; /* number of lines */
1357 static colnr_T redo_VIsual_col
; /* number of cols or end column */
1358 static long redo_VIsual_count
; /* count for Visual operator */
1359 # ifdef FEAT_VIRTUALEDIT
1360 int include_line_break
= FALSE
;
1364 #if defined(FEAT_CLIPBOARD)
1366 * Yank the visual area into the GUI selection register before we operate
1367 * on it and lose it forever.
1368 * Don't do it if a specific register was specified, so that ""x"*P works.
1369 * This could call do_pending_operator() recursively, but that's OK
1370 * because gui_yank will be TRUE for the nested call.
1372 if (clip_star
.available
1373 && oap
->op_type
!= OP_NOP
1377 && !redo_VIsual_busy
1379 && oap
->regname
== 0)
1382 old_cursor
= curwin
->w_cursor
;
1385 * If an operation is pending, handle it...
1391 ) && oap
->op_type
!= OP_NOP
)
1394 oap
->is_VIsual
= VIsual_active
;
1395 if (oap
->motion_force
== 'V')
1396 oap
->motion_type
= MLINE
;
1397 else if (oap
->motion_force
== 'v')
1399 /* If the motion was linewise, "inclusive" will not have been set.
1400 * Use "exclusive" to be consistent. Makes "dvj" work nice. */
1401 if (oap
->motion_type
== MLINE
)
1402 oap
->inclusive
= FALSE
;
1403 /* If the motion already was characterwise, toggle "inclusive" */
1404 else if (oap
->motion_type
== MCHAR
)
1405 oap
->inclusive
= !oap
->inclusive
;
1406 oap
->motion_type
= MCHAR
;
1408 else if (oap
->motion_force
== Ctrl_V
)
1410 /* Change line- or characterwise motion into Visual block mode. */
1411 VIsual_active
= TRUE
;
1412 VIsual
= oap
->start
;
1413 VIsual_mode
= Ctrl_V
;
1414 VIsual_select
= FALSE
;
1415 VIsual_reselect
= FALSE
;
1419 /* only redo yank when 'y' flag is in 'cpoptions' */
1420 /* never redo "zf" (define fold) */
1421 if ((vim_strchr(p_cpo
, CPO_YANK
) != NULL
|| oap
->op_type
!= OP_YANK
)
1423 && (!VIsual_active
|| oap
->motion_force
)
1425 && cap
->cmdchar
!= 'D'
1427 && oap
->op_type
!= OP_FOLD
1428 && oap
->op_type
!= OP_FOLDOPEN
1429 && oap
->op_type
!= OP_FOLDOPENREC
1430 && oap
->op_type
!= OP_FOLDCLOSE
1431 && oap
->op_type
!= OP_FOLDCLOSEREC
1432 && oap
->op_type
!= OP_FOLDDEL
1433 && oap
->op_type
!= OP_FOLDDELREC
1437 prep_redo(oap
->regname
, cap
->count0
,
1438 get_op_char(oap
->op_type
), get_extra_op_char(oap
->op_type
),
1439 oap
->motion_force
, cap
->cmdchar
, cap
->nchar
);
1440 if (cap
->cmdchar
== '/' || cap
->cmdchar
== '?') /* was a search */
1443 * If 'cpoptions' does not contain 'r', insert the search
1444 * pattern to really repeat the same command.
1446 if (vim_strchr(p_cpo
, CPO_REDO
) == NULL
)
1447 AppendToRedobuffLit(cap
->searchbuf
, -1);
1448 AppendToRedobuff(NL_STR
);
1450 else if (cap
->cmdchar
== ':')
1452 /* do_cmdline() has stored the first typed line in
1453 * "repeat_cmdline". When several lines are typed repeating
1454 * won't be possible. */
1455 if (repeat_cmdline
== NULL
)
1459 AppendToRedobuffLit(repeat_cmdline
, -1);
1460 AppendToRedobuff(NL_STR
);
1461 vim_free(repeat_cmdline
);
1462 repeat_cmdline
= NULL
;
1468 if (redo_VIsual_busy
)
1470 oap
->start
= curwin
->w_cursor
;
1471 curwin
->w_cursor
.lnum
+= redo_VIsual_line_count
- 1;
1472 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
1473 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
1474 VIsual_mode
= redo_VIsual_mode
;
1475 if (VIsual_mode
== 'v')
1477 if (redo_VIsual_line_count
<= 1)
1478 curwin
->w_cursor
.col
+= redo_VIsual_col
- 1;
1480 curwin
->w_cursor
.col
= redo_VIsual_col
;
1482 if (redo_VIsual_col
== MAXCOL
)
1484 curwin
->w_curswant
= MAXCOL
;
1485 coladvance((colnr_T
)MAXCOL
);
1487 cap
->count0
= redo_VIsual_count
;
1488 if (redo_VIsual_count
!= 0)
1489 cap
->count1
= redo_VIsual_count
;
1493 else if (VIsual_active
)
1497 /* Save the current VIsual area for '< and '> marks, and "gv" */
1498 curbuf
->b_visual
.vi_start
= VIsual
;
1499 curbuf
->b_visual
.vi_end
= curwin
->w_cursor
;
1500 curbuf
->b_visual
.vi_mode
= VIsual_mode
;
1501 curbuf
->b_visual
.vi_curswant
= curwin
->w_curswant
;
1503 curbuf
->b_visual_mode_eval
= VIsual_mode
;
1507 /* In Select mode, a linewise selection is operated upon like a
1508 * characterwise selection. */
1509 if (VIsual_select
&& VIsual_mode
== 'V')
1511 if (lt(VIsual
, curwin
->w_cursor
))
1514 curwin
->w_cursor
.col
=
1515 (colnr_T
)STRLEN(ml_get(curwin
->w_cursor
.lnum
));
1519 curwin
->w_cursor
.col
= 0;
1520 VIsual
.col
= (colnr_T
)STRLEN(ml_get(VIsual
.lnum
));
1524 /* If 'selection' is "exclusive", backup one character for
1525 * charwise selections. */
1526 else if (VIsual_mode
== 'v')
1528 # ifdef FEAT_VIRTUALEDIT
1529 include_line_break
=
1534 oap
->start
= VIsual
;
1535 if (VIsual_mode
== 'V')
1538 #endif /* FEAT_VISUAL */
1541 * Set oap->start to the first position of the operated text, oap->end
1542 * to the end of the operated text. w_cursor is equal to oap->start.
1544 if (lt(oap
->start
, curwin
->w_cursor
))
1547 /* Include folded lines completely. */
1550 if (hasFolding(oap
->start
.lnum
, &oap
->start
.lnum
, NULL
))
1552 if (hasFolding(curwin
->w_cursor
.lnum
, NULL
,
1553 &curwin
->w_cursor
.lnum
))
1554 curwin
->w_cursor
.col
= (colnr_T
)STRLEN(ml_get_curline());
1557 oap
->end
= curwin
->w_cursor
;
1558 curwin
->w_cursor
= oap
->start
;
1560 /* w_virtcol may have been updated; if the cursor goes back to its
1561 * previous position w_virtcol becomes invalid and isn't updated
1563 curwin
->w_valid
&= ~VALID_VIRTCOL
;
1568 /* Include folded lines completely. */
1569 if (!VIsual_active
&& oap
->motion_type
== MLINE
)
1571 if (hasFolding(curwin
->w_cursor
.lnum
, &curwin
->w_cursor
.lnum
,
1573 curwin
->w_cursor
.col
= 0;
1574 if (hasFolding(oap
->start
.lnum
, NULL
, &oap
->start
.lnum
))
1575 oap
->start
.col
= (colnr_T
)STRLEN(ml_get(oap
->start
.lnum
));
1578 oap
->end
= oap
->start
;
1579 oap
->start
= curwin
->w_cursor
;
1582 oap
->line_count
= oap
->end
.lnum
- oap
->start
.lnum
+ 1;
1584 #ifdef FEAT_VIRTUALEDIT
1585 /* Set "virtual_op" before resetting VIsual_active. */
1586 virtual_op
= virtual_active();
1590 if (VIsual_active
|| redo_VIsual_busy
)
1592 if (VIsual_mode
== Ctrl_V
) /* block mode */
1596 oap
->block_mode
= TRUE
;
1598 getvvcol(curwin
, &(oap
->start
),
1599 &oap
->start_vcol
, NULL
, &oap
->end_vcol
);
1600 if (!redo_VIsual_busy
)
1602 getvvcol(curwin
, &(oap
->end
), &start
, NULL
, &end
);
1604 if (start
< oap
->start_vcol
)
1605 oap
->start_vcol
= start
;
1606 if (end
> oap
->end_vcol
)
1608 if (*p_sel
== 'e' && start
>= 1
1609 && start
- 1 >= oap
->end_vcol
)
1610 oap
->end_vcol
= start
- 1;
1612 oap
->end_vcol
= end
;
1616 /* if '$' was used, get oap->end_vcol from longest line */
1617 if (curwin
->w_curswant
== MAXCOL
)
1619 curwin
->w_cursor
.col
= MAXCOL
;
1621 for (curwin
->w_cursor
.lnum
= oap
->start
.lnum
;
1622 curwin
->w_cursor
.lnum
<= oap
->end
.lnum
;
1623 ++curwin
->w_cursor
.lnum
)
1625 getvvcol(curwin
, &curwin
->w_cursor
, NULL
, NULL
, &end
);
1626 if (end
> oap
->end_vcol
)
1627 oap
->end_vcol
= end
;
1630 else if (redo_VIsual_busy
)
1631 oap
->end_vcol
= oap
->start_vcol
+ redo_VIsual_col
- 1;
1633 * Correct oap->end.col and oap->start.col to be the
1634 * upper-left and lower-right corner of the block area.
1636 * (Actually, this does convert column positions into character
1639 curwin
->w_cursor
.lnum
= oap
->end
.lnum
;
1640 coladvance(oap
->end_vcol
);
1641 oap
->end
= curwin
->w_cursor
;
1643 curwin
->w_cursor
= oap
->start
;
1644 coladvance(oap
->start_vcol
);
1645 oap
->start
= curwin
->w_cursor
;
1648 if (!redo_VIsual_busy
&& !gui_yank
)
1651 * Prepare to reselect and redo Visual: this is based on the
1652 * size of the Visual text
1654 resel_VIsual_mode
= VIsual_mode
;
1655 if (curwin
->w_curswant
== MAXCOL
)
1656 resel_VIsual_col
= MAXCOL
;
1657 else if (VIsual_mode
== Ctrl_V
)
1658 resel_VIsual_col
= oap
->end_vcol
- oap
->start_vcol
+ 1;
1659 else if (oap
->line_count
> 1)
1660 resel_VIsual_col
= oap
->end
.col
;
1662 resel_VIsual_col
= oap
->end
.col
- oap
->start
.col
+ 1;
1663 resel_VIsual_line_count
= oap
->line_count
;
1666 /* can't redo yank (unless 'y' is in 'cpoptions') and ":" */
1667 if ((vim_strchr(p_cpo
, CPO_YANK
) != NULL
|| oap
->op_type
!= OP_YANK
)
1668 && oap
->op_type
!= OP_COLON
1670 && oap
->op_type
!= OP_FOLD
1671 && oap
->op_type
!= OP_FOLDOPEN
1672 && oap
->op_type
!= OP_FOLDOPENREC
1673 && oap
->op_type
!= OP_FOLDCLOSE
1674 && oap
->op_type
!= OP_FOLDCLOSEREC
1675 && oap
->op_type
!= OP_FOLDDEL
1676 && oap
->op_type
!= OP_FOLDDELREC
1678 && oap
->motion_force
== NUL
1681 /* Prepare for redoing. Only use the nchar field for "r",
1682 * otherwise it might be the second char of the operator. */
1683 prep_redo(oap
->regname
, 0L, NUL
, 'v',
1684 get_op_char(oap
->op_type
),
1685 get_extra_op_char(oap
->op_type
),
1686 oap
->op_type
== OP_REPLACE
? cap
->nchar
: NUL
);
1687 if (!redo_VIsual_busy
)
1689 redo_VIsual_mode
= resel_VIsual_mode
;
1690 redo_VIsual_col
= resel_VIsual_col
;
1691 redo_VIsual_line_count
= resel_VIsual_line_count
;
1692 redo_VIsual_count
= cap
->count0
;
1697 * oap->inclusive defaults to TRUE.
1698 * If oap->end is on a NUL (empty line) oap->inclusive becomes
1699 * FALSE. This makes "d}P" and "v}dP" work the same.
1701 if (oap
->motion_force
== NUL
|| oap
->motion_type
== MLINE
)
1702 oap
->inclusive
= TRUE
;
1703 if (VIsual_mode
== 'V')
1704 oap
->motion_type
= MLINE
;
1707 oap
->motion_type
= MCHAR
;
1708 if (VIsual_mode
!= Ctrl_V
&& *ml_get_pos(&(oap
->end
)) == NUL
1709 # ifdef FEAT_VIRTUALEDIT
1710 && (include_line_break
|| !virtual_op
)
1714 oap
->inclusive
= FALSE
;
1715 /* Try to include the newline, unless it's an operator
1716 * that works on lines only */
1718 && !op_on_lines(oap
->op_type
)
1719 && oap
->end
.lnum
< curbuf
->b_ml
.ml_line_count
)
1723 # ifdef FEAT_VIRTUALEDIT
1724 oap
->end
.coladd
= 0;
1731 redo_VIsual_busy
= FALSE
;
1734 * Switch Visual off now, so screen updating does
1735 * not show inverted text when the screen is redrawn.
1736 * With OP_YANK and sometimes with OP_COLON and OP_FILTER there is
1737 * no screen redraw, so it is done here to remove the inverted
1742 VIsual_active
= FALSE
;
1748 clear_cmdline
= TRUE
; /* unshow visual mode later */
1749 #ifdef FEAT_CMDL_INFO
1753 if ((oap
->op_type
== OP_YANK
1754 || oap
->op_type
== OP_COLON
1755 || oap
->op_type
== OP_FUNCTION
1756 || oap
->op_type
== OP_FILTER
)
1757 && oap
->motion_force
== NUL
)
1758 redraw_curbuf_later(INVERTED
);
1764 /* Include the trailing byte of a multi-byte char. */
1765 if (has_mbyte
&& oap
->inclusive
)
1769 l
= (*mb_ptr2len
)(ml_get_pos(&oap
->end
));
1771 oap
->end
.col
+= l
- 1;
1774 curwin
->w_set_curswant
= TRUE
;
1777 * oap->empty is set when start and end are the same. The inclusive
1778 * flag affects this too, unless yanking and the end is on a NUL.
1780 oap
->empty
= (oap
->motion_type
== MCHAR
1782 || (oap
->op_type
== OP_YANK
1783 && gchar_pos(&oap
->end
) == NUL
))
1784 && equalpos(oap
->start
, oap
->end
)
1785 #ifdef FEAT_VIRTUALEDIT
1786 && !(virtual_op
&& oap
->start
.coladd
!= oap
->end
.coladd
)
1790 * For delete, change and yank, it's an error to operate on an
1791 * empty region, when 'E' included in 'cpoptions' (Vi compatible).
1793 empty_region_error
= (oap
->empty
1794 && vim_strchr(p_cpo
, CPO_EMPTYREGION
) != NULL
);
1797 /* Force a redraw when operating on an empty Visual region, when
1798 * 'modifiable is off or creating a fold. */
1799 if (oap
->is_VIsual
&& (oap
->empty
|| !curbuf
->b_p_ma
1800 # ifdef FEAT_FOLDING
1801 || oap
->op_type
== OP_FOLD
1804 redraw_curbuf_later(INVERTED
);
1808 * If the end of an operator is in column one while oap->motion_type
1809 * is MCHAR and oap->inclusive is FALSE, we put op_end after the last
1810 * character in the previous line. If op_start is on or before the
1811 * first non-blank in the line, the operator becomes linewise
1812 * (strange, but that's the way vi does it).
1814 if ( oap
->motion_type
== MCHAR
1815 && oap
->inclusive
== FALSE
1816 && !(cap
->retval
& CA_NO_ADJ_OP_END
)
1817 && oap
->end
.col
== 0
1819 && (!oap
->is_VIsual
|| *p_sel
== 'o')
1822 && oap
->line_count
> 1)
1824 oap
->end_adjusted
= TRUE
; /* remember that we did this */
1828 oap
->motion_type
= MLINE
;
1831 oap
->end
.col
= (colnr_T
)STRLEN(ml_get(oap
->end
.lnum
));
1835 oap
->inclusive
= TRUE
;
1840 oap
->end_adjusted
= FALSE
;
1842 switch (oap
->op_type
)
1848 oap
->is_VIsual
? (int)cap
->count1
:
1851 auto_format(FALSE
, TRUE
);
1856 if (oap
->line_count
< 2)
1857 oap
->line_count
= 2;
1858 if (curwin
->w_cursor
.lnum
+ oap
->line_count
- 1 >
1859 curbuf
->b_ml
.ml_line_count
)
1863 do_do_join(oap
->line_count
, oap
->op_type
== OP_JOIN
);
1864 auto_format(FALSE
, TRUE
);
1870 VIsual_reselect
= FALSE
; /* don't reselect now */
1872 if (empty_region_error
)
1876 (void)op_delete(oap
);
1877 if (oap
->motion_type
== MLINE
&& has_format_option(FO_AUTO
))
1878 u_save_cursor(); /* cursor line wasn't saved yet */
1879 auto_format(FALSE
, TRUE
);
1884 if (empty_region_error
)
1890 (void)op_yank(oap
, FALSE
, !gui_yank
);
1896 VIsual_reselect
= FALSE
; /* don't reselect now */
1898 if (empty_region_error
)
1902 /* This is a new edit command, not a restart. Need to
1903 * remember it to make 'insertmode' work with mappings for
1904 * Visual mode. But do this only once and not when typed and
1905 * 'insertmode' isn't set. */
1906 if (p_im
|| !KeyTyped
)
1907 restart_edit_save
= restart_edit
;
1909 restart_edit_save
= 0;
1911 /* Reset finish_op now, don't want it set inside edit(). */
1913 if (op_change(oap
)) /* will call edit() */
1914 cap
->retval
|= CA_COMMAND_BUSY
;
1915 if (restart_edit
== 0)
1916 restart_edit
= restart_edit_save
;
1921 if (vim_strchr(p_cpo
, CPO_FILTER
) != NULL
)
1922 AppendToRedobuff((char_u
*)"!\r"); /* use any last used !cmd */
1924 bangredo
= TRUE
; /* do_bang() will put cmd in redo buffer */
1929 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
1931 * If 'equalprg' is empty, do the indenting internally.
1933 if (oap
->op_type
== OP_INDENT
&& *get_equalprg() == NUL
)
1936 if (curbuf
->b_p_lisp
)
1938 op_reindent(oap
, get_lisp_indent
);
1942 # ifdef FEAT_CINDENT
1945 *curbuf
->b_p_inde
!= NUL
? get_expr_indent
:
1960 if (empty_region_error
)
1968 #if defined(FEAT_EVAL)
1969 if (*curbuf
->b_p_fex
!= NUL
)
1970 op_formatexpr(oap
); /* use expression */
1974 op_colon(oap
); /* use external command */
1976 op_format(oap
, FALSE
); /* use internal function */
1980 op_format(oap
, TRUE
); /* use internal function */
1984 op_function(oap
); /* call 'operatorfunc' */
1990 VIsual_reselect
= FALSE
; /* don't reselect now */
1992 #ifdef FEAT_VISUALEXTRA
1993 if (empty_region_error
)
1997 /* This is a new edit command, not a restart. Need to
1998 * remember it to make 'insertmode' work with mappings for
1999 * Visual mode. But do this only once. */
2000 restart_edit_save
= restart_edit
;
2003 op_insert(oap
, cap
->count1
);
2005 /* TODO: when inserting in several lines, should format all
2007 auto_format(FALSE
, TRUE
);
2009 if (restart_edit
== 0)
2010 restart_edit
= restart_edit_save
;
2019 VIsual_reselect
= FALSE
; /* don't reselect now */
2021 #ifdef FEAT_VISUALEXTRA
2022 if (empty_region_error
)
2025 #ifdef FEAT_VISUALEXTRA
2027 op_replace(oap
, cap
->nchar
);
2033 VIsual_reselect
= FALSE
; /* don't reselect now */
2034 foldCreate(oap
->start
.lnum
, oap
->end
.lnum
);
2038 case OP_FOLDOPENREC
:
2040 case OP_FOLDCLOSEREC
:
2041 VIsual_reselect
= FALSE
; /* don't reselect now */
2042 opFoldRange(oap
->start
.lnum
, oap
->end
.lnum
,
2043 oap
->op_type
== OP_FOLDOPEN
2044 || oap
->op_type
== OP_FOLDOPENREC
,
2045 oap
->op_type
== OP_FOLDOPENREC
2046 || oap
->op_type
== OP_FOLDCLOSEREC
,
2052 VIsual_reselect
= FALSE
; /* don't reselect now */
2053 deleteFold(oap
->start
.lnum
, oap
->end
.lnum
,
2054 oap
->op_type
== OP_FOLDDELREC
, oap
->is_VIsual
);
2060 #ifdef FEAT_VIRTUALEDIT
2066 * if 'sol' not set, go back to old column for some commands
2068 if (!p_sol
&& oap
->motion_type
== MLINE
&& !oap
->end_adjusted
2069 && (oap
->op_type
== OP_LSHIFT
|| oap
->op_type
== OP_RSHIFT
2070 || oap
->op_type
== OP_DELETE
))
2071 coladvance(curwin
->w_curswant
= old_col
);
2075 curwin
->w_cursor
= old_cursor
;
2078 oap
->block_mode
= FALSE
;
2085 * Handle indent and format operators and visual mode ":".
2091 stuffcharReadbuff(':');
2094 stuffReadbuff((char_u
*)"'<,'>");
2099 * Make the range look nice, so it can be repeated.
2101 if (oap
->start
.lnum
== curwin
->w_cursor
.lnum
)
2102 stuffcharReadbuff('.');
2104 stuffnumReadbuff((long)oap
->start
.lnum
);
2105 if (oap
->end
.lnum
!= oap
->start
.lnum
)
2107 stuffcharReadbuff(',');
2108 if (oap
->end
.lnum
== curwin
->w_cursor
.lnum
)
2109 stuffcharReadbuff('.');
2110 else if (oap
->end
.lnum
== curbuf
->b_ml
.ml_line_count
)
2111 stuffcharReadbuff('$');
2112 else if (oap
->start
.lnum
== curwin
->w_cursor
.lnum
)
2114 stuffReadbuff((char_u
*)".+");
2115 stuffnumReadbuff((long)oap
->line_count
- 1);
2118 stuffnumReadbuff((long)oap
->end
.lnum
);
2121 if (oap
->op_type
!= OP_COLON
)
2122 stuffReadbuff((char_u
*)"!");
2123 if (oap
->op_type
== OP_INDENT
)
2125 #ifndef FEAT_CINDENT
2126 if (*get_equalprg() == NUL
)
2127 stuffReadbuff((char_u
*)"indent");
2130 stuffReadbuff(get_equalprg());
2131 stuffReadbuff((char_u
*)"\n");
2133 else if (oap
->op_type
== OP_FORMAT
)
2136 stuffReadbuff((char_u
*)"fmt");
2138 stuffReadbuff(p_fp
);
2139 stuffReadbuff((char_u
*)"\n']");
2143 * do_cmdline() does the rest
2148 * Handle the "g@" operator: call 'operatorfunc'.
2158 if (*p_opfunc
== NUL
)
2159 EMSG(_("E774: 'operatorfunc' is empty"));
2162 /* Set '[ and '] marks to text to be operated on. */
2163 curbuf
->b_op_start
= oap
->start
;
2164 curbuf
->b_op_end
= oap
->end
;
2165 if (oap
->motion_type
!= MLINE
&& !oap
->inclusive
)
2166 /* Exclude the end position. */
2167 decl(&curbuf
->b_op_end
);
2169 if (oap
->block_mode
)
2170 argv
[0] = (char_u
*)"block";
2171 else if (oap
->motion_type
== MLINE
)
2172 argv
[0] = (char_u
*)"line";
2174 argv
[0] = (char_u
*)"char";
2175 (void)call_func_retnr(p_opfunc
, 1, argv
, FALSE
);
2178 EMSG(_("E775: Eval feature not available"));
2182 #if defined(FEAT_MOUSE) || defined(PROTO)
2184 * Do the appropriate action for the current mouse click in the current mode.
2185 * Not used for Command-line mode.
2188 * event modi- position visual change action
2189 * fier cursor window
2190 * left press - yes end yes
2191 * left press C yes end yes "^]" (2)
2192 * left press S yes end yes "*" (2)
2193 * left drag - yes start if moved no
2194 * left relse - yes start if moved no
2195 * middle press - yes if not active no put register
2196 * middle press - yes if active no yank and put
2197 * right press - yes start or extend yes
2198 * right press S yes no change yes "#" (2)
2199 * right drag - yes extend no
2200 * right relse - yes extend no
2202 * Insert or Replace Mode:
2203 * event modi- position visual change action
2204 * fier cursor window
2205 * left press - yes (cannot be active) yes
2206 * left press C yes (cannot be active) yes "CTRL-O^]" (2)
2207 * left press S yes (cannot be active) yes "CTRL-O*" (2)
2208 * left drag - yes start or extend (1) no CTRL-O (1)
2209 * left relse - yes start or extend (1) no CTRL-O (1)
2210 * middle press - no (cannot be active) no put register
2211 * right press - yes start or extend yes CTRL-O
2212 * right press S yes (cannot be active) yes "CTRL-O#" (2)
2214 * (1) only if mouse pointer moved since press
2215 * (2) only if click is in same buffer
2217 * Return TRUE if start_arrow() should be called for edit mode.
2220 do_mouse(oap
, c
, dir
, count
, fixindent
)
2221 oparg_T
*oap
; /* operator argument, can be NULL */
2222 int c
; /* K_LEFTMOUSE, etc */
2223 int dir
; /* Direction to 'put' if necessary */
2225 int fixindent
; /* PUT_FIXINDENT if fixing indent necessary */
2227 static int do_always
= FALSE
; /* ignore 'mouse' setting next time */
2228 static int got_click
= FALSE
; /* got a click some time back */
2230 int which_button
; /* MOUSE_LEFT, _MIDDLE or _RIGHT */
2231 int is_click
; /* If FALSE it's a drag or release event */
2232 int is_drag
; /* If TRUE it's a drag event */
2233 int jump_flags
= 0; /* flags for jump_to_mouse() */
2235 int moved
; /* Has cursor moved? */
2236 int in_status_line
; /* mouse in status line */
2237 #ifdef FEAT_VERTSPLIT
2238 int in_sep_line
; /* mouse in vertical separator line */
2241 #if defined(FEAT_FOLDING)
2244 win_T
*old_curwin
= curwin
;
2246 static pos_T orig_cursor
;
2247 colnr_T leftcol
, rightcol
;
2250 int old_active
= VIsual_active
;
2251 int old_mode
= VIsual_mode
;
2255 #if defined(FEAT_FOLDING)
2256 save_cursor
= curwin
->w_cursor
;
2260 * When GUI is active, always recognize mouse events, otherwise:
2261 * - Ignore mouse event in normal mode if 'mouse' doesn't include 'n'.
2262 * - Ignore mouse event in visual mode if 'mouse' doesn't include 'v'.
2263 * - For command line and insert mode 'mouse' is checked before calling
2276 if (!mouse_has(MOUSE_VISUAL
))
2281 if (State
== NORMAL
&& !mouse_has(MOUSE_NORMAL
))
2285 which_button
= get_mouse_button(KEY2TERMCAP1(c
), &is_click
, &is_drag
);
2287 #ifdef FEAT_MOUSESHAPE
2288 /* May have stopped dragging the status or separator line. The pointer is
2289 * most likely still on the status or separator line. */
2290 if (!is_drag
&& drag_status_line
)
2292 drag_status_line
= FALSE
;
2293 update_mouseshape(SHAPE_IDX_STATUS
);
2295 # ifdef FEAT_VERTSPLIT
2296 if (!is_drag
&& drag_sep_line
)
2298 drag_sep_line
= FALSE
;
2299 update_mouseshape(SHAPE_IDX_VSEP
);
2305 * Ignore drag and release events if we didn't get a click.
2311 if (!got_click
) /* didn't get click, ignore */
2313 if (!is_drag
) /* release, reset got_click */
2319 * ALT is only used for starging/extending Visual mode.
2321 if ((mod_mask
& MOD_MASK_ALT
))
2326 * CTRL right mouse button does CTRL-T
2328 if (is_click
&& (mod_mask
& MOD_MASK_CTRL
) && which_button
== MOUSE_RIGHT
)
2331 stuffcharReadbuff(Ctrl_O
);
2333 stuffnumReadbuff(count
);
2334 stuffcharReadbuff(Ctrl_T
);
2335 got_click
= FALSE
; /* ignore drag&release now */
2340 * CTRL only works with left mouse button
2342 if ((mod_mask
& MOD_MASK_CTRL
) && which_button
!= MOUSE_LEFT
)
2346 * When a modifier is down, ignore drag and release events, as well as
2347 * multiple clicks and the middle mouse button.
2348 * Accept shift-leftmouse drags when 'mousemodel' is "popup.*".
2350 if ((mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
| MOD_MASK_ALT
2353 || (mod_mask
& MOD_MASK_MULTI_CLICK
)
2354 || which_button
== MOUSE_MIDDLE
)
2355 && !((mod_mask
& (MOD_MASK_SHIFT
|MOD_MASK_ALT
))
2356 && mouse_model_popup()
2357 && which_button
== MOUSE_LEFT
)
2358 && !((mod_mask
& MOD_MASK_ALT
)
2359 && !mouse_model_popup()
2360 && which_button
== MOUSE_RIGHT
)
2365 * If the button press was used as the movement command for an operator
2366 * (eg "d<MOUSE>"), or it is the middle button that is held down, ignore
2367 * drag/release events.
2369 if (!is_click
&& which_button
== MOUSE_MIDDLE
)
2373 regname
= oap
->regname
;
2378 * Middle mouse button does a 'put' of the selected text
2380 if (which_button
== MOUSE_MIDDLE
)
2382 if (State
== NORMAL
)
2385 * If an operator was pending, we don't know what the user wanted
2386 * to do. Go back to normal mode: Clear the operator and beep().
2388 if (oap
!= NULL
&& oap
->op_type
!= OP_NOP
)
2396 * If visual was active, yank the highlighted text and put it
2397 * before the mouse pointer position.
2398 * In Select mode replace the highlighted text with the clipboard.
2404 stuffcharReadbuff(Ctrl_G
);
2405 stuffReadbuff((char_u
*)"\"+p");
2409 stuffcharReadbuff('y');
2410 stuffcharReadbuff(K_MIDDLEMOUSE
);
2412 do_always
= TRUE
; /* ignore 'mouse' setting next time */
2417 * The rest is below jump_to_mouse()
2421 else if ((State
& INSERT
) == 0)
2425 * Middle click in insert mode doesn't move the mouse, just insert the
2426 * contents of a register. '.' register is special, can't insert that
2428 * Also paste at the cursor if the current mode isn't in 'mouse' (only
2429 * happens for the GUI).
2431 if ((State
& INSERT
) || !mouse_has(MOUSE_NORMAL
))
2434 insert_reg(regname
, TRUE
);
2437 #ifdef FEAT_CLIPBOARD
2438 if (clip_star
.available
&& regname
== 0)
2441 if ((State
& REPLACE_FLAG
) && !yank_register_mline(regname
))
2442 insert_reg(regname
, TRUE
);
2445 do_put(regname
, BACKWARD
, 1L, fixindent
| PUT_CURSEND
);
2447 /* Repeat it with CTRL-R CTRL-O r or CTRL-R CTRL-P r */
2448 AppendCharToRedobuff(Ctrl_R
);
2449 AppendCharToRedobuff(fixindent
? Ctrl_P
: Ctrl_O
);
2450 AppendCharToRedobuff(regname
== 0 ? '"' : regname
);
2457 /* When dragging or button-up stay in the same window. */
2459 jump_flags
|= MOUSE_FOCUS
| MOUSE_DID_MOVE
;
2461 start_visual
.lnum
= 0;
2464 /* Check for clicking in the tab page line. */
2465 if (mouse_row
== 0 && firstwin
->w_winrow
> 0)
2467 got_click
= FALSE
; /* ignore mouse-up and drag events */
2469 /* click in a tab selects that tab page */
2474 && mouse_col
< Columns
)
2476 c1
= TabPageIdxs
[mouse_col
];
2479 if ((mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_2CLICK
)
2481 /* double click opens new page */
2484 tabpage_move(c1
== 0 ? 9999 : c1
- 1);
2488 /* Go to specified tab page, or next one if not clicking
2492 /* It's like clicking on the status line of a window. */
2493 if (curwin
!= old_curwin
)
2501 /* Close the current or specified tab page. */
2505 tp
= find_tabpage(-c1
);
2508 if (first_tabpage
->tp_next
!= NULL
)
2509 tabpage_close(FALSE
);
2511 else if (tp
!= NULL
)
2512 tabpage_close_other(tp
, FALSE
);
2520 * When 'mousemodel' is "popup" or "popup_setpos", translate mouse events:
2521 * right button up -> pop-up menu
2522 * shift-left button -> right button
2523 * alt-left button -> alt-right button
2525 if (mouse_model_popup())
2527 if (which_button
== MOUSE_RIGHT
2528 && !(mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
)))
2531 * NOTE: Ignore right button down and drag mouse events.
2532 * Windows only shows the popup menu on the button up event.
2534 #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
2535 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) \
2536 || defined(FEAT_GUI_MACVIM)
2540 #if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN)
2541 if (is_click
|| is_drag
)
2544 #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
2545 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
2546 || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_PHOTON) \
2547 || defined(FEAT_GUI_MACVIM)
2551 if (STRCMP(p_mousem
, "popup_setpos") == 0)
2553 /* First set the cursor position before showing the popup
2561 * set MOUSE_MAY_STOP_VIS if we are outside the
2562 * selection or the current window (might have false
2565 if (mouse_row
< W_WINROW(curwin
)
2567 > (W_WINROW(curwin
) + curwin
->w_height
))
2568 jump_flags
= MOUSE_MAY_STOP_VIS
;
2569 else if (get_fpos_of_mouse(&m_pos
) != IN_BUFFER
)
2570 jump_flags
= MOUSE_MAY_STOP_VIS
;
2573 if ((lt(curwin
->w_cursor
, VIsual
)
2574 && (lt(m_pos
, curwin
->w_cursor
)
2575 || lt(VIsual
, m_pos
)))
2576 || (lt(VIsual
, curwin
->w_cursor
)
2577 && (lt(m_pos
, VIsual
)
2578 || lt(curwin
->w_cursor
, m_pos
))))
2580 jump_flags
= MOUSE_MAY_STOP_VIS
;
2582 else if (VIsual_mode
== Ctrl_V
)
2584 getvcols(curwin
, &curwin
->w_cursor
, &VIsual
,
2585 &leftcol
, &rightcol
);
2586 getvcol(curwin
, &m_pos
, NULL
, &m_pos
.col
, NULL
);
2587 if (m_pos
.col
< leftcol
|| m_pos
.col
> rightcol
)
2588 jump_flags
= MOUSE_MAY_STOP_VIS
;
2593 jump_flags
= MOUSE_MAY_STOP_VIS
;
2598 jump_flags
= jump_to_mouse(jump_flags
, NULL
, which_button
);
2601 VIsual_active
? INVERTED
:
2605 out_flush(); /* Update before showing popup menu */
2608 gui_show_popupmenu();
2610 return (jump_flags
& CURSOR_MOVED
) != 0;
2618 if (which_button
== MOUSE_LEFT
2619 && (mod_mask
& (MOD_MASK_SHIFT
|MOD_MASK_ALT
)))
2621 which_button
= MOUSE_RIGHT
;
2622 mod_mask
&= ~MOD_MASK_SHIFT
;
2627 if ((State
& (NORMAL
| INSERT
))
2628 && !(mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
)))
2630 if (which_button
== MOUSE_LEFT
)
2634 /* stop Visual mode for a left click in a window, but not when
2635 * on a status line */
2637 jump_flags
|= MOUSE_MAY_STOP_VIS
;
2639 else if (mouse_has(MOUSE_VISUAL
))
2640 jump_flags
|= MOUSE_MAY_VIS
;
2642 else if (which_button
== MOUSE_RIGHT
)
2644 if (is_click
&& VIsual_active
)
2647 * Remember the start and end of visual before moving the
2650 if (lt(curwin
->w_cursor
, VIsual
))
2652 start_visual
= curwin
->w_cursor
;
2653 end_visual
= VIsual
;
2657 start_visual
= VIsual
;
2658 end_visual
= curwin
->w_cursor
;
2661 jump_flags
|= MOUSE_FOCUS
;
2662 if (mouse_has(MOUSE_VISUAL
))
2663 jump_flags
|= MOUSE_MAY_VIS
;
2669 * If an operator is pending, ignore all drags and releases until the
2672 if (!is_drag
&& oap
!= NULL
&& oap
->op_type
!= OP_NOP
)
2675 oap
->motion_type
= MCHAR
;
2678 /* When releasing the button let jump_to_mouse() know. */
2679 if (!is_click
&& !is_drag
)
2680 jump_flags
|= MOUSE_RELEASED
;
2685 jump_flags
= jump_to_mouse(jump_flags
,
2686 oap
== NULL
? NULL
: &(oap
->inclusive
), which_button
);
2687 moved
= (jump_flags
& CURSOR_MOVED
);
2688 in_status_line
= (jump_flags
& IN_STATUS_LINE
);
2689 #ifdef FEAT_VERTSPLIT
2690 in_sep_line
= (jump_flags
& IN_SEP_LINE
);
2693 #ifdef FEAT_NETBEANS_INTG
2694 if (usingNetbeans
&& isNetbeansBuffer(curbuf
)
2695 && !(jump_flags
& (IN_STATUS_LINE
| IN_SEP_LINE
)))
2697 int key
= KEY2TERMCAP1(c
);
2699 if (key
== (int)KE_LEFTRELEASE
|| key
== (int)KE_MIDDLERELEASE
2700 || key
== (int)KE_RIGHTRELEASE
)
2701 netbeans_button_release(which_button
);
2705 /* When jumping to another window, clear a pending operator. That's a bit
2706 * friendlier than beeping and not jumping to that window. */
2707 if (curwin
!= old_curwin
&& oap
!= NULL
&& oap
->op_type
!= OP_NOP
)
2713 && (jump_flags
& (MOUSE_FOLD_CLOSE
| MOUSE_FOLD_OPEN
))
2714 && which_button
== MOUSE_LEFT
)
2716 /* open or close a fold at this line */
2717 if (jump_flags
& MOUSE_FOLD_OPEN
)
2718 openFold(curwin
->w_cursor
.lnum
, 1L);
2720 closeFold(curwin
->w_cursor
.lnum
, 1L);
2721 /* don't move the cursor if still in the same window */
2722 if (curwin
== old_curwin
)
2723 curwin
->w_cursor
= save_cursor
;
2727 #if defined(FEAT_CLIPBOARD) && defined(FEAT_CMDWIN)
2728 if ((jump_flags
& IN_OTHER_WIN
) && !VIsual_active
&& clip_star
.available
)
2730 clip_modeless(which_button
, is_click
, is_drag
);
2736 /* Set global flag that we are extending the Visual area with mouse
2737 * dragging; temporarily minimize 'scrolloff'. */
2738 if (VIsual_active
&& is_drag
&& p_so
)
2740 /* In the very first line, allow scrolling one line */
2747 /* When dragging the mouse above the window, scroll down. */
2748 if (is_drag
&& mouse_row
< 0 && !in_status_line
)
2750 scroll_redraw(FALSE
, 1L);
2754 if (start_visual
.lnum
) /* right click in visual mode */
2756 /* When ALT is pressed make Visual mode blockwise. */
2757 if (mod_mask
& MOD_MASK_ALT
)
2758 VIsual_mode
= Ctrl_V
;
2761 * In Visual-block mode, divide the area in four, pick up the corner
2762 * that is in the quarter that the cursor is in.
2764 if (VIsual_mode
== Ctrl_V
)
2766 getvcols(curwin
, &start_visual
, &end_visual
, &leftcol
, &rightcol
);
2767 if (curwin
->w_curswant
> (leftcol
+ rightcol
) / 2)
2768 end_visual
.col
= leftcol
;
2770 end_visual
.col
= rightcol
;
2771 if (curwin
->w_cursor
.lnum
<
2772 (start_visual
.lnum
+ end_visual
.lnum
) / 2)
2773 end_visual
.lnum
= end_visual
.lnum
;
2775 end_visual
.lnum
= start_visual
.lnum
;
2777 /* move VIsual to the right column */
2778 start_visual
= curwin
->w_cursor
; /* save the cursor pos */
2779 curwin
->w_cursor
= end_visual
;
2780 coladvance(end_visual
.col
);
2781 VIsual
= curwin
->w_cursor
;
2782 curwin
->w_cursor
= start_visual
; /* restore the cursor */
2787 * If the click is before the start of visual, change the start.
2788 * If the click is after the end of visual, change the end. If
2789 * the click is inside the visual, change the closest side.
2791 if (lt(curwin
->w_cursor
, start_visual
))
2792 VIsual
= end_visual
;
2793 else if (lt(end_visual
, curwin
->w_cursor
))
2794 VIsual
= start_visual
;
2797 /* In the same line, compare column number */
2798 if (end_visual
.lnum
== start_visual
.lnum
)
2800 if (curwin
->w_cursor
.col
- start_visual
.col
>
2801 end_visual
.col
- curwin
->w_cursor
.col
)
2802 VIsual
= start_visual
;
2804 VIsual
= end_visual
;
2807 /* In different lines, compare line number */
2810 diff
= (curwin
->w_cursor
.lnum
- start_visual
.lnum
) -
2811 (end_visual
.lnum
- curwin
->w_cursor
.lnum
);
2813 if (diff
> 0) /* closest to end */
2814 VIsual
= start_visual
;
2815 else if (diff
< 0) /* closest to start */
2816 VIsual
= end_visual
;
2817 else /* in the middle line */
2819 if (curwin
->w_cursor
.col
<
2820 (start_visual
.col
+ end_visual
.col
) / 2)
2821 VIsual
= end_visual
;
2823 VIsual
= start_visual
;
2830 * If Visual mode started in insert mode, execute "CTRL-O"
2832 else if ((State
& INSERT
) && VIsual_active
)
2833 stuffcharReadbuff(Ctrl_O
);
2837 * Middle mouse click: Put text before cursor.
2839 if (which_button
== MOUSE_MIDDLE
)
2841 #ifdef FEAT_CLIPBOARD
2842 if (clip_star
.available
&& regname
== 0)
2845 if (yank_register_mline(regname
))
2847 if (mouse_past_bottom
)
2850 else if (mouse_past_eol
)
2855 c1
= (dir
== BACKWARD
) ? '[' : ']';
2860 c1
= (dir
== FORWARD
) ? 'p' : 'P';
2863 prep_redo(regname
, count
, NUL
, c1
, NUL
, c2
, NUL
);
2866 * Remember where the paste started, so in edit() Insstart can be set
2869 if (restart_edit
!= 0)
2870 where_paste_started
= curwin
->w_cursor
;
2871 do_put(regname
, dir
, count
, fixindent
| PUT_CURSEND
);
2874 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
2876 * Ctrl-Mouse click or double click in a quickfix window jumps to the
2877 * error under the mouse pointer.
2879 else if (((mod_mask
& MOD_MASK_CTRL
)
2880 || (mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_2CLICK
)
2881 && bt_quickfix(curbuf
))
2884 stuffcharReadbuff(Ctrl_O
);
2885 if (curwin
->w_llist_ref
== NULL
) /* quickfix window */
2886 stuffReadbuff((char_u
*)":.cc\n");
2887 else /* location list window */
2888 stuffReadbuff((char_u
*)":.ll\n");
2889 got_click
= FALSE
; /* ignore drag&release now */
2894 * Ctrl-Mouse click (or double click in a help window) jumps to the tag
2895 * under the mouse pointer.
2897 else if ((mod_mask
& MOD_MASK_CTRL
) || (curbuf
->b_help
2898 && (mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_2CLICK
))
2901 stuffcharReadbuff(Ctrl_O
);
2902 stuffcharReadbuff(Ctrl_RSB
);
2903 got_click
= FALSE
; /* ignore drag&release now */
2907 * Shift-Mouse click searches for the next occurrence of the word under
2910 else if ((mod_mask
& MOD_MASK_SHIFT
))
2914 || (VIsual_active
&& VIsual_select
)
2917 stuffcharReadbuff(Ctrl_O
);
2918 if (which_button
== MOUSE_LEFT
)
2919 stuffcharReadbuff('*');
2920 else /* MOUSE_RIGHT */
2921 stuffcharReadbuff('#');
2924 /* Handle double clicks, unless on status line */
2925 else if (in_status_line
)
2927 #ifdef FEAT_MOUSESHAPE
2928 if ((is_drag
|| is_click
) && !drag_status_line
)
2930 drag_status_line
= TRUE
;
2931 update_mouseshape(-1);
2935 #ifdef FEAT_VERTSPLIT
2936 else if (in_sep_line
)
2938 # ifdef FEAT_MOUSESHAPE
2939 if ((is_drag
|| is_click
) && !drag_sep_line
)
2941 drag_sep_line
= TRUE
;
2942 update_mouseshape(-1);
2948 else if ((mod_mask
& MOD_MASK_MULTI_CLICK
) && (State
& (NORMAL
| INSERT
))
2949 && mouse_has(MOUSE_VISUAL
))
2951 if (is_click
|| !VIsual_active
)
2954 orig_cursor
= VIsual
;
2957 check_visual_highlight();
2958 VIsual
= curwin
->w_cursor
;
2959 orig_cursor
= VIsual
;
2960 VIsual_active
= TRUE
;
2961 VIsual_reselect
= TRUE
;
2962 /* start Select mode if 'selectmode' contains "mouse" */
2963 may_start_select('o');
2966 if ((mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_2CLICK
)
2968 /* Double click with ALT pressed makes it blockwise. */
2969 if (mod_mask
& MOD_MASK_ALT
)
2970 VIsual_mode
= Ctrl_V
;
2974 else if ((mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_3CLICK
)
2976 else if ((mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_4CLICK
)
2977 VIsual_mode
= Ctrl_V
;
2978 #ifdef FEAT_CLIPBOARD
2979 /* Make sure the clipboard gets updated. Needed because start and
2980 * end may still be the same, and the selection needs to be owned */
2981 clip_star
.vmode
= NUL
;
2985 * A double click selects a word or a block.
2987 if ((mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_2CLICK
)
2994 /* If the character under the cursor (skipping white space) is
2995 * not a word character, try finding a match and select a (),
2996 * {}, [], #if/#endif, etc. block. */
2997 end_visual
= curwin
->w_cursor
;
2998 while (gc
= gchar_pos(&end_visual
), vim_iswhite(gc
))
3001 oap
->motion_type
= MCHAR
;
3003 && VIsual_mode
== 'v'
3004 && !vim_iswordc(gchar_pos(&end_visual
))
3005 && equalpos(curwin
->w_cursor
, VIsual
)
3006 && (pos
= findmatch(oap
, NUL
)) != NULL
)
3008 curwin
->w_cursor
= *pos
;
3009 if (oap
->motion_type
== MLINE
)
3011 else if (*p_sel
== 'e')
3013 if (lt(curwin
->w_cursor
, VIsual
))
3016 ++curwin
->w_cursor
.col
;
3021 if (pos
== NULL
&& (is_click
|| is_drag
))
3023 /* When not found a match or when dragging: extend to include
3025 if (lt(curwin
->w_cursor
, orig_cursor
))
3027 find_start_of_word(&curwin
->w_cursor
);
3028 find_end_of_word(&VIsual
);
3032 find_start_of_word(&VIsual
);
3033 if (*p_sel
== 'e' && *ml_get_cursor() != NUL
)
3035 curwin
->w_cursor
.col
+=
3036 (*mb_ptr2len
)(ml_get_cursor());
3038 ++curwin
->w_cursor
.col
;
3040 find_end_of_word(&curwin
->w_cursor
);
3043 curwin
->w_set_curswant
= TRUE
;
3046 redraw_curbuf_later(INVERTED
); /* update the inversion */
3048 else if (VIsual_active
&& !old_active
)
3050 if (mod_mask
& MOD_MASK_ALT
)
3051 VIsual_mode
= Ctrl_V
;
3056 /* If Visual mode changed show it later. */
3057 if ((!VIsual_active
&& old_active
&& mode_displayed
)
3058 || (VIsual_active
&& p_smd
&& msg_silent
== 0
3059 && (!old_active
|| VIsual_mode
!= old_mode
)))
3060 redraw_cmdline
= TRUE
;
3068 * Move "pos" back to the start of the word it's in.
3071 find_start_of_word(pos
)
3078 line
= ml_get(pos
->lnum
);
3079 cclass
= get_mouse_class(line
+ pos
->col
);
3081 while (pos
->col
> 0)
3085 col
-= (*mb_head_off
)(line
, line
+ col
);
3087 if (get_mouse_class(line
+ col
) != cclass
)
3094 * Move "pos" forward to the end of the word it's in.
3095 * When 'selection' is "exclusive", the position is just after the word.
3098 find_end_of_word(pos
)
3105 line
= ml_get(pos
->lnum
);
3106 if (*p_sel
== 'e' && pos
->col
> 0)
3110 pos
->col
-= (*mb_head_off
)(line
, line
+ pos
->col
);
3113 cclass
= get_mouse_class(line
+ pos
->col
);
3114 while (line
[pos
->col
] != NUL
)
3117 col
= pos
->col
+ (*mb_ptr2len
)(line
+ pos
->col
);
3121 if (get_mouse_class(line
+ col
) != cclass
)
3132 * Get class of a character for selection: same class means same word.
3134 * 1: punctuation groups
3135 * 2: normal word character
3136 * >2: multi-byte word character.
3145 if (has_mbyte
&& MB_BYTE2LEN(p
[0]) > 1)
3146 return mb_get_class(p
);
3150 if (c
== ' ' || c
== '\t')
3157 * There are a few special cases where we want certain combinations of
3158 * characters to be considered as a single word. These are things like
3159 * "->", "/ *", "*=", "+=", "&=", "<=", ">=", "!=" etc. Otherwise, each
3160 * character is in it's own class.
3162 if (c
!= NUL
&& vim_strchr((char_u
*)"-+*/%<>&|^!=", c
) != NULL
)
3166 #endif /* FEAT_VISUAL */
3167 #endif /* FEAT_MOUSE */
3169 #if defined(FEAT_VISUAL) || defined(PROTO)
3171 * Check if highlighting for visual mode is possible, give a warning message
3175 check_visual_highlight()
3177 static int did_check
= FALSE
;
3181 if (!did_check
&& hl_attr(HLF_V
) == 0)
3182 MSG(_("Warning: terminal cannot highlight"));
3189 * This function should ALWAYS be called to end Visual mode, except from
3190 * do_pending_operator().
3195 #ifdef FEAT_CLIPBOARD
3197 * If we are using the clipboard, then remember what was selected in case
3198 * we need to paste it somewhere while we still own the selection.
3199 * Only do this when the clipboard is already owned. Don't want to grab
3200 * the selection when hitting ESC.
3202 if (clip_star
.available
&& clip_star
.owned
)
3206 VIsual_active
= FALSE
;
3212 /* Save the current VIsual area for '< and '> marks, and "gv" */
3213 curbuf
->b_visual
.vi_mode
= VIsual_mode
;
3214 curbuf
->b_visual
.vi_start
= VIsual
;
3215 curbuf
->b_visual
.vi_end
= curwin
->w_cursor
;
3216 curbuf
->b_visual
.vi_curswant
= curwin
->w_curswant
;
3218 curbuf
->b_visual_mode_eval
= VIsual_mode
;
3220 #ifdef FEAT_VIRTUALEDIT
3221 if (!virtual_active())
3222 curwin
->w_cursor
.coladd
= 0;
3226 clear_cmdline
= TRUE
; /* unshow visual mode later */
3227 #ifdef FEAT_CMDL_INFO
3232 adjust_cursor_eol();
3236 * Reset VIsual_active and VIsual_reselect.
3239 reset_VIsual_and_resel()
3244 redraw_curbuf_later(INVERTED
); /* delete the inversion later */
3246 VIsual_reselect
= FALSE
;
3250 * Reset VIsual_active and VIsual_reselect if it's set.
3258 redraw_curbuf_later(INVERTED
); /* delete the inversion later */
3259 VIsual_reselect
= FALSE
;
3262 #endif /* FEAT_VISUAL */
3264 #if defined(FEAT_BEVAL)
3265 static int find_is_eval_item
__ARGS((char_u
*ptr
, int *colp
, int *nbp
, int dir
));
3268 * Check for a balloon-eval special item to include when searching for an
3269 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
3270 * Returns TRUE if the character at "*ptr" should be included.
3271 * "dir" is FORWARD or BACKWARD, the direction of searching.
3272 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
3273 * "bnp" points to a counter for square brackets.
3276 find_is_eval_item(ptr
, colp
, bnp
, dir
)
3282 /* Accept everything inside []. */
3283 if ((*ptr
== ']' && dir
== BACKWARD
) || (*ptr
== '[' && dir
== FORWARD
))
3287 if ((*ptr
== '[' && dir
== BACKWARD
) || (*ptr
== ']' && dir
== FORWARD
))
3292 /* skip over "s.var" */
3296 /* two-character item: s->var */
3297 if (ptr
[dir
== BACKWARD
? 0 : 1] == '>'
3298 && ptr
[dir
== BACKWARD
? -1 : 0] == '-')
3308 * Find the identifier under or to the right of the cursor.
3309 * "find_type" can have one of three values:
3310 * FIND_IDENT: find an identifier (keyword)
3311 * FIND_STRING: find any non-white string
3312 * FIND_IDENT + FIND_STRING: find any non-white string, identifier preferred.
3313 * FIND_EVAL: find text useful for C program debugging
3315 * There are three steps:
3316 * 1. Search forward for the start of an identifier/string. Doesn't move if
3318 * 2. Search backward for the start of this identifier/string.
3319 * This doesn't match the real Vi but I like it a little better and it
3320 * shouldn't bother anyone.
3321 * 3. Search forward to the end of this identifier/string.
3322 * When FIND_IDENT isn't defined, we backup until a blank.
3324 * Returns the length of the string, or zero if no string is found.
3325 * If a string is found, a pointer to the string is put in "*string". This
3326 * string is not always NUL terminated.
3329 find_ident_under_cursor(string
, find_type
)
3333 return find_ident_at_pos(curwin
, curwin
->w_cursor
.lnum
,
3334 curwin
->w_cursor
.col
, string
, find_type
);
3338 * Like find_ident_under_cursor(), but for any window and any position.
3339 * However: Uses 'iskeyword' from the current window!.
3342 find_ident_at_pos(wp
, lnum
, startcol
, string
, find_type
)
3350 int col
= 0; /* init to shut up GCC */
3357 #if defined(FEAT_BEVAL)
3358 int bn
= 0; /* bracket nesting */
3362 * if i == 0: try to find an identifier
3363 * if i == 1: try to find any non-white string
3365 ptr
= ml_get_buf(wp
->w_buffer
, lnum
, FALSE
);
3366 for (i
= (find_type
& FIND_IDENT
) ? 0 : 1; i
< 2; ++i
)
3369 * 1. skip to start of identifier/string
3375 while (ptr
[col
] != NUL
)
3377 # if defined(FEAT_BEVAL)
3378 /* Stop at a ']' to evaluate "a[x]". */
3379 if ((find_type
& FIND_EVAL
) && ptr
[col
] == ']')
3382 this_class
= mb_get_class(ptr
+ col
);
3383 if (this_class
!= 0 && (i
== 1 || this_class
!= 1))
3385 col
+= (*mb_ptr2len
)(ptr
+ col
);
3390 while (ptr
[col
] != NUL
3391 && (i
== 0 ? !vim_iswordc(ptr
[col
]) : vim_iswhite(ptr
[col
]))
3392 # if defined(FEAT_BEVAL)
3393 && (!(find_type
& FIND_EVAL
) || ptr
[col
] != ']')
3398 #if defined(FEAT_BEVAL)
3399 /* When starting on a ']' count it, so that we include the '['. */
3400 bn
= ptr
[col
] == ']';
3404 * 2. Back up to start of identifier/string.
3409 /* Remember class of character under cursor. */
3410 # if defined(FEAT_BEVAL)
3411 if ((find_type
& FIND_EVAL
) && ptr
[col
] == ']')
3412 this_class
= mb_get_class((char_u
*)"a");
3415 this_class
= mb_get_class(ptr
+ col
);
3416 while (col
> 0 && this_class
!= 0)
3418 prevcol
= col
- 1 - (*mb_head_off
)(ptr
, ptr
+ col
- 1);
3419 prev_class
= mb_get_class(ptr
+ prevcol
);
3420 if (this_class
!= prev_class
3423 || (find_type
& FIND_IDENT
))
3424 # if defined(FEAT_BEVAL)
3425 && (!(find_type
& FIND_EVAL
)
3427 || !find_is_eval_item(ptr
+ prevcol
, &prevcol
,
3435 /* If we don't want just any old string, or we've found an
3436 * identifier, stop searching. */
3439 if (!(find_type
& FIND_STRING
) || this_class
== 2)
3447 ? vim_iswordc(ptr
[col
- 1])
3448 : (!vim_iswhite(ptr
[col
- 1])
3449 && (!(find_type
& FIND_IDENT
)
3450 || !vim_iswordc(ptr
[col
- 1]))))
3451 #if defined(FEAT_BEVAL)
3452 || ((find_type
& FIND_EVAL
)
3454 && find_is_eval_item(ptr
+ col
- 1, &col
,
3460 /* If we don't want just any old string, or we've found an
3461 * identifier, stop searching. */
3462 if (!(find_type
& FIND_STRING
) || vim_iswordc(ptr
[col
]))
3467 if (ptr
[col
] == NUL
|| (i
== 0 && (
3469 has_mbyte
? this_class
!= 2 :
3471 !vim_iswordc(ptr
[col
]))))
3474 * didn't find an identifier or string
3476 if (find_type
& FIND_STRING
)
3477 EMSG(_("E348: No string under cursor"));
3479 EMSG(_("E349: No identifier under cursor"));
3486 * 3. Find the end if the identifier/string.
3488 #if defined(FEAT_BEVAL)
3496 /* Search for point of changing multibyte character class. */
3497 this_class
= mb_get_class(ptr
);
3498 while (ptr
[col
] != NUL
3499 && ((i
== 0 ? mb_get_class(ptr
+ col
) == this_class
3500 : mb_get_class(ptr
+ col
) != 0)
3501 # if defined(FEAT_BEVAL)
3502 || ((find_type
& FIND_EVAL
)
3503 && col
<= (int)startcol
3504 && find_is_eval_item(ptr
+ col
, &col
, &bn
, FORWARD
))
3507 col
+= (*mb_ptr2len
)(ptr
+ col
);
3511 while ((i
== 0 ? vim_iswordc(ptr
[col
])
3512 : (ptr
[col
] != NUL
&& !vim_iswhite(ptr
[col
])))
3513 # if defined(FEAT_BEVAL)
3514 || ((find_type
& FIND_EVAL
)
3515 && col
<= (int)startcol
3516 && find_is_eval_item(ptr
+ col
, &col
, &bn
, FORWARD
))
3527 * Prepare for redo of a normal command.
3533 prep_redo(cap
->oap
->regname
, cap
->count0
,
3534 NUL
, cap
->cmdchar
, NUL
, NUL
, cap
->nchar
);
3538 * Prepare for redo of any command.
3539 * Note that only the last argument can be a multi-byte char.
3542 prep_redo(regname
, num
, cmd1
, cmd2
, cmd3
, cmd4
, cmd5
)
3552 if (regname
!= 0) /* yank from specified buffer */
3554 AppendCharToRedobuff('"');
3555 AppendCharToRedobuff(regname
);
3558 AppendNumberToRedobuff(num
);
3561 AppendCharToRedobuff(cmd1
);
3563 AppendCharToRedobuff(cmd2
);
3565 AppendCharToRedobuff(cmd3
);
3567 AppendCharToRedobuff(cmd4
);
3569 AppendCharToRedobuff(cmd5
);
3573 * check for operator active and clear it
3575 * return TRUE if operator was active
3581 if (oap
->op_type
== OP_NOP
)
3588 * Check for operator or Visual active. Clear active operator.
3590 * Return TRUE if operator or Visual was active.
3596 if (oap
->op_type
== OP_NOP
3610 oap
->op_type
= OP_NOP
;
3612 oap
->motion_force
= NUL
;
3613 oap
->use_reg_one
= FALSE
;
3626 * Remove the shift modifier from a special key.
3629 unshift_special(cap
)
3632 switch (cap
->cmdchar
)
3634 case K_S_RIGHT
: cap
->cmdchar
= K_RIGHT
; break;
3635 case K_S_LEFT
: cap
->cmdchar
= K_LEFT
; break;
3636 case K_S_UP
: cap
->cmdchar
= K_UP
; break;
3637 case K_S_DOWN
: cap
->cmdchar
= K_DOWN
; break;
3638 case K_S_HOME
: cap
->cmdchar
= K_HOME
; break;
3639 case K_S_END
: cap
->cmdchar
= K_END
; break;
3641 cap
->cmdchar
= simplify_key(cap
->cmdchar
, &mod_mask
);
3645 #if defined(FEAT_CMDL_INFO) || defined(PROTO)
3647 * Routines for displaying a partly typed command
3650 #ifdef FEAT_VISUAL /* need room for size of Visual area */
3651 # define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
3653 # define SHOWCMD_BUFLEN SHOWCMD_COLS + 1
3655 static char_u showcmd_buf
[SHOWCMD_BUFLEN
];
3656 static char_u old_showcmd_buf
[SHOWCMD_BUFLEN
]; /* For push_showcmd() */
3657 static int showcmd_is_clear
= TRUE
;
3658 static int showcmd_visual
= FALSE
;
3660 static void display_showcmd
__ARGS((void));
3669 if (VIsual_active
&& !char_avail())
3671 int i
= lt(VIsual
, curwin
->w_cursor
);
3673 colnr_T leftcol
, rightcol
;
3676 /* Show the size of the Visual area. */
3680 bot
= curwin
->w_cursor
.lnum
;
3684 top
= curwin
->w_cursor
.lnum
;
3687 # ifdef FEAT_FOLDING
3688 /* Include closed folds as a whole. */
3689 hasFolding(top
, &top
, NULL
);
3690 hasFolding(bot
, NULL
, &bot
);
3692 lines
= bot
- top
+ 1;
3694 if (VIsual_mode
== Ctrl_V
)
3696 getvcols(curwin
, &curwin
->w_cursor
, &VIsual
, &leftcol
, &rightcol
);
3697 sprintf((char *)showcmd_buf
, "%ldx%ld", lines
,
3698 (long)(rightcol
- leftcol
+ 1));
3700 else if (VIsual_mode
== 'V' || VIsual
.lnum
!= curwin
->w_cursor
.lnum
)
3701 sprintf((char *)showcmd_buf
, "%ld", lines
);
3703 sprintf((char *)showcmd_buf
, "%ld", (long)(i
3704 ? curwin
->w_cursor
.col
- VIsual
.col
3705 : VIsual
.col
- curwin
->w_cursor
.col
) + (*p_sel
!= 'e'));
3706 showcmd_buf
[SHOWCMD_COLS
] = NUL
; /* truncate */
3707 showcmd_visual
= TRUE
;
3712 showcmd_buf
[0] = NUL
;
3713 showcmd_visual
= FALSE
;
3715 /* Don't actually display something if there is nothing to clear. */
3716 if (showcmd_is_clear
)
3724 * Add 'c' to string of shown command chars.
3725 * Return TRUE if output has been written (and setcursor() has been called).
3735 #if defined(FEAT_MOUSE)
3737 static int ignore
[] =
3740 K_VER_SCROLLBAR
, K_HOR_SCROLLBAR
,
3741 K_LEFTMOUSE_NM
, K_LEFTRELEASE_NM
,
3744 K_LEFTMOUSE
, K_LEFTDRAG
, K_LEFTRELEASE
,
3745 K_MIDDLEMOUSE
, K_MIDDLEDRAG
, K_MIDDLERELEASE
,
3746 K_RIGHTMOUSE
, K_RIGHTDRAG
, K_RIGHTRELEASE
,
3747 K_MOUSEDOWN
, K_MOUSEUP
,
3748 K_X1MOUSE
, K_X1DRAG
, K_X1RELEASE
, K_X2MOUSE
, K_X2DRAG
, K_X2RELEASE
,
3754 if (!p_sc
|| msg_silent
!= 0)
3759 showcmd_buf
[0] = NUL
;
3760 showcmd_visual
= FALSE
;
3763 #if defined(FEAT_MOUSE)
3764 /* Ignore keys that are scrollbar updates and mouse clicks */
3766 for (i
= 0; ignore
[i
] != 0; ++i
)
3772 old_len
= (int)STRLEN(showcmd_buf
);
3773 extra_len
= (int)STRLEN(p
);
3774 overflow
= old_len
+ extra_len
- SHOWCMD_COLS
;
3776 mch_memmove(showcmd_buf
, showcmd_buf
+ overflow
,
3777 old_len
- overflow
+ 1);
3778 STRCAT(showcmd_buf
, p
);
3792 if (!add_to_showcmd(c
))
3797 * Delete 'len' characters from the end of the shown command.
3800 del_from_showcmd(len
)
3808 old_len
= (int)STRLEN(showcmd_buf
);
3811 showcmd_buf
[old_len
- len
] = NUL
;
3818 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
3819 * something and there is a partial mapping.
3825 STRCPY(old_showcmd_buf
, showcmd_buf
);
3834 STRCPY(showcmd_buf
, old_showcmd_buf
);
3846 len
= (int)STRLEN(showcmd_buf
);
3848 showcmd_is_clear
= TRUE
;
3851 screen_puts(showcmd_buf
, (int)Rows
- 1, sc_col
, 0);
3852 showcmd_is_clear
= FALSE
;
3856 * clear the rest of an old message by outputting up to SHOWCMD_COLS
3859 screen_puts((char_u
*)" " + len
, (int)Rows
- 1, sc_col
+ len
, 0);
3861 setcursor(); /* put cursor back where it belongs */
3865 #ifdef FEAT_SCROLLBIND
3867 * When "check" is FALSE, prepare for commands that scroll the window.
3868 * When "check" is TRUE, take care of scroll-binding after the window has
3869 * scrolled. Called from normal_cmd() and edit().
3872 do_check_scrollbind(check
)
3875 static win_T
*old_curwin
= NULL
;
3876 static linenr_T old_topline
= 0;
3878 static int old_topfill
= 0;
3880 static buf_T
*old_buf
= NULL
;
3881 static colnr_T old_leftcol
= 0;
3883 if (check
&& curwin
->w_p_scb
)
3885 /* If a ":syncbind" command was just used, don't scroll, only reset
3888 did_syncbind
= FALSE
;
3889 else if (curwin
== old_curwin
)
3892 * Synchronize other windows, as necessary according to
3893 * 'scrollbind'. Don't do this after an ":edit" command, except
3894 * when 'diff' is set.
3896 if ((curwin
->w_buffer
== old_buf
3901 && (curwin
->w_topline
!= old_topline
3903 || curwin
->w_topfill
!= old_topfill
3905 || curwin
->w_leftcol
!= old_leftcol
))
3907 check_scrollbind(curwin
->w_topline
- old_topline
,
3908 (long)(curwin
->w_leftcol
- old_leftcol
));
3911 else if (vim_strchr(p_sbo
, 'j')) /* jump flag set in 'scrollopt' */
3914 * When switching between windows, make sure that the relative
3915 * vertical offset is valid for the new window. The relative
3916 * offset is invalid whenever another 'scrollbind' window has
3917 * scrolled to a point that would force the current window to
3918 * scroll past the beginning or end of its buffer. When the
3919 * resync is performed, some of the other 'scrollbind' windows may
3920 * need to jump so that the current window's relative position is
3921 * visible on-screen.
3923 check_scrollbind(curwin
->w_topline
- curwin
->w_scbind_pos
, 0L);
3925 curwin
->w_scbind_pos
= curwin
->w_topline
;
3928 old_curwin
= curwin
;
3929 old_topline
= curwin
->w_topline
;
3931 old_topfill
= curwin
->w_topfill
;
3933 old_buf
= curwin
->w_buffer
;
3934 old_leftcol
= curwin
->w_leftcol
;
3938 * Synchronize any windows that have "scrollbind" set, based on the
3939 * number of rows by which the current window has changed
3940 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
3943 check_scrollbind(topline_diff
, leftcol_diff
)
3944 linenr_T topline_diff
;
3949 win_T
*old_curwin
= curwin
;
3950 buf_T
*old_curbuf
= curbuf
;
3952 int old_VIsual_select
= VIsual_select
;
3953 int old_VIsual_active
= VIsual_active
;
3955 colnr_T tgt_leftcol
= curwin
->w_leftcol
;
3960 * check 'scrollopt' string for vertical and horizontal scroll options
3962 want_ver
= (vim_strchr(p_sbo
, 'v') && topline_diff
!= 0);
3964 want_ver
|= old_curwin
->w_p_diff
;
3966 want_hor
= (vim_strchr(p_sbo
, 'h') && (leftcol_diff
|| topline_diff
!= 0));
3969 * loop through the scrollbound windows and scroll accordingly
3972 VIsual_select
= VIsual_active
= 0;
3974 for (curwin
= firstwin
; curwin
; curwin
= curwin
->w_next
)
3976 curbuf
= curwin
->w_buffer
;
3977 /* skip original window and windows with 'noscrollbind' */
3978 if (curwin
!= old_curwin
&& curwin
->w_p_scb
)
3981 * do the vertical scroll
3986 if (old_curwin
->w_p_diff
&& curwin
->w_p_diff
)
3988 diff_set_topline(old_curwin
, curwin
);
3993 curwin
->w_scbind_pos
+= topline_diff
;
3994 topline
= curwin
->w_scbind_pos
;
3995 if (topline
> curbuf
->b_ml
.ml_line_count
)
3996 topline
= curbuf
->b_ml
.ml_line_count
;
4000 y
= topline
- curwin
->w_topline
;
4004 scrolldown(-y
, FALSE
);
4007 redraw_later(VALID
);
4010 curwin
->w_redr_status
= TRUE
;
4015 * do the horizontal scroll
4017 if (want_hor
&& curwin
->w_leftcol
!= tgt_leftcol
)
4019 curwin
->w_leftcol
= tgt_leftcol
;
4026 * reset current-window
4029 VIsual_select
= old_VIsual_select
;
4030 VIsual_active
= old_VIsual_active
;
4032 curwin
= old_curwin
;
4033 curbuf
= old_curbuf
;
4035 #endif /* #ifdef FEAT_SCROLLBIND */
4038 * Command character that's ignored.
4039 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
4046 cap
->retval
|= CA_COMMAND_BUSY
; /* don't call edit() now */
4050 * Command character that doesn't do anything, but unlike nv_ignore() does
4051 * start edit(). Used for "startinsert" executed while starting up.
4061 * Command character doesn't exist.
4067 clearopbeep(cap
->oap
);
4071 * <Help> and <F1> commands.
4077 if (!checkclearopq(cap
->oap
))
4082 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
4088 if (!checkclearopq(cap
->oap
)
4089 && do_addsub((int)cap
->cmdchar
, cap
->count1
) == OK
)
4094 * CTRL-F, CTRL-B, etc: Scroll page up or down.
4100 if (!checkclearop(cap
->oap
))
4103 if (mod_mask
& MOD_MASK_CTRL
)
4105 /* <C-PageUp>: tab page back; <C-PageDown>: tab page forward */
4106 if (cap
->arg
== BACKWARD
)
4107 goto_tabpage(-(int)cap
->count1
);
4109 goto_tabpage((int)cap
->count0
);
4113 (void)onepage(cap
->arg
, cap
->count1
);
4118 * Implementation of "gd" and "gD" command.
4121 nv_gd(oap
, nchar
, thisblock
)
4124 int thisblock
; /* 1 for "1gd" and "1gD" */
4129 if ((len
= find_ident_under_cursor(&ptr
, FIND_IDENT
)) == 0
4130 || find_decl(ptr
, len
, nchar
== 'd', thisblock
, 0) == FAIL
)
4133 else if ((fdo_flags
& FDO_SEARCH
) && KeyTyped
&& oap
->op_type
== OP_NOP
)
4139 * Search for variable declaration of "ptr[len]".
4140 * When "locally" is TRUE in the current function ("gd"), otherwise in the
4141 * current file ("gD").
4142 * When "thisblock" is TRUE check the {} block scope.
4143 * Return FAIL when not found.
4146 find_decl(ptr
, len
, locally
, thisblock
, searchflags
)
4151 int searchflags
; /* flags passed to searchit() */
4163 if ((pat
= alloc(len
+ 7)) == NULL
)
4166 /* Put "\V" before the pattern to avoid that the special meaning of "."
4167 * and "~" causes trouble. */
4168 sprintf((char *)pat
, vim_iswordp(ptr
) ? "\\V\\<%.*s\\>" : "\\V%.*s",
4170 old_pos
= curwin
->w_cursor
;
4173 p_ws
= FALSE
; /* don't wrap around end of file now */
4174 p_scs
= FALSE
; /* don't switch ignorecase off now */
4177 * With "gD" go to line 1.
4178 * With "gd" Search back for the start of the current function, then go
4179 * back until a blank line. If this fails go to line 1.
4181 if (!locally
|| !findpar(&incll
, BACKWARD
, 1L, '{', FALSE
))
4183 setpcmark(); /* Set in findpar() otherwise */
4184 curwin
->w_cursor
.lnum
= 1;
4185 par_pos
= curwin
->w_cursor
;
4189 par_pos
= curwin
->w_cursor
;
4190 while (curwin
->w_cursor
.lnum
> 1 && *skipwhite(ml_get_curline()) != NUL
)
4191 --curwin
->w_cursor
.lnum
;
4193 curwin
->w_cursor
.col
= 0;
4195 /* Search forward for the identifier, ignore comment lines. */
4196 clearpos(&found_pos
);
4199 t
= searchit(curwin
, curbuf
, &curwin
->w_cursor
, FORWARD
,
4200 pat
, 1L, searchflags
, RE_LAST
, (linenr_T
)0, NULL
);
4201 if (curwin
->w_cursor
.lnum
>= old_pos
.lnum
)
4202 t
= FAIL
; /* match after start is failure too */
4204 if (thisblock
&& t
!= FAIL
)
4208 /* Check that the block the match is in doesn't end before the
4209 * position where we started the search from. */
4210 if ((pos
= findmatchlimit(NULL
, '}', FM_FORWARD
,
4211 (int)(old_pos
.lnum
- curwin
->w_cursor
.lnum
+ 1))) != NULL
4212 && pos
->lnum
< old_pos
.lnum
)
4218 /* If we previously found a valid position, use it. */
4219 if (found_pos
.lnum
!= 0)
4221 curwin
->w_cursor
= found_pos
;
4226 #ifdef FEAT_COMMENTS
4227 if (get_leader_len(ml_get_curline(), NULL
, FALSE
) > 0)
4229 /* Ignore this line, continue at start of next line. */
4230 ++curwin
->w_cursor
.lnum
;
4231 curwin
->w_cursor
.col
= 0;
4235 if (!locally
) /* global search: use first match found */
4237 if (curwin
->w_cursor
.lnum
>= par_pos
.lnum
)
4239 /* If we previously found a valid position, use it. */
4240 if (found_pos
.lnum
!= 0)
4241 curwin
->w_cursor
= found_pos
;
4245 /* For finding a local variable and the match is before the "{" search
4246 * to find a later match. For K&R style function declarations this
4247 * skips the function header without types. */
4248 found_pos
= curwin
->w_cursor
;
4254 curwin
->w_cursor
= old_pos
;
4258 curwin
->w_set_curswant
= TRUE
;
4259 /* "n" searches forward now */
4271 * Move 'dist' lines in direction 'dir', counting lines by *screen*
4272 * lines rather than lines in the file.
4273 * 'dist' must be positive.
4275 * Return OK if able to move cursor, FAIL otherwise.
4278 nv_screengo(oap
, dir
, dist
)
4283 int linelen
= linetabsize(ml_get_curline());
4287 int col_off1
; /* margin offset for first screen line */
4288 int col_off2
; /* margin offset for wrapped screen line */
4289 int width1
; /* text width for first screen line */
4290 int width2
; /* test width for wrapped screen line */
4292 oap
->motion_type
= MCHAR
;
4293 oap
->inclusive
= FALSE
;
4295 col_off1
= curwin_col_off();
4296 col_off2
= col_off1
- curwin_col_off2();
4297 width1
= W_WIDTH(curwin
) - col_off1
;
4298 width2
= W_WIDTH(curwin
) - col_off2
;
4300 #ifdef FEAT_VERTSPLIT
4301 if (curwin
->w_width
!= 0)
4305 * Instead of sticking at the last character of the buffer line we
4306 * try to stick in the last column of the screen.
4308 if (curwin
->w_curswant
== MAXCOL
)
4313 curwin
->w_curswant
= 0;
4316 curwin
->w_curswant
= width1
- 1;
4317 if (curwin
->w_virtcol
> curwin
->w_curswant
)
4318 curwin
->w_curswant
+= ((curwin
->w_virtcol
4319 - curwin
->w_curswant
- 1) / width2
+ 1) * width2
;
4324 if (linelen
> width1
)
4325 n
= ((linelen
- width1
- 1) / width2
+ 1) * width2
+ width1
;
4328 if (curwin
->w_curswant
> (colnr_T
)n
+ 1)
4329 curwin
->w_curswant
-= ((curwin
->w_curswant
- n
) / width2
+ 1)
4335 if (dir
== BACKWARD
)
4337 if ((long)curwin
->w_curswant
>= width2
)
4338 /* move back within line */
4339 curwin
->w_curswant
-= width2
;
4342 /* to previous line */
4343 if (curwin
->w_cursor
.lnum
== 1)
4348 --curwin
->w_cursor
.lnum
;
4350 /* Move to the start of a closed fold. Don't do that when
4351 * 'foldopen' contains "all": it will open in a moment. */
4352 if (!(fdo_flags
& FDO_ALL
))
4353 (void)hasFolding(curwin
->w_cursor
.lnum
,
4354 &curwin
->w_cursor
.lnum
, NULL
);
4356 linelen
= linetabsize(ml_get_curline());
4357 if (linelen
> width1
)
4358 curwin
->w_curswant
+= (((linelen
- width1
- 1) / width2
)
4362 else /* dir == FORWARD */
4364 if (linelen
> width1
)
4365 n
= ((linelen
- width1
- 1) / width2
+ 1) * width2
+ width1
;
4368 if (curwin
->w_curswant
+ width2
< (colnr_T
)n
)
4369 /* move forward within line */
4370 curwin
->w_curswant
+= width2
;
4375 /* Move to the end of a closed fold. */
4376 (void)hasFolding(curwin
->w_cursor
.lnum
, NULL
,
4377 &curwin
->w_cursor
.lnum
);
4379 if (curwin
->w_cursor
.lnum
== curbuf
->b_ml
.ml_line_count
)
4384 curwin
->w_cursor
.lnum
++;
4385 curwin
->w_curswant
%= width2
;
4389 #ifdef FEAT_VERTSPLIT
4393 coladvance(curwin
->w_curswant
);
4395 #if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
4396 if (curwin
->w_cursor
.col
> 0 && curwin
->w_p_wrap
)
4399 * Check for landing on a character that got split at the end of the
4400 * last line. We want to advance a screenline, not end up in the same
4401 * screenline or move two screenlines.
4404 if (curwin
->w_virtcol
> curwin
->w_curswant
4405 && (curwin
->w_curswant
< (colnr_T
)width1
4406 ? (curwin
->w_curswant
> (colnr_T
)width1
/ 2)
4407 : ((curwin
->w_curswant
- width1
) % width2
4408 > (colnr_T
)width2
/ 2)))
4409 --curwin
->w_cursor
.col
;
4414 curwin
->w_curswant
= MAXCOL
; /* stick in the last column */
4421 * Mouse scroll wheel: Default action is to scroll three lines, or one page
4422 * when Shift or Ctrl is used.
4423 * K_MOUSEUP (cap->arg == TRUE) or K_MOUSEDOWN (cap->arg == FALSE)
4429 # ifdef FEAT_GUI_SCROLL_WHEEL_FORCE
4430 int scroll_wheel_force
= 0;
4432 # if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4433 win_T
*old_curwin
= curwin
;
4435 /* Currently we only get the mouse coordinates in the GUI. */
4436 if (gui
.in_use
&& mouse_row
>= 0 && mouse_col
>= 0)
4443 /* find the window at the pointer coordinates */
4444 curwin
= mouse_find_win(&row
, &col
);
4445 curbuf
= curwin
->w_buffer
;
4449 if (mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
))
4451 (void)onepage(cap
->arg
? FORWARD
: BACKWARD
, 1L);
4455 # ifdef FEAT_GUI_SCROLL_WHEEL_FORCE
4456 if (gui
.in_use
&& gui
.scroll_wheel_force
>= 1) {
4457 scroll_wheel_force
= gui
.scroll_wheel_force
;
4458 if (scroll_wheel_force
> 1000)
4459 scroll_wheel_force
= 1000;
4461 cap
->count1
= scroll_wheel_force
;
4462 cap
->count0
= scroll_wheel_force
;
4471 nv_scroll_line(cap
);
4474 # if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4475 curwin
->w_redr_status
= TRUE
;
4477 curwin
= old_curwin
;
4478 curbuf
= curwin
->w_buffer
;
4483 * Mouse clicks and drags.
4489 (void)do_mouse(cap
->oap
, cap
->cmdchar
, BACKWARD
, cap
->count1
, 0);
4494 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
4495 * cap->arg must be TRUE for CTRL-E.
4501 if (!checkclearop(cap
->oap
))
4502 scroll_redraw(cap
->arg
, cap
->count1
);
4506 * Scroll "count" lines up or down, and redraw.
4509 scroll_redraw(up
, count
)
4513 linenr_T prev_topline
= curwin
->w_topline
;
4515 int prev_topfill
= curwin
->w_topfill
;
4517 linenr_T prev_lnum
= curwin
->w_cursor
.lnum
;
4520 scrollup(count
, TRUE
);
4522 scrolldown(count
, TRUE
);
4525 /* Adjust the cursor position for 'scrolloff'. Mark w_topline as
4526 * valid, otherwise the screen jumps back at the end of the file. */
4528 check_cursor_moved(curwin
);
4529 curwin
->w_valid
|= VALID_TOPLINE
;
4531 /* If moved back to where we were, at least move the cursor, otherwise
4532 * we get stuck at one position. Don't move the cursor up if the
4533 * first line of the buffer is already on the screen */
4534 while (curwin
->w_topline
== prev_topline
4536 && curwin
->w_topfill
== prev_topfill
4542 if (curwin
->w_cursor
.lnum
> prev_lnum
4543 || cursor_down(1L, FALSE
) == FAIL
)
4548 if (curwin
->w_cursor
.lnum
< prev_lnum
4549 || prev_topline
== 1L
4550 || cursor_up(1L, FALSE
) == FAIL
)
4553 /* Mark w_topline as valid, otherwise the screen jumps back at the
4554 * end of the file. */
4555 check_cursor_moved(curwin
);
4556 curwin
->w_valid
|= VALID_TOPLINE
;
4559 if (curwin
->w_cursor
.lnum
!= prev_lnum
)
4560 coladvance(curwin
->w_curswant
);
4561 redraw_later(VALID
);
4565 * Commands that start with "z".
4573 int nchar
= cap
->nchar
;
4575 long old_fdl
= curwin
->w_p_fdl
;
4576 int old_fen
= curwin
->w_p_fen
;
4582 if (VIM_ISDIGIT(nchar
))
4585 * "z123{nchar}": edit the count before obtaining {nchar}
4587 if (checkclearop(cap
->oap
))
4592 #ifdef USE_ON_FLY_SCROLL
4593 dont_scroll
= TRUE
; /* disallow scrolling here */
4596 ++allow_keys
; /* no mapping for nchar, but allow key codes */
4597 nchar
= plain_vgetc();
4599 LANGMAP_ADJUST(nchar
, TRUE
);
4603 #ifdef FEAT_CMDL_INFO
4604 (void)add_to_showcmd(nchar
);
4606 if (nchar
== K_DEL
|| nchar
== K_KDEL
)
4608 else if (VIM_ISDIGIT(nchar
))
4609 n
= n
* 10 + (nchar
- '0');
4610 else if (nchar
== CAR
)
4613 need_mouse_correct
= TRUE
;
4615 win_setheight((int)n
);
4618 else if (nchar
== 'l'
4621 || nchar
== K_RIGHT
)
4623 cap
->count1
= n
? n
* cap
->count1
: cap
->count1
;
4628 clearopbeep(cap
->oap
);
4632 cap
->oap
->op_type
= OP_NOP
;
4639 /* "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
4640 * and "zC" only in Visual mode. "zj" and "zk" are motion
4642 cap
->nchar
!= 'f' && cap
->nchar
!= 'F'
4643 && !(VIsual_active
&& vim_strchr((char_u
*)"dcCoO", cap
->nchar
))
4644 && cap
->nchar
!= 'j' && cap
->nchar
!= 'k'
4647 checkclearop(cap
->oap
))
4651 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
4652 * If line number given, set cursor.
4654 if ((vim_strchr((char_u
*)"+\r\nt.z^-b", nchar
) != NULL
)
4656 && cap
->count0
!= curwin
->w_cursor
.lnum
)
4659 if (cap
->count0
> curbuf
->b_ml
.ml_line_count
)
4660 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
4662 curwin
->w_cursor
.lnum
= cap
->count0
;
4668 /* "z+", "z<CR>" and "zt": put cursor at top of screen */
4670 if (cap
->count0
== 0)
4672 /* No count given: put cursor at the line below screen */
4673 validate_botline(); /* make sure w_botline is valid */
4674 if (curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
)
4675 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
4677 curwin
->w_cursor
.lnum
= curwin
->w_botline
;
4683 beginline(BL_WHITE
| BL_FIX
);
4686 case 't': scroll_cursor_top(0, TRUE
);
4687 redraw_later(VALID
);
4690 /* "z." and "zz": put cursor in middle of screen */
4691 case '.': beginline(BL_WHITE
| BL_FIX
);
4694 case 'z': scroll_cursor_halfway(TRUE
);
4695 redraw_later(VALID
);
4698 /* "z^", "z-" and "zb": put cursor at bottom of screen */
4699 case '^': /* Strange Vi behavior: <count>z^ finds line at top of window
4700 * when <count> is at bottom of window, and puts that one at
4701 * bottom of window. */
4702 if (cap
->count0
!= 0)
4704 scroll_cursor_bot(0, TRUE
);
4705 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
4707 else if (curwin
->w_topline
== 1)
4708 curwin
->w_cursor
.lnum
= 1;
4710 curwin
->w_cursor
.lnum
= curwin
->w_topline
- 1;
4713 beginline(BL_WHITE
| BL_FIX
);
4716 case 'b': scroll_cursor_bot(0, TRUE
);
4717 redraw_later(VALID
);
4720 /* "zH" - scroll screen right half-page */
4722 cap
->count1
*= W_WIDTH(curwin
) / 2;
4725 /* "zh" - scroll screen to the right */
4728 if (!curwin
->w_p_wrap
)
4730 if ((colnr_T
)cap
->count1
> curwin
->w_leftcol
)
4731 curwin
->w_leftcol
= 0;
4733 curwin
->w_leftcol
-= (colnr_T
)cap
->count1
;
4738 /* "zL" - scroll screen left half-page */
4739 case 'L': cap
->count1
*= W_WIDTH(curwin
) / 2;
4742 /* "zl" - scroll screen to the left */
4745 if (!curwin
->w_p_wrap
)
4747 /* scroll the window left */
4748 curwin
->w_leftcol
+= (colnr_T
)cap
->count1
;
4753 /* "zs" - scroll screen, cursor at the start */
4754 case 's': if (!curwin
->w_p_wrap
)
4757 if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4758 col
= 0; /* like the cursor is in col 0 */
4761 getvcol(curwin
, &curwin
->w_cursor
, &col
, NULL
, NULL
);
4762 if ((long)col
> p_siso
)
4766 if (curwin
->w_leftcol
!= col
)
4768 curwin
->w_leftcol
= col
;
4769 redraw_later(NOT_VALID
);
4774 /* "ze" - scroll screen, cursor at the end */
4775 case 'e': if (!curwin
->w_p_wrap
)
4778 if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4779 col
= 0; /* like the cursor is in col 0 */
4782 getvcol(curwin
, &curwin
->w_cursor
, NULL
, NULL
, &col
);
4783 n
= W_WIDTH(curwin
) - curwin_col_off();
4784 if ((long)col
+ p_siso
< n
)
4787 col
= col
+ p_siso
- n
+ 1;
4788 if (curwin
->w_leftcol
!= col
)
4790 curwin
->w_leftcol
= col
;
4791 redraw_later(NOT_VALID
);
4797 /* "zF": create fold command */
4798 /* "zf": create fold operator */
4800 case 'f': if (foldManualAllowed(TRUE
))
4804 curwin
->w_p_fen
= TRUE
;
4806 /* "zF" is like "zfzf" */
4807 if (nchar
== 'F' && cap
->oap
->op_type
== OP_FOLD
)
4814 clearopbeep(cap
->oap
);
4817 /* "zd": delete fold at cursor */
4818 /* "zD": delete fold at cursor recursively */
4820 case 'D': if (foldManualAllowed(FALSE
))
4825 deleteFold(curwin
->w_cursor
.lnum
,
4826 curwin
->w_cursor
.lnum
, nchar
== 'D', FALSE
);
4830 /* "zE": erease all folds */
4831 case 'E': if (foldmethodIsManual(curwin
))
4833 clearFolding(curwin
);
4834 changed_window_setting();
4836 else if (foldmethodIsMarker(curwin
))
4837 deleteFold((linenr_T
)1, curbuf
->b_ml
.ml_line_count
,
4840 EMSG(_("E352: Cannot erase folds with current 'foldmethod'"));
4843 /* "zn": fold none: reset 'foldenable' */
4844 case 'n': curwin
->w_p_fen
= FALSE
;
4847 /* "zN": fold Normal: set 'foldenable' */
4848 case 'N': curwin
->w_p_fen
= TRUE
;
4851 /* "zi": invert folding: toggle 'foldenable' */
4852 case 'i': curwin
->w_p_fen
= !curwin
->w_p_fen
;
4855 /* "za": open closed fold or close open fold at cursor */
4856 case 'a': if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4857 openFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4860 closeFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4861 curwin
->w_p_fen
= TRUE
;
4865 /* "zA": open fold at cursor recursively */
4866 case 'A': if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4867 openFoldRecurse(curwin
->w_cursor
.lnum
);
4870 closeFoldRecurse(curwin
->w_cursor
.lnum
);
4871 curwin
->w_p_fen
= TRUE
;
4875 /* "zo": open fold at cursor or Visual area */
4876 case 'o': if (VIsual_active
)
4879 openFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4882 /* "zO": open fold recursively */
4883 case 'O': if (VIsual_active
)
4886 openFoldRecurse(curwin
->w_cursor
.lnum
);
4889 /* "zc": close fold at cursor or Visual area */
4890 case 'c': if (VIsual_active
)
4893 closeFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4894 curwin
->w_p_fen
= TRUE
;
4897 /* "zC": close fold recursively */
4898 case 'C': if (VIsual_active
)
4901 closeFoldRecurse(curwin
->w_cursor
.lnum
);
4902 curwin
->w_p_fen
= TRUE
;
4905 /* "zv": open folds at the cursor */
4906 case 'v': foldOpenCursor();
4909 /* "zx": re-apply 'foldlevel' and open folds at the cursor */
4910 case 'x': curwin
->w_p_fen
= TRUE
;
4911 newFoldLevel(); /* update right now */
4915 /* "zX": undo manual opens/closes, re-apply 'foldlevel' */
4916 case 'X': curwin
->w_p_fen
= TRUE
;
4917 old_fdl
= -1; /* force an update */
4920 /* "zm": fold more */
4921 case 'm': if (curwin
->w_p_fdl
> 0)
4923 old_fdl
= -1; /* force an update */
4924 curwin
->w_p_fen
= TRUE
;
4927 /* "zM": close all folds */
4928 case 'M': curwin
->w_p_fdl
= 0;
4929 old_fdl
= -1; /* force an update */
4930 curwin
->w_p_fen
= TRUE
;
4933 /* "zr": reduce folding */
4934 case 'r': ++curwin
->w_p_fdl
;
4937 /* "zR": open all folds */
4938 case 'R': curwin
->w_p_fdl
= getDeepestNesting();
4939 old_fdl
= -1; /* force an update */
4942 case 'j': /* "zj" move to next fold downwards */
4943 case 'k': /* "zk" move to next fold upwards */
4944 if (foldMoveTo(TRUE
, nchar
== 'j' ? FORWARD
: BACKWARD
,
4945 cap
->count1
) == FAIL
)
4946 clearopbeep(cap
->oap
);
4949 #endif /* FEAT_FOLDING */
4952 case 'u': /* "zug" and "zuw": undo "zg" and "zw" */
4954 ++allow_keys
; /* no mapping for nchar, but allow key codes */
4955 nchar
= plain_vgetc();
4957 LANGMAP_ADJUST(nchar
, TRUE
);
4961 #ifdef FEAT_CMDL_INFO
4962 (void)add_to_showcmd(nchar
);
4964 if (vim_strchr((char_u
*)"gGwW", nchar
) == NULL
)
4966 clearopbeep(cap
->oap
);
4972 case 'g': /* "zg": add good word to word list */
4973 case 'w': /* "zw": add wrong word to word list */
4974 case 'G': /* "zG": add good word to temp word list */
4975 case 'W': /* "zW": add wrong word to temp word list */
4980 if (checkclearop(cap
->oap
))
4983 if (VIsual_active
&& get_visual_text(cap
, &ptr
, &len
)
4989 pos_T pos
= curwin
->w_cursor
;
4991 /* Find bad word under the cursor. */
4992 len
= spell_move_to(curwin
, FORWARD
, TRUE
, TRUE
, NULL
);
4993 if (len
!= 0 && curwin
->w_cursor
.col
<= pos
.col
)
4994 ptr
= ml_get_pos(&curwin
->w_cursor
);
4995 curwin
->w_cursor
= pos
;
4998 if (ptr
== NULL
&& (len
= find_ident_under_cursor(&ptr
,
5001 spell_add_word(ptr
, len
, nchar
== 'w' || nchar
== 'W',
5002 (nchar
== 'G' || nchar
== 'W')
5003 ? 0 : (int)cap
->count1
,
5008 case '=': /* "z=": suggestions for a badly spelled word */
5009 if (!checkclearop(cap
->oap
))
5010 spell_suggest((int)cap
->count0
);
5014 default: clearopbeep(cap
->oap
);
5018 /* Redraw when 'foldenable' changed */
5019 if (old_fen
!= curwin
->w_p_fen
)
5024 if (foldmethodIsDiff(curwin
) && curwin
->w_p_scb
)
5026 /* Adjust 'foldenable' in diff-synced windows. */
5029 if (wp
!= curwin
&& foldmethodIsDiff(wp
) && wp
->w_p_scb
)
5031 wp
->w_p_fen
= curwin
->w_p_fen
;
5032 changed_window_setting_win(wp
);
5037 changed_window_setting();
5040 /* Redraw when 'foldlevel' changed. */
5041 if (old_fdl
!= curwin
->w_p_fdl
)
5048 * Vertical scrollbar movement.
5051 nv_ver_scrollbar(cap
)
5054 if (cap
->oap
->op_type
!= OP_NOP
)
5055 clearopbeep(cap
->oap
);
5057 /* Even if an operator was pending, we still want to scroll */
5062 * Horizontal scrollbar movement.
5065 nv_hor_scrollbar(cap
)
5068 if (cap
->oap
->op_type
!= OP_NOP
)
5069 clearopbeep(cap
->oap
);
5071 /* Even if an operator was pending, we still want to scroll */
5072 gui_do_horiz_scroll();
5076 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
5084 if (cap
->oap
->op_type
!= OP_NOP
)
5085 clearopbeep(cap
->oap
);
5087 /* Even if an operator was pending, we still want to jump tabs. */
5088 goto_tabpage(current_tab
);
5092 * Selected item in tab line menu.
5098 if (cap
->oap
->op_type
!= OP_NOP
)
5099 clearopbeep(cap
->oap
);
5101 /* Even if an operator was pending, we still want to jump tabs. */
5106 * Handle selecting an item of the GUI tab line menu.
5107 * Used in Normal and Insert mode.
5112 switch (current_tabmenu
)
5114 case TABLINE_MENU_CLOSE
:
5115 if (current_tab
== 0)
5116 do_cmdline_cmd((char_u
*)"tabclose");
5119 vim_snprintf((char *)IObuff
, IOSIZE
, "tabclose %d",
5121 do_cmdline_cmd(IObuff
);
5125 case TABLINE_MENU_NEW
:
5126 vim_snprintf((char *)IObuff
, IOSIZE
, "%dtabnew",
5127 current_tab
> 0 ? current_tab
- 1 : 999);
5128 do_cmdline_cmd(IObuff
);
5131 case TABLINE_MENU_OPEN
:
5132 vim_snprintf((char *)IObuff
, IOSIZE
, "browse %dtabnew",
5133 current_tab
> 0 ? current_tab
- 1 : 999);
5134 do_cmdline_cmd(IObuff
);
5148 * Ignore 'Q' in Visual mode, just give a beep.
5155 if (!checkclearop(cap
->oap
))
5160 * Handle a ":" command.
5174 if (cap
->oap
->op_type
!= OP_NOP
)
5176 /* Using ":" as a movement is characterwise exclusive. */
5177 cap
->oap
->motion_type
= MCHAR
;
5178 cap
->oap
->inclusive
= FALSE
;
5180 else if (cap
->count0
)
5182 /* translate "count:" into ":.,.+(count - 1)" */
5183 stuffcharReadbuff('.');
5184 if (cap
->count0
> 1)
5186 stuffReadbuff((char_u
*)",.+");
5187 stuffnumReadbuff((long)cap
->count0
- 1L);
5191 /* When typing, don't type below an old message */
5197 /* get a command line and execute it */
5198 do_cmdline(NULL
, getexline
, NULL
,
5199 cap
->oap
->op_type
!= OP_NOP
? DOCMD_KEEPLINE
: 0);
5201 /* If 'insertmode' changed, enter or exit Insert mode */
5202 if (p_im
!= old_p_im
)
5210 /* The start of the operator may have become invalid by the Ex
5212 if (cap
->oap
->op_type
!= OP_NOP
5213 && (cap
->oap
->start
.lnum
> curbuf
->b_ml
.ml_line_count
5214 || cap
->oap
->start
.col
>
5215 STRLEN(ml_get(cap
->oap
->start
.lnum
))))
5216 clearopbeep(cap
->oap
);
5221 * Handle CTRL-G command.
5228 if (VIsual_active
) /* toggle Selection/Visual mode */
5230 VIsual_select
= !VIsual_select
;
5235 if (!checkclearop(cap
->oap
))
5236 /* print full name if count given or :cd used */
5237 fileinfo((int)cap
->count0
, FALSE
, TRUE
);
5241 * Handle CTRL-H <Backspace> command.
5248 if (VIsual_active
&& VIsual_select
)
5250 cap
->cmdchar
= 'x'; /* BS key behaves like 'x' in Select mode */
5259 * CTRL-L: clear screen and redraw.
5265 if (!checkclearop(cap
->oap
))
5267 #if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
5269 * Right now, the BeBox doesn't seem to have an easy way to detect
5270 * window resizing, so we cheat and make the user detect it
5271 * manually with CTRL-L instead
5276 /* Clear all syntax states to force resyncing. */
5277 syn_stack_free_all(curbuf
);
5279 redraw_later(CLEAR
);
5284 * CTRL-O: In Select mode: switch to Visual mode for one command.
5285 * Otherwise: Go to older pcmark.
5292 if (VIsual_active
&& VIsual_select
)
5294 VIsual_select
= FALSE
;
5296 restart_VIsual_select
= 2; /* restart Select mode later */
5301 cap
->count1
= -cap
->count1
;
5307 * CTRL-^ command, short for ":e #"
5313 if (!checkclearopq(cap
->oap
))
5314 (void)buflist_getfile((int)cap
->count0
, (linenr_T
)0,
5315 GETF_SETMARK
|GETF_ALT
, FALSE
);
5325 if (!checkclearopq(cap
->oap
))
5329 /* "ZZ": equivalent to ":x". */
5330 case 'Z': do_cmdline_cmd((char_u
*)"x");
5333 /* "ZQ": equivalent to ":q!" (Elvis compatible). */
5334 case 'Q': do_cmdline_cmd((char_u
*)"q!");
5337 default: clearopbeep(cap
->oap
);
5342 #if defined(FEAT_WINDOWS) || defined(PROTO)
5344 * Call nv_ident() as if "c1" was used, with "c2" as next character.
5355 vim_memset(&ca
, 0, sizeof(ca
));
5364 * Handle the commands that use the word under the cursor.
5365 * [g] CTRL-] :ta to current identifier
5366 * [g] 'K' run program for current identifier
5367 * [g] '*' / to current identifier or string
5368 * [g] '#' ? to current identifier or string
5369 * g ']' :tselect for current identifier
5378 char_u
*kp
; /* value of 'keywordprg' */
5379 int kp_help
; /* 'keywordprg' is ":help" */
5380 int n
= 0; /* init for GCC */
5382 int g_cmd
; /* "g" command */
5387 if (cap
->cmdchar
== 'g') /* "g*", "g#", "g]" and "gCTRL-]" */
5389 cmdchar
= cap
->nchar
;
5394 cmdchar
= cap
->cmdchar
;
5398 if (cmdchar
== POUND
) /* the pound sign, '#' for English keyboards */
5402 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
5404 if (cmdchar
== ']' || cmdchar
== Ctrl_RSB
|| cmdchar
== 'K')
5407 if (VIsual_active
&& get_visual_text(cap
, &ptr
, &n
) == FAIL
)
5410 if (checkclearopq(cap
->oap
))
5414 if (ptr
== NULL
&& (n
= find_ident_under_cursor(&ptr
,
5415 (cmdchar
== '*' || cmdchar
== '#')
5416 ? FIND_IDENT
|FIND_STRING
: FIND_IDENT
)) == 0)
5422 /* Allocate buffer to put the command in. Inserting backslashes can
5423 * double the length of the word. p_kp / curbuf->b_p_kp could be added
5424 * and some numbers. */
5425 kp
= (*curbuf
->b_p_kp
== NUL
? p_kp
: curbuf
->b_p_kp
);
5426 kp_help
= (*kp
== NUL
|| STRCMP(kp
, ":he") == 0
5427 || STRCMP(kp
, ":help") == 0);
5428 buf
= alloc((unsigned)(n
* 2 + 30 + STRLEN(kp
)));
5438 * Put cursor at start of word, makes search skip the word
5440 * Call setpcmark() first, so "*``" puts the cursor back where
5444 curwin
->w_cursor
.col
= (colnr_T
) (ptr
- ml_get_curline());
5446 if (!g_cmd
&& vim_iswordp(ptr
))
5448 no_smartcase
= TRUE
; /* don't use 'smartcase' now */
5453 STRCPY(buf
, "he! ");
5456 /* When a count is given, turn it into a range. Is this
5457 * really what we want? */
5458 isman
= (STRCMP(kp
, "man") == 0);
5459 isman_s
= (STRCMP(kp
, "man -s") == 0);
5460 if (cap
->count0
!= 0 && !(isman
|| isman_s
))
5461 sprintf((char *)buf
, ".,.+%ld", cap
->count0
- 1);
5464 if (cap
->count0
== 0 && isman_s
)
5469 if (cap
->count0
!= 0 && (isman
|| isman_s
))
5471 sprintf((char *)buf
+ STRLEN(buf
), "%ld", cap
->count0
);
5480 STRCPY(buf
, "cstag ");
5488 STRCPY(buf
, "he! ");
5492 sprintf((char *)buf
, "%ldta ", cap
->count0
);
5496 * Now grab the chars in the identifier
5499 aux_ptr
= (char_u
*)(p_magic
? "/.*~[^$\\" : "/^$\\");
5500 else if (cmdchar
== '#')
5501 aux_ptr
= (char_u
*)(p_magic
? "/?.*~[^$\\" : "/?^$\\");
5502 else if (cmdchar
== 'K' && !kp_help
)
5503 aux_ptr
= (char_u
*)" \t\\\"|!";
5505 /* Don't escape spaces and Tabs in a tag with a backslash */
5506 aux_ptr
= (char_u
*)"\\|\"";
5508 p
= buf
+ STRLEN(buf
);
5511 /* put a backslash before \ and some others */
5512 if (vim_strchr(aux_ptr
, *ptr
) != NULL
)
5515 /* When current byte is a part of multibyte character, copy all bytes
5516 * of that character. */
5520 int len
= (*mb_ptr2len
)(ptr
) - 1;
5522 for (i
= 0; i
< len
&& n
>= 1; ++i
, --n
)
5531 * Execute the command.
5533 if (cmdchar
== '*' || cmdchar
== '#')
5537 has_mbyte
? vim_iswordp(mb_prevptr(ml_get_curline(), ptr
)) :
5539 vim_iswordc(ptr
[-1])))
5542 /* put pattern in search history */
5543 add_to_history(HIST_SEARCH
, buf
, TRUE
, NUL
);
5545 normal_search(cap
, cmdchar
== '*' ? '/' : '?', buf
, 0);
5548 do_cmdline_cmd(buf
);
5553 #if defined(FEAT_VISUAL) || defined(PROTO)
5555 * Get visually selected text, within one line only.
5556 * Returns FAIL if more than one line selected.
5559 get_visual_text(cap
, pp
, lenp
)
5561 char_u
**pp
; /* return: start of selected text */
5562 int *lenp
; /* return: length of selected text */
5564 if (VIsual_mode
!= 'V')
5566 if (VIsual
.lnum
!= curwin
->w_cursor
.lnum
)
5569 clearopbeep(cap
->oap
);
5572 if (VIsual_mode
== 'V')
5574 *pp
= ml_get_curline();
5575 *lenp
= (int)STRLEN(*pp
);
5579 if (lt(curwin
->w_cursor
, VIsual
))
5581 *pp
= ml_get_pos(&curwin
->w_cursor
);
5582 *lenp
= VIsual
.col
- curwin
->w_cursor
.col
+ 1;
5586 *pp
= ml_get_pos(&VIsual
);
5587 *lenp
= curwin
->w_cursor
.col
- VIsual
.col
+ 1;
5591 /* Correct the length to include the whole last character. */
5592 *lenp
+= (*mb_ptr2len
)(*pp
+ (*lenp
- 1)) - 1;
5595 reset_VIsual_and_resel();
5601 * CTRL-T: backwards in tag stack
5607 if (!checkclearopq(cap
->oap
))
5608 do_tag((char_u
*)"", DT_POP
, (int)cap
->count1
, FALSE
, TRUE
);
5612 * Handle scrolling command 'H', 'L' and 'M'.
5625 cap
->oap
->motion_type
= MLINE
;
5628 if (cap
->cmdchar
== 'L')
5630 validate_botline(); /* make sure curwin->w_botline is valid */
5631 curwin
->w_cursor
.lnum
= curwin
->w_botline
- 1;
5632 if (cap
->count1
- 1 >= curwin
->w_cursor
.lnum
)
5633 curwin
->w_cursor
.lnum
= 1;
5637 if (hasAnyFolding(curwin
))
5639 /* Count a fold for one screen line. */
5640 for (n
= cap
->count1
- 1; n
> 0
5641 && curwin
->w_cursor
.lnum
> curwin
->w_topline
; --n
)
5643 (void)hasFolding(curwin
->w_cursor
.lnum
,
5644 &curwin
->w_cursor
.lnum
, NULL
);
5645 --curwin
->w_cursor
.lnum
;
5650 curwin
->w_cursor
.lnum
-= cap
->count1
- 1;
5655 if (cap
->cmdchar
== 'M')
5658 /* Don't count filler lines above the window. */
5659 used
-= diff_check_fill(curwin
, curwin
->w_topline
)
5660 - curwin
->w_topfill
;
5662 validate_botline(); /* make sure w_empty_rows is valid */
5663 half
= (curwin
->w_height
- curwin
->w_empty_rows
+ 1) / 2;
5664 for (n
= 0; curwin
->w_topline
+ n
< curbuf
->b_ml
.ml_line_count
; ++n
)
5667 /* Count half he number of filler lines to be "below this
5668 * line" and half to be "above the next line". */
5669 if (n
> 0 && used
+ diff_check_fill(curwin
, curwin
->w_topline
5676 used
+= plines(curwin
->w_topline
+ n
);
5680 if (hasFolding(curwin
->w_topline
+ n
, NULL
, &lnum
))
5681 n
= lnum
- curwin
->w_topline
;
5684 if (n
> 0 && used
> curwin
->w_height
)
5687 else /* (cap->cmdchar == 'H') */
5689 n
= cap
->count1
- 1;
5691 if (hasAnyFolding(curwin
))
5693 /* Count a fold for one screen line. */
5694 lnum
= curwin
->w_topline
;
5695 while (n
-- > 0 && lnum
< curwin
->w_botline
- 1)
5697 hasFolding(lnum
, NULL
, &lnum
);
5700 n
= lnum
- curwin
->w_topline
;
5704 curwin
->w_cursor
.lnum
= curwin
->w_topline
+ n
;
5705 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
5706 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
5709 cursor_correct(); /* correct for 'so' */
5710 beginline(BL_SOL
| BL_FIX
);
5714 * Cursor right commands.
5724 # define PAST_LINE 0
5727 if (mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
))
5729 /* <C-Right> and <S-Right> move a word or WORD right */
5730 if (mod_mask
& MOD_MASK_CTRL
)
5736 cap
->oap
->motion_type
= MCHAR
;
5737 cap
->oap
->inclusive
= FALSE
;
5739 PAST_LINE
= (VIsual_active
&& *p_sel
!= 'o');
5741 # ifdef FEAT_VIRTUALEDIT
5743 * In virtual mode, there's no such thing as "PAST_LINE", as lines are
5744 * (theoretically) infinitely long.
5746 if (virtual_active())
5751 for (n
= cap
->count1
; n
> 0; --n
)
5753 if ((!PAST_LINE
&& oneright() == FAIL
)
5754 || (PAST_LINE
&& *ml_get_cursor() == NUL
))
5757 * <Space> wraps to next line if 'whichwrap' has 's'.
5758 * 'l' wraps to next line if 'whichwrap' has 'l'.
5759 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
5761 if ( ((cap
->cmdchar
== ' '
5762 && vim_strchr(p_ww
, 's') != NULL
)
5763 || (cap
->cmdchar
== 'l'
5764 && vim_strchr(p_ww
, 'l') != NULL
)
5765 || (cap
->cmdchar
== K_RIGHT
5766 && vim_strchr(p_ww
, '>') != NULL
))
5767 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
5769 /* When deleting we also count the NL as a character.
5770 * Set cap->oap->inclusive when last char in the line is
5771 * included, move to next line after that */
5772 if ( cap
->oap
->op_type
!= OP_NOP
5773 && !cap
->oap
->inclusive
5774 && !lineempty(curwin
->w_cursor
.lnum
))
5775 cap
->oap
->inclusive
= TRUE
;
5778 ++curwin
->w_cursor
.lnum
;
5779 curwin
->w_cursor
.col
= 0;
5780 #ifdef FEAT_VIRTUALEDIT
5781 curwin
->w_cursor
.coladd
= 0;
5783 curwin
->w_set_curswant
= TRUE
;
5784 cap
->oap
->inclusive
= FALSE
;
5788 if (cap
->oap
->op_type
== OP_NOP
)
5790 /* Only beep and flush if not moved at all */
5791 if (n
== cap
->count1
)
5796 if (!lineempty(curwin
->w_cursor
.lnum
))
5797 cap
->oap
->inclusive
= TRUE
;
5804 curwin
->w_set_curswant
= TRUE
;
5805 # ifdef FEAT_VIRTUALEDIT
5806 if (virtual_active())
5813 curwin
->w_cursor
.col
+=
5814 (*mb_ptr2len
)(ml_get_cursor());
5817 ++curwin
->w_cursor
.col
;
5823 if (n
!= cap
->count1
&& (fdo_flags
& FDO_HOR
) && KeyTyped
5824 && cap
->oap
->op_type
== OP_NOP
)
5830 * Cursor left commands.
5832 * Returns TRUE when operator end should not be adjusted.
5840 if (mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
))
5842 /* <C-Left> and <S-Left> move a word or WORD left */
5843 if (mod_mask
& MOD_MASK_CTRL
)
5849 cap
->oap
->motion_type
= MCHAR
;
5850 cap
->oap
->inclusive
= FALSE
;
5851 for (n
= cap
->count1
; n
> 0; --n
)
5853 if (oneleft() == FAIL
)
5855 /* <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
5856 * 'h' wraps to previous line if 'whichwrap' has 'h'.
5857 * CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
5859 if ( (((cap
->cmdchar
== K_BS
5860 || cap
->cmdchar
== Ctrl_H
)
5861 && vim_strchr(p_ww
, 'b') != NULL
)
5862 || (cap
->cmdchar
== 'h'
5863 && vim_strchr(p_ww
, 'h') != NULL
)
5864 || (cap
->cmdchar
== K_LEFT
5865 && vim_strchr(p_ww
, '<') != NULL
))
5866 && curwin
->w_cursor
.lnum
> 1)
5868 --(curwin
->w_cursor
.lnum
);
5869 coladvance((colnr_T
)MAXCOL
);
5870 curwin
->w_set_curswant
= TRUE
;
5872 /* When the NL before the first char has to be deleted we
5873 * put the cursor on the NUL after the previous line.
5874 * This is a very special case, be careful!
5875 * Don't adjust op_end now, otherwise it won't work. */
5876 if ( (cap
->oap
->op_type
== OP_DELETE
5877 || cap
->oap
->op_type
== OP_CHANGE
)
5878 && !lineempty(curwin
->w_cursor
.lnum
))
5880 if (*ml_get_cursor() != NUL
)
5881 ++curwin
->w_cursor
.col
;
5882 cap
->retval
|= CA_NO_ADJ_OP_END
;
5886 /* Only beep and flush if not moved at all */
5887 else if (cap
->oap
->op_type
== OP_NOP
&& n
== cap
->count1
)
5893 if (n
!= cap
->count1
&& (fdo_flags
& FDO_HOR
) && KeyTyped
5894 && cap
->oap
->op_type
== OP_NOP
)
5900 * Cursor up commands.
5901 * cap->arg is TRUE for "-": Move cursor to first non-blank.
5907 if (mod_mask
& MOD_MASK_SHIFT
)
5909 /* <S-Up> is page up */
5910 cap
->arg
= BACKWARD
;
5915 cap
->oap
->motion_type
= MLINE
;
5916 if (cursor_up(cap
->count1
, cap
->oap
->op_type
== OP_NOP
) == FAIL
)
5917 clearopbeep(cap
->oap
);
5919 beginline(BL_WHITE
| BL_FIX
);
5924 * Cursor down commands.
5925 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
5931 if (mod_mask
& MOD_MASK_SHIFT
)
5933 /* <S-Down> is page down */
5938 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5939 /* In a quickfix window a <CR> jumps to the error under the cursor. */
5940 if (bt_quickfix(curbuf
) && cap
->cmdchar
== CAR
)
5941 if (curwin
->w_llist_ref
== NULL
)
5942 do_cmdline_cmd((char_u
*)".cc"); /* quickfix window */
5944 do_cmdline_cmd((char_u
*)".ll"); /* location list window */
5949 /* In the cmdline window a <CR> executes the command. */
5950 if (cmdwin_type
!= 0 && cap
->cmdchar
== CAR
)
5951 cmdwin_result
= CAR
;
5955 cap
->oap
->motion_type
= MLINE
;
5956 if (cursor_down(cap
->count1
, cap
->oap
->op_type
== OP_NOP
) == FAIL
)
5957 clearopbeep(cap
->oap
);
5959 beginline(BL_WHITE
| BL_FIX
);
5964 #ifdef FEAT_SEARCHPATH
5966 * Grab the file name under the cursor and edit it.
5977 clearopbeep(cap
->oap
);
5982 if (curbuf_locked())
5989 ptr
= grab_file_name(cap
->count1
, &lnum
);
5993 /* do autowrite if necessary */
5994 if (curbufIsChanged() && curbuf
->b_nwindows
<= 1 && !P_HID(curbuf
))
5995 autowrite(curbuf
, FALSE
);
5997 (void)do_ecmd(0, ptr
, NULL
, NULL
, ECMD_LAST
,
5998 P_HID(curbuf
) ? ECMD_HIDE
: 0);
5999 if (cap
->nchar
== 'F' && lnum
>= 0)
6001 curwin
->w_cursor
.lnum
= lnum
;
6002 check_cursor_lnum();
6003 beginline(BL_SOL
| BL_FIX
);
6013 * <End> command: to end of current line or last line.
6019 if (cap
->arg
|| (mod_mask
& MOD_MASK_CTRL
)) /* CTRL-END = goto last line */
6023 cap
->count1
= 1; /* to end of current line */
6029 * Handle the "$" command.
6035 cap
->oap
->motion_type
= MCHAR
;
6036 cap
->oap
->inclusive
= TRUE
;
6037 #ifdef FEAT_VIRTUALEDIT
6038 /* In virtual mode when off the edge of a line and an operator
6039 * is pending (whew!) keep the cursor where it is.
6040 * Otherwise, send it to the end of the line. */
6041 if (!virtual_active() || gchar_cursor() != NUL
6042 || cap
->oap
->op_type
== OP_NOP
)
6044 curwin
->w_curswant
= MAXCOL
; /* so we stay at the end */
6045 if (cursor_down((long)(cap
->count1
- 1),
6046 cap
->oap
->op_type
== OP_NOP
) == FAIL
)
6047 clearopbeep(cap
->oap
);
6049 else if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6055 * Implementation of '?' and '/' commands.
6056 * If cap->arg is TRUE don't set PC mark.
6062 oparg_T
*oap
= cap
->oap
;
6064 if (cap
->cmdchar
== '?' && cap
->oap
->op_type
== OP_ROT13
)
6066 /* Translate "g??" to "g?g?" */
6073 cap
->searchbuf
= getcmdline(cap
->cmdchar
, cap
->count1
, 0);
6075 if (cap
->searchbuf
== NULL
)
6081 normal_search(cap
, cap
->cmdchar
, cap
->searchbuf
,
6082 (cap
->arg
? 0 : SEARCH_MARK
));
6086 * Handle "N" and "n" commands.
6087 * cap->arg is SEARCH_REV for "N", 0 for "n".
6093 normal_search(cap
, 0, NULL
, SEARCH_MARK
| cap
->arg
);
6097 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
6098 * Uses only cap->count1 and cap->oap from "cap".
6101 normal_search(cap
, dir
, pat
, opt
)
6105 int opt
; /* extra flags for do_search() */
6109 cap
->oap
->motion_type
= MCHAR
;
6110 cap
->oap
->inclusive
= FALSE
;
6111 cap
->oap
->use_reg_one
= TRUE
;
6112 curwin
->w_set_curswant
= TRUE
;
6114 i
= do_search(cap
->oap
, dir
, pat
, cap
->count1
,
6115 opt
| SEARCH_OPT
| SEARCH_ECHO
| SEARCH_MSG
, NULL
);
6121 cap
->oap
->motion_type
= MLINE
;
6122 #ifdef FEAT_VIRTUALEDIT
6123 curwin
->w_cursor
.coladd
= 0;
6126 if (cap
->oap
->op_type
== OP_NOP
&& (fdo_flags
& FDO_SEARCH
) && KeyTyped
)
6131 /* "/$" will put the cursor after the end of the line, may need to
6132 * correct that here */
6137 * Character search commands.
6138 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
6139 * ',' and FALSE for ';'.
6140 * cap->nchar is NUL for ',' and ';' (repeat the search)
6148 if (cap
->cmdchar
== 't' || cap
->cmdchar
== 'T')
6153 cap
->oap
->motion_type
= MCHAR
;
6154 if (IS_SPECIAL(cap
->nchar
) || searchc(cap
, t_cmd
) == FAIL
)
6155 clearopbeep(cap
->oap
);
6158 curwin
->w_set_curswant
= TRUE
;
6159 #ifdef FEAT_VIRTUALEDIT
6160 /* Include a Tab for "tx" and for "dfx". */
6161 if (gchar_cursor() == TAB
&& virtual_active() && cap
->arg
== FORWARD
6162 && (t_cmd
|| cap
->oap
->op_type
!= OP_NOP
))
6166 getvcol(curwin
, &curwin
->w_cursor
, &scol
, NULL
, &ecol
);
6167 curwin
->w_cursor
.coladd
= ecol
- scol
;
6170 curwin
->w_cursor
.coladd
= 0;
6173 adjust_for_sel(cap
);
6176 if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6183 * "[" and "]" commands.
6184 * cap->arg is BACKWARD for "[" and FORWARD for "]".
6192 pos_T
*pos
= NULL
; /* init for GCC */
6193 pos_T old_pos
; /* cursor position before command */
6199 cap
->oap
->motion_type
= MCHAR
;
6200 cap
->oap
->inclusive
= FALSE
;
6201 old_pos
= curwin
->w_cursor
;
6202 #ifdef FEAT_VIRTUALEDIT
6203 curwin
->w_cursor
.coladd
= 0; /* TODO: don't do this for an error. */
6206 #ifdef FEAT_SEARCHPATH
6208 * "[f" or "]f" : Edit file under the cursor (same as "gf")
6210 if (cap
->nchar
== 'f')
6217 * Find the occurrence(s) of the identifier or define under cursor
6218 * in current and included files or jump to the first occurrence.
6221 * fwd bwd fwd bwd fwd bwd
6222 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
6223 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
6225 if (vim_strchr((char_u
*)
6231 cap
->nchar
) != NULL
)
6236 if ((len
= find_ident_under_cursor(&ptr
, FIND_IDENT
)) == 0)
6240 find_pattern_in_path(ptr
, 0, len
, TRUE
,
6241 cap
->count0
== 0 ? !isupper(cap
->nchar
) : FALSE
,
6242 ((cap
->nchar
& 0xf) == ('d' & 0xf)) ? FIND_DEFINE
: FIND_ANY
,
6244 isupper(cap
->nchar
) ? ACTION_SHOW_ALL
:
6245 islower(cap
->nchar
) ? ACTION_SHOW
: ACTION_GOTO
,
6246 cap
->cmdchar
== ']' ? curwin
->w_cursor
.lnum
+ 1 : (linenr_T
)1,
6248 curwin
->w_set_curswant
= TRUE
;
6255 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
6256 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
6257 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
6258 * "[m" or "]m" search for prev/next start of (Java) method.
6259 * "[M" or "]M" search for prev/next end of (Java) method.
6261 if ( (cap
->cmdchar
== '['
6262 && vim_strchr((char_u
*)"{(*/#mM", cap
->nchar
) != NULL
)
6263 || (cap
->cmdchar
== ']'
6264 && vim_strchr((char_u
*)"})*/#mM", cap
->nchar
) != NULL
))
6266 if (cap
->nchar
== '*')
6270 if (cap
->nchar
== 'm' || cap
->nchar
== 'M')
6272 if (cap
->cmdchar
== '[')
6285 if ((pos
= findmatchlimit(cap
->oap
, findc
,
6286 (cap
->cmdchar
== '[') ? FM_BACKWARD
: FM_FORWARD
, 0)) == NULL
)
6288 if (new_pos
.lnum
== 0) /* nothing found */
6290 if (cap
->nchar
!= 'm' && cap
->nchar
!= 'M')
6291 clearopbeep(cap
->oap
);
6294 pos
= &new_pos
; /* use last one found */
6298 curwin
->w_cursor
= *pos
;
6301 curwin
->w_cursor
= old_pos
;
6304 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
6305 * brought us to the match for "[m" and "]M" when inside a method.
6306 * Try finding the '{' or '}' we want to be at.
6307 * Also repeat for the given count.
6309 if (cap
->nchar
== 'm' || cap
->nchar
== 'M')
6311 /* norm is TRUE for "]M" and "[m" */
6312 int norm
= ((findc
== '{') == (cap
->nchar
== 'm'));
6315 /* found a match: we were inside a method */
6316 if (prev_pos
.lnum
!= 0)
6319 curwin
->w_cursor
= prev_pos
;
6329 if ((findc
== '{' ? dec_cursor() : inc_cursor()) < 0)
6331 /* if not found anything, that's an error */
6333 clearopbeep(cap
->oap
);
6338 if (c
== '{' || c
== '}')
6340 /* Must have found end/start of class: use it.
6341 * Or found the place to be at. */
6342 if ((c
== findc
&& norm
) || (n
== 1 && !norm
))
6344 new_pos
= curwin
->w_cursor
;
6348 /* if no match found at all, we started outside of the
6349 * class and we're inside now. Just go on. */
6350 else if (new_pos
.lnum
== 0)
6352 new_pos
= curwin
->w_cursor
;
6355 /* found start/end of other method: go to match */
6356 else if ((pos
= findmatchlimit(cap
->oap
, findc
,
6357 (cap
->cmdchar
== '[') ? FM_BACKWARD
: FM_FORWARD
,
6361 curwin
->w_cursor
= *pos
;
6367 curwin
->w_cursor
= old_pos
;
6368 if (pos
== NULL
&& new_pos
.lnum
!= 0)
6369 clearopbeep(cap
->oap
);
6374 curwin
->w_cursor
= *pos
;
6375 curwin
->w_set_curswant
= TRUE
;
6377 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
6378 && cap
->oap
->op_type
== OP_NOP
)
6385 * "[[", "[]", "]]" and "][": move to start or end of function
6387 else if (cap
->nchar
== '[' || cap
->nchar
== ']')
6389 if (cap
->nchar
== cap
->cmdchar
) /* "]]" or "[[" */
6392 flag
= '}'; /* "][" or "[]" */
6394 curwin
->w_set_curswant
= TRUE
;
6396 * Imitate strange Vi behaviour: When using "]]" with an operator
6397 * we also stop at '}'.
6399 if (!findpar(&cap
->oap
->inclusive
, cap
->arg
, cap
->count1
, flag
,
6400 (cap
->oap
->op_type
!= OP_NOP
6401 && cap
->arg
== FORWARD
&& flag
== '{')))
6402 clearopbeep(cap
->oap
);
6405 if (cap
->oap
->op_type
== OP_NOP
)
6406 beginline(BL_WHITE
| BL_FIX
);
6408 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6415 * "[p", "[P", "]P" and "]p": put with indent adjustment
6417 else if (cap
->nchar
== 'p' || cap
->nchar
== 'P')
6419 if (!checkclearop(cap
->oap
))
6422 do_put(cap
->oap
->regname
,
6423 (cap
->cmdchar
== ']' && cap
->nchar
== 'p') ? FORWARD
: BACKWARD
,
6424 cap
->count1
, PUT_FIXINDENT
);
6429 * "['", "[`", "]'" and "]`": jump to next mark
6431 else if (cap
->nchar
== '\'' || cap
->nchar
== '`')
6433 pos
= &curwin
->w_cursor
;
6434 for (n
= cap
->count1
; n
> 0; --n
)
6437 pos
= getnextmark(pos
, cap
->cmdchar
== '[' ? BACKWARD
: FORWARD
,
6438 cap
->nchar
== '\'');
6444 nv_cursormark(cap
, cap
->nchar
== '\'', pos
);
6449 * [ or ] followed by a middle mouse click: put selected text with
6450 * indent adjustment. Any other button just does as usual.
6452 else if (cap
->nchar
>= K_LEFTMOUSE
&& cap
->nchar
<= K_RIGHTRELEASE
)
6454 (void)do_mouse(cap
->oap
, cap
->nchar
,
6455 (cap
->cmdchar
== ']') ? FORWARD
: BACKWARD
,
6456 cap
->count1
, PUT_FIXINDENT
);
6458 #endif /* FEAT_MOUSE */
6462 * "[z" and "]z": move to start or end of open fold.
6464 else if (cap
->nchar
== 'z')
6466 if (foldMoveTo(FALSE
, cap
->cmdchar
== ']' ? FORWARD
: BACKWARD
,
6467 cap
->count1
) == FAIL
)
6468 clearopbeep(cap
->oap
);
6474 * "[c" and "]c": move to next or previous diff-change.
6476 else if (cap
->nchar
== 'c')
6478 if (diff_move_to(cap
->cmdchar
== ']' ? FORWARD
: BACKWARD
,
6479 cap
->count1
) == FAIL
)
6480 clearopbeep(cap
->oap
);
6486 * "[s", "[S", "]s" and "]S": move to next spell error.
6488 else if (cap
->nchar
== 's' || cap
->nchar
== 'S')
6491 for (n
= 0; n
< cap
->count1
; ++n
)
6492 if (spell_move_to(curwin
, cap
->cmdchar
== ']' ? FORWARD
: BACKWARD
,
6493 cap
->nchar
== 's' ? TRUE
: FALSE
, FALSE
, NULL
) == 0)
6495 clearopbeep(cap
->oap
);
6498 # ifdef FEAT_FOLDING
6499 if (cap
->oap
->op_type
== OP_NOP
&& (fdo_flags
& FDO_SEARCH
) && KeyTyped
)
6505 /* Not a valid cap->nchar. */
6507 clearopbeep(cap
->oap
);
6511 * Handle Normal mode "%" command.
6519 linenr_T lnum
= curwin
->w_cursor
.lnum
;
6522 cap
->oap
->inclusive
= TRUE
;
6523 if (cap
->count0
) /* {cnt}% : goto {cnt} percentage in file */
6525 if (cap
->count0
> 100)
6526 clearopbeep(cap
->oap
);
6529 cap
->oap
->motion_type
= MLINE
;
6531 /* Round up, so CTRL-G will give same value. Watch out for a
6532 * large line count, the line number must not go negative! */
6533 if (curbuf
->b_ml
.ml_line_count
> 1000000)
6534 curwin
->w_cursor
.lnum
= (curbuf
->b_ml
.ml_line_count
+ 99L)
6535 / 100L * cap
->count0
;
6537 curwin
->w_cursor
.lnum
= (curbuf
->b_ml
.ml_line_count
*
6538 cap
->count0
+ 99L) / 100L;
6539 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
6540 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
6541 beginline(BL_SOL
| BL_FIX
);
6544 else /* "%" : go to matching paren */
6546 cap
->oap
->motion_type
= MCHAR
;
6547 cap
->oap
->use_reg_one
= TRUE
;
6548 if ((pos
= findmatch(cap
->oap
, NUL
)) == NULL
)
6549 clearopbeep(cap
->oap
);
6553 curwin
->w_cursor
= *pos
;
6554 curwin
->w_set_curswant
= TRUE
;
6555 #ifdef FEAT_VIRTUALEDIT
6556 curwin
->w_cursor
.coladd
= 0;
6559 adjust_for_sel(cap
);
6564 if (cap
->oap
->op_type
== OP_NOP
6565 && lnum
!= curwin
->w_cursor
.lnum
6566 && (fdo_flags
& FDO_PERCENT
)
6573 * Handle "(" and ")" commands.
6574 * cap->arg is BACKWARD for "(" and FORWARD for ")".
6580 cap
->oap
->motion_type
= MCHAR
;
6581 cap
->oap
->use_reg_one
= TRUE
;
6582 /* The motion used to be inclusive for "(", but that is not what Vi does. */
6583 cap
->oap
->inclusive
= FALSE
;
6584 curwin
->w_set_curswant
= TRUE
;
6586 if (findsent(cap
->arg
, cap
->count1
) == FAIL
)
6587 clearopbeep(cap
->oap
);
6590 /* Don't leave the cursor on the NUL past end of line. */
6591 adjust_cursor(cap
->oap
);
6592 #ifdef FEAT_VIRTUALEDIT
6593 curwin
->w_cursor
.coladd
= 0;
6596 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6603 * "m" command: Mark a position.
6609 if (!checkclearop(cap
->oap
))
6611 if (setmark(cap
->nchar
) == FAIL
)
6612 clearopbeep(cap
->oap
);
6617 * "{" and "}" commands.
6618 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
6624 cap
->oap
->motion_type
= MCHAR
;
6625 cap
->oap
->inclusive
= FALSE
;
6626 cap
->oap
->use_reg_one
= TRUE
;
6627 curwin
->w_set_curswant
= TRUE
;
6628 if (!findpar(&cap
->oap
->inclusive
, cap
->arg
, cap
->count1
, NUL
, FALSE
))
6629 clearopbeep(cap
->oap
);
6632 #ifdef FEAT_VIRTUALEDIT
6633 curwin
->w_cursor
.coladd
= 0;
6636 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6643 * "u" command: Undo or make lower case.
6649 if (cap
->oap
->op_type
== OP_LOWER
6655 /* translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" */
6671 if (!checkclearopq(cap
->oap
))
6673 u_undo((int)cap
->count1
);
6674 curwin
->w_set_curswant
= TRUE
;
6679 * Handle the "r" command.
6689 if (checkclearop(cap
->oap
))
6692 /* get another character */
6693 if (cap
->nchar
== Ctrl_V
)
6695 had_ctrl_v
= Ctrl_V
;
6696 cap
->nchar
= get_literal();
6697 /* Don't redo a multibyte character with CTRL-V. */
6698 if (cap
->nchar
> DEL
)
6704 /* Abort if the character is a special key. */
6705 if (IS_SPECIAL(cap
->nchar
))
6707 clearopbeep(cap
->oap
);
6712 /* Visual mode "r" */
6720 #ifdef FEAT_VIRTUALEDIT
6721 /* Break tabs, etc. */
6722 if (virtual_active())
6724 if (u_save_cursor() == FAIL
)
6726 if (gchar_cursor() == NUL
)
6728 /* Add extra space and put the cursor on the first one. */
6729 coladvance_force((colnr_T
)(getviscol() + cap
->count1
));
6730 curwin
->w_cursor
.col
-= cap
->count1
;
6732 else if (gchar_cursor() == TAB
)
6733 coladvance_force(getviscol());
6737 /* Abort if not enough characters to replace. */
6738 ptr
= ml_get_cursor();
6739 if (STRLEN(ptr
) < (unsigned)cap
->count1
6741 || (has_mbyte
&& mb_charlen(ptr
) < cap
->count1
)
6745 clearopbeep(cap
->oap
);
6750 * Replacing with a TAB is done by edit() when it is complicated because
6751 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
6752 * Other characters are done below to avoid problems with things like
6753 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
6755 if (had_ctrl_v
!= Ctrl_V
&& cap
->nchar
== '\t' && (curbuf
->b_p_et
|| p_sta
))
6757 stuffnumReadbuff(cap
->count1
);
6758 stuffcharReadbuff('R');
6759 stuffcharReadbuff('\t');
6760 stuffcharReadbuff(ESC
);
6764 /* save line for undo */
6765 if (u_save_cursor() == FAIL
)
6768 if (had_ctrl_v
!= Ctrl_V
&& (cap
->nchar
== '\r' || cap
->nchar
== '\n'))
6771 * Replace character(s) by a single newline.
6772 * Strange vi behaviour: Only one newline is inserted.
6773 * Delete the characters here.
6774 * Insert the newline with an insert command, takes care of
6775 * autoindent. The insert command depends on being on the last
6776 * character of a line or not.
6779 (void)del_chars(cap
->count1
, FALSE
); /* delete the characters */
6781 (void)del_bytes(cap
->count1
, FALSE
, FALSE
); /* delete the characters */
6783 stuffcharReadbuff('\r');
6784 stuffcharReadbuff(ESC
);
6786 /* Give 'r' to edit(), to get the redo command right. */
6787 invoke_edit(cap
, TRUE
, 'r', FALSE
);
6791 prep_redo(cap
->oap
->regname
, cap
->count1
,
6792 NUL
, 'r', NUL
, had_ctrl_v
, cap
->nchar
);
6794 curbuf
->b_op_start
= curwin
->w_cursor
;
6798 int old_State
= State
;
6800 if (cap
->ncharC1
!= 0)
6801 AppendCharToRedobuff(cap
->ncharC1
);
6802 if (cap
->ncharC2
!= 0)
6803 AppendCharToRedobuff(cap
->ncharC2
);
6805 /* This is slow, but it handles replacing a single-byte with a
6806 * multi-byte and the other way around. Also handles adding
6807 * composing characters for utf-8. */
6808 for (n
= cap
->count1
; n
> 0; --n
)
6811 ins_char(cap
->nchar
);
6813 if (cap
->ncharC1
!= 0)
6814 ins_char(cap
->ncharC1
);
6815 if (cap
->ncharC2
!= 0)
6816 ins_char(cap
->ncharC2
);
6823 * Replace the characters within one line.
6825 for (n
= cap
->count1
; n
> 0; --n
)
6828 * Get ptr again, because u_save and/or showmatch() will have
6829 * released the line. At the same time we let know that the
6830 * line will be changed.
6832 ptr
= ml_get_buf(curbuf
, curwin
->w_cursor
.lnum
, TRUE
);
6833 ptr
[curwin
->w_cursor
.col
] = cap
->nchar
;
6834 if (p_sm
&& msg_silent
== 0)
6835 showmatch(cap
->nchar
);
6836 ++curwin
->w_cursor
.col
;
6838 #ifdef FEAT_NETBEANS_INTG
6841 colnr_T start
= (colnr_T
)(curwin
->w_cursor
.col
- cap
->count1
);
6843 netbeans_removed(curbuf
, curwin
->w_cursor
.lnum
, start
,
6845 netbeans_inserted(curbuf
, curwin
->w_cursor
.lnum
, start
,
6846 &ptr
[start
], (int)cap
->count1
);
6850 /* mark the buffer as changed and prepare for displaying */
6851 changed_bytes(curwin
->w_cursor
.lnum
,
6852 (colnr_T
)(curwin
->w_cursor
.col
- cap
->count1
));
6854 --curwin
->w_cursor
.col
; /* cursor on the last replaced char */
6856 /* if the character on the left of the current cursor is a multi-byte
6857 * character, move two characters left */
6861 curbuf
->b_op_end
= curwin
->w_cursor
;
6862 curwin
->w_set_curswant
= TRUE
;
6863 set_last_insert(cap
->nchar
);
6869 * 'o': Exchange start and end of Visual area.
6870 * 'O': same, but in block mode exchange left and right corners.
6873 v_swap_corners(cmdchar
)
6877 colnr_T left
, right
;
6879 if (cmdchar
== 'O' && VIsual_mode
== Ctrl_V
)
6881 old_cursor
= curwin
->w_cursor
;
6882 getvcols(curwin
, &old_cursor
, &VIsual
, &left
, &right
);
6883 curwin
->w_cursor
.lnum
= VIsual
.lnum
;
6885 VIsual
= curwin
->w_cursor
;
6887 curwin
->w_cursor
.lnum
= old_cursor
.lnum
;
6888 curwin
->w_curswant
= right
;
6889 /* 'selection "exclusive" and cursor at right-bottom corner: move it
6890 * right one column */
6891 if (old_cursor
.lnum
>= VIsual
.lnum
&& *p_sel
== 'e')
6892 ++curwin
->w_curswant
;
6893 coladvance(curwin
->w_curswant
);
6894 if (curwin
->w_cursor
.col
== old_cursor
.col
6895 #ifdef FEAT_VIRTUALEDIT
6896 && (!virtual_active()
6897 || curwin
->w_cursor
.coladd
== old_cursor
.coladd
)
6901 curwin
->w_cursor
.lnum
= VIsual
.lnum
;
6902 if (old_cursor
.lnum
<= VIsual
.lnum
&& *p_sel
== 'e')
6905 VIsual
= curwin
->w_cursor
;
6907 curwin
->w_cursor
.lnum
= old_cursor
.lnum
;
6909 curwin
->w_curswant
= left
;
6914 old_cursor
= curwin
->w_cursor
;
6915 curwin
->w_cursor
= VIsual
;
6916 VIsual
= old_cursor
;
6917 curwin
->w_set_curswant
= TRUE
;
6920 #endif /* FEAT_VISUAL */
6923 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
6930 if (VIsual_active
) /* "R" is replace lines */
6939 if (!checkclearopq(cap
->oap
))
6941 if (!curbuf
->b_p_ma
)
6942 EMSG(_(e_modifiable
));
6945 #ifdef FEAT_VIRTUALEDIT
6946 if (virtual_active())
6947 coladvance(getviscol());
6949 invoke_edit(cap
, FALSE
, cap
->arg
? 'V' : 'R', FALSE
);
6954 #ifdef FEAT_VREPLACE
6966 cap
->nchar
= cap
->extra_char
;
6967 nv_replace(cap
); /* Do same as "r" in Visual mode for now */
6971 if (!checkclearopq(cap
->oap
))
6973 if (!curbuf
->b_p_ma
)
6974 EMSG(_(e_modifiable
));
6977 if (cap
->extra_char
== Ctrl_V
) /* get another character */
6978 cap
->extra_char
= get_literal();
6979 stuffcharReadbuff(cap
->extra_char
);
6980 stuffcharReadbuff(ESC
);
6981 # ifdef FEAT_VIRTUALEDIT
6982 if (virtual_active())
6983 coladvance(getviscol());
6985 invoke_edit(cap
, TRUE
, 'v', FALSE
);
6992 * Swap case for "~" command, when it does not work like an operator.
7001 #ifdef FEAT_NETBEANS_INTG
7007 if (checkclearopq(cap
->oap
))
7010 if (lineempty(curwin
->w_cursor
.lnum
) && vim_strchr(p_ww
, '~') == NULL
)
7012 clearopbeep(cap
->oap
);
7018 if (u_save_cursor() == FAIL
)
7021 startpos
= curwin
->w_cursor
;
7022 #ifdef FEAT_NETBEANS_INTG
7025 for (n
= cap
->count1
; n
> 0; --n
)
7027 did_change
|= swapchar(cap
->oap
->op_type
, &curwin
->w_cursor
);
7029 if (gchar_cursor() == NUL
)
7031 if (vim_strchr(p_ww
, '~') != NULL
7032 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
7034 #ifdef FEAT_NETBEANS_INTG
7039 ptr
= ml_get(pos
.lnum
);
7040 count
= (int)STRLEN(ptr
) - pos
.col
;
7041 netbeans_removed(curbuf
, pos
.lnum
, pos
.col
,
7043 netbeans_inserted(curbuf
, pos
.lnum
, pos
.col
,
7044 &ptr
[pos
.col
], count
);
7050 ++curwin
->w_cursor
.lnum
;
7051 curwin
->w_cursor
.col
= 0;
7054 if (u_savesub(curwin
->w_cursor
.lnum
) == FAIL
)
7063 #ifdef FEAT_NETBEANS_INTG
7064 if (did_change
&& usingNetbeans
)
7066 ptr
= ml_get(pos
.lnum
);
7067 count
= curwin
->w_cursor
.col
- pos
.col
;
7068 netbeans_removed(curbuf
, pos
.lnum
, pos
.col
, (long)count
);
7069 netbeans_inserted(curbuf
, pos
.lnum
, pos
.col
, &ptr
[pos
.col
], count
);
7075 curwin
->w_set_curswant
= TRUE
;
7078 changed_lines(startpos
.lnum
, startpos
.col
, curwin
->w_cursor
.lnum
+ 1,
7080 curbuf
->b_op_start
= startpos
;
7081 curbuf
->b_op_end
= curwin
->w_cursor
;
7082 if (curbuf
->b_op_end
.col
> 0)
7083 --curbuf
->b_op_end
.col
;
7088 * Move cursor to mark.
7091 nv_cursormark(cap
, flag
, pos
)
7096 if (check_mark(pos
) == FAIL
)
7100 if (cap
->cmdchar
== '\''
7101 || cap
->cmdchar
== '`'
7102 || cap
->cmdchar
== '['
7103 || cap
->cmdchar
== ']')
7105 curwin
->w_cursor
= *pos
;
7107 beginline(BL_WHITE
| BL_FIX
);
7111 cap
->oap
->motion_type
= flag
? MLINE
: MCHAR
;
7112 if (cap
->cmdchar
== '`')
7113 cap
->oap
->use_reg_one
= TRUE
;
7114 cap
->oap
->inclusive
= FALSE
; /* ignored if not MCHAR */
7115 curwin
->w_set_curswant
= TRUE
;
7120 * Handle commands that are operators in Visual mode.
7126 static char_u trans
[] = "YyDdCcxdXdAAIIrr";
7128 /* Uppercase means linewise, except in block mode, then "D" deletes till
7129 * the end of the line, and "C" replaces til EOL */
7130 if (isupper(cap
->cmdchar
))
7132 if (VIsual_mode
!= Ctrl_V
)
7134 else if (cap
->cmdchar
== 'C' || cap
->cmdchar
== 'D')
7135 curwin
->w_curswant
= MAXCOL
;
7137 cap
->cmdchar
= *(vim_strchr(trans
, cap
->cmdchar
) + 1);
7143 * "s" and "S" commands.
7150 if (VIsual_active
) /* "vs" and "vS" are the same as "vc" */
7152 if (cap
->cmdchar
== 'S')
7163 * Abbreviated commands.
7169 if (cap
->cmdchar
== K_DEL
|| cap
->cmdchar
== K_KDEL
)
7170 cap
->cmdchar
= 'x'; /* DEL key behaves like 'x' */
7173 /* in Visual mode these commands are operators */
7182 * Translate a command into another command.
7188 static char_u
*(ar
[8]) = {(char_u
*)"dl", (char_u
*)"dh",
7189 (char_u
*)"d$", (char_u
*)"c$",
7190 (char_u
*)"cl", (char_u
*)"cc",
7191 (char_u
*)"yy", (char_u
*)":s\r"};
7192 static char_u
*str
= (char_u
*)"xXDCsSY&";
7194 if (!checkclearopq(cap
->oap
))
7196 /* In Vi "2D" doesn't delete the next line. Can't translate it
7197 * either, because "2." should also not use the count. */
7198 if (cap
->cmdchar
== 'D' && vim_strchr(p_cpo
, CPO_HASH
) != NULL
)
7200 cap
->oap
->start
= curwin
->w_cursor
;
7201 cap
->oap
->op_type
= OP_DELETE
;
7203 set_op_var(OP_DELETE
);
7209 AppendCharToRedobuff('D');
7214 stuffnumReadbuff(cap
->count0
);
7215 stuffReadbuff(ar
[(int)(vim_strchr(str
, cap
->cmdchar
) - str
)]);
7222 * "'" and "`" commands. Also for "g'" and "g`".
7223 * cap->arg is TRUE for "'" and "g'".
7232 linenr_T lnum
= curwin
->w_cursor
.lnum
;
7233 int old_KeyTyped
= KeyTyped
; /* getting file may reset it */
7236 if (cap
->cmdchar
== 'g')
7237 c
= cap
->extra_char
;
7240 pos
= getmark(c
, (cap
->oap
->op_type
== OP_NOP
));
7241 if (pos
== (pos_T
*)-1) /* jumped to other file */
7245 check_cursor_lnum();
7246 beginline(BL_WHITE
| BL_FIX
);
7252 nv_cursormark(cap
, cap
->arg
, pos
);
7254 #ifdef FEAT_VIRTUALEDIT
7255 /* May need to clear the coladd that a mark includes. */
7256 if (!virtual_active())
7257 curwin
->w_cursor
.coladd
= 0;
7260 if (cap
->oap
->op_type
== OP_NOP
7261 && (pos
== (pos_T
*)-1 || lnum
!= curwin
->w_cursor
.lnum
)
7262 && (fdo_flags
& FDO_MARK
)
7269 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
7275 #ifdef FEAT_JUMPLIST
7277 # ifdef FEAT_FOLDING
7278 linenr_T lnum
= curwin
->w_cursor
.lnum
;
7279 int old_KeyTyped
= KeyTyped
; /* getting file may reset it */
7282 if (!checkclearopq(cap
->oap
))
7284 if (cap
->cmdchar
== 'g')
7285 pos
= movechangelist((int)cap
->count1
);
7287 pos
= movemark((int)cap
->count1
);
7288 if (pos
== (pos_T
*)-1) /* jump to other file */
7290 curwin
->w_set_curswant
= TRUE
;
7293 else if (pos
!= NULL
) /* can jump */
7294 nv_cursormark(cap
, FALSE
, pos
);
7295 else if (cap
->cmdchar
== 'g')
7297 if (curbuf
->b_changelistlen
== 0)
7298 EMSG(_("E664: changelist is empty"));
7299 else if (cap
->count1
< 0)
7300 EMSG(_("E662: At start of changelist"));
7302 EMSG(_("E663: At end of changelist"));
7305 clearopbeep(cap
->oap
);
7306 # ifdef FEAT_FOLDING
7307 if (cap
->oap
->op_type
== OP_NOP
7308 && (pos
== (pos_T
*)-1 || lnum
!= curwin
->w_cursor
.lnum
)
7309 && (fdo_flags
& FDO_MARK
)
7315 clearopbeep(cap
->oap
);
7320 * Handle '"' command.
7326 if (checkclearop(cap
->oap
))
7329 if (cap
->nchar
== '=')
7330 cap
->nchar
= get_expr_register();
7332 if (cap
->nchar
!= NUL
&& valid_yank_reg(cap
->nchar
, FALSE
))
7334 cap
->oap
->regname
= cap
->nchar
;
7335 cap
->opcount
= cap
->count0
; /* remember count before '"' */
7337 set_reg_var(cap
->oap
->regname
);
7341 clearopbeep(cap
->oap
);
7346 * Handle "v", "V" and "CTRL-V" commands.
7347 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
7349 * Handle CTRL-Q just like CTRL-V.
7355 if (cap
->cmdchar
== Ctrl_Q
)
7356 cap
->cmdchar
= Ctrl_V
;
7358 /* 'v', 'V' and CTRL-V can be used while an operator is pending to make it
7359 * characterwise, linewise, or blockwise. */
7360 if (cap
->oap
->op_type
!= OP_NOP
)
7362 cap
->oap
->motion_force
= cap
->cmdchar
;
7363 finish_op
= FALSE
; /* operator doesn't finish now but later */
7367 VIsual_select
= cap
->arg
;
7368 if (VIsual_active
) /* change Visual mode */
7370 if (VIsual_mode
== cap
->cmdchar
) /* stop visual mode */
7372 else /* toggle char/block mode */
7373 { /* or char/line mode */
7374 VIsual_mode
= cap
->cmdchar
;
7377 redraw_curbuf_later(INVERTED
); /* update the inversion */
7379 else /* start Visual mode */
7381 check_visual_highlight();
7382 if (cap
->count0
) /* use previously selected part */
7384 if (resel_VIsual_mode
== NUL
) /* there is none */
7389 VIsual
= curwin
->w_cursor
;
7391 VIsual_active
= TRUE
;
7392 VIsual_reselect
= TRUE
;
7394 /* start Select mode when 'selectmode' contains "cmd" */
7395 may_start_select('c');
7399 if (p_smd
&& msg_silent
== 0)
7400 redraw_cmdline
= TRUE
; /* show visual mode later */
7402 * For V and ^V, we multiply the number of lines even if there
7403 * was only one -- webb
7405 if (resel_VIsual_mode
!= 'v' || resel_VIsual_line_count
> 1)
7407 curwin
->w_cursor
.lnum
+=
7408 resel_VIsual_line_count
* cap
->count0
- 1;
7409 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
7410 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
7412 VIsual_mode
= resel_VIsual_mode
;
7413 if (VIsual_mode
== 'v')
7415 if (resel_VIsual_line_count
<= 1)
7416 curwin
->w_cursor
.col
+= resel_VIsual_col
* cap
->count0
- 1;
7418 curwin
->w_cursor
.col
= resel_VIsual_col
;
7421 if (resel_VIsual_col
== MAXCOL
)
7423 curwin
->w_curswant
= MAXCOL
;
7424 coladvance((colnr_T
)MAXCOL
);
7426 else if (VIsual_mode
== Ctrl_V
)
7429 curwin
->w_curswant
= curwin
->w_virtcol
7430 + resel_VIsual_col
* cap
->count0
- 1;
7431 coladvance(curwin
->w_curswant
);
7434 curwin
->w_set_curswant
= TRUE
;
7435 redraw_curbuf_later(INVERTED
); /* show the inversion */
7440 /* start Select mode when 'selectmode' contains "cmd" */
7441 may_start_select('c');
7442 n_start_visual_mode(cap
->cmdchar
);
7448 * Start selection for Shift-movement keys.
7453 /* if 'selectmode' contains "key", start Select mode */
7454 may_start_select('k');
7455 n_start_visual_mode('v');
7459 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
7465 VIsual_select
= (stuff_empty() && typebuf_typed()
7466 && (vim_strchr(p_slm
, c
) != NULL
));
7470 * Start Visual mode "c".
7471 * Should set VIsual_select before calling this.
7474 n_start_visual_mode(c
)
7478 VIsual_active
= TRUE
;
7479 VIsual_reselect
= TRUE
;
7480 #ifdef FEAT_VIRTUALEDIT
7481 /* Corner case: the 0 position in a tab may change when going into
7482 * virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting.
7484 if (c
== Ctrl_V
&& (ve_flags
& VE_BLOCK
) && gchar_cursor() == TAB
)
7485 coladvance(curwin
->w_virtcol
);
7487 VIsual
= curwin
->w_cursor
;
7496 if (p_smd
&& msg_silent
== 0)
7497 redraw_cmdline
= TRUE
; /* show visual mode later */
7498 #ifdef FEAT_CLIPBOARD
7499 /* Make sure the clipboard gets updated. Needed because start and
7500 * end may still be the same, and the selection needs to be owned */
7501 clip_star
.vmode
= NUL
;
7504 /* Only need to redraw this line, unless still need to redraw an old
7505 * Visual area (when 'lazyredraw' is set). */
7506 if (curwin
->w_redr_type
< INVERTED
)
7508 curwin
->w_old_cursor_lnum
= curwin
->w_cursor
.lnum
;
7509 curwin
->w_old_visual_lnum
= curwin
->w_cursor
.lnum
;
7513 #endif /* FEAT_VISUAL */
7516 * CTRL-W: Window commands
7523 if (!checkclearop(cap
->oap
))
7524 do_window(cap
->nchar
, cap
->count0
, NUL
); /* everything is in window.c */
7526 (void)checkclearop(cap
->oap
);
7540 end_visual_mode(); /* stop Visual mode */
7542 do_cmdline_cmd((char_u
*)"st");
7546 * Commands starting with "g".
7552 oparg_T
*oap
= cap
->oap
;
7563 * "g^A": dump log of used memory.
7566 vim_mem_profile_dump();
7570 #ifdef FEAT_VREPLACE
7572 * "gR": Enter virtual replace mode.
7585 do_cmdline_cmd((char_u
*)"%s//~/&");
7590 * "gv": Reselect the previous Visual area. If Visual already active,
7591 * exchange previous and current Visual area.
7594 if (checkclearop(oap
))
7597 if ( curbuf
->b_visual
.vi_start
.lnum
== 0
7598 || curbuf
->b_visual
.vi_start
.lnum
> curbuf
->b_ml
.ml_line_count
7599 || curbuf
->b_visual
.vi_end
.lnum
== 0)
7603 /* set w_cursor to the start of the Visual area, tpos to the end */
7607 VIsual_mode
= curbuf
->b_visual
.vi_mode
;
7608 curbuf
->b_visual
.vi_mode
= i
;
7610 curbuf
->b_visual_mode_eval
= i
;
7612 i
= curwin
->w_curswant
;
7613 curwin
->w_curswant
= curbuf
->b_visual
.vi_curswant
;
7614 curbuf
->b_visual
.vi_curswant
= i
;
7616 tpos
= curbuf
->b_visual
.vi_end
;
7617 curbuf
->b_visual
.vi_end
= curwin
->w_cursor
;
7618 curwin
->w_cursor
= curbuf
->b_visual
.vi_start
;
7619 curbuf
->b_visual
.vi_start
= VIsual
;
7623 VIsual_mode
= curbuf
->b_visual
.vi_mode
;
7624 curwin
->w_curswant
= curbuf
->b_visual
.vi_curswant
;
7625 tpos
= curbuf
->b_visual
.vi_end
;
7626 curwin
->w_cursor
= curbuf
->b_visual
.vi_start
;
7629 VIsual_active
= TRUE
;
7630 VIsual_reselect
= TRUE
;
7632 /* Set Visual to the start and w_cursor to the end of the Visual
7633 * area. Make sure they are on an existing character. */
7635 VIsual
= curwin
->w_cursor
;
7636 curwin
->w_cursor
= tpos
;
7640 * When called from normal "g" command: start Select mode when
7641 * 'selectmode' contains "cmd". When called for K_SELECT, always
7642 * start Select mode.
7645 VIsual_select
= TRUE
;
7647 may_start_select('c');
7651 #ifdef FEAT_CLIPBOARD
7652 /* Make sure the clipboard gets updated. Needed because start and
7653 * end are still the same, and the selection needs to be owned */
7654 clip_star
.vmode
= NUL
;
7656 redraw_curbuf_later(INVERTED
);
7661 * "gV": Don't reselect the previous Visual area after a Select mode
7665 VIsual_reselect
= FALSE
;
7669 * "gh": start Select mode.
7670 * "gH": start Select line mode.
7671 * "g^H": start Select block mode.
7674 cap
->nchar
= Ctrl_H
;
7680 /* EBCDIC: 'v'-'h' != '^v'-'^h' */
7681 if (cap
->nchar
== Ctrl_H
)
7682 cap
->cmdchar
= Ctrl_V
;
7685 cap
->cmdchar
= cap
->nchar
+ ('v' - 'h');
7689 #endif /* FEAT_VISUAL */
7692 * "gj" and "gk" two new funny movement keys -- up and down
7693 * movement based on *screen* line rather than *file* line.
7697 /* with 'nowrap' it works just like the normal "j" command; also when
7698 * in a closed fold */
7699 if (!curwin
->w_p_wrap
7701 || hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
)
7705 oap
->motion_type
= MLINE
;
7706 i
= cursor_down(cap
->count1
, oap
->op_type
== OP_NOP
);
7709 i
= nv_screengo(oap
, FORWARD
, cap
->count1
);
7716 /* with 'nowrap' it works just like the normal "k" command; also when
7717 * in a closed fold */
7718 if (!curwin
->w_p_wrap
7720 || hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
)
7724 oap
->motion_type
= MLINE
;
7725 i
= cursor_up(cap
->count1
, oap
->op_type
== OP_NOP
);
7728 i
= nv_screengo(oap
, BACKWARD
, cap
->count1
);
7734 * "gJ": join two lines without inserting a space.
7741 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
7742 * "gm": middle of "g0" and "g$".
7752 oap
->motion_type
= MCHAR
;
7753 oap
->inclusive
= FALSE
;
7754 if (curwin
->w_p_wrap
7755 #ifdef FEAT_VERTSPLIT
7756 && curwin
->w_width
!= 0
7760 int width1
= W_WIDTH(curwin
) - curwin_col_off();
7761 int width2
= width1
+ curwin_col_off2();
7765 if (curwin
->w_virtcol
>= (colnr_T
)width1
&& width2
> 0)
7766 i
= (curwin
->w_virtcol
- width1
) / width2
* width2
+ width1
;
7769 i
= curwin
->w_leftcol
;
7770 /* Go to the middle of the screen line. When 'number' is on and lines
7771 * are wrapping the middle can be more to the left.*/
7772 if (cap
->nchar
== 'm')
7773 i
+= (W_WIDTH(curwin
) - curwin_col_off()
7774 + ((curwin
->w_p_wrap
&& i
> 0)
7775 ? curwin_col_off2() : 0)) / 2;
7776 coladvance((colnr_T
)i
);
7781 while (vim_iswhite(i
) && oneright() == OK
);
7783 curwin
->w_set_curswant
= TRUE
;
7787 /* "g_": to the last non-blank character in the line or <count> lines
7789 cap
->oap
->motion_type
= MCHAR
;
7790 cap
->oap
->inclusive
= TRUE
;
7791 curwin
->w_curswant
= MAXCOL
;
7792 if (cursor_down((long)(cap
->count1
- 1),
7793 cap
->oap
->op_type
== OP_NOP
) == FAIL
)
7794 clearopbeep(cap
->oap
);
7797 char_u
*ptr
= ml_get_curline();
7799 /* In Visual mode we may end up after the line. */
7800 if (curwin
->w_cursor
.col
> 0 && ptr
[curwin
->w_cursor
.col
] == NUL
)
7801 --curwin
->w_cursor
.col
;
7803 /* Decrease the cursor column until it's on a non-blank. */
7804 while (curwin
->w_cursor
.col
> 0
7805 && vim_iswhite(ptr
[curwin
->w_cursor
.col
]))
7806 --curwin
->w_cursor
.col
;
7807 curwin
->w_set_curswant
= TRUE
;
7815 int col_off
= curwin_col_off();
7817 oap
->motion_type
= MCHAR
;
7818 oap
->inclusive
= TRUE
;
7819 if (curwin
->w_p_wrap
7820 #ifdef FEAT_VERTSPLIT
7821 && curwin
->w_width
!= 0
7825 curwin
->w_curswant
= MAXCOL
; /* so we stay at the end */
7826 if (cap
->count1
== 1)
7828 int width1
= W_WIDTH(curwin
) - col_off
;
7829 int width2
= width1
+ curwin_col_off2();
7833 if (curwin
->w_virtcol
>= (colnr_T
)width1
)
7834 i
+= ((curwin
->w_virtcol
- width1
) / width2
+ 1)
7836 coladvance((colnr_T
)i
);
7837 #if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
7838 if (curwin
->w_cursor
.col
> 0 && curwin
->w_p_wrap
)
7841 * Check for landing on a character that got split at
7842 * the end of the line. We do not want to advance to
7843 * the next screen line.
7846 if (curwin
->w_virtcol
> (colnr_T
)i
)
7847 --curwin
->w_cursor
.col
;
7851 else if (nv_screengo(oap
, FORWARD
, cap
->count1
- 1) == FAIL
)
7856 i
= curwin
->w_leftcol
+ W_WIDTH(curwin
) - col_off
- 1;
7857 coladvance((colnr_T
)i
);
7859 /* Make sure we stick in this column. */
7861 curwin
->w_curswant
= curwin
->w_virtcol
;
7862 curwin
->w_set_curswant
= FALSE
;
7868 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
7873 case POUND
: /* pound sign (sometimes equal to '#') */
7875 case Ctrl_RSB
: /* :tag or :tselect for current identifier */
7876 case ']': /* :tselect for current identifier */
7881 * ge and gE: go back to end of word
7885 oap
->motion_type
= MCHAR
;
7886 curwin
->w_set_curswant
= TRUE
;
7887 oap
->inclusive
= TRUE
;
7888 if (bckend_word(cap
->count1
, cap
->nchar
== 'E', FALSE
) == FAIL
)
7893 * "g CTRL-G": display info about cursor position
7900 * "gi": start Insert at the last position.
7903 if (curbuf
->b_last_insert
.lnum
!= 0)
7905 curwin
->w_cursor
= curbuf
->b_last_insert
;
7906 check_cursor_lnum();
7907 i
= (int)STRLEN(ml_get_curline());
7908 if (curwin
->w_cursor
.col
> (colnr_T
)i
)
7910 #ifdef FEAT_VIRTUALEDIT
7911 if (virtual_active())
7912 curwin
->w_cursor
.coladd
+= curwin
->w_cursor
.col
- i
;
7914 curwin
->w_cursor
.col
= i
;
7922 * "gI": Start insert in column 1.
7926 if (!checkclearopq(oap
))
7927 invoke_edit(cap
, FALSE
, 'g', FALSE
);
7930 #ifdef FEAT_SEARCHPATH
7932 * "gf": goto file, edit file under cursor
7933 * "]f" and "[f": can also be used.
7941 /* "g'm" and "g`m": jump to mark without setting pcmark */
7953 do_sleep(cap
->count1
* 1000L);
7957 * "ga": Display the ascii value of the character under the
7958 * cursor. It is displayed in decimal, hex, and octal. -- webb
7966 * "g8": Display the bytes used for the UTF-8 character under the
7967 * cursor. It is displayed in hex.
7968 * "8g8" finds illegal byte sequence.
7971 if (cap
->count0
== 8)
7983 * "gg": Goto the first line in file. With a count it goes to
7984 * that line number like for "G". -- webb
7992 * Two-character operators:
7994 * "gw" Format text and keep cursor position
7995 * "g~" Toggle the case of the text.
7996 * "gu" Change text to lower case.
7997 * "gU" Change text to upper case.
7998 * "g?" rot13 encoding
7999 * "g@" call 'operatorfunc'
8003 oap
->cursor_start
= curwin
->w_cursor
;
8014 * "gd": Find first occurrence of pattern under the cursor in the
8016 * "gD": idem, but in the current file.
8020 nv_gd(oap
, cap
->nchar
, (int)cap
->count0
);
8025 * g<*Mouse> : <C-*mouse>
8029 case K_MIDDLERELEASE
:
8035 case K_RIGHTRELEASE
:
8042 mod_mask
= MOD_MASK_CTRL
;
8043 (void)do_mouse(oap
, cap
->nchar
, BACKWARD
, cap
->count1
, 0);
8051 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
8059 /* "go": goto byte count from start of buffer */
8061 goto_byte(cap
->count0
);
8065 /* "gQ": improved Ex mode */
8069 clearopbeep(cap
->oap
);
8074 if (!checkclearopq(oap
))
8078 #ifdef FEAT_JUMPLIST
8084 cap
->count1
= -cap
->count1
;
8091 goto_tabpage((int)cap
->count0
);
8094 goto_tabpage(-(int)cap
->count1
);
8099 case '-': /* "g+" and "g-": undo or redo along the timeline */
8100 if (!checkclearopq(oap
))
8101 undo_time(cap
->nchar
== '-' ? -cap
->count1
: cap
->count1
,
8112 * Handle "o" and "O" commands.
8118 if (!checkclearopq(cap
->oap
))
8121 if (cap
->cmdchar
== 'O')
8122 /* Open above the first line of a folded sequence of lines */
8123 (void)hasFolding(curwin
->w_cursor
.lnum
,
8124 &curwin
->w_cursor
.lnum
, NULL
);
8126 /* Open below the last line of a folded sequence of lines */
8127 (void)hasFolding(curwin
->w_cursor
.lnum
,
8128 NULL
, &curwin
->w_cursor
.lnum
);
8130 if (u_save((linenr_T
)(curwin
->w_cursor
.lnum
-
8131 (cap
->cmdchar
== 'O' ? 1 : 0)),
8132 (linenr_T
)(curwin
->w_cursor
.lnum
+
8133 (cap
->cmdchar
== 'o' ? 1 : 0))
8135 && open_line(cap
->cmdchar
== 'O' ? BACKWARD
: FORWARD
,
8136 #ifdef FEAT_COMMENTS
8137 has_format_option(FO_OPEN_COMS
) ? OPENLINE_DO_COM
:
8141 /* When '#' is in 'cpoptions' ignore the count. */
8142 if (vim_strchr(p_cpo
, CPO_HASH
) != NULL
)
8144 invoke_edit(cap
, FALSE
, cap
->cmdchar
, TRUE
);
8150 * "." command: redo last change.
8156 if (!checkclearopq(cap
->oap
))
8159 * If "restart_edit" is TRUE, the last but one command is repeated
8160 * instead of the last command (inserting text). This is used for
8161 * CTRL-O <.> in insert mode.
8163 if (start_redo(cap
->count0
, restart_edit
!= 0 && !arrow_used
) == FAIL
)
8164 clearopbeep(cap
->oap
);
8175 if (!checkclearopq(cap
->oap
))
8177 u_redo((int)cap
->count1
);
8178 curwin
->w_set_curswant
= TRUE
;
8183 * Handle "U" command.
8189 /* In Visual mode and typing "gUU" triggers an operator */
8190 if (cap
->oap
->op_type
== OP_UPPER
8196 /* translate "gUU" to "gUgU" */
8201 else if (!checkclearopq(cap
->oap
))
8204 curwin
->w_set_curswant
= TRUE
;
8209 * '~' command: If tilde is not an operator and Visual is off: swap case of a
8220 && cap
->oap
->op_type
!= OP_TILDE
)
8227 * Handle an operator command.
8228 * The actual work is done by do_pending_operator().
8236 op_type
= get_op_type(cap
->cmdchar
, cap
->nchar
);
8238 if (op_type
== cap
->oap
->op_type
) /* double operator works on lines */
8240 else if (!checkclearop(cap
->oap
))
8242 cap
->oap
->start
= curwin
->w_cursor
;
8243 cap
->oap
->op_type
= op_type
;
8245 set_op_var(op_type
);
8252 * Set v:operator to the characters for "optype".
8260 if (optype
== OP_NOP
)
8261 set_vim_var_string(VV_OP
, NULL
, 0);
8264 opchars
[0] = get_op_char(optype
);
8265 opchars
[1] = get_extra_op_char(optype
);
8267 set_vim_var_string(VV_OP
, opchars
, -1);
8273 * Handle linewise operator "dd", "yy", etc.
8275 * "_" is is a strange motion command that helps make operators more logical.
8276 * It is actually implemented, but not documented in the real Vi. This motion
8277 * command actually refers to "the current line". Commands like "dd" and "yy"
8278 * are really an alternate form of "d_" and "y_". It does accept a count, so
8279 * "d3_" works to delete 3 lines.
8285 cap
->oap
->motion_type
= MLINE
;
8286 if (cursor_down(cap
->count1
- 1L, cap
->oap
->op_type
== OP_NOP
) == FAIL
)
8287 clearopbeep(cap
->oap
);
8288 else if ( cap
->oap
->op_type
== OP_DELETE
8289 || cap
->oap
->op_type
== OP_LSHIFT
8290 || cap
->oap
->op_type
== OP_RSHIFT
)
8291 beginline(BL_SOL
| BL_FIX
);
8292 else if (cap
->oap
->op_type
!= OP_YANK
) /* 'Y' does not move cursor */
8293 beginline(BL_WHITE
| BL_FIX
);
8303 /* CTRL-HOME is like "gg" */
8304 if (mod_mask
& MOD_MASK_CTRL
)
8311 ins_at_eol
= FALSE
; /* Don't move cursor past eol (only necessary in a
8312 one-character line). */
8322 cap
->oap
->motion_type
= MCHAR
;
8323 cap
->oap
->inclusive
= FALSE
;
8325 if (cap
->count0
> 0)
8327 coladvance((colnr_T
)(cap
->count0
- 1));
8328 curwin
->w_curswant
= (colnr_T
)(cap
->count0
- 1);
8331 curwin
->w_curswant
= 0;
8332 /* keep curswant at the column where we wanted to go, not where
8333 we ended; differs if line is too short */
8334 curwin
->w_set_curswant
= FALSE
;
8338 * Handle back-word command "b" and "B".
8339 * cap->arg is 1 for "B"
8345 cap
->oap
->motion_type
= MCHAR
;
8346 cap
->oap
->inclusive
= FALSE
;
8347 curwin
->w_set_curswant
= TRUE
;
8348 if (bck_word(cap
->count1
, cap
->arg
, FALSE
) == FAIL
)
8349 clearopbeep(cap
->oap
);
8351 else if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8357 * Handle word motion commands "e", "E", "w" and "W".
8358 * cap->arg is TRUE for "E" and "W".
8369 * Set inclusive for the "E" and "e" command.
8371 if (cap
->cmdchar
== 'e' || cap
->cmdchar
== 'E')
8375 cap
->oap
->inclusive
= word_end
;
8378 * "cw" and "cW" are a special case.
8380 if (!word_end
&& cap
->oap
->op_type
== OP_CHANGE
)
8383 if (n
!= NUL
) /* not an empty line */
8388 * Reproduce a funny Vi behaviour: "cw" on a blank only
8389 * changes one character, not all blanks until the start of
8390 * the next word. Only do this when the 'w' flag is included
8393 if (cap
->count1
== 1 && vim_strchr(p_cpo
, CPO_CW
) != NULL
)
8395 cap
->oap
->inclusive
= TRUE
;
8396 cap
->oap
->motion_type
= MCHAR
;
8403 * This is a little strange. To match what the real Vi does,
8404 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
8405 * that we are not on a space or a TAB. This seems impolite
8406 * at first, but it's really more what we mean when we say
8408 * Another strangeness: When standing on the end of a word
8409 * "ce" will change until the end of the next wordt, but "cw"
8410 * will change only one character! This is done by setting
8413 cap
->oap
->inclusive
= TRUE
;
8420 cap
->oap
->motion_type
= MCHAR
;
8421 curwin
->w_set_curswant
= TRUE
;
8423 n
= end_word(cap
->count1
, cap
->arg
, flag
, FALSE
);
8425 n
= fwd_word(cap
->count1
, cap
->arg
, cap
->oap
->op_type
!= OP_NOP
);
8427 /* Don't leave the cursor on the NUL past the end of line. */
8429 adjust_cursor(cap
->oap
);
8431 if (n
== FAIL
&& cap
->oap
->op_type
== OP_NOP
)
8432 clearopbeep(cap
->oap
);
8436 adjust_for_sel(cap
);
8439 if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8446 * Used after a movement command: If the cursor ends up on the NUL after the
8447 * end of the line, may move it back to the last character and make the motion
8454 /* The cursor cannot remain on the NUL when:
8455 * - the column is > 0
8456 * - not in Visual mode or 'selection' is "o"
8457 * - 'virtualedit' is not "all" and not "onemore".
8459 if (curwin
->w_cursor
.col
> 0 && gchar_cursor() == NUL
8461 && (!VIsual_active
|| *p_sel
== 'o')
8463 #ifdef FEAT_VIRTUALEDIT
8464 && !virtual_active() && (ve_flags
& VE_ONEMORE
) == 0
8468 --curwin
->w_cursor
.col
;
8470 /* prevent cursor from moving on the trail byte */
8474 oap
->inclusive
= TRUE
;
8479 * "0" and "^" commands.
8480 * cap->arg is the argument for beginline().
8486 cap
->oap
->motion_type
= MCHAR
;
8487 cap
->oap
->inclusive
= FALSE
;
8488 beginline(cap
->arg
);
8490 if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8493 ins_at_eol
= FALSE
; /* Don't move cursor past eol (only necessary in a
8494 one-character line). */
8499 * In exclusive Visual mode, may include the last character.
8505 if (VIsual_active
&& cap
->oap
->inclusive
&& *p_sel
== 'e'
8506 && gchar_cursor() != NUL
&& lt(VIsual
, curwin
->w_cursor
))
8513 ++curwin
->w_cursor
.col
;
8514 cap
->oap
->inclusive
= FALSE
;
8519 * Exclude last character at end of Visual area for 'selection' == "exclusive".
8520 * Should check VIsual_mode before calling this.
8521 * Returns TRUE when backed up to the previous line.
8528 if (*p_sel
== 'e' && !equalpos(VIsual
, curwin
->w_cursor
))
8530 if (lt(VIsual
, curwin
->w_cursor
))
8531 pp
= &curwin
->w_cursor
;
8534 #ifdef FEAT_VIRTUALEDIT
8546 else if (pp
->lnum
> 1)
8549 pp
->col
= (colnr_T
)STRLEN(ml_get(pp
->lnum
));
8557 * SELECT key in Normal or Visual mode: end of Select mode mapping.
8564 VIsual_select
= TRUE
;
8565 else if (VIsual_reselect
)
8567 cap
->nchar
= 'v'; /* fake "gv" command */
8576 * "G", "gg", CTRL-END, CTRL-HOME.
8577 * cap->arg is TRUE for "G".
8586 lnum
= curbuf
->b_ml
.ml_line_count
;
8589 cap
->oap
->motion_type
= MLINE
;
8592 /* When a count is given, use it instead of the default lnum */
8593 if (cap
->count0
!= 0)
8597 else if (lnum
> curbuf
->b_ml
.ml_line_count
)
8598 lnum
= curbuf
->b_ml
.ml_line_count
;
8599 curwin
->w_cursor
.lnum
= lnum
;
8600 beginline(BL_SOL
| BL_FIX
);
8602 if ((fdo_flags
& FDO_JUMP
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8608 * CTRL-\ in Normal mode.
8614 if (cap
->nchar
== Ctrl_N
|| cap
->nchar
== Ctrl_G
)
8617 if (restart_edit
!= 0 && mode_displayed
)
8618 clear_cmdline
= TRUE
; /* unshow mode later */
8621 if (cmdwin_type
!= 0)
8622 cmdwin_result
= Ctrl_C
;
8627 end_visual_mode(); /* stop Visual */
8628 redraw_curbuf_later(INVERTED
);
8631 /* CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. */
8632 if (cap
->nchar
== Ctrl_G
&& p_im
)
8636 clearopbeep(cap
->oap
);
8640 * ESC in Normal mode: beep, but don't flush buffers.
8641 * Don't even beep if we are canceling a command.
8649 no_reason
= (cap
->oap
->op_type
== OP_NOP
8650 && cap
->opcount
== 0
8652 && cap
->oap
->regname
== 0
8655 if (cap
->arg
) /* TRUE for CTRL-C */
8657 if (restart_edit
== 0
8665 MSG(_("Type :quit<Enter> to exit Vim"));
8667 /* Don't reset "restart_edit" when 'insertmode' is set, it won't be
8668 * set again below when halfway a mapping. */
8672 if (cmdwin_type
!= 0)
8674 cmdwin_result
= K_IGNORE
;
8675 got_int
= FALSE
; /* don't stop executing autocommands et al. */
8684 end_visual_mode(); /* stop Visual */
8685 check_cursor_col(); /* make sure cursor is not beyond EOL */
8686 curwin
->w_set_curswant
= TRUE
;
8687 redraw_curbuf_later(INVERTED
);
8695 /* A CTRL-C is often used at the start of a menu. When 'insertmode' is
8696 * set return to Insert mode afterwards. */
8697 if (restart_edit
== 0 && goto_im()
8698 #ifdef FEAT_EX_EXTRA
8699 && ex_normal_busy
== 0
8706 * Handle "A", "a", "I", "i" and <Insert> commands.
8712 /* <Insert> is equal to "i" */
8713 if (cap
->cmdchar
== K_INS
|| cap
->cmdchar
== K_KINS
)
8717 /* in Visual mode "A" and "I" are an operator */
8718 if (VIsual_active
&& (cap
->cmdchar
== 'A' || cap
->cmdchar
== 'I'))
8721 /* in Visual mode and after an operator "a" and "i" are for text objects */
8724 if ((cap
->cmdchar
== 'a' || cap
->cmdchar
== 'i')
8725 && (cap
->oap
->op_type
!= OP_NOP
8734 clearopbeep(cap
->oap
);
8737 else if (!curbuf
->b_p_ma
&& !p_im
)
8739 /* Only give this error when 'insertmode' is off. */
8740 EMSG(_(e_modifiable
));
8743 else if (!checkclearopq(cap
->oap
))
8745 switch (cap
->cmdchar
)
8747 case 'A': /* "A"ppend after the line */
8748 curwin
->w_set_curswant
= TRUE
;
8749 #ifdef FEAT_VIRTUALEDIT
8750 if (ve_flags
== VE_ALL
)
8752 int save_State
= State
;
8754 /* Pretent Insert mode here to allow the cursor on the
8755 * character past the end of the line */
8757 coladvance((colnr_T
)MAXCOL
);
8762 curwin
->w_cursor
.col
+= (colnr_T
)STRLEN(ml_get_cursor());
8765 case 'I': /* "I"nsert before the first non-blank */
8766 if (vim_strchr(p_cpo
, CPO_INSEND
) == NULL
)
8767 beginline(BL_WHITE
);
8769 beginline(BL_WHITE
|BL_FIX
);
8772 case 'a': /* "a"ppend is like "i"nsert on the next character. */
8773 #ifdef FEAT_VIRTUALEDIT
8774 /* increment coladd when in virtual space, increment the
8775 * column otherwise, also to append after an unprintable char */
8776 if (virtual_active()
8777 && (curwin
->w_cursor
.coladd
> 0
8778 || *ml_get_cursor() == NUL
8779 || *ml_get_cursor() == TAB
))
8780 curwin
->w_cursor
.coladd
++;
8783 if (*ml_get_cursor() != NUL
)
8788 #ifdef FEAT_VIRTUALEDIT
8789 if (curwin
->w_cursor
.coladd
&& cap
->cmdchar
!= 'A')
8791 int save_State
= State
;
8793 /* Pretent Insert mode here to allow the cursor on the
8794 * character past the end of the line */
8796 coladvance(getviscol());
8801 invoke_edit(cap
, FALSE
, cap
->cmdchar
, FALSE
);
8806 * Invoke edit() and take care of "restart_edit" and the return value.
8809 invoke_edit(cap
, repl
, cmd
, startln
)
8811 int repl
; /* "r" or "gr" command */
8815 int restart_edit_save
= 0;
8817 /* Complicated: When the user types "a<C-O>a" we don't want to do Insert
8818 * mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
8820 if (repl
|| !stuff_empty())
8821 restart_edit_save
= restart_edit
;
8823 restart_edit_save
= 0;
8825 /* Always reset "restart_edit", this is not a restarted edit. */
8828 if (edit(cmd
, startln
, cap
->count1
))
8829 cap
->retval
|= CA_COMMAND_BUSY
;
8831 if (restart_edit
== 0)
8832 restart_edit
= restart_edit_save
;
8837 * "a" or "i" while an operator is pending or in Visual mode: object motion.
8847 if (cap
->cmdchar
== 'i')
8848 include
= FALSE
; /* "ix" = inner object: exclude white space */
8850 include
= TRUE
; /* "ax" = an object: include white space */
8852 /* Make sure (), [], {} and <> are in 'matchpairs' */
8853 mps_save
= curbuf
->b_p_mps
;
8854 curbuf
->b_p_mps
= (char_u
*)"(:),{:},[:],<:>";
8858 case 'w': /* "aw" = a word */
8859 flag
= current_word(cap
->oap
, cap
->count1
, include
, FALSE
);
8861 case 'W': /* "aW" = a WORD */
8862 flag
= current_word(cap
->oap
, cap
->count1
, include
, TRUE
);
8864 case 'b': /* "ab" = a braces block */
8867 flag
= current_block(cap
->oap
, cap
->count1
, include
, '(', ')');
8869 case 'B': /* "aB" = a Brackets block */
8872 flag
= current_block(cap
->oap
, cap
->count1
, include
, '{', '}');
8874 case '[': /* "a[" = a [] block */
8876 flag
= current_block(cap
->oap
, cap
->count1
, include
, '[', ']');
8878 case '<': /* "a<" = a <> block */
8880 flag
= current_block(cap
->oap
, cap
->count1
, include
, '<', '>');
8882 case 't': /* "at" = a tag block (xml and html) */
8883 flag
= current_tagblock(cap
->oap
, cap
->count1
, include
);
8885 case 'p': /* "ap" = a paragraph */
8886 flag
= current_par(cap
->oap
, cap
->count1
, include
, 'p');
8888 case 's': /* "as" = a sentence */
8889 flag
= current_sent(cap
->oap
, cap
->count1
, include
);
8891 case '"': /* "a"" = a double quoted string */
8892 case '\'': /* "a'" = a single quoted string */
8893 case '`': /* "a`" = a backtick quoted string */
8894 flag
= current_quote(cap
->oap
, cap
->count1
, include
,
8898 case 'S': /* "aS" = a section */
8899 case 'f': /* "af" = a filename */
8900 case 'u': /* "au" = a URL */
8907 curbuf
->b_p_mps
= mps_save
;
8909 clearopbeep(cap
->oap
);
8910 adjust_cursor_col();
8911 curwin
->w_set_curswant
= TRUE
;
8916 * "q" command: Start/stop recording.
8917 * "q:", "q/", "q?": edit command-line in command-line window.
8923 if (cap
->oap
->op_type
== OP_FORMAT
)
8925 /* "gqq" is the same as "gqgq": format line */
8930 else if (!checkclearop(cap
->oap
))
8933 if (cap
->nchar
== ':' || cap
->nchar
== '/' || cap
->nchar
== '?')
8935 stuffcharReadbuff(cap
->nchar
);
8936 stuffcharReadbuff(K_CMDWIN
);
8940 /* (stop) recording into a named register, unless executing a
8942 if (!Exec_reg
&& do_record(cap
->nchar
) == FAIL
)
8943 clearopbeep(cap
->oap
);
8948 * Handle the "@r" command.
8954 if (checkclearop(cap
->oap
))
8957 if (cap
->nchar
== '=')
8959 if (get_expr_register() == NUL
)
8963 while (cap
->count1
-- && !got_int
)
8965 if (do_execreg(cap
->nchar
, FALSE
, FALSE
, FALSE
) == FAIL
)
8967 clearopbeep(cap
->oap
);
8975 * Handle the CTRL-U and CTRL-D commands.
8981 if ((cap
->cmdchar
== Ctrl_U
&& curwin
->w_cursor
.lnum
== 1)
8982 || (cap
->cmdchar
== Ctrl_D
8983 && curwin
->w_cursor
.lnum
== curbuf
->b_ml
.ml_line_count
))
8984 clearopbeep(cap
->oap
);
8985 else if (!checkclearop(cap
->oap
))
8986 halfpage(cap
->cmdchar
== Ctrl_D
, cap
->count0
);
8990 * Handle "J" or "gJ" command.
8997 if (VIsual_active
) /* join the visual lines */
9001 if (!checkclearop(cap
->oap
))
9003 if (cap
->count0
<= 1)
9004 cap
->count0
= 2; /* default for join is two lines! */
9005 if (curwin
->w_cursor
.lnum
+ cap
->count0
- 1 >
9006 curbuf
->b_ml
.ml_line_count
)
9007 clearopbeep(cap
->oap
); /* beyond last line */
9010 prep_redo(cap
->oap
->regname
, cap
->count0
,
9011 NUL
, cap
->cmdchar
, NUL
, NUL
, cap
->nchar
);
9012 do_do_join(cap
->count0
, cap
->nchar
== NUL
);
9018 * "P", "gP", "p" and "gp" commands.
9026 void *reg1
= NULL
, *reg2
= NULL
;
9028 int was_visual
= FALSE
;
9033 if (cap
->oap
->op_type
!= OP_NOP
)
9036 /* "dp" is ":diffput" */
9037 if (cap
->oap
->op_type
== OP_DELETE
&& cap
->cmdchar
== 'p')
9040 nv_diffgetput(TRUE
);
9044 clearopbeep(cap
->oap
);
9048 dir
= (cap
->cmdchar
== 'P'
9049 || (cap
->cmdchar
== 'g' && cap
->nchar
== 'P'))
9050 ? BACKWARD
: FORWARD
;
9052 if (cap
->cmdchar
== 'g')
9053 flags
|= PUT_CURSEND
;
9058 /* Putting in Visual mode: The put text replaces the selected
9059 * text. First delete the selected text, then put the new text.
9060 * Need to save and restore the registers that the delete
9061 * overwrites if the old contents is being put.
9064 regname
= cap
->oap
->regname
;
9065 # ifdef FEAT_CLIPBOARD
9066 adjust_clip_reg(®name
);
9068 if (regname
== 0 || VIM_ISDIGIT(regname
)
9069 # ifdef FEAT_CLIPBOARD
9070 || (clip_unnamed
&& (regname
== '*' || regname
== '+'))
9075 /* the delete is going to overwrite the register we want to
9076 * put, save it first. */
9077 reg1
= get_register(regname
, TRUE
);
9080 /* Now delete the selected text. */
9083 cap
->oap
->regname
= NUL
;
9085 do_pending_operator(cap
, 0, FALSE
);
9086 empty
= (curbuf
->b_ml
.ml_flags
& ML_EMPTY
);
9088 /* delete PUT_LINE_BACKWARD; */
9089 cap
->oap
->regname
= regname
;
9093 /* Delete probably changed the register we want to put, save
9094 * it first. Then put back what was there before the delete. */
9095 reg2
= get_register(regname
, FALSE
);
9096 put_register(regname
, reg1
);
9099 /* When deleted a linewise Visual area, put the register as
9100 * lines to avoid it joined with the next line. When deletion was
9101 * characterwise, split a line when putting lines. */
9102 if (VIsual_mode
== 'V')
9104 else if (VIsual_mode
== 'v')
9105 flags
|= PUT_LINE_SPLIT
;
9106 if (VIsual_mode
== Ctrl_V
&& dir
== FORWARD
)
9107 flags
|= PUT_LINE_FORWARD
;
9109 if ((VIsual_mode
!= 'V'
9110 && curwin
->w_cursor
.col
< curbuf
->b_op_start
.col
)
9111 || (VIsual_mode
== 'V'
9112 && curwin
->w_cursor
.lnum
< curbuf
->b_op_start
.lnum
))
9113 /* cursor is at the end of the line or end of file, put
9118 do_put(cap
->oap
->regname
, dir
, cap
->count1
, flags
);
9121 /* If a register was saved, put it back now. */
9123 put_register(regname
, reg2
);
9125 /* What to reselect with "gv"? Selecting the just put text seems to
9126 * be the most useful, since the original text was removed. */
9129 curbuf
->b_visual
.vi_start
= curbuf
->b_op_start
;
9130 curbuf
->b_visual
.vi_end
= curbuf
->b_op_end
;
9133 /* When all lines were selected and deleted do_put() leaves an empty
9134 * line that needs to be deleted now. */
9135 if (empty
&& *ml_get(curbuf
->b_ml
.ml_line_count
) == NUL
)
9137 ml_delete(curbuf
->b_ml
.ml_line_count
, TRUE
);
9139 /* If the cursor was in that line, move it to the end of the last
9141 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
9143 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
9144 coladvance((colnr_T
)MAXCOL
);
9148 auto_format(FALSE
, TRUE
);
9153 * "o" and "O" commands.
9160 /* "do" is ":diffget" */
9161 if (cap
->oap
->op_type
== OP_DELETE
&& cap
->cmdchar
== 'o')
9164 nv_diffgetput(FALSE
);
9169 if (VIsual_active
) /* switch start and end of visual */
9170 v_swap_corners(cap
->cmdchar
);
9182 ProcessSniffRequests();
9186 #ifdef FEAT_NETBEANS_INTG
9191 netbeans_keycommand(cap
->nchar
);
9201 do_put('~', BACKWARD
, 1L, PUT_CURSEND
);
9207 * Trigger CursorHold event.
9208 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
9209 * input buffer. "did_cursorhold" is set to avoid retriggering.
9216 apply_autocmds(EVENT_CURSORHOLD
, NULL
, NULL
, FALSE
, curbuf
);
9217 did_cursorhold
= TRUE
;
9218 cap
->retval
|= CA_COMMAND_BUSY
; /* don't call edit() now */