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
));
144 static void nv_lineop
__ARGS((cmdarg_T
*cap
));
145 static void nv_home
__ARGS((cmdarg_T
*cap
));
146 static void nv_pipe
__ARGS((cmdarg_T
*cap
));
147 static void nv_bck_word
__ARGS((cmdarg_T
*cap
));
148 static void nv_wordcmd
__ARGS((cmdarg_T
*cap
));
149 static void nv_beginline
__ARGS((cmdarg_T
*cap
));
151 static void adjust_for_sel
__ARGS((cmdarg_T
*cap
));
152 static int unadjust_for_sel
__ARGS((void));
153 static void nv_select
__ARGS((cmdarg_T
*cap
));
155 static void nv_goto
__ARGS((cmdarg_T
*cap
));
156 static void nv_normal
__ARGS((cmdarg_T
*cap
));
157 static void nv_esc
__ARGS((cmdarg_T
*oap
));
158 static void nv_edit
__ARGS((cmdarg_T
*cap
));
159 static void invoke_edit
__ARGS((cmdarg_T
*cap
, int repl
, int cmd
, int startln
));
161 static void nv_object
__ARGS((cmdarg_T
*cap
));
163 static void nv_record
__ARGS((cmdarg_T
*cap
));
164 static void nv_at
__ARGS((cmdarg_T
*cap
));
165 static void nv_halfpage
__ARGS((cmdarg_T
*cap
));
166 static void nv_join
__ARGS((cmdarg_T
*cap
));
167 static void nv_put
__ARGS((cmdarg_T
*cap
));
168 static void nv_open
__ARGS((cmdarg_T
*cap
));
170 static void nv_sniff
__ARGS((cmdarg_T
*cap
));
172 #ifdef FEAT_NETBEANS_INTG
173 static void nv_nbcmd
__ARGS((cmdarg_T
*cap
));
176 static void nv_drop
__ARGS((cmdarg_T
*cap
));
179 static void nv_cursorhold
__ARGS((cmdarg_T
*cap
));
183 * Function to be called for a Normal or Visual mode command.
184 * The argument is a cmdarg_T.
186 typedef void (*nv_func_T
) __ARGS((cmdarg_T
*cap
));
188 /* Values for cmd_flags. */
189 #define NV_NCH 0x01 /* may need to get a second char */
190 #define NV_NCH_NOP (0x02|NV_NCH) /* get second char when no operator pending */
191 #define NV_NCH_ALW (0x04|NV_NCH) /* always get a second char */
192 #define NV_LANG 0x08 /* second char needs language adjustment */
194 #define NV_SS 0x10 /* may start selection */
195 #define NV_SSS 0x20 /* may start selection with shift modifier */
196 #define NV_STS 0x40 /* may stop selection without shift modif. */
197 #define NV_RL 0x80 /* 'rightleft' modifies command */
198 #define NV_KEEPREG 0x100 /* don't clear regname */
199 #define NV_NCW 0x200 /* not allowed in command-line window */
202 * Generally speaking, every Normal mode command should either clear any
203 * pending operator (with *clearop*()), or set the motion type variable
206 * When a cursor motion command is made, it is marked as being a character or
207 * line oriented motion. Then, if an operator is in effect, the operation
208 * becomes character or line oriented accordingly.
212 * This table contains one entry for every Normal or Visual mode command.
213 * The order doesn't matter, init_normal_cmds() will create a sorted index.
214 * It is faster when all keys from zero to '~' are present.
216 static const struct nv_cmd
218 int cmd_char
; /* (first) command character */
219 nv_func_T cmd_func
; /* function for this command */
220 short_u cmd_flags
; /* NV_ flags */
221 short cmd_arg
; /* value for ca.arg */
224 {NUL
, nv_error
, 0, 0},
225 {Ctrl_A
, nv_addsub
, 0, 0},
226 {Ctrl_B
, nv_page
, NV_STS
, BACKWARD
},
227 {Ctrl_C
, nv_esc
, 0, TRUE
},
228 {Ctrl_D
, nv_halfpage
, 0, 0},
229 {Ctrl_E
, nv_scroll_line
, 0, TRUE
},
230 {Ctrl_F
, nv_page
, NV_STS
, FORWARD
},
231 {Ctrl_G
, nv_ctrlg
, 0, 0},
232 {Ctrl_H
, nv_ctrlh
, 0, 0},
233 {Ctrl_I
, nv_pcmark
, 0, 0},
234 {NL
, nv_down
, 0, FALSE
},
235 {Ctrl_K
, nv_error
, 0, 0},
236 {Ctrl_L
, nv_clear
, 0, 0},
237 {Ctrl_M
, nv_down
, 0, TRUE
},
238 {Ctrl_N
, nv_down
, NV_STS
, FALSE
},
239 {Ctrl_O
, nv_ctrlo
, 0, 0},
240 {Ctrl_P
, nv_up
, NV_STS
, FALSE
},
242 {Ctrl_Q
, nv_visual
, 0, FALSE
},
244 {Ctrl_Q
, nv_ignore
, 0, 0},
246 {Ctrl_R
, nv_redo
, 0, 0},
247 {Ctrl_S
, nv_ignore
, 0, 0},
248 {Ctrl_T
, nv_tagpop
, NV_NCW
, 0},
249 {Ctrl_U
, nv_halfpage
, 0, 0},
251 {Ctrl_V
, nv_visual
, 0, FALSE
},
252 {'V', nv_visual
, 0, FALSE
},
253 {'v', nv_visual
, 0, FALSE
},
255 {Ctrl_V
, nv_error
, 0, 0},
256 {'V', nv_error
, 0, 0},
257 {'v', nv_error
, 0, 0},
259 {Ctrl_W
, nv_window
, 0, 0},
260 {Ctrl_X
, nv_addsub
, 0, 0},
261 {Ctrl_Y
, nv_scroll_line
, 0, FALSE
},
262 {Ctrl_Z
, nv_suspend
, 0, 0},
263 {ESC
, nv_esc
, 0, FALSE
},
264 {Ctrl_BSL
, nv_normal
, NV_NCH_ALW
, 0},
265 {Ctrl_RSB
, nv_ident
, NV_NCW
, 0},
266 {Ctrl_HAT
, nv_hat
, NV_NCW
, 0},
267 {Ctrl__
, nv_error
, 0, 0},
268 {' ', nv_right
, 0, 0},
269 {'!', nv_operator
, 0, 0},
270 {'"', nv_regname
, NV_NCH_NOP
|NV_KEEPREG
, 0},
271 {'#', nv_ident
, 0, 0},
272 {'$', nv_dollar
, 0, 0},
273 {'%', nv_percent
, 0, 0},
274 {'&', nv_optrans
, 0, 0},
275 {'\'', nv_gomark
, NV_NCH_ALW
, TRUE
},
276 {'(', nv_brace
, 0, BACKWARD
},
277 {')', nv_brace
, 0, FORWARD
},
278 {'*', nv_ident
, 0, 0},
279 {'+', nv_down
, 0, TRUE
},
280 {',', nv_csearch
, 0, TRUE
},
281 {'-', nv_up
, 0, TRUE
},
282 {'.', nv_dot
, NV_KEEPREG
, 0},
283 {'/', nv_search
, 0, FALSE
},
284 {'0', nv_beginline
, 0, 0},
285 {'1', nv_ignore
, 0, 0},
286 {'2', nv_ignore
, 0, 0},
287 {'3', nv_ignore
, 0, 0},
288 {'4', nv_ignore
, 0, 0},
289 {'5', nv_ignore
, 0, 0},
290 {'6', nv_ignore
, 0, 0},
291 {'7', nv_ignore
, 0, 0},
292 {'8', nv_ignore
, 0, 0},
293 {'9', nv_ignore
, 0, 0},
294 {':', nv_colon
, 0, 0},
295 {';', nv_csearch
, 0, FALSE
},
296 {'<', nv_operator
, NV_RL
, 0},
297 {'=', nv_operator
, 0, 0},
298 {'>', nv_operator
, NV_RL
, 0},
299 {'?', nv_search
, 0, FALSE
},
300 {'@', nv_at
, NV_NCH_NOP
, FALSE
},
301 {'A', nv_edit
, 0, 0},
302 {'B', nv_bck_word
, 0, 1},
303 {'C', nv_abbrev
, NV_KEEPREG
, 0},
304 {'D', nv_abbrev
, NV_KEEPREG
, 0},
305 {'E', nv_wordcmd
, 0, TRUE
},
306 {'F', nv_csearch
, NV_NCH_ALW
|NV_LANG
, BACKWARD
},
307 {'G', nv_goto
, 0, TRUE
},
308 {'H', nv_scroll
, 0, 0},
309 {'I', nv_edit
, 0, 0},
310 {'J', nv_join
, 0, 0},
311 {'K', nv_ident
, 0, 0},
312 {'L', nv_scroll
, 0, 0},
313 {'M', nv_scroll
, 0, 0},
314 {'N', nv_next
, 0, SEARCH_REV
},
315 {'O', nv_open
, 0, 0},
317 {'Q', nv_exmode
, NV_NCW
, 0},
318 {'R', nv_Replace
, 0, FALSE
},
319 {'S', nv_subst
, NV_KEEPREG
, 0},
320 {'T', nv_csearch
, NV_NCH_ALW
|NV_LANG
, BACKWARD
},
321 {'U', nv_Undo
, 0, 0},
322 {'W', nv_wordcmd
, 0, TRUE
},
323 {'X', nv_abbrev
, NV_KEEPREG
, 0},
324 {'Y', nv_abbrev
, NV_KEEPREG
, 0},
325 {'Z', nv_Zet
, NV_NCH_NOP
|NV_NCW
, 0},
326 {'[', nv_brackets
, NV_NCH_ALW
, BACKWARD
},
327 {'\\', nv_error
, 0, 0},
328 {']', nv_brackets
, NV_NCH_ALW
, FORWARD
},
329 {'^', nv_beginline
, 0, BL_WHITE
| BL_FIX
},
330 {'_', nv_lineop
, 0, 0},
331 {'`', nv_gomark
, NV_NCH_ALW
, FALSE
},
332 {'a', nv_edit
, NV_NCH
, 0},
333 {'b', nv_bck_word
, 0, 0},
334 {'c', nv_operator
, 0, 0},
335 {'d', nv_operator
, 0, 0},
336 {'e', nv_wordcmd
, 0, FALSE
},
337 {'f', nv_csearch
, NV_NCH_ALW
|NV_LANG
, FORWARD
},
338 {'g', nv_g_cmd
, NV_NCH_ALW
, FALSE
},
339 {'h', nv_left
, NV_RL
, 0},
340 {'i', nv_edit
, NV_NCH
, 0},
341 {'j', nv_down
, 0, FALSE
},
342 {'k', nv_up
, 0, FALSE
},
343 {'l', nv_right
, NV_RL
, 0},
344 {'m', nv_mark
, NV_NCH_NOP
, 0},
345 {'n', nv_next
, 0, 0},
346 {'o', nv_open
, 0, 0},
348 {'q', nv_record
, NV_NCH
, 0},
349 {'r', nv_replace
, NV_NCH_NOP
|NV_LANG
, 0},
350 {'s', nv_subst
, NV_KEEPREG
, 0},
351 {'t', nv_csearch
, NV_NCH_ALW
|NV_LANG
, FORWARD
},
352 {'u', nv_undo
, 0, 0},
353 {'w', nv_wordcmd
, 0, FALSE
},
354 {'x', nv_abbrev
, NV_KEEPREG
, 0},
355 {'y', nv_operator
, 0, 0},
356 {'z', nv_zet
, NV_NCH_ALW
, 0},
357 {'{', nv_findpar
, 0, BACKWARD
},
358 {'|', nv_pipe
, 0, 0},
359 {'}', nv_findpar
, 0, FORWARD
},
360 {'~', nv_tilde
, 0, 0},
363 {POUND
, nv_ident
, 0, 0},
365 {K_MOUSEUP
, nv_mousescroll
, 0, TRUE
},
366 {K_MOUSEDOWN
, nv_mousescroll
, 0, FALSE
},
367 {K_LEFTMOUSE
, nv_mouse
, 0, 0},
368 {K_LEFTMOUSE_NM
, nv_mouse
, 0, 0},
369 {K_LEFTDRAG
, nv_mouse
, 0, 0},
370 {K_LEFTRELEASE
, nv_mouse
, 0, 0},
371 {K_LEFTRELEASE_NM
, nv_mouse
, 0, 0},
372 {K_MIDDLEMOUSE
, nv_mouse
, 0, 0},
373 {K_MIDDLEDRAG
, nv_mouse
, 0, 0},
374 {K_MIDDLERELEASE
, nv_mouse
, 0, 0},
375 {K_RIGHTMOUSE
, nv_mouse
, 0, 0},
376 {K_RIGHTDRAG
, nv_mouse
, 0, 0},
377 {K_RIGHTRELEASE
, nv_mouse
, 0, 0},
378 {K_X1MOUSE
, nv_mouse
, 0, 0},
379 {K_X1DRAG
, nv_mouse
, 0, 0},
380 {K_X1RELEASE
, nv_mouse
, 0, 0},
381 {K_X2MOUSE
, nv_mouse
, 0, 0},
382 {K_X2DRAG
, nv_mouse
, 0, 0},
383 {K_X2RELEASE
, nv_mouse
, 0, 0},
385 {K_IGNORE
, nv_ignore
, NV_KEEPREG
, 0},
386 {K_NOP
, nv_nop
, 0, 0},
387 {K_INS
, nv_edit
, 0, 0},
388 {K_KINS
, nv_edit
, 0, 0},
389 {K_BS
, nv_ctrlh
, 0, 0},
390 {K_UP
, nv_up
, NV_SSS
|NV_STS
, FALSE
},
391 {K_S_UP
, nv_page
, NV_SS
, BACKWARD
},
392 {K_DOWN
, nv_down
, NV_SSS
|NV_STS
, FALSE
},
393 {K_S_DOWN
, nv_page
, NV_SS
, FORWARD
},
394 {K_LEFT
, nv_left
, NV_SSS
|NV_STS
|NV_RL
, 0},
395 {K_S_LEFT
, nv_bck_word
, NV_SS
|NV_RL
, 0},
396 {K_C_LEFT
, nv_bck_word
, NV_SSS
|NV_RL
|NV_STS
, 1},
397 {K_RIGHT
, nv_right
, NV_SSS
|NV_STS
|NV_RL
, 0},
398 {K_S_RIGHT
, nv_wordcmd
, NV_SS
|NV_RL
, FALSE
},
399 {K_C_RIGHT
, nv_wordcmd
, NV_SSS
|NV_RL
|NV_STS
, TRUE
},
400 {K_PAGEUP
, nv_page
, NV_SSS
|NV_STS
, BACKWARD
},
401 {K_KPAGEUP
, nv_page
, NV_SSS
|NV_STS
, BACKWARD
},
402 {K_PAGEDOWN
, nv_page
, NV_SSS
|NV_STS
, FORWARD
},
403 {K_KPAGEDOWN
, nv_page
, NV_SSS
|NV_STS
, FORWARD
},
404 {K_END
, nv_end
, NV_SSS
|NV_STS
, FALSE
},
405 {K_KEND
, nv_end
, NV_SSS
|NV_STS
, FALSE
},
406 {K_S_END
, nv_end
, NV_SS
, FALSE
},
407 {K_C_END
, nv_end
, NV_SSS
|NV_STS
, TRUE
},
408 {K_HOME
, nv_home
, NV_SSS
|NV_STS
, 0},
409 {K_KHOME
, nv_home
, NV_SSS
|NV_STS
, 0},
410 {K_S_HOME
, nv_home
, NV_SS
, 0},
411 {K_C_HOME
, nv_goto
, NV_SSS
|NV_STS
, FALSE
},
412 {K_DEL
, nv_abbrev
, 0, 0},
413 {K_KDEL
, nv_abbrev
, 0, 0},
414 {K_UNDO
, nv_kundo
, 0, 0},
415 {K_HELP
, nv_help
, NV_NCW
, 0},
416 {K_F1
, nv_help
, NV_NCW
, 0},
417 {K_XF1
, nv_help
, NV_NCW
, 0},
419 {K_SELECT
, nv_select
, 0, 0},
422 {K_VER_SCROLLBAR
, nv_ver_scrollbar
, 0, 0},
423 {K_HOR_SCROLLBAR
, nv_hor_scrollbar
, 0, 0},
425 #ifdef FEAT_GUI_TABLINE
426 {K_TABLINE
, nv_tabline
, 0, 0},
427 {K_TABMENU
, nv_tabmenu
, 0, 0},
430 {K_F8
, farsi_fkey
, 0, 0},
431 {K_F9
, farsi_fkey
, 0, 0},
434 {K_SNIFF
, nv_sniff
, 0, 0},
436 #ifdef FEAT_NETBEANS_INTG
437 {K_F21
, nv_nbcmd
, NV_NCH_ALW
, 0},
440 {K_DROP
, nv_drop
, NV_STS
, 0},
443 {K_CURSORHOLD
, nv_cursorhold
, NV_KEEPREG
, 0},
447 /* Number of commands in nv_cmds[]. */
448 #define NV_CMDS_SIZE (sizeof(nv_cmds) / sizeof(struct nv_cmd))
450 /* Sorted index of commands in nv_cmds[]. */
451 static short nv_cmd_idx
[NV_CMDS_SIZE
];
453 /* The highest index for which
454 * nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char] */
455 static int nv_max_linear
;
458 * Compare functions for qsort() below, that checks the command character
459 * through the index in nv_cmd_idx[].
471 /* The commands are sorted on absolute value. */
472 c1
= nv_cmds
[*(const short *)s1
].cmd_char
;
473 c2
= nv_cmds
[*(const short *)s2
].cmd_char
;
482 * Initialize the nv_cmd_idx[] table.
489 /* Fill the index table with a one to one relation. */
490 for (i
= 0; i
< NV_CMDS_SIZE
; ++i
)
493 /* Sort the commands by the command character. */
494 qsort((void *)&nv_cmd_idx
, (size_t)NV_CMDS_SIZE
, sizeof(short), nv_compare
);
496 /* Find the first entry that can't be indexed by the command character. */
497 for (i
= 0; i
< NV_CMDS_SIZE
; ++i
)
498 if (i
!= nv_cmds
[nv_cmd_idx
[i
]].cmd_char
)
500 nv_max_linear
= i
- 1;
504 * Search for a command in the commands table.
505 * Returns -1 for invalid command.
508 find_command(cmdchar
)
517 /* A multi-byte character is never a command. */
518 if (cmdchar
>= 0x100)
522 /* We use the absolute value of the character. Special keys have a
523 * negative value, but are sorted on their absolute value. */
527 /* If the character is in the first part: The character is the index into
529 if (cmdchar
<= nv_max_linear
)
530 return nv_cmd_idx
[cmdchar
];
532 /* Perform a binary search. */
533 bot
= nv_max_linear
+ 1;
534 top
= NV_CMDS_SIZE
- 1;
539 c
= nv_cmds
[nv_cmd_idx
[i
]].cmd_char
;
556 * Execute a command in Normal mode.
560 normal_cmd(oap
, toplevel
)
562 int toplevel
; /* TRUE when called from main() */
564 static long opcount
= 0; /* ca.opcount saved here */
565 cmdarg_T ca
; /* command arguments */
567 int ctrl_w
= FALSE
; /* got CTRL-W command */
568 int old_col
= curwin
->w_curswant
;
569 #ifdef FEAT_CMDL_INFO
570 int need_flushbuf
; /* need to call out_flush() */
573 pos_T old_pos
; /* cursor position before command */
575 static int old_mapped_len
= 0;
579 vim_memset(&ca
, 0, sizeof(ca
)); /* also resets ca.retval */
581 ca
.opcount
= opcount
;
584 want_sniff_request
= sniff_connected
;
588 * If there is an operator pending, then the command we take this time
589 * will terminate it. Finish_op tells us to finish the operation before
590 * returning this time (unless the operation was cancelled).
595 finish_op
= (oap
->op_type
!= OP_NOP
);
599 ui_cursor_shape(); /* may show different cursor shape */
600 # ifdef FEAT_MOUSESHAPE
601 update_mouseshape(-1);
606 if (!finish_op
&& !oap
->regname
)
610 mapped_len
= typebuf_maplen();
614 #ifdef USE_ON_FLY_SCROLL
615 dont_scroll
= FALSE
; /* allow scrolling here */
619 * Get the command character from the user.
624 LANGMAP_ADJUST(c
, TRUE
);
629 * If a mapping was started in Visual or Select mode, remember the length
630 * of the mapping. This is used below to not return to Insert mode for as
631 * long as the mapping is being executed.
633 if (restart_edit
== 0)
635 else if (old_mapped_len
636 || (VIsual_active
&& mapped_len
== 0 && typebuf_maplen() > 0))
637 old_mapped_len
= typebuf_maplen();
645 * In Select mode, typed text replaces the selection.
649 && (vim_isprintc(c
) || c
== NL
|| c
== CAR
|| c
== K_KENTER
))
651 /* Fake a "c"hange command. When "restart_edit" is set (e.g., because
652 * 'insertmode' is set) fake a "d"elete command, Insert mode will
653 * restart automatically.
654 * Insert the typed character in the typeahead buffer, so that it can
655 * be mapped in Insert mode. Required for ":lmap" to work. */
657 if (restart_edit
!= 0)
661 msg_nowait
= TRUE
; /* don't delay going to insert mode */
665 #ifdef FEAT_CMDL_INFO
666 need_flushbuf
= add_to_showcmd(c
);
671 if (!(VIsual_active
&& VIsual_select
))
675 * Handle a count before a command and compute ca.count0.
676 * Note that '0' is a command and not the start of a count, but it's
677 * part of a count after other digits.
679 while ( (c
>= '1' && c
<= '9')
680 || (ca
.count0
!= 0 && (c
== K_DEL
|| c
== K_KDEL
|| c
== '0')))
682 if (c
== K_DEL
|| c
== K_KDEL
)
685 #ifdef FEAT_CMDL_INFO
686 del_from_showcmd(4); /* delete the digit and ~@% */
690 ca
.count0
= ca
.count0
* 10 + (c
- '0');
691 if (ca
.count0
< 0) /* got too large! */
692 ca
.count0
= 999999999L;
696 ++allow_keys
; /* no mapping for nchar, but keys */
698 ++no_zero_mapping
; /* don't map zero here */
701 LANGMAP_ADJUST(c
, TRUE
);
709 #ifdef FEAT_CMDL_INFO
710 need_flushbuf
|= add_to_showcmd(c
);
715 * If we got CTRL-W there may be a/another count
717 if (c
== Ctrl_W
&& !ctrl_w
&& oap
->op_type
== OP_NOP
)
720 ca
.opcount
= ca
.count0
; /* remember first count */
723 ++allow_keys
; /* no mapping for nchar, but keys */
724 c
= safe_vgetc(); /* get next character */
726 LANGMAP_ADJUST(c
, TRUE
);
730 #ifdef FEAT_CMDL_INFO
731 need_flushbuf
|= add_to_showcmd(c
);
733 goto getcount
; /* jump back */
738 * If we're in the middle of an operator (including after entering a yank
739 * buffer with '"') AND we had a count before the operator, then that
740 * count overrides the current value of ca.count0.
741 * What this means effectively, is that commands like "3dw" get turned
742 * into "d3w" which makes things fall into place pretty neatly.
743 * If you give a count before AND after the operator, they are multiplied.
748 ca
.count0
*= ca
.opcount
;
750 ca
.count0
= ca
.opcount
;
754 * Always remember the count. It will be set to zero (on the next call,
755 * above) when there is no pending operator.
756 * When called from main(), save the count for use by the "count" built-in
759 ca
.opcount
= ca
.count0
;
760 ca
.count1
= (ca
.count0
== 0 ? 1 : ca
.count0
);
764 * Only set v:count when called from main() and not a stuffed command.
766 if (toplevel
&& stuff_empty())
767 set_vcount(ca
.count0
, ca
.count1
);
771 * Find the command character in the table of commands.
772 * For CTRL-W we already got nchar when looking for a count.
781 idx
= find_command(ca
.cmdchar
);
784 /* Not a known command: beep. */
789 if (text_locked() && (nv_cmds
[idx
].cmd_flags
& NV_NCW
))
791 /* This command is not allowed wile editing a ccmdline: beep. */
797 if ((nv_cmds
[idx
].cmd_flags
& NV_NCW
) && curbuf_locked())
803 * In Visual/Select mode, a few keys are handled in a special way.
807 /* when 'keymodel' contains "stopsel" may stop Select/Visual mode */
809 && (nv_cmds
[idx
].cmd_flags
& NV_STS
)
810 && !(mod_mask
& MOD_MASK_SHIFT
))
813 redraw_curbuf_later(INVERTED
);
816 /* Keys that work different when 'keymodel' contains "startsel" */
819 if (nv_cmds
[idx
].cmd_flags
& NV_SS
)
821 unshift_special(&ca
);
822 idx
= find_command(ca
.cmdchar
);
830 else if ((nv_cmds
[idx
].cmd_flags
& NV_SSS
)
831 && (mod_mask
& MOD_MASK_SHIFT
))
833 mod_mask
&= ~MOD_MASK_SHIFT
;
839 #ifdef FEAT_RIGHTLEFT
840 if (curwin
->w_p_rl
&& KeyTyped
&& !KeyStuffed
841 && (nv_cmds
[idx
].cmd_flags
& NV_RL
))
843 /* Invert horizontal movements and operations. Only when typed by the
844 * user directly, not when the result of a mapping or "x" translated
848 case 'l': ca
.cmdchar
= 'h'; break;
849 case K_RIGHT
: ca
.cmdchar
= K_LEFT
; break;
850 case K_S_RIGHT
: ca
.cmdchar
= K_S_LEFT
; break;
851 case K_C_RIGHT
: ca
.cmdchar
= K_C_LEFT
; break;
852 case 'h': ca
.cmdchar
= 'l'; break;
853 case K_LEFT
: ca
.cmdchar
= K_RIGHT
; break;
854 case K_S_LEFT
: ca
.cmdchar
= K_S_RIGHT
; break;
855 case K_C_LEFT
: ca
.cmdchar
= K_C_RIGHT
; break;
856 case '>': ca
.cmdchar
= '<'; break;
857 case '<': ca
.cmdchar
= '>'; break;
859 idx
= find_command(ca
.cmdchar
);
864 * Get an additional character if we need one.
866 if ((nv_cmds
[idx
].cmd_flags
& NV_NCH
)
867 && (((nv_cmds
[idx
].cmd_flags
& NV_NCH_NOP
) == NV_NCH_NOP
868 && oap
->op_type
== OP_NOP
)
869 || (nv_cmds
[idx
].cmd_flags
& NV_NCH_ALW
) == NV_NCH_ALW
870 || (ca
.cmdchar
== 'q'
871 && oap
->op_type
== OP_NOP
874 || ((ca
.cmdchar
== 'a' || ca
.cmdchar
== 'i')
875 && (oap
->op_type
!= OP_NOP
882 int repl
= FALSE
; /* get character for replace mode */
883 int lit
= FALSE
; /* get extra character literally */
884 int langmap_active
= FALSE
; /* using :lmap mappings */
885 int lang
; /* getting a text character */
886 #ifdef USE_IM_CONTROL
887 int save_smd
; /* saved value of p_smd */
891 ++allow_keys
; /* no mapping for nchar, but allow key codes */
892 if (ca
.cmdchar
== 'g')
895 * For 'g' get the next character now, so that we can check for
896 * "gr", "g'" and "g`".
898 ca
.nchar
= safe_vgetc();
900 LANGMAP_ADJUST(ca
.nchar
, TRUE
);
902 #ifdef FEAT_CMDL_INFO
903 need_flushbuf
|= add_to_showcmd(ca
.nchar
);
905 if (ca
.nchar
== 'r' || ca
.nchar
== '\'' || ca
.nchar
== '`'
906 || ca
.nchar
== Ctrl_BSL
)
908 cp
= &ca
.extra_char
; /* need to get a third character */
910 lit
= TRUE
; /* get it literally */
912 repl
= TRUE
; /* get it in replace mode */
915 cp
= NULL
; /* no third character needed */
919 if (ca
.cmdchar
== 'r') /* get it in replace mode */
923 lang
= (repl
|| (nv_cmds
[idx
].cmd_flags
& NV_LANG
));
926 * Get a second or third character.
933 State
= REPLACE
; /* pretend Replace mode */
934 ui_cursor_shape(); /* show different cursor shape */
937 if (lang
&& curbuf
->b_p_iminsert
== B_IMODE_LMAP
)
939 /* Allow mappings defined with ":lmap". */
946 langmap_active
= TRUE
;
948 #ifdef USE_IM_CONTROL
950 p_smd
= FALSE
; /* Don't let the IM code show the mode here */
951 if (lang
&& curbuf
->b_p_iminsert
== B_IMODE_IM
)
959 /* Undo the decrement done above */
964 #ifdef USE_IM_CONTROL
967 if (curbuf
->b_p_iminsert
!= B_IMODE_LMAP
)
968 im_save_status(&curbuf
->b_p_iminsert
);
969 im_set_active(FALSE
);
976 #ifdef FEAT_CMDL_INFO
977 need_flushbuf
|= add_to_showcmd(*cp
);
983 /* Typing CTRL-K gets a digraph. */
985 && ((nv_cmds
[idx
].cmd_flags
& NV_LANG
)
986 || cp
== &ca
.extra_char
)
987 && vim_strchr(p_cpo
, CPO_DIGRAPH
) == NULL
)
989 c
= get_digraph(FALSE
);
993 # ifdef FEAT_CMDL_INFO
994 /* Guessing how to update showcmd here... */
996 need_flushbuf
|= add_to_showcmd(*cp
);
1003 /* adjust chars > 127, except after "tTfFr" commands */
1004 LANGMAP_ADJUST(*cp
, !lang
);
1006 #ifdef FEAT_RIGHTLEFT
1007 /* adjust Hebrew mapped char */
1008 if (p_hkmap
&& lang
&& KeyTyped
)
1011 /* adjust Farsi mapped char */
1012 if (p_fkmap
&& lang
&& KeyTyped
)
1019 * When the next character is CTRL-\ a following CTRL-N means the
1020 * command is aborted and we go to Normal mode.
1022 if (cp
== &ca
.extra_char
1023 && ca
.nchar
== Ctrl_BSL
1024 && (ca
.extra_char
== Ctrl_N
|| ca
.extra_char
== Ctrl_G
))
1026 ca
.cmdchar
= Ctrl_BSL
;
1027 ca
.nchar
= ca
.extra_char
;
1028 idx
= find_command(ca
.cmdchar
);
1030 else if (*cp
== Ctrl_BSL
)
1032 long towait
= (p_ttm
>= 0 ? p_ttm
: p_tm
);
1034 /* There is a busy wait here when typing "f<C-\>" and then
1035 * something different from CTRL-N. Can't be avoided. */
1036 while ((c
= vpeekc()) <= 0 && towait
> 0L)
1038 do_sleep(towait
> 50L ? 50L : towait
);
1044 if (c
!= Ctrl_N
&& c
!= Ctrl_G
)
1048 ca
.cmdchar
= Ctrl_BSL
;
1050 idx
= find_command(ca
.cmdchar
);
1056 /* When getting a text character and the next character is a
1057 * multi-byte character, it could be a composing character.
1058 * However, don't wait for it to arrive. */
1059 while (enc_utf8
&& lang
&& (c
= vpeekc()) > 0
1060 && (c
>= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1063 if (!utf_iscomposing(c
))
1065 vungetc(c
); /* it wasn't, put it back */
1068 else if (ca
.ncharC1
== 0)
1079 #ifdef FEAT_CMDL_INFO
1081 * Flush the showcmd characters onto the screen so we can see them while
1082 * the command is being executed. Only do this when the shown command was
1083 * actually displayed, otherwise this will slow down a lot when executing
1090 did_cursorhold
= FALSE
;
1095 if (ca
.nchar
== ESC
)
1098 if (restart_edit
== 0 && goto_im())
1103 if (ca
.cmdchar
!= K_IGNORE
)
1105 msg_didout
= FALSE
; /* don't scroll screen up for normal command */
1110 old_pos
= curwin
->w_cursor
; /* remember where cursor was */
1112 /* When 'keymodel' contains "startsel" some keys start Select/Visual
1114 if (!VIsual_active
&& km_startsel
)
1116 if (nv_cmds
[idx
].cmd_flags
& NV_SS
)
1119 unshift_special(&ca
);
1120 idx
= find_command(ca
.cmdchar
);
1122 else if ((nv_cmds
[idx
].cmd_flags
& NV_SSS
)
1123 && (mod_mask
& MOD_MASK_SHIFT
))
1126 mod_mask
&= ~MOD_MASK_SHIFT
;
1132 * Execute the command!
1133 * Call the command function found in the commands table.
1135 ca
.arg
= nv_cmds
[idx
].cmd_arg
;
1136 (nv_cmds
[idx
].cmd_func
)(&ca
);
1139 * If we didn't start or finish an operator, reset oap->regname, unless we
1144 && (idx
< 0 || !(nv_cmds
[idx
].cmd_flags
& NV_KEEPREG
)))
1153 /* Get the length of mapped chars again after typing a count, second
1154 * character or "z333<cr>". */
1155 if (old_mapped_len
> 0)
1156 old_mapped_len
= typebuf_maplen();
1160 * If an operation is pending, handle it...
1162 do_pending_operator(&ca
, old_col
, FALSE
);
1165 * Wait for a moment when a message is displayed that will be overwritten
1166 * by the mode message.
1167 * In Visual mode and with "^O" in Insert mode, a short message will be
1168 * overwritten by the mode message. Wait a bit, until a key is hit.
1169 * In Visual mode, it's more important to keep the Visual area updated
1170 * than keeping a message (e.g. from a /pat search).
1171 * Only do this if the command was typed, not from a mapping.
1172 * Don't wait when emsg_silent is non-zero.
1173 * Also wait a bit after an error message, e.g. for "^O:".
1174 * Don't redraw the screen, it would remove the message.
1178 && (restart_edit
!= 0
1181 && old_pos
.lnum
== curwin
->w_cursor
.lnum
1182 && old_pos
.col
== curwin
->w_cursor
.col
)
1187 && (msg_didout
|| (msg_didany
&& msg_scroll
))
1190 || (restart_edit
!= 0
1195 || emsg_on_display
)))
1196 && oap
->regname
== 0
1197 && !(ca
.retval
& CA_COMMAND_BUSY
)
1202 && oap
->op_type
== OP_NOP
)
1204 int save_State
= State
;
1206 /* Draw the cursor with the right shape here */
1207 if (restart_edit
!= 0)
1210 /* If need to redraw, and there is a "keep_msg", redraw before the
1212 if (must_redraw
&& keep_msg
!= NULL
&& !emsg_on_display
)
1218 /* showmode() will clear keep_msg, but we want to use it anyway */
1220 /* now reset it, otherwise it's put in the history again */
1222 msg_attr(kmsg
, keep_msg_attr
);
1228 if (msg_scroll
|| emsg_on_display
)
1229 ui_delay(1000L, TRUE
); /* wait at least one second */
1230 ui_delay(3000L, FALSE
); /* wait up to three seconds */
1234 emsg_on_display
= FALSE
;
1238 * Finish up after executing a Normal mode command.
1244 /* Reset finish_op, in case it was set */
1250 /* Redraw the cursor with another shape, if we were in Operator-pending
1251 * mode or did a replace command. */
1252 if (c
|| ca
.cmdchar
== 'r')
1254 ui_cursor_shape(); /* may show different cursor shape */
1255 # ifdef FEAT_MOUSESHAPE
1256 update_mouseshape(-1);
1261 #ifdef FEAT_CMDL_INFO
1262 if (oap
->op_type
== OP_NOP
&& oap
->regname
== 0)
1266 checkpcmark(); /* check if we moved since setting pcmark */
1267 vim_free(ca
.searchbuf
);
1274 #ifdef FEAT_SCROLLBIND
1275 if (curwin
->w_p_scb
&& toplevel
)
1277 validate_cursor(); /* may need to update w_leftcol */
1278 do_check_scrollbind(TRUE
);
1283 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1284 * if still inside a mapping that started in Visual mode).
1285 * May switch from Visual to Select mode after CTRL-O command.
1287 if ( oap
->op_type
== OP_NOP
1289 && ((restart_edit
!= 0 && !VIsual_active
&& old_mapped_len
== 0)
1290 || restart_VIsual_select
== 1)
1292 && restart_edit
!= 0
1294 && !(ca
.retval
& CA_COMMAND_BUSY
)
1296 && oap
->regname
== 0)
1299 if (restart_VIsual_select
== 1)
1301 VIsual_select
= TRUE
;
1303 restart_VIsual_select
= 0;
1306 if (restart_edit
!= 0
1308 && !VIsual_active
&& old_mapped_len
== 0
1311 (void)edit(restart_edit
, FALSE
, 1L);
1315 if (restart_VIsual_select
== 2)
1316 restart_VIsual_select
= 1;
1319 /* Save count before an operator for next time. */
1320 opcount
= ca
.opcount
;
1324 * Handle an operator after visual mode or when the movement is finished
1327 do_pending_operator(cap
, old_col
, gui_yank
)
1332 oparg_T
*oap
= cap
->oap
;
1334 int empty_region_error
;
1335 int restart_edit_save
;
1338 /* The visual area is remembered for redo */
1339 static int redo_VIsual_mode
= NUL
; /* 'v', 'V', or Ctrl-V */
1340 static linenr_T redo_VIsual_line_count
; /* number of lines */
1341 static colnr_T redo_VIsual_col
; /* number of cols or end column */
1342 static long redo_VIsual_count
; /* count for Visual operator */
1343 # ifdef FEAT_VIRTUALEDIT
1344 int include_line_break
= FALSE
;
1348 #if defined(FEAT_CLIPBOARD)
1350 * Yank the visual area into the GUI selection register before we operate
1351 * on it and lose it forever.
1352 * Don't do it if a specific register was specified, so that ""x"*P works.
1353 * This could call do_pending_operator() recursively, but that's OK
1354 * because gui_yank will be TRUE for the nested call.
1356 if (clip_star
.available
1357 && oap
->op_type
!= OP_NOP
1361 && !redo_VIsual_busy
1363 && oap
->regname
== 0)
1366 old_cursor
= curwin
->w_cursor
;
1369 * If an operation is pending, handle it...
1375 ) && oap
->op_type
!= OP_NOP
)
1378 oap
->is_VIsual
= VIsual_active
;
1379 if (oap
->motion_force
== 'V')
1380 oap
->motion_type
= MLINE
;
1381 else if (oap
->motion_force
== 'v')
1383 /* If the motion was linewise, "inclusive" will not have been set.
1384 * Use "exclusive" to be consistent. Makes "dvj" work nice. */
1385 if (oap
->motion_type
== MLINE
)
1386 oap
->inclusive
= FALSE
;
1387 /* If the motion already was characterwise, toggle "inclusive" */
1388 else if (oap
->motion_type
== MCHAR
)
1389 oap
->inclusive
= !oap
->inclusive
;
1390 oap
->motion_type
= MCHAR
;
1392 else if (oap
->motion_force
== Ctrl_V
)
1394 /* Change line- or characterwise motion into Visual block mode. */
1395 VIsual_active
= TRUE
;
1396 VIsual
= oap
->start
;
1397 VIsual_mode
= Ctrl_V
;
1398 VIsual_select
= FALSE
;
1399 VIsual_reselect
= FALSE
;
1403 /* only redo yank when 'y' flag is in 'cpoptions' */
1404 /* never redo "zf" (define fold) */
1405 if ((vim_strchr(p_cpo
, CPO_YANK
) != NULL
|| oap
->op_type
!= OP_YANK
)
1407 && (!VIsual_active
|| oap
->motion_force
)
1409 && cap
->cmdchar
!= 'D'
1411 && oap
->op_type
!= OP_FOLD
1412 && oap
->op_type
!= OP_FOLDOPEN
1413 && oap
->op_type
!= OP_FOLDOPENREC
1414 && oap
->op_type
!= OP_FOLDCLOSE
1415 && oap
->op_type
!= OP_FOLDCLOSEREC
1416 && oap
->op_type
!= OP_FOLDDEL
1417 && oap
->op_type
!= OP_FOLDDELREC
1421 prep_redo(oap
->regname
, cap
->count0
,
1422 get_op_char(oap
->op_type
), get_extra_op_char(oap
->op_type
),
1423 oap
->motion_force
, cap
->cmdchar
, cap
->nchar
);
1424 if (cap
->cmdchar
== '/' || cap
->cmdchar
== '?') /* was a search */
1427 * If 'cpoptions' does not contain 'r', insert the search
1428 * pattern to really repeat the same command.
1430 if (vim_strchr(p_cpo
, CPO_REDO
) == NULL
)
1431 AppendToRedobuffLit(cap
->searchbuf
, -1);
1432 AppendToRedobuff(NL_STR
);
1434 else if (cap
->cmdchar
== ':')
1436 /* do_cmdline() has stored the first typed line in
1437 * "repeat_cmdline". When several lines are typed repeating
1438 * won't be possible. */
1439 if (repeat_cmdline
== NULL
)
1443 AppendToRedobuffLit(repeat_cmdline
, -1);
1444 AppendToRedobuff(NL_STR
);
1445 vim_free(repeat_cmdline
);
1446 repeat_cmdline
= NULL
;
1452 if (redo_VIsual_busy
)
1454 oap
->start
= curwin
->w_cursor
;
1455 curwin
->w_cursor
.lnum
+= redo_VIsual_line_count
- 1;
1456 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
1457 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
1458 VIsual_mode
= redo_VIsual_mode
;
1459 if (VIsual_mode
== 'v')
1461 if (redo_VIsual_line_count
<= 1)
1462 curwin
->w_cursor
.col
+= redo_VIsual_col
- 1;
1464 curwin
->w_cursor
.col
= redo_VIsual_col
;
1466 if (redo_VIsual_col
== MAXCOL
)
1468 curwin
->w_curswant
= MAXCOL
;
1469 coladvance((colnr_T
)MAXCOL
);
1471 cap
->count0
= redo_VIsual_count
;
1472 if (redo_VIsual_count
!= 0)
1473 cap
->count1
= redo_VIsual_count
;
1477 else if (VIsual_active
)
1481 /* Save the current VIsual area for '< and '> marks, and "gv" */
1482 curbuf
->b_visual
.vi_start
= VIsual
;
1483 curbuf
->b_visual
.vi_end
= curwin
->w_cursor
;
1484 curbuf
->b_visual
.vi_mode
= VIsual_mode
;
1485 curbuf
->b_visual
.vi_curswant
= curwin
->w_curswant
;
1487 curbuf
->b_visual_mode_eval
= VIsual_mode
;
1491 /* In Select mode, a linewise selection is operated upon like a
1492 * characterwise selection. */
1493 if (VIsual_select
&& VIsual_mode
== 'V')
1495 if (lt(VIsual
, curwin
->w_cursor
))
1498 curwin
->w_cursor
.col
=
1499 (colnr_T
)STRLEN(ml_get(curwin
->w_cursor
.lnum
));
1503 curwin
->w_cursor
.col
= 0;
1504 VIsual
.col
= (colnr_T
)STRLEN(ml_get(VIsual
.lnum
));
1508 /* If 'selection' is "exclusive", backup one character for
1509 * charwise selections. */
1510 else if (VIsual_mode
== 'v')
1512 # ifdef FEAT_VIRTUALEDIT
1513 include_line_break
=
1518 oap
->start
= VIsual
;
1519 if (VIsual_mode
== 'V')
1522 #endif /* FEAT_VISUAL */
1525 * Set oap->start to the first position of the operated text, oap->end
1526 * to the end of the operated text. w_cursor is equal to oap->start.
1528 if (lt(oap
->start
, curwin
->w_cursor
))
1531 /* Include folded lines completely. */
1534 if (hasFolding(oap
->start
.lnum
, &oap
->start
.lnum
, NULL
))
1536 if (hasFolding(curwin
->w_cursor
.lnum
, NULL
,
1537 &curwin
->w_cursor
.lnum
))
1538 curwin
->w_cursor
.col
= (colnr_T
)STRLEN(ml_get_curline());
1541 oap
->end
= curwin
->w_cursor
;
1542 curwin
->w_cursor
= oap
->start
;
1544 /* w_virtcol may have been updated; if the cursor goes back to its
1545 * previous position w_virtcol becomes invalid and isn't updated
1547 curwin
->w_valid
&= ~VALID_VIRTCOL
;
1552 /* Include folded lines completely. */
1553 if (!VIsual_active
&& oap
->motion_type
== MLINE
)
1555 if (hasFolding(curwin
->w_cursor
.lnum
, &curwin
->w_cursor
.lnum
,
1557 curwin
->w_cursor
.col
= 0;
1558 if (hasFolding(oap
->start
.lnum
, NULL
, &oap
->start
.lnum
))
1559 oap
->start
.col
= (colnr_T
)STRLEN(ml_get(oap
->start
.lnum
));
1562 oap
->end
= oap
->start
;
1563 oap
->start
= curwin
->w_cursor
;
1566 oap
->line_count
= oap
->end
.lnum
- oap
->start
.lnum
+ 1;
1568 #ifdef FEAT_VIRTUALEDIT
1569 /* Set "virtual_op" before resetting VIsual_active. */
1570 virtual_op
= virtual_active();
1574 if (VIsual_active
|| redo_VIsual_busy
)
1576 if (VIsual_mode
== Ctrl_V
) /* block mode */
1580 oap
->block_mode
= TRUE
;
1582 getvvcol(curwin
, &(oap
->start
),
1583 &oap
->start_vcol
, NULL
, &oap
->end_vcol
);
1584 if (!redo_VIsual_busy
)
1586 getvvcol(curwin
, &(oap
->end
), &start
, NULL
, &end
);
1588 if (start
< oap
->start_vcol
)
1589 oap
->start_vcol
= start
;
1590 if (end
> oap
->end_vcol
)
1592 if (*p_sel
== 'e' && start
>= 1
1593 && start
- 1 >= oap
->end_vcol
)
1594 oap
->end_vcol
= start
- 1;
1596 oap
->end_vcol
= end
;
1600 /* if '$' was used, get oap->end_vcol from longest line */
1601 if (curwin
->w_curswant
== MAXCOL
)
1603 curwin
->w_cursor
.col
= MAXCOL
;
1605 for (curwin
->w_cursor
.lnum
= oap
->start
.lnum
;
1606 curwin
->w_cursor
.lnum
<= oap
->end
.lnum
;
1607 ++curwin
->w_cursor
.lnum
)
1609 getvvcol(curwin
, &curwin
->w_cursor
, NULL
, NULL
, &end
);
1610 if (end
> oap
->end_vcol
)
1611 oap
->end_vcol
= end
;
1614 else if (redo_VIsual_busy
)
1615 oap
->end_vcol
= oap
->start_vcol
+ redo_VIsual_col
- 1;
1617 * Correct oap->end.col and oap->start.col to be the
1618 * upper-left and lower-right corner of the block area.
1620 * (Actually, this does convert column positions into character
1623 curwin
->w_cursor
.lnum
= oap
->end
.lnum
;
1624 coladvance(oap
->end_vcol
);
1625 oap
->end
= curwin
->w_cursor
;
1627 curwin
->w_cursor
= oap
->start
;
1628 coladvance(oap
->start_vcol
);
1629 oap
->start
= curwin
->w_cursor
;
1632 if (!redo_VIsual_busy
&& !gui_yank
)
1635 * Prepare to reselect and redo Visual: this is based on the
1636 * size of the Visual text
1638 resel_VIsual_mode
= VIsual_mode
;
1639 if (curwin
->w_curswant
== MAXCOL
)
1640 resel_VIsual_col
= MAXCOL
;
1641 else if (VIsual_mode
== Ctrl_V
)
1642 resel_VIsual_col
= oap
->end_vcol
- oap
->start_vcol
+ 1;
1643 else if (oap
->line_count
> 1)
1644 resel_VIsual_col
= oap
->end
.col
;
1646 resel_VIsual_col
= oap
->end
.col
- oap
->start
.col
+ 1;
1647 resel_VIsual_line_count
= oap
->line_count
;
1650 /* can't redo yank (unless 'y' is in 'cpoptions') and ":" */
1651 if ((vim_strchr(p_cpo
, CPO_YANK
) != NULL
|| oap
->op_type
!= OP_YANK
)
1652 && oap
->op_type
!= OP_COLON
1654 && oap
->op_type
!= OP_FOLD
1655 && oap
->op_type
!= OP_FOLDOPEN
1656 && oap
->op_type
!= OP_FOLDOPENREC
1657 && oap
->op_type
!= OP_FOLDCLOSE
1658 && oap
->op_type
!= OP_FOLDCLOSEREC
1659 && oap
->op_type
!= OP_FOLDDEL
1660 && oap
->op_type
!= OP_FOLDDELREC
1662 && oap
->motion_force
== NUL
1665 /* Prepare for redoing. Only use the nchar field for "r",
1666 * otherwise it might be the second char of the operator. */
1667 prep_redo(oap
->regname
, 0L, NUL
, 'v',
1668 get_op_char(oap
->op_type
),
1669 get_extra_op_char(oap
->op_type
),
1670 oap
->op_type
== OP_REPLACE
? cap
->nchar
: NUL
);
1671 if (!redo_VIsual_busy
)
1673 redo_VIsual_mode
= resel_VIsual_mode
;
1674 redo_VIsual_col
= resel_VIsual_col
;
1675 redo_VIsual_line_count
= resel_VIsual_line_count
;
1676 redo_VIsual_count
= cap
->count0
;
1681 * oap->inclusive defaults to TRUE.
1682 * If oap->end is on a NUL (empty line) oap->inclusive becomes
1683 * FALSE. This makes "d}P" and "v}dP" work the same.
1685 if (oap
->motion_force
== NUL
|| oap
->motion_type
== MLINE
)
1686 oap
->inclusive
= TRUE
;
1687 if (VIsual_mode
== 'V')
1688 oap
->motion_type
= MLINE
;
1691 oap
->motion_type
= MCHAR
;
1692 if (VIsual_mode
!= Ctrl_V
&& *ml_get_pos(&(oap
->end
)) == NUL
1693 # ifdef FEAT_VIRTUALEDIT
1694 && (include_line_break
|| !virtual_op
)
1698 oap
->inclusive
= FALSE
;
1699 /* Try to include the newline, unless it's an operator
1700 * that works on lines only */
1702 && !op_on_lines(oap
->op_type
)
1703 && oap
->end
.lnum
< curbuf
->b_ml
.ml_line_count
)
1707 # ifdef FEAT_VIRTUALEDIT
1708 oap
->end
.coladd
= 0;
1715 redo_VIsual_busy
= FALSE
;
1718 * Switch Visual off now, so screen updating does
1719 * not show inverted text when the screen is redrawn.
1720 * With OP_YANK and sometimes with OP_COLON and OP_FILTER there is
1721 * no screen redraw, so it is done here to remove the inverted
1726 VIsual_active
= FALSE
;
1732 clear_cmdline
= TRUE
; /* unshow visual mode later */
1733 #ifdef FEAT_CMDL_INFO
1737 if ((oap
->op_type
== OP_YANK
1738 || oap
->op_type
== OP_COLON
1739 || oap
->op_type
== OP_FUNCTION
1740 || oap
->op_type
== OP_FILTER
)
1741 && oap
->motion_force
== NUL
)
1742 redraw_curbuf_later(INVERTED
);
1748 /* Include the trailing byte of a multi-byte char. */
1749 if (has_mbyte
&& oap
->inclusive
)
1753 l
= (*mb_ptr2len
)(ml_get_pos(&oap
->end
));
1755 oap
->end
.col
+= l
- 1;
1758 curwin
->w_set_curswant
= TRUE
;
1761 * oap->empty is set when start and end are the same. The inclusive
1762 * flag affects this too, unless yanking and the end is on a NUL.
1764 oap
->empty
= (oap
->motion_type
== MCHAR
1766 || (oap
->op_type
== OP_YANK
1767 && gchar_pos(&oap
->end
) == NUL
))
1768 && equalpos(oap
->start
, oap
->end
)
1769 #ifdef FEAT_VIRTUALEDIT
1770 && !(virtual_op
&& oap
->start
.coladd
!= oap
->end
.coladd
)
1774 * For delete, change and yank, it's an error to operate on an
1775 * empty region, when 'E' included in 'cpoptions' (Vi compatible).
1777 empty_region_error
= (oap
->empty
1778 && vim_strchr(p_cpo
, CPO_EMPTYREGION
) != NULL
);
1781 /* Force a redraw when operating on an empty Visual region, when
1782 * 'modifiable is off or creating a fold. */
1783 if (oap
->is_VIsual
&& (oap
->empty
|| !curbuf
->b_p_ma
1784 # ifdef FEAT_FOLDING
1785 || oap
->op_type
== OP_FOLD
1788 redraw_curbuf_later(INVERTED
);
1792 * If the end of an operator is in column one while oap->motion_type
1793 * is MCHAR and oap->inclusive is FALSE, we put op_end after the last
1794 * character in the previous line. If op_start is on or before the
1795 * first non-blank in the line, the operator becomes linewise
1796 * (strange, but that's the way vi does it).
1798 if ( oap
->motion_type
== MCHAR
1799 && oap
->inclusive
== FALSE
1800 && !(cap
->retval
& CA_NO_ADJ_OP_END
)
1801 && oap
->end
.col
== 0
1803 && (!oap
->is_VIsual
|| *p_sel
== 'o')
1806 && oap
->line_count
> 1)
1808 oap
->end_adjusted
= TRUE
; /* remember that we did this */
1812 oap
->motion_type
= MLINE
;
1815 oap
->end
.col
= (colnr_T
)STRLEN(ml_get(oap
->end
.lnum
));
1819 oap
->inclusive
= TRUE
;
1824 oap
->end_adjusted
= FALSE
;
1826 switch (oap
->op_type
)
1832 oap
->is_VIsual
? (int)cap
->count1
:
1835 auto_format(FALSE
, TRUE
);
1840 if (oap
->line_count
< 2)
1841 oap
->line_count
= 2;
1842 if (curwin
->w_cursor
.lnum
+ oap
->line_count
- 1 >
1843 curbuf
->b_ml
.ml_line_count
)
1847 do_do_join(oap
->line_count
, oap
->op_type
== OP_JOIN
);
1848 auto_format(FALSE
, TRUE
);
1854 VIsual_reselect
= FALSE
; /* don't reselect now */
1856 if (empty_region_error
)
1860 (void)op_delete(oap
);
1861 if (oap
->motion_type
== MLINE
&& has_format_option(FO_AUTO
))
1862 u_save_cursor(); /* cursor line wasn't saved yet */
1863 auto_format(FALSE
, TRUE
);
1868 if (empty_region_error
)
1874 (void)op_yank(oap
, FALSE
, !gui_yank
);
1880 VIsual_reselect
= FALSE
; /* don't reselect now */
1882 if (empty_region_error
)
1886 /* This is a new edit command, not a restart. Need to
1887 * remember it to make 'insertmode' work with mappings for
1888 * Visual mode. But do this only once and not when typed and
1889 * 'insertmode' isn't set. */
1890 if (p_im
|| !KeyTyped
)
1891 restart_edit_save
= restart_edit
;
1893 restart_edit_save
= 0;
1895 /* Reset finish_op now, don't want it set inside edit(). */
1897 if (op_change(oap
)) /* will call edit() */
1898 cap
->retval
|= CA_COMMAND_BUSY
;
1899 if (restart_edit
== 0)
1900 restart_edit
= restart_edit_save
;
1905 if (vim_strchr(p_cpo
, CPO_FILTER
) != NULL
)
1906 AppendToRedobuff((char_u
*)"!\r"); /* use any last used !cmd */
1908 bangredo
= TRUE
; /* do_bang() will put cmd in redo buffer */
1913 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
1915 * If 'equalprg' is empty, do the indenting internally.
1917 if (oap
->op_type
== OP_INDENT
&& *get_equalprg() == NUL
)
1920 if (curbuf
->b_p_lisp
)
1922 op_reindent(oap
, get_lisp_indent
);
1926 # ifdef FEAT_CINDENT
1929 *curbuf
->b_p_inde
!= NUL
? get_expr_indent
:
1944 if (empty_region_error
)
1952 #if defined(FEAT_EVAL)
1953 if (*curbuf
->b_p_fex
!= NUL
)
1954 op_formatexpr(oap
); /* use expression */
1958 op_colon(oap
); /* use external command */
1960 op_format(oap
, FALSE
); /* use internal function */
1964 op_format(oap
, TRUE
); /* use internal function */
1968 op_function(oap
); /* call 'operatorfunc' */
1974 VIsual_reselect
= FALSE
; /* don't reselect now */
1976 #ifdef FEAT_VISUALEXTRA
1977 if (empty_region_error
)
1981 /* This is a new edit command, not a restart. Need to
1982 * remember it to make 'insertmode' work with mappings for
1983 * Visual mode. But do this only once. */
1984 restart_edit_save
= restart_edit
;
1987 op_insert(oap
, cap
->count1
);
1989 /* TODO: when inserting in several lines, should format all
1991 auto_format(FALSE
, TRUE
);
1993 if (restart_edit
== 0)
1994 restart_edit
= restart_edit_save
;
2003 VIsual_reselect
= FALSE
; /* don't reselect now */
2005 #ifdef FEAT_VISUALEXTRA
2006 if (empty_region_error
)
2009 #ifdef FEAT_VISUALEXTRA
2011 op_replace(oap
, cap
->nchar
);
2017 VIsual_reselect
= FALSE
; /* don't reselect now */
2018 foldCreate(oap
->start
.lnum
, oap
->end
.lnum
);
2022 case OP_FOLDOPENREC
:
2024 case OP_FOLDCLOSEREC
:
2025 VIsual_reselect
= FALSE
; /* don't reselect now */
2026 opFoldRange(oap
->start
.lnum
, oap
->end
.lnum
,
2027 oap
->op_type
== OP_FOLDOPEN
2028 || oap
->op_type
== OP_FOLDOPENREC
,
2029 oap
->op_type
== OP_FOLDOPENREC
2030 || oap
->op_type
== OP_FOLDCLOSEREC
,
2036 VIsual_reselect
= FALSE
; /* don't reselect now */
2037 deleteFold(oap
->start
.lnum
, oap
->end
.lnum
,
2038 oap
->op_type
== OP_FOLDDELREC
, oap
->is_VIsual
);
2044 #ifdef FEAT_VIRTUALEDIT
2050 * if 'sol' not set, go back to old column for some commands
2052 if (!p_sol
&& oap
->motion_type
== MLINE
&& !oap
->end_adjusted
2053 && (oap
->op_type
== OP_LSHIFT
|| oap
->op_type
== OP_RSHIFT
2054 || oap
->op_type
== OP_DELETE
))
2055 coladvance(curwin
->w_curswant
= old_col
);
2059 curwin
->w_cursor
= old_cursor
;
2062 oap
->block_mode
= FALSE
;
2069 * Handle indent and format operators and visual mode ":".
2075 stuffcharReadbuff(':');
2078 stuffReadbuff((char_u
*)"'<,'>");
2083 * Make the range look nice, so it can be repeated.
2085 if (oap
->start
.lnum
== curwin
->w_cursor
.lnum
)
2086 stuffcharReadbuff('.');
2088 stuffnumReadbuff((long)oap
->start
.lnum
);
2089 if (oap
->end
.lnum
!= oap
->start
.lnum
)
2091 stuffcharReadbuff(',');
2092 if (oap
->end
.lnum
== curwin
->w_cursor
.lnum
)
2093 stuffcharReadbuff('.');
2094 else if (oap
->end
.lnum
== curbuf
->b_ml
.ml_line_count
)
2095 stuffcharReadbuff('$');
2096 else if (oap
->start
.lnum
== curwin
->w_cursor
.lnum
)
2098 stuffReadbuff((char_u
*)".+");
2099 stuffnumReadbuff((long)oap
->line_count
- 1);
2102 stuffnumReadbuff((long)oap
->end
.lnum
);
2105 if (oap
->op_type
!= OP_COLON
)
2106 stuffReadbuff((char_u
*)"!");
2107 if (oap
->op_type
== OP_INDENT
)
2109 #ifndef FEAT_CINDENT
2110 if (*get_equalprg() == NUL
)
2111 stuffReadbuff((char_u
*)"indent");
2114 stuffReadbuff(get_equalprg());
2115 stuffReadbuff((char_u
*)"\n");
2117 else if (oap
->op_type
== OP_FORMAT
)
2120 stuffReadbuff((char_u
*)"fmt");
2122 stuffReadbuff(p_fp
);
2123 stuffReadbuff((char_u
*)"\n']");
2127 * do_cmdline() does the rest
2132 * Handle the "g@" operator: call 'operatorfunc'.
2142 if (*p_opfunc
== NUL
)
2143 EMSG(_("E774: 'operatorfunc' is empty"));
2146 /* Set '[ and '] marks to text to be operated on. */
2147 curbuf
->b_op_start
= oap
->start
;
2148 curbuf
->b_op_end
= oap
->end
;
2149 if (oap
->motion_type
!= MLINE
&& !oap
->inclusive
)
2150 /* Exclude the end position. */
2151 decl(&curbuf
->b_op_end
);
2153 if (oap
->block_mode
)
2154 argv
[0] = (char_u
*)"block";
2155 else if (oap
->motion_type
== MLINE
)
2156 argv
[0] = (char_u
*)"line";
2158 argv
[0] = (char_u
*)"char";
2159 (void)call_func_retnr(p_opfunc
, 1, argv
, FALSE
);
2162 EMSG(_("E775: Eval feature not available"));
2166 #if defined(FEAT_MOUSE) || defined(PROTO)
2168 * Do the appropriate action for the current mouse click in the current mode.
2169 * Not used for Command-line mode.
2172 * event modi- position visual change action
2173 * fier cursor window
2174 * left press - yes end yes
2175 * left press C yes end yes "^]" (2)
2176 * left press S yes end yes "*" (2)
2177 * left drag - yes start if moved no
2178 * left relse - yes start if moved no
2179 * middle press - yes if not active no put register
2180 * middle press - yes if active no yank and put
2181 * right press - yes start or extend yes
2182 * right press S yes no change yes "#" (2)
2183 * right drag - yes extend no
2184 * right relse - yes extend no
2186 * Insert or Replace Mode:
2187 * event modi- position visual change action
2188 * fier cursor window
2189 * left press - yes (cannot be active) yes
2190 * left press C yes (cannot be active) yes "CTRL-O^]" (2)
2191 * left press S yes (cannot be active) yes "CTRL-O*" (2)
2192 * left drag - yes start or extend (1) no CTRL-O (1)
2193 * left relse - yes start or extend (1) no CTRL-O (1)
2194 * middle press - no (cannot be active) no put register
2195 * right press - yes start or extend yes CTRL-O
2196 * right press S yes (cannot be active) yes "CTRL-O#" (2)
2198 * (1) only if mouse pointer moved since press
2199 * (2) only if click is in same buffer
2201 * Return TRUE if start_arrow() should be called for edit mode.
2204 do_mouse(oap
, c
, dir
, count
, fixindent
)
2205 oparg_T
*oap
; /* operator argument, can be NULL */
2206 int c
; /* K_LEFTMOUSE, etc */
2207 int dir
; /* Direction to 'put' if necessary */
2209 int fixindent
; /* PUT_FIXINDENT if fixing indent necessary */
2211 static int do_always
= FALSE
; /* ignore 'mouse' setting next time */
2212 static int got_click
= FALSE
; /* got a click some time back */
2214 int which_button
; /* MOUSE_LEFT, _MIDDLE or _RIGHT */
2215 int is_click
; /* If FALSE it's a drag or release event */
2216 int is_drag
; /* If TRUE it's a drag event */
2217 int jump_flags
= 0; /* flags for jump_to_mouse() */
2219 int moved
; /* Has cursor moved? */
2220 int in_status_line
; /* mouse in status line */
2221 #ifdef FEAT_VERTSPLIT
2222 int in_sep_line
; /* mouse in vertical separator line */
2225 #if defined(FEAT_FOLDING)
2228 win_T
*old_curwin
= curwin
;
2230 static pos_T orig_cursor
;
2231 colnr_T leftcol
, rightcol
;
2234 int old_active
= VIsual_active
;
2235 int old_mode
= VIsual_mode
;
2239 #if defined(FEAT_FOLDING)
2240 save_cursor
= curwin
->w_cursor
;
2244 * When GUI is active, always recognize mouse events, otherwise:
2245 * - Ignore mouse event in normal mode if 'mouse' doesn't include 'n'.
2246 * - Ignore mouse event in visual mode if 'mouse' doesn't include 'v'.
2247 * - For command line and insert mode 'mouse' is checked before calling
2260 if (!mouse_has(MOUSE_VISUAL
))
2265 if (State
== NORMAL
&& !mouse_has(MOUSE_NORMAL
))
2269 which_button
= get_mouse_button(KEY2TERMCAP1(c
), &is_click
, &is_drag
);
2271 #ifdef FEAT_MOUSESHAPE
2272 /* May have stopped dragging the status or separator line. The pointer is
2273 * most likely still on the status or separator line. */
2274 if (!is_drag
&& drag_status_line
)
2276 drag_status_line
= FALSE
;
2277 update_mouseshape(SHAPE_IDX_STATUS
);
2279 # ifdef FEAT_VERTSPLIT
2280 if (!is_drag
&& drag_sep_line
)
2282 drag_sep_line
= FALSE
;
2283 update_mouseshape(SHAPE_IDX_VSEP
);
2289 * Ignore drag and release events if we didn't get a click.
2295 if (!got_click
) /* didn't get click, ignore */
2297 if (!is_drag
) /* release, reset got_click */
2303 * ALT is only used for starging/extending Visual mode.
2305 if ((mod_mask
& MOD_MASK_ALT
))
2310 * CTRL right mouse button does CTRL-T
2312 if (is_click
&& (mod_mask
& MOD_MASK_CTRL
) && which_button
== MOUSE_RIGHT
)
2315 stuffcharReadbuff(Ctrl_O
);
2317 stuffnumReadbuff(count
);
2318 stuffcharReadbuff(Ctrl_T
);
2319 got_click
= FALSE
; /* ignore drag&release now */
2324 * CTRL only works with left mouse button
2326 if ((mod_mask
& MOD_MASK_CTRL
) && which_button
!= MOUSE_LEFT
)
2330 * When a modifier is down, ignore drag and release events, as well as
2331 * multiple clicks and the middle mouse button.
2332 * Accept shift-leftmouse drags when 'mousemodel' is "popup.*".
2334 if ((mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
| MOD_MASK_ALT
2337 || (mod_mask
& MOD_MASK_MULTI_CLICK
)
2338 || which_button
== MOUSE_MIDDLE
)
2339 && !((mod_mask
& (MOD_MASK_SHIFT
|MOD_MASK_ALT
))
2340 && mouse_model_popup()
2341 && which_button
== MOUSE_LEFT
)
2342 && !((mod_mask
& MOD_MASK_ALT
)
2343 && !mouse_model_popup()
2344 && which_button
== MOUSE_RIGHT
)
2349 * If the button press was used as the movement command for an operator
2350 * (eg "d<MOUSE>"), or it is the middle button that is held down, ignore
2351 * drag/release events.
2353 if (!is_click
&& which_button
== MOUSE_MIDDLE
)
2357 regname
= oap
->regname
;
2362 * Middle mouse button does a 'put' of the selected text
2364 if (which_button
== MOUSE_MIDDLE
)
2366 if (State
== NORMAL
)
2369 * If an operator was pending, we don't know what the user wanted
2370 * to do. Go back to normal mode: Clear the operator and beep().
2372 if (oap
!= NULL
&& oap
->op_type
!= OP_NOP
)
2380 * If visual was active, yank the highlighted text and put it
2381 * before the mouse pointer position.
2382 * In Select mode replace the highlighted text with the clipboard.
2388 stuffcharReadbuff(Ctrl_G
);
2389 stuffReadbuff((char_u
*)"\"+p");
2393 stuffcharReadbuff('y');
2394 stuffcharReadbuff(K_MIDDLEMOUSE
);
2396 do_always
= TRUE
; /* ignore 'mouse' setting next time */
2401 * The rest is below jump_to_mouse()
2405 else if ((State
& INSERT
) == 0)
2409 * Middle click in insert mode doesn't move the mouse, just insert the
2410 * contents of a register. '.' register is special, can't insert that
2412 * Also paste at the cursor if the current mode isn't in 'mouse' (only
2413 * happens for the GUI).
2415 if ((State
& INSERT
) || !mouse_has(MOUSE_NORMAL
))
2418 insert_reg(regname
, TRUE
);
2421 #ifdef FEAT_CLIPBOARD
2422 if (clip_star
.available
&& regname
== 0)
2425 if ((State
& REPLACE_FLAG
) && !yank_register_mline(regname
))
2426 insert_reg(regname
, TRUE
);
2429 do_put(regname
, BACKWARD
, 1L, fixindent
| PUT_CURSEND
);
2431 /* Repeat it with CTRL-R CTRL-O r or CTRL-R CTRL-P r */
2432 AppendCharToRedobuff(Ctrl_R
);
2433 AppendCharToRedobuff(fixindent
? Ctrl_P
: Ctrl_O
);
2434 AppendCharToRedobuff(regname
== 0 ? '"' : regname
);
2441 /* When dragging or button-up stay in the same window. */
2443 jump_flags
|= MOUSE_FOCUS
| MOUSE_DID_MOVE
;
2445 start_visual
.lnum
= 0;
2448 /* Check for clicking in the tab page line. */
2449 if (mouse_row
== 0 && firstwin
->w_winrow
> 0)
2451 got_click
= FALSE
; /* ignore mouse-up and drag events */
2453 /* click in a tab selects that tab page */
2458 && mouse_col
< Columns
)
2460 c1
= TabPageIdxs
[mouse_col
];
2463 if ((mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_2CLICK
)
2465 /* double click opens new page */
2468 tabpage_move(c1
== 0 ? 9999 : c1
- 1);
2472 /* Go to specified tab page, or next one if not clicking
2476 /* It's like clicking on the status line of a window. */
2477 if (curwin
!= old_curwin
)
2485 /* Close the current or specified tab page. */
2489 tp
= find_tabpage(-c1
);
2492 if (first_tabpage
->tp_next
!= NULL
)
2493 tabpage_close(FALSE
);
2495 else if (tp
!= NULL
)
2496 tabpage_close_other(tp
, FALSE
);
2504 * When 'mousemodel' is "popup" or "popup_setpos", translate mouse events:
2505 * right button up -> pop-up menu
2506 * shift-left button -> right button
2507 * alt-left button -> alt-right button
2509 if (mouse_model_popup())
2511 if (which_button
== MOUSE_RIGHT
2512 && !(mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
)))
2515 * NOTE: Ignore right button down and drag mouse events.
2516 * Windows only shows the popup menu on the button up event.
2518 #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
2519 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2523 #if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN)
2524 if (is_click
|| is_drag
)
2527 #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
2528 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
2529 || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_PHOTON)
2533 if (STRCMP(p_mousem
, "popup_setpos") == 0)
2535 /* First set the cursor position before showing the popup
2543 * set MOUSE_MAY_STOP_VIS if we are outside the
2544 * selection or the current window (might have false
2547 if (mouse_row
< W_WINROW(curwin
)
2549 > (W_WINROW(curwin
) + curwin
->w_height
))
2550 jump_flags
= MOUSE_MAY_STOP_VIS
;
2551 else if (get_fpos_of_mouse(&m_pos
) != IN_BUFFER
)
2552 jump_flags
= MOUSE_MAY_STOP_VIS
;
2555 if ((lt(curwin
->w_cursor
, VIsual
)
2556 && (lt(m_pos
, curwin
->w_cursor
)
2557 || lt(VIsual
, m_pos
)))
2558 || (lt(VIsual
, curwin
->w_cursor
)
2559 && (lt(m_pos
, VIsual
)
2560 || lt(curwin
->w_cursor
, m_pos
))))
2562 jump_flags
= MOUSE_MAY_STOP_VIS
;
2564 else if (VIsual_mode
== Ctrl_V
)
2566 getvcols(curwin
, &curwin
->w_cursor
, &VIsual
,
2567 &leftcol
, &rightcol
);
2568 getvcol(curwin
, &m_pos
, NULL
, &m_pos
.col
, NULL
);
2569 if (m_pos
.col
< leftcol
|| m_pos
.col
> rightcol
)
2570 jump_flags
= MOUSE_MAY_STOP_VIS
;
2575 jump_flags
= MOUSE_MAY_STOP_VIS
;
2580 jump_flags
= jump_to_mouse(jump_flags
, NULL
, which_button
);
2583 VIsual_active
? INVERTED
:
2587 out_flush(); /* Update before showing popup menu */
2590 gui_show_popupmenu();
2592 return (jump_flags
& CURSOR_MOVED
) != 0;
2600 if (which_button
== MOUSE_LEFT
2601 && (mod_mask
& (MOD_MASK_SHIFT
|MOD_MASK_ALT
)))
2603 which_button
= MOUSE_RIGHT
;
2604 mod_mask
&= ~MOD_MASK_SHIFT
;
2609 if ((State
& (NORMAL
| INSERT
))
2610 && !(mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
)))
2612 if (which_button
== MOUSE_LEFT
)
2616 /* stop Visual mode for a left click in a window, but not when
2617 * on a status line */
2619 jump_flags
|= MOUSE_MAY_STOP_VIS
;
2621 else if (mouse_has(MOUSE_VISUAL
))
2622 jump_flags
|= MOUSE_MAY_VIS
;
2624 else if (which_button
== MOUSE_RIGHT
)
2626 if (is_click
&& VIsual_active
)
2629 * Remember the start and end of visual before moving the
2632 if (lt(curwin
->w_cursor
, VIsual
))
2634 start_visual
= curwin
->w_cursor
;
2635 end_visual
= VIsual
;
2639 start_visual
= VIsual
;
2640 end_visual
= curwin
->w_cursor
;
2643 jump_flags
|= MOUSE_FOCUS
;
2644 if (mouse_has(MOUSE_VISUAL
))
2645 jump_flags
|= MOUSE_MAY_VIS
;
2651 * If an operator is pending, ignore all drags and releases until the
2654 if (!is_drag
&& oap
!= NULL
&& oap
->op_type
!= OP_NOP
)
2657 oap
->motion_type
= MCHAR
;
2660 /* When releasing the button let jump_to_mouse() know. */
2661 if (!is_click
&& !is_drag
)
2662 jump_flags
|= MOUSE_RELEASED
;
2667 jump_flags
= jump_to_mouse(jump_flags
,
2668 oap
== NULL
? NULL
: &(oap
->inclusive
), which_button
);
2669 moved
= (jump_flags
& CURSOR_MOVED
);
2670 in_status_line
= (jump_flags
& IN_STATUS_LINE
);
2671 #ifdef FEAT_VERTSPLIT
2672 in_sep_line
= (jump_flags
& IN_SEP_LINE
);
2675 #ifdef FEAT_NETBEANS_INTG
2676 if (usingNetbeans
&& isNetbeansBuffer(curbuf
)
2677 && !(jump_flags
& (IN_STATUS_LINE
| IN_SEP_LINE
)))
2679 int key
= KEY2TERMCAP1(c
);
2681 if (key
== (int)KE_LEFTRELEASE
|| key
== (int)KE_MIDDLERELEASE
2682 || key
== (int)KE_RIGHTRELEASE
)
2683 netbeans_button_release(which_button
);
2687 /* When jumping to another window, clear a pending operator. That's a bit
2688 * friendlier than beeping and not jumping to that window. */
2689 if (curwin
!= old_curwin
&& oap
!= NULL
&& oap
->op_type
!= OP_NOP
)
2695 && (jump_flags
& (MOUSE_FOLD_CLOSE
| MOUSE_FOLD_OPEN
))
2696 && which_button
== MOUSE_LEFT
)
2698 /* open or close a fold at this line */
2699 if (jump_flags
& MOUSE_FOLD_OPEN
)
2700 openFold(curwin
->w_cursor
.lnum
, 1L);
2702 closeFold(curwin
->w_cursor
.lnum
, 1L);
2703 /* don't move the cursor if still in the same window */
2704 if (curwin
== old_curwin
)
2705 curwin
->w_cursor
= save_cursor
;
2709 #if defined(FEAT_CLIPBOARD) && defined(FEAT_CMDWIN)
2710 if ((jump_flags
& IN_OTHER_WIN
) && !VIsual_active
&& clip_star
.available
)
2712 clip_modeless(which_button
, is_click
, is_drag
);
2718 /* Set global flag that we are extending the Visual area with mouse
2719 * dragging; temporarily minimize 'scrolloff'. */
2720 if (VIsual_active
&& is_drag
&& p_so
)
2722 /* In the very first line, allow scrolling one line */
2729 /* When dragging the mouse above the window, scroll down. */
2730 if (is_drag
&& mouse_row
< 0 && !in_status_line
)
2732 scroll_redraw(FALSE
, 1L);
2736 if (start_visual
.lnum
) /* right click in visual mode */
2738 /* When ALT is pressed make Visual mode blockwise. */
2739 if (mod_mask
& MOD_MASK_ALT
)
2740 VIsual_mode
= Ctrl_V
;
2743 * In Visual-block mode, divide the area in four, pick up the corner
2744 * that is in the quarter that the cursor is in.
2746 if (VIsual_mode
== Ctrl_V
)
2748 getvcols(curwin
, &start_visual
, &end_visual
, &leftcol
, &rightcol
);
2749 if (curwin
->w_curswant
> (leftcol
+ rightcol
) / 2)
2750 end_visual
.col
= leftcol
;
2752 end_visual
.col
= rightcol
;
2753 if (curwin
->w_cursor
.lnum
<
2754 (start_visual
.lnum
+ end_visual
.lnum
) / 2)
2755 end_visual
.lnum
= end_visual
.lnum
;
2757 end_visual
.lnum
= start_visual
.lnum
;
2759 /* move VIsual to the right column */
2760 start_visual
= curwin
->w_cursor
; /* save the cursor pos */
2761 curwin
->w_cursor
= end_visual
;
2762 coladvance(end_visual
.col
);
2763 VIsual
= curwin
->w_cursor
;
2764 curwin
->w_cursor
= start_visual
; /* restore the cursor */
2769 * If the click is before the start of visual, change the start.
2770 * If the click is after the end of visual, change the end. If
2771 * the click is inside the visual, change the closest side.
2773 if (lt(curwin
->w_cursor
, start_visual
))
2774 VIsual
= end_visual
;
2775 else if (lt(end_visual
, curwin
->w_cursor
))
2776 VIsual
= start_visual
;
2779 /* In the same line, compare column number */
2780 if (end_visual
.lnum
== start_visual
.lnum
)
2782 if (curwin
->w_cursor
.col
- start_visual
.col
>
2783 end_visual
.col
- curwin
->w_cursor
.col
)
2784 VIsual
= start_visual
;
2786 VIsual
= end_visual
;
2789 /* In different lines, compare line number */
2792 diff
= (curwin
->w_cursor
.lnum
- start_visual
.lnum
) -
2793 (end_visual
.lnum
- curwin
->w_cursor
.lnum
);
2795 if (diff
> 0) /* closest to end */
2796 VIsual
= start_visual
;
2797 else if (diff
< 0) /* closest to start */
2798 VIsual
= end_visual
;
2799 else /* in the middle line */
2801 if (curwin
->w_cursor
.col
<
2802 (start_visual
.col
+ end_visual
.col
) / 2)
2803 VIsual
= end_visual
;
2805 VIsual
= start_visual
;
2812 * If Visual mode started in insert mode, execute "CTRL-O"
2814 else if ((State
& INSERT
) && VIsual_active
)
2815 stuffcharReadbuff(Ctrl_O
);
2819 * Middle mouse click: Put text before cursor.
2821 if (which_button
== MOUSE_MIDDLE
)
2823 #ifdef FEAT_CLIPBOARD
2824 if (clip_star
.available
&& regname
== 0)
2827 if (yank_register_mline(regname
))
2829 if (mouse_past_bottom
)
2832 else if (mouse_past_eol
)
2837 c1
= (dir
== BACKWARD
) ? '[' : ']';
2842 c1
= (dir
== FORWARD
) ? 'p' : 'P';
2845 prep_redo(regname
, count
, NUL
, c1
, NUL
, c2
, NUL
);
2848 * Remember where the paste started, so in edit() Insstart can be set
2851 if (restart_edit
!= 0)
2852 where_paste_started
= curwin
->w_cursor
;
2853 do_put(regname
, dir
, count
, fixindent
| PUT_CURSEND
);
2856 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
2858 * Ctrl-Mouse click or double click in a quickfix window jumps to the
2859 * error under the mouse pointer.
2861 else if (((mod_mask
& MOD_MASK_CTRL
)
2862 || (mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_2CLICK
)
2863 && bt_quickfix(curbuf
))
2866 stuffcharReadbuff(Ctrl_O
);
2867 if (curwin
->w_llist_ref
== NULL
) /* quickfix window */
2868 stuffReadbuff((char_u
*)":.cc\n");
2869 else /* location list window */
2870 stuffReadbuff((char_u
*)":.ll\n");
2871 got_click
= FALSE
; /* ignore drag&release now */
2876 * Ctrl-Mouse click (or double click in a help window) jumps to the tag
2877 * under the mouse pointer.
2879 else if ((mod_mask
& MOD_MASK_CTRL
) || (curbuf
->b_help
2880 && (mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_2CLICK
))
2883 stuffcharReadbuff(Ctrl_O
);
2884 stuffcharReadbuff(Ctrl_RSB
);
2885 got_click
= FALSE
; /* ignore drag&release now */
2889 * Shift-Mouse click searches for the next occurrence of the word under
2892 else if ((mod_mask
& MOD_MASK_SHIFT
))
2896 || (VIsual_active
&& VIsual_select
)
2899 stuffcharReadbuff(Ctrl_O
);
2900 if (which_button
== MOUSE_LEFT
)
2901 stuffcharReadbuff('*');
2902 else /* MOUSE_RIGHT */
2903 stuffcharReadbuff('#');
2906 /* Handle double clicks, unless on status line */
2907 else if (in_status_line
)
2909 #ifdef FEAT_MOUSESHAPE
2910 if ((is_drag
|| is_click
) && !drag_status_line
)
2912 drag_status_line
= TRUE
;
2913 update_mouseshape(-1);
2917 #ifdef FEAT_VERTSPLIT
2918 else if (in_sep_line
)
2920 # ifdef FEAT_MOUSESHAPE
2921 if ((is_drag
|| is_click
) && !drag_sep_line
)
2923 drag_sep_line
= TRUE
;
2924 update_mouseshape(-1);
2930 else if ((mod_mask
& MOD_MASK_MULTI_CLICK
) && (State
& (NORMAL
| INSERT
))
2931 && mouse_has(MOUSE_VISUAL
))
2933 if (is_click
|| !VIsual_active
)
2936 orig_cursor
= VIsual
;
2939 check_visual_highlight();
2940 VIsual
= curwin
->w_cursor
;
2941 orig_cursor
= VIsual
;
2942 VIsual_active
= TRUE
;
2943 VIsual_reselect
= TRUE
;
2944 /* start Select mode if 'selectmode' contains "mouse" */
2945 may_start_select('o');
2948 if ((mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_2CLICK
)
2950 /* Double click with ALT pressed makes it blockwise. */
2951 if (mod_mask
& MOD_MASK_ALT
)
2952 VIsual_mode
= Ctrl_V
;
2956 else if ((mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_3CLICK
)
2958 else if ((mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_4CLICK
)
2959 VIsual_mode
= Ctrl_V
;
2960 #ifdef FEAT_CLIPBOARD
2961 /* Make sure the clipboard gets updated. Needed because start and
2962 * end may still be the same, and the selection needs to be owned */
2963 clip_star
.vmode
= NUL
;
2967 * A double click selects a word or a block.
2969 if ((mod_mask
& MOD_MASK_MULTI_CLICK
) == MOD_MASK_2CLICK
)
2976 /* If the character under the cursor (skipping white space) is
2977 * not a word character, try finding a match and select a (),
2978 * {}, [], #if/#endif, etc. block. */
2979 end_visual
= curwin
->w_cursor
;
2980 while (gc
= gchar_pos(&end_visual
), vim_iswhite(gc
))
2983 oap
->motion_type
= MCHAR
;
2985 && VIsual_mode
== 'v'
2986 && !vim_iswordc(gchar_pos(&end_visual
))
2987 && equalpos(curwin
->w_cursor
, VIsual
)
2988 && (pos
= findmatch(oap
, NUL
)) != NULL
)
2990 curwin
->w_cursor
= *pos
;
2991 if (oap
->motion_type
== MLINE
)
2993 else if (*p_sel
== 'e')
2995 if (lt(curwin
->w_cursor
, VIsual
))
2998 ++curwin
->w_cursor
.col
;
3003 if (pos
== NULL
&& (is_click
|| is_drag
))
3005 /* When not found a match or when dragging: extend to include
3007 if (lt(curwin
->w_cursor
, orig_cursor
))
3009 find_start_of_word(&curwin
->w_cursor
);
3010 find_end_of_word(&VIsual
);
3014 find_start_of_word(&VIsual
);
3015 if (*p_sel
== 'e' && *ml_get_cursor() != NUL
)
3017 curwin
->w_cursor
.col
+=
3018 (*mb_ptr2len
)(ml_get_cursor());
3020 ++curwin
->w_cursor
.col
;
3022 find_end_of_word(&curwin
->w_cursor
);
3025 curwin
->w_set_curswant
= TRUE
;
3028 redraw_curbuf_later(INVERTED
); /* update the inversion */
3030 else if (VIsual_active
&& !old_active
)
3032 if (mod_mask
& MOD_MASK_ALT
)
3033 VIsual_mode
= Ctrl_V
;
3038 /* If Visual mode changed show it later. */
3039 if ((!VIsual_active
&& old_active
&& mode_displayed
)
3040 || (VIsual_active
&& p_smd
&& msg_silent
== 0
3041 && (!old_active
|| VIsual_mode
!= old_mode
)))
3042 redraw_cmdline
= TRUE
;
3050 * Move "pos" back to the start of the word it's in.
3053 find_start_of_word(pos
)
3060 line
= ml_get(pos
->lnum
);
3061 cclass
= get_mouse_class(line
+ pos
->col
);
3063 while (pos
->col
> 0)
3067 col
-= (*mb_head_off
)(line
, line
+ col
);
3069 if (get_mouse_class(line
+ col
) != cclass
)
3076 * Move "pos" forward to the end of the word it's in.
3077 * When 'selection' is "exclusive", the position is just after the word.
3080 find_end_of_word(pos
)
3087 line
= ml_get(pos
->lnum
);
3088 if (*p_sel
== 'e' && pos
->col
> 0)
3092 pos
->col
-= (*mb_head_off
)(line
, line
+ pos
->col
);
3095 cclass
= get_mouse_class(line
+ pos
->col
);
3096 while (line
[pos
->col
] != NUL
)
3099 col
= pos
->col
+ (*mb_ptr2len
)(line
+ pos
->col
);
3103 if (get_mouse_class(line
+ col
) != cclass
)
3114 * Get class of a character for selection: same class means same word.
3116 * 1: punctuation groups
3117 * 2: normal word character
3118 * >2: multi-byte word character.
3127 if (has_mbyte
&& MB_BYTE2LEN(p
[0]) > 1)
3128 return mb_get_class(p
);
3132 if (c
== ' ' || c
== '\t')
3139 * There are a few special cases where we want certain combinations of
3140 * characters to be considered as a single word. These are things like
3141 * "->", "/ *", "*=", "+=", "&=", "<=", ">=", "!=" etc. Otherwise, each
3142 * character is in it's own class.
3144 if (c
!= NUL
&& vim_strchr((char_u
*)"-+*/%<>&|^!=", c
) != NULL
)
3148 #endif /* FEAT_VISUAL */
3149 #endif /* FEAT_MOUSE */
3151 #if defined(FEAT_VISUAL) || defined(PROTO)
3153 * Check if highlighting for visual mode is possible, give a warning message
3157 check_visual_highlight()
3159 static int did_check
= FALSE
;
3163 if (!did_check
&& hl_attr(HLF_V
) == 0)
3164 MSG(_("Warning: terminal cannot highlight"));
3171 * This function should ALWAYS be called to end Visual mode, except from
3172 * do_pending_operator().
3177 #ifdef FEAT_CLIPBOARD
3179 * If we are using the clipboard, then remember what was selected in case
3180 * we need to paste it somewhere while we still own the selection.
3181 * Only do this when the clipboard is already owned. Don't want to grab
3182 * the selection when hitting ESC.
3184 if (clip_star
.available
&& clip_star
.owned
)
3188 VIsual_active
= FALSE
;
3194 /* Save the current VIsual area for '< and '> marks, and "gv" */
3195 curbuf
->b_visual
.vi_mode
= VIsual_mode
;
3196 curbuf
->b_visual
.vi_start
= VIsual
;
3197 curbuf
->b_visual
.vi_end
= curwin
->w_cursor
;
3198 curbuf
->b_visual
.vi_curswant
= curwin
->w_curswant
;
3200 curbuf
->b_visual_mode_eval
= VIsual_mode
;
3202 #ifdef FEAT_VIRTUALEDIT
3203 if (!virtual_active())
3204 curwin
->w_cursor
.coladd
= 0;
3208 clear_cmdline
= TRUE
; /* unshow visual mode later */
3209 #ifdef FEAT_CMDL_INFO
3214 adjust_cursor_eol();
3218 * Reset VIsual_active and VIsual_reselect.
3221 reset_VIsual_and_resel()
3226 redraw_curbuf_later(INVERTED
); /* delete the inversion later */
3228 VIsual_reselect
= FALSE
;
3232 * Reset VIsual_active and VIsual_reselect if it's set.
3240 redraw_curbuf_later(INVERTED
); /* delete the inversion later */
3241 VIsual_reselect
= FALSE
;
3244 #endif /* FEAT_VISUAL */
3246 #if defined(FEAT_BEVAL)
3247 static int find_is_eval_item
__ARGS((char_u
*ptr
, int *colp
, int *nbp
, int dir
));
3250 * Check for a balloon-eval special item to include when searching for an
3251 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
3252 * Returns TRUE if the character at "*ptr" should be included.
3253 * "dir" is FORWARD or BACKWARD, the direction of searching.
3254 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
3255 * "bnp" points to a counter for square brackets.
3258 find_is_eval_item(ptr
, colp
, bnp
, dir
)
3264 /* Accept everything inside []. */
3265 if ((*ptr
== ']' && dir
== BACKWARD
) || (*ptr
== '[' && dir
== FORWARD
))
3269 if ((*ptr
== '[' && dir
== BACKWARD
) || (*ptr
== ']' && dir
== FORWARD
))
3274 /* skip over "s.var" */
3278 /* two-character item: s->var */
3279 if (ptr
[dir
== BACKWARD
? 0 : 1] == '>'
3280 && ptr
[dir
== BACKWARD
? -1 : 0] == '-')
3290 * Find the identifier under or to the right of the cursor.
3291 * "find_type" can have one of three values:
3292 * FIND_IDENT: find an identifier (keyword)
3293 * FIND_STRING: find any non-white string
3294 * FIND_IDENT + FIND_STRING: find any non-white string, identifier preferred.
3295 * FIND_EVAL: find text useful for C program debugging
3297 * There are three steps:
3298 * 1. Search forward for the start of an identifier/string. Doesn't move if
3300 * 2. Search backward for the start of this identifier/string.
3301 * This doesn't match the real Vi but I like it a little better and it
3302 * shouldn't bother anyone.
3303 * 3. Search forward to the end of this identifier/string.
3304 * When FIND_IDENT isn't defined, we backup until a blank.
3306 * Returns the length of the string, or zero if no string is found.
3307 * If a string is found, a pointer to the string is put in "*string". This
3308 * string is not always NUL terminated.
3311 find_ident_under_cursor(string
, find_type
)
3315 return find_ident_at_pos(curwin
, curwin
->w_cursor
.lnum
,
3316 curwin
->w_cursor
.col
, string
, find_type
);
3320 * Like find_ident_under_cursor(), but for any window and any position.
3321 * However: Uses 'iskeyword' from the current window!.
3324 find_ident_at_pos(wp
, lnum
, startcol
, string
, find_type
)
3332 int col
= 0; /* init to shut up GCC */
3339 #if defined(FEAT_BEVAL)
3340 int bn
= 0; /* bracket nesting */
3344 * if i == 0: try to find an identifier
3345 * if i == 1: try to find any non-white string
3347 ptr
= ml_get_buf(wp
->w_buffer
, lnum
, FALSE
);
3348 for (i
= (find_type
& FIND_IDENT
) ? 0 : 1; i
< 2; ++i
)
3351 * 1. skip to start of identifier/string
3357 while (ptr
[col
] != NUL
)
3359 # if defined(FEAT_BEVAL)
3360 /* Stop at a ']' to evaluate "a[x]". */
3361 if ((find_type
& FIND_EVAL
) && ptr
[col
] == ']')
3364 this_class
= mb_get_class(ptr
+ col
);
3365 if (this_class
!= 0 && (i
== 1 || this_class
!= 1))
3367 col
+= (*mb_ptr2len
)(ptr
+ col
);
3372 while (ptr
[col
] != NUL
3373 && (i
== 0 ? !vim_iswordc(ptr
[col
]) : vim_iswhite(ptr
[col
]))
3374 # if defined(FEAT_BEVAL)
3375 && (!(find_type
& FIND_EVAL
) || ptr
[col
] != ']')
3380 #if defined(FEAT_BEVAL)
3381 /* When starting on a ']' count it, so that we include the '['. */
3382 bn
= ptr
[col
] == ']';
3386 * 2. Back up to start of identifier/string.
3391 /* Remember class of character under cursor. */
3392 # if defined(FEAT_BEVAL)
3393 if ((find_type
& FIND_EVAL
) && ptr
[col
] == ']')
3394 this_class
= mb_get_class((char_u
*)"a");
3397 this_class
= mb_get_class(ptr
+ col
);
3398 while (col
> 0 && this_class
!= 0)
3400 prevcol
= col
- 1 - (*mb_head_off
)(ptr
, ptr
+ col
- 1);
3401 prev_class
= mb_get_class(ptr
+ prevcol
);
3402 if (this_class
!= prev_class
3405 || (find_type
& FIND_IDENT
))
3406 # if defined(FEAT_BEVAL)
3407 && (!(find_type
& FIND_EVAL
)
3409 || !find_is_eval_item(ptr
+ prevcol
, &prevcol
,
3417 /* If we don't want just any old string, or we've found an
3418 * identifier, stop searching. */
3421 if (!(find_type
& FIND_STRING
) || this_class
== 2)
3429 ? vim_iswordc(ptr
[col
- 1])
3430 : (!vim_iswhite(ptr
[col
- 1])
3431 && (!(find_type
& FIND_IDENT
)
3432 || !vim_iswordc(ptr
[col
- 1]))))
3433 #if defined(FEAT_BEVAL)
3434 || ((find_type
& FIND_EVAL
)
3436 && find_is_eval_item(ptr
+ col
- 1, &col
,
3442 /* If we don't want just any old string, or we've found an
3443 * identifier, stop searching. */
3444 if (!(find_type
& FIND_STRING
) || vim_iswordc(ptr
[col
]))
3449 if (ptr
[col
] == NUL
|| (i
== 0 && (
3451 has_mbyte
? this_class
!= 2 :
3453 !vim_iswordc(ptr
[col
]))))
3456 * didn't find an identifier or string
3458 if (find_type
& FIND_STRING
)
3459 EMSG(_("E348: No string under cursor"));
3461 EMSG(_("E349: No identifier under cursor"));
3468 * 3. Find the end if the identifier/string.
3470 #if defined(FEAT_BEVAL)
3478 /* Search for point of changing multibyte character class. */
3479 this_class
= mb_get_class(ptr
);
3480 while (ptr
[col
] != NUL
3481 && ((i
== 0 ? mb_get_class(ptr
+ col
) == this_class
3482 : mb_get_class(ptr
+ col
) != 0)
3483 # if defined(FEAT_BEVAL)
3484 || ((find_type
& FIND_EVAL
)
3485 && col
<= (int)startcol
3486 && find_is_eval_item(ptr
+ col
, &col
, &bn
, FORWARD
))
3489 col
+= (*mb_ptr2len
)(ptr
+ col
);
3493 while ((i
== 0 ? vim_iswordc(ptr
[col
])
3494 : (ptr
[col
] != NUL
&& !vim_iswhite(ptr
[col
])))
3495 # if defined(FEAT_BEVAL)
3496 || ((find_type
& FIND_EVAL
)
3497 && col
<= (int)startcol
3498 && find_is_eval_item(ptr
+ col
, &col
, &bn
, FORWARD
))
3509 * Prepare for redo of a normal command.
3515 prep_redo(cap
->oap
->regname
, cap
->count0
,
3516 NUL
, cap
->cmdchar
, NUL
, NUL
, cap
->nchar
);
3520 * Prepare for redo of any command.
3521 * Note that only the last argument can be a multi-byte char.
3524 prep_redo(regname
, num
, cmd1
, cmd2
, cmd3
, cmd4
, cmd5
)
3534 if (regname
!= 0) /* yank from specified buffer */
3536 AppendCharToRedobuff('"');
3537 AppendCharToRedobuff(regname
);
3540 AppendNumberToRedobuff(num
);
3543 AppendCharToRedobuff(cmd1
);
3545 AppendCharToRedobuff(cmd2
);
3547 AppendCharToRedobuff(cmd3
);
3549 AppendCharToRedobuff(cmd4
);
3551 AppendCharToRedobuff(cmd5
);
3555 * check for operator active and clear it
3557 * return TRUE if operator was active
3563 if (oap
->op_type
== OP_NOP
)
3570 * Check for operator or Visual active. Clear active operator.
3572 * Return TRUE if operator or Visual was active.
3578 if (oap
->op_type
== OP_NOP
3592 oap
->op_type
= OP_NOP
;
3594 oap
->motion_force
= NUL
;
3595 oap
->use_reg_one
= FALSE
;
3608 * Remove the shift modifier from a special key.
3611 unshift_special(cap
)
3614 switch (cap
->cmdchar
)
3616 case K_S_RIGHT
: cap
->cmdchar
= K_RIGHT
; break;
3617 case K_S_LEFT
: cap
->cmdchar
= K_LEFT
; break;
3618 case K_S_UP
: cap
->cmdchar
= K_UP
; break;
3619 case K_S_DOWN
: cap
->cmdchar
= K_DOWN
; break;
3620 case K_S_HOME
: cap
->cmdchar
= K_HOME
; break;
3621 case K_S_END
: cap
->cmdchar
= K_END
; break;
3623 cap
->cmdchar
= simplify_key(cap
->cmdchar
, &mod_mask
);
3627 #if defined(FEAT_CMDL_INFO) || defined(PROTO)
3629 * Routines for displaying a partly typed command
3632 #ifdef FEAT_VISUAL /* need room for size of Visual area */
3633 # define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
3635 # define SHOWCMD_BUFLEN SHOWCMD_COLS + 1
3637 static char_u showcmd_buf
[SHOWCMD_BUFLEN
];
3638 static char_u old_showcmd_buf
[SHOWCMD_BUFLEN
]; /* For push_showcmd() */
3639 static int showcmd_is_clear
= TRUE
;
3640 static int showcmd_visual
= FALSE
;
3642 static void display_showcmd
__ARGS((void));
3651 if (VIsual_active
&& !char_avail())
3653 int i
= lt(VIsual
, curwin
->w_cursor
);
3655 colnr_T leftcol
, rightcol
;
3658 /* Show the size of the Visual area. */
3662 bot
= curwin
->w_cursor
.lnum
;
3666 top
= curwin
->w_cursor
.lnum
;
3669 # ifdef FEAT_FOLDING
3670 /* Include closed folds as a whole. */
3671 hasFolding(top
, &top
, NULL
);
3672 hasFolding(bot
, NULL
, &bot
);
3674 lines
= bot
- top
+ 1;
3676 if (VIsual_mode
== Ctrl_V
)
3678 getvcols(curwin
, &curwin
->w_cursor
, &VIsual
, &leftcol
, &rightcol
);
3679 sprintf((char *)showcmd_buf
, "%ldx%ld", lines
,
3680 (long)(rightcol
- leftcol
+ 1));
3682 else if (VIsual_mode
== 'V' || VIsual
.lnum
!= curwin
->w_cursor
.lnum
)
3683 sprintf((char *)showcmd_buf
, "%ld", lines
);
3685 sprintf((char *)showcmd_buf
, "%ld", (long)(i
3686 ? curwin
->w_cursor
.col
- VIsual
.col
3687 : VIsual
.col
- curwin
->w_cursor
.col
) + (*p_sel
!= 'e'));
3688 showcmd_buf
[SHOWCMD_COLS
] = NUL
; /* truncate */
3689 showcmd_visual
= TRUE
;
3694 showcmd_buf
[0] = NUL
;
3695 showcmd_visual
= FALSE
;
3697 /* Don't actually display something if there is nothing to clear. */
3698 if (showcmd_is_clear
)
3706 * Add 'c' to string of shown command chars.
3707 * Return TRUE if output has been written (and setcursor() has been called).
3717 #if defined(FEAT_MOUSE)
3719 static int ignore
[] =
3722 K_VER_SCROLLBAR
, K_HOR_SCROLLBAR
,
3723 K_LEFTMOUSE_NM
, K_LEFTRELEASE_NM
,
3726 K_LEFTMOUSE
, K_LEFTDRAG
, K_LEFTRELEASE
,
3727 K_MIDDLEMOUSE
, K_MIDDLEDRAG
, K_MIDDLERELEASE
,
3728 K_RIGHTMOUSE
, K_RIGHTDRAG
, K_RIGHTRELEASE
,
3729 K_MOUSEDOWN
, K_MOUSEUP
,
3730 K_X1MOUSE
, K_X1DRAG
, K_X1RELEASE
, K_X2MOUSE
, K_X2DRAG
, K_X2RELEASE
,
3736 if (!p_sc
|| msg_silent
!= 0)
3741 showcmd_buf
[0] = NUL
;
3742 showcmd_visual
= FALSE
;
3745 #if defined(FEAT_MOUSE)
3746 /* Ignore keys that are scrollbar updates and mouse clicks */
3748 for (i
= 0; ignore
[i
] != 0; ++i
)
3754 old_len
= (int)STRLEN(showcmd_buf
);
3755 extra_len
= (int)STRLEN(p
);
3756 overflow
= old_len
+ extra_len
- SHOWCMD_COLS
;
3758 STRCPY(showcmd_buf
, showcmd_buf
+ overflow
);
3759 STRCAT(showcmd_buf
, p
);
3773 if (!add_to_showcmd(c
))
3778 * Delete 'len' characters from the end of the shown command.
3781 del_from_showcmd(len
)
3789 old_len
= (int)STRLEN(showcmd_buf
);
3792 showcmd_buf
[old_len
- len
] = NUL
;
3799 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
3800 * something and there is a partial mapping.
3806 STRCPY(old_showcmd_buf
, showcmd_buf
);
3815 STRCPY(showcmd_buf
, old_showcmd_buf
);
3827 len
= (int)STRLEN(showcmd_buf
);
3829 showcmd_is_clear
= TRUE
;
3832 screen_puts(showcmd_buf
, (int)Rows
- 1, sc_col
, 0);
3833 showcmd_is_clear
= FALSE
;
3837 * clear the rest of an old message by outputting up to SHOWCMD_COLS
3840 screen_puts((char_u
*)" " + len
, (int)Rows
- 1, sc_col
+ len
, 0);
3842 setcursor(); /* put cursor back where it belongs */
3846 #ifdef FEAT_SCROLLBIND
3848 * When "check" is FALSE, prepare for commands that scroll the window.
3849 * When "check" is TRUE, take care of scroll-binding after the window has
3850 * scrolled. Called from normal_cmd() and edit().
3853 do_check_scrollbind(check
)
3856 static win_T
*old_curwin
= NULL
;
3857 static linenr_T old_topline
= 0;
3859 static int old_topfill
= 0;
3861 static buf_T
*old_buf
= NULL
;
3862 static colnr_T old_leftcol
= 0;
3864 if (check
&& curwin
->w_p_scb
)
3866 /* If a ":syncbind" command was just used, don't scroll, only reset
3869 did_syncbind
= FALSE
;
3870 else if (curwin
== old_curwin
)
3873 * Synchronize other windows, as necessary according to
3874 * 'scrollbind'. Don't do this after an ":edit" command, except
3875 * when 'diff' is set.
3877 if ((curwin
->w_buffer
== old_buf
3882 && (curwin
->w_topline
!= old_topline
3884 || curwin
->w_topfill
!= old_topfill
3886 || curwin
->w_leftcol
!= old_leftcol
))
3888 check_scrollbind(curwin
->w_topline
- old_topline
,
3889 (long)(curwin
->w_leftcol
- old_leftcol
));
3892 else if (vim_strchr(p_sbo
, 'j')) /* jump flag set in 'scrollopt' */
3895 * When switching between windows, make sure that the relative
3896 * vertical offset is valid for the new window. The relative
3897 * offset is invalid whenever another 'scrollbind' window has
3898 * scrolled to a point that would force the current window to
3899 * scroll past the beginning or end of its buffer. When the
3900 * resync is performed, some of the other 'scrollbind' windows may
3901 * need to jump so that the current window's relative position is
3902 * visible on-screen.
3904 check_scrollbind(curwin
->w_topline
- curwin
->w_scbind_pos
, 0L);
3906 curwin
->w_scbind_pos
= curwin
->w_topline
;
3909 old_curwin
= curwin
;
3910 old_topline
= curwin
->w_topline
;
3912 old_topfill
= curwin
->w_topfill
;
3914 old_buf
= curwin
->w_buffer
;
3915 old_leftcol
= curwin
->w_leftcol
;
3919 * Synchronize any windows that have "scrollbind" set, based on the
3920 * number of rows by which the current window has changed
3921 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
3924 check_scrollbind(topline_diff
, leftcol_diff
)
3925 linenr_T topline_diff
;
3930 win_T
*old_curwin
= curwin
;
3931 buf_T
*old_curbuf
= curbuf
;
3933 int old_VIsual_select
= VIsual_select
;
3934 int old_VIsual_active
= VIsual_active
;
3936 colnr_T tgt_leftcol
= curwin
->w_leftcol
;
3941 * check 'scrollopt' string for vertical and horizontal scroll options
3943 want_ver
= (vim_strchr(p_sbo
, 'v') && topline_diff
!= 0);
3945 want_ver
|= old_curwin
->w_p_diff
;
3947 want_hor
= (vim_strchr(p_sbo
, 'h') && (leftcol_diff
|| topline_diff
!= 0));
3950 * loop through the scrollbound windows and scroll accordingly
3953 VIsual_select
= VIsual_active
= 0;
3955 for (curwin
= firstwin
; curwin
; curwin
= curwin
->w_next
)
3957 curbuf
= curwin
->w_buffer
;
3958 /* skip original window and windows with 'noscrollbind' */
3959 if (curwin
!= old_curwin
&& curwin
->w_p_scb
)
3962 * do the vertical scroll
3967 if (old_curwin
->w_p_diff
&& curwin
->w_p_diff
)
3969 diff_set_topline(old_curwin
, curwin
);
3974 curwin
->w_scbind_pos
+= topline_diff
;
3975 topline
= curwin
->w_scbind_pos
;
3976 if (topline
> curbuf
->b_ml
.ml_line_count
)
3977 topline
= curbuf
->b_ml
.ml_line_count
;
3981 y
= topline
- curwin
->w_topline
;
3985 scrolldown(-y
, FALSE
);
3988 redraw_later(VALID
);
3991 curwin
->w_redr_status
= TRUE
;
3996 * do the horizontal scroll
3998 if (want_hor
&& curwin
->w_leftcol
!= tgt_leftcol
)
4000 curwin
->w_leftcol
= tgt_leftcol
;
4007 * reset current-window
4010 VIsual_select
= old_VIsual_select
;
4011 VIsual_active
= old_VIsual_active
;
4013 curwin
= old_curwin
;
4014 curbuf
= old_curbuf
;
4016 #endif /* #ifdef FEAT_SCROLLBIND */
4019 * Command character that's ignored.
4020 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
4027 cap
->retval
|= CA_COMMAND_BUSY
; /* don't call edit() now */
4031 * Command character that doesn't do anything, but unlike nv_ignore() does
4032 * start edit(). Used for "startinsert" executed while starting up.
4042 * Command character doesn't exist.
4048 clearopbeep(cap
->oap
);
4052 * <Help> and <F1> commands.
4058 if (!checkclearopq(cap
->oap
))
4063 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
4069 if (!checkclearopq(cap
->oap
)
4070 && do_addsub((int)cap
->cmdchar
, cap
->count1
) == OK
)
4075 * CTRL-F, CTRL-B, etc: Scroll page up or down.
4081 if (!checkclearop(cap
->oap
))
4084 if (mod_mask
& MOD_MASK_CTRL
)
4086 /* <C-PageUp>: tab page back; <C-PageDown>: tab page forward */
4087 if (cap
->arg
== BACKWARD
)
4088 goto_tabpage(-(int)cap
->count1
);
4090 goto_tabpage((int)cap
->count0
);
4094 (void)onepage(cap
->arg
, cap
->count1
);
4099 * Implementation of "gd" and "gD" command.
4102 nv_gd(oap
, nchar
, thisblock
)
4105 int thisblock
; /* 1 for "1gd" and "1gD" */
4110 if ((len
= find_ident_under_cursor(&ptr
, FIND_IDENT
)) == 0
4111 || find_decl(ptr
, len
, nchar
== 'd', thisblock
, 0) == FAIL
)
4114 else if ((fdo_flags
& FDO_SEARCH
) && KeyTyped
&& oap
->op_type
== OP_NOP
)
4120 * Search for variable declaration of "ptr[len]".
4121 * When "locally" is TRUE in the current function ("gd"), otherwise in the
4122 * current file ("gD").
4123 * When "thisblock" is TRUE check the {} block scope.
4124 * Return FAIL when not found.
4127 find_decl(ptr
, len
, locally
, thisblock
, searchflags
)
4132 int searchflags
; /* flags passed to searchit() */
4144 if ((pat
= alloc(len
+ 7)) == NULL
)
4147 /* Put "\V" before the pattern to avoid that the special meaning of "."
4148 * and "~" causes trouble. */
4149 sprintf((char *)pat
, vim_iswordp(ptr
) ? "\\V\\<%.*s\\>" : "\\V%.*s",
4151 old_pos
= curwin
->w_cursor
;
4154 p_ws
= FALSE
; /* don't wrap around end of file now */
4155 p_scs
= FALSE
; /* don't switch ignorecase off now */
4158 * With "gD" go to line 1.
4159 * With "gd" Search back for the start of the current function, then go
4160 * back until a blank line. If this fails go to line 1.
4162 if (!locally
|| !findpar(&incll
, BACKWARD
, 1L, '{', FALSE
))
4164 setpcmark(); /* Set in findpar() otherwise */
4165 curwin
->w_cursor
.lnum
= 1;
4166 par_pos
= curwin
->w_cursor
;
4170 par_pos
= curwin
->w_cursor
;
4171 while (curwin
->w_cursor
.lnum
> 1 && *skipwhite(ml_get_curline()) != NUL
)
4172 --curwin
->w_cursor
.lnum
;
4174 curwin
->w_cursor
.col
= 0;
4176 /* Search forward for the identifier, ignore comment lines. */
4177 clearpos(&found_pos
);
4180 t
= searchit(curwin
, curbuf
, &curwin
->w_cursor
, FORWARD
,
4181 pat
, 1L, searchflags
, RE_LAST
, (linenr_T
)0);
4182 if (curwin
->w_cursor
.lnum
>= old_pos
.lnum
)
4183 t
= FAIL
; /* match after start is failure too */
4185 if (thisblock
&& t
!= FAIL
)
4189 /* Check that the block the match is in doesn't end before the
4190 * position where we started the search from. */
4191 if ((pos
= findmatchlimit(NULL
, '}', FM_FORWARD
,
4192 (int)(old_pos
.lnum
- curwin
->w_cursor
.lnum
+ 1))) != NULL
4193 && pos
->lnum
< old_pos
.lnum
)
4199 /* If we previously found a valid position, use it. */
4200 if (found_pos
.lnum
!= 0)
4202 curwin
->w_cursor
= found_pos
;
4207 #ifdef FEAT_COMMENTS
4208 if (get_leader_len(ml_get_curline(), NULL
, FALSE
) > 0)
4210 /* Ignore this line, continue at start of next line. */
4211 ++curwin
->w_cursor
.lnum
;
4212 curwin
->w_cursor
.col
= 0;
4216 if (!locally
) /* global search: use first match found */
4218 if (curwin
->w_cursor
.lnum
>= par_pos
.lnum
)
4220 /* If we previously found a valid position, use it. */
4221 if (found_pos
.lnum
!= 0)
4222 curwin
->w_cursor
= found_pos
;
4226 /* For finding a local variable and the match is before the "{" search
4227 * to find a later match. For K&R style function declarations this
4228 * skips the function header without types. */
4229 found_pos
= curwin
->w_cursor
;
4235 curwin
->w_cursor
= old_pos
;
4239 curwin
->w_set_curswant
= TRUE
;
4240 /* "n" searches forward now */
4252 * Move 'dist' lines in direction 'dir', counting lines by *screen*
4253 * lines rather than lines in the file.
4254 * 'dist' must be positive.
4256 * Return OK if able to move cursor, FAIL otherwise.
4259 nv_screengo(oap
, dir
, dist
)
4264 int linelen
= linetabsize(ml_get_curline());
4268 int col_off1
; /* margin offset for first screen line */
4269 int col_off2
; /* margin offset for wrapped screen line */
4270 int width1
; /* text width for first screen line */
4271 int width2
; /* test width for wrapped screen line */
4273 oap
->motion_type
= MCHAR
;
4274 oap
->inclusive
= FALSE
;
4276 col_off1
= curwin_col_off();
4277 col_off2
= col_off1
- curwin_col_off2();
4278 width1
= W_WIDTH(curwin
) - col_off1
;
4279 width2
= W_WIDTH(curwin
) - col_off2
;
4281 #ifdef FEAT_VERTSPLIT
4282 if (curwin
->w_width
!= 0)
4286 * Instead of sticking at the last character of the buffer line we
4287 * try to stick in the last column of the screen.
4289 if (curwin
->w_curswant
== MAXCOL
)
4294 curwin
->w_curswant
= 0;
4297 curwin
->w_curswant
= width1
- 1;
4298 if (curwin
->w_virtcol
> curwin
->w_curswant
)
4299 curwin
->w_curswant
+= ((curwin
->w_virtcol
4300 - curwin
->w_curswant
- 1) / width2
+ 1) * width2
;
4305 if (linelen
> width1
)
4306 n
= ((linelen
- width1
- 1) / width2
+ 1) * width2
+ width1
;
4309 if (curwin
->w_curswant
> (colnr_T
)n
+ 1)
4310 curwin
->w_curswant
-= ((curwin
->w_curswant
- n
) / width2
+ 1)
4316 if (dir
== BACKWARD
)
4318 if ((long)curwin
->w_curswant
>= width2
)
4319 /* move back within line */
4320 curwin
->w_curswant
-= width2
;
4323 /* to previous line */
4324 if (curwin
->w_cursor
.lnum
== 1)
4329 --curwin
->w_cursor
.lnum
;
4331 /* Move to the start of a closed fold. Don't do that when
4332 * 'foldopen' contains "all": it will open in a moment. */
4333 if (!(fdo_flags
& FDO_ALL
))
4334 (void)hasFolding(curwin
->w_cursor
.lnum
,
4335 &curwin
->w_cursor
.lnum
, NULL
);
4337 linelen
= linetabsize(ml_get_curline());
4338 if (linelen
> width1
)
4339 curwin
->w_curswant
+= (((linelen
- width1
- 1) / width2
)
4343 else /* dir == FORWARD */
4345 if (linelen
> width1
)
4346 n
= ((linelen
- width1
- 1) / width2
+ 1) * width2
+ width1
;
4349 if (curwin
->w_curswant
+ width2
< (colnr_T
)n
)
4350 /* move forward within line */
4351 curwin
->w_curswant
+= width2
;
4356 /* Move to the end of a closed fold. */
4357 (void)hasFolding(curwin
->w_cursor
.lnum
, NULL
,
4358 &curwin
->w_cursor
.lnum
);
4360 if (curwin
->w_cursor
.lnum
== curbuf
->b_ml
.ml_line_count
)
4365 curwin
->w_cursor
.lnum
++;
4366 curwin
->w_curswant
%= width2
;
4370 #ifdef FEAT_VERTSPLIT
4374 coladvance(curwin
->w_curswant
);
4376 #if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
4377 if (curwin
->w_cursor
.col
> 0 && curwin
->w_p_wrap
)
4380 * Check for landing on a character that got split at the end of the
4381 * last line. We want to advance a screenline, not end up in the same
4382 * screenline or move two screenlines.
4385 if (curwin
->w_virtcol
> curwin
->w_curswant
4386 && (curwin
->w_curswant
< (colnr_T
)width1
4387 ? (curwin
->w_curswant
> (colnr_T
)width1
/ 2)
4388 : ((curwin
->w_curswant
- width1
) % width2
4389 > (colnr_T
)width2
/ 2)))
4390 --curwin
->w_cursor
.col
;
4395 curwin
->w_curswant
= MAXCOL
; /* stick in the last column */
4402 * Mouse scroll wheel: Default action is to scroll three lines, or one page
4403 * when Shift or Ctrl is used.
4404 * K_MOUSEUP (cap->arg == TRUE) or K_MOUSEDOWN (cap->arg == FALSE)
4410 # if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4411 win_T
*old_curwin
= curwin
;
4413 /* Currently we only get the mouse coordinates in the GUI. */
4414 if (gui
.in_use
&& mouse_row
>= 0 && mouse_col
>= 0)
4421 /* find the window at the pointer coordinates */
4422 curwin
= mouse_find_win(&row
, &col
);
4423 curbuf
= curwin
->w_buffer
;
4427 if (mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
))
4429 (void)onepage(cap
->arg
? FORWARD
: BACKWARD
, 1L);
4435 nv_scroll_line(cap
);
4438 # if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
4439 curwin
->w_redr_status
= TRUE
;
4441 curwin
= old_curwin
;
4442 curbuf
= curwin
->w_buffer
;
4447 * Mouse clicks and drags.
4453 (void)do_mouse(cap
->oap
, cap
->cmdchar
, BACKWARD
, cap
->count1
, 0);
4458 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
4459 * cap->arg must be TRUE for CTRL-E.
4465 if (!checkclearop(cap
->oap
))
4466 scroll_redraw(cap
->arg
, cap
->count1
);
4470 * Scroll "count" lines up or down, and redraw.
4473 scroll_redraw(up
, count
)
4477 linenr_T prev_topline
= curwin
->w_topline
;
4479 int prev_topfill
= curwin
->w_topfill
;
4481 linenr_T prev_lnum
= curwin
->w_cursor
.lnum
;
4484 scrollup(count
, TRUE
);
4486 scrolldown(count
, TRUE
);
4489 /* Adjust the cursor position for 'scrolloff'. Mark w_topline as
4490 * valid, otherwise the screen jumps back at the end of the file. */
4492 check_cursor_moved(curwin
);
4493 curwin
->w_valid
|= VALID_TOPLINE
;
4495 /* If moved back to where we were, at least move the cursor, otherwise
4496 * we get stuck at one position. Don't move the cursor up if the
4497 * first line of the buffer is already on the screen */
4498 while (curwin
->w_topline
== prev_topline
4500 && curwin
->w_topfill
== prev_topfill
4506 if (curwin
->w_cursor
.lnum
> prev_lnum
4507 || cursor_down(1L, FALSE
) == FAIL
)
4512 if (curwin
->w_cursor
.lnum
< prev_lnum
4513 || prev_topline
== 1L
4514 || cursor_up(1L, FALSE
) == FAIL
)
4517 /* Mark w_topline as valid, otherwise the screen jumps back at the
4518 * end of the file. */
4519 check_cursor_moved(curwin
);
4520 curwin
->w_valid
|= VALID_TOPLINE
;
4523 if (curwin
->w_cursor
.lnum
!= prev_lnum
)
4524 coladvance(curwin
->w_curswant
);
4525 redraw_later(VALID
);
4529 * Commands that start with "z".
4537 int nchar
= cap
->nchar
;
4539 long old_fdl
= curwin
->w_p_fdl
;
4540 int old_fen
= curwin
->w_p_fen
;
4546 if (VIM_ISDIGIT(nchar
))
4549 * "z123{nchar}": edit the count before obtaining {nchar}
4551 if (checkclearop(cap
->oap
))
4556 #ifdef USE_ON_FLY_SCROLL
4557 dont_scroll
= TRUE
; /* disallow scrolling here */
4560 ++allow_keys
; /* no mapping for nchar, but allow key codes */
4561 nchar
= safe_vgetc();
4563 LANGMAP_ADJUST(nchar
, TRUE
);
4567 #ifdef FEAT_CMDL_INFO
4568 (void)add_to_showcmd(nchar
);
4570 if (nchar
== K_DEL
|| nchar
== K_KDEL
)
4572 else if (VIM_ISDIGIT(nchar
))
4573 n
= n
* 10 + (nchar
- '0');
4574 else if (nchar
== CAR
)
4577 need_mouse_correct
= TRUE
;
4579 win_setheight((int)n
);
4582 else if (nchar
== 'l'
4585 || nchar
== K_RIGHT
)
4587 cap
->count1
= n
? n
* cap
->count1
: cap
->count1
;
4592 clearopbeep(cap
->oap
);
4596 cap
->oap
->op_type
= OP_NOP
;
4603 /* "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
4604 * and "zC" only in Visual mode. "zj" and "zk" are motion
4606 cap
->nchar
!= 'f' && cap
->nchar
!= 'F'
4607 && !(VIsual_active
&& vim_strchr((char_u
*)"dcCoO", cap
->nchar
))
4608 && cap
->nchar
!= 'j' && cap
->nchar
!= 'k'
4611 checkclearop(cap
->oap
))
4615 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
4616 * If line number given, set cursor.
4618 if ((vim_strchr((char_u
*)"+\r\nt.z^-b", nchar
) != NULL
)
4620 && cap
->count0
!= curwin
->w_cursor
.lnum
)
4623 if (cap
->count0
> curbuf
->b_ml
.ml_line_count
)
4624 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
4626 curwin
->w_cursor
.lnum
= cap
->count0
;
4632 /* "z+", "z<CR>" and "zt": put cursor at top of screen */
4634 if (cap
->count0
== 0)
4636 /* No count given: put cursor at the line below screen */
4637 validate_botline(); /* make sure w_botline is valid */
4638 if (curwin
->w_botline
> curbuf
->b_ml
.ml_line_count
)
4639 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
4641 curwin
->w_cursor
.lnum
= curwin
->w_botline
;
4647 beginline(BL_WHITE
| BL_FIX
);
4650 case 't': scroll_cursor_top(0, TRUE
);
4651 redraw_later(VALID
);
4654 /* "z." and "zz": put cursor in middle of screen */
4655 case '.': beginline(BL_WHITE
| BL_FIX
);
4658 case 'z': scroll_cursor_halfway(TRUE
);
4659 redraw_later(VALID
);
4662 /* "z^", "z-" and "zb": put cursor at bottom of screen */
4663 case '^': /* Strange Vi behavior: <count>z^ finds line at top of window
4664 * when <count> is at bottom of window, and puts that one at
4665 * bottom of window. */
4666 if (cap
->count0
!= 0)
4668 scroll_cursor_bot(0, TRUE
);
4669 curwin
->w_cursor
.lnum
= curwin
->w_topline
;
4671 else if (curwin
->w_topline
== 1)
4672 curwin
->w_cursor
.lnum
= 1;
4674 curwin
->w_cursor
.lnum
= curwin
->w_topline
- 1;
4677 beginline(BL_WHITE
| BL_FIX
);
4680 case 'b': scroll_cursor_bot(0, TRUE
);
4681 redraw_later(VALID
);
4684 /* "zH" - scroll screen right half-page */
4686 cap
->count1
*= W_WIDTH(curwin
) / 2;
4689 /* "zh" - scroll screen to the right */
4692 if (!curwin
->w_p_wrap
)
4694 if ((colnr_T
)cap
->count1
> curwin
->w_leftcol
)
4695 curwin
->w_leftcol
= 0;
4697 curwin
->w_leftcol
-= (colnr_T
)cap
->count1
;
4702 /* "zL" - scroll screen left half-page */
4703 case 'L': cap
->count1
*= W_WIDTH(curwin
) / 2;
4706 /* "zl" - scroll screen to the left */
4709 if (!curwin
->w_p_wrap
)
4711 /* scroll the window left */
4712 curwin
->w_leftcol
+= (colnr_T
)cap
->count1
;
4717 /* "zs" - scroll screen, cursor at the start */
4718 case 's': if (!curwin
->w_p_wrap
)
4721 if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4722 col
= 0; /* like the cursor is in col 0 */
4725 getvcol(curwin
, &curwin
->w_cursor
, &col
, NULL
, NULL
);
4726 if ((long)col
> p_siso
)
4730 if (curwin
->w_leftcol
!= col
)
4732 curwin
->w_leftcol
= col
;
4733 redraw_later(NOT_VALID
);
4738 /* "ze" - scroll screen, cursor at the end */
4739 case 'e': if (!curwin
->w_p_wrap
)
4742 if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4743 col
= 0; /* like the cursor is in col 0 */
4746 getvcol(curwin
, &curwin
->w_cursor
, NULL
, NULL
, &col
);
4747 n
= W_WIDTH(curwin
) - curwin_col_off();
4748 if ((long)col
+ p_siso
< n
)
4751 col
= col
+ p_siso
- n
+ 1;
4752 if (curwin
->w_leftcol
!= col
)
4754 curwin
->w_leftcol
= col
;
4755 redraw_later(NOT_VALID
);
4761 /* "zF": create fold command */
4762 /* "zf": create fold operator */
4764 case 'f': if (foldManualAllowed(TRUE
))
4768 curwin
->w_p_fen
= TRUE
;
4770 /* "zF" is like "zfzf" */
4771 if (nchar
== 'F' && cap
->oap
->op_type
== OP_FOLD
)
4778 clearopbeep(cap
->oap
);
4781 /* "zd": delete fold at cursor */
4782 /* "zD": delete fold at cursor recursively */
4784 case 'D': if (foldManualAllowed(FALSE
))
4789 deleteFold(curwin
->w_cursor
.lnum
,
4790 curwin
->w_cursor
.lnum
, nchar
== 'D', FALSE
);
4794 /* "zE": erease all folds */
4795 case 'E': if (foldmethodIsManual(curwin
))
4797 clearFolding(curwin
);
4798 changed_window_setting();
4800 else if (foldmethodIsMarker(curwin
))
4801 deleteFold((linenr_T
)1, curbuf
->b_ml
.ml_line_count
,
4804 EMSG(_("E352: Cannot erase folds with current 'foldmethod'"));
4807 /* "zn": fold none: reset 'foldenable' */
4808 case 'n': curwin
->w_p_fen
= FALSE
;
4811 /* "zN": fold Normal: set 'foldenable' */
4812 case 'N': curwin
->w_p_fen
= TRUE
;
4815 /* "zi": invert folding: toggle 'foldenable' */
4816 case 'i': curwin
->w_p_fen
= !curwin
->w_p_fen
;
4819 /* "za": open closed fold or close open fold at cursor */
4820 case 'a': if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4821 openFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4824 closeFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4825 curwin
->w_p_fen
= TRUE
;
4829 /* "zA": open fold at cursor recursively */
4830 case 'A': if (hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
))
4831 openFoldRecurse(curwin
->w_cursor
.lnum
);
4834 closeFoldRecurse(curwin
->w_cursor
.lnum
);
4835 curwin
->w_p_fen
= TRUE
;
4839 /* "zo": open fold at cursor or Visual area */
4840 case 'o': if (VIsual_active
)
4843 openFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4846 /* "zO": open fold recursively */
4847 case 'O': if (VIsual_active
)
4850 openFoldRecurse(curwin
->w_cursor
.lnum
);
4853 /* "zc": close fold at cursor or Visual area */
4854 case 'c': if (VIsual_active
)
4857 closeFold(curwin
->w_cursor
.lnum
, cap
->count1
);
4858 curwin
->w_p_fen
= TRUE
;
4861 /* "zC": close fold recursively */
4862 case 'C': if (VIsual_active
)
4865 closeFoldRecurse(curwin
->w_cursor
.lnum
);
4866 curwin
->w_p_fen
= TRUE
;
4869 /* "zv": open folds at the cursor */
4870 case 'v': foldOpenCursor();
4873 /* "zx": re-apply 'foldlevel' and open folds at the cursor */
4874 case 'x': curwin
->w_p_fen
= TRUE
;
4875 newFoldLevel(); /* update right now */
4879 /* "zX": undo manual opens/closes, re-apply 'foldlevel' */
4880 case 'X': curwin
->w_p_fen
= TRUE
;
4881 old_fdl
= -1; /* force an update */
4884 /* "zm": fold more */
4885 case 'm': if (curwin
->w_p_fdl
> 0)
4887 old_fdl
= -1; /* force an update */
4888 curwin
->w_p_fen
= TRUE
;
4891 /* "zM": close all folds */
4892 case 'M': curwin
->w_p_fdl
= 0;
4893 old_fdl
= -1; /* force an update */
4894 curwin
->w_p_fen
= TRUE
;
4897 /* "zr": reduce folding */
4898 case 'r': ++curwin
->w_p_fdl
;
4901 /* "zR": open all folds */
4902 case 'R': curwin
->w_p_fdl
= getDeepestNesting();
4903 old_fdl
= -1; /* force an update */
4906 case 'j': /* "zj" move to next fold downwards */
4907 case 'k': /* "zk" move to next fold upwards */
4908 if (foldMoveTo(TRUE
, nchar
== 'j' ? FORWARD
: BACKWARD
,
4909 cap
->count1
) == FAIL
)
4910 clearopbeep(cap
->oap
);
4913 #endif /* FEAT_FOLDING */
4916 case 'u': /* "zug" and "zuw": undo "zg" and "zw" */
4918 ++allow_keys
; /* no mapping for nchar, but allow key codes */
4919 nchar
= safe_vgetc();
4921 LANGMAP_ADJUST(nchar
, TRUE
);
4925 #ifdef FEAT_CMDL_INFO
4926 (void)add_to_showcmd(nchar
);
4928 if (vim_strchr((char_u
*)"gGwW", nchar
) == NULL
)
4930 clearopbeep(cap
->oap
);
4936 case 'g': /* "zg": add good word to word list */
4937 case 'w': /* "zw": add wrong word to word list */
4938 case 'G': /* "zG": add good word to temp word list */
4939 case 'W': /* "zW": add wrong word to temp word list */
4944 if (checkclearop(cap
->oap
))
4947 if (VIsual_active
&& get_visual_text(cap
, &ptr
, &len
)
4953 pos_T pos
= curwin
->w_cursor
;
4955 /* Find bad word under the cursor. */
4956 len
= spell_move_to(curwin
, FORWARD
, TRUE
, TRUE
, NULL
);
4957 if (len
!= 0 && curwin
->w_cursor
.col
<= pos
.col
)
4958 ptr
= ml_get_pos(&curwin
->w_cursor
);
4959 curwin
->w_cursor
= pos
;
4962 if (ptr
== NULL
&& (len
= find_ident_under_cursor(&ptr
,
4965 spell_add_word(ptr
, len
, nchar
== 'w' || nchar
== 'W',
4966 (nchar
== 'G' || nchar
== 'W')
4967 ? 0 : (int)cap
->count1
,
4972 case '=': /* "z=": suggestions for a badly spelled word */
4973 if (!checkclearop(cap
->oap
))
4974 spell_suggest((int)cap
->count0
);
4978 default: clearopbeep(cap
->oap
);
4982 /* Redraw when 'foldenable' changed */
4983 if (old_fen
!= curwin
->w_p_fen
)
4988 if (foldmethodIsDiff(curwin
) && curwin
->w_p_scb
)
4990 /* Adjust 'foldenable' in diff-synced windows. */
4993 if (wp
!= curwin
&& foldmethodIsDiff(wp
) && wp
->w_p_scb
)
4995 wp
->w_p_fen
= curwin
->w_p_fen
;
4996 changed_window_setting_win(wp
);
5001 changed_window_setting();
5004 /* Redraw when 'foldlevel' changed. */
5005 if (old_fdl
!= curwin
->w_p_fdl
)
5012 * Vertical scrollbar movement.
5015 nv_ver_scrollbar(cap
)
5018 if (cap
->oap
->op_type
!= OP_NOP
)
5019 clearopbeep(cap
->oap
);
5021 /* Even if an operator was pending, we still want to scroll */
5026 * Horizontal scrollbar movement.
5029 nv_hor_scrollbar(cap
)
5032 if (cap
->oap
->op_type
!= OP_NOP
)
5033 clearopbeep(cap
->oap
);
5035 /* Even if an operator was pending, we still want to scroll */
5036 gui_do_horiz_scroll();
5040 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
5048 if (cap
->oap
->op_type
!= OP_NOP
)
5049 clearopbeep(cap
->oap
);
5051 /* Even if an operator was pending, we still want to jump tabs. */
5052 goto_tabpage(current_tab
);
5056 * Selected item in tab line menu.
5062 if (cap
->oap
->op_type
!= OP_NOP
)
5063 clearopbeep(cap
->oap
);
5065 /* Even if an operator was pending, we still want to jump tabs. */
5070 * Handle selecting an item of the GUI tab line menu.
5071 * Used in Normal and Insert mode.
5076 switch (current_tabmenu
)
5078 case TABLINE_MENU_CLOSE
:
5079 if (current_tab
== 0)
5080 do_cmdline_cmd((char_u
*)"tabclose");
5083 vim_snprintf((char *)IObuff
, IOSIZE
, "tabclose %d",
5085 do_cmdline_cmd(IObuff
);
5089 case TABLINE_MENU_NEW
:
5090 vim_snprintf((char *)IObuff
, IOSIZE
, "%dtabnew",
5091 current_tab
> 0 ? current_tab
- 1 : 999);
5092 do_cmdline_cmd(IObuff
);
5095 case TABLINE_MENU_OPEN
:
5096 vim_snprintf((char *)IObuff
, IOSIZE
, "browse %dtabnew",
5097 current_tab
> 0 ? current_tab
- 1 : 999);
5098 do_cmdline_cmd(IObuff
);
5112 * Ignore 'Q' in Visual mode, just give a beep.
5119 if (!checkclearop(cap
->oap
))
5124 * Handle a ":" command.
5138 if (cap
->oap
->op_type
!= OP_NOP
)
5140 /* Using ":" as a movement is characterwise exclusive. */
5141 cap
->oap
->motion_type
= MCHAR
;
5142 cap
->oap
->inclusive
= FALSE
;
5144 else if (cap
->count0
)
5146 /* translate "count:" into ":.,.+(count - 1)" */
5147 stuffcharReadbuff('.');
5148 if (cap
->count0
> 1)
5150 stuffReadbuff((char_u
*)",.+");
5151 stuffnumReadbuff((long)cap
->count0
- 1L);
5155 /* When typing, don't type below an old message */
5161 /* get a command line and execute it */
5162 do_cmdline(NULL
, getexline
, NULL
,
5163 cap
->oap
->op_type
!= OP_NOP
? DOCMD_KEEPLINE
: 0);
5165 /* If 'insertmode' changed, enter or exit Insert mode */
5166 if (p_im
!= old_p_im
)
5174 /* The start of the operator may have become invalid by the Ex
5176 if (cap
->oap
->op_type
!= OP_NOP
5177 && (cap
->oap
->start
.lnum
> curbuf
->b_ml
.ml_line_count
5178 || cap
->oap
->start
.col
>
5179 STRLEN(ml_get(cap
->oap
->start
.lnum
))))
5180 clearopbeep(cap
->oap
);
5185 * Handle CTRL-G command.
5192 if (VIsual_active
) /* toggle Selection/Visual mode */
5194 VIsual_select
= !VIsual_select
;
5199 if (!checkclearop(cap
->oap
))
5200 /* print full name if count given or :cd used */
5201 fileinfo((int)cap
->count0
, FALSE
, TRUE
);
5205 * Handle CTRL-H <Backspace> command.
5212 if (VIsual_active
&& VIsual_select
)
5214 cap
->cmdchar
= 'x'; /* BS key behaves like 'x' in Select mode */
5223 * CTRL-L: clear screen and redraw.
5229 if (!checkclearop(cap
->oap
))
5231 #if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
5233 * Right now, the BeBox doesn't seem to have an easy way to detect
5234 * window resizing, so we cheat and make the user detect it
5235 * manually with CTRL-L instead
5240 /* Clear all syntax states to force resyncing. */
5241 syn_stack_free_all(curbuf
);
5243 redraw_later(CLEAR
);
5248 * CTRL-O: In Select mode: switch to Visual mode for one command.
5249 * Otherwise: Go to older pcmark.
5256 if (VIsual_active
&& VIsual_select
)
5258 VIsual_select
= FALSE
;
5260 restart_VIsual_select
= 2; /* restart Select mode later */
5265 cap
->count1
= -cap
->count1
;
5271 * CTRL-^ command, short for ":e #"
5277 if (!checkclearopq(cap
->oap
))
5278 (void)buflist_getfile((int)cap
->count0
, (linenr_T
)0,
5279 GETF_SETMARK
|GETF_ALT
, FALSE
);
5289 if (!checkclearopq(cap
->oap
))
5293 /* "ZZ": equivalent to ":x". */
5294 case 'Z': do_cmdline_cmd((char_u
*)"x");
5297 /* "ZQ": equivalent to ":q!" (Elvis compatible). */
5298 case 'Q': do_cmdline_cmd((char_u
*)"q!");
5301 default: clearopbeep(cap
->oap
);
5306 #if defined(FEAT_WINDOWS) || defined(PROTO)
5308 * Call nv_ident() as if "c1" was used, with "c2" as next character.
5319 vim_memset(&ca
, 0, sizeof(ca
));
5328 * Handle the commands that use the word under the cursor.
5329 * [g] CTRL-] :ta to current identifier
5330 * [g] 'K' run program for current identifier
5331 * [g] '*' / to current identifier or string
5332 * [g] '#' ? to current identifier or string
5333 * g ']' :tselect for current identifier
5342 char_u
*kp
; /* value of 'keywordprg' */
5343 int kp_help
; /* 'keywordprg' is ":help" */
5344 int n
= 0; /* init for GCC */
5346 int g_cmd
; /* "g" command */
5351 if (cap
->cmdchar
== 'g') /* "g*", "g#", "g]" and "gCTRL-]" */
5353 cmdchar
= cap
->nchar
;
5358 cmdchar
= cap
->cmdchar
;
5362 if (cmdchar
== POUND
) /* the pound sign, '#' for English keyboards */
5366 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
5368 if (cmdchar
== ']' || cmdchar
== Ctrl_RSB
|| cmdchar
== 'K')
5371 if (VIsual_active
&& get_visual_text(cap
, &ptr
, &n
) == FAIL
)
5374 if (checkclearopq(cap
->oap
))
5378 if (ptr
== NULL
&& (n
= find_ident_under_cursor(&ptr
,
5379 (cmdchar
== '*' || cmdchar
== '#')
5380 ? FIND_IDENT
|FIND_STRING
: FIND_IDENT
)) == 0)
5386 /* Allocate buffer to put the command in. Inserting backslashes can
5387 * double the length of the word. p_kp / curbuf->b_p_kp could be added
5388 * and some numbers. */
5389 kp
= (*curbuf
->b_p_kp
== NUL
? p_kp
: curbuf
->b_p_kp
);
5390 kp_help
= (*kp
== NUL
|| STRCMP(kp
, ":he") == 0
5391 || STRCMP(kp
, ":help") == 0);
5392 buf
= alloc((unsigned)(n
* 2 + 30 + STRLEN(kp
)));
5402 * Put cursor at start of word, makes search skip the word
5404 * Call setpcmark() first, so "*``" puts the cursor back where
5408 curwin
->w_cursor
.col
= (colnr_T
) (ptr
- ml_get_curline());
5410 if (!g_cmd
&& vim_iswordp(ptr
))
5412 no_smartcase
= TRUE
; /* don't use 'smartcase' now */
5417 STRCPY(buf
, "he! ");
5420 /* When a count is given, turn it into a range. Is this
5421 * really what we want? */
5422 isman
= (STRCMP(kp
, "man") == 0);
5423 isman_s
= (STRCMP(kp
, "man -s") == 0);
5424 if (cap
->count0
!= 0 && !(isman
|| isman_s
))
5425 sprintf((char *)buf
, ".,.+%ld", cap
->count0
- 1);
5428 if (cap
->count0
== 0 && isman_s
)
5433 if (cap
->count0
!= 0 && (isman
|| isman_s
))
5435 sprintf((char *)buf
+ STRLEN(buf
), "%ld", cap
->count0
);
5444 STRCPY(buf
, "cstag ");
5452 STRCPY(buf
, "he! ");
5456 sprintf((char *)buf
, "%ldta ", cap
->count0
);
5460 * Now grab the chars in the identifier
5463 aux_ptr
= (char_u
*)(p_magic
? "/.*~[^$\\" : "/^$\\");
5464 else if (cmdchar
== '#')
5465 aux_ptr
= (char_u
*)(p_magic
? "/?.*~[^$\\" : "/?^$\\");
5466 else if (cmdchar
== 'K' && !kp_help
)
5467 aux_ptr
= (char_u
*)" \t\\\"|!";
5469 /* Don't escape spaces and Tabs in a tag with a backslash */
5470 aux_ptr
= (char_u
*)"\\|\"";
5472 p
= buf
+ STRLEN(buf
);
5475 /* put a backslash before \ and some others */
5476 if (vim_strchr(aux_ptr
, *ptr
) != NULL
)
5479 /* When current byte is a part of multibyte character, copy all bytes
5480 * of that character. */
5484 int len
= (*mb_ptr2len
)(ptr
) - 1;
5486 for (i
= 0; i
< len
&& n
>= 1; ++i
, --n
)
5495 * Execute the command.
5497 if (cmdchar
== '*' || cmdchar
== '#')
5501 has_mbyte
? vim_iswordp(mb_prevptr(ml_get_curline(), ptr
)) :
5503 vim_iswordc(ptr
[-1])))
5506 /* put pattern in search history */
5507 add_to_history(HIST_SEARCH
, buf
, TRUE
, NUL
);
5509 normal_search(cap
, cmdchar
== '*' ? '/' : '?', buf
, 0);
5512 do_cmdline_cmd(buf
);
5517 #if defined(FEAT_VISUAL) || defined(PROTO)
5519 * Get visually selected text, within one line only.
5520 * Returns FAIL if more than one line selected.
5523 get_visual_text(cap
, pp
, lenp
)
5525 char_u
**pp
; /* return: start of selected text */
5526 int *lenp
; /* return: length of selected text */
5528 if (VIsual_mode
!= 'V')
5530 if (VIsual
.lnum
!= curwin
->w_cursor
.lnum
)
5533 clearopbeep(cap
->oap
);
5536 if (VIsual_mode
== 'V')
5538 *pp
= ml_get_curline();
5539 *lenp
= (int)STRLEN(*pp
);
5543 if (lt(curwin
->w_cursor
, VIsual
))
5545 *pp
= ml_get_pos(&curwin
->w_cursor
);
5546 *lenp
= VIsual
.col
- curwin
->w_cursor
.col
+ 1;
5550 *pp
= ml_get_pos(&VIsual
);
5551 *lenp
= curwin
->w_cursor
.col
- VIsual
.col
+ 1;
5555 /* Correct the length to include the whole last character. */
5556 *lenp
+= (*mb_ptr2len
)(*pp
+ (*lenp
- 1)) - 1;
5559 reset_VIsual_and_resel();
5565 * CTRL-T: backwards in tag stack
5571 if (!checkclearopq(cap
->oap
))
5572 do_tag((char_u
*)"", DT_POP
, (int)cap
->count1
, FALSE
, TRUE
);
5576 * Handle scrolling command 'H', 'L' and 'M'.
5589 cap
->oap
->motion_type
= MLINE
;
5592 if (cap
->cmdchar
== 'L')
5594 validate_botline(); /* make sure curwin->w_botline is valid */
5595 curwin
->w_cursor
.lnum
= curwin
->w_botline
- 1;
5596 if (cap
->count1
- 1 >= curwin
->w_cursor
.lnum
)
5597 curwin
->w_cursor
.lnum
= 1;
5601 if (hasAnyFolding(curwin
))
5603 /* Count a fold for one screen line. */
5604 for (n
= cap
->count1
- 1; n
> 0
5605 && curwin
->w_cursor
.lnum
> curwin
->w_topline
; --n
)
5607 (void)hasFolding(curwin
->w_cursor
.lnum
,
5608 &curwin
->w_cursor
.lnum
, NULL
);
5609 --curwin
->w_cursor
.lnum
;
5614 curwin
->w_cursor
.lnum
-= cap
->count1
- 1;
5619 if (cap
->cmdchar
== 'M')
5622 /* Don't count filler lines above the window. */
5623 used
-= diff_check_fill(curwin
, curwin
->w_topline
)
5624 - curwin
->w_topfill
;
5626 validate_botline(); /* make sure w_empty_rows is valid */
5627 half
= (curwin
->w_height
- curwin
->w_empty_rows
+ 1) / 2;
5628 for (n
= 0; curwin
->w_topline
+ n
< curbuf
->b_ml
.ml_line_count
; ++n
)
5631 /* Count half he number of filler lines to be "below this
5632 * line" and half to be "above the next line". */
5633 if (n
> 0 && used
+ diff_check_fill(curwin
, curwin
->w_topline
5640 used
+= plines(curwin
->w_topline
+ n
);
5644 if (hasFolding(curwin
->w_topline
+ n
, NULL
, &lnum
))
5645 n
= lnum
- curwin
->w_topline
;
5648 if (n
> 0 && used
> curwin
->w_height
)
5651 else /* (cap->cmdchar == 'H') */
5653 n
= cap
->count1
- 1;
5655 if (hasAnyFolding(curwin
))
5657 /* Count a fold for one screen line. */
5658 lnum
= curwin
->w_topline
;
5659 while (n
-- > 0 && lnum
< curwin
->w_botline
- 1)
5661 hasFolding(lnum
, NULL
, &lnum
);
5664 n
= lnum
- curwin
->w_topline
;
5668 curwin
->w_cursor
.lnum
= curwin
->w_topline
+ n
;
5669 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
5670 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
5673 cursor_correct(); /* correct for 'so' */
5674 beginline(BL_SOL
| BL_FIX
);
5678 * Cursor right commands.
5688 # define PAST_LINE 0
5691 if (mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
))
5693 /* <C-Right> and <S-Right> move a word or WORD right */
5694 if (mod_mask
& MOD_MASK_CTRL
)
5700 cap
->oap
->motion_type
= MCHAR
;
5701 cap
->oap
->inclusive
= FALSE
;
5703 PAST_LINE
= (VIsual_active
&& *p_sel
!= 'o');
5705 # ifdef FEAT_VIRTUALEDIT
5707 * In virtual mode, there's no such thing as "PAST_LINE", as lines are
5708 * (theoretically) infinitely long.
5710 if (virtual_active())
5715 for (n
= cap
->count1
; n
> 0; --n
)
5717 if ((!PAST_LINE
&& oneright() == FAIL
)
5718 || (PAST_LINE
&& *ml_get_cursor() == NUL
))
5721 * <Space> wraps to next line if 'whichwrap' has 's'.
5722 * 'l' wraps to next line if 'whichwrap' has 'l'.
5723 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
5725 if ( ((cap
->cmdchar
== ' '
5726 && vim_strchr(p_ww
, 's') != NULL
)
5727 || (cap
->cmdchar
== 'l'
5728 && vim_strchr(p_ww
, 'l') != NULL
)
5729 || (cap
->cmdchar
== K_RIGHT
5730 && vim_strchr(p_ww
, '>') != NULL
))
5731 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
5733 /* When deleting we also count the NL as a character.
5734 * Set cap->oap->inclusive when last char in the line is
5735 * included, move to next line after that */
5736 if ( cap
->oap
->op_type
!= OP_NOP
5737 && !cap
->oap
->inclusive
5738 && !lineempty(curwin
->w_cursor
.lnum
))
5739 cap
->oap
->inclusive
= TRUE
;
5742 ++curwin
->w_cursor
.lnum
;
5743 curwin
->w_cursor
.col
= 0;
5744 #ifdef FEAT_VIRTUALEDIT
5745 curwin
->w_cursor
.coladd
= 0;
5747 curwin
->w_set_curswant
= TRUE
;
5748 cap
->oap
->inclusive
= FALSE
;
5752 if (cap
->oap
->op_type
== OP_NOP
)
5754 /* Only beep and flush if not moved at all */
5755 if (n
== cap
->count1
)
5760 if (!lineempty(curwin
->w_cursor
.lnum
))
5761 cap
->oap
->inclusive
= TRUE
;
5768 curwin
->w_set_curswant
= TRUE
;
5769 # ifdef FEAT_VIRTUALEDIT
5770 if (virtual_active())
5777 curwin
->w_cursor
.col
+=
5778 (*mb_ptr2len
)(ml_get_cursor());
5781 ++curwin
->w_cursor
.col
;
5787 if (n
!= cap
->count1
&& (fdo_flags
& FDO_HOR
) && KeyTyped
5788 && cap
->oap
->op_type
== OP_NOP
)
5794 * Cursor left commands.
5796 * Returns TRUE when operator end should not be adjusted.
5804 if (mod_mask
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
))
5806 /* <C-Left> and <S-Left> move a word or WORD left */
5807 if (mod_mask
& MOD_MASK_CTRL
)
5813 cap
->oap
->motion_type
= MCHAR
;
5814 cap
->oap
->inclusive
= FALSE
;
5815 for (n
= cap
->count1
; n
> 0; --n
)
5817 if (oneleft() == FAIL
)
5819 /* <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
5820 * 'h' wraps to previous line if 'whichwrap' has 'h'.
5821 * CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
5823 if ( (((cap
->cmdchar
== K_BS
5824 || cap
->cmdchar
== Ctrl_H
)
5825 && vim_strchr(p_ww
, 'b') != NULL
)
5826 || (cap
->cmdchar
== 'h'
5827 && vim_strchr(p_ww
, 'h') != NULL
)
5828 || (cap
->cmdchar
== K_LEFT
5829 && vim_strchr(p_ww
, '<') != NULL
))
5830 && curwin
->w_cursor
.lnum
> 1)
5832 --(curwin
->w_cursor
.lnum
);
5833 coladvance((colnr_T
)MAXCOL
);
5834 curwin
->w_set_curswant
= TRUE
;
5836 /* When the NL before the first char has to be deleted we
5837 * put the cursor on the NUL after the previous line.
5838 * This is a very special case, be careful!
5839 * don't adjust op_end now, otherwise it won't work */
5840 if ( (cap
->oap
->op_type
== OP_DELETE
5841 || cap
->oap
->op_type
== OP_CHANGE
)
5842 && !lineempty(curwin
->w_cursor
.lnum
))
5844 ++curwin
->w_cursor
.col
;
5845 cap
->retval
|= CA_NO_ADJ_OP_END
;
5849 /* Only beep and flush if not moved at all */
5850 else if (cap
->oap
->op_type
== OP_NOP
&& n
== cap
->count1
)
5856 if (n
!= cap
->count1
&& (fdo_flags
& FDO_HOR
) && KeyTyped
5857 && cap
->oap
->op_type
== OP_NOP
)
5863 * Cursor up commands.
5864 * cap->arg is TRUE for "-": Move cursor to first non-blank.
5870 if (mod_mask
& MOD_MASK_SHIFT
)
5872 /* <S-Up> is page up */
5873 cap
->arg
= BACKWARD
;
5878 cap
->oap
->motion_type
= MLINE
;
5879 if (cursor_up(cap
->count1
, cap
->oap
->op_type
== OP_NOP
) == FAIL
)
5880 clearopbeep(cap
->oap
);
5882 beginline(BL_WHITE
| BL_FIX
);
5887 * Cursor down commands.
5888 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
5894 if (mod_mask
& MOD_MASK_SHIFT
)
5896 /* <S-Down> is page down */
5901 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
5902 /* In a quickfix window a <CR> jumps to the error under the cursor. */
5903 if (bt_quickfix(curbuf
) && cap
->cmdchar
== CAR
)
5904 if (curwin
->w_llist_ref
== NULL
)
5905 do_cmdline_cmd((char_u
*)".cc"); /* quickfix window */
5907 do_cmdline_cmd((char_u
*)".ll"); /* location list window */
5912 /* In the cmdline window a <CR> executes the command. */
5913 if (cmdwin_type
!= 0 && cap
->cmdchar
== CAR
)
5914 cmdwin_result
= CAR
;
5918 cap
->oap
->motion_type
= MLINE
;
5919 if (cursor_down(cap
->count1
, cap
->oap
->op_type
== OP_NOP
) == FAIL
)
5920 clearopbeep(cap
->oap
);
5922 beginline(BL_WHITE
| BL_FIX
);
5927 #ifdef FEAT_SEARCHPATH
5929 * Grab the file name under the cursor and edit it.
5940 clearopbeep(cap
->oap
);
5945 if (curbuf_locked())
5952 ptr
= grab_file_name(cap
->count1
, &lnum
);
5956 /* do autowrite if necessary */
5957 if (curbufIsChanged() && curbuf
->b_nwindows
<= 1 && !P_HID(curbuf
))
5958 autowrite(curbuf
, FALSE
);
5960 (void)do_ecmd(0, ptr
, NULL
, NULL
, ECMD_LAST
,
5961 P_HID(curbuf
) ? ECMD_HIDE
: 0);
5962 if (cap
->nchar
== 'F' && lnum
>= 0)
5964 curwin
->w_cursor
.lnum
= lnum
;
5965 check_cursor_lnum();
5966 beginline(BL_SOL
| BL_FIX
);
5976 * <End> command: to end of current line or last line.
5982 if (cap
->arg
|| (mod_mask
& MOD_MASK_CTRL
)) /* CTRL-END = goto last line */
5986 cap
->count1
= 1; /* to end of current line */
5992 * Handle the "$" command.
5998 cap
->oap
->motion_type
= MCHAR
;
5999 cap
->oap
->inclusive
= TRUE
;
6000 #ifdef FEAT_VIRTUALEDIT
6001 /* In virtual mode when off the edge of a line and an operator
6002 * is pending (whew!) keep the cursor where it is.
6003 * Otherwise, send it to the end of the line. */
6004 if (!virtual_active() || gchar_cursor() != NUL
6005 || cap
->oap
->op_type
== OP_NOP
)
6007 curwin
->w_curswant
= MAXCOL
; /* so we stay at the end */
6008 if (cursor_down((long)(cap
->count1
- 1),
6009 cap
->oap
->op_type
== OP_NOP
) == FAIL
)
6010 clearopbeep(cap
->oap
);
6012 else if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6018 * Implementation of '?' and '/' commands.
6019 * If cap->arg is TRUE don't set PC mark.
6025 oparg_T
*oap
= cap
->oap
;
6027 if (cap
->cmdchar
== '?' && cap
->oap
->op_type
== OP_ROT13
)
6029 /* Translate "g??" to "g?g?" */
6036 cap
->searchbuf
= getcmdline(cap
->cmdchar
, cap
->count1
, 0);
6038 if (cap
->searchbuf
== NULL
)
6044 normal_search(cap
, cap
->cmdchar
, cap
->searchbuf
,
6045 (cap
->arg
? 0 : SEARCH_MARK
));
6049 * Handle "N" and "n" commands.
6050 * cap->arg is SEARCH_REV for "N", 0 for "n".
6056 normal_search(cap
, 0, NULL
, SEARCH_MARK
| cap
->arg
);
6060 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
6061 * Uses only cap->count1 and cap->oap from "cap".
6064 normal_search(cap
, dir
, pat
, opt
)
6068 int opt
; /* extra flags for do_search() */
6072 cap
->oap
->motion_type
= MCHAR
;
6073 cap
->oap
->inclusive
= FALSE
;
6074 cap
->oap
->use_reg_one
= TRUE
;
6075 curwin
->w_set_curswant
= TRUE
;
6077 i
= do_search(cap
->oap
, dir
, pat
, cap
->count1
,
6078 opt
| SEARCH_OPT
| SEARCH_ECHO
| SEARCH_MSG
);
6084 cap
->oap
->motion_type
= MLINE
;
6085 #ifdef FEAT_VIRTUALEDIT
6086 curwin
->w_cursor
.coladd
= 0;
6089 if (cap
->oap
->op_type
== OP_NOP
&& (fdo_flags
& FDO_SEARCH
) && KeyTyped
)
6094 /* "/$" will put the cursor after the end of the line, may need to
6095 * correct that here */
6100 * Character search commands.
6101 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
6102 * ',' and FALSE for ';'.
6103 * cap->nchar is NUL for ',' and ';' (repeat the search)
6111 if (cap
->cmdchar
== 't' || cap
->cmdchar
== 'T')
6116 cap
->oap
->motion_type
= MCHAR
;
6117 if (IS_SPECIAL(cap
->nchar
) || searchc(cap
, t_cmd
) == FAIL
)
6118 clearopbeep(cap
->oap
);
6121 curwin
->w_set_curswant
= TRUE
;
6122 #ifdef FEAT_VIRTUALEDIT
6123 /* Include a Tab for "tx" and for "dfx". */
6124 if (gchar_cursor() == TAB
&& virtual_active() && cap
->arg
== FORWARD
6125 && (t_cmd
|| cap
->oap
->op_type
!= OP_NOP
))
6129 getvcol(curwin
, &curwin
->w_cursor
, &scol
, NULL
, &ecol
);
6130 curwin
->w_cursor
.coladd
= ecol
- scol
;
6133 curwin
->w_cursor
.coladd
= 0;
6136 adjust_for_sel(cap
);
6139 if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6146 * "[" and "]" commands.
6147 * cap->arg is BACKWARD for "[" and FORWARD for "]".
6155 pos_T
*pos
= NULL
; /* init for GCC */
6156 pos_T old_pos
; /* cursor position before command */
6162 cap
->oap
->motion_type
= MCHAR
;
6163 cap
->oap
->inclusive
= FALSE
;
6164 old_pos
= curwin
->w_cursor
;
6165 #ifdef FEAT_VIRTUALEDIT
6166 curwin
->w_cursor
.coladd
= 0; /* TODO: don't do this for an error. */
6169 #ifdef FEAT_SEARCHPATH
6171 * "[f" or "]f" : Edit file under the cursor (same as "gf")
6173 if (cap
->nchar
== 'f')
6180 * Find the occurrence(s) of the identifier or define under cursor
6181 * in current and included files or jump to the first occurrence.
6184 * fwd bwd fwd bwd fwd bwd
6185 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
6186 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
6188 if (vim_strchr((char_u
*)
6194 cap
->nchar
) != NULL
)
6199 if ((len
= find_ident_under_cursor(&ptr
, FIND_IDENT
)) == 0)
6203 find_pattern_in_path(ptr
, 0, len
, TRUE
,
6204 cap
->count0
== 0 ? !isupper(cap
->nchar
) : FALSE
,
6205 ((cap
->nchar
& 0xf) == ('d' & 0xf)) ? FIND_DEFINE
: FIND_ANY
,
6207 isupper(cap
->nchar
) ? ACTION_SHOW_ALL
:
6208 islower(cap
->nchar
) ? ACTION_SHOW
: ACTION_GOTO
,
6209 cap
->cmdchar
== ']' ? curwin
->w_cursor
.lnum
+ 1 : (linenr_T
)1,
6211 curwin
->w_set_curswant
= TRUE
;
6218 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
6219 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
6220 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
6221 * "[m" or "]m" search for prev/next start of (Java) method.
6222 * "[M" or "]M" search for prev/next end of (Java) method.
6224 if ( (cap
->cmdchar
== '['
6225 && vim_strchr((char_u
*)"{(*/#mM", cap
->nchar
) != NULL
)
6226 || (cap
->cmdchar
== ']'
6227 && vim_strchr((char_u
*)"})*/#mM", cap
->nchar
) != NULL
))
6229 if (cap
->nchar
== '*')
6233 if (cap
->nchar
== 'm' || cap
->nchar
== 'M')
6235 if (cap
->cmdchar
== '[')
6248 if ((pos
= findmatchlimit(cap
->oap
, findc
,
6249 (cap
->cmdchar
== '[') ? FM_BACKWARD
: FM_FORWARD
, 0)) == NULL
)
6251 if (new_pos
.lnum
== 0) /* nothing found */
6253 if (cap
->nchar
!= 'm' && cap
->nchar
!= 'M')
6254 clearopbeep(cap
->oap
);
6257 pos
= &new_pos
; /* use last one found */
6261 curwin
->w_cursor
= *pos
;
6264 curwin
->w_cursor
= old_pos
;
6267 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
6268 * brought us to the match for "[m" and "]M" when inside a method.
6269 * Try finding the '{' or '}' we want to be at.
6270 * Also repeat for the given count.
6272 if (cap
->nchar
== 'm' || cap
->nchar
== 'M')
6274 /* norm is TRUE for "]M" and "[m" */
6275 int norm
= ((findc
== '{') == (cap
->nchar
== 'm'));
6278 /* found a match: we were inside a method */
6279 if (prev_pos
.lnum
!= 0)
6282 curwin
->w_cursor
= prev_pos
;
6292 if ((findc
== '{' ? dec_cursor() : inc_cursor()) < 0)
6294 /* if not found anything, that's an error */
6296 clearopbeep(cap
->oap
);
6301 if (c
== '{' || c
== '}')
6303 /* Must have found end/start of class: use it.
6304 * Or found the place to be at. */
6305 if ((c
== findc
&& norm
) || (n
== 1 && !norm
))
6307 new_pos
= curwin
->w_cursor
;
6311 /* if no match found at all, we started outside of the
6312 * class and we're inside now. Just go on. */
6313 else if (new_pos
.lnum
== 0)
6315 new_pos
= curwin
->w_cursor
;
6318 /* found start/end of other method: go to match */
6319 else if ((pos
= findmatchlimit(cap
->oap
, findc
,
6320 (cap
->cmdchar
== '[') ? FM_BACKWARD
: FM_FORWARD
,
6324 curwin
->w_cursor
= *pos
;
6330 curwin
->w_cursor
= old_pos
;
6331 if (pos
== NULL
&& new_pos
.lnum
!= 0)
6332 clearopbeep(cap
->oap
);
6337 curwin
->w_cursor
= *pos
;
6338 curwin
->w_set_curswant
= TRUE
;
6340 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
6341 && cap
->oap
->op_type
== OP_NOP
)
6348 * "[[", "[]", "]]" and "][": move to start or end of function
6350 else if (cap
->nchar
== '[' || cap
->nchar
== ']')
6352 if (cap
->nchar
== cap
->cmdchar
) /* "]]" or "[[" */
6355 flag
= '}'; /* "][" or "[]" */
6357 curwin
->w_set_curswant
= TRUE
;
6359 * Imitate strange Vi behaviour: When using "]]" with an operator
6360 * we also stop at '}'.
6362 if (!findpar(&cap
->oap
->inclusive
, cap
->arg
, cap
->count1
, flag
,
6363 (cap
->oap
->op_type
!= OP_NOP
6364 && cap
->arg
== FORWARD
&& flag
== '{')))
6365 clearopbeep(cap
->oap
);
6368 if (cap
->oap
->op_type
== OP_NOP
)
6369 beginline(BL_WHITE
| BL_FIX
);
6371 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6378 * "[p", "[P", "]P" and "]p": put with indent adjustment
6380 else if (cap
->nchar
== 'p' || cap
->nchar
== 'P')
6382 if (!checkclearop(cap
->oap
))
6385 do_put(cap
->oap
->regname
,
6386 (cap
->cmdchar
== ']' && cap
->nchar
== 'p') ? FORWARD
: BACKWARD
,
6387 cap
->count1
, PUT_FIXINDENT
);
6392 * "['", "[`", "]'" and "]`": jump to next mark
6394 else if (cap
->nchar
== '\'' || cap
->nchar
== '`')
6396 pos
= &curwin
->w_cursor
;
6397 for (n
= cap
->count1
; n
> 0; --n
)
6400 pos
= getnextmark(pos
, cap
->cmdchar
== '[' ? BACKWARD
: FORWARD
,
6401 cap
->nchar
== '\'');
6407 nv_cursormark(cap
, cap
->nchar
== '\'', pos
);
6412 * [ or ] followed by a middle mouse click: put selected text with
6413 * indent adjustment. Any other button just does as usual.
6415 else if (cap
->nchar
>= K_LEFTMOUSE
&& cap
->nchar
<= K_RIGHTRELEASE
)
6417 (void)do_mouse(cap
->oap
, cap
->nchar
,
6418 (cap
->cmdchar
== ']') ? FORWARD
: BACKWARD
,
6419 cap
->count1
, PUT_FIXINDENT
);
6421 #endif /* FEAT_MOUSE */
6425 * "[z" and "]z": move to start or end of open fold.
6427 else if (cap
->nchar
== 'z')
6429 if (foldMoveTo(FALSE
, cap
->cmdchar
== ']' ? FORWARD
: BACKWARD
,
6430 cap
->count1
) == FAIL
)
6431 clearopbeep(cap
->oap
);
6437 * "[c" and "]c": move to next or previous diff-change.
6439 else if (cap
->nchar
== 'c')
6441 if (diff_move_to(cap
->cmdchar
== ']' ? FORWARD
: BACKWARD
,
6442 cap
->count1
) == FAIL
)
6443 clearopbeep(cap
->oap
);
6449 * "[s", "[S", "]s" and "]S": move to next spell error.
6451 else if (cap
->nchar
== 's' || cap
->nchar
== 'S')
6454 for (n
= 0; n
< cap
->count1
; ++n
)
6455 if (spell_move_to(curwin
, cap
->cmdchar
== ']' ? FORWARD
: BACKWARD
,
6456 cap
->nchar
== 's' ? TRUE
: FALSE
, FALSE
, NULL
) == 0)
6458 clearopbeep(cap
->oap
);
6461 # ifdef FEAT_FOLDING
6462 if (cap
->oap
->op_type
== OP_NOP
&& (fdo_flags
& FDO_SEARCH
) && KeyTyped
)
6468 /* Not a valid cap->nchar. */
6470 clearopbeep(cap
->oap
);
6474 * Handle Normal mode "%" command.
6482 linenr_T lnum
= curwin
->w_cursor
.lnum
;
6485 cap
->oap
->inclusive
= TRUE
;
6486 if (cap
->count0
) /* {cnt}% : goto {cnt} percentage in file */
6488 if (cap
->count0
> 100)
6489 clearopbeep(cap
->oap
);
6492 cap
->oap
->motion_type
= MLINE
;
6494 /* Round up, so CTRL-G will give same value. Watch out for a
6495 * large line count, the line number must not go negative! */
6496 if (curbuf
->b_ml
.ml_line_count
> 1000000)
6497 curwin
->w_cursor
.lnum
= (curbuf
->b_ml
.ml_line_count
+ 99L)
6498 / 100L * cap
->count0
;
6500 curwin
->w_cursor
.lnum
= (curbuf
->b_ml
.ml_line_count
*
6501 cap
->count0
+ 99L) / 100L;
6502 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
6503 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
6504 beginline(BL_SOL
| BL_FIX
);
6507 else /* "%" : go to matching paren */
6509 cap
->oap
->motion_type
= MCHAR
;
6510 cap
->oap
->use_reg_one
= TRUE
;
6511 if ((pos
= findmatch(cap
->oap
, NUL
)) == NULL
)
6512 clearopbeep(cap
->oap
);
6516 curwin
->w_cursor
= *pos
;
6517 curwin
->w_set_curswant
= TRUE
;
6518 #ifdef FEAT_VIRTUALEDIT
6519 curwin
->w_cursor
.coladd
= 0;
6522 adjust_for_sel(cap
);
6527 if (cap
->oap
->op_type
== OP_NOP
6528 && lnum
!= curwin
->w_cursor
.lnum
6529 && (fdo_flags
& FDO_PERCENT
)
6536 * Handle "(" and ")" commands.
6537 * cap->arg is BACKWARD for "(" and FORWARD for ")".
6543 cap
->oap
->motion_type
= MCHAR
;
6544 cap
->oap
->use_reg_one
= TRUE
;
6545 /* The motion used to be inclusive for "(", but that is not what Vi does. */
6546 cap
->oap
->inclusive
= FALSE
;
6547 curwin
->w_set_curswant
= TRUE
;
6549 if (findsent(cap
->arg
, cap
->count1
) == FAIL
)
6550 clearopbeep(cap
->oap
);
6553 #ifdef FEAT_VIRTUALEDIT
6554 curwin
->w_cursor
.coladd
= 0;
6557 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6564 * "m" command: Mark a position.
6570 if (!checkclearop(cap
->oap
))
6572 if (setmark(cap
->nchar
) == FAIL
)
6573 clearopbeep(cap
->oap
);
6578 * "{" and "}" commands.
6579 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
6585 cap
->oap
->motion_type
= MCHAR
;
6586 cap
->oap
->inclusive
= FALSE
;
6587 cap
->oap
->use_reg_one
= TRUE
;
6588 curwin
->w_set_curswant
= TRUE
;
6589 if (!findpar(&cap
->oap
->inclusive
, cap
->arg
, cap
->count1
, NUL
, FALSE
))
6590 clearopbeep(cap
->oap
);
6593 #ifdef FEAT_VIRTUALEDIT
6594 curwin
->w_cursor
.coladd
= 0;
6597 if ((fdo_flags
& FDO_BLOCK
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
6604 * "u" command: Undo or make lower case.
6610 if (cap
->oap
->op_type
== OP_LOWER
6616 /* translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu" */
6632 if (!checkclearopq(cap
->oap
))
6634 u_undo((int)cap
->count1
);
6635 curwin
->w_set_curswant
= TRUE
;
6640 * Handle the "r" command.
6650 if (checkclearop(cap
->oap
))
6653 /* get another character */
6654 if (cap
->nchar
== Ctrl_V
)
6656 had_ctrl_v
= Ctrl_V
;
6657 cap
->nchar
= get_literal();
6658 /* Don't redo a multibyte character with CTRL-V. */
6659 if (cap
->nchar
> DEL
)
6666 /* Visual mode "r" */
6674 #ifdef FEAT_VIRTUALEDIT
6675 /* Break tabs, etc. */
6676 if (virtual_active())
6678 if (u_save_cursor() == FAIL
)
6680 if (gchar_cursor() == NUL
)
6682 /* Add extra space and put the cursor on the first one. */
6683 coladvance_force((colnr_T
)(getviscol() + cap
->count1
));
6684 curwin
->w_cursor
.col
-= cap
->count1
;
6686 else if (gchar_cursor() == TAB
)
6687 coladvance_force(getviscol());
6692 * Check for a special key or not enough characters to replace.
6694 ptr
= ml_get_cursor();
6695 if (IS_SPECIAL(cap
->nchar
) || STRLEN(ptr
) < (unsigned)cap
->count1
6697 || (has_mbyte
&& mb_charlen(ptr
) < cap
->count1
)
6701 clearopbeep(cap
->oap
);
6706 * Replacing with a TAB is done by edit() when it is complicated because
6707 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
6708 * Other characters are done below to avoid problems with things like
6709 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
6711 if (had_ctrl_v
!= Ctrl_V
&& cap
->nchar
== '\t' && (curbuf
->b_p_et
|| p_sta
))
6713 stuffnumReadbuff(cap
->count1
);
6714 stuffcharReadbuff('R');
6715 stuffcharReadbuff('\t');
6716 stuffcharReadbuff(ESC
);
6720 /* save line for undo */
6721 if (u_save_cursor() == FAIL
)
6724 if (had_ctrl_v
!= Ctrl_V
&& (cap
->nchar
== '\r' || cap
->nchar
== '\n'))
6727 * Replace character(s) by a single newline.
6728 * Strange vi behaviour: Only one newline is inserted.
6729 * Delete the characters here.
6730 * Insert the newline with an insert command, takes care of
6731 * autoindent. The insert command depends on being on the last
6732 * character of a line or not.
6735 (void)del_chars(cap
->count1
, FALSE
); /* delete the characters */
6737 (void)del_bytes(cap
->count1
, FALSE
, FALSE
); /* delete the characters */
6739 stuffcharReadbuff('\r');
6740 stuffcharReadbuff(ESC
);
6742 /* Give 'r' to edit(), to get the redo command right. */
6743 invoke_edit(cap
, TRUE
, 'r', FALSE
);
6747 prep_redo(cap
->oap
->regname
, cap
->count1
,
6748 NUL
, 'r', NUL
, had_ctrl_v
, cap
->nchar
);
6750 curbuf
->b_op_start
= curwin
->w_cursor
;
6754 int old_State
= State
;
6756 if (cap
->ncharC1
!= 0)
6757 AppendCharToRedobuff(cap
->ncharC1
);
6758 if (cap
->ncharC2
!= 0)
6759 AppendCharToRedobuff(cap
->ncharC2
);
6761 /* This is slow, but it handles replacing a single-byte with a
6762 * multi-byte and the other way around. Also handles adding
6763 * composing characters for utf-8. */
6764 for (n
= cap
->count1
; n
> 0; --n
)
6767 ins_char(cap
->nchar
);
6769 if (cap
->ncharC1
!= 0)
6770 ins_char(cap
->ncharC1
);
6771 if (cap
->ncharC2
!= 0)
6772 ins_char(cap
->ncharC2
);
6779 * Replace the characters within one line.
6781 for (n
= cap
->count1
; n
> 0; --n
)
6784 * Get ptr again, because u_save and/or showmatch() will have
6785 * released the line. At the same time we let know that the
6786 * line will be changed.
6788 ptr
= ml_get_buf(curbuf
, curwin
->w_cursor
.lnum
, TRUE
);
6789 ptr
[curwin
->w_cursor
.col
] = cap
->nchar
;
6790 if (p_sm
&& msg_silent
== 0)
6791 showmatch(cap
->nchar
);
6792 ++curwin
->w_cursor
.col
;
6794 #ifdef FEAT_NETBEANS_INTG
6797 colnr_T start
= (colnr_T
)(curwin
->w_cursor
.col
- cap
->count1
);
6799 netbeans_removed(curbuf
, curwin
->w_cursor
.lnum
, start
,
6801 netbeans_inserted(curbuf
, curwin
->w_cursor
.lnum
, start
,
6802 &ptr
[start
], (int)cap
->count1
);
6806 /* mark the buffer as changed and prepare for displaying */
6807 changed_bytes(curwin
->w_cursor
.lnum
,
6808 (colnr_T
)(curwin
->w_cursor
.col
- cap
->count1
));
6810 --curwin
->w_cursor
.col
; /* cursor on the last replaced char */
6812 /* if the character on the left of the current cursor is a multi-byte
6813 * character, move two characters left */
6817 curbuf
->b_op_end
= curwin
->w_cursor
;
6818 curwin
->w_set_curswant
= TRUE
;
6819 set_last_insert(cap
->nchar
);
6825 * 'o': Exchange start and end of Visual area.
6826 * 'O': same, but in block mode exchange left and right corners.
6829 v_swap_corners(cmdchar
)
6833 colnr_T left
, right
;
6835 if (cmdchar
== 'O' && VIsual_mode
== Ctrl_V
)
6837 old_cursor
= curwin
->w_cursor
;
6838 getvcols(curwin
, &old_cursor
, &VIsual
, &left
, &right
);
6839 curwin
->w_cursor
.lnum
= VIsual
.lnum
;
6841 VIsual
= curwin
->w_cursor
;
6843 curwin
->w_cursor
.lnum
= old_cursor
.lnum
;
6844 curwin
->w_curswant
= right
;
6845 /* 'selection "exclusive" and cursor at right-bottom corner: move it
6846 * right one column */
6847 if (old_cursor
.lnum
>= VIsual
.lnum
&& *p_sel
== 'e')
6848 ++curwin
->w_curswant
;
6849 coladvance(curwin
->w_curswant
);
6850 if (curwin
->w_cursor
.col
== old_cursor
.col
6851 #ifdef FEAT_VIRTUALEDIT
6852 && (!virtual_active()
6853 || curwin
->w_cursor
.coladd
== old_cursor
.coladd
)
6857 curwin
->w_cursor
.lnum
= VIsual
.lnum
;
6858 if (old_cursor
.lnum
<= VIsual
.lnum
&& *p_sel
== 'e')
6861 VIsual
= curwin
->w_cursor
;
6863 curwin
->w_cursor
.lnum
= old_cursor
.lnum
;
6865 curwin
->w_curswant
= left
;
6870 old_cursor
= curwin
->w_cursor
;
6871 curwin
->w_cursor
= VIsual
;
6872 VIsual
= old_cursor
;
6873 curwin
->w_set_curswant
= TRUE
;
6876 #endif /* FEAT_VISUAL */
6879 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
6886 if (VIsual_active
) /* "R" is replace lines */
6895 if (!checkclearopq(cap
->oap
))
6897 if (!curbuf
->b_p_ma
)
6898 EMSG(_(e_modifiable
));
6901 #ifdef FEAT_VIRTUALEDIT
6902 if (virtual_active())
6903 coladvance(getviscol());
6905 invoke_edit(cap
, FALSE
, cap
->arg
? 'V' : 'R', FALSE
);
6910 #ifdef FEAT_VREPLACE
6922 cap
->nchar
= cap
->extra_char
;
6923 nv_replace(cap
); /* Do same as "r" in Visual mode for now */
6927 if (!checkclearopq(cap
->oap
))
6929 if (!curbuf
->b_p_ma
)
6930 EMSG(_(e_modifiable
));
6933 if (cap
->extra_char
== Ctrl_V
) /* get another character */
6934 cap
->extra_char
= get_literal();
6935 stuffcharReadbuff(cap
->extra_char
);
6936 stuffcharReadbuff(ESC
);
6937 # ifdef FEAT_VIRTUALEDIT
6938 if (virtual_active())
6939 coladvance(getviscol());
6941 invoke_edit(cap
, TRUE
, 'v', FALSE
);
6948 * Swap case for "~" command, when it does not work like an operator.
6957 #ifdef FEAT_NETBEANS_INTG
6963 if (checkclearopq(cap
->oap
))
6966 if (lineempty(curwin
->w_cursor
.lnum
) && vim_strchr(p_ww
, '~') == NULL
)
6968 clearopbeep(cap
->oap
);
6974 if (u_save_cursor() == FAIL
)
6977 startpos
= curwin
->w_cursor
;
6978 #ifdef FEAT_NETBEANS_INTG
6981 for (n
= cap
->count1
; n
> 0; --n
)
6983 did_change
|= swapchar(cap
->oap
->op_type
, &curwin
->w_cursor
);
6985 if (gchar_cursor() == NUL
)
6987 if (vim_strchr(p_ww
, '~') != NULL
6988 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
6990 #ifdef FEAT_NETBEANS_INTG
6995 ptr
= ml_get(pos
.lnum
);
6996 count
= (int)STRLEN(ptr
) - pos
.col
;
6997 netbeans_removed(curbuf
, pos
.lnum
, pos
.col
,
6999 netbeans_inserted(curbuf
, pos
.lnum
, pos
.col
,
7000 &ptr
[pos
.col
], count
);
7006 ++curwin
->w_cursor
.lnum
;
7007 curwin
->w_cursor
.col
= 0;
7010 if (u_savesub(curwin
->w_cursor
.lnum
) == FAIL
)
7019 #ifdef FEAT_NETBEANS_INTG
7020 if (did_change
&& usingNetbeans
)
7022 ptr
= ml_get(pos
.lnum
);
7023 count
= curwin
->w_cursor
.col
- pos
.col
;
7024 netbeans_removed(curbuf
, pos
.lnum
, pos
.col
, (long)count
);
7025 netbeans_inserted(curbuf
, pos
.lnum
, pos
.col
, &ptr
[pos
.col
], count
);
7031 curwin
->w_set_curswant
= TRUE
;
7034 changed_lines(startpos
.lnum
, startpos
.col
, curwin
->w_cursor
.lnum
+ 1,
7036 curbuf
->b_op_start
= startpos
;
7037 curbuf
->b_op_end
= curwin
->w_cursor
;
7038 if (curbuf
->b_op_end
.col
> 0)
7039 --curbuf
->b_op_end
.col
;
7044 * Move cursor to mark.
7047 nv_cursormark(cap
, flag
, pos
)
7052 if (check_mark(pos
) == FAIL
)
7056 if (cap
->cmdchar
== '\''
7057 || cap
->cmdchar
== '`'
7058 || cap
->cmdchar
== '['
7059 || cap
->cmdchar
== ']')
7061 curwin
->w_cursor
= *pos
;
7063 beginline(BL_WHITE
| BL_FIX
);
7067 cap
->oap
->motion_type
= flag
? MLINE
: MCHAR
;
7068 if (cap
->cmdchar
== '`')
7069 cap
->oap
->use_reg_one
= TRUE
;
7070 cap
->oap
->inclusive
= FALSE
; /* ignored if not MCHAR */
7071 curwin
->w_set_curswant
= TRUE
;
7076 * Handle commands that are operators in Visual mode.
7082 static char_u trans
[] = "YyDdCcxdXdAAIIrr";
7084 /* Uppercase means linewise, except in block mode, then "D" deletes till
7085 * the end of the line, and "C" replaces til EOL */
7086 if (isupper(cap
->cmdchar
))
7088 if (VIsual_mode
!= Ctrl_V
)
7090 else if (cap
->cmdchar
== 'C' || cap
->cmdchar
== 'D')
7091 curwin
->w_curswant
= MAXCOL
;
7093 cap
->cmdchar
= *(vim_strchr(trans
, cap
->cmdchar
) + 1);
7099 * "s" and "S" commands.
7106 if (VIsual_active
) /* "vs" and "vS" are the same as "vc" */
7108 if (cap
->cmdchar
== 'S')
7119 * Abbreviated commands.
7125 if (cap
->cmdchar
== K_DEL
|| cap
->cmdchar
== K_KDEL
)
7126 cap
->cmdchar
= 'x'; /* DEL key behaves like 'x' */
7129 /* in Visual mode these commands are operators */
7138 * Translate a command into another command.
7144 static char_u
*(ar
[8]) = {(char_u
*)"dl", (char_u
*)"dh",
7145 (char_u
*)"d$", (char_u
*)"c$",
7146 (char_u
*)"cl", (char_u
*)"cc",
7147 (char_u
*)"yy", (char_u
*)":s\r"};
7148 static char_u
*str
= (char_u
*)"xXDCsSY&";
7150 if (!checkclearopq(cap
->oap
))
7152 /* In Vi "2D" doesn't delete the next line. Can't translate it
7153 * either, because "2." should also not use the count. */
7154 if (cap
->cmdchar
== 'D' && vim_strchr(p_cpo
, CPO_HASH
) != NULL
)
7156 cap
->oap
->start
= curwin
->w_cursor
;
7157 cap
->oap
->op_type
= OP_DELETE
;
7162 AppendCharToRedobuff('D');
7167 stuffnumReadbuff(cap
->count0
);
7168 stuffReadbuff(ar
[(int)(vim_strchr(str
, cap
->cmdchar
) - str
)]);
7175 * "'" and "`" commands. Also for "g'" and "g`".
7176 * cap->arg is TRUE for "'" and "g'".
7185 linenr_T lnum
= curwin
->w_cursor
.lnum
;
7186 int old_KeyTyped
= KeyTyped
; /* getting file may reset it */
7189 if (cap
->cmdchar
== 'g')
7190 c
= cap
->extra_char
;
7193 pos
= getmark(c
, (cap
->oap
->op_type
== OP_NOP
));
7194 if (pos
== (pos_T
*)-1) /* jumped to other file */
7198 check_cursor_lnum();
7199 beginline(BL_WHITE
| BL_FIX
);
7205 nv_cursormark(cap
, cap
->arg
, pos
);
7207 #ifdef FEAT_VIRTUALEDIT
7208 /* May need to clear the coladd that a mark includes. */
7209 if (!virtual_active())
7210 curwin
->w_cursor
.coladd
= 0;
7213 if (cap
->oap
->op_type
== OP_NOP
7214 && (pos
== (pos_T
*)-1 || lnum
!= curwin
->w_cursor
.lnum
)
7215 && (fdo_flags
& FDO_MARK
)
7222 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
7228 #ifdef FEAT_JUMPLIST
7230 # ifdef FEAT_FOLDING
7231 linenr_T lnum
= curwin
->w_cursor
.lnum
;
7232 int old_KeyTyped
= KeyTyped
; /* getting file may reset it */
7235 if (!checkclearopq(cap
->oap
))
7237 if (cap
->cmdchar
== 'g')
7238 pos
= movechangelist((int)cap
->count1
);
7240 pos
= movemark((int)cap
->count1
);
7241 if (pos
== (pos_T
*)-1) /* jump to other file */
7243 curwin
->w_set_curswant
= TRUE
;
7246 else if (pos
!= NULL
) /* can jump */
7247 nv_cursormark(cap
, FALSE
, pos
);
7248 else if (cap
->cmdchar
== 'g')
7250 if (curbuf
->b_changelistlen
== 0)
7251 EMSG(_("E664: changelist is empty"));
7252 else if (cap
->count1
< 0)
7253 EMSG(_("E662: At start of changelist"));
7255 EMSG(_("E663: At end of changelist"));
7258 clearopbeep(cap
->oap
);
7259 # ifdef FEAT_FOLDING
7260 if (cap
->oap
->op_type
== OP_NOP
7261 && (pos
== (pos_T
*)-1 || lnum
!= curwin
->w_cursor
.lnum
)
7262 && (fdo_flags
& FDO_MARK
)
7268 clearopbeep(cap
->oap
);
7273 * Handle '"' command.
7279 if (checkclearop(cap
->oap
))
7282 if (cap
->nchar
== '=')
7283 cap
->nchar
= get_expr_register();
7285 if (cap
->nchar
!= NUL
&& valid_yank_reg(cap
->nchar
, FALSE
))
7287 cap
->oap
->regname
= cap
->nchar
;
7288 cap
->opcount
= cap
->count0
; /* remember count before '"' */
7290 set_reg_var(cap
->oap
->regname
);
7294 clearopbeep(cap
->oap
);
7299 * Handle "v", "V" and "CTRL-V" commands.
7300 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
7302 * Handle CTRL-Q just like CTRL-V.
7308 if (cap
->cmdchar
== Ctrl_Q
)
7309 cap
->cmdchar
= Ctrl_V
;
7311 /* 'v', 'V' and CTRL-V can be used while an operator is pending to make it
7312 * characterwise, linewise, or blockwise. */
7313 if (cap
->oap
->op_type
!= OP_NOP
)
7315 cap
->oap
->motion_force
= cap
->cmdchar
;
7316 finish_op
= FALSE
; /* operator doesn't finish now but later */
7320 VIsual_select
= cap
->arg
;
7321 if (VIsual_active
) /* change Visual mode */
7323 if (VIsual_mode
== cap
->cmdchar
) /* stop visual mode */
7325 else /* toggle char/block mode */
7326 { /* or char/line mode */
7327 VIsual_mode
= cap
->cmdchar
;
7330 redraw_curbuf_later(INVERTED
); /* update the inversion */
7332 else /* start Visual mode */
7334 check_visual_highlight();
7335 if (cap
->count0
) /* use previously selected part */
7337 if (resel_VIsual_mode
== NUL
) /* there is none */
7342 VIsual
= curwin
->w_cursor
;
7344 VIsual_active
= TRUE
;
7345 VIsual_reselect
= TRUE
;
7347 /* start Select mode when 'selectmode' contains "cmd" */
7348 may_start_select('c');
7352 if (p_smd
&& msg_silent
== 0)
7353 redraw_cmdline
= TRUE
; /* show visual mode later */
7355 * For V and ^V, we multiply the number of lines even if there
7356 * was only one -- webb
7358 if (resel_VIsual_mode
!= 'v' || resel_VIsual_line_count
> 1)
7360 curwin
->w_cursor
.lnum
+=
7361 resel_VIsual_line_count
* cap
->count0
- 1;
7362 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
7363 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
7365 VIsual_mode
= resel_VIsual_mode
;
7366 if (VIsual_mode
== 'v')
7368 if (resel_VIsual_line_count
<= 1)
7369 curwin
->w_cursor
.col
+= resel_VIsual_col
* cap
->count0
- 1;
7371 curwin
->w_cursor
.col
= resel_VIsual_col
;
7374 if (resel_VIsual_col
== MAXCOL
)
7376 curwin
->w_curswant
= MAXCOL
;
7377 coladvance((colnr_T
)MAXCOL
);
7379 else if (VIsual_mode
== Ctrl_V
)
7382 curwin
->w_curswant
= curwin
->w_virtcol
7383 + resel_VIsual_col
* cap
->count0
- 1;
7384 coladvance(curwin
->w_curswant
);
7387 curwin
->w_set_curswant
= TRUE
;
7388 redraw_curbuf_later(INVERTED
); /* show the inversion */
7393 /* start Select mode when 'selectmode' contains "cmd" */
7394 may_start_select('c');
7395 n_start_visual_mode(cap
->cmdchar
);
7401 * Start selection for Shift-movement keys.
7406 /* if 'selectmode' contains "key", start Select mode */
7407 may_start_select('k');
7408 n_start_visual_mode('v');
7412 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
7418 VIsual_select
= (stuff_empty() && typebuf_typed()
7419 && (vim_strchr(p_slm
, c
) != NULL
));
7423 * Start Visual mode "c".
7424 * Should set VIsual_select before calling this.
7427 n_start_visual_mode(c
)
7431 VIsual_active
= TRUE
;
7432 VIsual_reselect
= TRUE
;
7433 #ifdef FEAT_VIRTUALEDIT
7434 /* Corner case: the 0 position in a tab may change when going into
7435 * virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting.
7437 if (c
== Ctrl_V
&& (ve_flags
& VE_BLOCK
) && gchar_cursor() == TAB
)
7438 coladvance(curwin
->w_virtcol
);
7440 VIsual
= curwin
->w_cursor
;
7449 if (p_smd
&& msg_silent
== 0)
7450 redraw_cmdline
= TRUE
; /* show visual mode later */
7451 #ifdef FEAT_CLIPBOARD
7452 /* Make sure the clipboard gets updated. Needed because start and
7453 * end may still be the same, and the selection needs to be owned */
7454 clip_star
.vmode
= NUL
;
7457 /* Only need to redraw this line, unless still need to redraw an old
7458 * Visual area (when 'lazyredraw' is set). */
7459 if (curwin
->w_redr_type
< INVERTED
)
7461 curwin
->w_old_cursor_lnum
= curwin
->w_cursor
.lnum
;
7462 curwin
->w_old_visual_lnum
= curwin
->w_cursor
.lnum
;
7466 #endif /* FEAT_VISUAL */
7469 * CTRL-W: Window commands
7476 if (!checkclearop(cap
->oap
))
7477 do_window(cap
->nchar
, cap
->count0
, NUL
); /* everything is in window.c */
7479 (void)checkclearop(cap
->oap
);
7493 end_visual_mode(); /* stop Visual mode */
7495 do_cmdline_cmd((char_u
*)"st");
7499 * Commands starting with "g".
7505 oparg_T
*oap
= cap
->oap
;
7516 * "g^A": dump log of used memory.
7519 vim_mem_profile_dump();
7523 #ifdef FEAT_VREPLACE
7525 * "gR": Enter virtual replace mode.
7538 do_cmdline_cmd((char_u
*)"%s//~/&");
7543 * "gv": Reselect the previous Visual area. If Visual already active,
7544 * exchange previous and current Visual area.
7547 if (checkclearop(oap
))
7550 if ( curbuf
->b_visual
.vi_start
.lnum
== 0
7551 || curbuf
->b_visual
.vi_start
.lnum
> curbuf
->b_ml
.ml_line_count
7552 || curbuf
->b_visual
.vi_end
.lnum
== 0)
7556 /* set w_cursor to the start of the Visual area, tpos to the end */
7560 VIsual_mode
= curbuf
->b_visual
.vi_mode
;
7561 curbuf
->b_visual
.vi_mode
= i
;
7563 curbuf
->b_visual_mode_eval
= i
;
7565 i
= curwin
->w_curswant
;
7566 curwin
->w_curswant
= curbuf
->b_visual
.vi_curswant
;
7567 curbuf
->b_visual
.vi_curswant
= i
;
7569 tpos
= curbuf
->b_visual
.vi_end
;
7570 curbuf
->b_visual
.vi_end
= curwin
->w_cursor
;
7571 curwin
->w_cursor
= curbuf
->b_visual
.vi_start
;
7572 curbuf
->b_visual
.vi_start
= VIsual
;
7576 VIsual_mode
= curbuf
->b_visual
.vi_mode
;
7577 curwin
->w_curswant
= curbuf
->b_visual
.vi_curswant
;
7578 tpos
= curbuf
->b_visual
.vi_end
;
7579 curwin
->w_cursor
= curbuf
->b_visual
.vi_start
;
7582 VIsual_active
= TRUE
;
7583 VIsual_reselect
= TRUE
;
7585 /* Set Visual to the start and w_cursor to the end of the Visual
7586 * area. Make sure they are on an existing character. */
7588 VIsual
= curwin
->w_cursor
;
7589 curwin
->w_cursor
= tpos
;
7593 * When called from normal "g" command: start Select mode when
7594 * 'selectmode' contains "cmd". When called for K_SELECT, always
7595 * start Select mode.
7598 VIsual_select
= TRUE
;
7600 may_start_select('c');
7604 #ifdef FEAT_CLIPBOARD
7605 /* Make sure the clipboard gets updated. Needed because start and
7606 * end are still the same, and the selection needs to be owned */
7607 clip_star
.vmode
= NUL
;
7609 redraw_curbuf_later(INVERTED
);
7614 * "gV": Don't reselect the previous Visual area after a Select mode
7618 VIsual_reselect
= FALSE
;
7622 * "gh": start Select mode.
7623 * "gH": start Select line mode.
7624 * "g^H": start Select block mode.
7627 cap
->nchar
= Ctrl_H
;
7633 /* EBCDIC: 'v'-'h' != '^v'-'^h' */
7634 if (cap
->nchar
== Ctrl_H
)
7635 cap
->cmdchar
= Ctrl_V
;
7638 cap
->cmdchar
= cap
->nchar
+ ('v' - 'h');
7642 #endif /* FEAT_VISUAL */
7645 * "gj" and "gk" two new funny movement keys -- up and down
7646 * movement based on *screen* line rather than *file* line.
7650 /* with 'nowrap' it works just like the normal "j" command; also when
7651 * in a closed fold */
7652 if (!curwin
->w_p_wrap
7654 || hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
)
7658 oap
->motion_type
= MLINE
;
7659 i
= cursor_down(cap
->count1
, oap
->op_type
== OP_NOP
);
7662 i
= nv_screengo(oap
, FORWARD
, cap
->count1
);
7669 /* with 'nowrap' it works just like the normal "k" command; also when
7670 * in a closed fold */
7671 if (!curwin
->w_p_wrap
7673 || hasFolding(curwin
->w_cursor
.lnum
, NULL
, NULL
)
7677 oap
->motion_type
= MLINE
;
7678 i
= cursor_up(cap
->count1
, oap
->op_type
== OP_NOP
);
7681 i
= nv_screengo(oap
, BACKWARD
, cap
->count1
);
7687 * "gJ": join two lines without inserting a space.
7694 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
7695 * "gm": middle of "g0" and "g$".
7705 oap
->motion_type
= MCHAR
;
7706 oap
->inclusive
= FALSE
;
7707 if (curwin
->w_p_wrap
7708 #ifdef FEAT_VERTSPLIT
7709 && curwin
->w_width
!= 0
7713 int width1
= W_WIDTH(curwin
) - curwin_col_off();
7714 int width2
= width1
+ curwin_col_off2();
7718 if (curwin
->w_virtcol
>= (colnr_T
)width1
&& width2
> 0)
7719 i
= (curwin
->w_virtcol
- width1
) / width2
* width2
+ width1
;
7722 i
= curwin
->w_leftcol
;
7723 /* Go to the middle of the screen line. When 'number' is on and lines
7724 * are wrapping the middle can be more to the left.*/
7725 if (cap
->nchar
== 'm')
7726 i
+= (W_WIDTH(curwin
) - curwin_col_off()
7727 + ((curwin
->w_p_wrap
&& i
> 0)
7728 ? curwin_col_off2() : 0)) / 2;
7729 coladvance((colnr_T
)i
);
7734 while (vim_iswhite(i
) && oneright() == OK
);
7736 curwin
->w_set_curswant
= TRUE
;
7740 /* "g_": to the last non-blank character in the line or <count> lines
7742 cap
->oap
->motion_type
= MCHAR
;
7743 cap
->oap
->inclusive
= TRUE
;
7744 curwin
->w_curswant
= MAXCOL
;
7745 if (cursor_down((long)(cap
->count1
- 1),
7746 cap
->oap
->op_type
== OP_NOP
) == FAIL
)
7747 clearopbeep(cap
->oap
);
7750 char_u
*ptr
= ml_get_curline();
7752 /* In Visual mode we may end up after the line. */
7753 if (curwin
->w_cursor
.col
> 0 && ptr
[curwin
->w_cursor
.col
] == NUL
)
7754 --curwin
->w_cursor
.col
;
7756 /* Decrease the cursor column until it's on a non-blank. */
7757 while (curwin
->w_cursor
.col
> 0
7758 && vim_iswhite(ptr
[curwin
->w_cursor
.col
]))
7759 --curwin
->w_cursor
.col
;
7760 curwin
->w_set_curswant
= TRUE
;
7768 int col_off
= curwin_col_off();
7770 oap
->motion_type
= MCHAR
;
7771 oap
->inclusive
= TRUE
;
7772 if (curwin
->w_p_wrap
7773 #ifdef FEAT_VERTSPLIT
7774 && curwin
->w_width
!= 0
7778 curwin
->w_curswant
= MAXCOL
; /* so we stay at the end */
7779 if (cap
->count1
== 1)
7781 int width1
= W_WIDTH(curwin
) - col_off
;
7782 int width2
= width1
+ curwin_col_off2();
7786 if (curwin
->w_virtcol
>= (colnr_T
)width1
)
7787 i
+= ((curwin
->w_virtcol
- width1
) / width2
+ 1)
7789 coladvance((colnr_T
)i
);
7790 #if defined(FEAT_LINEBREAK) || defined(FEAT_MBYTE)
7791 if (curwin
->w_cursor
.col
> 0 && curwin
->w_p_wrap
)
7794 * Check for landing on a character that got split at
7795 * the end of the line. We do not want to advance to
7796 * the next screen line.
7799 if (curwin
->w_virtcol
> (colnr_T
)i
)
7800 --curwin
->w_cursor
.col
;
7804 else if (nv_screengo(oap
, FORWARD
, cap
->count1
- 1) == FAIL
)
7809 i
= curwin
->w_leftcol
+ W_WIDTH(curwin
) - col_off
- 1;
7810 coladvance((colnr_T
)i
);
7812 /* Make sure we stick in this column. */
7814 curwin
->w_curswant
= curwin
->w_virtcol
;
7815 curwin
->w_set_curswant
= FALSE
;
7821 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
7826 case POUND
: /* pound sign (sometimes equal to '#') */
7828 case Ctrl_RSB
: /* :tag or :tselect for current identifier */
7829 case ']': /* :tselect for current identifier */
7834 * ge and gE: go back to end of word
7838 oap
->motion_type
= MCHAR
;
7839 curwin
->w_set_curswant
= TRUE
;
7840 oap
->inclusive
= TRUE
;
7841 if (bckend_word(cap
->count1
, cap
->nchar
== 'E', FALSE
) == FAIL
)
7846 * "g CTRL-G": display info about cursor position
7853 * "gi": start Insert at the last position.
7856 if (curbuf
->b_last_insert
.lnum
!= 0)
7858 curwin
->w_cursor
= curbuf
->b_last_insert
;
7859 check_cursor_lnum();
7860 i
= (int)STRLEN(ml_get_curline());
7861 if (curwin
->w_cursor
.col
> (colnr_T
)i
)
7863 #ifdef FEAT_VIRTUALEDIT
7864 if (virtual_active())
7865 curwin
->w_cursor
.coladd
+= curwin
->w_cursor
.col
- i
;
7867 curwin
->w_cursor
.col
= i
;
7875 * "gI": Start insert in column 1.
7879 if (!checkclearopq(oap
))
7880 invoke_edit(cap
, FALSE
, 'g', FALSE
);
7883 #ifdef FEAT_SEARCHPATH
7885 * "gf": goto file, edit file under cursor
7886 * "]f" and "[f": can also be used.
7894 /* "g'm" and "g`m": jump to mark without setting pcmark */
7906 do_sleep(cap
->count1
* 1000L);
7910 * "ga": Display the ascii value of the character under the
7911 * cursor. It is displayed in decimal, hex, and octal. -- webb
7919 * "g8": Display the bytes used for the UTF-8 character under the
7920 * cursor. It is displayed in hex.
7921 * "8g8" finds illegal byte sequence.
7924 if (cap
->count0
== 8)
7936 * "gg": Goto the first line in file. With a count it goes to
7937 * that line number like for "G". -- webb
7945 * Two-character operators:
7947 * "gw" Format text and keep cursor position
7948 * "g~" Toggle the case of the text.
7949 * "gu" Change text to lower case.
7950 * "gU" Change text to upper case.
7951 * "g?" rot13 encoding
7952 * "g@" call 'operatorfunc'
7956 oap
->cursor_start
= curwin
->w_cursor
;
7967 * "gd": Find first occurrence of pattern under the cursor in the
7969 * "gD": idem, but in the current file.
7973 nv_gd(oap
, cap
->nchar
, (int)cap
->count0
);
7978 * g<*Mouse> : <C-*mouse>
7982 case K_MIDDLERELEASE
:
7988 case K_RIGHTRELEASE
:
7995 mod_mask
= MOD_MASK_CTRL
;
7996 (void)do_mouse(oap
, cap
->nchar
, BACKWARD
, cap
->count1
, 0);
8004 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
8012 /* "go": goto byte count from start of buffer */
8014 goto_byte(cap
->count0
);
8018 /* "gQ": improved Ex mode */
8022 clearopbeep(cap
->oap
);
8027 if (!checkclearopq(oap
))
8031 #ifdef FEAT_JUMPLIST
8037 cap
->count1
= -cap
->count1
;
8044 goto_tabpage((int)cap
->count0
);
8047 goto_tabpage(-(int)cap
->count1
);
8052 case '-': /* "g+" and "g-": undo or redo along the timeline */
8053 if (!checkclearopq(oap
))
8054 undo_time(cap
->nchar
== '-' ? -cap
->count1
: cap
->count1
,
8065 * Handle "o" and "O" commands.
8071 if (!checkclearopq(cap
->oap
))
8074 if (cap
->cmdchar
== 'O')
8075 /* Open above the first line of a folded sequence of lines */
8076 (void)hasFolding(curwin
->w_cursor
.lnum
,
8077 &curwin
->w_cursor
.lnum
, NULL
);
8079 /* Open below the last line of a folded sequence of lines */
8080 (void)hasFolding(curwin
->w_cursor
.lnum
,
8081 NULL
, &curwin
->w_cursor
.lnum
);
8083 if (u_save((linenr_T
)(curwin
->w_cursor
.lnum
-
8084 (cap
->cmdchar
== 'O' ? 1 : 0)),
8085 (linenr_T
)(curwin
->w_cursor
.lnum
+
8086 (cap
->cmdchar
== 'o' ? 1 : 0))
8088 && open_line(cap
->cmdchar
== 'O' ? BACKWARD
: FORWARD
,
8089 #ifdef FEAT_COMMENTS
8090 has_format_option(FO_OPEN_COMS
) ? OPENLINE_DO_COM
:
8094 /* When '#' is in 'cpoptions' ignore the count. */
8095 if (vim_strchr(p_cpo
, CPO_HASH
) != NULL
)
8097 invoke_edit(cap
, FALSE
, cap
->cmdchar
, TRUE
);
8103 * "." command: redo last change.
8109 if (!checkclearopq(cap
->oap
))
8112 * If "restart_edit" is TRUE, the last but one command is repeated
8113 * instead of the last command (inserting text). This is used for
8114 * CTRL-O <.> in insert mode.
8116 if (start_redo(cap
->count0
, restart_edit
!= 0 && !arrow_used
) == FAIL
)
8117 clearopbeep(cap
->oap
);
8128 if (!checkclearopq(cap
->oap
))
8130 u_redo((int)cap
->count1
);
8131 curwin
->w_set_curswant
= TRUE
;
8136 * Handle "U" command.
8142 /* In Visual mode and typing "gUU" triggers an operator */
8143 if (cap
->oap
->op_type
== OP_UPPER
8149 /* translate "gUU" to "gUgU" */
8154 else if (!checkclearopq(cap
->oap
))
8157 curwin
->w_set_curswant
= TRUE
;
8162 * '~' command: If tilde is not an operator and Visual is off: swap case of a
8173 && cap
->oap
->op_type
!= OP_TILDE
)
8180 * Handle an operator command.
8181 * The actual work is done by do_pending_operator().
8189 op_type
= get_op_type(cap
->cmdchar
, cap
->nchar
);
8191 if (op_type
== cap
->oap
->op_type
) /* double operator works on lines */
8193 else if (!checkclearop(cap
->oap
))
8195 cap
->oap
->start
= curwin
->w_cursor
;
8196 cap
->oap
->op_type
= op_type
;
8201 * Handle linewise operator "dd", "yy", etc.
8203 * "_" is is a strange motion command that helps make operators more logical.
8204 * It is actually implemented, but not documented in the real Vi. This motion
8205 * command actually refers to "the current line". Commands like "dd" and "yy"
8206 * are really an alternate form of "d_" and "y_". It does accept a count, so
8207 * "d3_" works to delete 3 lines.
8213 cap
->oap
->motion_type
= MLINE
;
8214 if (cursor_down(cap
->count1
- 1L, cap
->oap
->op_type
== OP_NOP
) == FAIL
)
8215 clearopbeep(cap
->oap
);
8216 else if ( cap
->oap
->op_type
== OP_DELETE
8217 || cap
->oap
->op_type
== OP_LSHIFT
8218 || cap
->oap
->op_type
== OP_RSHIFT
)
8219 beginline(BL_SOL
| BL_FIX
);
8220 else if (cap
->oap
->op_type
!= OP_YANK
) /* 'Y' does not move cursor */
8221 beginline(BL_WHITE
| BL_FIX
);
8231 /* CTRL-HOME is like "gg" */
8232 if (mod_mask
& MOD_MASK_CTRL
)
8239 ins_at_eol
= FALSE
; /* Don't move cursor past eol (only necessary in a
8240 one-character line). */
8250 cap
->oap
->motion_type
= MCHAR
;
8251 cap
->oap
->inclusive
= FALSE
;
8253 if (cap
->count0
> 0)
8255 coladvance((colnr_T
)(cap
->count0
- 1));
8256 curwin
->w_curswant
= (colnr_T
)(cap
->count0
- 1);
8259 curwin
->w_curswant
= 0;
8260 /* keep curswant at the column where we wanted to go, not where
8261 we ended; differs if line is too short */
8262 curwin
->w_set_curswant
= FALSE
;
8266 * Handle back-word command "b" and "B".
8267 * cap->arg is 1 for "B"
8273 cap
->oap
->motion_type
= MCHAR
;
8274 cap
->oap
->inclusive
= FALSE
;
8275 curwin
->w_set_curswant
= TRUE
;
8276 if (bck_word(cap
->count1
, cap
->arg
, FALSE
) == FAIL
)
8277 clearopbeep(cap
->oap
);
8279 else if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8285 * Handle word motion commands "e", "E", "w" and "W".
8286 * cap->arg is TRUE for "E" and "W".
8297 * Set inclusive for the "E" and "e" command.
8299 if (cap
->cmdchar
== 'e' || cap
->cmdchar
== 'E')
8303 cap
->oap
->inclusive
= word_end
;
8306 * "cw" and "cW" are a special case.
8308 if (!word_end
&& cap
->oap
->op_type
== OP_CHANGE
)
8311 if (n
!= NUL
) /* not an empty line */
8316 * Reproduce a funny Vi behaviour: "cw" on a blank only
8317 * changes one character, not all blanks until the start of
8318 * the next word. Only do this when the 'w' flag is included
8321 if (cap
->count1
== 1 && vim_strchr(p_cpo
, CPO_CW
) != NULL
)
8323 cap
->oap
->inclusive
= TRUE
;
8324 cap
->oap
->motion_type
= MCHAR
;
8331 * This is a little strange. To match what the real Vi does,
8332 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
8333 * that we are not on a space or a TAB. This seems impolite
8334 * at first, but it's really more what we mean when we say
8336 * Another strangeness: When standing on the end of a word
8337 * "ce" will change until the end of the next wordt, but "cw"
8338 * will change only one character! This is done by setting
8341 cap
->oap
->inclusive
= TRUE
;
8348 cap
->oap
->motion_type
= MCHAR
;
8349 curwin
->w_set_curswant
= TRUE
;
8351 n
= end_word(cap
->count1
, cap
->arg
, flag
, FALSE
);
8353 n
= fwd_word(cap
->count1
, cap
->arg
, cap
->oap
->op_type
!= OP_NOP
);
8355 /* Don't leave the cursor on the NUL past a line */
8356 if (curwin
->w_cursor
.col
&& gchar_cursor() == NUL
)
8358 --curwin
->w_cursor
.col
;
8359 cap
->oap
->inclusive
= TRUE
;
8362 if (n
== FAIL
&& cap
->oap
->op_type
== OP_NOP
)
8363 clearopbeep(cap
->oap
);
8367 adjust_for_sel(cap
);
8370 if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8377 * "0" and "^" commands.
8378 * cap->arg is the argument for beginline().
8384 cap
->oap
->motion_type
= MCHAR
;
8385 cap
->oap
->inclusive
= FALSE
;
8386 beginline(cap
->arg
);
8388 if ((fdo_flags
& FDO_HOR
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8391 ins_at_eol
= FALSE
; /* Don't move cursor past eol (only necessary in a
8392 one-character line). */
8397 * In exclusive Visual mode, may include the last character.
8403 if (VIsual_active
&& cap
->oap
->inclusive
&& *p_sel
== 'e'
8404 && gchar_cursor() != NUL
&& lt(VIsual
, curwin
->w_cursor
))
8411 ++curwin
->w_cursor
.col
;
8412 cap
->oap
->inclusive
= FALSE
;
8417 * Exclude last character at end of Visual area for 'selection' == "exclusive".
8418 * Should check VIsual_mode before calling this.
8419 * Returns TRUE when backed up to the previous line.
8426 if (*p_sel
== 'e' && !equalpos(VIsual
, curwin
->w_cursor
))
8428 if (lt(VIsual
, curwin
->w_cursor
))
8429 pp
= &curwin
->w_cursor
;
8432 #ifdef FEAT_VIRTUALEDIT
8444 else if (pp
->lnum
> 1)
8447 pp
->col
= (colnr_T
)STRLEN(ml_get(pp
->lnum
));
8455 * SELECT key in Normal or Visual mode: end of Select mode mapping.
8462 VIsual_select
= TRUE
;
8463 else if (VIsual_reselect
)
8465 cap
->nchar
= 'v'; /* fake "gv" command */
8474 * "G", "gg", CTRL-END, CTRL-HOME.
8475 * cap->arg is TRUE for "G".
8484 lnum
= curbuf
->b_ml
.ml_line_count
;
8487 cap
->oap
->motion_type
= MLINE
;
8490 /* When a count is given, use it instead of the default lnum */
8491 if (cap
->count0
!= 0)
8495 else if (lnum
> curbuf
->b_ml
.ml_line_count
)
8496 lnum
= curbuf
->b_ml
.ml_line_count
;
8497 curwin
->w_cursor
.lnum
= lnum
;
8498 beginline(BL_SOL
| BL_FIX
);
8500 if ((fdo_flags
& FDO_JUMP
) && KeyTyped
&& cap
->oap
->op_type
== OP_NOP
)
8506 * CTRL-\ in Normal mode.
8512 if (cap
->nchar
== Ctrl_N
|| cap
->nchar
== Ctrl_G
)
8515 if (restart_edit
!= 0 && mode_displayed
)
8516 clear_cmdline
= TRUE
; /* unshow mode later */
8519 if (cmdwin_type
!= 0)
8520 cmdwin_result
= Ctrl_C
;
8525 end_visual_mode(); /* stop Visual */
8526 redraw_curbuf_later(INVERTED
);
8529 /* CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set. */
8530 if (cap
->nchar
== Ctrl_G
&& p_im
)
8534 clearopbeep(cap
->oap
);
8538 * ESC in Normal mode: beep, but don't flush buffers.
8539 * Don't even beep if we are canceling a command.
8547 no_reason
= (cap
->oap
->op_type
== OP_NOP
8548 && cap
->opcount
== 0
8550 && cap
->oap
->regname
== 0
8553 if (cap
->arg
) /* TRUE for CTRL-C */
8555 if (restart_edit
== 0
8563 MSG(_("Type :quit<Enter> to exit Vim"));
8565 /* Don't reset "restart_edit" when 'insertmode' is set, it won't be
8566 * set again below when halfway a mapping. */
8570 if (cmdwin_type
!= 0)
8572 cmdwin_result
= K_IGNORE
;
8573 got_int
= FALSE
; /* don't stop executing autocommands et al. */
8582 end_visual_mode(); /* stop Visual */
8583 check_cursor_col(); /* make sure cursor is not beyond EOL */
8584 curwin
->w_set_curswant
= TRUE
;
8585 redraw_curbuf_later(INVERTED
);
8593 /* A CTRL-C is often used at the start of a menu. When 'insertmode' is
8594 * set return to Insert mode afterwards. */
8595 if (restart_edit
== 0 && goto_im()
8596 #ifdef FEAT_EX_EXTRA
8597 && ex_normal_busy
== 0
8604 * Handle "A", "a", "I", "i" and <Insert> commands.
8610 /* <Insert> is equal to "i" */
8611 if (cap
->cmdchar
== K_INS
|| cap
->cmdchar
== K_KINS
)
8615 /* in Visual mode "A" and "I" are an operator */
8616 if (VIsual_active
&& (cap
->cmdchar
== 'A' || cap
->cmdchar
== 'I'))
8619 /* in Visual mode and after an operator "a" and "i" are for text objects */
8622 if ((cap
->cmdchar
== 'a' || cap
->cmdchar
== 'i')
8623 && (cap
->oap
->op_type
!= OP_NOP
8632 clearopbeep(cap
->oap
);
8635 else if (!curbuf
->b_p_ma
&& !p_im
)
8637 /* Only give this error when 'insertmode' is off. */
8638 EMSG(_(e_modifiable
));
8641 else if (!checkclearopq(cap
->oap
))
8643 switch (cap
->cmdchar
)
8645 case 'A': /* "A"ppend after the line */
8646 curwin
->w_set_curswant
= TRUE
;
8647 #ifdef FEAT_VIRTUALEDIT
8648 if (ve_flags
== VE_ALL
)
8650 int save_State
= State
;
8652 /* Pretent Insert mode here to allow the cursor on the
8653 * character past the end of the line */
8655 coladvance((colnr_T
)MAXCOL
);
8660 curwin
->w_cursor
.col
+= (colnr_T
)STRLEN(ml_get_cursor());
8663 case 'I': /* "I"nsert before the first non-blank */
8664 if (vim_strchr(p_cpo
, CPO_INSEND
) == NULL
)
8665 beginline(BL_WHITE
);
8667 beginline(BL_WHITE
|BL_FIX
);
8670 case 'a': /* "a"ppend is like "i"nsert on the next character. */
8671 #ifdef FEAT_VIRTUALEDIT
8672 /* increment coladd when in virtual space, increment the
8673 * column otherwise, also to append after an unprintable char */
8674 if (virtual_active()
8675 && (curwin
->w_cursor
.coladd
> 0
8676 || *ml_get_cursor() == NUL
8677 || *ml_get_cursor() == TAB
))
8678 curwin
->w_cursor
.coladd
++;
8681 if (*ml_get_cursor() != NUL
)
8686 #ifdef FEAT_VIRTUALEDIT
8687 if (curwin
->w_cursor
.coladd
&& cap
->cmdchar
!= 'A')
8689 int save_State
= State
;
8691 /* Pretent Insert mode here to allow the cursor on the
8692 * character past the end of the line */
8694 coladvance(getviscol());
8699 invoke_edit(cap
, FALSE
, cap
->cmdchar
, FALSE
);
8704 * Invoke edit() and take care of "restart_edit" and the return value.
8707 invoke_edit(cap
, repl
, cmd
, startln
)
8709 int repl
; /* "r" or "gr" command */
8713 int restart_edit_save
= 0;
8715 /* Complicated: When the user types "a<C-O>a" we don't want to do Insert
8716 * mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
8718 if (repl
|| !stuff_empty())
8719 restart_edit_save
= restart_edit
;
8721 restart_edit_save
= 0;
8723 /* Always reset "restart_edit", this is not a restarted edit. */
8726 if (edit(cmd
, startln
, cap
->count1
))
8727 cap
->retval
|= CA_COMMAND_BUSY
;
8729 if (restart_edit
== 0)
8730 restart_edit
= restart_edit_save
;
8735 * "a" or "i" while an operator is pending or in Visual mode: object motion.
8745 if (cap
->cmdchar
== 'i')
8746 include
= FALSE
; /* "ix" = inner object: exclude white space */
8748 include
= TRUE
; /* "ax" = an object: include white space */
8750 /* Make sure (), [], {} and <> are in 'matchpairs' */
8751 mps_save
= curbuf
->b_p_mps
;
8752 curbuf
->b_p_mps
= (char_u
*)"(:),{:},[:],<:>";
8756 case 'w': /* "aw" = a word */
8757 flag
= current_word(cap
->oap
, cap
->count1
, include
, FALSE
);
8759 case 'W': /* "aW" = a WORD */
8760 flag
= current_word(cap
->oap
, cap
->count1
, include
, TRUE
);
8762 case 'b': /* "ab" = a braces block */
8765 flag
= current_block(cap
->oap
, cap
->count1
, include
, '(', ')');
8767 case 'B': /* "aB" = a Brackets block */
8770 flag
= current_block(cap
->oap
, cap
->count1
, include
, '{', '}');
8772 case '[': /* "a[" = a [] block */
8774 flag
= current_block(cap
->oap
, cap
->count1
, include
, '[', ']');
8776 case '<': /* "a<" = a <> block */
8778 flag
= current_block(cap
->oap
, cap
->count1
, include
, '<', '>');
8780 case 't': /* "at" = a tag block (xml and html) */
8781 flag
= current_tagblock(cap
->oap
, cap
->count1
, include
);
8783 case 'p': /* "ap" = a paragraph */
8784 flag
= current_par(cap
->oap
, cap
->count1
, include
, 'p');
8786 case 's': /* "as" = a sentence */
8787 flag
= current_sent(cap
->oap
, cap
->count1
, include
);
8789 case '"': /* "a"" = a double quoted string */
8790 case '\'': /* "a'" = a single quoted string */
8791 case '`': /* "a`" = a backtick quoted string */
8792 flag
= current_quote(cap
->oap
, cap
->count1
, include
,
8796 case 'S': /* "aS" = a section */
8797 case 'f': /* "af" = a filename */
8798 case 'u': /* "au" = a URL */
8805 curbuf
->b_p_mps
= mps_save
;
8807 clearopbeep(cap
->oap
);
8808 adjust_cursor_col();
8809 curwin
->w_set_curswant
= TRUE
;
8814 * "q" command: Start/stop recording.
8815 * "q:", "q/", "q?": edit command-line in command-line window.
8821 if (cap
->oap
->op_type
== OP_FORMAT
)
8823 /* "gqq" is the same as "gqgq": format line */
8828 else if (!checkclearop(cap
->oap
))
8831 if (cap
->nchar
== ':' || cap
->nchar
== '/' || cap
->nchar
== '?')
8833 stuffcharReadbuff(cap
->nchar
);
8834 stuffcharReadbuff(K_CMDWIN
);
8838 /* (stop) recording into a named register, unless executing a
8840 if (!Exec_reg
&& do_record(cap
->nchar
) == FAIL
)
8841 clearopbeep(cap
->oap
);
8846 * Handle the "@r" command.
8852 if (checkclearop(cap
->oap
))
8855 if (cap
->nchar
== '=')
8857 if (get_expr_register() == NUL
)
8861 while (cap
->count1
-- && !got_int
)
8863 if (do_execreg(cap
->nchar
, FALSE
, FALSE
, FALSE
) == FAIL
)
8865 clearopbeep(cap
->oap
);
8873 * Handle the CTRL-U and CTRL-D commands.
8879 if ((cap
->cmdchar
== Ctrl_U
&& curwin
->w_cursor
.lnum
== 1)
8880 || (cap
->cmdchar
== Ctrl_D
8881 && curwin
->w_cursor
.lnum
== curbuf
->b_ml
.ml_line_count
))
8882 clearopbeep(cap
->oap
);
8883 else if (!checkclearop(cap
->oap
))
8884 halfpage(cap
->cmdchar
== Ctrl_D
, cap
->count0
);
8888 * Handle "J" or "gJ" command.
8895 if (VIsual_active
) /* join the visual lines */
8899 if (!checkclearop(cap
->oap
))
8901 if (cap
->count0
<= 1)
8902 cap
->count0
= 2; /* default for join is two lines! */
8903 if (curwin
->w_cursor
.lnum
+ cap
->count0
- 1 >
8904 curbuf
->b_ml
.ml_line_count
)
8905 clearopbeep(cap
->oap
); /* beyond last line */
8908 prep_redo(cap
->oap
->regname
, cap
->count0
,
8909 NUL
, cap
->cmdchar
, NUL
, NUL
, cap
->nchar
);
8910 do_do_join(cap
->count0
, cap
->nchar
== NUL
);
8916 * "P", "gP", "p" and "gp" commands.
8924 void *reg1
= NULL
, *reg2
= NULL
;
8926 int was_visual
= FALSE
;
8931 if (cap
->oap
->op_type
!= OP_NOP
)
8934 /* "dp" is ":diffput" */
8935 if (cap
->oap
->op_type
== OP_DELETE
&& cap
->cmdchar
== 'p')
8938 nv_diffgetput(TRUE
);
8942 clearopbeep(cap
->oap
);
8946 dir
= (cap
->cmdchar
== 'P'
8947 || (cap
->cmdchar
== 'g' && cap
->nchar
== 'P'))
8948 ? BACKWARD
: FORWARD
;
8950 if (cap
->cmdchar
== 'g')
8951 flags
|= PUT_CURSEND
;
8956 /* Putting in Visual mode: The put text replaces the selected
8957 * text. First delete the selected text, then put the new text.
8958 * Need to save and restore the registers that the delete
8959 * overwrites if the old contents is being put.
8962 regname
= cap
->oap
->regname
;
8963 # ifdef FEAT_CLIPBOARD
8964 adjust_clip_reg(®name
);
8966 if (regname
== 0 || VIM_ISDIGIT(regname
)
8967 # ifdef FEAT_CLIPBOARD
8968 || (clip_unnamed
&& (regname
== '*' || regname
== '+'))
8973 /* the delete is going to overwrite the register we want to
8974 * put, save it first. */
8975 reg1
= get_register(regname
, TRUE
);
8978 /* Now delete the selected text. */
8981 cap
->oap
->regname
= NUL
;
8983 do_pending_operator(cap
, 0, FALSE
);
8984 empty
= (curbuf
->b_ml
.ml_flags
& ML_EMPTY
);
8986 /* delete PUT_LINE_BACKWARD; */
8987 cap
->oap
->regname
= regname
;
8991 /* Delete probably changed the register we want to put, save
8992 * it first. Then put back what was there before the delete. */
8993 reg2
= get_register(regname
, FALSE
);
8994 put_register(regname
, reg1
);
8997 /* When deleted a linewise Visual area, put the register as
8998 * lines to avoid it joined with the next line. When deletion was
8999 * characterwise, split a line when putting lines. */
9000 if (VIsual_mode
== 'V')
9002 else if (VIsual_mode
== 'v')
9003 flags
|= PUT_LINE_SPLIT
;
9004 if (VIsual_mode
== Ctrl_V
&& dir
== FORWARD
)
9005 flags
|= PUT_LINE_FORWARD
;
9007 if ((VIsual_mode
!= 'V'
9008 && curwin
->w_cursor
.col
< curbuf
->b_op_start
.col
)
9009 || (VIsual_mode
== 'V'
9010 && curwin
->w_cursor
.lnum
< curbuf
->b_op_start
.lnum
))
9011 /* cursor is at the end of the line or end of file, put
9016 do_put(cap
->oap
->regname
, dir
, cap
->count1
, flags
);
9019 /* If a register was saved, put it back now. */
9021 put_register(regname
, reg2
);
9023 /* What to reselect with "gv"? Selecting the just put text seems to
9024 * be the most useful, since the original text was removed. */
9027 curbuf
->b_visual
.vi_start
= curbuf
->b_op_start
;
9028 curbuf
->b_visual
.vi_end
= curbuf
->b_op_end
;
9031 /* When all lines were selected and deleted do_put() leaves an empty
9032 * line that needs to be deleted now. */
9033 if (empty
&& *ml_get(curbuf
->b_ml
.ml_line_count
) == NUL
)
9035 ml_delete(curbuf
->b_ml
.ml_line_count
, TRUE
);
9037 /* If the cursor was in that line, move it to the end of the last
9039 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
9041 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
9042 coladvance((colnr_T
)MAXCOL
);
9046 auto_format(FALSE
, TRUE
);
9051 * "o" and "O" commands.
9058 /* "do" is ":diffget" */
9059 if (cap
->oap
->op_type
== OP_DELETE
&& cap
->cmdchar
== 'o')
9062 nv_diffgetput(FALSE
);
9067 if (VIsual_active
) /* switch start and end of visual */
9068 v_swap_corners(cap
->cmdchar
);
9080 ProcessSniffRequests();
9084 #ifdef FEAT_NETBEANS_INTG
9089 netbeans_keycommand(cap
->nchar
);
9099 do_put('~', BACKWARD
, 1L, PUT_CURSEND
);
9105 * Trigger CursorHold event.
9106 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
9107 * input buffer. "did_cursorhold" is set to avoid retriggering.
9114 apply_autocmds(EVENT_CURSORHOLD
, NULL
, NULL
, FALSE
, curbuf
);
9115 did_cursorhold
= TRUE
;
9116 cap
->retval
|= CA_COMMAND_BUSY
; /* don't call edit() now */