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