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 # if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4430 win_T
*old_curwin
= curwin
;
4432 /* Currently we only get the mouse coordinates in the GUI. */
4433 if (gui
.in_use
&& mouse_row
>= 0 && mouse_col
>= 0)
4440 /* find the window at the pointer coordinates */
4441 curwin
= mouse_find_win(&row
, &col
);
4442 curbuf
= curwin
->w_buffer
;
4446 if (mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
))
4448 (void)onepage(cap
->arg
? FORWARD
: BACKWARD
, 1L);
4454 nv_scroll_line(cap
);
4457 # if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4458 curwin
->w_redr_status
= TRUE
;
4460 curwin
= old_curwin
;
4461 curbuf
= curwin
->w_buffer
;
4466 * Mouse clicks and drags.
4472 (void)do_mouse(cap
->oap
, cap
->cmdchar
, BACKWARD
, cap
->count1
, 0);
4477 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
4478 * cap->arg must be TRUE for CTRL-E.
4484 if (!checkclearop(cap
->oap
))
4485 scroll_redraw(cap
->arg
, cap
->count1
);
4489 * Scroll "count" lines up or down, and redraw.
4492 scroll_redraw(up
, count
)
4496 linenr_T prev_topline
= curwin
->w_topline
;
4498 int prev_topfill
= curwin
->w_topfill
;
4500 linenr_T prev_lnum
= curwin
->w_cursor
.lnum
;
4503 scrollup(count
, TRUE
);
4505 scrolldown(count
, TRUE
);
4508 /* Adjust the cursor position for 'scrolloff'. Mark w_topline as
4509 * valid, otherwise the screen jumps back at the end of the file. */
4511 check_cursor_moved(curwin
);
4512 curwin
->w_valid
|= VALID_TOPLINE
;
4514 /* If moved back to where we were, at least move the cursor, otherwise
4515 * we get stuck at one position. Don't move the cursor up if the
4516 * first line of the buffer is already on the screen */
4517 while (curwin
->w_topline
== prev_topline
4519 && curwin
->w_topfill
== prev_topfill
4525 if (curwin
->w_cursor
.lnum
> prev_lnum
4526 || cursor_down(1L, FALSE
) == FAIL
)
4531 if (curwin
->w_cursor
.lnum
< prev_lnum
4532 || prev_topline
== 1L
4533 || cursor_up(1L, FALSE
) == FAIL
)
4536 /* Mark w_topline as valid, otherwise the screen jumps back at the
4537 * end of the file. */
4538 check_cursor_moved(curwin
);
4539 curwin
->w_valid
|= VALID_TOPLINE
;
4542 if (curwin
->w_cursor
.lnum
!= prev_lnum
)
4543 coladvance(curwin
->w_curswant
);
4544 redraw_later(VALID
);
4548 * Commands that start with "z".
4556 int nchar
= cap
->nchar
;
4558 long old_fdl
= curwin
->w_p_fdl
;
4559 int old_fen
= curwin
->w_p_fen
;
4565 if (VIM_ISDIGIT(nchar
))
4568 * "z123{nchar}": edit the count before obtaining {nchar}
4570 if (checkclearop(cap
->oap
))
4575 #ifdef USE_ON_FLY_SCROLL
4576 dont_scroll
= TRUE
; /* disallow scrolling here */
4579 ++allow_keys
; /* no mapping for nchar, but allow key codes */
4580 nchar
= plain_vgetc();
4582 LANGMAP_ADJUST(nchar
, TRUE
);
4586 #ifdef FEAT_CMDL_INFO
4587 (void)add_to_showcmd(nchar
);
4589 if (nchar
== K_DEL
|| nchar
== K_KDEL
)
4591 else if (VIM_ISDIGIT(nchar
))
4592 n
= n
* 10 + (nchar
- '0');
4593 else if (nchar
== CAR
)
4596 need_mouse_correct
= TRUE
;
4598 win_setheight((int)n
);
4601 else if (nchar
== 'l'
4604 || nchar
== K_RIGHT
)
4606 cap
->count1
= n
? n
* cap
->count1
: cap
->count1
;
4611 clearopbeep(cap
->oap
);
4615 cap
->oap
->op_type
= OP_NOP
;
4622 /* "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
4623 * and "zC" only in Visual mode. "zj" and "zk" are motion
4625 cap
->nchar
!= 'f' && cap
->nchar
!= 'F'
4626 && !(VIsual_active
&& vim_strchr((char_u
*)"dcCoO", cap
->nchar
))
4627 && cap
->nchar
!= 'j' && cap
->nchar
!= 'k'
4630 checkclearop(cap
->oap
))
4634 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
4635 * If line number given, set cursor.
4637 if ((vim_strchr((char_u
*)"+\r\nt.z^-b", nchar
) != NULL
)
4639 && cap
->count0
!= curwin
->w_cursor
.lnum
)
4642 if (cap
->count0
> curbuf
->b_ml
.ml_line_count
)
4643 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
4645 curwin
->w_cursor
.lnum
= cap
->count0
;
4651 /* "z+", "z<CR>" and "zt": put cursor at top of screen */
4653 if (cap
->count0
== 0)
4655 /* No count given: put cursor at the line below screen */
4656 validate_botline(); /* make sure w_botline is valid */
4657 if (curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
)
4658 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
4660 curwin
->w_cursor
.lnum
= curwin
->w_botline
;
4666 beginline(BL_WHITE
| BL_FIX
);
4669 case 't': scroll_cursor_top(0, TRUE
);
4670 redraw_later(VALID
);
4673 /* "z." and "zz": put cursor in middle of screen */
4674 case '.': beginline(BL_WHITE
| BL_FIX
);
4677 case 'z': scroll_cursor_halfway(TRUE
);
4678 redraw_later(VALID
);
4681 /* "z^", "z-" and "zb": put cursor at bottom of screen */
4682 case '^': /* Strange Vi behavior: <count>z^ finds line at top of window
4683 * when <count> is at bottom of window, and puts that one at
4684 * bottom of window. */
4685 if (cap
->count0
!= 0)
4687 scroll_cursor_bot(0, TRUE
);
4688 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
4690 else if (curwin
->w_topline
== 1)
4691 curwin
->w_cursor
.lnum
= 1;
4693 curwin
->w_cursor
.lnum
= curwin
->w_topline
- 1;
4696 beginline(BL_WHITE
| BL_FIX
);
4699 case 'b': scroll_cursor_bot(0, TRUE
);
4700 redraw_later(VALID
);
4703 /* "zH" - scroll screen right half-page */
4705 cap
->count1
*= W_WIDTH(curwin
) / 2;
4708 /* "zh" - scroll screen to the right */
4711 if (!curwin
->w_p_wrap
)
4713 if ((colnr_T
)cap
->count1
> curwin
->w_leftcol
)
4714 curwin
->w_leftcol
= 0;
4716 curwin
->w_leftcol
-= (colnr_T
)cap
->count1
;
4721 /* "zL" - scroll screen left half-page */
4722 case 'L': cap
->count1
*= W_WIDTH(curwin
) / 2;
4725 /* "zl" - scroll screen to the left */
4728 if (!curwin
->w_p_wrap
)
4730 /* scroll the window left */
4731 curwin
->w_leftcol
+= (colnr_T
)cap
->count1
;
4736 /* "zs" - scroll screen, cursor at the start */
4737 case 's': if (!curwin
->w_p_wrap
)
4740 if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4741 col
= 0; /* like the cursor is in col 0 */
4744 getvcol(curwin
, &curwin
->w_cursor
, &col
, NULL
, NULL
);
4745 if ((long)col
> p_siso
)
4749 if (curwin
->w_leftcol
!= col
)
4751 curwin
->w_leftcol
= col
;
4752 redraw_later(NOT_VALID
);
4757 /* "ze" - scroll screen, cursor at the end */
4758 case 'e': if (!curwin
->w_p_wrap
)
4761 if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4762 col
= 0; /* like the cursor is in col 0 */
4765 getvcol(curwin
, &curwin
->w_cursor
, NULL
, NULL
, &col
);
4766 n
= W_WIDTH(curwin
) - curwin_col_off();
4767 if ((long)col
+ p_siso
< n
)
4770 col
= col
+ p_siso
- n
+ 1;
4771 if (curwin
->w_leftcol
!= col
)
4773 curwin
->w_leftcol
= col
;
4774 redraw_later(NOT_VALID
);
4780 /* "zF": create fold command */
4781 /* "zf": create fold operator */
4783 case 'f': if (foldManualAllowed(TRUE
))
4787 curwin
->w_p_fen
= TRUE
;
4789 /* "zF" is like "zfzf" */
4790 if (nchar
== 'F' && cap
->oap
->op_type
== OP_FOLD
)
4797 clearopbeep(cap
->oap
);
4800 /* "zd": delete fold at cursor */
4801 /* "zD": delete fold at cursor recursively */
4803 case 'D': if (foldManualAllowed(FALSE
))
4808 deleteFold(curwin
->w_cursor
.lnum
,
4809 curwin
->w_cursor
.lnum
, nchar
== 'D', FALSE
);
4813 /* "zE": erease all folds */
4814 case 'E': if (foldmethodIsManual(curwin
))
4816 clearFolding(curwin
);
4817 changed_window_setting();
4819 else if (foldmethodIsMarker(curwin
))
4820 deleteFold((linenr_T
)1, curbuf
->b_ml
.ml_line_count
,
4823 EMSG(_("E352: Cannot erase folds with current 'foldmethod'"));
4826 /* "zn": fold none: reset 'foldenable' */
4827 case 'n': curwin
->w_p_fen
= FALSE
;
4830 /* "zN": fold Normal: set 'foldenable' */
4831 case 'N': curwin
->w_p_fen
= TRUE
;
4834 /* "zi": invert folding: toggle 'foldenable' */
4835 case 'i': curwin
->w_p_fen
= !curwin
->w_p_fen
;
4838 /* "za": open closed fold or close open fold at cursor */
4839 case 'a': if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4840 openFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4843 closeFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4844 curwin
->w_p_fen
= TRUE
;
4848 /* "zA": open fold at cursor recursively */
4849 case 'A': if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4850 openFoldRecurse(curwin
->w_cursor
.lnum
);
4853 closeFoldRecurse(curwin
->w_cursor
.lnum
);
4854 curwin
->w_p_fen
= TRUE
;
4858 /* "zo": open fold at cursor or Visual area */
4859 case 'o': if (VIsual_active
)
4862 openFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4865 /* "zO": open fold recursively */
4866 case 'O': if (VIsual_active
)
4869 openFoldRecurse(curwin
->w_cursor
.lnum
);
4872 /* "zc": close fold at cursor or Visual area */
4873 case 'c': if (VIsual_active
)
4876 closeFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4877 curwin
->w_p_fen
= TRUE
;
4880 /* "zC": close fold recursively */
4881 case 'C': if (VIsual_active
)
4884 closeFoldRecurse(curwin
->w_cursor
.lnum
);
4885 curwin
->w_p_fen
= TRUE
;
4888 /* "zv": open folds at the cursor */
4889 case 'v': foldOpenCursor();
4892 /* "zx": re-apply 'foldlevel' and open folds at the cursor */
4893 case 'x': curwin
->w_p_fen
= TRUE
;
4894 newFoldLevel(); /* update right now */
4898 /* "zX": undo manual opens/closes, re-apply 'foldlevel' */
4899 case 'X': curwin
->w_p_fen
= TRUE
;
4900 old_fdl
= -1; /* force an update */
4903 /* "zm": fold more */
4904 case 'm': if (curwin
->w_p_fdl
> 0)
4906 old_fdl
= -1; /* force an update */
4907 curwin
->w_p_fen
= TRUE
;
4910 /* "zM": close all folds */
4911 case 'M': curwin
->w_p_fdl
= 0;
4912 old_fdl
= -1; /* force an update */
4913 curwin
->w_p_fen
= TRUE
;
4916 /* "zr": reduce folding */
4917 case 'r': ++curwin
->w_p_fdl
;
4920 /* "zR": open all folds */
4921 case 'R': curwin
->w_p_fdl
= getDeepestNesting();
4922 old_fdl
= -1; /* force an update */
4925 case 'j': /* "zj" move to next fold downwards */
4926 case 'k': /* "zk" move to next fold upwards */
4927 if (foldMoveTo(TRUE
, nchar
== 'j' ? FORWARD
: BACKWARD
,
4928 cap
->count1
) == FAIL
)
4929 clearopbeep(cap
->oap
);
4932 #endif /* FEAT_FOLDING */
4935 case 'u': /* "zug" and "zuw": undo "zg" and "zw" */
4937 ++allow_keys
; /* no mapping for nchar, but allow key codes */
4938 nchar
= plain_vgetc();
4940 LANGMAP_ADJUST(nchar
, TRUE
);
4944 #ifdef FEAT_CMDL_INFO
4945 (void)add_to_showcmd(nchar
);
4947 if (vim_strchr((char_u
*)"gGwW", nchar
) == NULL
)
4949 clearopbeep(cap
->oap
);
4955 case 'g': /* "zg": add good word to word list */
4956 case 'w': /* "zw": add wrong word to word list */
4957 case 'G': /* "zG": add good word to temp word list */
4958 case 'W': /* "zW": add wrong word to temp word list */
4963 if (checkclearop(cap
->oap
))
4966 if (VIsual_active
&& get_visual_text(cap
, &ptr
, &len
)
4972 pos_T pos
= curwin
->w_cursor
;
4974 /* Find bad word under the cursor. */
4975 len
= spell_move_to(curwin
, FORWARD
, TRUE
, TRUE
, NULL
);
4976 if (len
!= 0 && curwin
->w_cursor
.col
<= pos
.col
)
4977 ptr
= ml_get_pos(&curwin
->w_cursor
);
4978 curwin
->w_cursor
= pos
;
4981 if (ptr
== NULL
&& (len
= find_ident_under_cursor(&ptr
,
4984 spell_add_word(ptr
, len
, nchar
== 'w' || nchar
== 'W',
4985 (nchar
== 'G' || nchar
== 'W')
4986 ? 0 : (int)cap
->count1
,
4991 case '=': /* "z=": suggestions for a badly spelled word */
4992 if (!checkclearop(cap
->oap
))
4993 spell_suggest((int)cap
->count0
);
4997 default: clearopbeep(cap
->oap
);
5001 /* Redraw when 'foldenable' changed */
5002 if (old_fen
!= curwin
->w_p_fen
)
5007 if (foldmethodIsDiff(curwin
) && curwin
->w_p_scb
)
5009 /* Adjust 'foldenable' in diff-synced windows. */
5012 if (wp
!= curwin
&& foldmethodIsDiff(wp
) && wp
->w_p_scb
)
5014 wp
->w_p_fen
= curwin
->w_p_fen
;
5015 changed_window_setting_win(wp
);
5020 changed_window_setting();
5023 /* Redraw when 'foldlevel' changed. */
5024 if (old_fdl
!= curwin
->w_p_fdl
)
5031 * Vertical scrollbar movement.
5034 nv_ver_scrollbar(cap
)
5037 if (cap
->oap
->op_type
!= OP_NOP
)
5038 clearopbeep(cap
->oap
);
5040 /* Even if an operator was pending, we still want to scroll */
5045 * Horizontal scrollbar movement.
5048 nv_hor_scrollbar(cap
)
5051 if (cap
->oap
->op_type
!= OP_NOP
)
5052 clearopbeep(cap
->oap
);
5054 /* Even if an operator was pending, we still want to scroll */
5055 gui_do_horiz_scroll();
5059 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
5067 if (cap
->oap
->op_type
!= OP_NOP
)
5068 clearopbeep(cap
->oap
);
5070 /* Even if an operator was pending, we still want to jump tabs. */
5071 goto_tabpage(current_tab
);
5075 * Selected item in tab line menu.
5081 if (cap
->oap
->op_type
!= OP_NOP
)
5082 clearopbeep(cap
->oap
);
5084 /* Even if an operator was pending, we still want to jump tabs. */
5089 * Handle selecting an item of the GUI tab line menu.
5090 * Used in Normal and Insert mode.
5095 switch (current_tabmenu
)
5097 case TABLINE_MENU_CLOSE
:
5098 if (current_tab
== 0)
5099 do_cmdline_cmd((char_u
*)"tabclose");
5102 vim_snprintf((char *)IObuff
, IOSIZE
, "tabclose %d",
5104 do_cmdline_cmd(IObuff
);
5108 case TABLINE_MENU_NEW
:
5109 vim_snprintf((char *)IObuff
, IOSIZE
, "%dtabnew",
5110 current_tab
> 0 ? current_tab
- 1 : 999);
5111 do_cmdline_cmd(IObuff
);
5114 case TABLINE_MENU_OPEN
:
5115 vim_snprintf((char *)IObuff
, IOSIZE
, "browse %dtabnew",
5116 current_tab
> 0 ? current_tab
- 1 : 999);
5117 do_cmdline_cmd(IObuff
);
5131 * Ignore 'Q' in Visual mode, just give a beep.
5138 if (!checkclearop(cap
->oap
))
5143 * Handle a ":" command.
5157 if (cap
->oap
->op_type
!= OP_NOP
)
5159 /* Using ":" as a movement is characterwise exclusive. */
5160 cap
->oap
->motion_type
= MCHAR
;
5161 cap
->oap
->inclusive
= FALSE
;
5163 else if (cap
->count0
)
5165 /* translate "count:" into ":.,.+(count - 1)" */
5166 stuffcharReadbuff('.');
5167 if (cap
->count0
> 1)
5169 stuffReadbuff((char_u
*)",.+");
5170 stuffnumReadbuff((long)cap
->count0
- 1L);
5174 /* When typing, don't type below an old message */
5180 /* get a command line and execute it */
5181 do_cmdline(NULL
, getexline
, NULL
,
5182 cap
->oap
->op_type
!= OP_NOP
? DOCMD_KEEPLINE
: 0);
5184 /* If 'insertmode' changed, enter or exit Insert mode */
5185 if (p_im
!= old_p_im
)
5193 /* The start of the operator may have become invalid by the Ex
5195 if (cap
->oap
->op_type
!= OP_NOP
5196 && (cap
->oap
->start
.lnum
> curbuf
->b_ml
.ml_line_count
5197 || cap
->oap
->start
.col
>
5198 STRLEN(ml_get(cap
->oap
->start
.lnum
))))
5199 clearopbeep(cap
->oap
);
5204 * Handle CTRL-G command.
5211 if (VIsual_active
) /* toggle Selection/Visual mode */
5213 VIsual_select
= !VIsual_select
;
5218 if (!checkclearop(cap
->oap
))
5219 /* print full name if count given or :cd used */
5220 fileinfo((int)cap
->count0
, FALSE
, TRUE
);
5224 * Handle CTRL-H <Backspace> command.
5231 if (VIsual_active
&& VIsual_select
)
5233 cap
->cmdchar
= 'x'; /* BS key behaves like 'x' in Select mode */
5242 * CTRL-L: clear screen and redraw.
5248 if (!checkclearop(cap
->oap
))
5250 #if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
5252 * Right now, the BeBox doesn't seem to have an easy way to detect
5253 * window resizing, so we cheat and make the user detect it
5254 * manually with CTRL-L instead
5259 /* Clear all syntax states to force resyncing. */
5260 syn_stack_free_all(curbuf
);
5262 redraw_later(CLEAR
);
5267 * CTRL-O: In Select mode: switch to Visual mode for one command.
5268 * Otherwise: Go to older pcmark.
5275 if (VIsual_active
&& VIsual_select
)
5277 VIsual_select
= FALSE
;
5279 restart_VIsual_select
= 2; /* restart Select mode later */
5284 cap
->count1
= -cap
->count1
;
5290 * CTRL-^ command, short for ":e #"
5296 if (!checkclearopq(cap
->oap
))
5297 (void)buflist_getfile((int)cap
->count0
, (linenr_T
)0,
5298 GETF_SETMARK
|GETF_ALT
, FALSE
);
5308 if (!checkclearopq(cap
->oap
))
5312 /* "ZZ": equivalent to ":x". */
5313 case 'Z': do_cmdline_cmd((char_u
*)"x");
5316 /* "ZQ": equivalent to ":q!" (Elvis compatible). */
5317 case 'Q': do_cmdline_cmd((char_u
*)"q!");
5320 default: clearopbeep(cap
->oap
);
5325 #if defined(FEAT_WINDOWS) || defined(PROTO)
5327 * Call nv_ident() as if "c1" was used, with "c2" as next character.
5338 vim_memset(&ca
, 0, sizeof(ca
));
5347 * Handle the commands that use the word under the cursor.
5348 * [g] CTRL-] :ta to current identifier
5349 * [g] 'K' run program for current identifier
5350 * [g] '*' / to current identifier or string
5351 * [g] '#' ? to current identifier or string
5352 * g ']' :tselect for current identifier
5361 char_u
*kp
; /* value of 'keywordprg' */
5362 int kp_help
; /* 'keywordprg' is ":help" */
5363 int n
= 0; /* init for GCC */
5365 int g_cmd
; /* "g" command */
5370 if (cap
->cmdchar
== 'g') /* "g*", "g#", "g]" and "gCTRL-]" */
5372 cmdchar
= cap
->nchar
;
5377 cmdchar
= cap
->cmdchar
;
5381 if (cmdchar
== POUND
) /* the pound sign, '#' for English keyboards */
5385 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
5387 if (cmdchar
== ']' || cmdchar
== Ctrl_RSB
|| cmdchar
== 'K')
5390 if (VIsual_active
&& get_visual_text(cap
, &ptr
, &n
) == FAIL
)
5393 if (checkclearopq(cap
->oap
))
5397 if (ptr
== NULL
&& (n
= find_ident_under_cursor(&ptr
,
5398 (cmdchar
== '*' || cmdchar
== '#')
5399 ? FIND_IDENT
|FIND_STRING
: FIND_IDENT
)) == 0)
5405 /* Allocate buffer to put the command in. Inserting backslashes can
5406 * double the length of the word. p_kp / curbuf->b_p_kp could be added
5407 * and some numbers. */
5408 kp
= (*curbuf
->b_p_kp
== NUL
? p_kp
: curbuf
->b_p_kp
);
5409 kp_help
= (*kp
== NUL
|| STRCMP(kp
, ":he") == 0
5410 || STRCMP(kp
, ":help") == 0);
5411 buf
= alloc((unsigned)(n
* 2 + 30 + STRLEN(kp
)));
5421 * Put cursor at start of word, makes search skip the word
5423 * Call setpcmark() first, so "*``" puts the cursor back where
5427 curwin
->w_cursor
.col
= (colnr_T
) (ptr
- ml_get_curline());
5429 if (!g_cmd
&& vim_iswordp(ptr
))
5431 no_smartcase
= TRUE
; /* don't use 'smartcase' now */
5436 STRCPY(buf
, "he! ");
5439 /* When a count is given, turn it into a range. Is this
5440 * really what we want? */
5441 isman
= (STRCMP(kp
, "man") == 0);
5442 isman_s
= (STRCMP(kp
, "man -s") == 0);
5443 if (cap
->count0
!= 0 && !(isman
|| isman_s
))
5444 sprintf((char *)buf
, ".,.+%ld", cap
->count0
- 1);
5447 if (cap
->count0
== 0 && isman_s
)
5452 if (cap
->count0
!= 0 && (isman
|| isman_s
))
5454 sprintf((char *)buf
+ STRLEN(buf
), "%ld", cap
->count0
);
5463 STRCPY(buf
, "cstag ");
5471 STRCPY(buf
, "he! ");
5475 sprintf((char *)buf
, "%ldta ", cap
->count0
);
5479 * Now grab the chars in the identifier
5482 aux_ptr
= (char_u
*)(p_magic
? "/.*~[^$\\" : "/^$\\");
5483 else if (cmdchar
== '#')
5484 aux_ptr
= (char_u
*)(p_magic
? "/?.*~[^$\\" : "/?^$\\");
5485 else if (cmdchar
== 'K' && !kp_help
)
5486 aux_ptr
= (char_u
*)" \t\\\"|!";
5488 /* Don't escape spaces and Tabs in a tag with a backslash */
5489 aux_ptr
= (char_u
*)"\\|\"";
5491 p
= buf
+ STRLEN(buf
);
5494 /* put a backslash before \ and some others */
5495 if (vim_strchr(aux_ptr
, *ptr
) != NULL
)
5498 /* When current byte is a part of multibyte character, copy all bytes
5499 * of that character. */
5503 int len
= (*mb_ptr2len
)(ptr
) - 1;
5505 for (i
= 0; i
< len
&& n
>= 1; ++i
, --n
)
5514 * Execute the command.
5516 if (cmdchar
== '*' || cmdchar
== '#')
5520 has_mbyte
? vim_iswordp(mb_prevptr(ml_get_curline(), ptr
)) :
5522 vim_iswordc(ptr
[-1])))
5525 /* put pattern in search history */
5526 add_to_history(HIST_SEARCH
, buf
, TRUE
, NUL
);
5528 normal_search(cap
, cmdchar
== '*' ? '/' : '?', buf
, 0);
5531 do_cmdline_cmd(buf
);
5536 #if defined(FEAT_VISUAL) || defined(PROTO)
5538 * Get visually selected text, within one line only.
5539 * Returns FAIL if more than one line selected.
5542 get_visual_text(cap
, pp
, lenp
)
5544 char_u
**pp
; /* return: start of selected text */
5545 int *lenp
; /* return: length of selected text */
5547 if (VIsual_mode
!= 'V')
5549 if (VIsual
.lnum
!= curwin
->w_cursor
.lnum
)
5552 clearopbeep(cap
->oap
);
5555 if (VIsual_mode
== 'V')
5557 *pp
= ml_get_curline();
5558 *lenp
= (int)STRLEN(*pp
);
5562 if (lt(curwin
->w_cursor
, VIsual
))
5564 *pp
= ml_get_pos(&curwin
->w_cursor
);
5565 *lenp
= VIsual
.col
- curwin
->w_cursor
.col
+ 1;
5569 *pp
= ml_get_pos(&VIsual
);
5570 *lenp
= curwin
->w_cursor
.col
- VIsual
.col
+ 1;
5574 /* Correct the length to include the whole last character. */
5575 *lenp
+= (*mb_ptr2len
)(*pp
+ (*lenp
- 1)) - 1;
5578 reset_VIsual_and_resel();
5584 * CTRL-T: backwards in tag stack
5590 if (!checkclearopq(cap
->oap
))
5591 do_tag((char_u
*)"", DT_POP
, (int)cap
->count1
, FALSE
, TRUE
);
5595 * Handle scrolling command 'H', 'L' and 'M'.
5608 cap
->oap
->motion_type
= MLINE
;
5611 if (cap
->cmdchar
== 'L')
5613 validate_botline(); /* make sure curwin->w_botline is valid */
5614 curwin
->w_cursor
.lnum
= curwin
->w_botline
- 1;
5615 if (cap
->count1
- 1 >= curwin
->w_cursor
.lnum
)
5616 curwin
->w_cursor
.lnum
= 1;
5620 if (hasAnyFolding(curwin
))
5622 /* Count a fold for one screen line. */
5623 for (n
= cap
->count1
- 1; n
> 0
5624 && curwin
->w_cursor
.lnum
> curwin
->w_topline
; --n
)
5626 (void)hasFolding(curwin
->w_cursor
.lnum
,
5627 &curwin
->w_cursor
.lnum
, NULL
);
5628 --curwin
->w_cursor
.lnum
;
5633 curwin
->w_cursor
.lnum
-= cap
->count1
- 1;
5638 if (cap
->cmdchar
== 'M')
5641 /* Don't count filler lines above the window. */
5642 used
-= diff_check_fill(curwin
, curwin
->w_topline
)
5643 - curwin
->w_topfill
;
5645 validate_botline(); /* make sure w_empty_rows is valid */
5646 half
= (curwin
->w_height
- curwin
->w_empty_rows
+ 1) / 2;
5647 for (n
= 0; curwin
->w_topline
+ n
< curbuf
->b_ml
.ml_line_count
; ++n
)
5650 /* Count half he number of filler lines to be "below this
5651 * line" and half to be "above the next line". */
5652 if (n
> 0 && used
+ diff_check_fill(curwin
, curwin
->w_topline
5659 used
+= plines(curwin
->w_topline
+ n
);
5663 if (hasFolding(curwin
->w_topline
+ n
, NULL
, &lnum
))
5664 n
= lnum
- curwin
->w_topline
;
5667 if (n
> 0 && used
> curwin
->w_height
)
5670 else /* (cap->cmdchar == 'H') */
5672 n
= cap
->count1
- 1;
5674 if (hasAnyFolding(curwin
))
5676 /* Count a fold for one screen line. */
5677 lnum
= curwin
->w_topline
;
5678 while (n
-- > 0 && lnum
< curwin
->w_botline
- 1)
5680 hasFolding(lnum
, NULL
, &lnum
);
5683 n
= lnum
- curwin
->w_topline
;
5687 curwin
->w_cursor
.lnum
= curwin
->w_topline
+ n
;
5688 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
5689 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
5692 cursor_correct(); /* correct for 'so' */
5693 beginline(BL_SOL
| BL_FIX
);
5697 * Cursor right commands.
5707 # define PAST_LINE 0
5710 if (mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
))
5712 /* <C-Right> and <S-Right> move a word or WORD right */
5713 if (mod_mask
& MOD_MASK_CTRL
)
5719 cap
->oap
->motion_type
= MCHAR
;
5720 cap
->oap
->inclusive
= FALSE
;
5722 PAST_LINE
= (VIsual_active
&& *p_sel
!= 'o');
5724 # ifdef FEAT_VIRTUALEDIT
5726 * In virtual mode, there's no such thing as "PAST_LINE", as lines are
5727 * (theoretically) infinitely long.
5729 if (virtual_active())
5734 for (n
= cap
->count1
; n
> 0; --n
)
5736 if ((!PAST_LINE
&& oneright() == FAIL
)
5737 || (PAST_LINE
&& *ml_get_cursor() == NUL
))
5740 * <Space> wraps to next line if 'whichwrap' has 's'.
5741 * 'l' wraps to next line if 'whichwrap' has 'l'.
5742 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
5744 if ( ((cap
->cmdchar
== ' '
5745 && vim_strchr(p_ww
, 's') != NULL
)
5746 || (cap
->cmdchar
== 'l'
5747 && vim_strchr(p_ww
, 'l') != NULL
)
5748 || (cap
->cmdchar
== K_RIGHT
5749 && vim_strchr(p_ww
, '>') != NULL
))
5750 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
5752 /* When deleting we also count the NL as a character.
5753 * Set cap->oap->inclusive when last char in the line is
5754 * included, move to next line after that */
5755 if ( cap
->oap
->op_type
!= OP_NOP
5756 && !cap
->oap
->inclusive
5757 && !lineempty(curwin
->w_cursor
.lnum
))
5758 cap
->oap
->inclusive
= TRUE
;
5761 ++curwin
->w_cursor
.lnum
;
5762 curwin
->w_cursor
.col
= 0;
5763 #ifdef FEAT_VIRTUALEDIT
5764 curwin
->w_cursor
.coladd
= 0;
5766 curwin
->w_set_curswant
= TRUE
;
5767 cap
->oap
->inclusive
= FALSE
;
5771 if (cap
->oap
->op_type
== OP_NOP
)
5773 /* Only beep and flush if not moved at all */
5774 if (n
== cap
->count1
)
5779 if (!lineempty(curwin
->w_cursor
.lnum
))
5780 cap
->oap
->inclusive
= TRUE
;
5787 curwin
->w_set_curswant
= TRUE
;
5788 # ifdef FEAT_VIRTUALEDIT
5789 if (virtual_active())
5796 curwin
->w_cursor
.col
+=
5797 (*mb_ptr2len
)(ml_get_cursor());
5800 ++curwin
->w_cursor
.col
;
5806 if (n
!= cap
->count1
&& (fdo_flags
& FDO_HOR
) && KeyTyped
5807 && cap
->oap
->op_type
== OP_NOP
)
5813 * Cursor left commands.
5815 * Returns TRUE when operator end should not be adjusted.
5823 if (mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
))
5825 /* <C-Left> and <S-Left> move a word or WORD left */
5826 if (mod_mask
& MOD_MASK_CTRL
)
5832 cap
->oap
->motion_type
= MCHAR
;
5833 cap
->oap
->inclusive
= FALSE
;
5834 for (n
= cap
->count1
; n
> 0; --n
)
5836 if (oneleft() == FAIL
)
5838 /* <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
5839 * 'h' wraps to previous line if 'whichwrap' has 'h'.
5840 * CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
5842 if ( (((cap
->cmdchar
== K_BS
5843 || cap
->cmdchar
== Ctrl_H
)
5844 && vim_strchr(p_ww
, 'b') != NULL
)
5845 || (cap
->cmdchar
== 'h'
5846 && vim_strchr(p_ww
, 'h') != NULL
)
5847 || (cap
->cmdchar
== K_LEFT
5848 && vim_strchr(p_ww
, '<') != NULL
))
5849 && curwin
->w_cursor
.lnum
> 1)
5851 --(curwin
->w_cursor
.lnum
);
5852 coladvance((colnr_T
)MAXCOL
);
5853 curwin
->w_set_curswant
= TRUE
;
5855 /* When the NL before the first char has to be deleted we
5856 * put the cursor on the NUL after the previous line.
5857 * This is a very special case, be careful!
5858 * Don't adjust op_end now, otherwise it won't work. */
5859 if ( (cap
->oap
->op_type
== OP_DELETE
5860 || cap
->oap
->op_type
== OP_CHANGE
)
5861 && !lineempty(curwin
->w_cursor
.lnum
))
5863 if (*ml_get_cursor() != NUL
)
5864 ++curwin
->w_cursor
.col
;
5865 cap
->retval
|= CA_NO_ADJ_OP_END
;
5869 /* Only beep and flush if not moved at all */
5870 else if (cap
->oap
->op_type
== OP_NOP
&& n
== cap
->count1
)
5876 if (n
!= cap
->count1
&& (fdo_flags
& FDO_HOR
) && KeyTyped
5877 && cap
->oap
->op_type
== OP_NOP
)
5883 * Cursor up commands.
5884 * cap->arg is TRUE for "-": Move cursor to first non-blank.
5890 if (mod_mask
& MOD_MASK_SHIFT
)
5892 /* <S-Up> is page up */
5893 cap
->arg
= BACKWARD
;
5898 cap
->oap
->motion_type
= MLINE
;
5899 if (cursor_up(cap
->count1
, cap
->oap
->op_type
== OP_NOP
) == FAIL
)
5900 clearopbeep(cap
->oap
);
5902 beginline(BL_WHITE
| BL_FIX
);
5907 * Cursor down commands.
5908 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
5914 if (mod_mask
& MOD_MASK_SHIFT
)
5916 /* <S-Down> is page down */
5921 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5922 /* In a quickfix window a <CR> jumps to the error under the cursor. */
5923 if (bt_quickfix(curbuf
) && cap
->cmdchar
== CAR
)
5924 if (curwin
->w_llist_ref
== NULL
)
5925 do_cmdline_cmd((char_u
*)".cc"); /* quickfix window */
5927 do_cmdline_cmd((char_u
*)".ll"); /* location list window */
5932 /* In the cmdline window a <CR> executes the command. */
5933 if (cmdwin_type
!= 0 && cap
->cmdchar
== CAR
)
5934 cmdwin_result
= CAR
;
5938 cap
->oap
->motion_type
= MLINE
;
5939 if (cursor_down(cap
->count1
, cap
->oap
->op_type
== OP_NOP
) == FAIL
)
5940 clearopbeep(cap
->oap
);
5942 beginline(BL_WHITE
| BL_FIX
);
5947 #ifdef FEAT_SEARCHPATH
5949 * Grab the file name under the cursor and edit it.
5960 clearopbeep(cap
->oap
);
5965 if (curbuf_locked())
5972 ptr
= grab_file_name(cap
->count1
, &lnum
);
5976 /* do autowrite if necessary */
5977 if (curbufIsChanged() && curbuf
->b_nwindows
<= 1 && !P_HID(curbuf
))
5978 autowrite(curbuf
, FALSE
);
5980 (void)do_ecmd(0, ptr
, NULL
, NULL
, ECMD_LAST
,
5981 P_HID(curbuf
) ? ECMD_HIDE
: 0);
5982 if (cap
->nchar
== 'F' && lnum
>= 0)
5984 curwin
->w_cursor
.lnum
= lnum
;
5985 check_cursor_lnum();
5986 beginline(BL_SOL
| BL_FIX
);
5996 * <End> command: to end of current line or last line.
6002 if (cap
->arg
|| (mod_mask
& MOD_MASK_CTRL
)) /* CTRL-END = goto last line */
6006 cap
->count1
= 1; /* to end of current line */
6012 * Handle the "$" command.
6018 cap
->oap
->motion_type
= MCHAR
;
6019 cap
->oap
->inclusive
= TRUE
;
6020 #ifdef FEAT_VIRTUALEDIT
6021 /* In virtual mode when off the edge of a line and an operator
6022 * is pending (whew!) keep the cursor where it is.
6023 * Otherwise, send it to the end of the line. */
6024 if (!virtual_active() || gchar_cursor() != NUL
6025 || cap
->oap
->op_type
== OP_NOP
)
6027 curwin
->w_curswant
= MAXCOL
; /* so we stay at the end */
6028 if (cursor_down((long)(cap
->count1
- 1),
6029 cap
->oap
->op_type
== OP_NOP
) == FAIL
)
6030 clearopbeep(cap
->oap
);
6032 else if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6038 * Implementation of '?' and '/' commands.
6039 * If cap->arg is TRUE don't set PC mark.
6045 oparg_T
*oap
= cap
->oap
;
6047 if (cap
->cmdchar
== '?' && cap
->oap
->op_type
== OP_ROT13
)
6049 /* Translate "g??" to "g?g?" */
6056 cap
->searchbuf
= getcmdline(cap
->cmdchar
, cap
->count1
, 0);
6058 if (cap
->searchbuf
== NULL
)
6064 normal_search(cap
, cap
->cmdchar
, cap
->searchbuf
,
6065 (cap
->arg
? 0 : SEARCH_MARK
));
6069 * Handle "N" and "n" commands.
6070 * cap->arg is SEARCH_REV for "N", 0 for "n".
6076 normal_search(cap
, 0, NULL
, SEARCH_MARK
| cap
->arg
);
6080 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
6081 * Uses only cap->count1 and cap->oap from "cap".
6084 normal_search(cap
, dir
, pat
, opt
)
6088 int opt
; /* extra flags for do_search() */
6092 cap
->oap
->motion_type
= MCHAR
;
6093 cap
->oap
->inclusive
= FALSE
;
6094 cap
->oap
->use_reg_one
= TRUE
;
6095 curwin
->w_set_curswant
= TRUE
;
6097 i
= do_search(cap
->oap
, dir
, pat
, cap
->count1
,
6098 opt
| SEARCH_OPT
| SEARCH_ECHO
| SEARCH_MSG
, NULL
);
6104 cap
->oap
->motion_type
= MLINE
;
6105 #ifdef FEAT_VIRTUALEDIT
6106 curwin
->w_cursor
.coladd
= 0;
6109 if (cap
->oap
->op_type
== OP_NOP
&& (fdo_flags
& FDO_SEARCH
) && KeyTyped
)
6114 /* "/$" will put the cursor after the end of the line, may need to
6115 * correct that here */
6120 * Character search commands.
6121 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
6122 * ',' and FALSE for ';'.
6123 * cap->nchar is NUL for ',' and ';' (repeat the search)
6131 if (cap
->cmdchar
== 't' || cap
->cmdchar
== 'T')
6136 cap
->oap
->motion_type
= MCHAR
;
6137 if (IS_SPECIAL(cap
->nchar
) || searchc(cap
, t_cmd
) == FAIL
)
6138 clearopbeep(cap
->oap
);
6141 curwin
->w_set_curswant
= TRUE
;
6142 #ifdef FEAT_VIRTUALEDIT
6143 /* Include a Tab for "tx" and for "dfx". */
6144 if (gchar_cursor() == TAB
&& virtual_active() && cap
->arg
== FORWARD
6145 && (t_cmd
|| cap
->oap
->op_type
!= OP_NOP
))
6149 getvcol(curwin
, &curwin
->w_cursor
, &scol
, NULL
, &ecol
);
6150 curwin
->w_cursor
.coladd
= ecol
- scol
;
6153 curwin
->w_cursor
.coladd
= 0;
6156 adjust_for_sel(cap
);
6159 if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6166 * "[" and "]" commands.
6167 * cap->arg is BACKWARD for "[" and FORWARD for "]".
6175 pos_T
*pos
= NULL
; /* init for GCC */
6176 pos_T old_pos
; /* cursor position before command */
6182 cap
->oap
->motion_type
= MCHAR
;
6183 cap
->oap
->inclusive
= FALSE
;
6184 old_pos
= curwin
->w_cursor
;
6185 #ifdef FEAT_VIRTUALEDIT
6186 curwin
->w_cursor
.coladd
= 0; /* TODO: don't do this for an error. */
6189 #ifdef FEAT_SEARCHPATH
6191 * "[f" or "]f" : Edit file under the cursor (same as "gf")
6193 if (cap
->nchar
== 'f')
6200 * Find the occurrence(s) of the identifier or define under cursor
6201 * in current and included files or jump to the first occurrence.
6204 * fwd bwd fwd bwd fwd bwd
6205 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
6206 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
6208 if (vim_strchr((char_u
*)
6214 cap
->nchar
) != NULL
)
6219 if ((len
= find_ident_under_cursor(&ptr
, FIND_IDENT
)) == 0)
6223 find_pattern_in_path(ptr
, 0, len
, TRUE
,
6224 cap
->count0
== 0 ? !isupper(cap
->nchar
) : FALSE
,
6225 ((cap
->nchar
& 0xf) == ('d' & 0xf)) ? FIND_DEFINE
: FIND_ANY
,
6227 isupper(cap
->nchar
) ? ACTION_SHOW_ALL
:
6228 islower(cap
->nchar
) ? ACTION_SHOW
: ACTION_GOTO
,
6229 cap
->cmdchar
== ']' ? curwin
->w_cursor
.lnum
+ 1 : (linenr_T
)1,
6231 curwin
->w_set_curswant
= TRUE
;
6238 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
6239 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
6240 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
6241 * "[m" or "]m" search for prev/next start of (Java) method.
6242 * "[M" or "]M" search for prev/next end of (Java) method.
6244 if ( (cap
->cmdchar
== '['
6245 && vim_strchr((char_u
*)"{(*/#mM", cap
->nchar
) != NULL
)
6246 || (cap
->cmdchar
== ']'
6247 && vim_strchr((char_u
*)"})*/#mM", cap
->nchar
) != NULL
))
6249 if (cap
->nchar
== '*')
6253 if (cap
->nchar
== 'm' || cap
->nchar
== 'M')
6255 if (cap
->cmdchar
== '[')
6268 if ((pos
= findmatchlimit(cap
->oap
, findc
,
6269 (cap
->cmdchar
== '[') ? FM_BACKWARD
: FM_FORWARD
, 0)) == NULL
)
6271 if (new_pos
.lnum
== 0) /* nothing found */
6273 if (cap
->nchar
!= 'm' && cap
->nchar
!= 'M')
6274 clearopbeep(cap
->oap
);
6277 pos
= &new_pos
; /* use last one found */
6281 curwin
->w_cursor
= *pos
;
6284 curwin
->w_cursor
= old_pos
;
6287 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
6288 * brought us to the match for "[m" and "]M" when inside a method.
6289 * Try finding the '{' or '}' we want to be at.
6290 * Also repeat for the given count.
6292 if (cap
->nchar
== 'm' || cap
->nchar
== 'M')
6294 /* norm is TRUE for "]M" and "[m" */
6295 int norm
= ((findc
== '{') == (cap
->nchar
== 'm'));
6298 /* found a match: we were inside a method */
6299 if (prev_pos
.lnum
!= 0)
6302 curwin
->w_cursor
= prev_pos
;
6312 if ((findc
== '{' ? dec_cursor() : inc_cursor()) < 0)
6314 /* if not found anything, that's an error */
6316 clearopbeep(cap
->oap
);
6321 if (c
== '{' || c
== '}')
6323 /* Must have found end/start of class: use it.
6324 * Or found the place to be at. */
6325 if ((c
== findc
&& norm
) || (n
== 1 && !norm
))
6327 new_pos
= curwin
->w_cursor
;
6331 /* if no match found at all, we started outside of the
6332 * class and we're inside now. Just go on. */
6333 else if (new_pos
.lnum
== 0)
6335 new_pos
= curwin
->w_cursor
;
6338 /* found start/end of other method: go to match */
6339 else if ((pos
= findmatchlimit(cap
->oap
, findc
,
6340 (cap
->cmdchar
== '[') ? FM_BACKWARD
: FM_FORWARD
,
6344 curwin
->w_cursor
= *pos
;
6350 curwin
->w_cursor
= old_pos
;
6351 if (pos
== NULL
&& new_pos
.lnum
!= 0)
6352 clearopbeep(cap
->oap
);
6357 curwin
->w_cursor
= *pos
;
6358 curwin
->w_set_curswant
= TRUE
;
6360 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
6361 && cap
->oap
->op_type
== OP_NOP
)
6368 * "[[", "[]", "]]" and "][": move to start or end of function
6370 else if (cap
->nchar
== '[' || cap
->nchar
== ']')
6372 if (cap
->nchar
== cap
->cmdchar
) /* "]]" or "[[" */
6375 flag
= '}'; /* "][" or "[]" */
6377 curwin
->w_set_curswant
= TRUE
;
6379 * Imitate strange Vi behaviour: When using "]]" with an operator
6380 * we also stop at '}'.
6382 if (!findpar(&cap
->oap
->inclusive
, cap
->arg
, cap
->count1
, flag
,
6383 (cap
->oap
->op_type
!= OP_NOP
6384 && cap
->arg
== FORWARD
&& flag
== '{')))
6385 clearopbeep(cap
->oap
);
6388 if (cap
->oap
->op_type
== OP_NOP
)
6389 beginline(BL_WHITE
| BL_FIX
);
6391 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6398 * "[p", "[P", "]P" and "]p": put with indent adjustment
6400 else if (cap
->nchar
== 'p' || cap
->nchar
== 'P')
6402 if (!checkclearop(cap
->oap
))
6405 do_put(cap
->oap
->regname
,
6406 (cap
->cmdchar
== ']' && cap
->nchar
== 'p') ? FORWARD
: BACKWARD
,
6407 cap
->count1
, PUT_FIXINDENT
);
6412 * "['", "[`", "]'" and "]`": jump to next mark
6414 else if (cap
->nchar
== '\'' || cap
->nchar
== '`')
6416 pos
= &curwin
->w_cursor
;
6417 for (n
= cap
->count1
; n
> 0; --n
)
6420 pos
= getnextmark(pos
, cap
->cmdchar
== '[' ? BACKWARD
: FORWARD
,
6421 cap
->nchar
== '\'');
6427 nv_cursormark(cap
, cap
->nchar
== '\'', pos
);
6432 * [ or ] followed by a middle mouse click: put selected text with
6433 * indent adjustment. Any other button just does as usual.
6435 else if (cap
->nchar
>= K_LEFTMOUSE
&& cap
->nchar
<= K_RIGHTRELEASE
)
6437 (void)do_mouse(cap
->oap
, cap
->nchar
,
6438 (cap
->cmdchar
== ']') ? FORWARD
: BACKWARD
,
6439 cap
->count1
, PUT_FIXINDENT
);
6441 #endif /* FEAT_MOUSE */
6445 * "[z" and "]z": move to start or end of open fold.
6447 else if (cap
->nchar
== 'z')
6449 if (foldMoveTo(FALSE
, cap
->cmdchar
== ']' ? FORWARD
: BACKWARD
,
6450 cap
->count1
) == FAIL
)
6451 clearopbeep(cap
->oap
);
6457 * "[c" and "]c": move to next or previous diff-change.
6459 else if (cap
->nchar
== 'c')
6461 if (diff_move_to(cap
->cmdchar
== ']' ? FORWARD
: BACKWARD
,
6462 cap
->count1
) == FAIL
)
6463 clearopbeep(cap
->oap
);
6469 * "[s", "[S", "]s" and "]S": move to next spell error.
6471 else if (cap
->nchar
== 's' || cap
->nchar
== 'S')
6474 for (n
= 0; n
< cap
->count1
; ++n
)
6475 if (spell_move_to(curwin
, cap
->cmdchar
== ']' ? FORWARD
: BACKWARD
,
6476 cap
->nchar
== 's' ? TRUE
: FALSE
, FALSE
, NULL
) == 0)
6478 clearopbeep(cap
->oap
);
6481 # ifdef FEAT_FOLDING
6482 if (cap
->oap
->op_type
== OP_NOP
&& (fdo_flags
& FDO_SEARCH
) && KeyTyped
)
6488 /* Not a valid cap->nchar. */
6490 clearopbeep(cap
->oap
);
6494 * Handle Normal mode "%" command.
6502 linenr_T lnum
= curwin
->w_cursor
.lnum
;
6505 cap
->oap
->inclusive
= TRUE
;
6506 if (cap
->count0
) /* {cnt}% : goto {cnt} percentage in file */
6508 if (cap
->count0
> 100)
6509 clearopbeep(cap
->oap
);
6512 cap
->oap
->motion_type
= MLINE
;
6514 /* Round up, so CTRL-G will give same value. Watch out for a
6515 * large line count, the line number must not go negative! */
6516 if (curbuf
->b_ml
.ml_line_count
> 1000000)
6517 curwin
->w_cursor
.lnum
= (curbuf
->b_ml
.ml_line_count
+ 99L)
6518 / 100L * cap
->count0
;
6520 curwin
->w_cursor
.lnum
= (curbuf
->b_ml
.ml_line_count
*
6521 cap
->count0
+ 99L) / 100L;
6522 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
6523 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
6524 beginline(BL_SOL
| BL_FIX
);
6527 else /* "%" : go to matching paren */
6529 cap
->oap
->motion_type
= MCHAR
;
6530 cap
->oap
->use_reg_one
= TRUE
;
6531 if ((pos
= findmatch(cap
->oap
, NUL
)) == NULL
)
6532 clearopbeep(cap
->oap
);
6536 curwin
->w_cursor
= *pos
;
6537 curwin
->w_set_curswant
= TRUE
;
6538 #ifdef FEAT_VIRTUALEDIT
6539 curwin
->w_cursor
.coladd
= 0;
6542 adjust_for_sel(cap
);
6547 if (cap
->oap
->op_type
== OP_NOP
6548 && lnum
!= curwin
->w_cursor
.lnum
6549 && (fdo_flags
& FDO_PERCENT
)
6556 * Handle "(" and ")" commands.
6557 * cap->arg is BACKWARD for "(" and FORWARD for ")".
6563 cap
->oap
->motion_type
= MCHAR
;
6564 cap
->oap
->use_reg_one
= TRUE
;
6565 /* The motion used to be inclusive for "(", but that is not what Vi does. */
6566 cap
->oap
->inclusive
= FALSE
;
6567 curwin
->w_set_curswant
= TRUE
;
6569 if (findsent(cap
->arg
, cap
->count1
) == FAIL
)
6570 clearopbeep(cap
->oap
);
6573 /* Don't leave the cursor on the NUL past end of line. */
6574 adjust_cursor(cap
->oap
);
6575 #ifdef FEAT_VIRTUALEDIT
6576 curwin
->w_cursor
.coladd
= 0;
6579 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6586 * "m" command: Mark a position.
6592 if (!checkclearop(cap
->oap
))
6594 if (setmark(cap
->nchar
) == FAIL
)
6595 clearopbeep(cap
->oap
);
6600 * "{" and "}" commands.
6601 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
6607 cap
->oap
->motion_type
= MCHAR
;
6608 cap
->oap
->inclusive
= FALSE
;
6609 cap
->oap
->use_reg_one
= TRUE
;
6610 curwin
->w_set_curswant
= TRUE
;
6611 if (!findpar(&cap
->oap
->inclusive
, cap
->arg
, cap
->count1
, NUL
, FALSE
))
6612 clearopbeep(cap
->oap
);
6615 #ifdef FEAT_VIRTUALEDIT
6616 curwin
->w_cursor
.coladd
= 0;
6619 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6626 * "u" command: Undo or make lower case.
6632 if (cap
->oap
->op_type
== OP_LOWER
6638 /* translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" */
6654 if (!checkclearopq(cap
->oap
))
6656 u_undo((int)cap
->count1
);
6657 curwin
->w_set_curswant
= TRUE
;
6662 * Handle the "r" command.
6672 if (checkclearop(cap
->oap
))
6675 /* get another character */
6676 if (cap
->nchar
== Ctrl_V
)
6678 had_ctrl_v
= Ctrl_V
;
6679 cap
->nchar
= get_literal();
6680 /* Don't redo a multibyte character with CTRL-V. */
6681 if (cap
->nchar
> DEL
)
6687 /* Abort if the character is a special key. */
6688 if (IS_SPECIAL(cap
->nchar
))
6690 clearopbeep(cap
->oap
);
6695 /* Visual mode "r" */
6703 #ifdef FEAT_VIRTUALEDIT
6704 /* Break tabs, etc. */
6705 if (virtual_active())
6707 if (u_save_cursor() == FAIL
)
6709 if (gchar_cursor() == NUL
)
6711 /* Add extra space and put the cursor on the first one. */
6712 coladvance_force((colnr_T
)(getviscol() + cap
->count1
));
6713 curwin
->w_cursor
.col
-= cap
->count1
;
6715 else if (gchar_cursor() == TAB
)
6716 coladvance_force(getviscol());
6720 /* Abort if not enough characters to replace. */
6721 ptr
= ml_get_cursor();
6722 if (STRLEN(ptr
) < (unsigned)cap
->count1
6724 || (has_mbyte
&& mb_charlen(ptr
) < cap
->count1
)
6728 clearopbeep(cap
->oap
);
6733 * Replacing with a TAB is done by edit() when it is complicated because
6734 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
6735 * Other characters are done below to avoid problems with things like
6736 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
6738 if (had_ctrl_v
!= Ctrl_V
&& cap
->nchar
== '\t' && (curbuf
->b_p_et
|| p_sta
))
6740 stuffnumReadbuff(cap
->count1
);
6741 stuffcharReadbuff('R');
6742 stuffcharReadbuff('\t');
6743 stuffcharReadbuff(ESC
);
6747 /* save line for undo */
6748 if (u_save_cursor() == FAIL
)
6751 if (had_ctrl_v
!= Ctrl_V
&& (cap
->nchar
== '\r' || cap
->nchar
== '\n'))
6754 * Replace character(s) by a single newline.
6755 * Strange vi behaviour: Only one newline is inserted.
6756 * Delete the characters here.
6757 * Insert the newline with an insert command, takes care of
6758 * autoindent. The insert command depends on being on the last
6759 * character of a line or not.
6762 (void)del_chars(cap
->count1
, FALSE
); /* delete the characters */
6764 (void)del_bytes(cap
->count1
, FALSE
, FALSE
); /* delete the characters */
6766 stuffcharReadbuff('\r');
6767 stuffcharReadbuff(ESC
);
6769 /* Give 'r' to edit(), to get the redo command right. */
6770 invoke_edit(cap
, TRUE
, 'r', FALSE
);
6774 prep_redo(cap
->oap
->regname
, cap
->count1
,
6775 NUL
, 'r', NUL
, had_ctrl_v
, cap
->nchar
);
6777 curbuf
->b_op_start
= curwin
->w_cursor
;
6781 int old_State
= State
;
6783 if (cap
->ncharC1
!= 0)
6784 AppendCharToRedobuff(cap
->ncharC1
);
6785 if (cap
->ncharC2
!= 0)
6786 AppendCharToRedobuff(cap
->ncharC2
);
6788 /* This is slow, but it handles replacing a single-byte with a
6789 * multi-byte and the other way around. Also handles adding
6790 * composing characters for utf-8. */
6791 for (n
= cap
->count1
; n
> 0; --n
)
6794 ins_char(cap
->nchar
);
6796 if (cap
->ncharC1
!= 0)
6797 ins_char(cap
->ncharC1
);
6798 if (cap
->ncharC2
!= 0)
6799 ins_char(cap
->ncharC2
);
6806 * Replace the characters within one line.
6808 for (n
= cap
->count1
; n
> 0; --n
)
6811 * Get ptr again, because u_save and/or showmatch() will have
6812 * released the line. At the same time we let know that the
6813 * line will be changed.
6815 ptr
= ml_get_buf(curbuf
, curwin
->w_cursor
.lnum
, TRUE
);
6816 ptr
[curwin
->w_cursor
.col
] = cap
->nchar
;
6817 if (p_sm
&& msg_silent
== 0)
6818 showmatch(cap
->nchar
);
6819 ++curwin
->w_cursor
.col
;
6821 #ifdef FEAT_NETBEANS_INTG
6824 colnr_T start
= (colnr_T
)(curwin
->w_cursor
.col
- cap
->count1
);
6826 netbeans_removed(curbuf
, curwin
->w_cursor
.lnum
, start
,
6828 netbeans_inserted(curbuf
, curwin
->w_cursor
.lnum
, start
,
6829 &ptr
[start
], (int)cap
->count1
);
6833 /* mark the buffer as changed and prepare for displaying */
6834 changed_bytes(curwin
->w_cursor
.lnum
,
6835 (colnr_T
)(curwin
->w_cursor
.col
- cap
->count1
));
6837 --curwin
->w_cursor
.col
; /* cursor on the last replaced char */
6839 /* if the character on the left of the current cursor is a multi-byte
6840 * character, move two characters left */
6844 curbuf
->b_op_end
= curwin
->w_cursor
;
6845 curwin
->w_set_curswant
= TRUE
;
6846 set_last_insert(cap
->nchar
);
6852 * 'o': Exchange start and end of Visual area.
6853 * 'O': same, but in block mode exchange left and right corners.
6856 v_swap_corners(cmdchar
)
6860 colnr_T left
, right
;
6862 if (cmdchar
== 'O' && VIsual_mode
== Ctrl_V
)
6864 old_cursor
= curwin
->w_cursor
;
6865 getvcols(curwin
, &old_cursor
, &VIsual
, &left
, &right
);
6866 curwin
->w_cursor
.lnum
= VIsual
.lnum
;
6868 VIsual
= curwin
->w_cursor
;
6870 curwin
->w_cursor
.lnum
= old_cursor
.lnum
;
6871 curwin
->w_curswant
= right
;
6872 /* 'selection "exclusive" and cursor at right-bottom corner: move it
6873 * right one column */
6874 if (old_cursor
.lnum
>= VIsual
.lnum
&& *p_sel
== 'e')
6875 ++curwin
->w_curswant
;
6876 coladvance(curwin
->w_curswant
);
6877 if (curwin
->w_cursor
.col
== old_cursor
.col
6878 #ifdef FEAT_VIRTUALEDIT
6879 && (!virtual_active()
6880 || curwin
->w_cursor
.coladd
== old_cursor
.coladd
)
6884 curwin
->w_cursor
.lnum
= VIsual
.lnum
;
6885 if (old_cursor
.lnum
<= VIsual
.lnum
&& *p_sel
== 'e')
6888 VIsual
= curwin
->w_cursor
;
6890 curwin
->w_cursor
.lnum
= old_cursor
.lnum
;
6892 curwin
->w_curswant
= left
;
6897 old_cursor
= curwin
->w_cursor
;
6898 curwin
->w_cursor
= VIsual
;
6899 VIsual
= old_cursor
;
6900 curwin
->w_set_curswant
= TRUE
;
6903 #endif /* FEAT_VISUAL */
6906 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
6913 if (VIsual_active
) /* "R" is replace lines */
6922 if (!checkclearopq(cap
->oap
))
6924 if (!curbuf
->b_p_ma
)
6925 EMSG(_(e_modifiable
));
6928 #ifdef FEAT_VIRTUALEDIT
6929 if (virtual_active())
6930 coladvance(getviscol());
6932 invoke_edit(cap
, FALSE
, cap
->arg
? 'V' : 'R', FALSE
);
6937 #ifdef FEAT_VREPLACE
6949 cap
->nchar
= cap
->extra_char
;
6950 nv_replace(cap
); /* Do same as "r" in Visual mode for now */
6954 if (!checkclearopq(cap
->oap
))
6956 if (!curbuf
->b_p_ma
)
6957 EMSG(_(e_modifiable
));
6960 if (cap
->extra_char
== Ctrl_V
) /* get another character */
6961 cap
->extra_char
= get_literal();
6962 stuffcharReadbuff(cap
->extra_char
);
6963 stuffcharReadbuff(ESC
);
6964 # ifdef FEAT_VIRTUALEDIT
6965 if (virtual_active())
6966 coladvance(getviscol());
6968 invoke_edit(cap
, TRUE
, 'v', FALSE
);
6975 * Swap case for "~" command, when it does not work like an operator.
6984 #ifdef FEAT_NETBEANS_INTG
6990 if (checkclearopq(cap
->oap
))
6993 if (lineempty(curwin
->w_cursor
.lnum
) && vim_strchr(p_ww
, '~') == NULL
)
6995 clearopbeep(cap
->oap
);
7001 if (u_save_cursor() == FAIL
)
7004 startpos
= curwin
->w_cursor
;
7005 #ifdef FEAT_NETBEANS_INTG
7008 for (n
= cap
->count1
; n
> 0; --n
)
7010 did_change
|= swapchar(cap
->oap
->op_type
, &curwin
->w_cursor
);
7012 if (gchar_cursor() == NUL
)
7014 if (vim_strchr(p_ww
, '~') != NULL
7015 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
7017 #ifdef FEAT_NETBEANS_INTG
7022 ptr
= ml_get(pos
.lnum
);
7023 count
= (int)STRLEN(ptr
) - pos
.col
;
7024 netbeans_removed(curbuf
, pos
.lnum
, pos
.col
,
7026 netbeans_inserted(curbuf
, pos
.lnum
, pos
.col
,
7027 &ptr
[pos
.col
], count
);
7033 ++curwin
->w_cursor
.lnum
;
7034 curwin
->w_cursor
.col
= 0;
7037 if (u_savesub(curwin
->w_cursor
.lnum
) == FAIL
)
7046 #ifdef FEAT_NETBEANS_INTG
7047 if (did_change
&& usingNetbeans
)
7049 ptr
= ml_get(pos
.lnum
);
7050 count
= curwin
->w_cursor
.col
- pos
.col
;
7051 netbeans_removed(curbuf
, pos
.lnum
, pos
.col
, (long)count
);
7052 netbeans_inserted(curbuf
, pos
.lnum
, pos
.col
, &ptr
[pos
.col
], count
);
7058 curwin
->w_set_curswant
= TRUE
;
7061 changed_lines(startpos
.lnum
, startpos
.col
, curwin
->w_cursor
.lnum
+ 1,
7063 curbuf
->b_op_start
= startpos
;
7064 curbuf
->b_op_end
= curwin
->w_cursor
;
7065 if (curbuf
->b_op_end
.col
> 0)
7066 --curbuf
->b_op_end
.col
;
7071 * Move cursor to mark.
7074 nv_cursormark(cap
, flag
, pos
)
7079 if (check_mark(pos
) == FAIL
)
7083 if (cap
->cmdchar
== '\''
7084 || cap
->cmdchar
== '`'
7085 || cap
->cmdchar
== '['
7086 || cap
->cmdchar
== ']')
7088 curwin
->w_cursor
= *pos
;
7090 beginline(BL_WHITE
| BL_FIX
);
7094 cap
->oap
->motion_type
= flag
? MLINE
: MCHAR
;
7095 if (cap
->cmdchar
== '`')
7096 cap
->oap
->use_reg_one
= TRUE
;
7097 cap
->oap
->inclusive
= FALSE
; /* ignored if not MCHAR */
7098 curwin
->w_set_curswant
= TRUE
;
7103 * Handle commands that are operators in Visual mode.
7109 static char_u trans
[] = "YyDdCcxdXdAAIIrr";
7111 /* Uppercase means linewise, except in block mode, then "D" deletes till
7112 * the end of the line, and "C" replaces til EOL */
7113 if (isupper(cap
->cmdchar
))
7115 if (VIsual_mode
!= Ctrl_V
)
7117 else if (cap
->cmdchar
== 'C' || cap
->cmdchar
== 'D')
7118 curwin
->w_curswant
= MAXCOL
;
7120 cap
->cmdchar
= *(vim_strchr(trans
, cap
->cmdchar
) + 1);
7126 * "s" and "S" commands.
7133 if (VIsual_active
) /* "vs" and "vS" are the same as "vc" */
7135 if (cap
->cmdchar
== 'S')
7146 * Abbreviated commands.
7152 if (cap
->cmdchar
== K_DEL
|| cap
->cmdchar
== K_KDEL
)
7153 cap
->cmdchar
= 'x'; /* DEL key behaves like 'x' */
7156 /* in Visual mode these commands are operators */
7165 * Translate a command into another command.
7171 static char_u
*(ar
[8]) = {(char_u
*)"dl", (char_u
*)"dh",
7172 (char_u
*)"d$", (char_u
*)"c$",
7173 (char_u
*)"cl", (char_u
*)"cc",
7174 (char_u
*)"yy", (char_u
*)":s\r"};
7175 static char_u
*str
= (char_u
*)"xXDCsSY&";
7177 if (!checkclearopq(cap
->oap
))
7179 /* In Vi "2D" doesn't delete the next line. Can't translate it
7180 * either, because "2." should also not use the count. */
7181 if (cap
->cmdchar
== 'D' && vim_strchr(p_cpo
, CPO_HASH
) != NULL
)
7183 cap
->oap
->start
= curwin
->w_cursor
;
7184 cap
->oap
->op_type
= OP_DELETE
;
7186 set_op_var(OP_DELETE
);
7192 AppendCharToRedobuff('D');
7197 stuffnumReadbuff(cap
->count0
);
7198 stuffReadbuff(ar
[(int)(vim_strchr(str
, cap
->cmdchar
) - str
)]);
7205 * "'" and "`" commands. Also for "g'" and "g`".
7206 * cap->arg is TRUE for "'" and "g'".
7215 linenr_T lnum
= curwin
->w_cursor
.lnum
;
7216 int old_KeyTyped
= KeyTyped
; /* getting file may reset it */
7219 if (cap
->cmdchar
== 'g')
7220 c
= cap
->extra_char
;
7223 pos
= getmark(c
, (cap
->oap
->op_type
== OP_NOP
));
7224 if (pos
== (pos_T
*)-1) /* jumped to other file */
7228 check_cursor_lnum();
7229 beginline(BL_WHITE
| BL_FIX
);
7235 nv_cursormark(cap
, cap
->arg
, pos
);
7237 #ifdef FEAT_VIRTUALEDIT
7238 /* May need to clear the coladd that a mark includes. */
7239 if (!virtual_active())
7240 curwin
->w_cursor
.coladd
= 0;
7243 if (cap
->oap
->op_type
== OP_NOP
7244 && (pos
== (pos_T
*)-1 || lnum
!= curwin
->w_cursor
.lnum
)
7245 && (fdo_flags
& FDO_MARK
)
7252 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
7258 #ifdef FEAT_JUMPLIST
7260 # ifdef FEAT_FOLDING
7261 linenr_T lnum
= curwin
->w_cursor
.lnum
;
7262 int old_KeyTyped
= KeyTyped
; /* getting file may reset it */
7265 if (!checkclearopq(cap
->oap
))
7267 if (cap
->cmdchar
== 'g')
7268 pos
= movechangelist((int)cap
->count1
);
7270 pos
= movemark((int)cap
->count1
);
7271 if (pos
== (pos_T
*)-1) /* jump to other file */
7273 curwin
->w_set_curswant
= TRUE
;
7276 else if (pos
!= NULL
) /* can jump */
7277 nv_cursormark(cap
, FALSE
, pos
);
7278 else if (cap
->cmdchar
== 'g')
7280 if (curbuf
->b_changelistlen
== 0)
7281 EMSG(_("E664: changelist is empty"));
7282 else if (cap
->count1
< 0)
7283 EMSG(_("E662: At start of changelist"));
7285 EMSG(_("E663: At end of changelist"));
7288 clearopbeep(cap
->oap
);
7289 # ifdef FEAT_FOLDING
7290 if (cap
->oap
->op_type
== OP_NOP
7291 && (pos
== (pos_T
*)-1 || lnum
!= curwin
->w_cursor
.lnum
)
7292 && (fdo_flags
& FDO_MARK
)
7298 clearopbeep(cap
->oap
);
7303 * Handle '"' command.
7309 if (checkclearop(cap
->oap
))
7312 if (cap
->nchar
== '=')
7313 cap
->nchar
= get_expr_register();
7315 if (cap
->nchar
!= NUL
&& valid_yank_reg(cap
->nchar
, FALSE
))
7317 cap
->oap
->regname
= cap
->nchar
;
7318 cap
->opcount
= cap
->count0
; /* remember count before '"' */
7320 set_reg_var(cap
->oap
->regname
);
7324 clearopbeep(cap
->oap
);
7329 * Handle "v", "V" and "CTRL-V" commands.
7330 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
7332 * Handle CTRL-Q just like CTRL-V.
7338 if (cap
->cmdchar
== Ctrl_Q
)
7339 cap
->cmdchar
= Ctrl_V
;
7341 /* 'v', 'V' and CTRL-V can be used while an operator is pending to make it
7342 * characterwise, linewise, or blockwise. */
7343 if (cap
->oap
->op_type
!= OP_NOP
)
7345 cap
->oap
->motion_force
= cap
->cmdchar
;
7346 finish_op
= FALSE
; /* operator doesn't finish now but later */
7350 VIsual_select
= cap
->arg
;
7351 if (VIsual_active
) /* change Visual mode */
7353 if (VIsual_mode
== cap
->cmdchar
) /* stop visual mode */
7355 else /* toggle char/block mode */
7356 { /* or char/line mode */
7357 VIsual_mode
= cap
->cmdchar
;
7360 redraw_curbuf_later(INVERTED
); /* update the inversion */
7362 else /* start Visual mode */
7364 check_visual_highlight();
7365 if (cap
->count0
) /* use previously selected part */
7367 if (resel_VIsual_mode
== NUL
) /* there is none */
7372 VIsual
= curwin
->w_cursor
;
7374 VIsual_active
= TRUE
;
7375 VIsual_reselect
= TRUE
;
7377 /* start Select mode when 'selectmode' contains "cmd" */
7378 may_start_select('c');
7382 if (p_smd
&& msg_silent
== 0)
7383 redraw_cmdline
= TRUE
; /* show visual mode later */
7385 * For V and ^V, we multiply the number of lines even if there
7386 * was only one -- webb
7388 if (resel_VIsual_mode
!= 'v' || resel_VIsual_line_count
> 1)
7390 curwin
->w_cursor
.lnum
+=
7391 resel_VIsual_line_count
* cap
->count0
- 1;
7392 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
7393 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
7395 VIsual_mode
= resel_VIsual_mode
;
7396 if (VIsual_mode
== 'v')
7398 if (resel_VIsual_line_count
<= 1)
7399 curwin
->w_cursor
.col
+= resel_VIsual_col
* cap
->count0
- 1;
7401 curwin
->w_cursor
.col
= resel_VIsual_col
;
7404 if (resel_VIsual_col
== MAXCOL
)
7406 curwin
->w_curswant
= MAXCOL
;
7407 coladvance((colnr_T
)MAXCOL
);
7409 else if (VIsual_mode
== Ctrl_V
)
7412 curwin
->w_curswant
= curwin
->w_virtcol
7413 + resel_VIsual_col
* cap
->count0
- 1;
7414 coladvance(curwin
->w_curswant
);
7417 curwin
->w_set_curswant
= TRUE
;
7418 redraw_curbuf_later(INVERTED
); /* show the inversion */
7423 /* start Select mode when 'selectmode' contains "cmd" */
7424 may_start_select('c');
7425 n_start_visual_mode(cap
->cmdchar
);
7431 * Start selection for Shift-movement keys.
7436 /* if 'selectmode' contains "key", start Select mode */
7437 may_start_select('k');
7438 n_start_visual_mode('v');
7442 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
7448 VIsual_select
= (stuff_empty() && typebuf_typed()
7449 && (vim_strchr(p_slm
, c
) != NULL
));
7453 * Start Visual mode "c".
7454 * Should set VIsual_select before calling this.
7457 n_start_visual_mode(c
)
7461 VIsual_active
= TRUE
;
7462 VIsual_reselect
= TRUE
;
7463 #ifdef FEAT_VIRTUALEDIT
7464 /* Corner case: the 0 position in a tab may change when going into
7465 * virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting.
7467 if (c
== Ctrl_V
&& (ve_flags
& VE_BLOCK
) && gchar_cursor() == TAB
)
7468 coladvance(curwin
->w_virtcol
);
7470 VIsual
= curwin
->w_cursor
;
7479 if (p_smd
&& msg_silent
== 0)
7480 redraw_cmdline
= TRUE
; /* show visual mode later */
7481 #ifdef FEAT_CLIPBOARD
7482 /* Make sure the clipboard gets updated. Needed because start and
7483 * end may still be the same, and the selection needs to be owned */
7484 clip_star
.vmode
= NUL
;
7487 /* Only need to redraw this line, unless still need to redraw an old
7488 * Visual area (when 'lazyredraw' is set). */
7489 if (curwin
->w_redr_type
< INVERTED
)
7491 curwin
->w_old_cursor_lnum
= curwin
->w_cursor
.lnum
;
7492 curwin
->w_old_visual_lnum
= curwin
->w_cursor
.lnum
;
7496 #endif /* FEAT_VISUAL */
7499 * CTRL-W: Window commands
7506 if (!checkclearop(cap
->oap
))
7507 do_window(cap
->nchar
, cap
->count0
, NUL
); /* everything is in window.c */
7509 (void)checkclearop(cap
->oap
);
7523 end_visual_mode(); /* stop Visual mode */
7525 do_cmdline_cmd((char_u
*)"st");
7529 * Commands starting with "g".
7535 oparg_T
*oap
= cap
->oap
;
7546 * "g^A": dump log of used memory.
7549 vim_mem_profile_dump();
7553 #ifdef FEAT_VREPLACE
7555 * "gR": Enter virtual replace mode.
7568 do_cmdline_cmd((char_u
*)"%s//~/&");
7573 * "gv": Reselect the previous Visual area. If Visual already active,
7574 * exchange previous and current Visual area.
7577 if (checkclearop(oap
))
7580 if ( curbuf
->b_visual
.vi_start
.lnum
== 0
7581 || curbuf
->b_visual
.vi_start
.lnum
> curbuf
->b_ml
.ml_line_count
7582 || curbuf
->b_visual
.vi_end
.lnum
== 0)
7586 /* set w_cursor to the start of the Visual area, tpos to the end */
7590 VIsual_mode
= curbuf
->b_visual
.vi_mode
;
7591 curbuf
->b_visual
.vi_mode
= i
;
7593 curbuf
->b_visual_mode_eval
= i
;
7595 i
= curwin
->w_curswant
;
7596 curwin
->w_curswant
= curbuf
->b_visual
.vi_curswant
;
7597 curbuf
->b_visual
.vi_curswant
= i
;
7599 tpos
= curbuf
->b_visual
.vi_end
;
7600 curbuf
->b_visual
.vi_end
= curwin
->w_cursor
;
7601 curwin
->w_cursor
= curbuf
->b_visual
.vi_start
;
7602 curbuf
->b_visual
.vi_start
= VIsual
;
7606 VIsual_mode
= curbuf
->b_visual
.vi_mode
;
7607 curwin
->w_curswant
= curbuf
->b_visual
.vi_curswant
;
7608 tpos
= curbuf
->b_visual
.vi_end
;
7609 curwin
->w_cursor
= curbuf
->b_visual
.vi_start
;
7612 VIsual_active
= TRUE
;
7613 VIsual_reselect
= TRUE
;
7615 /* Set Visual to the start and w_cursor to the end of the Visual
7616 * area. Make sure they are on an existing character. */
7618 VIsual
= curwin
->w_cursor
;
7619 curwin
->w_cursor
= tpos
;
7623 * When called from normal "g" command: start Select mode when
7624 * 'selectmode' contains "cmd". When called for K_SELECT, always
7625 * start Select mode.
7628 VIsual_select
= TRUE
;
7630 may_start_select('c');
7634 #ifdef FEAT_CLIPBOARD
7635 /* Make sure the clipboard gets updated. Needed because start and
7636 * end are still the same, and the selection needs to be owned */
7637 clip_star
.vmode
= NUL
;
7639 redraw_curbuf_later(INVERTED
);
7644 * "gV": Don't reselect the previous Visual area after a Select mode
7648 VIsual_reselect
= FALSE
;
7652 * "gh": start Select mode.
7653 * "gH": start Select line mode.
7654 * "g^H": start Select block mode.
7657 cap
->nchar
= Ctrl_H
;
7663 /* EBCDIC: 'v'-'h' != '^v'-'^h' */
7664 if (cap
->nchar
== Ctrl_H
)
7665 cap
->cmdchar
= Ctrl_V
;
7668 cap
->cmdchar
= cap
->nchar
+ ('v' - 'h');
7672 #endif /* FEAT_VISUAL */
7675 * "gj" and "gk" two new funny movement keys -- up and down
7676 * movement based on *screen* line rather than *file* line.
7680 /* with 'nowrap' it works just like the normal "j" command; also when
7681 * in a closed fold */
7682 if (!curwin
->w_p_wrap
7684 || hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
)
7688 oap
->motion_type
= MLINE
;
7689 i
= cursor_down(cap
->count1
, oap
->op_type
== OP_NOP
);
7692 i
= nv_screengo(oap
, FORWARD
, cap
->count1
);
7699 /* with 'nowrap' it works just like the normal "k" command; also when
7700 * in a closed fold */
7701 if (!curwin
->w_p_wrap
7703 || hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
)
7707 oap
->motion_type
= MLINE
;
7708 i
= cursor_up(cap
->count1
, oap
->op_type
== OP_NOP
);
7711 i
= nv_screengo(oap
, BACKWARD
, cap
->count1
);
7717 * "gJ": join two lines without inserting a space.
7724 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
7725 * "gm": middle of "g0" and "g$".
7735 oap
->motion_type
= MCHAR
;
7736 oap
->inclusive
= FALSE
;
7737 if (curwin
->w_p_wrap
7738 #ifdef FEAT_VERTSPLIT
7739 && curwin
->w_width
!= 0
7743 int width1
= W_WIDTH(curwin
) - curwin_col_off();
7744 int width2
= width1
+ curwin_col_off2();
7748 if (curwin
->w_virtcol
>= (colnr_T
)width1
&& width2
> 0)
7749 i
= (curwin
->w_virtcol
- width1
) / width2
* width2
+ width1
;
7752 i
= curwin
->w_leftcol
;
7753 /* Go to the middle of the screen line. When 'number' is on and lines
7754 * are wrapping the middle can be more to the left.*/
7755 if (cap
->nchar
== 'm')
7756 i
+= (W_WIDTH(curwin
) - curwin_col_off()
7757 + ((curwin
->w_p_wrap
&& i
> 0)
7758 ? curwin_col_off2() : 0)) / 2;
7759 coladvance((colnr_T
)i
);
7764 while (vim_iswhite(i
) && oneright() == OK
);
7766 curwin
->w_set_curswant
= TRUE
;
7770 /* "g_": to the last non-blank character in the line or <count> lines
7772 cap
->oap
->motion_type
= MCHAR
;
7773 cap
->oap
->inclusive
= TRUE
;
7774 curwin
->w_curswant
= MAXCOL
;
7775 if (cursor_down((long)(cap
->count1
- 1),
7776 cap
->oap
->op_type
== OP_NOP
) == FAIL
)
7777 clearopbeep(cap
->oap
);
7780 char_u
*ptr
= ml_get_curline();
7782 /* In Visual mode we may end up after the line. */
7783 if (curwin
->w_cursor
.col
> 0 && ptr
[curwin
->w_cursor
.col
] == NUL
)
7784 --curwin
->w_cursor
.col
;
7786 /* Decrease the cursor column until it's on a non-blank. */
7787 while (curwin
->w_cursor
.col
> 0
7788 && vim_iswhite(ptr
[curwin
->w_cursor
.col
]))
7789 --curwin
->w_cursor
.col
;
7790 curwin
->w_set_curswant
= TRUE
;
7798 int col_off
= curwin_col_off();
7800 oap
->motion_type
= MCHAR
;
7801 oap
->inclusive
= TRUE
;
7802 if (curwin
->w_p_wrap
7803 #ifdef FEAT_VERTSPLIT
7804 && curwin
->w_width
!= 0
7808 curwin
->w_curswant
= MAXCOL
; /* so we stay at the end */
7809 if (cap
->count1
== 1)
7811 int width1
= W_WIDTH(curwin
) - col_off
;
7812 int width2
= width1
+ curwin_col_off2();
7816 if (curwin
->w_virtcol
>= (colnr_T
)width1
)
7817 i
+= ((curwin
->w_virtcol
- width1
) / width2
+ 1)
7819 coladvance((colnr_T
)i
);
7820 #if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
7821 if (curwin
->w_cursor
.col
> 0 && curwin
->w_p_wrap
)
7824 * Check for landing on a character that got split at
7825 * the end of the line. We do not want to advance to
7826 * the next screen line.
7829 if (curwin
->w_virtcol
> (colnr_T
)i
)
7830 --curwin
->w_cursor
.col
;
7834 else if (nv_screengo(oap
, FORWARD
, cap
->count1
- 1) == FAIL
)
7839 i
= curwin
->w_leftcol
+ W_WIDTH(curwin
) - col_off
- 1;
7840 coladvance((colnr_T
)i
);
7842 /* Make sure we stick in this column. */
7844 curwin
->w_curswant
= curwin
->w_virtcol
;
7845 curwin
->w_set_curswant
= FALSE
;
7851 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
7856 case POUND
: /* pound sign (sometimes equal to '#') */
7858 case Ctrl_RSB
: /* :tag or :tselect for current identifier */
7859 case ']': /* :tselect for current identifier */
7864 * ge and gE: go back to end of word
7868 oap
->motion_type
= MCHAR
;
7869 curwin
->w_set_curswant
= TRUE
;
7870 oap
->inclusive
= TRUE
;
7871 if (bckend_word(cap
->count1
, cap
->nchar
== 'E', FALSE
) == FAIL
)
7876 * "g CTRL-G": display info about cursor position
7883 * "gi": start Insert at the last position.
7886 if (curbuf
->b_last_insert
.lnum
!= 0)
7888 curwin
->w_cursor
= curbuf
->b_last_insert
;
7889 check_cursor_lnum();
7890 i
= (int)STRLEN(ml_get_curline());
7891 if (curwin
->w_cursor
.col
> (colnr_T
)i
)
7893 #ifdef FEAT_VIRTUALEDIT
7894 if (virtual_active())
7895 curwin
->w_cursor
.coladd
+= curwin
->w_cursor
.col
- i
;
7897 curwin
->w_cursor
.col
= i
;
7905 * "gI": Start insert in column 1.
7909 if (!checkclearopq(oap
))
7910 invoke_edit(cap
, FALSE
, 'g', FALSE
);
7913 #ifdef FEAT_SEARCHPATH
7915 * "gf": goto file, edit file under cursor
7916 * "]f" and "[f": can also be used.
7924 /* "g'm" and "g`m": jump to mark without setting pcmark */
7936 do_sleep(cap
->count1
* 1000L);
7940 * "ga": Display the ascii value of the character under the
7941 * cursor. It is displayed in decimal, hex, and octal. -- webb
7949 * "g8": Display the bytes used for the UTF-8 character under the
7950 * cursor. It is displayed in hex.
7951 * "8g8" finds illegal byte sequence.
7954 if (cap
->count0
== 8)
7966 * "gg": Goto the first line in file. With a count it goes to
7967 * that line number like for "G". -- webb
7975 * Two-character operators:
7977 * "gw" Format text and keep cursor position
7978 * "g~" Toggle the case of the text.
7979 * "gu" Change text to lower case.
7980 * "gU" Change text to upper case.
7981 * "g?" rot13 encoding
7982 * "g@" call 'operatorfunc'
7986 oap
->cursor_start
= curwin
->w_cursor
;
7997 * "gd": Find first occurrence of pattern under the cursor in the
7999 * "gD": idem, but in the current file.
8003 nv_gd(oap
, cap
->nchar
, (int)cap
->count0
);
8008 * g<*Mouse> : <C-*mouse>
8012 case K_MIDDLERELEASE
:
8018 case K_RIGHTRELEASE
:
8025 mod_mask
= MOD_MASK_CTRL
;
8026 (void)do_mouse(oap
, cap
->nchar
, BACKWARD
, cap
->count1
, 0);
8034 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
8042 /* "go": goto byte count from start of buffer */
8044 goto_byte(cap
->count0
);
8048 /* "gQ": improved Ex mode */
8052 clearopbeep(cap
->oap
);
8057 if (!checkclearopq(oap
))
8061 #ifdef FEAT_JUMPLIST
8067 cap
->count1
= -cap
->count1
;
8074 goto_tabpage((int)cap
->count0
);
8077 goto_tabpage(-(int)cap
->count1
);
8082 case '-': /* "g+" and "g-": undo or redo along the timeline */
8083 if (!checkclearopq(oap
))
8084 undo_time(cap
->nchar
== '-' ? -cap
->count1
: cap
->count1
,
8095 * Handle "o" and "O" commands.
8101 if (!checkclearopq(cap
->oap
))
8104 if (cap
->cmdchar
== 'O')
8105 /* Open above the first line of a folded sequence of lines */
8106 (void)hasFolding(curwin
->w_cursor
.lnum
,
8107 &curwin
->w_cursor
.lnum
, NULL
);
8109 /* Open below the last line of a folded sequence of lines */
8110 (void)hasFolding(curwin
->w_cursor
.lnum
,
8111 NULL
, &curwin
->w_cursor
.lnum
);
8113 if (u_save((linenr_T
)(curwin
->w_cursor
.lnum
-
8114 (cap
->cmdchar
== 'O' ? 1 : 0)),
8115 (linenr_T
)(curwin
->w_cursor
.lnum
+
8116 (cap
->cmdchar
== 'o' ? 1 : 0))
8118 && open_line(cap
->cmdchar
== 'O' ? BACKWARD
: FORWARD
,
8119 #ifdef FEAT_COMMENTS
8120 has_format_option(FO_OPEN_COMS
) ? OPENLINE_DO_COM
:
8124 /* When '#' is in 'cpoptions' ignore the count. */
8125 if (vim_strchr(p_cpo
, CPO_HASH
) != NULL
)
8127 invoke_edit(cap
, FALSE
, cap
->cmdchar
, TRUE
);
8133 * "." command: redo last change.
8139 if (!checkclearopq(cap
->oap
))
8142 * If "restart_edit" is TRUE, the last but one command is repeated
8143 * instead of the last command (inserting text). This is used for
8144 * CTRL-O <.> in insert mode.
8146 if (start_redo(cap
->count0
, restart_edit
!= 0 && !arrow_used
) == FAIL
)
8147 clearopbeep(cap
->oap
);
8158 if (!checkclearopq(cap
->oap
))
8160 u_redo((int)cap
->count1
);
8161 curwin
->w_set_curswant
= TRUE
;
8166 * Handle "U" command.
8172 /* In Visual mode and typing "gUU" triggers an operator */
8173 if (cap
->oap
->op_type
== OP_UPPER
8179 /* translate "gUU" to "gUgU" */
8184 else if (!checkclearopq(cap
->oap
))
8187 curwin
->w_set_curswant
= TRUE
;
8192 * '~' command: If tilde is not an operator and Visual is off: swap case of a
8203 && cap
->oap
->op_type
!= OP_TILDE
)
8210 * Handle an operator command.
8211 * The actual work is done by do_pending_operator().
8219 op_type
= get_op_type(cap
->cmdchar
, cap
->nchar
);
8221 if (op_type
== cap
->oap
->op_type
) /* double operator works on lines */
8223 else if (!checkclearop(cap
->oap
))
8225 cap
->oap
->start
= curwin
->w_cursor
;
8226 cap
->oap
->op_type
= op_type
;
8228 set_op_var(op_type
);
8235 * Set v:operator to the characters for "optype".
8243 if (optype
== OP_NOP
)
8244 set_vim_var_string(VV_OP
, NULL
, 0);
8247 opchars
[0] = get_op_char(optype
);
8248 opchars
[1] = get_extra_op_char(optype
);
8250 set_vim_var_string(VV_OP
, opchars
, -1);
8256 * Handle linewise operator "dd", "yy", etc.
8258 * "_" is is a strange motion command that helps make operators more logical.
8259 * It is actually implemented, but not documented in the real Vi. This motion
8260 * command actually refers to "the current line". Commands like "dd" and "yy"
8261 * are really an alternate form of "d_" and "y_". It does accept a count, so
8262 * "d3_" works to delete 3 lines.
8268 cap
->oap
->motion_type
= MLINE
;
8269 if (cursor_down(cap
->count1
- 1L, cap
->oap
->op_type
== OP_NOP
) == FAIL
)
8270 clearopbeep(cap
->oap
);
8271 else if ( cap
->oap
->op_type
== OP_DELETE
8272 || cap
->oap
->op_type
== OP_LSHIFT
8273 || cap
->oap
->op_type
== OP_RSHIFT
)
8274 beginline(BL_SOL
| BL_FIX
);
8275 else if (cap
->oap
->op_type
!= OP_YANK
) /* 'Y' does not move cursor */
8276 beginline(BL_WHITE
| BL_FIX
);
8286 /* CTRL-HOME is like "gg" */
8287 if (mod_mask
& MOD_MASK_CTRL
)
8294 ins_at_eol
= FALSE
; /* Don't move cursor past eol (only necessary in a
8295 one-character line). */
8305 cap
->oap
->motion_type
= MCHAR
;
8306 cap
->oap
->inclusive
= FALSE
;
8308 if (cap
->count0
> 0)
8310 coladvance((colnr_T
)(cap
->count0
- 1));
8311 curwin
->w_curswant
= (colnr_T
)(cap
->count0
- 1);
8314 curwin
->w_curswant
= 0;
8315 /* keep curswant at the column where we wanted to go, not where
8316 we ended; differs if line is too short */
8317 curwin
->w_set_curswant
= FALSE
;
8321 * Handle back-word command "b" and "B".
8322 * cap->arg is 1 for "B"
8328 cap
->oap
->motion_type
= MCHAR
;
8329 cap
->oap
->inclusive
= FALSE
;
8330 curwin
->w_set_curswant
= TRUE
;
8331 if (bck_word(cap
->count1
, cap
->arg
, FALSE
) == FAIL
)
8332 clearopbeep(cap
->oap
);
8334 else if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8340 * Handle word motion commands "e", "E", "w" and "W".
8341 * cap->arg is TRUE for "E" and "W".
8352 * Set inclusive for the "E" and "e" command.
8354 if (cap
->cmdchar
== 'e' || cap
->cmdchar
== 'E')
8358 cap
->oap
->inclusive
= word_end
;
8361 * "cw" and "cW" are a special case.
8363 if (!word_end
&& cap
->oap
->op_type
== OP_CHANGE
)
8366 if (n
!= NUL
) /* not an empty line */
8371 * Reproduce a funny Vi behaviour: "cw" on a blank only
8372 * changes one character, not all blanks until the start of
8373 * the next word. Only do this when the 'w' flag is included
8376 if (cap
->count1
== 1 && vim_strchr(p_cpo
, CPO_CW
) != NULL
)
8378 cap
->oap
->inclusive
= TRUE
;
8379 cap
->oap
->motion_type
= MCHAR
;
8386 * This is a little strange. To match what the real Vi does,
8387 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
8388 * that we are not on a space or a TAB. This seems impolite
8389 * at first, but it's really more what we mean when we say
8391 * Another strangeness: When standing on the end of a word
8392 * "ce" will change until the end of the next wordt, but "cw"
8393 * will change only one character! This is done by setting
8396 cap
->oap
->inclusive
= TRUE
;
8403 cap
->oap
->motion_type
= MCHAR
;
8404 curwin
->w_set_curswant
= TRUE
;
8406 n
= end_word(cap
->count1
, cap
->arg
, flag
, FALSE
);
8408 n
= fwd_word(cap
->count1
, cap
->arg
, cap
->oap
->op_type
!= OP_NOP
);
8410 /* Don't leave the cursor on the NUL past the end of line. */
8412 adjust_cursor(cap
->oap
);
8414 if (n
== FAIL
&& cap
->oap
->op_type
== OP_NOP
)
8415 clearopbeep(cap
->oap
);
8419 adjust_for_sel(cap
);
8422 if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8429 * Used after a movement command: If the cursor ends up on the NUL after the
8430 * end of the line, may move it back to the last character and make the motion
8437 /* The cursor cannot remain on the NUL when:
8438 * - the column is > 0
8439 * - not in Visual mode or 'selection' is "o"
8440 * - 'virtualedit' is not "all" and not "onemore".
8442 if (curwin
->w_cursor
.col
> 0 && gchar_cursor() == NUL
8444 && (!VIsual_active
|| *p_sel
== 'o')
8446 #ifdef FEAT_VIRTUALEDIT
8447 && !virtual_active() && (ve_flags
& VE_ONEMORE
) == 0
8451 --curwin
->w_cursor
.col
;
8453 /* prevent cursor from moving on the trail byte */
8457 oap
->inclusive
= TRUE
;
8462 * "0" and "^" commands.
8463 * cap->arg is the argument for beginline().
8469 cap
->oap
->motion_type
= MCHAR
;
8470 cap
->oap
->inclusive
= FALSE
;
8471 beginline(cap
->arg
);
8473 if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8476 ins_at_eol
= FALSE
; /* Don't move cursor past eol (only necessary in a
8477 one-character line). */
8482 * In exclusive Visual mode, may include the last character.
8488 if (VIsual_active
&& cap
->oap
->inclusive
&& *p_sel
== 'e'
8489 && gchar_cursor() != NUL
&& lt(VIsual
, curwin
->w_cursor
))
8496 ++curwin
->w_cursor
.col
;
8497 cap
->oap
->inclusive
= FALSE
;
8502 * Exclude last character at end of Visual area for 'selection' == "exclusive".
8503 * Should check VIsual_mode before calling this.
8504 * Returns TRUE when backed up to the previous line.
8511 if (*p_sel
== 'e' && !equalpos(VIsual
, curwin
->w_cursor
))
8513 if (lt(VIsual
, curwin
->w_cursor
))
8514 pp
= &curwin
->w_cursor
;
8517 #ifdef FEAT_VIRTUALEDIT
8529 else if (pp
->lnum
> 1)
8532 pp
->col
= (colnr_T
)STRLEN(ml_get(pp
->lnum
));
8540 * SELECT key in Normal or Visual mode: end of Select mode mapping.
8547 VIsual_select
= TRUE
;
8548 else if (VIsual_reselect
)
8550 cap
->nchar
= 'v'; /* fake "gv" command */
8559 * "G", "gg", CTRL-END, CTRL-HOME.
8560 * cap->arg is TRUE for "G".
8569 lnum
= curbuf
->b_ml
.ml_line_count
;
8572 cap
->oap
->motion_type
= MLINE
;
8575 /* When a count is given, use it instead of the default lnum */
8576 if (cap
->count0
!= 0)
8580 else if (lnum
> curbuf
->b_ml
.ml_line_count
)
8581 lnum
= curbuf
->b_ml
.ml_line_count
;
8582 curwin
->w_cursor
.lnum
= lnum
;
8583 beginline(BL_SOL
| BL_FIX
);
8585 if ((fdo_flags
& FDO_JUMP
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8591 * CTRL-\ in Normal mode.
8597 if (cap
->nchar
== Ctrl_N
|| cap
->nchar
== Ctrl_G
)
8600 if (restart_edit
!= 0 && mode_displayed
)
8601 clear_cmdline
= TRUE
; /* unshow mode later */
8604 if (cmdwin_type
!= 0)
8605 cmdwin_result
= Ctrl_C
;
8610 end_visual_mode(); /* stop Visual */
8611 redraw_curbuf_later(INVERTED
);
8614 /* CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. */
8615 if (cap
->nchar
== Ctrl_G
&& p_im
)
8619 clearopbeep(cap
->oap
);
8623 * ESC in Normal mode: beep, but don't flush buffers.
8624 * Don't even beep if we are canceling a command.
8632 no_reason
= (cap
->oap
->op_type
== OP_NOP
8633 && cap
->opcount
== 0
8635 && cap
->oap
->regname
== 0
8638 if (cap
->arg
) /* TRUE for CTRL-C */
8640 if (restart_edit
== 0
8648 MSG(_("Type :quit<Enter> to exit Vim"));
8650 /* Don't reset "restart_edit" when 'insertmode' is set, it won't be
8651 * set again below when halfway a mapping. */
8655 if (cmdwin_type
!= 0)
8657 cmdwin_result
= K_IGNORE
;
8658 got_int
= FALSE
; /* don't stop executing autocommands et al. */
8667 end_visual_mode(); /* stop Visual */
8668 check_cursor_col(); /* make sure cursor is not beyond EOL */
8669 curwin
->w_set_curswant
= TRUE
;
8670 redraw_curbuf_later(INVERTED
);
8678 /* A CTRL-C is often used at the start of a menu. When 'insertmode' is
8679 * set return to Insert mode afterwards. */
8680 if (restart_edit
== 0 && goto_im()
8681 #ifdef FEAT_EX_EXTRA
8682 && ex_normal_busy
== 0
8689 * Handle "A", "a", "I", "i" and <Insert> commands.
8695 /* <Insert> is equal to "i" */
8696 if (cap
->cmdchar
== K_INS
|| cap
->cmdchar
== K_KINS
)
8700 /* in Visual mode "A" and "I" are an operator */
8701 if (VIsual_active
&& (cap
->cmdchar
== 'A' || cap
->cmdchar
== 'I'))
8704 /* in Visual mode and after an operator "a" and "i" are for text objects */
8707 if ((cap
->cmdchar
== 'a' || cap
->cmdchar
== 'i')
8708 && (cap
->oap
->op_type
!= OP_NOP
8717 clearopbeep(cap
->oap
);
8720 else if (!curbuf
->b_p_ma
&& !p_im
)
8722 /* Only give this error when 'insertmode' is off. */
8723 EMSG(_(e_modifiable
));
8726 else if (!checkclearopq(cap
->oap
))
8728 switch (cap
->cmdchar
)
8730 case 'A': /* "A"ppend after the line */
8731 curwin
->w_set_curswant
= TRUE
;
8732 #ifdef FEAT_VIRTUALEDIT
8733 if (ve_flags
== VE_ALL
)
8735 int save_State
= State
;
8737 /* Pretent Insert mode here to allow the cursor on the
8738 * character past the end of the line */
8740 coladvance((colnr_T
)MAXCOL
);
8745 curwin
->w_cursor
.col
+= (colnr_T
)STRLEN(ml_get_cursor());
8748 case 'I': /* "I"nsert before the first non-blank */
8749 if (vim_strchr(p_cpo
, CPO_INSEND
) == NULL
)
8750 beginline(BL_WHITE
);
8752 beginline(BL_WHITE
|BL_FIX
);
8755 case 'a': /* "a"ppend is like "i"nsert on the next character. */
8756 #ifdef FEAT_VIRTUALEDIT
8757 /* increment coladd when in virtual space, increment the
8758 * column otherwise, also to append after an unprintable char */
8759 if (virtual_active()
8760 && (curwin
->w_cursor
.coladd
> 0
8761 || *ml_get_cursor() == NUL
8762 || *ml_get_cursor() == TAB
))
8763 curwin
->w_cursor
.coladd
++;
8766 if (*ml_get_cursor() != NUL
)
8771 #ifdef FEAT_VIRTUALEDIT
8772 if (curwin
->w_cursor
.coladd
&& cap
->cmdchar
!= 'A')
8774 int save_State
= State
;
8776 /* Pretent Insert mode here to allow the cursor on the
8777 * character past the end of the line */
8779 coladvance(getviscol());
8784 invoke_edit(cap
, FALSE
, cap
->cmdchar
, FALSE
);
8789 * Invoke edit() and take care of "restart_edit" and the return value.
8792 invoke_edit(cap
, repl
, cmd
, startln
)
8794 int repl
; /* "r" or "gr" command */
8798 int restart_edit_save
= 0;
8800 /* Complicated: When the user types "a<C-O>a" we don't want to do Insert
8801 * mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
8803 if (repl
|| !stuff_empty())
8804 restart_edit_save
= restart_edit
;
8806 restart_edit_save
= 0;
8808 /* Always reset "restart_edit", this is not a restarted edit. */
8811 if (edit(cmd
, startln
, cap
->count1
))
8812 cap
->retval
|= CA_COMMAND_BUSY
;
8814 if (restart_edit
== 0)
8815 restart_edit
= restart_edit_save
;
8820 * "a" or "i" while an operator is pending or in Visual mode: object motion.
8830 if (cap
->cmdchar
== 'i')
8831 include
= FALSE
; /* "ix" = inner object: exclude white space */
8833 include
= TRUE
; /* "ax" = an object: include white space */
8835 /* Make sure (), [], {} and <> are in 'matchpairs' */
8836 mps_save
= curbuf
->b_p_mps
;
8837 curbuf
->b_p_mps
= (char_u
*)"(:),{:},[:],<:>";
8841 case 'w': /* "aw" = a word */
8842 flag
= current_word(cap
->oap
, cap
->count1
, include
, FALSE
);
8844 case 'W': /* "aW" = a WORD */
8845 flag
= current_word(cap
->oap
, cap
->count1
, include
, TRUE
);
8847 case 'b': /* "ab" = a braces block */
8850 flag
= current_block(cap
->oap
, cap
->count1
, include
, '(', ')');
8852 case 'B': /* "aB" = a Brackets block */
8855 flag
= current_block(cap
->oap
, cap
->count1
, include
, '{', '}');
8857 case '[': /* "a[" = a [] block */
8859 flag
= current_block(cap
->oap
, cap
->count1
, include
, '[', ']');
8861 case '<': /* "a<" = a <> block */
8863 flag
= current_block(cap
->oap
, cap
->count1
, include
, '<', '>');
8865 case 't': /* "at" = a tag block (xml and html) */
8866 flag
= current_tagblock(cap
->oap
, cap
->count1
, include
);
8868 case 'p': /* "ap" = a paragraph */
8869 flag
= current_par(cap
->oap
, cap
->count1
, include
, 'p');
8871 case 's': /* "as" = a sentence */
8872 flag
= current_sent(cap
->oap
, cap
->count1
, include
);
8874 case '"': /* "a"" = a double quoted string */
8875 case '\'': /* "a'" = a single quoted string */
8876 case '`': /* "a`" = a backtick quoted string */
8877 flag
= current_quote(cap
->oap
, cap
->count1
, include
,
8881 case 'S': /* "aS" = a section */
8882 case 'f': /* "af" = a filename */
8883 case 'u': /* "au" = a URL */
8890 curbuf
->b_p_mps
= mps_save
;
8892 clearopbeep(cap
->oap
);
8893 adjust_cursor_col();
8894 curwin
->w_set_curswant
= TRUE
;
8899 * "q" command: Start/stop recording.
8900 * "q:", "q/", "q?": edit command-line in command-line window.
8906 if (cap
->oap
->op_type
== OP_FORMAT
)
8908 /* "gqq" is the same as "gqgq": format line */
8913 else if (!checkclearop(cap
->oap
))
8916 if (cap
->nchar
== ':' || cap
->nchar
== '/' || cap
->nchar
== '?')
8918 stuffcharReadbuff(cap
->nchar
);
8919 stuffcharReadbuff(K_CMDWIN
);
8923 /* (stop) recording into a named register, unless executing a
8925 if (!Exec_reg
&& do_record(cap
->nchar
) == FAIL
)
8926 clearopbeep(cap
->oap
);
8931 * Handle the "@r" command.
8937 if (checkclearop(cap
->oap
))
8940 if (cap
->nchar
== '=')
8942 if (get_expr_register() == NUL
)
8946 while (cap
->count1
-- && !got_int
)
8948 if (do_execreg(cap
->nchar
, FALSE
, FALSE
, FALSE
) == FAIL
)
8950 clearopbeep(cap
->oap
);
8958 * Handle the CTRL-U and CTRL-D commands.
8964 if ((cap
->cmdchar
== Ctrl_U
&& curwin
->w_cursor
.lnum
== 1)
8965 || (cap
->cmdchar
== Ctrl_D
8966 && curwin
->w_cursor
.lnum
== curbuf
->b_ml
.ml_line_count
))
8967 clearopbeep(cap
->oap
);
8968 else if (!checkclearop(cap
->oap
))
8969 halfpage(cap
->cmdchar
== Ctrl_D
, cap
->count0
);
8973 * Handle "J" or "gJ" command.
8980 if (VIsual_active
) /* join the visual lines */
8984 if (!checkclearop(cap
->oap
))
8986 if (cap
->count0
<= 1)
8987 cap
->count0
= 2; /* default for join is two lines! */
8988 if (curwin
->w_cursor
.lnum
+ cap
->count0
- 1 >
8989 curbuf
->b_ml
.ml_line_count
)
8990 clearopbeep(cap
->oap
); /* beyond last line */
8993 prep_redo(cap
->oap
->regname
, cap
->count0
,
8994 NUL
, cap
->cmdchar
, NUL
, NUL
, cap
->nchar
);
8995 do_do_join(cap
->count0
, cap
->nchar
== NUL
);
9001 * "P", "gP", "p" and "gp" commands.
9009 void *reg1
= NULL
, *reg2
= NULL
;
9011 int was_visual
= FALSE
;
9016 if (cap
->oap
->op_type
!= OP_NOP
)
9019 /* "dp" is ":diffput" */
9020 if (cap
->oap
->op_type
== OP_DELETE
&& cap
->cmdchar
== 'p')
9023 nv_diffgetput(TRUE
);
9027 clearopbeep(cap
->oap
);
9031 dir
= (cap
->cmdchar
== 'P'
9032 || (cap
->cmdchar
== 'g' && cap
->nchar
== 'P'))
9033 ? BACKWARD
: FORWARD
;
9035 if (cap
->cmdchar
== 'g')
9036 flags
|= PUT_CURSEND
;
9041 /* Putting in Visual mode: The put text replaces the selected
9042 * text. First delete the selected text, then put the new text.
9043 * Need to save and restore the registers that the delete
9044 * overwrites if the old contents is being put.
9047 regname
= cap
->oap
->regname
;
9048 # ifdef FEAT_CLIPBOARD
9049 adjust_clip_reg(®name
);
9051 if (regname
== 0 || VIM_ISDIGIT(regname
)
9052 # ifdef FEAT_CLIPBOARD
9053 || (clip_unnamed
&& (regname
== '*' || regname
== '+'))
9058 /* the delete is going to overwrite the register we want to
9059 * put, save it first. */
9060 reg1
= get_register(regname
, TRUE
);
9063 /* Now delete the selected text. */
9066 cap
->oap
->regname
= NUL
;
9068 do_pending_operator(cap
, 0, FALSE
);
9069 empty
= (curbuf
->b_ml
.ml_flags
& ML_EMPTY
);
9071 /* delete PUT_LINE_BACKWARD; */
9072 cap
->oap
->regname
= regname
;
9076 /* Delete probably changed the register we want to put, save
9077 * it first. Then put back what was there before the delete. */
9078 reg2
= get_register(regname
, FALSE
);
9079 put_register(regname
, reg1
);
9082 /* When deleted a linewise Visual area, put the register as
9083 * lines to avoid it joined with the next line. When deletion was
9084 * characterwise, split a line when putting lines. */
9085 if (VIsual_mode
== 'V')
9087 else if (VIsual_mode
== 'v')
9088 flags
|= PUT_LINE_SPLIT
;
9089 if (VIsual_mode
== Ctrl_V
&& dir
== FORWARD
)
9090 flags
|= PUT_LINE_FORWARD
;
9092 if ((VIsual_mode
!= 'V'
9093 && curwin
->w_cursor
.col
< curbuf
->b_op_start
.col
)
9094 || (VIsual_mode
== 'V'
9095 && curwin
->w_cursor
.lnum
< curbuf
->b_op_start
.lnum
))
9096 /* cursor is at the end of the line or end of file, put
9101 do_put(cap
->oap
->regname
, dir
, cap
->count1
, flags
);
9104 /* If a register was saved, put it back now. */
9106 put_register(regname
, reg2
);
9108 /* What to reselect with "gv"? Selecting the just put text seems to
9109 * be the most useful, since the original text was removed. */
9112 curbuf
->b_visual
.vi_start
= curbuf
->b_op_start
;
9113 curbuf
->b_visual
.vi_end
= curbuf
->b_op_end
;
9116 /* When all lines were selected and deleted do_put() leaves an empty
9117 * line that needs to be deleted now. */
9118 if (empty
&& *ml_get(curbuf
->b_ml
.ml_line_count
) == NUL
)
9120 ml_delete(curbuf
->b_ml
.ml_line_count
, TRUE
);
9122 /* If the cursor was in that line, move it to the end of the last
9124 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
9126 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
9127 coladvance((colnr_T
)MAXCOL
);
9131 auto_format(FALSE
, TRUE
);
9136 * "o" and "O" commands.
9143 /* "do" is ":diffget" */
9144 if (cap
->oap
->op_type
== OP_DELETE
&& cap
->cmdchar
== 'o')
9147 nv_diffgetput(FALSE
);
9152 if (VIsual_active
) /* switch start and end of visual */
9153 v_swap_corners(cap
->cmdchar
);
9165 ProcessSniffRequests();
9169 #ifdef FEAT_NETBEANS_INTG
9174 netbeans_keycommand(cap
->nchar
);
9184 do_put('~', BACKWARD
, 1L, PUT_CURSEND
);
9190 * Trigger CursorHold event.
9191 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
9192 * input buffer. "did_cursorhold" is set to avoid retriggering.
9199 apply_autocmds(EVENT_CURSORHOLD
, NULL
, NULL
, FALSE
, curbuf
);
9200 did_cursorhold
= TRUE
;
9201 cap
->retval
|= CA_COMMAND_BUSY
; /* don't call edit() now */