blob: 690bb0081917b23a2eab73de3677a717224fbcd1 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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
Bram Moolenaar792cf5e2019-09-30 23:12:16 +020017static int VIsual_mode_orig = NUL; // saved Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +000018static int restart_VIsual_select = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
Bram Moolenaarf82a2d22010-12-17 18:53:01 +010020#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010021static void set_vcount_ca(cmdarg_T *cap, int *set_prevcount);
Bram Moolenaarf82a2d22010-12-17 18:53:01 +010022#endif
Bram Moolenaareae1b912019-05-09 15:12:55 +020023static int nv_compare(const void *s1, const void *s2);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010024static void unshift_special(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000025#ifdef FEAT_CMDL_INFO
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010026static void del_from_showcmd(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000027#endif
28
29/*
30 * nv_*(): functions called to handle Normal and Visual mode commands.
31 * n_*(): functions called to handle Normal mode commands.
32 * v_*(): functions called to handle Visual mode commands.
33 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010034static void nv_ignore(cmdarg_T *cap);
35static void nv_nop(cmdarg_T *cap);
36static void nv_error(cmdarg_T *cap);
37static void nv_help(cmdarg_T *cap);
38static void nv_addsub(cmdarg_T *cap);
39static void nv_page(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010040static void nv_zet(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000041#ifdef FEAT_GUI
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010042static void nv_ver_scrollbar(cmdarg_T *cap);
43static void nv_hor_scrollbar(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000044#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +000045#ifdef FEAT_GUI_TABLINE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010046static void nv_tabline(cmdarg_T *cap);
47static void nv_tabmenu(cmdarg_T *cap);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000048#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010049static void nv_exmode(cmdarg_T *cap);
50static void nv_colon(cmdarg_T *cap);
51static void nv_ctrlg(cmdarg_T *cap);
52static void nv_ctrlh(cmdarg_T *cap);
53static void nv_clear(cmdarg_T *cap);
54static void nv_ctrlo(cmdarg_T *cap);
55static void nv_hat(cmdarg_T *cap);
56static void nv_Zet(cmdarg_T *cap);
57static void nv_ident(cmdarg_T *cap);
58static void nv_tagpop(cmdarg_T *cap);
59static void nv_scroll(cmdarg_T *cap);
60static void nv_right(cmdarg_T *cap);
61static void nv_left(cmdarg_T *cap);
62static void nv_up(cmdarg_T *cap);
63static void nv_down(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010064static void nv_end(cmdarg_T *cap);
65static void nv_dollar(cmdarg_T *cap);
66static void nv_search(cmdarg_T *cap);
67static void nv_next(cmdarg_T *cap);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +020068static int normal_search(cmdarg_T *cap, int dir, char_u *pat, int opt, int *wrapped);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010069static void nv_csearch(cmdarg_T *cap);
70static void nv_brackets(cmdarg_T *cap);
71static void nv_percent(cmdarg_T *cap);
72static void nv_brace(cmdarg_T *cap);
73static void nv_mark(cmdarg_T *cap);
74static void nv_findpar(cmdarg_T *cap);
75static void nv_undo(cmdarg_T *cap);
76static void nv_kundo(cmdarg_T *cap);
77static void nv_Replace(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010078static void nv_replace(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010079static void nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos);
80static void v_visop(cmdarg_T *cap);
81static void nv_subst(cmdarg_T *cap);
82static void nv_abbrev(cmdarg_T *cap);
83static void nv_optrans(cmdarg_T *cap);
84static void nv_gomark(cmdarg_T *cap);
85static void nv_pcmark(cmdarg_T *cap);
86static void nv_regname(cmdarg_T *cap);
87static void nv_visual(cmdarg_T *cap);
88static void n_start_visual_mode(int c);
89static void nv_window(cmdarg_T *cap);
90static void nv_suspend(cmdarg_T *cap);
91static void nv_g_cmd(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010092static void nv_dot(cmdarg_T *cap);
93static void nv_redo(cmdarg_T *cap);
94static void nv_Undo(cmdarg_T *cap);
95static void nv_tilde(cmdarg_T *cap);
96static void nv_operator(cmdarg_T *cap);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +000097#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010098static void set_op_var(int optype);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +000099#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100100static void nv_lineop(cmdarg_T *cap);
101static void nv_home(cmdarg_T *cap);
102static void nv_pipe(cmdarg_T *cap);
103static void nv_bck_word(cmdarg_T *cap);
104static void nv_wordcmd(cmdarg_T *cap);
105static void nv_beginline(cmdarg_T *cap);
106static void adjust_cursor(oparg_T *oap);
107static void adjust_for_sel(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100108static void nv_select(cmdarg_T *cap);
109static void nv_goto(cmdarg_T *cap);
110static void nv_normal(cmdarg_T *cap);
111static void nv_esc(cmdarg_T *oap);
112static void nv_edit(cmdarg_T *cap);
113static void invoke_edit(cmdarg_T *cap, int repl, int cmd, int startln);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114#ifdef FEAT_TEXTOBJ
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100115static void nv_object(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100117static void nv_record(cmdarg_T *cap);
118static void nv_at(cmdarg_T *cap);
119static void nv_halfpage(cmdarg_T *cap);
120static void nv_join(cmdarg_T *cap);
121static void nv_put(cmdarg_T *cap);
Bram Moolenaar0ab190c2019-05-23 23:27:36 +0200122static void nv_put_opt(cmdarg_T *cap, int fix_indent);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100123static void nv_open(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100125static void nv_nbcmd(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126#endif
127#ifdef FEAT_DND
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100128static void nv_drop(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100130static void nv_cursorhold(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131
Bram Moolenaar9fd01c62008-11-01 12:52:38 +0000132static char *e_noident = N_("E349: No identifier under cursor");
133
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134/*
135 * Function to be called for a Normal or Visual mode command.
136 * The argument is a cmdarg_T.
137 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100138typedef void (*nv_func_T)(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100140// Values for cmd_flags.
141#define NV_NCH 0x01 // may need to get a second char
142#define NV_NCH_NOP (0x02|NV_NCH) // get second char when no operator pending
143#define NV_NCH_ALW (0x04|NV_NCH) // always get a second char
144#define NV_LANG 0x08 // second char needs language adjustment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100146#define NV_SS 0x10 // may start selection
147#define NV_SSS 0x20 // may start selection with shift modifier
148#define NV_STS 0x40 // may stop selection without shift modif.
149#define NV_RL 0x80 // 'rightleft' modifies command
150#define NV_KEEPREG 0x100 // don't clear regname
151#define NV_NCW 0x200 // not allowed in command-line window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152
153/*
154 * Generally speaking, every Normal mode command should either clear any
155 * pending operator (with *clearop*()), or set the motion type variable
156 * oap->motion_type.
157 *
158 * When a cursor motion command is made, it is marked as being a character or
159 * line oriented motion. Then, if an operator is in effect, the operation
160 * becomes character or line oriented accordingly.
161 */
162
163/*
164 * This table contains one entry for every Normal or Visual mode command.
165 * The order doesn't matter, init_normal_cmds() will create a sorted index.
166 * It is faster when all keys from zero to '~' are present.
167 */
168static const struct nv_cmd
169{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100170 int cmd_char; // (first) command character
171 nv_func_T cmd_func; // function for this command
172 short_u cmd_flags; // NV_ flags
173 short cmd_arg; // value for ca.arg
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174} nv_cmds[] =
175{
176 {NUL, nv_error, 0, 0},
177 {Ctrl_A, nv_addsub, 0, 0},
178 {Ctrl_B, nv_page, NV_STS, BACKWARD},
179 {Ctrl_C, nv_esc, 0, TRUE},
180 {Ctrl_D, nv_halfpage, 0, 0},
181 {Ctrl_E, nv_scroll_line, 0, TRUE},
182 {Ctrl_F, nv_page, NV_STS, FORWARD},
183 {Ctrl_G, nv_ctrlg, 0, 0},
184 {Ctrl_H, nv_ctrlh, 0, 0},
185 {Ctrl_I, nv_pcmark, 0, 0},
186 {NL, nv_down, 0, FALSE},
187 {Ctrl_K, nv_error, 0, 0},
188 {Ctrl_L, nv_clear, 0, 0},
Bram Moolenaar2c519cf2019-03-21 21:45:34 +0100189 {CAR, nv_down, 0, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190 {Ctrl_N, nv_down, NV_STS, FALSE},
191 {Ctrl_O, nv_ctrlo, 0, 0},
192 {Ctrl_P, nv_up, NV_STS, FALSE},
Bram Moolenaardf177f62005-02-22 08:39:57 +0000193 {Ctrl_Q, nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 {Ctrl_R, nv_redo, 0, 0},
195 {Ctrl_S, nv_ignore, 0, 0},
196 {Ctrl_T, nv_tagpop, NV_NCW, 0},
197 {Ctrl_U, nv_halfpage, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 {Ctrl_V, nv_visual, 0, FALSE},
199 {'V', nv_visual, 0, FALSE},
200 {'v', nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 {Ctrl_W, nv_window, 0, 0},
202 {Ctrl_X, nv_addsub, 0, 0},
203 {Ctrl_Y, nv_scroll_line, 0, FALSE},
204 {Ctrl_Z, nv_suspend, 0, 0},
205 {ESC, nv_esc, 0, FALSE},
206 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0},
207 {Ctrl_RSB, nv_ident, NV_NCW, 0},
208 {Ctrl_HAT, nv_hat, NV_NCW, 0},
209 {Ctrl__, nv_error, 0, 0},
210 {' ', nv_right, 0, 0},
211 {'!', nv_operator, 0, 0},
212 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0},
213 {'#', nv_ident, 0, 0},
214 {'$', nv_dollar, 0, 0},
215 {'%', nv_percent, 0, 0},
216 {'&', nv_optrans, 0, 0},
217 {'\'', nv_gomark, NV_NCH_ALW, TRUE},
218 {'(', nv_brace, 0, BACKWARD},
219 {')', nv_brace, 0, FORWARD},
220 {'*', nv_ident, 0, 0},
221 {'+', nv_down, 0, TRUE},
222 {',', nv_csearch, 0, TRUE},
223 {'-', nv_up, 0, TRUE},
224 {'.', nv_dot, NV_KEEPREG, 0},
225 {'/', nv_search, 0, FALSE},
226 {'0', nv_beginline, 0, 0},
227 {'1', nv_ignore, 0, 0},
228 {'2', nv_ignore, 0, 0},
229 {'3', nv_ignore, 0, 0},
230 {'4', nv_ignore, 0, 0},
231 {'5', nv_ignore, 0, 0},
232 {'6', nv_ignore, 0, 0},
233 {'7', nv_ignore, 0, 0},
234 {'8', nv_ignore, 0, 0},
235 {'9', nv_ignore, 0, 0},
236 {':', nv_colon, 0, 0},
237 {';', nv_csearch, 0, FALSE},
238 {'<', nv_operator, NV_RL, 0},
239 {'=', nv_operator, 0, 0},
240 {'>', nv_operator, NV_RL, 0},
241 {'?', nv_search, 0, FALSE},
242 {'@', nv_at, NV_NCH_NOP, FALSE},
243 {'A', nv_edit, 0, 0},
244 {'B', nv_bck_word, 0, 1},
245 {'C', nv_abbrev, NV_KEEPREG, 0},
246 {'D', nv_abbrev, NV_KEEPREG, 0},
247 {'E', nv_wordcmd, 0, TRUE},
248 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
249 {'G', nv_goto, 0, TRUE},
250 {'H', nv_scroll, 0, 0},
251 {'I', nv_edit, 0, 0},
252 {'J', nv_join, 0, 0},
253 {'K', nv_ident, 0, 0},
254 {'L', nv_scroll, 0, 0},
255 {'M', nv_scroll, 0, 0},
256 {'N', nv_next, 0, SEARCH_REV},
257 {'O', nv_open, 0, 0},
258 {'P', nv_put, 0, 0},
259 {'Q', nv_exmode, NV_NCW, 0},
260 {'R', nv_Replace, 0, FALSE},
261 {'S', nv_subst, NV_KEEPREG, 0},
262 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
263 {'U', nv_Undo, 0, 0},
264 {'W', nv_wordcmd, 0, TRUE},
265 {'X', nv_abbrev, NV_KEEPREG, 0},
266 {'Y', nv_abbrev, NV_KEEPREG, 0},
267 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0},
268 {'[', nv_brackets, NV_NCH_ALW, BACKWARD},
269 {'\\', nv_error, 0, 0},
270 {']', nv_brackets, NV_NCH_ALW, FORWARD},
271 {'^', nv_beginline, 0, BL_WHITE | BL_FIX},
272 {'_', nv_lineop, 0, 0},
273 {'`', nv_gomark, NV_NCH_ALW, FALSE},
274 {'a', nv_edit, NV_NCH, 0},
275 {'b', nv_bck_word, 0, 0},
276 {'c', nv_operator, 0, 0},
277 {'d', nv_operator, 0, 0},
278 {'e', nv_wordcmd, 0, FALSE},
279 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
280 {'g', nv_g_cmd, NV_NCH_ALW, FALSE},
281 {'h', nv_left, NV_RL, 0},
282 {'i', nv_edit, NV_NCH, 0},
283 {'j', nv_down, 0, FALSE},
284 {'k', nv_up, 0, FALSE},
285 {'l', nv_right, NV_RL, 0},
286 {'m', nv_mark, NV_NCH_NOP, 0},
287 {'n', nv_next, 0, 0},
288 {'o', nv_open, 0, 0},
289 {'p', nv_put, 0, 0},
290 {'q', nv_record, NV_NCH, 0},
291 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0},
292 {'s', nv_subst, NV_KEEPREG, 0},
293 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
294 {'u', nv_undo, 0, 0},
295 {'w', nv_wordcmd, 0, FALSE},
296 {'x', nv_abbrev, NV_KEEPREG, 0},
297 {'y', nv_operator, 0, 0},
298 {'z', nv_zet, NV_NCH_ALW, 0},
299 {'{', nv_findpar, 0, BACKWARD},
300 {'|', nv_pipe, 0, 0},
301 {'}', nv_findpar, 0, FORWARD},
302 {'~', nv_tilde, 0, 0},
303
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100304 // pound sign
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 {POUND, nv_ident, 0, 0},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200306 {K_MOUSEUP, nv_mousescroll, 0, MSCR_UP},
307 {K_MOUSEDOWN, nv_mousescroll, 0, MSCR_DOWN},
308 {K_MOUSELEFT, nv_mousescroll, 0, MSCR_LEFT},
309 {K_MOUSERIGHT, nv_mousescroll, 0, MSCR_RIGHT},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 {K_LEFTMOUSE, nv_mouse, 0, 0},
311 {K_LEFTMOUSE_NM, nv_mouse, 0, 0},
312 {K_LEFTDRAG, nv_mouse, 0, 0},
313 {K_LEFTRELEASE, nv_mouse, 0, 0},
314 {K_LEFTRELEASE_NM, nv_mouse, 0, 0},
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100315 {K_MOUSEMOVE, nv_mouse, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 {K_MIDDLEMOUSE, nv_mouse, 0, 0},
317 {K_MIDDLEDRAG, nv_mouse, 0, 0},
318 {K_MIDDLERELEASE, nv_mouse, 0, 0},
319 {K_RIGHTMOUSE, nv_mouse, 0, 0},
320 {K_RIGHTDRAG, nv_mouse, 0, 0},
321 {K_RIGHTRELEASE, nv_mouse, 0, 0},
322 {K_X1MOUSE, nv_mouse, 0, 0},
323 {K_X1DRAG, nv_mouse, 0, 0},
324 {K_X1RELEASE, nv_mouse, 0, 0},
325 {K_X2MOUSE, nv_mouse, 0, 0},
326 {K_X2DRAG, nv_mouse, 0, 0},
327 {K_X2RELEASE, nv_mouse, 0, 0},
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000328 {K_IGNORE, nv_ignore, NV_KEEPREG, 0},
Bram Moolenaarebefac62005-12-28 22:39:57 +0000329 {K_NOP, nv_nop, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330 {K_INS, nv_edit, 0, 0},
331 {K_KINS, nv_edit, 0, 0},
332 {K_BS, nv_ctrlh, 0, 0},
333 {K_UP, nv_up, NV_SSS|NV_STS, FALSE},
334 {K_S_UP, nv_page, NV_SS, BACKWARD},
335 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE},
336 {K_S_DOWN, nv_page, NV_SS, FORWARD},
337 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0},
338 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0},
339 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1},
340 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0},
341 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE},
342 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE},
343 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
344 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
345 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
346 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
347 {K_END, nv_end, NV_SSS|NV_STS, FALSE},
348 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 {K_S_END, nv_end, NV_SS, FALSE},
350 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE},
351 {K_HOME, nv_home, NV_SSS|NV_STS, 0},
352 {K_KHOME, nv_home, NV_SSS|NV_STS, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 {K_S_HOME, nv_home, NV_SS, 0},
354 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE},
355 {K_DEL, nv_abbrev, 0, 0},
356 {K_KDEL, nv_abbrev, 0, 0},
357 {K_UNDO, nv_kundo, 0, 0},
358 {K_HELP, nv_help, NV_NCW, 0},
359 {K_F1, nv_help, NV_NCW, 0},
360 {K_XF1, nv_help, NV_NCW, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 {K_SELECT, nv_select, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362#ifdef FEAT_GUI
363 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0},
364 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0},
365#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000366#ifdef FEAT_GUI_TABLINE
367 {K_TABLINE, nv_tabline, 0, 0},
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000368 {K_TABMENU, nv_tabmenu, 0, 0},
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370#ifdef FEAT_NETBEANS_INTG
371 {K_F21, nv_nbcmd, NV_NCH_ALW, 0},
372#endif
373#ifdef FEAT_DND
374 {K_DROP, nv_drop, NV_STS, 0},
375#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000376 {K_CURSORHOLD, nv_cursorhold, NV_KEEPREG, 0},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100377 {K_PS, nv_edit, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378};
379
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100380// Number of commands in nv_cmds[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381#define NV_CMDS_SIZE (sizeof(nv_cmds) / sizeof(struct nv_cmd))
382
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100383// Sorted index of commands in nv_cmds[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384static short nv_cmd_idx[NV_CMDS_SIZE];
385
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100386// The highest index for which
387// nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388static int nv_max_linear;
389
390/*
391 * Compare functions for qsort() below, that checks the command character
392 * through the index in nv_cmd_idx[].
393 */
394 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100395nv_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396{
397 int c1, c2;
398
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100399 // The commands are sorted on absolute value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 c1 = nv_cmds[*(const short *)s1].cmd_char;
401 c2 = nv_cmds[*(const short *)s2].cmd_char;
402 if (c1 < 0)
403 c1 = -c1;
404 if (c2 < 0)
405 c2 = -c2;
406 return c1 - c2;
407}
408
409/*
410 * Initialize the nv_cmd_idx[] table.
411 */
412 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100413init_normal_cmds(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414{
415 int i;
416
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100417 // Fill the index table with a one to one relation.
Bram Moolenaar78a15312009-05-15 19:33:18 +0000418 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419 nv_cmd_idx[i] = i;
420
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100421 // Sort the commands by the command character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
423
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100424 // Find the first entry that can't be indexed by the command character.
Bram Moolenaar78a15312009-05-15 19:33:18 +0000425 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char)
427 break;
428 nv_max_linear = i - 1;
429}
430
431/*
432 * Search for a command in the commands table.
433 * Returns -1 for invalid command.
434 */
435 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100436find_command(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437{
438 int i;
439 int idx;
440 int top, bot;
441 int c;
442
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100443 // A multi-byte character is never a command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 if (cmdchar >= 0x100)
445 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100447 // We use the absolute value of the character. Special keys have a
448 // negative value, but are sorted on their absolute value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 if (cmdchar < 0)
450 cmdchar = -cmdchar;
451
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100452 // If the character is in the first part: The character is the index into
453 // nv_cmd_idx[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 if (cmdchar <= nv_max_linear)
455 return nv_cmd_idx[cmdchar];
456
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100457 // Perform a binary search.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 bot = nv_max_linear + 1;
459 top = NV_CMDS_SIZE - 1;
460 idx = -1;
461 while (bot <= top)
462 {
463 i = (top + bot) / 2;
464 c = nv_cmds[nv_cmd_idx[i]].cmd_char;
465 if (c < 0)
466 c = -c;
467 if (cmdchar == c)
468 {
469 idx = nv_cmd_idx[i];
470 break;
471 }
472 if (cmdchar > c)
473 bot = i + 1;
474 else
475 top = i - 1;
476 }
477 return idx;
478}
479
480/*
481 * Execute a command in Normal mode.
482 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100484normal_cmd(
485 oparg_T *oap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100486 int toplevel UNUSED) // TRUE when called from main()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100488 cmdarg_T ca; // command arguments
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 int c;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100490 int ctrl_w = FALSE; // got CTRL-W command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 int old_col = curwin->w_curswant;
492#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100493 int need_flushbuf; // need to call out_flush()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100495 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 int mapped_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 static int old_mapped_len = 0;
498 int idx;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000499#ifdef FEAT_EVAL
500 int set_prevcount = FALSE;
501#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502
Bram Moolenaara80faa82020-04-12 19:37:17 +0200503 CLEAR_FIELD(ca); // also resets ca.retval
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 ca.oap = oap;
Bram Moolenaara983fe92008-07-31 20:04:27 +0000505
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100506 // Use a count remembered from before entering an operator. After typing
507 // "3d" we return from normal_cmd() and come back here, the "3" is
508 // remembered in "opcount".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509 ca.opcount = opcount;
510
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 /*
512 * If there is an operator pending, then the command we take this time
513 * will terminate it. Finish_op tells us to finish the operation before
514 * returning this time (unless the operation was cancelled).
515 */
516#ifdef CURSOR_SHAPE
517 c = finish_op;
518#endif
519 finish_op = (oap->op_type != OP_NOP);
520#ifdef CURSOR_SHAPE
521 if (finish_op != c)
522 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100523 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524# ifdef FEAT_MOUSESHAPE
525 update_mouseshape(-1);
526# endif
527 }
528#endif
529
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100530 // When not finishing an operator and no register name typed, reset the
531 // count.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 if (!finish_op && !oap->regname)
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000533 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 ca.opcount = 0;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000535#ifdef FEAT_EVAL
536 set_prevcount = TRUE;
537#endif
538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100540 // Restore counts from before receiving K_CURSORHOLD. This means after
541 // typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not
542 // "3 * 2".
Bram Moolenaara983fe92008-07-31 20:04:27 +0000543 if (oap->prev_opcount > 0 || oap->prev_count0 > 0)
544 {
545 ca.opcount = oap->prev_opcount;
546 ca.count0 = oap->prev_count0;
547 oap->prev_opcount = 0;
548 oap->prev_count0 = 0;
549 }
Bram Moolenaara983fe92008-07-31 20:04:27 +0000550
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 mapped_len = typebuf_maplen();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552
553 State = NORMAL_BUSY;
554#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100555 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556#endif
557
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100558#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100559 // Set v:count here, when called from main() and not a stuffed
560 // command, so that v:count can be used in an expression mapping
561 // when there is no count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100562 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100563 set_vcount_ca(&ca, &set_prevcount);
564#endif
565
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 /*
567 * Get the command character from the user.
568 */
569 c = safe_vgetc();
Bram Moolenaar25281632016-01-21 23:32:32 +0100570 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571
572 /*
573 * If a mapping was started in Visual or Select mode, remember the length
574 * of the mapping. This is used below to not return to Insert mode for as
575 * long as the mapping is being executed.
576 */
577 if (restart_edit == 0)
578 old_mapped_len = 0;
579 else if (old_mapped_len
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000580 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 old_mapped_len = typebuf_maplen();
582
583 if (c == NUL)
584 c = K_ZERO;
585
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 /*
587 * In Select mode, typed text replaces the selection.
588 */
589 if (VIsual_active
590 && VIsual_select
591 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
592 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100593 // Fake a "c"hange command. When "restart_edit" is set (e.g., because
594 // 'insertmode' is set) fake a "d"elete command, Insert mode will
595 // restart automatically.
596 // Insert the typed character in the typeahead buffer, so that it can
597 // be mapped in Insert mode. Required for ":lmap" to work.
Bram Moolenaard8fc5c02006-04-29 21:55:22 +0000598 ins_char_typebuf(c);
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000599 if (restart_edit != 0)
600 c = 'd';
601 else
602 c = 'c';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100603 msg_nowait = TRUE; // don't delay going to insert mode
604 old_mapped_len = 0; // do go to Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606
607#ifdef FEAT_CMDL_INFO
608 need_flushbuf = add_to_showcmd(c);
609#endif
610
611getcount:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 if (!(VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 {
614 /*
615 * Handle a count before a command and compute ca.count0.
616 * Note that '0' is a command and not the start of a count, but it's
617 * part of a count after other digits.
618 */
619 while ( (c >= '1' && c <= '9')
620 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
621 {
622 if (c == K_DEL || c == K_KDEL)
623 {
624 ca.count0 /= 10;
625#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100626 del_from_showcmd(4); // delete the digit and ~@%
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627#endif
628 }
629 else
630 ca.count0 = ca.count0 * 10 + (c - '0');
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100631 if (ca.count0 < 0) // got too large!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 ca.count0 = 999999999L;
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000633#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100634 // Set v:count here, when called from main() and not a stuffed
635 // command, so that v:count can be used in an expression mapping
636 // right after the count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100637 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100638 set_vcount_ca(&ca, &set_prevcount);
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000639#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 if (ctrl_w)
641 {
642 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100643 ++allow_keys; // no mapping for nchar, but keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100645 ++no_zero_mapping; // don't map zero here
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000646 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648 --no_zero_mapping;
649 if (ctrl_w)
650 {
651 --no_mapping;
652 --allow_keys;
653 }
654#ifdef FEAT_CMDL_INFO
655 need_flushbuf |= add_to_showcmd(c);
656#endif
657 }
658
659 /*
660 * If we got CTRL-W there may be a/another count
661 */
662 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
663 {
664 ctrl_w = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100665 ca.opcount = ca.count0; // remember first count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 ca.count0 = 0;
667 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100668 ++allow_keys; // no mapping for nchar, but keys
669 c = plain_vgetc(); // get next character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 --no_mapping;
672 --allow_keys;
673#ifdef FEAT_CMDL_INFO
674 need_flushbuf |= add_to_showcmd(c);
675#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100676 goto getcount; // jump back
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 }
678 }
679
Bram Moolenaara983fe92008-07-31 20:04:27 +0000680 if (c == K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100682 // Save the count values so that ca.opcount and ca.count0 are exactly
683 // the same when coming back here after handling K_CURSORHOLD.
Bram Moolenaara983fe92008-07-31 20:04:27 +0000684 oap->prev_opcount = ca.opcount;
685 oap->prev_count0 = ca.count0;
686 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100687 else if (ca.opcount != 0)
Bram Moolenaara983fe92008-07-31 20:04:27 +0000688 {
689 /*
690 * If we're in the middle of an operator (including after entering a
691 * yank buffer with '"') AND we had a count before the operator, then
692 * that count overrides the current value of ca.count0.
693 * What this means effectively, is that commands like "3dw" get turned
694 * into "d3w" which makes things fall into place pretty neatly.
695 * If you give a count before AND after the operator, they are
696 * multiplied.
697 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 if (ca.count0)
699 ca.count0 *= ca.opcount;
700 else
701 ca.count0 = ca.opcount;
702 }
703
704 /*
705 * Always remember the count. It will be set to zero (on the next call,
706 * above) when there is no pending operator.
707 * When called from main(), save the count for use by the "count" built-in
708 * variable.
709 */
710 ca.opcount = ca.count0;
711 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
712
713#ifdef FEAT_EVAL
714 /*
715 * Only set v:count when called from main() and not a stuffed command.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100716 * Do set it for redo.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100718 if (toplevel && readbuf1_empty())
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000719 set_vcount(ca.count0, ca.count1, set_prevcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720#endif
721
722 /*
723 * Find the command character in the table of commands.
724 * For CTRL-W we already got nchar when looking for a count.
725 */
726 if (ctrl_w)
727 {
728 ca.nchar = c;
729 ca.cmdchar = Ctrl_W;
730 }
731 else
732 ca.cmdchar = c;
733 idx = find_command(ca.cmdchar);
734 if (idx < 0)
735 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100736 // Not a known command: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 clearopbeep(oap);
738 goto normal_end;
739 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +0000740
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000741 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100743 // This command is not allowed while editing a cmdline: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 clearopbeep(oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000745 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 goto normal_end;
747 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000748 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
749 goto normal_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 /*
752 * In Visual/Select mode, a few keys are handled in a special way.
753 */
754 if (VIsual_active)
755 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100756 // when 'keymodel' contains "stopsel" may stop Select/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 if (km_stopsel
758 && (nv_cmds[idx].cmd_flags & NV_STS)
759 && !(mod_mask & MOD_MASK_SHIFT))
760 {
761 end_visual_mode();
762 redraw_curbuf_later(INVERTED);
763 }
764
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100765 // Keys that work different when 'keymodel' contains "startsel"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 if (km_startsel)
767 {
768 if (nv_cmds[idx].cmd_flags & NV_SS)
769 {
770 unshift_special(&ca);
771 idx = find_command(ca.cmdchar);
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000772 if (idx < 0)
773 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100774 // Just in case
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000775 clearopbeep(oap);
776 goto normal_end;
777 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 }
779 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
780 && (mod_mask & MOD_MASK_SHIFT))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 mod_mask &= ~MOD_MASK_SHIFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 }
783 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784
785#ifdef FEAT_RIGHTLEFT
786 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
787 && (nv_cmds[idx].cmd_flags & NV_RL))
788 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100789 // Invert horizontal movements and operations. Only when typed by the
790 // user directly, not when the result of a mapping or "x" translated
791 // to "dl".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 switch (ca.cmdchar)
793 {
794 case 'l': ca.cmdchar = 'h'; break;
795 case K_RIGHT: ca.cmdchar = K_LEFT; break;
796 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
797 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
798 case 'h': ca.cmdchar = 'l'; break;
799 case K_LEFT: ca.cmdchar = K_RIGHT; break;
800 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
801 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
802 case '>': ca.cmdchar = '<'; break;
803 case '<': ca.cmdchar = '>'; break;
804 }
805 idx = find_command(ca.cmdchar);
806 }
807#endif
808
809 /*
810 * Get an additional character if we need one.
811 */
812 if ((nv_cmds[idx].cmd_flags & NV_NCH)
813 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
814 && oap->op_type == OP_NOP)
815 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
816 || (ca.cmdchar == 'q'
817 && oap->op_type == OP_NOP
Bram Moolenaar0b6d9112018-05-22 20:35:17 +0200818 && reg_recording == 0
819 && reg_executing == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100821 && (oap->op_type != OP_NOP || VIsual_active))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 {
823 int *cp;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100824 int repl = FALSE; // get character for replace mode
825 int lit = FALSE; // get extra character literally
826 int langmap_active = FALSE; // using :lmap mappings
827 int lang; // getting a text character
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100828#ifdef HAVE_INPUT_METHOD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100829 int save_smd; // saved value of p_smd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830#endif
831
832 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100833 ++allow_keys; // no mapping for nchar, but allow key codes
834 // Don't generate a CursorHold event here, most commands can't handle
835 // it, e.g., nv_replace(), nv_csearch().
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +0000836 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 if (ca.cmdchar == 'g')
838 {
839 /*
840 * For 'g' get the next character now, so that we can check for
841 * "gr", "g'" and "g`".
842 */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000843 ca.nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 LANGMAP_ADJUST(ca.nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845#ifdef FEAT_CMDL_INFO
846 need_flushbuf |= add_to_showcmd(ca.nchar);
847#endif
848 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
Bram Moolenaarba2d44f2013-11-28 19:27:30 +0100849 || ca.nchar == Ctrl_BSL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100851 cp = &ca.extra_char; // need to get a third character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 if (ca.nchar != 'r')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100853 lit = TRUE; // get it literally
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100855 repl = TRUE; // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 }
857 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100858 cp = NULL; // no third character needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 }
860 else
861 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100862 if (ca.cmdchar == 'r') // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 repl = TRUE;
864 cp = &ca.nchar;
865 }
866 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
867
868 /*
869 * Get a second or third character.
870 */
871 if (cp != NULL)
872 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 if (repl)
874 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100875 State = REPLACE; // pretend Replace mode
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100876#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100877 ui_cursor_shape(); // show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878#endif
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100879 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
881 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100882 // Allow mappings defined with ":lmap".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883 --no_mapping;
884 --allow_keys;
885 if (repl)
886 State = LREPLACE;
887 else
888 State = LANGMAP;
889 langmap_active = TRUE;
890 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100891#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 save_smd = p_smd;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100893 p_smd = FALSE; // Don't let the IM code show the mode here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
895 im_set_active(TRUE);
896#endif
897
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000898 *cp = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899
900 if (langmap_active)
901 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100902 // Undo the decrement done above
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 ++no_mapping;
904 ++allow_keys;
905 State = NORMAL_BUSY;
906 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100907#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 if (lang)
909 {
910 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
911 im_save_status(&curbuf->b_p_iminsert);
912 im_set_active(FALSE);
913 }
914 p_smd = save_smd;
915#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 State = NORMAL_BUSY;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917#ifdef FEAT_CMDL_INFO
918 need_flushbuf |= add_to_showcmd(*cp);
919#endif
920
921 if (!lit)
922 {
923#ifdef FEAT_DIGRAPHS
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100924 // Typing CTRL-K gets a digraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 if (*cp == Ctrl_K
926 && ((nv_cmds[idx].cmd_flags & NV_LANG)
927 || cp == &ca.extra_char)
928 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
929 {
930 c = get_digraph(FALSE);
931 if (c > 0)
932 {
933 *cp = c;
934# ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100935 // Guessing how to update showcmd here...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 del_from_showcmd(3);
937 need_flushbuf |= add_to_showcmd(*cp);
938# endif
939 }
940 }
941#endif
942
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100943 // adjust chars > 127, except after "tTfFr" commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 LANGMAP_ADJUST(*cp, !lang);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100946 // adjust Hebrew mapped char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 if (p_hkmap && lang && KeyTyped)
948 *cp = hkmap(*cp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949#endif
950 }
951
952 /*
953 * When the next character is CTRL-\ a following CTRL-N means the
954 * command is aborted and we go to Normal mode.
955 */
956 if (cp == &ca.extra_char
957 && ca.nchar == Ctrl_BSL
958 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
959 {
960 ca.cmdchar = Ctrl_BSL;
961 ca.nchar = ca.extra_char;
962 idx = find_command(ca.cmdchar);
963 }
Bram Moolenaar12a753a2012-10-23 05:08:53 +0200964 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g')
Bram Moolenaarf00dc262012-10-21 03:54:33 +0200965 ca.oap->op_type = get_op_type(*cp, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 else if (*cp == Ctrl_BSL)
967 {
968 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
969
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100970 // There is a busy wait here when typing "f<C-\>" and then
971 // something different from CTRL-N. Can't be avoided.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 while ((c = vpeekc()) <= 0 && towait > 0L)
973 {
974 do_sleep(towait > 50L ? 50L : towait);
975 towait -= 50L;
976 }
977 if (c > 0)
978 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000979 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 if (c != Ctrl_N && c != Ctrl_G)
981 vungetc(c);
982 else
983 {
984 ca.cmdchar = Ctrl_BSL;
985 ca.nchar = c;
986 idx = find_command(ca.cmdchar);
987 }
988 }
989 }
990
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100991 // When getting a text character and the next character is a
992 // multi-byte character, it could be a composing character.
993 // However, don't wait for it to arrive. Also, do enable mapping,
994 // because if it's put back with vungetc() it's too late to apply
995 // mapping.
Bram Moolenaar4f880622014-07-23 12:31:20 +0200996 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 while (enc_utf8 && lang && (c = vpeekc()) > 0
998 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
999 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001000 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 if (!utf_iscomposing(c))
1002 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001003 vungetc(c); // it wasn't, put it back
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 break;
1005 }
1006 else if (ca.ncharC1 == 0)
1007 ca.ncharC1 = c;
1008 else
1009 ca.ncharC2 = c;
1010 }
Bram Moolenaar4f880622014-07-23 12:31:20 +02001011 ++no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 }
1013 --no_mapping;
1014 --allow_keys;
1015 }
1016
1017#ifdef FEAT_CMDL_INFO
1018 /*
1019 * Flush the showcmd characters onto the screen so we can see them while
1020 * the command is being executed. Only do this when the shown command was
1021 * actually displayed, otherwise this will slow down a lot when executing
1022 * mappings.
1023 */
1024 if (need_flushbuf)
1025 out_flush();
1026#endif
Bram Moolenaard9205ca2008-10-02 20:55:54 +00001027 if (ca.cmdchar != K_IGNORE)
1028 did_cursorhold = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029
1030 State = NORMAL;
1031
1032 if (ca.nchar == ESC)
1033 {
1034 clearop(oap);
1035 if (restart_edit == 0 && goto_im())
1036 restart_edit = 'a';
1037 goto normal_end;
1038 }
1039
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001040 if (ca.cmdchar != K_IGNORE)
1041 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001042 msg_didout = FALSE; // don't scroll screen up for normal command
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001043 msg_col = 0;
1044 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001046 old_pos = curwin->w_cursor; // remember where cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001048 // When 'keymodel' contains "startsel" some keys start Select/Visual
1049 // mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 if (!VIsual_active && km_startsel)
1051 {
1052 if (nv_cmds[idx].cmd_flags & NV_SS)
1053 {
1054 start_selection();
1055 unshift_special(&ca);
1056 idx = find_command(ca.cmdchar);
1057 }
1058 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1059 && (mod_mask & MOD_MASK_SHIFT))
1060 {
1061 start_selection();
1062 mod_mask &= ~MOD_MASK_SHIFT;
1063 }
1064 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065
1066 /*
1067 * Execute the command!
1068 * Call the command function found in the commands table.
1069 */
1070 ca.arg = nv_cmds[idx].cmd_arg;
1071 (nv_cmds[idx].cmd_func)(&ca);
1072
1073 /*
1074 * If we didn't start or finish an operator, reset oap->regname, unless we
1075 * need it later.
1076 */
1077 if (!finish_op
1078 && !oap->op_type
1079 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1080 {
1081 clearop(oap);
1082#ifdef FEAT_EVAL
Bram Moolenaar536681b2011-05-10 16:12:45 +02001083 {
1084 int regname = 0;
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001085
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001086 // Adjust the register according to 'clipboard', so that when
1087 // "unnamed" is present it becomes '*' or '+' instead of '"'.
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001088# ifdef FEAT_CLIPBOARD
Bram Moolenaar536681b2011-05-10 16:12:45 +02001089 adjust_clip_reg(&regname);
Bram Moolenaare2bdce32011-05-10 17:29:33 +02001090# endif
Bram Moolenaar536681b2011-05-10 16:12:45 +02001091 set_reg_var(regname);
1092 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093#endif
1094 }
1095
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001096 // Get the length of mapped chars again after typing a count, second
1097 // character or "z333<cr>".
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001098 if (old_mapped_len > 0)
1099 old_mapped_len = typebuf_maplen();
1100
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 /*
Bram Moolenaarfa5612c2019-12-01 19:37:07 +01001102 * If an operation is pending, handle it. But not for K_IGNORE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 */
Bram Moolenaarfa5612c2019-12-01 19:37:07 +01001104 if (ca.cmdchar != K_IGNORE)
1105 do_pending_operator(&ca, old_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106
1107 /*
1108 * Wait for a moment when a message is displayed that will be overwritten
1109 * by the mode message.
1110 * In Visual mode and with "^O" in Insert mode, a short message will be
1111 * overwritten by the mode message. Wait a bit, until a key is hit.
1112 * In Visual mode, it's more important to keep the Visual area updated
1113 * than keeping a message (e.g. from a /pat search).
1114 * Only do this if the command was typed, not from a mapping.
1115 * Don't wait when emsg_silent is non-zero.
1116 * Also wait a bit after an error message, e.g. for "^O:".
1117 * Don't redraw the screen, it would remove the message.
1118 */
1119 if ( ((p_smd
Bram Moolenaar09df3122006-01-23 22:23:09 +00001120 && msg_silent == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 && (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 || (VIsual_active
1123 && old_pos.lnum == curwin->w_cursor.lnum
1124 && old_pos.col == curwin->w_cursor.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 )
1126 && (clear_cmdline
1127 || redraw_cmdline)
1128 && (msg_didout || (msg_didany && msg_scroll))
1129 && !msg_nowait
1130 && KeyTyped)
1131 || (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 && (msg_scroll
1134 || emsg_on_display)))
1135 && oap->regname == 0
1136 && !(ca.retval & CA_COMMAND_BUSY)
1137 && stuff_empty()
1138 && typebuf_typed()
1139 && emsg_silent == 0
1140 && !did_wait_return
1141 && oap->op_type == OP_NOP)
1142 {
1143 int save_State = State;
1144
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001145 // Draw the cursor with the right shape here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 if (restart_edit != 0)
1147 State = INSERT;
1148
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001149 // If need to redraw, and there is a "keep_msg", redraw before the
1150 // delay
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1152 {
1153 char_u *kmsg;
1154
1155 kmsg = keep_msg;
1156 keep_msg = NULL;
Bram Moolenaar5715b312020-03-16 22:08:45 +01001157 // Showmode() will clear keep_msg, but we want to use it anyway.
1158 // First update w_topline.
1159 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 update_screen(0);
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001161 // now reset it, otherwise it's put in the history again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 keep_msg = kmsg;
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001163
1164 kmsg = vim_strsave(keep_msg);
1165 if (kmsg != NULL)
1166 {
1167 msg_attr((char *)kmsg, keep_msg_attr);
1168 vim_free(kmsg);
1169 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 }
1171 setcursor();
Bram Moolenaar5715b312020-03-16 22:08:45 +01001172#ifdef CURSOR_SHAPE
1173 ui_cursor_shape(); // may show different cursor shape
1174#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 cursor_on();
1176 out_flush();
1177 if (msg_scroll || emsg_on_display)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001178 ui_delay(1003L, TRUE); // wait at least one second
1179 ui_delay(3003L, FALSE); // wait up to three seconds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 State = save_State;
1181
1182 msg_scroll = FALSE;
1183 emsg_on_display = FALSE;
1184 }
1185
1186 /*
1187 * Finish up after executing a Normal mode command.
1188 */
1189normal_end:
1190
1191 msg_nowait = FALSE;
1192
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001193 // Reset finish_op, in case it was set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194#ifdef CURSOR_SHAPE
1195 c = finish_op;
1196#endif
1197 finish_op = FALSE;
1198#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001199 // Redraw the cursor with another shape, if we were in Operator-pending
1200 // mode or did a replace command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 if (c || ca.cmdchar == 'r')
1202 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001203 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204# ifdef FEAT_MOUSESHAPE
1205 update_mouseshape(-1);
1206# endif
1207 }
1208#endif
1209
1210#ifdef FEAT_CMDL_INFO
Bram Moolenaara983fe92008-07-31 20:04:27 +00001211 if (oap->op_type == OP_NOP && oap->regname == 0
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001212 && ca.cmdchar != K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 clear_showcmd();
1214#endif
1215
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001216 checkpcmark(); // check if we moved since setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 vim_free(ca.searchbuf);
1218
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 if (has_mbyte)
1220 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 if (curwin->w_p_scb && toplevel)
1223 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001224 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 do_check_scrollbind(TRUE);
1226 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227
Bram Moolenaar860cae12010-06-05 23:22:07 +02001228 if (curwin->w_p_crb && toplevel)
1229 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001230 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar860cae12010-06-05 23:22:07 +02001231 do_check_cursorbind();
1232 }
Bram Moolenaar860cae12010-06-05 23:22:07 +02001233
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001234#ifdef FEAT_TERMINAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001235 // don't go to Insert mode if a terminal has a running job
Bram Moolenaareef9add2017-09-16 15:38:04 +02001236 if (term_job_running(curbuf->b_term))
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001237 restart_edit = 0;
1238#endif
1239
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 /*
1241 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1242 * if still inside a mapping that started in Visual mode).
1243 * May switch from Visual to Select mode after CTRL-O command.
1244 */
1245 if ( oap->op_type == OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1247 || restart_VIsual_select == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 && !(ca.retval & CA_COMMAND_BUSY)
1249 && stuff_empty()
1250 && oap->regname == 0)
1251 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 if (restart_VIsual_select == 1)
1253 {
1254 VIsual_select = TRUE;
1255 showmode();
1256 restart_VIsual_select = 0;
1257 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001258 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 (void)edit(restart_edit, FALSE, 1L);
1260 }
1261
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 if (restart_VIsual_select == 2)
1263 restart_VIsual_select = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001265 // Save count before an operator for next time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 opcount = ca.opcount;
1267}
1268
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001269#ifdef FEAT_EVAL
1270/*
1271 * Set v:count and v:count1 according to "cap".
1272 * Set v:prevcount only when "set_prevcount" is TRUE.
1273 */
1274 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001275set_vcount_ca(cmdarg_T *cap, int *set_prevcount)
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001276{
1277 long count = cap->count0;
1278
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001279 // multiply with cap->opcount the same way as above
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001280 if (cap->opcount != 0)
1281 count = cap->opcount * (count == 0 ? 1 : count);
1282 set_vcount(count, count == 0 ? 1 : count, *set_prevcount);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001283 *set_prevcount = FALSE; // only set v:prevcount once
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001284}
1285#endif
1286
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287/*
Bram Moolenaar5715b312020-03-16 22:08:45 +01001288 * Check if highlighting for Visual mode is possible, give a warning message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 * if not.
1290 */
1291 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001292check_visual_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293{
1294 static int did_check = FALSE;
1295
1296 if (full_screen)
1297 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001298 if (!did_check && HL_ATTR(HLF_V) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001299 msg(_("Warning: terminal cannot highlight"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 did_check = TRUE;
1301 }
1302}
1303
1304/*
Bram Moolenaar66fa2712006-01-22 23:22:22 +00001305 * End Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 * This function should ALWAYS be called to end Visual mode, except from
1307 * do_pending_operator().
1308 */
1309 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001310end_visual_mode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311{
1312#ifdef FEAT_CLIPBOARD
1313 /*
1314 * If we are using the clipboard, then remember what was selected in case
1315 * we need to paste it somewhere while we still own the selection.
1316 * Only do this when the clipboard is already owned. Don't want to grab
1317 * the selection when hitting ESC.
1318 */
1319 if (clip_star.available && clip_star.owned)
1320 clip_auto_select();
1321#endif
1322
1323 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 setmouse();
1325 mouse_dragging = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001327 // Save the current VIsual area for '< and '> marks, and "gv"
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001328 curbuf->b_visual.vi_mode = VIsual_mode;
1329 curbuf->b_visual.vi_start = VIsual;
1330 curbuf->b_visual.vi_end = curwin->w_cursor;
1331 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332#ifdef FEAT_EVAL
1333 curbuf->b_visual_mode_eval = VIsual_mode;
1334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 if (!virtual_active())
1336 curwin->w_cursor.coladd = 0;
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001337 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001339 adjust_cursor_eol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340}
1341
1342/*
1343 * Reset VIsual_active and VIsual_reselect.
1344 */
1345 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001346reset_VIsual_and_resel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347{
1348 if (VIsual_active)
1349 {
1350 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001351 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 }
1353 VIsual_reselect = FALSE;
1354}
1355
1356/*
1357 * Reset VIsual_active and VIsual_reselect if it's set.
1358 */
1359 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001360reset_VIsual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361{
1362 if (VIsual_active)
1363 {
1364 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001365 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 VIsual_reselect = FALSE;
1367 }
1368}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001370 void
1371restore_visual_mode(void)
1372{
1373 if (VIsual_mode_orig != NUL)
1374 {
1375 curbuf->b_visual.vi_mode = VIsual_mode_orig;
1376 VIsual_mode_orig = NUL;
1377 }
1378}
1379
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380/*
1381 * Check for a balloon-eval special item to include when searching for an
1382 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
1383 * Returns TRUE if the character at "*ptr" should be included.
1384 * "dir" is FORWARD or BACKWARD, the direction of searching.
1385 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
1386 * "bnp" points to a counter for square brackets.
1387 */
1388 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001389find_is_eval_item(
1390 char_u *ptr,
1391 int *colp,
1392 int *bnp,
1393 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001395 // Accept everything inside [].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
1397 ++*bnp;
1398 if (*bnp > 0)
1399 {
1400 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
1401 --*bnp;
1402 return TRUE;
1403 }
1404
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001405 // skip over "s.var"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 if (*ptr == '.')
1407 return TRUE;
1408
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001409 // two-character item: s->var
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
1411 && ptr[dir == BACKWARD ? -1 : 0] == '-')
1412 {
1413 *colp += dir;
1414 return TRUE;
1415 }
1416 return FALSE;
1417}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418
1419/*
1420 * Find the identifier under or to the right of the cursor.
1421 * "find_type" can have one of three values:
1422 * FIND_IDENT: find an identifier (keyword)
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001423 * FIND_STRING: find any non-white text
1424 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001425 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426 *
1427 * There are three steps:
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001428 * 1. Search forward for the start of an identifier/text. Doesn't move if
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 * already on one.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001430 * 2. Search backward for the start of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 * This doesn't match the real Vi but I like it a little better and it
1432 * shouldn't bother anyone.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001433 * 3. Search forward to the end of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434 * When FIND_IDENT isn't defined, we backup until a blank.
1435 *
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001436 * Returns the length of the text, or zero if no text is found.
1437 * If text is found, a pointer to the text is put in "*text". This
1438 * points into the current buffer line and is not always NUL terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 */
1440 int
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001441find_ident_under_cursor(char_u **text, int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442{
1443 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001444 curwin->w_cursor.col, text, NULL, find_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445}
1446
1447/*
1448 * Like find_ident_under_cursor(), but for any window and any position.
1449 * However: Uses 'iskeyword' from the current window!.
1450 */
1451 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001452find_ident_at_pos(
1453 win_T *wp,
1454 linenr_T lnum,
1455 colnr_T startcol,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001456 char_u **text,
1457 int *textcol, // column where "text" starts, can be NULL
Bram Moolenaar9b578142016-01-30 19:39:49 +01001458 int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459{
1460 char_u *ptr;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001461 int col = 0; // init to shut up GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 int this_class = 0;
1464 int prev_class;
1465 int prevcol;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001466 int bn = 0; // bracket nesting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467
1468 /*
1469 * if i == 0: try to find an identifier
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001470 * if i == 1: try to find any non-white text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471 */
1472 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
1473 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
1474 {
1475 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001476 * 1. skip to start of identifier/text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 */
1478 col = startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 if (has_mbyte)
1480 {
1481 while (ptr[col] != NUL)
1482 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001483 // Stop at a ']' to evaluate "a[x]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1485 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 this_class = mb_get_class(ptr + col);
1487 if (this_class != 0 && (i == 1 || this_class != 1))
1488 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001489 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 }
1491 }
1492 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 while (ptr[col] != NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01001494 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 )
1497 ++col;
1498
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001499 // When starting on a ']' count it, so that we include the '['.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 bn = ptr[col] == ']';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501
1502 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001503 * 2. Back up to start of identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 if (has_mbyte)
1506 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001507 // Remember class of character under cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1509 this_class = mb_get_class((char_u *)"a");
1510 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 this_class = mb_get_class(ptr + col);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001512 while (col > 0 && this_class != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 {
1514 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
1515 prev_class = mb_get_class(ptr + prevcol);
1516 if (this_class != prev_class
1517 && (i == 0
1518 || prev_class == 0
1519 || (find_type & FIND_IDENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 && (!(find_type & FIND_EVAL)
1521 || prevcol == 0
1522 || !find_is_eval_item(ptr + prevcol, &prevcol,
1523 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 )
1525 break;
1526 col = prevcol;
1527 }
1528
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001529 // If we don't want just any old text, or we've found an
1530 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 if (this_class > 2)
1532 this_class = 2;
1533 if (!(find_type & FIND_STRING) || this_class == 2)
1534 break;
1535 }
1536 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 {
1538 while (col > 0
1539 && ((i == 0
1540 ? vim_iswordc(ptr[col - 1])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001541 : (!VIM_ISWHITE(ptr[col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 && (!(find_type & FIND_IDENT)
1543 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 || ((find_type & FIND_EVAL)
1545 && col > 1
1546 && find_is_eval_item(ptr + col - 1, &col,
1547 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 ))
1549 --col;
1550
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001551 // If we don't want just any old text, or we've found an
1552 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
1554 break;
1555 }
1556 }
1557
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001558 if (ptr[col] == NUL || (i == 0
1559 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001561 // didn't find an identifier or text
Bram Moolenaar17627312019-06-02 19:53:44 +02001562 if ((find_type & FIND_NOERROR) == 0)
1563 {
1564 if (find_type & FIND_STRING)
1565 emsg(_("E348: No string under cursor"));
1566 else
1567 emsg(_(e_noident));
1568 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 return 0;
1570 }
1571 ptr += col;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001572 *text = ptr;
1573 if (textcol != NULL)
1574 *textcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575
1576 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001577 * 3. Find the end if the identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 bn = 0;
1580 startcol -= col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 if (has_mbyte)
1583 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001584 // Search for point of changing multibyte character class.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 this_class = mb_get_class(ptr);
1586 while (ptr[col] != NUL
1587 && ((i == 0 ? mb_get_class(ptr + col) == this_class
1588 : mb_get_class(ptr + col) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 || ((find_type & FIND_EVAL)
1590 && col <= (int)startcol
1591 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 ))
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001593 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 }
1595 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 while ((i == 0 ? vim_iswordc(ptr[col])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001597 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 || ((find_type & FIND_EVAL)
1599 && col <= (int)startcol
1600 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 ++col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603
1604 return col;
1605}
1606
1607/*
1608 * Prepare for redo of a normal command.
1609 */
1610 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001611prep_redo_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612{
1613 prep_redo(cap->oap->regname, cap->count0,
1614 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
1615}
1616
1617/*
1618 * Prepare for redo of any command.
1619 * Note that only the last argument can be a multi-byte char.
1620 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001621 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001622prep_redo(
1623 int regname,
1624 long num,
1625 int cmd1,
1626 int cmd2,
1627 int cmd3,
1628 int cmd4,
1629 int cmd5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630{
1631 ResetRedobuff();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001632 if (regname != 0) // yank from specified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 {
1634 AppendCharToRedobuff('"');
1635 AppendCharToRedobuff(regname);
1636 }
1637 if (num)
1638 AppendNumberToRedobuff(num);
1639
1640 if (cmd1 != NUL)
1641 AppendCharToRedobuff(cmd1);
1642 if (cmd2 != NUL)
1643 AppendCharToRedobuff(cmd2);
1644 if (cmd3 != NUL)
1645 AppendCharToRedobuff(cmd3);
1646 if (cmd4 != NUL)
1647 AppendCharToRedobuff(cmd4);
1648 if (cmd5 != NUL)
1649 AppendCharToRedobuff(cmd5);
1650}
1651
1652/*
1653 * check for operator active and clear it
1654 *
1655 * return TRUE if operator was active
1656 */
1657 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001658checkclearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659{
1660 if (oap->op_type == OP_NOP)
1661 return FALSE;
1662 clearopbeep(oap);
1663 return TRUE;
1664}
1665
1666/*
Bram Moolenaarc980de32007-05-06 11:59:04 +00001667 * Check for operator or Visual active. Clear active operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 *
Bram Moolenaarc980de32007-05-06 11:59:04 +00001669 * Return TRUE if operator or Visual was active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 */
1671 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001672checkclearopq(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001674 if (oap->op_type == OP_NOP && !VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 return FALSE;
1676 clearopbeep(oap);
1677 return TRUE;
1678}
1679
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001680 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001681clearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682{
1683 oap->op_type = OP_NOP;
1684 oap->regname = 0;
1685 oap->motion_force = NUL;
1686 oap->use_reg_one = FALSE;
1687}
1688
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001689 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001690clearopbeep(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691{
1692 clearop(oap);
1693 beep_flush();
1694}
1695
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696/*
1697 * Remove the shift modifier from a special key.
1698 */
1699 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001700unshift_special(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701{
1702 switch (cap->cmdchar)
1703 {
1704 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
1705 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
1706 case K_S_UP: cap->cmdchar = K_UP; break;
1707 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
1708 case K_S_HOME: cap->cmdchar = K_HOME; break;
1709 case K_S_END: cap->cmdchar = K_END; break;
1710 }
1711 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
1712}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001714/*
1715 * If the mode is currently displayed clear the command line or update the
1716 * command displayed.
1717 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001718 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001719may_clear_cmdline(void)
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001720{
1721 if (mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001722 clear_cmdline = TRUE; // unshow visual mode later
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001723#ifdef FEAT_CMDL_INFO
1724 else
1725 clear_showcmd();
1726#endif
1727}
1728
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729#if defined(FEAT_CMDL_INFO) || defined(PROTO)
1730/*
1731 * Routines for displaying a partly typed command
1732 */
1733
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001734#define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735static char_u showcmd_buf[SHOWCMD_BUFLEN];
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001736static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737static int showcmd_is_clear = TRUE;
1738static int showcmd_visual = FALSE;
1739
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001740static void display_showcmd(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741
1742 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001743clear_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744{
1745 if (!p_sc)
1746 return;
1747
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 if (VIsual_active && !char_avail())
1749 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001750 int cursor_bot = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 long lines;
1752 colnr_T leftcol, rightcol;
1753 linenr_T top, bot;
1754
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001755 // Show the size of the Visual area.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001756 if (cursor_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 {
1758 top = VIsual.lnum;
1759 bot = curwin->w_cursor.lnum;
1760 }
1761 else
1762 {
1763 top = curwin->w_cursor.lnum;
1764 bot = VIsual.lnum;
1765 }
1766# ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001767 // Include closed folds as a whole.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001768 (void)hasFolding(top, &top, NULL);
1769 (void)hasFolding(bot, NULL, &bot);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770# endif
1771 lines = bot - top + 1;
1772
1773 if (VIsual_mode == Ctrl_V)
1774 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001775# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001776 char_u *saved_sbr = p_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001777 char_u *saved_w_sbr = curwin->w_p_sbr;
Bram Moolenaar81d00072009-04-29 15:41:40 +00001778
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001779 // Make 'sbr' empty for a moment to get the correct size.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001780 p_sbr = empty_option;
Bram Moolenaaree857022019-11-09 23:26:40 +01001781 curwin->w_p_sbr = empty_option;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001782# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001784# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001785 p_sbr = saved_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001786 curwin->w_p_sbr = saved_w_sbr;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001787# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
1789 (long)(rightcol - leftcol + 1));
1790 }
1791 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
1792 sprintf((char *)showcmd_buf, "%ld", lines);
1793 else
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001794 {
1795 char_u *s, *e;
1796 int l;
1797 int bytes = 0;
1798 int chars = 0;
1799
1800 if (cursor_bot)
1801 {
1802 s = ml_get_pos(&VIsual);
1803 e = ml_get_cursor();
1804 }
1805 else
1806 {
1807 s = ml_get_cursor();
1808 e = ml_get_pos(&VIsual);
1809 }
1810 while ((*p_sel != 'e') ? s <= e : s < e)
1811 {
1812 l = (*mb_ptr2len)(s);
1813 if (l == 0)
1814 {
1815 ++bytes;
1816 ++chars;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001817 break; // end of line
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001818 }
1819 bytes += l;
1820 ++chars;
1821 s += l;
1822 }
1823 if (bytes == chars)
1824 sprintf((char *)showcmd_buf, "%d", chars);
1825 else
1826 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes);
1827 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001828 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 showcmd_visual = TRUE;
1830 }
1831 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 {
1833 showcmd_buf[0] = NUL;
1834 showcmd_visual = FALSE;
1835
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001836 // Don't actually display something if there is nothing to clear.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 if (showcmd_is_clear)
1838 return;
1839 }
1840
1841 display_showcmd();
1842}
1843
1844/*
1845 * Add 'c' to string of shown command chars.
1846 * Return TRUE if output has been written (and setcursor() has been called).
1847 */
1848 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001849add_to_showcmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850{
1851 char_u *p;
1852 int old_len;
1853 int extra_len;
1854 int overflow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 int i;
1856 static int ignore[] =
1857 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001858#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
1860 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001861#endif
Bram Moolenaarec2da362017-01-21 20:04:22 +01001862 K_IGNORE, K_PS,
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001863 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
1865 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001866 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001868 K_CURSORHOLD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 0
1870 };
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871
Bram Moolenaar09df3122006-01-23 22:23:09 +00001872 if (!p_sc || msg_silent != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 return FALSE;
1874
1875 if (showcmd_visual)
1876 {
1877 showcmd_buf[0] = NUL;
1878 showcmd_visual = FALSE;
1879 }
1880
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001881 // Ignore keys that are scrollbar updates and mouse clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 if (IS_SPECIAL(c))
1883 for (i = 0; ignore[i] != 0; ++i)
1884 if (ignore[i] == c)
1885 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886
1887 p = transchar(c);
Bram Moolenaar7ba07412013-12-11 14:55:01 +01001888 if (*p == ' ')
1889 STRCPY(p, "<20>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 old_len = (int)STRLEN(showcmd_buf);
1891 extra_len = (int)STRLEN(p);
1892 overflow = old_len + extra_len - SHOWCMD_COLS;
1893 if (overflow > 0)
Bram Moolenaarb0db5692007-08-14 20:54:49 +00001894 mch_memmove(showcmd_buf, showcmd_buf + overflow,
1895 old_len - overflow + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 STRCAT(showcmd_buf, p);
1897
1898 if (char_avail())
1899 return FALSE;
1900
1901 display_showcmd();
1902
1903 return TRUE;
1904}
1905
1906 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001907add_to_showcmd_c(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908{
1909 if (!add_to_showcmd(c))
1910 setcursor();
1911}
1912
1913/*
1914 * Delete 'len' characters from the end of the shown command.
1915 */
1916 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001917del_from_showcmd(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918{
1919 int old_len;
1920
1921 if (!p_sc)
1922 return;
1923
1924 old_len = (int)STRLEN(showcmd_buf);
1925 if (len > old_len)
1926 len = old_len;
1927 showcmd_buf[old_len - len] = NUL;
1928
1929 if (!char_avail())
1930 display_showcmd();
1931}
1932
1933/*
1934 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
1935 * something and there is a partial mapping.
1936 */
1937 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001938push_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939{
1940 if (p_sc)
1941 STRCPY(old_showcmd_buf, showcmd_buf);
1942}
1943
1944 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001945pop_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946{
1947 if (!p_sc)
1948 return;
1949
1950 STRCPY(showcmd_buf, old_showcmd_buf);
1951
1952 display_showcmd();
1953}
1954
1955 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001956display_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957{
1958 int len;
1959
1960 cursor_off();
1961
1962 len = (int)STRLEN(showcmd_buf);
1963 if (len == 0)
1964 showcmd_is_clear = TRUE;
1965 else
1966 {
1967 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
1968 showcmd_is_clear = FALSE;
1969 }
1970
1971 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00001972 * clear the rest of an old message by outputting up to SHOWCMD_COLS
1973 * spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 */
1975 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
1976
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001977 setcursor(); // put cursor back where it belongs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978}
1979#endif
1980
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981/*
1982 * When "check" is FALSE, prepare for commands that scroll the window.
1983 * When "check" is TRUE, take care of scroll-binding after the window has
1984 * scrolled. Called from normal_cmd() and edit().
1985 */
1986 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001987do_check_scrollbind(int check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988{
1989 static win_T *old_curwin = NULL;
1990 static linenr_T old_topline = 0;
1991#ifdef FEAT_DIFF
1992 static int old_topfill = 0;
1993#endif
1994 static buf_T *old_buf = NULL;
1995 static colnr_T old_leftcol = 0;
1996
1997 if (check && curwin->w_p_scb)
1998 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001999 // If a ":syncbind" command was just used, don't scroll, only reset
2000 // the values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 if (did_syncbind)
2002 did_syncbind = FALSE;
2003 else if (curwin == old_curwin)
2004 {
2005 /*
2006 * Synchronize other windows, as necessary according to
2007 * 'scrollbind'. Don't do this after an ":edit" command, except
2008 * when 'diff' is set.
2009 */
2010 if ((curwin->w_buffer == old_buf
2011#ifdef FEAT_DIFF
2012 || curwin->w_p_diff
2013#endif
2014 )
2015 && (curwin->w_topline != old_topline
2016#ifdef FEAT_DIFF
2017 || curwin->w_topfill != old_topfill
2018#endif
2019 || curwin->w_leftcol != old_leftcol))
2020 {
2021 check_scrollbind(curwin->w_topline - old_topline,
2022 (long)(curwin->w_leftcol - old_leftcol));
2023 }
2024 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002025 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 {
2027 /*
2028 * When switching between windows, make sure that the relative
2029 * vertical offset is valid for the new window. The relative
2030 * offset is invalid whenever another 'scrollbind' window has
2031 * scrolled to a point that would force the current window to
2032 * scroll past the beginning or end of its buffer. When the
2033 * resync is performed, some of the other 'scrollbind' windows may
2034 * need to jump so that the current window's relative position is
2035 * visible on-screen.
2036 */
2037 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
2038 }
2039 curwin->w_scbind_pos = curwin->w_topline;
2040 }
2041
2042 old_curwin = curwin;
2043 old_topline = curwin->w_topline;
2044#ifdef FEAT_DIFF
2045 old_topfill = curwin->w_topfill;
2046#endif
2047 old_buf = curwin->w_buffer;
2048 old_leftcol = curwin->w_leftcol;
2049}
2050
2051/*
2052 * Synchronize any windows that have "scrollbind" set, based on the
2053 * number of rows by which the current window has changed
2054 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
2055 */
2056 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002057check_scrollbind(linenr_T topline_diff, long leftcol_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058{
2059 int want_ver;
2060 int want_hor;
2061 win_T *old_curwin = curwin;
2062 buf_T *old_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 int old_VIsual_select = VIsual_select;
2064 int old_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 colnr_T tgt_leftcol = curwin->w_leftcol;
2066 long topline;
2067 long y;
2068
2069 /*
2070 * check 'scrollopt' string for vertical and horizontal scroll options
2071 */
2072 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
2073#ifdef FEAT_DIFF
2074 want_ver |= old_curwin->w_p_diff;
2075#endif
2076 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
2077
2078 /*
2079 * loop through the scrollbound windows and scroll accordingly
2080 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002082 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 {
2084 curbuf = curwin->w_buffer;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002085 // skip original window and windows with 'noscrollbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 if (curwin != old_curwin && curwin->w_p_scb)
2087 {
2088 /*
2089 * do the vertical scroll
2090 */
2091 if (want_ver)
2092 {
2093#ifdef FEAT_DIFF
2094 if (old_curwin->w_p_diff && curwin->w_p_diff)
2095 {
2096 diff_set_topline(old_curwin, curwin);
2097 }
2098 else
2099#endif
2100 {
2101 curwin->w_scbind_pos += topline_diff;
2102 topline = curwin->w_scbind_pos;
2103 if (topline > curbuf->b_ml.ml_line_count)
2104 topline = curbuf->b_ml.ml_line_count;
2105 if (topline < 1)
2106 topline = 1;
2107
2108 y = topline - curwin->w_topline;
2109 if (y > 0)
2110 scrollup(y, FALSE);
2111 else
2112 scrolldown(-y, FALSE);
2113 }
2114
2115 redraw_later(VALID);
2116 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 }
2119
2120 /*
2121 * do the horizontal scroll
2122 */
2123 if (want_hor && curwin->w_leftcol != tgt_leftcol)
2124 {
2125 curwin->w_leftcol = tgt_leftcol;
2126 leftcol_changed();
2127 }
2128 }
2129 }
2130
2131 /*
2132 * reset current-window
2133 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 VIsual_select = old_VIsual_select;
2135 VIsual_active = old_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 curwin = old_curwin;
2137 curbuf = old_curbuf;
2138}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139
2140/*
2141 * Command character that's ignored.
2142 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02002143 * xon/xoff.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002146nv_ignore(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002148 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149}
2150
2151/*
Bram Moolenaarebefac62005-12-28 22:39:57 +00002152 * Command character that doesn't do anything, but unlike nv_ignore() does
2153 * start edit(). Used for "startinsert" executed while starting up.
2154 */
Bram Moolenaarebefac62005-12-28 22:39:57 +00002155 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002156nv_nop(cmdarg_T *cap UNUSED)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002157{
2158}
2159
2160/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 * Command character doesn't exist.
2162 */
2163 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002164nv_error(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165{
2166 clearopbeep(cap->oap);
2167}
2168
2169/*
2170 * <Help> and <F1> commands.
2171 */
2172 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002173nv_help(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174{
2175 if (!checkclearopq(cap->oap))
2176 ex_help(NULL);
2177}
2178
2179/*
2180 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
2181 */
2182 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002183nv_addsub(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184{
Bram Moolenaarf2732452018-06-03 14:47:35 +02002185#ifdef FEAT_JOB_CHANNEL
2186 if (bt_prompt(curbuf) && !prompt_curpos_editable())
2187 clearopbeep(cap->oap);
2188 else
2189#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01002190 if (!VIsual_active && cap->oap->op_type == OP_NOP)
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002191 {
Bram Moolenaaref2b5032016-01-12 22:20:58 +01002192 prep_redo_cmd(cap);
Bram Moolenaard79e5502016-01-10 22:13:02 +01002193 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB;
2194 op_addsub(cap->oap, cap->count1, cap->arg);
2195 cap->oap->op_type = OP_NOP;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002196 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01002197 else if (VIsual_active)
2198 nv_operator(cap);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02002199 else
Bram Moolenaard79e5502016-01-10 22:13:02 +01002200 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201}
2202
2203/*
2204 * CTRL-F, CTRL-B, etc: Scroll page up or down.
2205 */
2206 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002207nv_page(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208{
2209 if (!checkclearop(cap->oap))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002210 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002211 if (mod_mask & MOD_MASK_CTRL)
2212 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002213 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002214 if (cap->arg == BACKWARD)
2215 goto_tabpage(-(int)cap->count1);
2216 else
2217 goto_tabpage((int)cap->count0);
2218 }
2219 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02002220 (void)onepage(cap->arg, cap->count1);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002221 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222}
2223
2224/*
2225 * Implementation of "gd" and "gD" command.
2226 */
2227 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002228nv_gd(
2229 oparg_T *oap,
2230 int nchar,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002231 int thisblock) // 1 for "1gd" and "1gD"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232{
2233 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 char_u *ptr;
2235
Bram Moolenaard9d30582005-05-18 22:10:28 +00002236 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
Bram Moolenaar1538fc32016-04-16 09:13:34 +02002237 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)
2238 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 clearopbeep(oap);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002240#ifdef FEAT_FOLDING
2241 else if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
2242 foldOpenCursor();
2243#endif
2244}
2245
2246/*
Bram Moolenaar226630a2016-10-08 19:21:31 +02002247 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE
2248 * otherwise.
2249 */
2250 static int
2251is_ident(char_u *line, int offset)
2252{
2253 int i;
2254 int incomment = FALSE;
2255 int instring = 0;
2256 int prev = 0;
2257
2258 for (i = 0; i < offset && line[i] != NUL; i++)
2259 {
2260 if (instring != 0)
2261 {
2262 if (prev != '\\' && line[i] == instring)
2263 instring = 0;
2264 }
2265 else if ((line[i] == '"' || line[i] == '\'') && !incomment)
2266 {
2267 instring = line[i];
2268 }
2269 else
2270 {
2271 if (incomment)
2272 {
2273 if (prev == '*' && line[i] == '/')
2274 incomment = FALSE;
2275 }
2276 else if (prev == '/' && line[i] == '*')
2277 {
2278 incomment = TRUE;
2279 }
2280 else if (prev == '/' && line[i] == '/')
2281 {
2282 return FALSE;
2283 }
2284 }
2285
2286 prev = line[i];
2287 }
2288
2289 return incomment == FALSE && instring == 0;
2290}
2291
2292/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002293 * Search for variable declaration of "ptr[len]".
2294 * When "locally" is TRUE in the current function ("gd"), otherwise in the
2295 * current file ("gD").
2296 * When "thisblock" is TRUE check the {} block scope.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002297 * Return FAIL when not found.
2298 */
2299 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002300find_decl(
2301 char_u *ptr,
2302 int len,
2303 int locally,
2304 int thisblock,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002305 int flags_arg) // flags passed to searchit()
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002306{
2307 char_u *pat;
2308 pos_T old_pos;
2309 pos_T par_pos;
2310 pos_T found_pos;
2311 int t;
2312 int save_p_ws;
2313 int save_p_scs;
2314 int retval = OK;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002315 int incll;
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002316 int searchflags = flags_arg;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002317 int valid;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002318
2319 if ((pat = alloc(len + 7)) == NULL)
2320 return FAIL;
Bram Moolenaard9d30582005-05-18 22:10:28 +00002321
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002322 // Put "\V" before the pattern to avoid that the special meaning of "."
2323 // and "~" causes trouble.
Bram Moolenaard9d30582005-05-18 22:10:28 +00002324 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
2325 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 old_pos = curwin->w_cursor;
2327 save_p_ws = p_ws;
2328 save_p_scs = p_scs;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002329 p_ws = FALSE; // don't wrap around end of file now
2330 p_scs = FALSE; // don't switch ignorecase off now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331
2332 /*
2333 * With "gD" go to line 1.
2334 * With "gd" Search back for the start of the current function, then go
2335 * back until a blank line. If this fails go to line 1.
2336 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002337 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002339 setpcmark(); // Set in findpar() otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 curwin->w_cursor.lnum = 1;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002341 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 }
2343 else
2344 {
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002345 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
2347 --curwin->w_cursor.lnum;
2348 }
2349 curwin->w_cursor.col = 0;
2350
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002351 // Search forward for the identifier, ignore comment lines.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002352 CLEAR_POS(&found_pos);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002353 for (;;)
2354 {
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002355 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02002356 pat, 1L, searchflags, RE_LAST, NULL);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002357 if (curwin->w_cursor.lnum >= old_pos.lnum)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002358 t = FAIL; // match after start is failure too
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002359
Bram Moolenaar0fd92892006-03-09 22:27:48 +00002360 if (thisblock && t != FAIL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002361 {
2362 pos_T *pos;
2363
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002364 // Check that the block the match is in doesn't end before the
2365 // position where we started the search from.
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002366 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
2367 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
2368 && pos->lnum < old_pos.lnum)
Bram Moolenaar60402d62017-04-20 18:54:50 +02002369 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002370 // There can't be a useful match before the end of this block.
2371 // Skip to the end.
Bram Moolenaar60402d62017-04-20 18:54:50 +02002372 curwin->w_cursor = *pos;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002373 continue;
Bram Moolenaar60402d62017-04-20 18:54:50 +02002374 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002375 }
2376
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002377 if (t == FAIL)
2378 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002379 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002380 if (found_pos.lnum != 0)
2381 {
2382 curwin->w_cursor = found_pos;
2383 t = OK;
2384 }
2385 break;
2386 }
Bram Moolenaar81340392012-06-06 16:12:59 +02002387 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002388 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002389 // Ignore this line, continue at start of next line.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002390 ++curwin->w_cursor.lnum;
2391 curwin->w_cursor.col = 0;
2392 continue;
2393 }
Bram Moolenaar226630a2016-10-08 19:21:31 +02002394 valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
2395
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002396 // If the current position is not a valid identifier and a previous
2397 // match is present, favor that one instead.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002398 if (!valid && found_pos.lnum != 0)
2399 {
2400 curwin->w_cursor = found_pos;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002401 break;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002402 }
2403
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002404 // Global search: use first valid match found
Bram Moolenaar226630a2016-10-08 19:21:31 +02002405 if (valid && !locally)
2406 break;
2407 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002408 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002409 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002410 if (found_pos.lnum != 0)
2411 curwin->w_cursor = found_pos;
2412 break;
2413 }
2414
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002415 // For finding a local variable and the match is before the "{" or
2416 // inside a comment, continue searching. For K&R style function
2417 // declarations this skips the function header without types.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002418 if (!valid)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002419 CLEAR_POS(&found_pos);
Bram Moolenaar226630a2016-10-08 19:21:31 +02002420 else
Bram Moolenaar226630a2016-10-08 19:21:31 +02002421 found_pos = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002422 // Remove SEARCH_START from flags to avoid getting stuck at one
2423 // position.
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002424 searchflags &= ~SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002426
2427 if (t == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002429 retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 curwin->w_cursor = old_pos;
2431 }
2432 else
2433 {
2434 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002435 // "n" searches forward now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 reset_search_dir();
2437 }
2438
2439 vim_free(pat);
2440 p_ws = save_p_ws;
2441 p_scs = save_p_scs;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002442
2443 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444}
2445
2446/*
2447 * Move 'dist' lines in direction 'dir', counting lines by *screen*
2448 * lines rather than lines in the file.
2449 * 'dist' must be positive.
2450 *
2451 * Return OK if able to move cursor, FAIL otherwise.
2452 */
2453 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002454nv_screengo(oparg_T *oap, int dir, long dist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455{
2456 int linelen = linetabsize(ml_get_curline());
2457 int retval = OK;
2458 int atend = FALSE;
2459 int n;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002460 int col_off1; // margin offset for first screen line
2461 int col_off2; // margin offset for wrapped screen line
2462 int width1; // text width for first screen line
2463 int width2; // test width for wrapped screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464
2465 oap->motion_type = MCHAR;
Bram Moolenaar91b2bdb2013-07-14 13:32:15 +02002466 oap->inclusive = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467
2468 col_off1 = curwin_col_off();
2469 col_off2 = col_off1 - curwin_col_off2();
Bram Moolenaar02631462017-09-22 15:20:32 +02002470 width1 = curwin->w_width - col_off1;
2471 width2 = curwin->w_width - col_off2;
Bram Moolenaar7cc8ec42015-01-27 20:59:31 +01002472 if (width2 == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002473 width2 = 1; // avoid divide by zero
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 if (curwin->w_width != 0)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002476 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 /*
2478 * Instead of sticking at the last character of the buffer line we
2479 * try to stick in the last column of the screen.
2480 */
2481 if (curwin->w_curswant == MAXCOL)
2482 {
2483 atend = TRUE;
2484 validate_virtcol();
2485 if (width1 <= 0)
2486 curwin->w_curswant = 0;
2487 else
2488 {
2489 curwin->w_curswant = width1 - 1;
2490 if (curwin->w_virtcol > curwin->w_curswant)
2491 curwin->w_curswant += ((curwin->w_virtcol
2492 - curwin->w_curswant - 1) / width2 + 1) * width2;
2493 }
2494 }
2495 else
2496 {
2497 if (linelen > width1)
2498 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2499 else
2500 n = width1;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002501 if (curwin->w_curswant >= (colnr_T)n)
2502 curwin->w_curswant = n - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 }
2504
2505 while (dist--)
2506 {
2507 if (dir == BACKWARD)
2508 {
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002509 if ((long)curwin->w_curswant >= width1)
2510 // Move back within the line. This can give a negative value
2511 // for w_curswant if width1 < width2 (with cpoptions+=n),
2512 // which will get clipped to column 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 curwin->w_curswant -= width2;
2514 else
2515 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002516 // to previous line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 if (curwin->w_cursor.lnum == 1)
2518 {
2519 retval = FAIL;
2520 break;
2521 }
2522 --curwin->w_cursor.lnum;
2523#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002524 // Move to the start of a closed fold. Don't do that when
2525 // 'foldopen' contains "all": it will open in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 if (!(fdo_flags & FDO_ALL))
2527 (void)hasFolding(curwin->w_cursor.lnum,
2528 &curwin->w_cursor.lnum, NULL);
2529#endif
2530 linelen = linetabsize(ml_get_curline());
2531 if (linelen > width1)
2532 curwin->w_curswant += (((linelen - width1 - 1) / width2)
2533 + 1) * width2;
2534 }
2535 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002536 else // dir == FORWARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 {
2538 if (linelen > width1)
2539 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2540 else
2541 n = width1;
2542 if (curwin->w_curswant + width2 < (colnr_T)n)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002543 // move forward within line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 curwin->w_curswant += width2;
2545 else
2546 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002547 // to next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002549 // Move to the end of a closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2551 &curwin->w_cursor.lnum);
2552#endif
2553 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
2554 {
2555 retval = FAIL;
2556 break;
2557 }
2558 curwin->w_cursor.lnum++;
2559 curwin->w_curswant %= width2;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002560 // Check if the cursor has moved below the number display
2561 // when width1 < width2 (with cpoptions+=n). Subtract width2
2562 // to get a negative value for w_curswant, which will get
2563 // clipped to column 0.
2564 if (curwin->w_curswant >= width1)
2565 curwin->w_curswant -= width2;
Bram Moolenaar914968e2011-06-20 00:45:58 +02002566 linelen = linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 }
2568 }
2569 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571
Bram Moolenaar6cd3aee2014-01-14 13:18:58 +01002572 if (virtual_active() && atend)
2573 coladvance(MAXCOL);
2574 else
2575 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
2578 {
Bram Moolenaar773b1582014-08-29 14:20:51 +02002579 colnr_T virtcol;
2580
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 /*
2582 * Check for landing on a character that got split at the end of the
2583 * last line. We want to advance a screenline, not end up in the same
2584 * screenline or move two screenlines.
2585 */
2586 validate_virtcol();
Bram Moolenaar773b1582014-08-29 14:20:51 +02002587 virtcol = curwin->w_virtcol;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002588#if defined(FEAT_LINEBREAK)
Bram Moolenaaree857022019-11-09 23:26:40 +01002589 if (virtcol > (colnr_T)width1 && *get_showbreak_value(curwin) != NUL)
2590 virtcol -= vim_strsize(get_showbreak_value(curwin));
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002591#endif
Bram Moolenaar773b1582014-08-29 14:20:51 +02002592
2593 if (virtcol > curwin->w_curswant
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 && (curwin->w_curswant < (colnr_T)width1
2595 ? (curwin->w_curswant > (colnr_T)width1 / 2)
2596 : ((curwin->w_curswant - width1) % width2
2597 > (colnr_T)width2 / 2)))
2598 --curwin->w_cursor.col;
2599 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600
2601 if (atend)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002602 curwin->w_curswant = MAXCOL; // stick in the last column
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603
2604 return retval;
2605}
2606
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607/*
2608 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
2609 * cap->arg must be TRUE for CTRL-E.
2610 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002611 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002612nv_scroll_line(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613{
2614 if (!checkclearop(cap->oap))
2615 scroll_redraw(cap->arg, cap->count1);
2616}
2617
2618/*
2619 * Scroll "count" lines up or down, and redraw.
2620 */
2621 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002622scroll_redraw(int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623{
2624 linenr_T prev_topline = curwin->w_topline;
2625#ifdef FEAT_DIFF
2626 int prev_topfill = curwin->w_topfill;
2627#endif
2628 linenr_T prev_lnum = curwin->w_cursor.lnum;
2629
2630 if (up)
2631 scrollup(count, TRUE);
2632 else
2633 scrolldown(count, TRUE);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002634 if (get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002636 // Adjust the cursor position for 'scrolloff'. Mark w_topline as
2637 // valid, otherwise the screen jumps back at the end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 cursor_correct();
2639 check_cursor_moved(curwin);
2640 curwin->w_valid |= VALID_TOPLINE;
2641
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002642 // If moved back to where we were, at least move the cursor, otherwise
2643 // we get stuck at one position. Don't move the cursor up if the
2644 // first line of the buffer is already on the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 while (curwin->w_topline == prev_topline
2646#ifdef FEAT_DIFF
2647 && curwin->w_topfill == prev_topfill
2648#endif
2649 )
2650 {
2651 if (up)
2652 {
2653 if (curwin->w_cursor.lnum > prev_lnum
2654 || cursor_down(1L, FALSE) == FAIL)
2655 break;
2656 }
2657 else
2658 {
2659 if (curwin->w_cursor.lnum < prev_lnum
2660 || prev_topline == 1L
2661 || cursor_up(1L, FALSE) == FAIL)
2662 break;
2663 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002664 // Mark w_topline as valid, otherwise the screen jumps back at the
2665 // end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 check_cursor_moved(curwin);
2667 curwin->w_valid |= VALID_TOPLINE;
2668 }
2669 }
2670 if (curwin->w_cursor.lnum != prev_lnum)
2671 coladvance(curwin->w_curswant);
2672 redraw_later(VALID);
2673}
2674
2675/*
2676 * Commands that start with "z".
2677 */
2678 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002679nv_zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680{
2681 long n;
2682 colnr_T col;
2683 int nchar = cap->nchar;
2684#ifdef FEAT_FOLDING
2685 long old_fdl = curwin->w_p_fdl;
2686 int old_fen = curwin->w_p_fen;
2687#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002688#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00002689 int undo = FALSE;
2690#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +01002691 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692
2693 if (VIM_ISDIGIT(nchar))
2694 {
2695 /*
2696 * "z123{nchar}": edit the count before obtaining {nchar}
2697 */
2698 if (checkclearop(cap->oap))
2699 return;
2700 n = nchar - '0';
2701 for (;;)
2702 {
2703#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002704 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705#endif
2706 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002707 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00002708 nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 --no_mapping;
2711 --allow_keys;
2712#ifdef FEAT_CMDL_INFO
2713 (void)add_to_showcmd(nchar);
2714#endif
2715 if (nchar == K_DEL || nchar == K_KDEL)
2716 n /= 10;
2717 else if (VIM_ISDIGIT(nchar))
2718 n = n * 10 + (nchar - '0');
2719 else if (nchar == CAR)
2720 {
2721#ifdef FEAT_GUI
2722 need_mouse_correct = TRUE;
2723#endif
2724 win_setheight((int)n);
2725 break;
2726 }
2727 else if (nchar == 'l'
2728 || nchar == 'h'
2729 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00002730 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 {
2732 cap->count1 = n ? n * cap->count1 : cap->count1;
2733 goto dozet;
2734 }
2735 else
2736 {
2737 clearopbeep(cap->oap);
2738 break;
2739 }
2740 }
2741 cap->oap->op_type = OP_NOP;
2742 return;
2743 }
2744
2745dozet:
2746 if (
2747#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002748 // "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
2749 // and "zC" only in Visual mode. "zj" and "zk" are motion
2750 // commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 cap->nchar != 'f' && cap->nchar != 'F'
2752 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
2753 && cap->nchar != 'j' && cap->nchar != 'k'
2754 &&
2755#endif
2756 checkclearop(cap->oap))
2757 return;
2758
2759 /*
2760 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
2761 * If line number given, set cursor.
2762 */
2763 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
2764 && cap->count0
2765 && cap->count0 != curwin->w_cursor.lnum)
2766 {
2767 setpcmark();
2768 if (cap->count0 > curbuf->b_ml.ml_line_count)
2769 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2770 else
2771 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002772 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 }
2774
2775 switch (nchar)
2776 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002777 // "z+", "z<CR>" and "zt": put cursor at top of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 case '+':
2779 if (cap->count0 == 0)
2780 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002781 // No count given: put cursor at the line below screen
2782 validate_botline(); // make sure w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2784 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2785 else
2786 curwin->w_cursor.lnum = curwin->w_botline;
2787 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002788 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 case NL:
2790 case CAR:
2791 case K_KENTER:
2792 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002793 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794
2795 case 't': scroll_cursor_top(0, TRUE);
2796 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002797 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 break;
2799
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002800 // "z." and "zz": put cursor in middle of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 case '.': beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002802 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803
2804 case 'z': scroll_cursor_halfway(TRUE);
2805 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002806 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 break;
2808
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002809 // "z^", "z-" and "zb": put cursor at bottom of screen
2810 case '^': // Strange Vi behavior: <count>z^ finds line at top of window
2811 // when <count> is at bottom of window, and puts that one at
2812 // bottom of window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813 if (cap->count0 != 0)
2814 {
2815 scroll_cursor_bot(0, TRUE);
2816 curwin->w_cursor.lnum = curwin->w_topline;
2817 }
2818 else if (curwin->w_topline == 1)
2819 curwin->w_cursor.lnum = 1;
2820 else
2821 curwin->w_cursor.lnum = curwin->w_topline - 1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002822 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 case '-':
2824 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002825 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826
2827 case 'b': scroll_cursor_bot(0, TRUE);
2828 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002829 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 break;
2831
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002832 // "zH" - scroll screen right half-page
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 case 'H':
Bram Moolenaar02631462017-09-22 15:20:32 +02002834 cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002835 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002837 // "zh" - scroll screen to the right
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 case 'h':
2839 case K_LEFT:
2840 if (!curwin->w_p_wrap)
2841 {
2842 if ((colnr_T)cap->count1 > curwin->w_leftcol)
2843 curwin->w_leftcol = 0;
2844 else
2845 curwin->w_leftcol -= (colnr_T)cap->count1;
2846 leftcol_changed();
2847 }
2848 break;
2849
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002850 // "zL" - scroll screen left half-page
Bram Moolenaar02631462017-09-22 15:20:32 +02002851 case 'L': cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002852 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002854 // "zl" - scroll screen to the left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 case 'l':
2856 case K_RIGHT:
2857 if (!curwin->w_p_wrap)
2858 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002859 // scroll the window left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 curwin->w_leftcol += (colnr_T)cap->count1;
2861 leftcol_changed();
2862 }
2863 break;
2864
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002865 // "zs" - scroll screen, cursor at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 case 's': if (!curwin->w_p_wrap)
2867 {
2868#ifdef FEAT_FOLDING
2869 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002870 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 else
2872#endif
2873 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002874 if ((long)col > siso)
2875 col -= siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876 else
2877 col = 0;
2878 if (curwin->w_leftcol != col)
2879 {
2880 curwin->w_leftcol = col;
2881 redraw_later(NOT_VALID);
2882 }
2883 }
2884 break;
2885
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002886 // "ze" - scroll screen, cursor at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 case 'e': if (!curwin->w_p_wrap)
2888 {
2889#ifdef FEAT_FOLDING
2890 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002891 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 else
2893#endif
2894 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
Bram Moolenaar02631462017-09-22 15:20:32 +02002895 n = curwin->w_width - curwin_col_off();
Bram Moolenaar375e3392019-01-31 18:26:10 +01002896 if ((long)col + siso < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 col = 0;
2898 else
Bram Moolenaar375e3392019-01-31 18:26:10 +01002899 col = col + siso - n + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 if (curwin->w_leftcol != col)
2901 {
2902 curwin->w_leftcol = col;
2903 redraw_later(NOT_VALID);
2904 }
2905 }
2906 break;
2907
2908#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002909 // "zF": create fold command
2910 // "zf": create fold operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 case 'F':
2912 case 'f': if (foldManualAllowed(TRUE))
2913 {
2914 cap->nchar = 'f';
2915 nv_operator(cap);
2916 curwin->w_p_fen = TRUE;
2917
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002918 // "zF" is like "zfzf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
2920 {
2921 nv_operator(cap);
2922 finish_op = TRUE;
2923 }
2924 }
2925 else
2926 clearopbeep(cap->oap);
2927 break;
2928
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002929 // "zd": delete fold at cursor
2930 // "zD": delete fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 case 'd':
2932 case 'D': if (foldManualAllowed(FALSE))
2933 {
2934 if (VIsual_active)
2935 nv_operator(cap);
2936 else
2937 deleteFold(curwin->w_cursor.lnum,
2938 curwin->w_cursor.lnum, nchar == 'D', FALSE);
2939 }
2940 break;
2941
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002942 // "zE": erase all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943 case 'E': if (foldmethodIsManual(curwin))
2944 {
2945 clearFolding(curwin);
2946 changed_window_setting();
2947 }
2948 else if (foldmethodIsMarker(curwin))
2949 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
2950 TRUE, FALSE);
2951 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002952 emsg(_("E352: Cannot erase folds with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 break;
2954
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002955 // "zn": fold none: reset 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 case 'n': curwin->w_p_fen = FALSE;
2957 break;
2958
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002959 // "zN": fold Normal: set 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 case 'N': curwin->w_p_fen = TRUE;
2961 break;
2962
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002963 // "zi": invert folding: toggle 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
2965 break;
2966
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002967 // "za": open closed fold or close open fold at cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
2969 openFold(curwin->w_cursor.lnum, cap->count1);
2970 else
2971 {
2972 closeFold(curwin->w_cursor.lnum, cap->count1);
2973 curwin->w_p_fen = TRUE;
2974 }
2975 break;
2976
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002977 // "zA": open fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
2979 openFoldRecurse(curwin->w_cursor.lnum);
2980 else
2981 {
2982 closeFoldRecurse(curwin->w_cursor.lnum);
2983 curwin->w_p_fen = TRUE;
2984 }
2985 break;
2986
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002987 // "zo": open fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 case 'o': if (VIsual_active)
2989 nv_operator(cap);
2990 else
2991 openFold(curwin->w_cursor.lnum, cap->count1);
2992 break;
2993
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002994 // "zO": open fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 case 'O': if (VIsual_active)
2996 nv_operator(cap);
2997 else
2998 openFoldRecurse(curwin->w_cursor.lnum);
2999 break;
3000
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003001 // "zc": close fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 case 'c': if (VIsual_active)
3003 nv_operator(cap);
3004 else
3005 closeFold(curwin->w_cursor.lnum, cap->count1);
3006 curwin->w_p_fen = TRUE;
3007 break;
3008
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003009 // "zC": close fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 case 'C': if (VIsual_active)
3011 nv_operator(cap);
3012 else
3013 closeFoldRecurse(curwin->w_cursor.lnum);
3014 curwin->w_p_fen = TRUE;
3015 break;
3016
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003017 // "zv": open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 case 'v': foldOpenCursor();
3019 break;
3020
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003021 // "zx": re-apply 'foldlevel' and open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 case 'x': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003023 curwin->w_foldinvalid = TRUE; // recompute folds
3024 newFoldLevel(); // update right now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 foldOpenCursor();
3026 break;
3027
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003028 // "zX": undo manual opens/closes, re-apply 'foldlevel'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 case 'X': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003030 curwin->w_foldinvalid = TRUE; // recompute folds
3031 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032 break;
3033
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003034 // "zm": fold more
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 case 'm': if (curwin->w_p_fdl > 0)
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003036 {
3037 curwin->w_p_fdl -= cap->count1;
3038 if (curwin->w_p_fdl < 0)
3039 curwin->w_p_fdl = 0;
3040 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003041 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042 curwin->w_p_fen = TRUE;
3043 break;
3044
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003045 // "zM": close all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046 case 'M': curwin->w_p_fdl = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003047 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 curwin->w_p_fen = TRUE;
3049 break;
3050
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003051 // "zr": reduce folding
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003052 case 'r': curwin->w_p_fdl += cap->count1;
3053 {
3054 int d = getDeepestNesting();
3055
3056 if (curwin->w_p_fdl >= d)
3057 curwin->w_p_fdl = d;
3058 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 break;
3060
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003061 // "zR": open all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062 case 'R': curwin->w_p_fdl = getDeepestNesting();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003063 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 break;
3065
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003066 case 'j': // "zj" move to next fold downwards
3067 case 'k': // "zk" move to next fold upwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
3069 cap->count1) == FAIL)
3070 clearopbeep(cap->oap);
3071 break;
3072
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003073#endif // FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00003075#ifdef FEAT_SPELL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003076 case 'u': // "zug" and "zuw": undo "zg" and "zw"
Bram Moolenaard0131a82006-03-04 21:46:13 +00003077 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003078 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003079 nchar = plain_vgetc();
Bram Moolenaard0131a82006-03-04 21:46:13 +00003080 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaard0131a82006-03-04 21:46:13 +00003081 --no_mapping;
3082 --allow_keys;
3083#ifdef FEAT_CMDL_INFO
3084 (void)add_to_showcmd(nchar);
3085#endif
3086 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
3087 {
3088 clearopbeep(cap->oap);
3089 break;
3090 }
3091 undo = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003092 // FALLTHROUGH
Bram Moolenaard0131a82006-03-04 21:46:13 +00003093
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003094 case 'g': // "zg": add good word to word list
3095 case 'w': // "zw": add wrong word to word list
3096 case 'G': // "zG": add good word to temp word list
3097 case 'W': // "zW": add wrong word to temp word list
Bram Moolenaarb765d632005-06-07 21:00:02 +00003098 {
3099 char_u *ptr = NULL;
3100 int len;
3101
3102 if (checkclearop(cap->oap))
3103 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003104 if (VIsual_active && get_visual_text(cap, &ptr, &len)
3105 == FAIL)
3106 return;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003107 if (ptr == NULL)
3108 {
3109 pos_T pos = curwin->w_cursor;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003110
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003111 // Find bad word under the cursor. When 'spell' is
3112 // off this fails and find_ident_under_cursor() is
3113 // used below.
Bram Moolenaar134bf072013-09-25 18:54:24 +02003114 emsg_off++;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003115 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
Bram Moolenaar134bf072013-09-25 18:54:24 +02003116 emsg_off--;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003117 if (len != 0 && curwin->w_cursor.col <= pos.col)
3118 ptr = ml_get_pos(&curwin->w_cursor);
3119 curwin->w_cursor = pos;
3120 }
3121
Bram Moolenaarb765d632005-06-07 21:00:02 +00003122 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
3123 FIND_IDENT)) == 0)
3124 return;
Bram Moolenaar08cc3742019-08-11 22:51:14 +02003125 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W'
3126 ? SPELL_ADD_BAD : SPELL_ADD_GOOD,
Bram Moolenaard0131a82006-03-04 21:46:13 +00003127 (nchar == 'G' || nchar == 'W')
3128 ? 0 : (int)cap->count1,
3129 undo);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003130 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00003131 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003132
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003133 case '=': // "z=": suggestions for a badly spelled word
Bram Moolenaar66fa2712006-01-22 23:22:22 +00003134 if (!checkclearop(cap->oap))
Bram Moolenaard12a1322005-08-21 22:08:24 +00003135 spell_suggest((int)cap->count0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003136 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003137#endif
3138
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 default: clearopbeep(cap->oap);
3140 }
3141
3142#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003143 // Redraw when 'foldenable' changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 if (old_fen != curwin->w_p_fen)
3145 {
3146# ifdef FEAT_DIFF
3147 win_T *wp;
3148
3149 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
3150 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003151 // Adjust 'foldenable' in diff-synced windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 FOR_ALL_WINDOWS(wp)
3153 {
3154 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
3155 {
3156 wp->w_p_fen = curwin->w_p_fen;
3157 changed_window_setting_win(wp);
3158 }
3159 }
3160 }
3161# endif
3162 changed_window_setting();
3163 }
3164
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003165 // Redraw when 'foldlevel' changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 if (old_fdl != curwin->w_p_fdl)
3167 newFoldLevel();
3168#endif
3169}
3170
3171#ifdef FEAT_GUI
3172/*
3173 * Vertical scrollbar movement.
3174 */
3175 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003176nv_ver_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177{
3178 if (cap->oap->op_type != OP_NOP)
3179 clearopbeep(cap->oap);
3180
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003181 // Even if an operator was pending, we still want to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 gui_do_scroll();
3183}
3184
3185/*
3186 * Horizontal scrollbar movement.
3187 */
3188 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003189nv_hor_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190{
3191 if (cap->oap->op_type != OP_NOP)
3192 clearopbeep(cap->oap);
3193
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003194 // Even if an operator was pending, we still want to scroll
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003195 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196}
3197#endif
3198
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003199#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003200/*
3201 * Click in GUI tab.
3202 */
3203 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003204nv_tabline(cmdarg_T *cap)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003205{
3206 if (cap->oap->op_type != OP_NOP)
3207 clearopbeep(cap->oap);
3208
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003209 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003210 goto_tabpage(current_tab);
3211}
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003212
3213/*
3214 * Selected item in tab line menu.
3215 */
3216 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003217nv_tabmenu(cmdarg_T *cap)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003218{
3219 if (cap->oap->op_type != OP_NOP)
3220 clearopbeep(cap->oap);
3221
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003222 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003223 handle_tabmenu();
3224}
3225
3226/*
3227 * Handle selecting an item of the GUI tab line menu.
3228 * Used in Normal and Insert mode.
3229 */
3230 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003231handle_tabmenu(void)
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003232{
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003233 switch (current_tabmenu)
3234 {
3235 case TABLINE_MENU_CLOSE:
3236 if (current_tab == 0)
3237 do_cmdline_cmd((char_u *)"tabclose");
3238 else
3239 {
3240 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
3241 current_tab);
3242 do_cmdline_cmd(IObuff);
3243 }
3244 break;
3245
3246 case TABLINE_MENU_NEW:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003247 if (current_tab == 0)
3248 do_cmdline_cmd((char_u *)"$tabnew");
3249 else
3250 {
3251 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
3252 current_tab - 1);
3253 do_cmdline_cmd(IObuff);
3254 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003255 break;
3256
3257 case TABLINE_MENU_OPEN:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003258 if (current_tab == 0)
3259 do_cmdline_cmd((char_u *)"browse $tabnew");
3260 else
3261 {
3262 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
3263 current_tab - 1);
3264 do_cmdline_cmd(IObuff);
3265 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003266 break;
3267 }
3268}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003269#endif
3270
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271/*
3272 * "Q" command.
3273 */
3274 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003275nv_exmode(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276{
3277 /*
3278 * Ignore 'Q' in Visual mode, just give a beep.
3279 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 if (VIsual_active)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003281 vim_beep(BO_EX);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003282 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 do_exmode(FALSE);
3284}
3285
3286/*
3287 * Handle a ":" command.
3288 */
3289 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003290nv_colon(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291{
3292 int old_p_im;
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003293 int cmd_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 if (VIsual_active)
3296 nv_operator(cap);
3297 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 {
3299 if (cap->oap->op_type != OP_NOP)
3300 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003301 // Using ":" as a movement is characterwise exclusive.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302 cap->oap->motion_type = MCHAR;
3303 cap->oap->inclusive = FALSE;
3304 }
3305 else if (cap->count0)
3306 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003307 // translate "count:" into ":.,.+(count - 1)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308 stuffcharReadbuff('.');
3309 if (cap->count0 > 1)
3310 {
3311 stuffReadbuff((char_u *)",.+");
3312 stuffnumReadbuff((long)cap->count0 - 1L);
3313 }
3314 }
3315
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003316 // When typing, don't type below an old message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 if (KeyTyped)
3318 compute_cmdrow();
3319
3320 old_p_im = p_im;
3321
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003322 // get a command line and execute it
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003323 cmd_result = do_cmdline(NULL, getexline, NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
3325
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003326 // If 'insertmode' changed, enter or exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 if (p_im != old_p_im)
3328 {
3329 if (p_im)
3330 restart_edit = 'i';
3331 else
3332 restart_edit = 0;
3333 }
3334
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003335 if (cmd_result == FAIL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003336 // The Ex command failed, do not execute the operator.
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003337 clearop(cap->oap);
3338 else if (cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
3340 || cap->oap->start.col >
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003341 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
3342 || did_emsg
3343 ))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003344 // The start of the operator has become invalid by the Ex command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 clearopbeep(cap->oap);
3346 }
3347}
3348
3349/*
3350 * Handle CTRL-G command.
3351 */
3352 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003353nv_ctrlg(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003355 if (VIsual_active) // toggle Selection/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 {
3357 VIsual_select = !VIsual_select;
3358 showmode();
3359 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003360 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003361 // print full name if count given or :cd used
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 fileinfo((int)cap->count0, FALSE, TRUE);
3363}
3364
3365/*
3366 * Handle CTRL-H <Backspace> command.
3367 */
3368 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003369nv_ctrlh(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 if (VIsual_active && VIsual_select)
3372 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003373 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 v_visop(cap);
3375 }
3376 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 nv_left(cap);
3378}
3379
3380/*
3381 * CTRL-L: clear screen and redraw.
3382 */
3383 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003384nv_clear(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385{
3386 if (!checkclearop(cap->oap))
3387 {
3388#if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
3389 /*
3390 * Right now, the BeBox doesn't seem to have an easy way to detect
3391 * window resizing, so we cheat and make the user detect it
3392 * manually with CTRL-L instead
3393 */
3394 ui_get_shellsize();
3395#endif
3396#ifdef FEAT_SYN_HL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003397 // Clear all syntax states to force resyncing.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003398 syn_stack_free_all(curwin->w_s);
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02003399# ifdef FEAT_RELTIME
3400 {
3401 win_T *wp;
3402
3403 FOR_ALL_WINDOWS(wp)
3404 wp->w_s->b_syn_slow = FALSE;
3405 }
3406# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407#endif
3408 redraw_later(CLEAR);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003409#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3410# ifdef VIMDLL
3411 if (!gui.in_use)
3412# endif
3413 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01003414#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 }
3416}
3417
3418/*
3419 * CTRL-O: In Select mode: switch to Visual mode for one command.
3420 * Otherwise: Go to older pcmark.
3421 */
3422 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003423nv_ctrlo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 if (VIsual_active && VIsual_select)
3426 {
3427 VIsual_select = FALSE;
3428 showmode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003429 restart_VIsual_select = 2; // restart Select mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 }
3431 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 {
3433 cap->count1 = -cap->count1;
3434 nv_pcmark(cap);
3435 }
3436}
3437
3438/*
Bram Moolenaar1bbb6192018-11-10 16:02:01 +01003439 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is
3440 * not named.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 */
3442 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003443nv_hat(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444{
3445 if (!checkclearopq(cap->oap))
3446 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
3447 GETF_SETMARK|GETF_ALT, FALSE);
3448}
3449
3450/*
3451 * "Z" commands.
3452 */
3453 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003454nv_Zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455{
3456 if (!checkclearopq(cap->oap))
3457 {
3458 switch (cap->nchar)
3459 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003460 // "ZZ": equivalent to ":x".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 case 'Z': do_cmdline_cmd((char_u *)"x");
3462 break;
3463
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003464 // "ZQ": equivalent to ":q!" (Elvis compatible).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 case 'Q': do_cmdline_cmd((char_u *)"q!");
3466 break;
3467
3468 default: clearopbeep(cap->oap);
3469 }
3470 }
3471}
3472
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473/*
3474 * Call nv_ident() as if "c1" was used, with "c2" as next character.
3475 */
3476 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003477do_nv_ident(int c1, int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478{
3479 oparg_T oa;
3480 cmdarg_T ca;
3481
3482 clear_oparg(&oa);
Bram Moolenaara80faa82020-04-12 19:37:17 +02003483 CLEAR_FIELD(ca);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 ca.oap = &oa;
3485 ca.cmdchar = c1;
3486 ca.nchar = c2;
3487 nv_ident(&ca);
3488}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489
3490/*
3491 * Handle the commands that use the word under the cursor.
3492 * [g] CTRL-] :ta to current identifier
3493 * [g] 'K' run program for current identifier
3494 * [g] '*' / to current identifier or string
3495 * [g] '#' ? to current identifier or string
3496 * g ']' :tselect for current identifier
3497 */
3498 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003499nv_ident(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500{
3501 char_u *ptr = NULL;
3502 char_u *buf;
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003503 unsigned buflen;
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003504 char_u *newbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 char_u *p;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003506 char_u *kp; // value of 'keywordprg'
3507 int kp_help; // 'keywordprg' is ":he"
3508 int kp_ex; // 'keywordprg' starts with ":"
3509 int n = 0; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510 int cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003511 int g_cmd; // "g" command
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003512 int tag_cmd = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 char_u *aux_ptr;
3514 int isman;
3515 int isman_s;
3516
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003517 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518 {
3519 cmdchar = cap->nchar;
3520 g_cmd = TRUE;
3521 }
3522 else
3523 {
3524 cmdchar = cap->cmdchar;
3525 g_cmd = FALSE;
3526 }
3527
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003528 if (cmdchar == POUND) // the pound sign, '#' for English keyboards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 cmdchar = '#';
3530
3531 /*
3532 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
3533 */
3534 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
3535 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
3537 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 if (checkclearopq(cap->oap))
3539 return;
3540 }
3541
3542 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
3543 (cmdchar == '*' || cmdchar == '#')
3544 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
3545 {
3546 clearop(cap->oap);
3547 return;
3548 }
3549
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003550 // Allocate buffer to put the command in. Inserting backslashes can
3551 // double the length of the word. p_kp / curbuf->b_p_kp could be added
3552 // and some numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
3554 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
3555 || STRCMP(kp, ":help") == 0);
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003556 if (kp_help && *skipwhite(ptr) == NUL)
3557 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003558 emsg(_(e_noident)); // found white space only
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003559 return;
3560 }
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003561 kp_ex = (*kp == ':');
3562 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp));
3563 buf = alloc(buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 if (buf == NULL)
3565 return;
3566 buf[0] = NUL;
3567
3568 switch (cmdchar)
3569 {
3570 case '*':
3571 case '#':
3572 /*
3573 * Put cursor at start of word, makes search skip the word
3574 * under the cursor.
3575 * Call setpcmark() first, so "*``" puts the cursor back where
3576 * it was.
3577 */
3578 setpcmark();
3579 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
3580
3581 if (!g_cmd && vim_iswordp(ptr))
3582 STRCPY(buf, "\\<");
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003583 no_smartcase = TRUE; // don't use 'smartcase' now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 break;
3585
3586 case 'K':
3587 if (kp_help)
3588 STRCPY(buf, "he! ");
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003589 else if (kp_ex)
3590 {
3591 if (cap->count0 != 0)
3592 vim_snprintf((char *)buf, buflen, "%s %ld",
3593 kp, cap->count0);
3594 else
3595 STRCPY(buf, kp);
3596 STRCAT(buf, " ");
3597 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 else
3599 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003600 // An external command will probably use an argument starting
3601 // with "-" as an option. To avoid trouble we skip the "-".
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003602 while (*ptr == '-' && n > 0)
3603 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003604 ++ptr;
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003605 --n;
3606 }
3607 if (n == 0)
3608 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003609 emsg(_(e_noident)); // found dashes only
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003610 vim_free(buf);
3611 return;
3612 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003613
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003614 // When a count is given, turn it into a range. Is this
3615 // really what we want?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 isman = (STRCMP(kp, "man") == 0);
3617 isman_s = (STRCMP(kp, "man -s") == 0);
3618 if (cap->count0 != 0 && !(isman || isman_s))
3619 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
3620
3621 STRCAT(buf, "! ");
3622 if (cap->count0 == 0 && isman_s)
3623 STRCAT(buf, "man");
3624 else
3625 STRCAT(buf, kp);
3626 STRCAT(buf, " ");
3627 if (cap->count0 != 0 && (isman || isman_s))
3628 {
3629 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
3630 STRCAT(buf, " ");
3631 }
3632 }
3633 break;
3634
3635 case ']':
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003636 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637#ifdef FEAT_CSCOPE
3638 if (p_cst)
3639 STRCPY(buf, "cstag ");
3640 else
3641#endif
3642 STRCPY(buf, "ts ");
3643 break;
3644
3645 default:
Bram Moolenaar97e7a842010-03-17 13:07:08 +01003646 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 if (curbuf->b_help)
3648 STRCPY(buf, "he! ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 else
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003650 {
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003651 if (g_cmd)
3652 STRCPY(buf, "tj ");
3653 else
3654 sprintf((char *)buf, "%ldta ", cap->count0);
3655 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656 }
3657
3658 /*
3659 * Now grab the chars in the identifier
3660 */
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003661 if (cmdchar == 'K' && !kp_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 {
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003663 ptr = vim_strnsave(ptr, n);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003664 if (kp_ex)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003665 // Escape the argument properly for an Ex command
Bram Moolenaar426f3752016-11-04 21:22:37 +01003666 p = vim_strsave_fnameescape(ptr, FALSE);
3667 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003668 // Escape the argument properly for a shell command
Bram Moolenaar426f3752016-11-04 21:22:37 +01003669 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003670 vim_free(ptr);
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003671 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003673 vim_free(buf);
3674 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003676 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003677 if (newbuf == NULL)
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003678 {
3679 vim_free(buf);
3680 vim_free(p);
3681 return;
3682 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003683 buf = newbuf;
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003684 STRCAT(buf, p);
3685 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003687 else
3688 {
3689 if (cmdchar == '*')
3690 aux_ptr = (char_u *)(p_magic ? "/.*~[^$\\" : "/^$\\");
3691 else if (cmdchar == '#')
3692 aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003693 else if (tag_cmd)
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003694 {
3695 if (curbuf->b_help)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003696 // ":help" handles unescaped argument
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003697 aux_ptr = (char_u *)"";
3698 else
3699 aux_ptr = (char_u *)"\\|\"\n[";
3700 }
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003701 else
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003702 aux_ptr = (char_u *)"\\|\"\n*?[";
3703
3704 p = buf + STRLEN(buf);
3705 while (n-- > 0)
3706 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003707 // put a backslash before \ and some others
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003708 if (vim_strchr(aux_ptr, *ptr) != NULL)
3709 *p++ = '\\';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003710 // When current byte is a part of multibyte character, copy all
3711 // bytes of that character.
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003712 if (has_mbyte)
3713 {
3714 int i;
3715 int len = (*mb_ptr2len)(ptr) - 1;
3716
3717 for (i = 0; i < len && n >= 1; ++i, --n)
3718 *p++ = *ptr++;
3719 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003720 *p++ = *ptr++;
3721 }
3722 *p = NUL;
3723 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724
3725 /*
3726 * Execute the command.
3727 */
3728 if (cmdchar == '*' || cmdchar == '#')
3729 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003730 if (!g_cmd && (has_mbyte
3731 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr))
3732 : vim_iswordc(ptr[-1])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 STRCAT(buf, "\\>");
Bram Moolenaard7663c22019-08-06 21:59:57 +02003734
3735 // put pattern in search history
Bram Moolenaarc7be3f32009-12-24 14:01:12 +00003736 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
Bram Moolenaard7663c22019-08-06 21:59:57 +02003738
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003739 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 }
3741 else
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003742 {
3743 g_tag_at_cursor = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 do_cmdline_cmd(buf);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003745 g_tag_at_cursor = FALSE;
3746 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747
3748 vim_free(buf);
3749}
3750
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751/*
3752 * Get visually selected text, within one line only.
3753 * Returns FAIL if more than one line selected.
3754 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003755 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003756get_visual_text(
3757 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003758 char_u **pp, // return: start of selected text
3759 int *lenp) // return: length of selected text
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760{
3761 if (VIsual_mode != 'V')
3762 unadjust_for_sel();
3763 if (VIsual.lnum != curwin->w_cursor.lnum)
3764 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003765 if (cap != NULL)
3766 clearopbeep(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 return FAIL;
3768 }
3769 if (VIsual_mode == 'V')
3770 {
3771 *pp = ml_get_curline();
3772 *lenp = (int)STRLEN(*pp);
3773 }
3774 else
3775 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003776 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 {
3778 *pp = ml_get_pos(&curwin->w_cursor);
3779 *lenp = VIsual.col - curwin->w_cursor.col + 1;
3780 }
3781 else
3782 {
3783 *pp = ml_get_pos(&VIsual);
3784 *lenp = curwin->w_cursor.col - VIsual.col + 1;
3785 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 if (has_mbyte)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003787 // Correct the length to include the whole last character.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003788 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 }
3790 reset_VIsual_and_resel();
3791 return OK;
3792}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793
3794/*
3795 * CTRL-T: backwards in tag stack
3796 */
3797 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003798nv_tagpop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799{
3800 if (!checkclearopq(cap->oap))
3801 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
3802}
3803
3804/*
3805 * Handle scrolling command 'H', 'L' and 'M'.
3806 */
3807 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003808nv_scroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809{
3810 int used = 0;
3811 long n;
3812#ifdef FEAT_FOLDING
3813 linenr_T lnum;
3814#endif
3815 int half;
3816
3817 cap->oap->motion_type = MLINE;
3818 setpcmark();
3819
3820 if (cap->cmdchar == 'L')
3821 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003822 validate_botline(); // make sure curwin->w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 curwin->w_cursor.lnum = curwin->w_botline - 1;
3824 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
3825 curwin->w_cursor.lnum = 1;
3826 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003827 {
3828#ifdef FEAT_FOLDING
3829 if (hasAnyFolding(curwin))
3830 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003831 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003832 for (n = cap->count1 - 1; n > 0
3833 && curwin->w_cursor.lnum > curwin->w_topline; --n)
3834 {
3835 (void)hasFolding(curwin->w_cursor.lnum,
3836 &curwin->w_cursor.lnum, NULL);
3837 --curwin->w_cursor.lnum;
3838 }
3839 }
3840 else
3841#endif
3842 curwin->w_cursor.lnum -= cap->count1 - 1;
3843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 }
3845 else
3846 {
3847 if (cap->cmdchar == 'M')
3848 {
3849#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003850 // Don't count filler lines above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 used -= diff_check_fill(curwin, curwin->w_topline)
3852 - curwin->w_topfill;
3853#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003854 validate_botline(); // make sure w_empty_rows is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
3856 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
3857 {
3858#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003859 // Count half he number of filler lines to be "below this
3860 // line" and half to be "above the next line".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
3862 + n) / 2 >= half)
3863 {
3864 --n;
3865 break;
3866 }
3867#endif
3868 used += plines(curwin->w_topline + n);
3869 if (used >= half)
3870 break;
3871#ifdef FEAT_FOLDING
3872 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
3873 n = lnum - curwin->w_topline;
3874#endif
3875 }
3876 if (n > 0 && used > curwin->w_height)
3877 --n;
3878 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003879 else // (cap->cmdchar == 'H')
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003880 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003882#ifdef FEAT_FOLDING
3883 if (hasAnyFolding(curwin))
3884 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003885 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003886 lnum = curwin->w_topline;
3887 while (n-- > 0 && lnum < curwin->w_botline - 1)
3888 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02003889 (void)hasFolding(lnum, NULL, &lnum);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003890 ++lnum;
3891 }
3892 n = lnum - curwin->w_topline;
3893 }
3894#endif
3895 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 curwin->w_cursor.lnum = curwin->w_topline + n;
3897 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3898 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3899 }
3900
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003901 // Correct for 'so', except when an operator is pending.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02003902 if (cap->oap->op_type == OP_NOP)
3903 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 beginline(BL_SOL | BL_FIX);
3905}
3906
3907/*
3908 * Cursor right commands.
3909 */
3910 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003911nv_right(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912{
3913 long n;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003914 int past_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003916 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
3917 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003918 // <C-Right> and <S-Right> move a word or WORD right
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003919 if (mod_mask & MOD_MASK_CTRL)
3920 cap->arg = TRUE;
3921 nv_wordcmd(cap);
3922 return;
3923 }
3924
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 cap->oap->motion_type = MCHAR;
3926 cap->oap->inclusive = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003927 past_line = (VIsual_active && *p_sel != 'o');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 /*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003930 * In virtual edit mode, there's no such thing as "past_line", as lines
3931 * are (theoretically) infinitely long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 */
3933 if (virtual_active())
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003934 past_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935
3936 for (n = cap->count1; n > 0; --n)
3937 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003938 if ((!past_line && oneright() == FAIL)
3939 || (past_line && *ml_get_cursor() == NUL)
Bram Moolenaar78a15312009-05-15 19:33:18 +00003940 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 {
3942 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003943 * <Space> wraps to next line if 'whichwrap' has 's'.
3944 * 'l' wraps to next line if 'whichwrap' has 'l'.
3945 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 */
3947 if ( ((cap->cmdchar == ' '
3948 && vim_strchr(p_ww, 's') != NULL)
3949 || (cap->cmdchar == 'l'
3950 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00003951 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 && vim_strchr(p_ww, '>') != NULL))
3953 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3954 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003955 // When deleting we also count the NL as a character.
3956 // Set cap->oap->inclusive when last char in the line is
3957 // included, move to next line after that
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003958 if ( cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 && !cap->oap->inclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003960 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 cap->oap->inclusive = TRUE;
3962 else
3963 {
3964 ++curwin->w_cursor.lnum;
3965 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 curwin->w_set_curswant = TRUE;
3968 cap->oap->inclusive = FALSE;
3969 }
3970 continue;
3971 }
3972 if (cap->oap->op_type == OP_NOP)
3973 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003974 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 if (n == cap->count1)
3976 beep_flush();
3977 }
3978 else
3979 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003980 if (!LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 cap->oap->inclusive = TRUE;
3982 }
3983 break;
3984 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003985 else if (past_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 {
3987 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 if (virtual_active())
3989 oneright();
3990 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 if (has_mbyte)
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02003993 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 ++curwin->w_cursor.col;
3996 }
3997 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998 }
3999#ifdef FEAT_FOLDING
4000 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4001 && cap->oap->op_type == OP_NOP)
4002 foldOpenCursor();
4003#endif
4004}
4005
4006/*
4007 * Cursor left commands.
4008 *
4009 * Returns TRUE when operator end should not be adjusted.
4010 */
4011 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004012nv_left(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013{
4014 long n;
4015
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004016 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4017 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004018 // <C-Left> and <S-Left> move a word or WORD left
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004019 if (mod_mask & MOD_MASK_CTRL)
4020 cap->arg = 1;
4021 nv_bck_word(cap);
4022 return;
4023 }
4024
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025 cap->oap->motion_type = MCHAR;
4026 cap->oap->inclusive = FALSE;
4027 for (n = cap->count1; n > 0; --n)
4028 {
4029 if (oneleft() == FAIL)
4030 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004031 // <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
4032 // 'h' wraps to previous line if 'whichwrap' has 'h'.
4033 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 if ( (((cap->cmdchar == K_BS
4035 || cap->cmdchar == Ctrl_H)
4036 && vim_strchr(p_ww, 'b') != NULL)
4037 || (cap->cmdchar == 'h'
4038 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004039 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 && vim_strchr(p_ww, '<') != NULL))
4041 && curwin->w_cursor.lnum > 1)
4042 {
4043 --(curwin->w_cursor.lnum);
4044 coladvance((colnr_T)MAXCOL);
4045 curwin->w_set_curswant = TRUE;
4046
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004047 // When the NL before the first char has to be deleted we
4048 // put the cursor on the NUL after the previous line.
4049 // This is a very special case, be careful!
4050 // Don't adjust op_end now, otherwise it won't work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 if ( (cap->oap->op_type == OP_DELETE
4052 || cap->oap->op_type == OP_CHANGE)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004053 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004055 char_u *cp = ml_get_cursor();
4056
4057 if (*cp != NUL)
4058 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004059 if (has_mbyte)
4060 curwin->w_cursor.col += (*mb_ptr2len)(cp);
4061 else
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004062 ++curwin->w_cursor.col;
4063 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 cap->retval |= CA_NO_ADJ_OP_END;
4065 }
4066 continue;
4067 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004068 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
4070 beep_flush();
4071 break;
4072 }
4073 }
4074#ifdef FEAT_FOLDING
4075 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4076 && cap->oap->op_type == OP_NOP)
4077 foldOpenCursor();
4078#endif
4079}
4080
4081/*
4082 * Cursor up commands.
4083 * cap->arg is TRUE for "-": Move cursor to first non-blank.
4084 */
4085 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004086nv_up(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004088 if (mod_mask & MOD_MASK_SHIFT)
4089 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004090 // <S-Up> is page up
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004091 cap->arg = BACKWARD;
4092 nv_page(cap);
4093 }
4094 else
4095 {
4096 cap->oap->motion_type = MLINE;
4097 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4098 clearopbeep(cap->oap);
4099 else if (cap->arg)
4100 beginline(BL_WHITE | BL_FIX);
4101 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102}
4103
4104/*
4105 * Cursor down commands.
4106 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
4107 */
4108 static void
Bram Moolenaar1b010052016-09-12 12:24:11 +02004109nv_down(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004111 if (mod_mask & MOD_MASK_SHIFT)
4112 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004113 // <S-Down> is page down
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004114 cap->arg = FORWARD;
4115 nv_page(cap);
4116 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02004117#if defined(FEAT_QUICKFIX)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004118 // Quickfix window only: view the result under the cursor.
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004119 else if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
4120 qf_view_result(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121#endif
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004122 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 {
4124#ifdef FEAT_CMDWIN
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004125 // In the cmdline window a <CR> executes the command.
Bram Moolenaar05159a02005-02-26 23:04:13 +00004126 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127 cmdwin_result = CAR;
4128 else
4129#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02004130#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004131 // In a prompt buffer a <CR> in the last line invokes the callback.
Bram Moolenaarf2732452018-06-03 14:47:35 +02004132 if (bt_prompt(curbuf) && cap->cmdchar == CAR
4133 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4134 {
4135 invoke_prompt_callback();
4136 if (restart_edit == 0)
4137 restart_edit = 'a';
4138 }
4139 else
4140#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141 {
4142 cap->oap->motion_type = MLINE;
4143 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4144 clearopbeep(cap->oap);
4145 else if (cap->arg)
4146 beginline(BL_WHITE | BL_FIX);
4147 }
4148 }
4149}
4150
4151#ifdef FEAT_SEARCHPATH
4152/*
4153 * Grab the file name under the cursor and edit it.
4154 */
4155 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004156nv_gotofile(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157{
4158 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004159 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004161 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 {
4163 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004164 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 return;
4166 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004167 if (curbuf_locked())
4168 {
4169 clearop(cap->oap);
4170 return;
4171 }
Bram Moolenaar5aed0cc2020-05-12 22:02:21 +02004172#ifdef FEAT_PROP_POPUP
4173 if (ERROR_IF_TERM_POPUP_WINDOW)
4174 return;
4175#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004177 ptr = grab_file_name(cap->count1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178
4179 if (ptr != NULL)
4180 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004181 // do autowrite if necessary
Bram Moolenaareb44a682017-08-03 22:44:55 +02004182 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf))
Bram Moolenaarcde88542015-08-11 19:14:00 +02004183 (void)autowrite(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 setpcmark();
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004185 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
Bram Moolenaareb44a682017-08-03 22:44:55 +02004186 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004187 && cap->nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004188 {
4189 curwin->w_cursor.lnum = lnum;
4190 check_cursor_lnum();
4191 beginline(BL_SOL | BL_FIX);
4192 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193 vim_free(ptr);
4194 }
4195 else
4196 clearop(cap->oap);
4197}
4198#endif
4199
4200/*
4201 * <End> command: to end of current line or last line.
4202 */
4203 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004204nv_end(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004206 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004208 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 nv_goto(cap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004210 cap->count1 = 1; // to end of current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 }
4212 nv_dollar(cap);
4213}
4214
4215/*
4216 * Handle the "$" command.
4217 */
4218 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004219nv_dollar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220{
4221 cap->oap->motion_type = MCHAR;
4222 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004223 // In virtual mode when off the edge of a line and an operator
4224 // is pending (whew!) keep the cursor where it is.
4225 // Otherwise, send it to the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 if (!virtual_active() || gchar_cursor() != NUL
4227 || cap->oap->op_type == OP_NOP)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004228 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229 if (cursor_down((long)(cap->count1 - 1),
4230 cap->oap->op_type == OP_NOP) == FAIL)
4231 clearopbeep(cap->oap);
4232#ifdef FEAT_FOLDING
4233 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4234 foldOpenCursor();
4235#endif
4236}
4237
4238/*
4239 * Implementation of '?' and '/' commands.
4240 * If cap->arg is TRUE don't set PC mark.
4241 */
4242 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004243nv_search(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244{
4245 oparg_T *oap = cap->oap;
Bram Moolenaardda933d2016-09-03 21:04:58 +02004246 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247
4248 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
4249 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004250 // Translate "g??" to "g?g?"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 cap->cmdchar = 'g';
4252 cap->nchar = '?';
4253 nv_operator(cap);
4254 return;
4255 }
4256
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004257 // When using 'incsearch' the cursor may be moved to set a different search
4258 // start position.
Bram Moolenaare96a2492019-06-25 04:12:16 +02004259 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260
4261 if (cap->searchbuf == NULL)
4262 {
4263 clearop(oap);
4264 return;
4265 }
4266
Bram Moolenaar46539112015-02-17 15:43:57 +01004267 (void)normal_search(cap, cap->cmdchar, cap->searchbuf,
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004268 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor))
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004269 ? 0 : SEARCH_MARK, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270}
4271
4272/*
4273 * Handle "N" and "n" commands.
4274 * cap->arg is SEARCH_REV for "N", 0 for "n".
4275 */
4276 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004277nv_next(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278{
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004279 pos_T old = curwin->w_cursor;
4280 int wrapped = FALSE;
4281 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, &wrapped);
Bram Moolenaar46539112015-02-17 15:43:57 +01004282
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004283 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor))
Bram Moolenaar46539112015-02-17 15:43:57 +01004284 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004285 // Avoid getting stuck on the current cursor position, which can
4286 // happen when an offset is given and the cursor is on the last char
4287 // in the buffer: Repeat with count + 1.
Bram Moolenaar46539112015-02-17 15:43:57 +01004288 cap->count1 += 1;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004289 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL);
Bram Moolenaar46539112015-02-17 15:43:57 +01004290 cap->count1 -= 1;
4291 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292}
4293
4294/*
4295 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
4296 * Uses only cap->count1 and cap->oap from "cap".
Bram Moolenaar46539112015-02-17 15:43:57 +01004297 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 */
Bram Moolenaar46539112015-02-17 15:43:57 +01004299 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004300normal_search(
4301 cmdarg_T *cap,
4302 int dir,
4303 char_u *pat,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004304 int opt, // extra flags for do_search()
4305 int *wrapped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306{
4307 int i;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004308 searchit_arg_T sia;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309
4310 cap->oap->motion_type = MCHAR;
4311 cap->oap->inclusive = FALSE;
4312 cap->oap->use_reg_one = TRUE;
4313 curwin->w_set_curswant = TRUE;
4314
Bram Moolenaara80faa82020-04-12 19:37:17 +02004315 CLEAR_FIELD(sia);
Bram Moolenaarc036e872020-02-21 21:30:52 +01004316 i = do_search(cap->oap, dir, dir, pat, cap->count1,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004317 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, &sia);
4318 if (wrapped != NULL)
4319 *wrapped = sia.sa_wrapped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 if (i == 0)
4321 clearop(cap->oap);
4322 else
4323 {
4324 if (i == 2)
4325 cap->oap->motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327#ifdef FEAT_FOLDING
4328 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4329 foldOpenCursor();
4330#endif
4331 }
4332
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004333 // "/$" will put the cursor after the end of the line, may need to
4334 // correct that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 check_cursor();
Bram Moolenaar46539112015-02-17 15:43:57 +01004336 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337}
4338
4339/*
4340 * Character search commands.
4341 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
4342 * ',' and FALSE for ';'.
4343 * cap->nchar is NUL for ',' and ';' (repeat the search)
4344 */
4345 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004346nv_csearch(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347{
4348 int t_cmd;
4349
4350 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
4351 t_cmd = TRUE;
4352 else
4353 t_cmd = FALSE;
4354
4355 cap->oap->motion_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
4357 clearopbeep(cap->oap);
4358 else
4359 {
4360 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004361 // Include a Tab for "tx" and for "dfx".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
4363 && (t_cmd || cap->oap->op_type != OP_NOP))
4364 {
4365 colnr_T scol, ecol;
4366
4367 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4368 curwin->w_cursor.coladd = ecol - scol;
4369 }
4370 else
4371 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373#ifdef FEAT_FOLDING
4374 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4375 foldOpenCursor();
4376#endif
4377 }
4378}
4379
4380/*
4381 * "[" and "]" commands.
4382 * cap->arg is BACKWARD for "[" and FORWARD for "]".
4383 */
4384 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004385nv_brackets(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386{
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004387 pos_T new_pos = {0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 pos_T prev_pos;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004389 pos_T *pos = NULL; // init for GCC
4390 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 int flag;
4392 long n;
4393 int findc;
4394 int c;
4395
4396 cap->oap->motion_type = MCHAR;
4397 cap->oap->inclusive = FALSE;
4398 old_pos = curwin->w_cursor;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004399 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400
4401#ifdef FEAT_SEARCHPATH
4402 /*
4403 * "[f" or "]f" : Edit file under the cursor (same as "gf")
4404 */
4405 if (cap->nchar == 'f')
4406 nv_gotofile(cap);
4407 else
4408#endif
4409
4410#ifdef FEAT_FIND_ID
4411 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00004412 * Find the occurrence(s) of the identifier or define under cursor
4413 * in current and included files or jump to the first occurrence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 *
4415 * search list jump
4416 * fwd bwd fwd bwd fwd bwd
4417 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
4418 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
4419 */
4420 if (vim_strchr((char_u *)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004421# ifdef EBCDIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 "iI\005dD\067",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004423# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 "iI\011dD\004",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004425# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 cap->nchar) != NULL)
4427 {
4428 char_u *ptr;
4429 int len;
4430
4431 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
4432 clearop(cap->oap);
4433 else
4434 {
4435 find_pattern_in_path(ptr, 0, len, TRUE,
4436 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
4437 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
4438 cap->count1,
4439 isupper(cap->nchar) ? ACTION_SHOW_ALL :
4440 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
4441 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
4442 (linenr_T)MAXLNUM);
4443 curwin->w_set_curswant = TRUE;
4444 }
4445 }
4446 else
4447#endif
4448
4449 /*
4450 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
4451 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
4452 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
4453 * "[m" or "]m" search for prev/next start of (Java) method.
4454 * "[M" or "]M" search for prev/next end of (Java) method.
4455 */
4456 if ( (cap->cmdchar == '['
4457 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
4458 || (cap->cmdchar == ']'
4459 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
4460 {
4461 if (cap->nchar == '*')
4462 cap->nchar = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 prev_pos.lnum = 0;
4464 if (cap->nchar == 'm' || cap->nchar == 'M')
4465 {
4466 if (cap->cmdchar == '[')
4467 findc = '{';
4468 else
4469 findc = '}';
4470 n = 9999;
4471 }
4472 else
4473 {
4474 findc = cap->nchar;
4475 n = cap->count1;
4476 }
4477 for ( ; n > 0; --n)
4478 {
4479 if ((pos = findmatchlimit(cap->oap, findc,
4480 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
4481 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004482 if (new_pos.lnum == 0) // nothing found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 {
4484 if (cap->nchar != 'm' && cap->nchar != 'M')
4485 clearopbeep(cap->oap);
4486 }
4487 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004488 pos = &new_pos; // use last one found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 break;
4490 }
4491 prev_pos = new_pos;
4492 curwin->w_cursor = *pos;
4493 new_pos = *pos;
4494 }
4495 curwin->w_cursor = old_pos;
4496
4497 /*
4498 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
4499 * brought us to the match for "[m" and "]M" when inside a method.
4500 * Try finding the '{' or '}' we want to be at.
4501 * Also repeat for the given count.
4502 */
4503 if (cap->nchar == 'm' || cap->nchar == 'M')
4504 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004505 // norm is TRUE for "]M" and "[m"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 int norm = ((findc == '{') == (cap->nchar == 'm'));
4507
4508 n = cap->count1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004509 // found a match: we were inside a method
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 if (prev_pos.lnum != 0)
4511 {
4512 pos = &prev_pos;
4513 curwin->w_cursor = prev_pos;
4514 if (norm)
4515 --n;
4516 }
4517 else
4518 pos = NULL;
4519 while (n > 0)
4520 {
4521 for (;;)
4522 {
4523 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
4524 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004525 // if not found anything, that's an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 if (pos == NULL)
4527 clearopbeep(cap->oap);
4528 n = 0;
4529 break;
4530 }
4531 c = gchar_cursor();
4532 if (c == '{' || c == '}')
4533 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004534 // Must have found end/start of class: use it.
4535 // Or found the place to be at.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 if ((c == findc && norm) || (n == 1 && !norm))
4537 {
4538 new_pos = curwin->w_cursor;
4539 pos = &new_pos;
4540 n = 0;
4541 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004542 // if no match found at all, we started outside of the
4543 // class and we're inside now. Just go on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 else if (new_pos.lnum == 0)
4545 {
4546 new_pos = curwin->w_cursor;
4547 pos = &new_pos;
4548 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004549 // found start/end of other method: go to match
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 else if ((pos = findmatchlimit(cap->oap, findc,
4551 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
4552 0)) == NULL)
4553 n = 0;
4554 else
4555 curwin->w_cursor = *pos;
4556 break;
4557 }
4558 }
4559 --n;
4560 }
4561 curwin->w_cursor = old_pos;
4562 if (pos == NULL && new_pos.lnum != 0)
4563 clearopbeep(cap->oap);
4564 }
4565 if (pos != NULL)
4566 {
4567 setpcmark();
4568 curwin->w_cursor = *pos;
4569 curwin->w_set_curswant = TRUE;
4570#ifdef FEAT_FOLDING
4571 if ((fdo_flags & FDO_BLOCK) && KeyTyped
4572 && cap->oap->op_type == OP_NOP)
4573 foldOpenCursor();
4574#endif
4575 }
4576 }
4577
4578 /*
4579 * "[[", "[]", "]]" and "][": move to start or end of function
4580 */
4581 else if (cap->nchar == '[' || cap->nchar == ']')
4582 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004583 if (cap->nchar == cap->cmdchar) // "]]" or "[["
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 flag = '{';
4585 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004586 flag = '}'; // "][" or "[]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587
4588 curwin->w_set_curswant = TRUE;
4589 /*
4590 * Imitate strange Vi behaviour: When using "]]" with an operator
4591 * we also stop at '}'.
4592 */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004593 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 (cap->oap->op_type != OP_NOP
4595 && cap->arg == FORWARD && flag == '{')))
4596 clearopbeep(cap->oap);
4597 else
4598 {
4599 if (cap->oap->op_type == OP_NOP)
4600 beginline(BL_WHITE | BL_FIX);
4601#ifdef FEAT_FOLDING
4602 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4603 foldOpenCursor();
4604#endif
4605 }
4606 }
4607
4608 /*
4609 * "[p", "[P", "]P" and "]p": put with indent adjustment
4610 */
4611 else if (cap->nchar == 'p' || cap->nchar == 'P')
4612 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02004613 nv_put_opt(cap, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 }
4615
4616 /*
4617 * "['", "[`", "]'" and "]`": jump to next mark
4618 */
4619 else if (cap->nchar == '\'' || cap->nchar == '`')
4620 {
4621 pos = &curwin->w_cursor;
4622 for (n = cap->count1; n > 0; --n)
4623 {
4624 prev_pos = *pos;
4625 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
4626 cap->nchar == '\'');
4627 if (pos == NULL)
4628 break;
4629 }
4630 if (pos == NULL)
4631 pos = &prev_pos;
4632 nv_cursormark(cap, cap->nchar == '\'', pos);
4633 }
4634
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 /*
4636 * [ or ] followed by a middle mouse click: put selected text with
4637 * indent adjustment. Any other button just does as usual.
4638 */
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02004639 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640 {
4641 (void)do_mouse(cap->oap, cap->nchar,
4642 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
4643 cap->count1, PUT_FIXINDENT);
4644 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645
4646#ifdef FEAT_FOLDING
4647 /*
4648 * "[z" and "]z": move to start or end of open fold.
4649 */
4650 else if (cap->nchar == 'z')
4651 {
4652 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4653 cap->count1) == FAIL)
4654 clearopbeep(cap->oap);
4655 }
4656#endif
4657
4658#ifdef FEAT_DIFF
4659 /*
4660 * "[c" and "]c": move to next or previous diff-change.
4661 */
4662 else if (cap->nchar == 'c')
4663 {
4664 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
4665 cap->count1) == FAIL)
4666 clearopbeep(cap->oap);
4667 }
4668#endif
4669
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00004670#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004671 /*
4672 * "[s", "[S", "]s" and "]S": move to next spell error.
4673 */
4674 else if (cap->nchar == 's' || cap->nchar == 'S')
4675 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004676 setpcmark();
4677 for (n = 0; n < cap->count1; ++n)
Bram Moolenaar95529562005-08-25 21:21:38 +00004678 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4679 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004680 {
4681 clearopbeep(cap->oap);
4682 break;
4683 }
Bram Moolenaarb73fa622017-12-21 20:27:47 +01004684 else
4685 curwin->w_set_curswant = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004686# ifdef FEAT_FOLDING
4687 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4688 foldOpenCursor();
4689# endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004690 }
4691#endif
4692
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004693 // Not a valid cap->nchar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694 else
4695 clearopbeep(cap->oap);
4696}
4697
4698/*
4699 * Handle Normal mode "%" command.
4700 */
4701 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004702nv_percent(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703{
4704 pos_T *pos;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02004705#if defined(FEAT_FOLDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 linenr_T lnum = curwin->w_cursor.lnum;
4707#endif
4708
4709 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004710 if (cap->count0) // {cnt}% : goto {cnt} percentage in file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 {
4712 if (cap->count0 > 100)
4713 clearopbeep(cap->oap);
4714 else
4715 {
4716 cap->oap->motion_type = MLINE;
4717 setpcmark();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004718 // Round up, so CTRL-G will give same value. Watch out for a
4719 // large line count, the line number must not go negative!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 if (curbuf->b_ml.ml_line_count > 1000000)
4721 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
4722 / 100L * cap->count0;
4723 else
4724 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
4725 cap->count0 + 99L) / 100L;
4726 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4727 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4728 beginline(BL_SOL | BL_FIX);
4729 }
4730 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004731 else // "%" : go to matching paren
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 {
4733 cap->oap->motion_type = MCHAR;
4734 cap->oap->use_reg_one = TRUE;
4735 if ((pos = findmatch(cap->oap, NUL)) == NULL)
4736 clearopbeep(cap->oap);
4737 else
4738 {
4739 setpcmark();
4740 curwin->w_cursor = *pos;
4741 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 }
4745 }
4746#ifdef FEAT_FOLDING
4747 if (cap->oap->op_type == OP_NOP
4748 && lnum != curwin->w_cursor.lnum
4749 && (fdo_flags & FDO_PERCENT)
4750 && KeyTyped)
4751 foldOpenCursor();
4752#endif
4753}
4754
4755/*
4756 * Handle "(" and ")" commands.
4757 * cap->arg is BACKWARD for "(" and FORWARD for ")".
4758 */
4759 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004760nv_brace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761{
4762 cap->oap->motion_type = MCHAR;
4763 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004764 // The motion used to be inclusive for "(", but that is not what Vi does.
Bram Moolenaarebefac62005-12-28 22:39:57 +00004765 cap->oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 curwin->w_set_curswant = TRUE;
4767
4768 if (findsent(cap->arg, cap->count1) == FAIL)
4769 clearopbeep(cap->oap);
4770 else
4771 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004772 // Don't leave the cursor on the NUL past end of line.
Bram Moolenaar1f14d572008-01-12 16:12:10 +00004773 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775#ifdef FEAT_FOLDING
4776 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4777 foldOpenCursor();
4778#endif
4779 }
4780}
4781
4782/*
4783 * "m" command: Mark a position.
4784 */
4785 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004786nv_mark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787{
4788 if (!checkclearop(cap->oap))
4789 {
4790 if (setmark(cap->nchar) == FAIL)
4791 clearopbeep(cap->oap);
4792 }
4793}
4794
4795/*
4796 * "{" and "}" commands.
4797 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
4798 */
4799 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004800nv_findpar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801{
4802 cap->oap->motion_type = MCHAR;
4803 cap->oap->inclusive = FALSE;
4804 cap->oap->use_reg_one = TRUE;
4805 curwin->w_set_curswant = TRUE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004806 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 clearopbeep(cap->oap);
4808 else
4809 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811#ifdef FEAT_FOLDING
4812 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4813 foldOpenCursor();
4814#endif
4815 }
4816}
4817
4818/*
4819 * "u" command: Undo or make lower case.
4820 */
4821 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004822nv_undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004824 if (cap->oap->op_type == OP_LOWER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004826 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 cap->cmdchar = 'g';
4828 cap->nchar = 'u';
4829 nv_operator(cap);
4830 }
4831 else
4832 nv_kundo(cap);
4833}
4834
4835/*
4836 * <Undo> command.
4837 */
4838 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004839nv_kundo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840{
4841 if (!checkclearopq(cap->oap))
4842 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02004843#ifdef FEAT_JOB_CHANNEL
4844 if (bt_prompt(curbuf))
4845 {
4846 clearopbeep(cap->oap);
4847 return;
4848 }
4849#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 u_undo((int)cap->count1);
4851 curwin->w_set_curswant = TRUE;
4852 }
4853}
4854
4855/*
4856 * Handle the "r" command.
4857 */
4858 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004859nv_replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860{
4861 char_u *ptr;
4862 int had_ctrl_v;
4863 long n;
4864
4865 if (checkclearop(cap->oap))
4866 return;
Bram Moolenaarf2732452018-06-03 14:47:35 +02004867#ifdef FEAT_JOB_CHANNEL
4868 if (bt_prompt(curbuf) && !prompt_curpos_editable())
4869 {
4870 clearopbeep(cap->oap);
4871 return;
4872 }
4873#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004875 // get another character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 if (cap->nchar == Ctrl_V)
4877 {
4878 had_ctrl_v = Ctrl_V;
4879 cap->nchar = get_literal();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004880 // Don't redo a multibyte character with CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 if (cap->nchar > DEL)
4882 had_ctrl_v = NUL;
4883 }
4884 else
4885 had_ctrl_v = NUL;
4886
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004887 // Abort if the character is a special key.
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00004888 if (IS_SPECIAL(cap->nchar))
4889 {
4890 clearopbeep(cap->oap);
4891 return;
4892 }
4893
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004894 // Visual mode "r"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895 if (VIsual_active)
4896 {
Bram Moolenaar57fb0da2009-02-04 10:46:25 +00004897 if (got_int)
4898 reset_VIsual();
Bram Moolenaard9820532013-11-04 01:41:17 +01004899 if (had_ctrl_v)
4900 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004901 // Use a special (negative) number to make a difference between a
4902 // literal CR or NL and a line break.
Bram Moolenaarf12519d2018-02-06 22:52:49 +01004903 if (cap->nchar == CAR)
4904 cap->nchar = REPLACE_CR_NCHAR;
4905 else if (cap->nchar == NL)
4906 cap->nchar = REPLACE_NL_NCHAR;
Bram Moolenaard9820532013-11-04 01:41:17 +01004907 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 nv_operator(cap);
4909 return;
4910 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004912 // Break tabs, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 if (virtual_active())
4914 {
4915 if (u_save_cursor() == FAIL)
4916 return;
4917 if (gchar_cursor() == NUL)
4918 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004919 // Add extra space and put the cursor on the first one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 coladvance_force((colnr_T)(getviscol() + cap->count1));
4921 curwin->w_cursor.col -= cap->count1;
4922 }
4923 else if (gchar_cursor() == TAB)
4924 coladvance_force(getviscol());
4925 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004927 // Abort if not enough characters to replace.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 ptr = ml_get_cursor();
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00004929 if (STRLEN(ptr) < (unsigned)cap->count1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004930 || (has_mbyte && mb_charlen(ptr) < cap->count1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 {
4932 clearopbeep(cap->oap);
4933 return;
4934 }
4935
4936 /*
4937 * Replacing with a TAB is done by edit() when it is complicated because
4938 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
4939 * Other characters are done below to avoid problems with things like
4940 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
4941 */
4942 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
4943 {
4944 stuffnumReadbuff(cap->count1);
4945 stuffcharReadbuff('R');
4946 stuffcharReadbuff('\t');
4947 stuffcharReadbuff(ESC);
4948 return;
4949 }
4950
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004951 // save line for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 if (u_save_cursor() == FAIL)
4953 return;
4954
4955 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
4956 {
4957 /*
4958 * Replace character(s) by a single newline.
4959 * Strange vi behaviour: Only one newline is inserted.
4960 * Delete the characters here.
4961 * Insert the newline with an insert command, takes care of
4962 * autoindent. The insert command depends on being on the last
4963 * character of a line or not.
4964 */
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004965 (void)del_chars(cap->count1, FALSE); // delete the characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 stuffcharReadbuff('\r');
4967 stuffcharReadbuff(ESC);
4968
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004969 // Give 'r' to edit(), to get the redo command right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 invoke_edit(cap, TRUE, 'r', FALSE);
4971 }
4972 else
4973 {
4974 prep_redo(cap->oap->regname, cap->count1,
4975 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
4976
4977 curbuf->b_op_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 if (has_mbyte)
4979 {
4980 int old_State = State;
4981
4982 if (cap->ncharC1 != 0)
4983 AppendCharToRedobuff(cap->ncharC1);
4984 if (cap->ncharC2 != 0)
4985 AppendCharToRedobuff(cap->ncharC2);
4986
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004987 // This is slow, but it handles replacing a single-byte with a
4988 // multi-byte and the other way around. Also handles adding
4989 // composing characters for utf-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 for (n = cap->count1; n > 0; --n)
4991 {
4992 State = REPLACE;
Bram Moolenaar8320da42012-04-30 18:18:47 +02004993 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
4994 {
4995 int c = ins_copychar(curwin->w_cursor.lnum
4996 + (cap->nchar == Ctrl_Y ? -1 : 1));
4997 if (c != NUL)
4998 ins_char(c);
4999 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005000 // will be decremented further down
Bram Moolenaar8320da42012-04-30 18:18:47 +02005001 ++curwin->w_cursor.col;
5002 }
5003 else
5004 ins_char(cap->nchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 State = old_State;
5006 if (cap->ncharC1 != 0)
5007 ins_char(cap->ncharC1);
5008 if (cap->ncharC2 != 0)
5009 ins_char(cap->ncharC2);
5010 }
5011 }
5012 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 {
5014 /*
5015 * Replace the characters within one line.
5016 */
5017 for (n = cap->count1; n > 0; --n)
5018 {
5019 /*
5020 * Get ptr again, because u_save and/or showmatch() will have
5021 * released the line. At the same time we let know that the
5022 * line will be changed.
5023 */
5024 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005025 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5026 {
5027 int c = ins_copychar(curwin->w_cursor.lnum
5028 + (cap->nchar == Ctrl_Y ? -1 : 1));
5029 if (c != NUL)
5030 ptr[curwin->w_cursor.col] = c;
5031 }
5032 else
5033 ptr[curwin->w_cursor.col] = cap->nchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 if (p_sm && msg_silent == 0)
5035 showmatch(cap->nchar);
5036 ++curwin->w_cursor.col;
5037 }
5038#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005039 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005041 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042
Bram Moolenaar009b2592004-10-24 19:18:58 +00005043 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005044 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005046 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 }
5048#endif
5049
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005050 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051 changed_bytes(curwin->w_cursor.lnum,
5052 (colnr_T)(curwin->w_cursor.col - cap->count1));
5053 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005054 --curwin->w_cursor.col; // cursor on the last replaced char
5055 // if the character on the left of the current cursor is a multi-byte
5056 // character, move two characters left
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 if (has_mbyte)
5058 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 curbuf->b_op_end = curwin->w_cursor;
5060 curwin->w_set_curswant = TRUE;
5061 set_last_insert(cap->nchar);
5062 }
5063}
5064
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065/*
5066 * 'o': Exchange start and end of Visual area.
5067 * 'O': same, but in block mode exchange left and right corners.
5068 */
5069 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005070v_swap_corners(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071{
5072 pos_T old_cursor;
5073 colnr_T left, right;
5074
5075 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
5076 {
5077 old_cursor = curwin->w_cursor;
5078 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
5079 curwin->w_cursor.lnum = VIsual.lnum;
5080 coladvance(left);
5081 VIsual = curwin->w_cursor;
5082
5083 curwin->w_cursor.lnum = old_cursor.lnum;
5084 curwin->w_curswant = right;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005085 // 'selection "exclusive" and cursor at right-bottom corner: move it
5086 // right one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
5088 ++curwin->w_curswant;
5089 coladvance(curwin->w_curswant);
5090 if (curwin->w_cursor.col == old_cursor.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 && (!virtual_active()
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005092 || curwin->w_cursor.coladd == old_cursor.coladd))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 {
5094 curwin->w_cursor.lnum = VIsual.lnum;
5095 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
5096 ++right;
5097 coladvance(right);
5098 VIsual = curwin->w_cursor;
5099
5100 curwin->w_cursor.lnum = old_cursor.lnum;
5101 coladvance(left);
5102 curwin->w_curswant = left;
5103 }
5104 }
5105 else
5106 {
5107 old_cursor = curwin->w_cursor;
5108 curwin->w_cursor = VIsual;
5109 VIsual = old_cursor;
5110 curwin->w_set_curswant = TRUE;
5111 }
5112}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113
5114/*
5115 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
5116 */
5117 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005118nv_Replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005120 if (VIsual_active) // "R" is replace lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 {
5122 cap->cmdchar = 'c';
5123 cap->nchar = NUL;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005124 VIsual_mode_orig = VIsual_mode; // remember original area for gv
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 VIsual_mode = 'V';
5126 nv_operator(cap);
5127 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005128 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 {
5130 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005131 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 else
5133 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 if (virtual_active())
5135 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
5137 }
5138 }
5139}
5140
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141/*
5142 * "gr".
5143 */
5144 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005145nv_vreplace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 if (VIsual_active)
5148 {
5149 cap->cmdchar = 'r';
5150 cap->nchar = cap->extra_char;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005151 nv_replace(cap); // Do same as "r" in Visual mode for now
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005153 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 {
5155 if (!curbuf->b_p_ma)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005156 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 else
5158 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005159 if (cap->extra_char == Ctrl_V) // get another character
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160 cap->extra_char = get_literal();
5161 stuffcharReadbuff(cap->extra_char);
5162 stuffcharReadbuff(ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 if (virtual_active())
5164 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 invoke_edit(cap, TRUE, 'v', FALSE);
5166 }
5167 }
5168}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169
5170/*
5171 * Swap case for "~" command, when it does not work like an operator.
5172 */
5173 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005174n_swapchar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175{
5176 long n;
5177 pos_T startpos;
5178 int did_change = 0;
5179#ifdef FEAT_NETBEANS_INTG
5180 pos_T pos;
5181 char_u *ptr;
5182 int count;
5183#endif
5184
5185 if (checkclearopq(cap->oap))
5186 return;
5187
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005188 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 {
5190 clearopbeep(cap->oap);
5191 return;
5192 }
5193
5194 prep_redo_cmd(cap);
5195
5196 if (u_save_cursor() == FAIL)
5197 return;
5198
5199 startpos = curwin->w_cursor;
5200#ifdef FEAT_NETBEANS_INTG
5201 pos = startpos;
5202#endif
5203 for (n = cap->count1; n > 0; --n)
5204 {
5205 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
5206 inc_cursor();
5207 if (gchar_cursor() == NUL)
5208 {
5209 if (vim_strchr(p_ww, '~') != NULL
5210 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5211 {
5212#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005213 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214 {
5215 if (did_change)
5216 {
5217 ptr = ml_get(pos.lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005218 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005219 netbeans_removed(curbuf, pos.lnum, pos.col,
5220 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005222 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223 }
5224 pos.col = 0;
5225 pos.lnum++;
5226 }
5227#endif
5228 ++curwin->w_cursor.lnum;
5229 curwin->w_cursor.col = 0;
5230 if (n > 1)
5231 {
5232 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
5233 break;
5234 u_clearline();
5235 }
5236 }
5237 else
5238 break;
5239 }
5240 }
5241#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005242 if (did_change && netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243 {
5244 ptr = ml_get(pos.lnum);
5245 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005246 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
5247 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 }
5249#endif
5250
5251
5252 check_cursor();
5253 curwin->w_set_curswant = TRUE;
5254 if (did_change)
5255 {
5256 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
5257 0L);
5258 curbuf->b_op_start = startpos;
5259 curbuf->b_op_end = curwin->w_cursor;
5260 if (curbuf->b_op_end.col > 0)
5261 --curbuf->b_op_end.col;
5262 }
5263}
5264
5265/*
5266 * Move cursor to mark.
5267 */
5268 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005269nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270{
5271 if (check_mark(pos) == FAIL)
5272 clearop(cap->oap);
5273 else
5274 {
5275 if (cap->cmdchar == '\''
5276 || cap->cmdchar == '`'
5277 || cap->cmdchar == '['
5278 || cap->cmdchar == ']')
5279 setpcmark();
5280 curwin->w_cursor = *pos;
5281 if (flag)
5282 beginline(BL_WHITE | BL_FIX);
5283 else
5284 check_cursor();
5285 }
5286 cap->oap->motion_type = flag ? MLINE : MCHAR;
5287 if (cap->cmdchar == '`')
5288 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005289 cap->oap->inclusive = FALSE; // ignored if not MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 curwin->w_set_curswant = TRUE;
5291}
5292
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293/*
5294 * Handle commands that are operators in Visual mode.
5295 */
5296 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005297v_visop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298{
5299 static char_u trans[] = "YyDdCcxdXdAAIIrr";
5300
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005301 // Uppercase means linewise, except in block mode, then "D" deletes till
5302 // the end of the line, and "C" replaces till EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 if (isupper(cap->cmdchar))
5304 {
5305 if (VIsual_mode != Ctrl_V)
Bram Moolenaara390bb62013-03-13 19:02:41 +01005306 {
5307 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005309 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
5311 curwin->w_curswant = MAXCOL;
5312 }
5313 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
5314 nv_operator(cap);
5315}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316
5317/*
5318 * "s" and "S" commands.
5319 */
5320 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005321nv_subst(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322{
Bram Moolenaard96ff162018-02-18 22:13:29 +01005323#ifdef FEAT_TERMINAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005324 // When showing output of term_dumpdiff() swap the top and botom.
Bram Moolenaard96ff162018-02-18 22:13:29 +01005325 if (term_swap_diff() == OK)
5326 return;
5327#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005328#ifdef FEAT_JOB_CHANNEL
5329 if (bt_prompt(curbuf) && !prompt_curpos_editable())
5330 {
5331 clearopbeep(cap->oap);
5332 return;
5333 }
5334#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005335 if (VIsual_active) // "vs" and "vS" are the same as "vc"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 {
5337 if (cap->cmdchar == 'S')
Bram Moolenaara390bb62013-03-13 19:02:41 +01005338 {
5339 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005341 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 cap->cmdchar = 'c';
5343 nv_operator(cap);
5344 }
5345 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 nv_optrans(cap);
5347}
5348
5349/*
5350 * Abbreviated commands.
5351 */
5352 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005353nv_abbrev(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354{
5355 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005356 cap->cmdchar = 'x'; // DEL key behaves like 'x'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005358 // in Visual mode these commands are operators
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359 if (VIsual_active)
5360 v_visop(cap);
5361 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 nv_optrans(cap);
5363}
5364
5365/*
5366 * Translate a command into another command.
5367 */
5368 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005369nv_optrans(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370{
5371 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
5372 (char_u *)"d$", (char_u *)"c$",
5373 (char_u *)"cl", (char_u *)"cc",
5374 (char_u *)"yy", (char_u *)":s\r"};
5375 static char_u *str = (char_u *)"xXDCsSY&";
5376
5377 if (!checkclearopq(cap->oap))
5378 {
Bram Moolenaar7a9bd7c2019-09-17 22:42:55 +02005379 // In Vi "2D" doesn't delete the next line. Can't translate it
5380 // either, because "2." should also not use the count.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005381 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
5382 {
5383 cap->oap->start = curwin->w_cursor;
5384 cap->oap->op_type = OP_DELETE;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00005385#ifdef FEAT_EVAL
5386 set_op_var(OP_DELETE);
5387#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005388 cap->count1 = 1;
5389 nv_dollar(cap);
5390 finish_op = TRUE;
5391 ResetRedobuff();
5392 AppendCharToRedobuff('D');
5393 }
5394 else
5395 {
5396 if (cap->count0)
5397 stuffnumReadbuff(cap->count0);
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02005398 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 }
5401 cap->opcount = 0;
5402}
5403
5404/*
5405 * "'" and "`" commands. Also for "g'" and "g`".
5406 * cap->arg is TRUE for "'" and "g'".
5407 */
5408 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005409nv_gomark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410{
5411 pos_T *pos;
5412 int c;
5413#ifdef FEAT_FOLDING
Bram Moolenaar8754deb2013-01-17 13:24:08 +01005414 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005415 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416#endif
5417
5418 if (cap->cmdchar == 'g')
5419 c = cap->extra_char;
5420 else
5421 c = cap->nchar;
5422 pos = getmark(c, (cap->oap->op_type == OP_NOP));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005423 if (pos == (pos_T *)-1) // jumped to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 {
5425 if (cap->arg)
5426 {
5427 check_cursor_lnum();
5428 beginline(BL_WHITE | BL_FIX);
5429 }
5430 else
5431 check_cursor();
5432 }
5433 else
5434 nv_cursormark(cap, cap->arg, pos);
5435
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005436 // May need to clear the coladd that a mark includes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 if (!virtual_active())
5438 curwin->w_cursor.coladd = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02005439 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440#ifdef FEAT_FOLDING
5441 if (cap->oap->op_type == OP_NOP
Bram Moolenaar15364d72013-01-24 21:00:20 +01005442 && pos != NULL
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005443 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 && (fdo_flags & FDO_MARK)
5445 && old_KeyTyped)
5446 foldOpenCursor();
5447#endif
5448}
5449
5450/*
5451 * Handle CTRL-O, CTRL-I, "g;" and "g," commands.
5452 */
5453 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005454nv_pcmark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455{
5456#ifdef FEAT_JUMPLIST
5457 pos_T *pos;
5458# ifdef FEAT_FOLDING
5459 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005460 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461# endif
5462
5463 if (!checkclearopq(cap->oap))
5464 {
5465 if (cap->cmdchar == 'g')
5466 pos = movechangelist((int)cap->count1);
5467 else
5468 pos = movemark((int)cap->count1);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005469 if (pos == (pos_T *)-1) // jump to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 {
5471 curwin->w_set_curswant = TRUE;
5472 check_cursor();
5473 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005474 else if (pos != NULL) // can jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 nv_cursormark(cap, FALSE, pos);
5476 else if (cap->cmdchar == 'g')
5477 {
5478 if (curbuf->b_changelistlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005479 emsg(_("E664: changelist is empty"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 else if (cap->count1 < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005481 emsg(_("E662: At start of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005483 emsg(_("E663: At end of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 }
5485 else
5486 clearopbeep(cap->oap);
5487# ifdef FEAT_FOLDING
5488 if (cap->oap->op_type == OP_NOP
5489 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
5490 && (fdo_flags & FDO_MARK)
5491 && old_KeyTyped)
5492 foldOpenCursor();
5493# endif
5494 }
5495#else
5496 clearopbeep(cap->oap);
5497#endif
5498}
5499
5500/*
5501 * Handle '"' command.
5502 */
5503 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005504nv_regname(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505{
5506 if (checkclearop(cap->oap))
5507 return;
5508#ifdef FEAT_EVAL
5509 if (cap->nchar == '=')
5510 cap->nchar = get_expr_register();
5511#endif
5512 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
5513 {
5514 cap->oap->regname = cap->nchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005515 cap->opcount = cap->count0; // remember count before '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516#ifdef FEAT_EVAL
5517 set_reg_var(cap->oap->regname);
5518#endif
5519 }
5520 else
5521 clearopbeep(cap->oap);
5522}
5523
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524/*
5525 * Handle "v", "V" and "CTRL-V" commands.
5526 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
5527 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005528 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 */
5530 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005531nv_visual(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532{
Bram Moolenaardf177f62005-02-22 08:39:57 +00005533 if (cap->cmdchar == Ctrl_Q)
5534 cap->cmdchar = Ctrl_V;
5535
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005536 // 'v', 'V' and CTRL-V can be used while an operator is pending to make it
5537 // characterwise, linewise, or blockwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 if (cap->oap->op_type != OP_NOP)
5539 {
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01005540 motion_force = cap->oap->motion_force = cap->cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005541 finish_op = FALSE; // operator doesn't finish now but later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 return;
5543 }
5544
5545 VIsual_select = cap->arg;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005546 if (VIsual_active) // change Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005548 if (VIsual_mode == cap->cmdchar) // stop visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005550 else // toggle char/block mode
5551 { // or char/line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552 VIsual_mode = cap->cmdchar;
5553 showmode();
5554 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005555 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005557 else // start Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 {
5559 check_visual_highlight();
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005560 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005562 // use previously selected part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 VIsual = curwin->w_cursor;
5564
5565 VIsual_active = TRUE;
5566 VIsual_reselect = TRUE;
5567 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005568 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 setmouse();
Bram Moolenaar09df3122006-01-23 22:23:09 +00005571 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005572 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573 /*
5574 * For V and ^V, we multiply the number of lines even if there
5575 * was only one -- webb
5576 */
5577 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
5578 {
5579 curwin->w_cursor.lnum +=
5580 resel_VIsual_line_count * cap->count0 - 1;
5581 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5582 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5583 }
5584 VIsual_mode = resel_VIsual_mode;
5585 if (VIsual_mode == 'v')
5586 {
5587 if (resel_VIsual_line_count <= 1)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005588 {
5589 validate_virtcol();
5590 curwin->w_curswant = curwin->w_virtcol
5591 + resel_VIsual_vcol * cap->count0 - 1;
5592 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005594 curwin->w_curswant = resel_VIsual_vcol;
5595 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 }
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005597 if (resel_VIsual_vcol == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 {
5599 curwin->w_curswant = MAXCOL;
5600 coladvance((colnr_T)MAXCOL);
5601 }
5602 else if (VIsual_mode == Ctrl_V)
5603 {
5604 validate_virtcol();
5605 curwin->w_curswant = curwin->w_virtcol
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005606 + resel_VIsual_vcol * cap->count0 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 coladvance(curwin->w_curswant);
5608 }
5609 else
5610 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005611 redraw_curbuf_later(INVERTED); // show the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 }
5613 else
5614 {
5615 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005616 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 may_start_select('c');
5618 n_start_visual_mode(cap->cmdchar);
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005619 if (VIsual_mode != 'V' && *p_sel == 'e')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005620 ++cap->count1; // include one more char
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005621 if (cap->count0 > 0 && --cap->count1 > 0)
5622 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005623 // With a count select that many characters or lines.
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005624 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
5625 nv_right(cap);
5626 else if (VIsual_mode == 'V')
5627 nv_down(cap);
5628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 }
5630 }
5631}
5632
5633/*
5634 * Start selection for Shift-movement keys.
5635 */
5636 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005637start_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005639 // if 'selectmode' contains "key", start Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640 may_start_select('k');
5641 n_start_visual_mode('v');
5642}
5643
5644/*
5645 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
5646 */
5647 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005648may_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649{
5650 VIsual_select = (stuff_empty() && typebuf_typed()
5651 && (vim_strchr(p_slm, c) != NULL));
5652}
5653
5654/*
5655 * Start Visual mode "c".
5656 * Should set VIsual_select before calling this.
5657 */
5658 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005659n_start_visual_mode(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660{
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005661#ifdef FEAT_CONCEAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005662 // Check for redraw before changing the state.
Bram Moolenaarb9464822018-05-10 15:09:49 +02005663 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005664#endif
5665
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666 VIsual_mode = c;
5667 VIsual_active = TRUE;
5668 VIsual_reselect = TRUE;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005669
5670 // Corner case: the 0 position in a tab may change when going into
Bram Moolenaar4b96df52020-01-26 22:00:26 +01005671 // virtualedit. Recalculate curwin->w_cursor to avoid bad highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB)
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005673 {
5674 validate_virtcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675 coladvance(curwin->w_virtcol);
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005676 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 VIsual = curwin->w_cursor;
5678
5679#ifdef FEAT_FOLDING
5680 foldAdjustVisual();
5681#endif
5682
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 setmouse();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005684#ifdef FEAT_CONCEAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005685 // Check for redraw after changing the state.
Bram Moolenaarb9464822018-05-10 15:09:49 +02005686 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005687#endif
5688
Bram Moolenaar09df3122006-01-23 22:23:09 +00005689 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005690 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005692 // Make sure the clipboard gets updated. Needed because start and
5693 // end may still be the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694 clip_star.vmode = NUL;
5695#endif
5696
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005697 // Only need to redraw this line, unless still need to redraw an old
5698 // Visual area (when 'lazyredraw' is set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 if (curwin->w_redr_type < INVERTED)
5700 {
5701 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
5702 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
5703 }
5704}
5705
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706
5707/*
5708 * CTRL-W: Window commands
5709 */
5710 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005711nv_window(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712{
Bram Moolenaar938783d2017-07-16 20:13:26 +02005713 if (cap->nchar == ':')
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005714 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005715 // "CTRL-W :" is the same as typing ":"; useful in a terminal window
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005716 cap->cmdchar = ':';
5717 cap->nchar = NUL;
Bram Moolenaar938783d2017-07-16 20:13:26 +02005718 nv_colon(cap);
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005719 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02005720 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005721 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722}
5723
5724/*
5725 * CTRL-Z: Suspend
5726 */
5727 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005728nv_suspend(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729{
5730 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 if (VIsual_active)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005732 end_visual_mode(); // stop Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 do_cmdline_cmd((char_u *)"st");
5734}
5735
5736/*
5737 * Commands starting with "g".
5738 */
5739 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005740nv_g_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741{
5742 oparg_T *oap = cap->oap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743 pos_T tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744 int i;
5745 int flag = FALSE;
5746
5747 switch (cap->nchar)
5748 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005749 case Ctrl_A:
5750 case Ctrl_X:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751#ifdef MEM_PROFILE
5752 /*
5753 * "g^A": dump log of used memory.
5754 */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005755 if (!VIsual_active && cap->nchar == Ctrl_A)
5756 vim_mem_profile_dump();
5757 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005759 /*
5760 * "g^A/g^X": sequentially increment visually selected region
5761 */
5762 if (VIsual_active)
5763 {
5764 cap->arg = TRUE;
5765 cap->cmdchar = cap->nchar;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005766 cap->nchar = NUL;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005767 nv_addsub(cap);
5768 }
5769 else
5770 clearopbeep(oap);
5771 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772
Bram Moolenaar071d4272004-06-13 20:20:40 +00005773 /*
5774 * "gR": Enter virtual replace mode.
5775 */
5776 case 'R':
5777 cap->arg = TRUE;
5778 nv_Replace(cap);
5779 break;
5780
5781 case 'r':
5782 nv_vreplace(cap);
5783 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784
5785 case '&':
5786 do_cmdline_cmd((char_u *)"%s//~/&");
5787 break;
5788
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789 /*
5790 * "gv": Reselect the previous Visual area. If Visual already active,
5791 * exchange previous and current Visual area.
5792 */
5793 case 'v':
5794 if (checkclearop(oap))
5795 break;
5796
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005797 if ( curbuf->b_visual.vi_start.lnum == 0
5798 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
5799 || curbuf->b_visual.vi_end.lnum == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005800 beep_flush();
5801 else
5802 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005803 // set w_cursor to the start of the Visual area, tpos to the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 if (VIsual_active)
5805 {
5806 i = VIsual_mode;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005807 VIsual_mode = curbuf->b_visual.vi_mode;
5808 curbuf->b_visual.vi_mode = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809# ifdef FEAT_EVAL
5810 curbuf->b_visual_mode_eval = i;
5811# endif
5812 i = curwin->w_curswant;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005813 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5814 curbuf->b_visual.vi_curswant = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005816 tpos = curbuf->b_visual.vi_end;
5817 curbuf->b_visual.vi_end = curwin->w_cursor;
5818 curwin->w_cursor = curbuf->b_visual.vi_start;
5819 curbuf->b_visual.vi_start = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005820 }
5821 else
5822 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005823 VIsual_mode = curbuf->b_visual.vi_mode;
5824 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5825 tpos = curbuf->b_visual.vi_end;
5826 curwin->w_cursor = curbuf->b_visual.vi_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 }
5828
5829 VIsual_active = TRUE;
5830 VIsual_reselect = TRUE;
5831
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005832 // Set Visual to the start and w_cursor to the end of the Visual
5833 // area. Make sure they are on an existing character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 check_cursor();
5835 VIsual = curwin->w_cursor;
5836 curwin->w_cursor = tpos;
5837 check_cursor();
5838 update_topline();
5839 /*
5840 * When called from normal "g" command: start Select mode when
5841 * 'selectmode' contains "cmd". When called for K_SELECT, always
5842 * start Select mode.
5843 */
5844 if (cap->arg)
5845 VIsual_select = TRUE;
5846 else
5847 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005849#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005850 // Make sure the clipboard gets updated. Needed because start and
5851 // end are still the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852 clip_star.vmode = NUL;
5853#endif
5854 redraw_curbuf_later(INVERTED);
5855 showmode();
5856 }
5857 break;
5858 /*
5859 * "gV": Don't reselect the previous Visual area after a Select mode
5860 * mapping of menu.
5861 */
5862 case 'V':
5863 VIsual_reselect = FALSE;
5864 break;
5865
5866 /*
5867 * "gh": start Select mode.
5868 * "gH": start Select line mode.
5869 * "g^H": start Select block mode.
5870 */
5871 case K_BS:
5872 cap->nchar = Ctrl_H;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005873 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 case 'h':
5875 case 'H':
5876 case Ctrl_H:
5877# ifdef EBCDIC
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005878 // EBCDIC: 'v'-'h' != '^v'-'^h'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 if (cap->nchar == Ctrl_H)
5880 cap->cmdchar = Ctrl_V;
5881 else
5882# endif
5883 cap->cmdchar = cap->nchar + ('v' - 'h');
5884 cap->arg = TRUE;
5885 nv_visual(cap);
5886 break;
Bram Moolenaar641e2862012-07-25 15:06:34 +02005887
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005888 // "gn", "gN" visually select next/previous search match
5889 // "gn" selects next match
5890 // "gN" selects previous match
Bram Moolenaar641e2862012-07-25 15:06:34 +02005891 case 'N':
5892 case 'n':
5893 if (!current_search(cap->count1, cap->nchar == 'n'))
Bram Moolenaarf00dc262012-10-21 03:54:33 +02005894 clearopbeep(oap);
Bram Moolenaar641e2862012-07-25 15:06:34 +02005895 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896
5897 /*
5898 * "gj" and "gk" two new funny movement keys -- up and down
5899 * movement based on *screen* line rather than *file* line.
5900 */
5901 case 'j':
5902 case K_DOWN:
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005903 // with 'nowrap' it works just like the normal "j" command; also when
5904 // in a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 if (!curwin->w_p_wrap
5906#ifdef FEAT_FOLDING
5907 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
5908#endif
5909 )
5910 {
5911 oap->motion_type = MLINE;
5912 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
5913 }
5914 else
5915 i = nv_screengo(oap, FORWARD, cap->count1);
5916 if (i == FAIL)
5917 clearopbeep(oap);
5918 break;
5919
5920 case 'k':
5921 case K_UP:
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005922 // with 'nowrap' it works just like the normal "k" command; also when
5923 // in a closed fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924 if (!curwin->w_p_wrap
5925#ifdef FEAT_FOLDING
5926 || hasFolding(curwin->w_cursor.lnum, NULL, NULL)
5927#endif
5928 )
5929 {
5930 oap->motion_type = MLINE;
5931 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
5932 }
5933 else
5934 i = nv_screengo(oap, BACKWARD, cap->count1);
5935 if (i == FAIL)
5936 clearopbeep(oap);
5937 break;
5938
5939 /*
5940 * "gJ": join two lines without inserting a space.
5941 */
5942 case 'J':
5943 nv_join(cap);
5944 break;
5945
5946 /*
5947 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
5948 * "gm": middle of "g0" and "g$".
5949 */
5950 case '^':
5951 flag = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005952 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953
5954 case '0':
5955 case 'm':
5956 case K_HOME:
5957 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958 oap->motion_type = MCHAR;
5959 oap->inclusive = FALSE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005960 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 {
Bram Moolenaar02631462017-09-22 15:20:32 +02005962 int width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 int width2 = width1 + curwin_col_off2();
5964
5965 validate_virtcol();
5966 i = 0;
5967 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
5968 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
5969 }
5970 else
5971 i = curwin->w_leftcol;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005972 // Go to the middle of the screen line. When 'number' or
5973 // 'relativenumber' is on and lines are wrapping the middle can be more
5974 // to the left.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975 if (cap->nchar == 'm')
Bram Moolenaar02631462017-09-22 15:20:32 +02005976 i += (curwin->w_width - curwin_col_off()
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 + ((curwin->w_p_wrap && i > 0)
5978 ? curwin_col_off2() : 0)) / 2;
5979 coladvance((colnr_T)i);
5980 if (flag)
5981 {
5982 do
5983 i = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01005984 while (VIM_ISWHITE(i) && oneright() == OK);
Bram Moolenaarf9514162018-11-22 03:08:29 +01005985 curwin->w_valid &= ~VALID_WCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 }
5987 curwin->w_set_curswant = TRUE;
5988 break;
5989
Bram Moolenaar8b530c12019-10-28 02:13:05 +01005990 case 'M':
5991 {
5992 char_u *ptr = ml_get_curline();
5993
5994 oap->motion_type = MCHAR;
5995 oap->inclusive = FALSE;
5996 if (has_mbyte)
Bram Moolenaar69bf6342019-10-29 04:16:57 +01005997 i = mb_string2cells(ptr, (int)STRLEN(ptr));
Bram Moolenaar8b530c12019-10-28 02:13:05 +01005998 else
5999 i = (int)STRLEN(ptr);
6000 if (cap->count0 > 0 && cap->count0 <= 100)
6001 coladvance((colnr_T)(i * cap->count0 / 100));
6002 else
6003 coladvance((colnr_T)(i / 2));
6004 curwin->w_set_curswant = TRUE;
6005 }
6006 break;
6007
Bram Moolenaar071d4272004-06-13 20:20:40 +00006008 case '_':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006009 // "g_": to the last non-blank character in the line or <count> lines
6010 // downward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 cap->oap->motion_type = MCHAR;
6012 cap->oap->inclusive = TRUE;
6013 curwin->w_curswant = MAXCOL;
6014 if (cursor_down((long)(cap->count1 - 1),
6015 cap->oap->op_type == OP_NOP) == FAIL)
6016 clearopbeep(cap->oap);
6017 else
6018 {
6019 char_u *ptr = ml_get_curline();
6020
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006021 // In Visual mode we may end up after the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
6023 --curwin->w_cursor.col;
6024
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006025 // Decrease the cursor column until it's on a non-blank.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026 while (curwin->w_cursor.col > 0
Bram Moolenaar1c465442017-03-12 20:10:05 +01006027 && VIM_ISWHITE(ptr[curwin->w_cursor.col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 --curwin->w_cursor.col;
6029 curwin->w_set_curswant = TRUE;
Bram Moolenaar5890b2c2010-01-12 15:42:37 +01006030 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006031 }
6032 break;
6033
6034 case '$':
6035 case K_END:
6036 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037 {
6038 int col_off = curwin_col_off();
6039
6040 oap->motion_type = MCHAR;
6041 oap->inclusive = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006042 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006044 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045 if (cap->count1 == 1)
6046 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006047 int width1 = curwin->w_width - col_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048 int width2 = width1 + curwin_col_off2();
6049
6050 validate_virtcol();
6051 i = width1 - 1;
6052 if (curwin->w_virtcol >= (colnr_T)width1)
6053 i += ((curwin->w_virtcol - width1) / width2 + 1)
6054 * width2;
6055 coladvance((colnr_T)i);
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006056
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006057 // Make sure we stick in this column.
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006058 validate_virtcol();
6059 curwin->w_curswant = curwin->w_virtcol;
6060 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
6062 {
6063 /*
6064 * Check for landing on a character that got split at
6065 * the end of the line. We do not want to advance to
6066 * the next screen line.
6067 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 if (curwin->w_virtcol > (colnr_T)i)
6069 --curwin->w_cursor.col;
6070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071 }
6072 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
6073 clearopbeep(oap);
6074 }
6075 else
6076 {
Bram Moolenaard5c82342019-07-27 18:44:57 +02006077 if (cap->count1 > 1)
6078 // if it fails, let the cursor still move to the last char
Bram Moolenaar9c272a92019-08-16 21:54:27 +02006079 (void)cursor_down(cap->count1 - 1, FALSE);
Bram Moolenaard5c82342019-07-27 18:44:57 +02006080
Bram Moolenaar02631462017-09-22 15:20:32 +02006081 i = curwin->w_leftcol + curwin->w_width - col_off - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006083
Bram Moolenaard5c82342019-07-27 18:44:57 +02006084 // Make sure we stick in this column.
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006085 validate_virtcol();
6086 curwin->w_curswant = curwin->w_virtcol;
6087 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006088 }
6089 }
6090 break;
6091
6092 /*
6093 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
6094 */
6095 case '*':
6096 case '#':
6097#if POUND != '#'
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006098 case POUND: // pound sign (sometimes equal to '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006100 case Ctrl_RSB: // :tag or :tselect for current identifier
6101 case ']': // :tselect for current identifier
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102 nv_ident(cap);
6103 break;
6104
6105 /*
6106 * ge and gE: go back to end of word
6107 */
6108 case 'e':
6109 case 'E':
6110 oap->motion_type = MCHAR;
6111 curwin->w_set_curswant = TRUE;
6112 oap->inclusive = TRUE;
6113 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
6114 clearopbeep(oap);
6115 break;
6116
6117 /*
6118 * "g CTRL-G": display info about cursor position
6119 */
6120 case Ctrl_G:
Bram Moolenaared767a22016-01-03 22:49:16 +01006121 cursor_pos_info(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122 break;
6123
6124 /*
6125 * "gi": start Insert at the last position.
6126 */
6127 case 'i':
6128 if (curbuf->b_last_insert.lnum != 0)
6129 {
6130 curwin->w_cursor = curbuf->b_last_insert;
6131 check_cursor_lnum();
6132 i = (int)STRLEN(ml_get_curline());
6133 if (curwin->w_cursor.col > (colnr_T)i)
6134 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135 if (virtual_active())
6136 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137 curwin->w_cursor.col = i;
6138 }
6139 }
6140 cap->cmdchar = 'i';
6141 nv_edit(cap);
6142 break;
6143
6144 /*
6145 * "gI": Start insert in column 1.
6146 */
6147 case 'I':
6148 beginline(0);
6149 if (!checkclearopq(oap))
6150 invoke_edit(cap, FALSE, 'g', FALSE);
6151 break;
6152
6153#ifdef FEAT_SEARCHPATH
6154 /*
6155 * "gf": goto file, edit file under cursor
6156 * "]f" and "[f": can also be used.
6157 */
6158 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006159 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 nv_gotofile(cap);
6161 break;
6162#endif
6163
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006164 // "g'm" and "g`m": jump to mark without setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 case '\'':
6166 cap->arg = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006167 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006168 case '`':
6169 nv_gomark(cap);
6170 break;
6171
6172 /*
6173 * "gs": Goto sleep.
6174 */
6175 case 's':
6176 do_sleep(cap->count1 * 1000L);
6177 break;
6178
6179 /*
6180 * "ga": Display the ascii value of the character under the
6181 * cursor. It is displayed in decimal, hex, and octal. -- webb
6182 */
6183 case 'a':
6184 do_ascii(NULL);
6185 break;
6186
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187 /*
6188 * "g8": Display the bytes used for the UTF-8 character under the
6189 * cursor. It is displayed in hex.
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006190 * "8g8" finds illegal byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191 */
6192 case '8':
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006193 if (cap->count0 == 8)
6194 utf_find_illegal();
6195 else
6196 show_utf8();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006199 // "g<": show scrollback text
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00006200 case '<':
6201 show_sb_text();
6202 break;
6203
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204 /*
6205 * "gg": Goto the first line in file. With a count it goes to
6206 * that line number like for "G". -- webb
6207 */
6208 case 'g':
6209 cap->arg = FALSE;
6210 nv_goto(cap);
6211 break;
6212
6213 /*
6214 * Two-character operators:
6215 * "gq" Format text
6216 * "gw" Format text and keep cursor position
6217 * "g~" Toggle the case of the text.
6218 * "gu" Change text to lower case.
6219 * "gU" Change text to upper case.
6220 * "g?" rot13 encoding
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006221 * "g@" call 'operatorfunc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222 */
6223 case 'q':
6224 case 'w':
6225 oap->cursor_start = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006226 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 case '~':
6228 case 'u':
6229 case 'U':
6230 case '?':
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006231 case '@':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232 nv_operator(cap);
6233 break;
6234
6235 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00006236 * "gd": Find first occurrence of pattern under the cursor in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00006237 * current function
6238 * "gD": idem, but in the current file.
6239 */
6240 case 'd':
6241 case 'D':
Bram Moolenaarf75a9632005-09-13 21:20:47 +00006242 nv_gd(oap, cap->nchar, (int)cap->count0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 break;
6244
Bram Moolenaar071d4272004-06-13 20:20:40 +00006245 /*
6246 * g<*Mouse> : <C-*mouse>
6247 */
6248 case K_MIDDLEMOUSE:
6249 case K_MIDDLEDRAG:
6250 case K_MIDDLERELEASE:
6251 case K_LEFTMOUSE:
6252 case K_LEFTDRAG:
6253 case K_LEFTRELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01006254 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006255 case K_RIGHTMOUSE:
6256 case K_RIGHTDRAG:
6257 case K_RIGHTRELEASE:
6258 case K_X1MOUSE:
6259 case K_X1DRAG:
6260 case K_X1RELEASE:
6261 case K_X2MOUSE:
6262 case K_X2DRAG:
6263 case K_X2RELEASE:
6264 mod_mask = MOD_MASK_CTRL;
6265 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
6266 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267
6268 case K_IGNORE:
6269 break;
6270
6271 /*
6272 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
6273 */
6274 case 'p':
6275 case 'P':
6276 nv_put(cap);
6277 break;
6278
6279#ifdef FEAT_BYTEOFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006280 // "go": goto byte count from start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281 case 'o':
6282 goto_byte(cap->count0);
6283 break;
6284#endif
6285
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006286 // "gQ": improved Ex mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287 case 'Q':
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006288 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289 {
6290 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006291 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 break;
6293 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006294
Bram Moolenaar071d4272004-06-13 20:20:40 +00006295 if (!checkclearopq(oap))
6296 do_exmode(TRUE);
6297 break;
6298
6299#ifdef FEAT_JUMPLIST
6300 case ',':
6301 nv_pcmark(cap);
6302 break;
6303
6304 case ';':
6305 cap->count1 = -cap->count1;
6306 nv_pcmark(cap);
6307 break;
6308#endif
6309
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006310 case 't':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006311 if (!checkclearop(oap))
6312 goto_tabpage((int)cap->count0);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006313 break;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006314 case 'T':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006315 if (!checkclearop(oap))
6316 goto_tabpage(-(int)cap->count1);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006317 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006318
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006319 case '+':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006320 case '-': // "g+" and "g-": undo or redo along the timeline
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006321 if (!checkclearopq(oap))
Bram Moolenaard3667a22006-03-16 21:35:52 +00006322 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
Bram Moolenaar730cde92010-06-27 05:18:54 +02006323 FALSE, FALSE, FALSE);
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006324 break;
6325
Bram Moolenaar071d4272004-06-13 20:20:40 +00006326 default:
6327 clearopbeep(oap);
6328 break;
6329 }
6330}
6331
6332/*
6333 * Handle "o" and "O" commands.
6334 */
6335 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006336n_opencmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337{
Bram Moolenaar860cae12010-06-05 23:22:07 +02006338#ifdef FEAT_CONCEAL
6339 linenr_T oldline = curwin->w_cursor.lnum;
6340#endif
6341
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342 if (!checkclearopq(cap->oap))
6343 {
6344#ifdef FEAT_FOLDING
6345 if (cap->cmdchar == 'O')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006346 // Open above the first line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347 (void)hasFolding(curwin->w_cursor.lnum,
6348 &curwin->w_cursor.lnum, NULL);
6349 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006350 // Open below the last line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351 (void)hasFolding(curwin->w_cursor.lnum,
6352 NULL, &curwin->w_cursor.lnum);
6353#endif
6354 if (u_save((linenr_T)(curwin->w_cursor.lnum -
6355 (cap->cmdchar == 'O' ? 1 : 0)),
6356 (linenr_T)(curwin->w_cursor.lnum +
6357 (cap->cmdchar == 'o' ? 1 : 0))
6358 ) == OK
6359 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02006360 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0,
6361 0) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02006363#ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02006364 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01006365 redrawWinline(curwin, oldline);
Bram Moolenaar860cae12010-06-05 23:22:07 +02006366#endif
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006367#ifdef FEAT_SYN_HL
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006368 if (curwin->w_p_cul)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006369 // force redraw of cursorline
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006370 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006371#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006372 // When '#' is in 'cpoptions' ignore the count.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006373 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
6374 cap->count1 = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
6376 }
6377 }
6378}
6379
6380/*
6381 * "." command: redo last change.
6382 */
6383 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006384nv_dot(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385{
6386 if (!checkclearopq(cap->oap))
6387 {
6388 /*
6389 * If "restart_edit" is TRUE, the last but one command is repeated
6390 * instead of the last command (inserting text). This is used for
6391 * CTRL-O <.> in insert mode.
6392 */
6393 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
6394 clearopbeep(cap->oap);
6395 }
6396}
6397
6398/*
6399 * CTRL-R: undo undo
6400 */
6401 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006402nv_redo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006403{
6404 if (!checkclearopq(cap->oap))
6405 {
6406 u_redo((int)cap->count1);
6407 curwin->w_set_curswant = TRUE;
6408 }
6409}
6410
6411/*
6412 * Handle "U" command.
6413 */
6414 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006415nv_Undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006417 // In Visual mode and typing "gUU" triggers an operator
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006418 if (cap->oap->op_type == OP_UPPER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006420 // translate "gUU" to "gUgU"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421 cap->cmdchar = 'g';
6422 cap->nchar = 'U';
6423 nv_operator(cap);
6424 }
6425 else if (!checkclearopq(cap->oap))
6426 {
6427 u_undoline();
6428 curwin->w_set_curswant = TRUE;
6429 }
6430}
6431
6432/*
6433 * '~' command: If tilde is not an operator and Visual is off: swap case of a
6434 * single character.
6435 */
6436 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006437nv_tilde(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006438{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006439 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE)
Bram Moolenaarf2732452018-06-03 14:47:35 +02006440 {
6441#ifdef FEAT_JOB_CHANNEL
6442 if (bt_prompt(curbuf) && !prompt_curpos_editable())
6443 {
6444 clearopbeep(cap->oap);
6445 return;
6446 }
6447#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448 n_swapchar(cap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006449 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450 else
6451 nv_operator(cap);
6452}
6453
6454/*
6455 * Handle an operator command.
6456 * The actual work is done by do_pending_operator().
6457 */
6458 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006459nv_operator(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006460{
6461 int op_type;
6462
6463 op_type = get_op_type(cap->cmdchar, cap->nchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006464#ifdef FEAT_JOB_CHANNEL
6465 if (bt_prompt(curbuf) && op_is_change(op_type) && !prompt_curpos_editable())
6466 {
6467 clearopbeep(cap->oap);
6468 return;
6469 }
6470#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006472 if (op_type == cap->oap->op_type) // double operator works on lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006473 nv_lineop(cap);
6474 else if (!checkclearop(cap->oap))
6475 {
6476 cap->oap->start = curwin->w_cursor;
6477 cap->oap->op_type = op_type;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006478#ifdef FEAT_EVAL
6479 set_op_var(op_type);
6480#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481 }
6482}
6483
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006484#ifdef FEAT_EVAL
6485/*
6486 * Set v:operator to the characters for "optype".
6487 */
6488 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006489set_op_var(int optype)
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006490{
6491 char_u opchars[3];
6492
6493 if (optype == OP_NOP)
6494 set_vim_var_string(VV_OP, NULL, 0);
6495 else
6496 {
6497 opchars[0] = get_op_char(optype);
6498 opchars[1] = get_extra_op_char(optype);
6499 opchars[2] = NUL;
6500 set_vim_var_string(VV_OP, opchars, -1);
6501 }
6502}
6503#endif
6504
Bram Moolenaar071d4272004-06-13 20:20:40 +00006505/*
6506 * Handle linewise operator "dd", "yy", etc.
6507 *
6508 * "_" is is a strange motion command that helps make operators more logical.
6509 * It is actually implemented, but not documented in the real Vi. This motion
6510 * command actually refers to "the current line". Commands like "dd" and "yy"
6511 * are really an alternate form of "d_" and "y_". It does accept a count, so
6512 * "d3_" works to delete 3 lines.
6513 */
6514 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006515nv_lineop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516{
6517 cap->oap->motion_type = MLINE;
6518 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
6519 clearopbeep(cap->oap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006520 else if ( (cap->oap->op_type == OP_DELETE // only with linewise motions
Bram Moolenaar83dadaf2012-12-12 17:33:32 +01006521 && cap->oap->motion_force != 'v'
6522 && cap->oap->motion_force != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523 || cap->oap->op_type == OP_LSHIFT
6524 || cap->oap->op_type == OP_RSHIFT)
6525 beginline(BL_SOL | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006526 else if (cap->oap->op_type != OP_YANK) // 'Y' does not move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527 beginline(BL_WHITE | BL_FIX);
6528}
6529
6530/*
6531 * <Home> command.
6532 */
6533 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006534nv_home(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006536 // CTRL-HOME is like "gg"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006537 if (mod_mask & MOD_MASK_CTRL)
6538 nv_goto(cap);
6539 else
6540 {
6541 cap->count0 = 1;
6542 nv_pipe(cap);
6543 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006544 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6545 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546}
6547
6548/*
6549 * "|" command.
6550 */
6551 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006552nv_pipe(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553{
6554 cap->oap->motion_type = MCHAR;
6555 cap->oap->inclusive = FALSE;
6556 beginline(0);
6557 if (cap->count0 > 0)
6558 {
6559 coladvance((colnr_T)(cap->count0 - 1));
6560 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
6561 }
6562 else
6563 curwin->w_curswant = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006564 // keep curswant at the column where we wanted to go, not where
6565 // we ended; differs if line is too short
Bram Moolenaar071d4272004-06-13 20:20:40 +00006566 curwin->w_set_curswant = FALSE;
6567}
6568
6569/*
6570 * Handle back-word command "b" and "B".
6571 * cap->arg is 1 for "B"
6572 */
6573 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006574nv_bck_word(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006575{
6576 cap->oap->motion_type = MCHAR;
6577 cap->oap->inclusive = FALSE;
6578 curwin->w_set_curswant = TRUE;
6579 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
6580 clearopbeep(cap->oap);
6581#ifdef FEAT_FOLDING
6582 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6583 foldOpenCursor();
6584#endif
6585}
6586
6587/*
6588 * Handle word motion commands "e", "E", "w" and "W".
6589 * cap->arg is TRUE for "E" and "W".
6590 */
6591 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006592nv_wordcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593{
6594 int n;
6595 int word_end;
6596 int flag = FALSE;
Bram Moolenaardfefb982008-04-01 10:06:39 +00006597 pos_T startpos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598
6599 /*
6600 * Set inclusive for the "E" and "e" command.
6601 */
6602 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
6603 word_end = TRUE;
6604 else
6605 word_end = FALSE;
6606 cap->oap->inclusive = word_end;
6607
6608 /*
6609 * "cw" and "cW" are a special case.
6610 */
6611 if (!word_end && cap->oap->op_type == OP_CHANGE)
6612 {
6613 n = gchar_cursor();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006614 if (n != NUL) // not an empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01006616 if (VIM_ISWHITE(n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617 {
6618 /*
6619 * Reproduce a funny Vi behaviour: "cw" on a blank only
6620 * changes one character, not all blanks until the start of
6621 * the next word. Only do this when the 'w' flag is included
6622 * in 'cpoptions'.
6623 */
6624 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
6625 {
6626 cap->oap->inclusive = TRUE;
6627 cap->oap->motion_type = MCHAR;
6628 return;
6629 }
6630 }
6631 else
6632 {
6633 /*
6634 * This is a little strange. To match what the real Vi does,
6635 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
6636 * that we are not on a space or a TAB. This seems impolite
6637 * at first, but it's really more what we mean when we say
6638 * 'cw'.
6639 * Another strangeness: When standing on the end of a word
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02006640 * "ce" will change until the end of the next word, but "cw"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641 * will change only one character! This is done by setting
6642 * flag.
6643 */
6644 cap->oap->inclusive = TRUE;
6645 word_end = TRUE;
6646 flag = TRUE;
6647 }
6648 }
6649 }
6650
6651 cap->oap->motion_type = MCHAR;
6652 curwin->w_set_curswant = TRUE;
6653 if (word_end)
6654 n = end_word(cap->count1, cap->arg, flag, FALSE);
6655 else
6656 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
6657
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006658 // Don't leave the cursor on the NUL past the end of line. Unless we
6659 // didn't move it forward.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006660 if (LT_POS(startpos, curwin->w_cursor))
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006661 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006662
6663 if (n == FAIL && cap->oap->op_type == OP_NOP)
6664 clearopbeep(cap->oap);
6665 else
6666 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006668#ifdef FEAT_FOLDING
6669 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6670 foldOpenCursor();
6671#endif
6672 }
6673}
6674
6675/*
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006676 * Used after a movement command: If the cursor ends up on the NUL after the
6677 * end of the line, may move it back to the last character and make the motion
6678 * inclusive.
6679 */
6680 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006681adjust_cursor(oparg_T *oap)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006682{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006683 // The cursor cannot remain on the NUL when:
6684 // - the column is > 0
6685 // - not in Visual mode or 'selection' is "o"
6686 // - 'virtualedit' is not "all" and not "onemore".
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006687 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006688 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01006689 && !virtual_active() && (ve_flags & VE_ONEMORE) == 0)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006690 {
6691 --curwin->w_cursor.col;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006692 // prevent cursor from moving on the trail byte
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006693 if (has_mbyte)
6694 mb_adjust_cursor();
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006695 oap->inclusive = TRUE;
6696 }
6697}
6698
6699/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006700 * "0" and "^" commands.
6701 * cap->arg is the argument for beginline().
6702 */
6703 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006704nv_beginline(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006705{
6706 cap->oap->motion_type = MCHAR;
6707 cap->oap->inclusive = FALSE;
6708 beginline(cap->arg);
6709#ifdef FEAT_FOLDING
6710 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6711 foldOpenCursor();
6712#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006713 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6714 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006715}
6716
Bram Moolenaar071d4272004-06-13 20:20:40 +00006717/*
6718 * In exclusive Visual mode, may include the last character.
6719 */
6720 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006721adjust_for_sel(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006722{
6723 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006724 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006725 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726 if (has_mbyte)
6727 inc_cursor();
6728 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729 ++curwin->w_cursor.col;
6730 cap->oap->inclusive = FALSE;
6731 }
6732}
6733
6734/*
6735 * Exclude last character at end of Visual area for 'selection' == "exclusive".
6736 * Should check VIsual_mode before calling this.
6737 * Returns TRUE when backed up to the previous line.
6738 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02006739 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006740unadjust_for_sel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741{
6742 pos_T *pp;
6743
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006744 if (*p_sel == 'e' && !EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006745 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006746 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006747 pp = &curwin->w_cursor;
6748 else
6749 pp = &VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750 if (pp->coladd > 0)
6751 --pp->coladd;
6752 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006753 if (pp->col > 0)
6754 {
6755 --pp->col;
Bram Moolenaar03a807a2011-07-07 15:08:58 +02006756 mb_adjustpos(curbuf, pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006757 }
6758 else if (pp->lnum > 1)
6759 {
6760 --pp->lnum;
6761 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
6762 return TRUE;
6763 }
6764 }
6765 return FALSE;
6766}
6767
6768/*
6769 * SELECT key in Normal or Visual mode: end of Select mode mapping.
6770 */
6771 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006772nv_select(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006773{
6774 if (VIsual_active)
6775 VIsual_select = TRUE;
6776 else if (VIsual_reselect)
6777 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006778 cap->nchar = 'v'; // fake "gv" command
Bram Moolenaar071d4272004-06-13 20:20:40 +00006779 cap->arg = TRUE;
6780 nv_g_cmd(cap);
6781 }
6782}
6783
Bram Moolenaar071d4272004-06-13 20:20:40 +00006784
6785/*
6786 * "G", "gg", CTRL-END, CTRL-HOME.
6787 * cap->arg is TRUE for "G".
6788 */
6789 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006790nv_goto(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791{
6792 linenr_T lnum;
6793
6794 if (cap->arg)
6795 lnum = curbuf->b_ml.ml_line_count;
6796 else
6797 lnum = 1L;
6798 cap->oap->motion_type = MLINE;
6799 setpcmark();
6800
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006801 // When a count is given, use it instead of the default lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802 if (cap->count0 != 0)
6803 lnum = cap->count0;
6804 if (lnum < 1L)
6805 lnum = 1L;
6806 else if (lnum > curbuf->b_ml.ml_line_count)
6807 lnum = curbuf->b_ml.ml_line_count;
6808 curwin->w_cursor.lnum = lnum;
6809 beginline(BL_SOL | BL_FIX);
6810#ifdef FEAT_FOLDING
6811 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
6812 foldOpenCursor();
6813#endif
6814}
6815
6816/*
6817 * CTRL-\ in Normal mode.
6818 */
6819 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006820nv_normal(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821{
6822 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
6823 {
6824 clearop(cap->oap);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00006825 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006826 clear_cmdline = TRUE; // unshow mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00006827 restart_edit = 0;
6828#ifdef FEAT_CMDWIN
6829 if (cmdwin_type != 0)
6830 cmdwin_result = Ctrl_C;
6831#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006832 if (VIsual_active)
6833 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006834 end_visual_mode(); // stop Visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00006835 redraw_curbuf_later(INVERTED);
6836 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006837 // CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838 if (cap->nchar == Ctrl_G && p_im)
6839 restart_edit = 'a';
6840 }
6841 else
6842 clearopbeep(cap->oap);
6843}
6844
6845/*
6846 * ESC in Normal mode: beep, but don't flush buffers.
6847 * Don't even beep if we are canceling a command.
6848 */
6849 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006850nv_esc(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006851{
6852 int no_reason;
6853
6854 no_reason = (cap->oap->op_type == OP_NOP
6855 && cap->opcount == 0
6856 && cap->count0 == 0
6857 && cap->oap->regname == 0
6858 && !p_im);
6859
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006860 if (cap->arg) // TRUE for CTRL-C
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861 {
6862 if (restart_edit == 0
6863#ifdef FEAT_CMDWIN
6864 && cmdwin_type == 0
6865#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00006867 && no_reason)
Bram Moolenaara84a3dd2019-03-25 22:21:24 +01006868 {
6869 if (anyBufIsChanged())
6870 msg(_("Type :qa! and press <Enter> to abandon all changes and exit Vim"));
6871 else
6872 msg(_("Type :qa and press <Enter> to exit Vim"));
6873 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006874
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006875 // Don't reset "restart_edit" when 'insertmode' is set, it won't be
6876 // set again below when halfway a mapping.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006877 if (!p_im)
6878 restart_edit = 0;
6879#ifdef FEAT_CMDWIN
6880 if (cmdwin_type != 0)
6881 {
6882 cmdwin_result = K_IGNORE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006883 got_int = FALSE; // don't stop executing autocommands et al.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884 return;
6885 }
6886#endif
6887 }
6888
Bram Moolenaar071d4272004-06-13 20:20:40 +00006889 if (VIsual_active)
6890 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006891 end_visual_mode(); // stop Visual
6892 check_cursor_col(); // make sure cursor is not beyond EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006893 curwin->w_set_curswant = TRUE;
6894 redraw_curbuf_later(INVERTED);
6895 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006896 else if (no_reason)
Bram Moolenaar165bc692015-07-21 17:53:25 +02006897 vim_beep(BO_ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006898 clearop(cap->oap);
6899
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006900 // A CTRL-C is often used at the start of a menu. When 'insertmode' is
6901 // set return to Insert mode afterwards.
Bram Moolenaare2c38102016-01-31 14:55:40 +01006902 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903 restart_edit = 'a';
6904}
6905
6906/*
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02006907 * Move the cursor for the "A" command.
6908 */
6909 void
6910set_cursor_for_append_to_line(void)
6911{
6912 curwin->w_set_curswant = TRUE;
6913 if (ve_flags == VE_ALL)
6914 {
6915 int save_State = State;
6916
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006917 // Pretend Insert mode here to allow the cursor on the
6918 // character past the end of the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02006919 State = INSERT;
6920 coladvance((colnr_T)MAXCOL);
6921 State = save_State;
6922 }
6923 else
6924 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
6925}
6926
6927/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006928 * Handle "A", "a", "I", "i" and <Insert> commands.
Bram Moolenaarec2da362017-01-21 20:04:22 +01006929 * Also handle K_PS, start bracketed paste.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 */
6931 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006932nv_edit(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006933{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006934 // <Insert> is equal to "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
6936 cap->cmdchar = 'i';
6937
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006938 // in Visual mode "A" and "I" are an operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
Bram Moolenaareef9add2017-09-16 15:38:04 +02006940 {
6941#ifdef FEAT_TERMINAL
6942 if (term_in_normal_mode())
6943 {
6944 end_visual_mode();
6945 clearop(cap->oap);
6946 term_enter_job_mode();
6947 return;
6948 }
6949#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 v_visop(cap);
Bram Moolenaareef9add2017-09-16 15:38:04 +02006951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006953 // in Visual mode and after an operator "a" and "i" are for text objects
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006954 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
6955 && (cap->oap->op_type != OP_NOP || VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006956 {
6957#ifdef FEAT_TEXTOBJ
6958 nv_object(cap);
6959#else
6960 clearopbeep(cap->oap);
6961#endif
6962 }
Bram Moolenaar662d9382017-07-31 22:56:24 +02006963#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02006964 else if (term_in_normal_mode())
Bram Moolenaar662d9382017-07-31 22:56:24 +02006965 {
6966 clearop(cap->oap);
Bram Moolenaar6d819742017-08-06 14:57:49 +02006967 term_enter_job_mode();
Bram Moolenaar662d9382017-07-31 22:56:24 +02006968 return;
6969 }
6970#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006971 else if (!curbuf->b_p_ma && !p_im)
6972 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006973 // Only give this error when 'insertmode' is off.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006974 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975 clearop(cap->oap);
Bram Moolenaarec2da362017-01-21 20:04:22 +01006976 if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006977 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01006978 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006979 }
Bram Moolenaara1891842017-02-04 21:34:31 +01006980 else if (cap->cmdchar == K_PS && VIsual_active)
6981 {
6982 pos_T old_pos = curwin->w_cursor;
6983 pos_T old_visual = VIsual;
6984
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006985 // In Visual mode the selected text is deleted.
Bram Moolenaara1891842017-02-04 21:34:31 +01006986 if (VIsual_mode == 'V' || curwin->w_cursor.lnum != VIsual.lnum)
6987 {
6988 shift_delete_registers();
6989 cap->oap->regname = '1';
6990 }
6991 else
6992 cap->oap->regname = '-';
6993 cap->cmdchar = 'd';
6994 cap->nchar = NUL;
6995 nv_operator(cap);
6996 do_pending_operator(cap, 0, FALSE);
6997 cap->cmdchar = K_PS;
6998
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006999 // When the last char in the line was deleted then append. Detect this
7000 // by checking if the cursor moved to before the Visual area.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007001 if (*ml_get_cursor() != NUL && LT_POS(curwin->w_cursor, old_pos)
7002 && LT_POS(curwin->w_cursor, old_visual))
Bram Moolenaara1891842017-02-04 21:34:31 +01007003 inc_cursor();
7004
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007005 // Insert to replace the deleted text with the pasted text.
Bram Moolenaara1891842017-02-04 21:34:31 +01007006 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7007 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008 else if (!checkclearopq(cap->oap))
7009 {
7010 switch (cap->cmdchar)
7011 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007012 case 'A': // "A"ppend after the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007013 set_cursor_for_append_to_line();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014 break;
7015
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007016 case 'I': // "I"nsert before the first non-blank
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007017 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
7018 beginline(BL_WHITE);
7019 else
7020 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021 break;
7022
Bram Moolenaara1891842017-02-04 21:34:31 +01007023 case K_PS:
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007024 // Bracketed paste works like "a"ppend, unless the cursor is in
7025 // the first column, then it inserts.
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007026 if (curwin->w_cursor.col == 0)
7027 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007028 // FALLTHROUGH
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007029
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007030 case 'a': // "a"ppend is like "i"nsert on the next character.
7031 // increment coladd when in virtual space, increment the
7032 // column otherwise, also to append after an unprintable char
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033 if (virtual_active()
7034 && (curwin->w_cursor.coladd > 0
7035 || *ml_get_cursor() == NUL
7036 || *ml_get_cursor() == TAB))
7037 curwin->w_cursor.coladd++;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01007038 else if (*ml_get_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039 inc_cursor();
7040 break;
7041 }
7042
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
7044 {
7045 int save_State = State;
7046
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007047 // Pretend Insert mode here to allow the cursor on the
7048 // character past the end of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049 State = INSERT;
7050 coladvance(getviscol());
7051 State = save_State;
7052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053
7054 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7055 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01007056 else if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007057 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01007058 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059}
7060
7061/*
7062 * Invoke edit() and take care of "restart_edit" and the return value.
7063 */
7064 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007065invoke_edit(
7066 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007067 int repl, // "r" or "gr" command
Bram Moolenaar9b578142016-01-30 19:39:49 +01007068 int cmd,
7069 int startln)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070{
7071 int restart_edit_save = 0;
7072
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007073 // Complicated: When the user types "a<C-O>a" we don't want to do Insert
7074 // mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
7075 // it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007076 if (repl || !stuff_empty())
7077 restart_edit_save = restart_edit;
7078 else
7079 restart_edit_save = 0;
7080
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007081 // Always reset "restart_edit", this is not a restarted edit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082 restart_edit = 0;
7083
7084 if (edit(cmd, startln, cap->count1))
7085 cap->retval |= CA_COMMAND_BUSY;
7086
7087 if (restart_edit == 0)
7088 restart_edit = restart_edit_save;
7089}
7090
7091#ifdef FEAT_TEXTOBJ
7092/*
7093 * "a" or "i" while an operator is pending or in Visual mode: object motion.
7094 */
7095 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007096nv_object(
7097 cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007098{
7099 int flag;
7100 int include;
7101 char_u *mps_save;
7102
7103 if (cap->cmdchar == 'i')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007104 include = FALSE; // "ix" = inner object: exclude white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007105 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007106 include = TRUE; // "ax" = an object: include white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007107
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007108 // Make sure (), [], {} and <> are in 'matchpairs'
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109 mps_save = curbuf->b_p_mps;
7110 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
7111
7112 switch (cap->nchar)
7113 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007114 case 'w': // "aw" = a word
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115 flag = current_word(cap->oap, cap->count1, include, FALSE);
7116 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007117 case 'W': // "aW" = a WORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007118 flag = current_word(cap->oap, cap->count1, include, TRUE);
7119 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007120 case 'b': // "ab" = a braces block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007121 case '(':
7122 case ')':
7123 flag = current_block(cap->oap, cap->count1, include, '(', ')');
7124 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007125 case 'B': // "aB" = a Brackets block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 case '{':
7127 case '}':
7128 flag = current_block(cap->oap, cap->count1, include, '{', '}');
7129 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007130 case '[': // "a[" = a [] block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131 case ']':
7132 flag = current_block(cap->oap, cap->count1, include, '[', ']');
7133 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007134 case '<': // "a<" = a <> block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135 case '>':
7136 flag = current_block(cap->oap, cap->count1, include, '<', '>');
7137 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007138 case 't': // "at" = a tag block (xml and html)
7139 // Do not adjust oap->end in do_pending_operator()
7140 // otherwise there are different results for 'dit'
7141 // (note leading whitespace in last line):
7142 // 1) <b> 2) <b>
7143 // foobar foobar
7144 // </b> </b>
Bram Moolenaarb6c27352015-03-05 19:57:49 +01007145 cap->retval |= CA_NO_ADJ_OP_END;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00007146 flag = current_tagblock(cap->oap, cap->count1, include);
7147 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007148 case 'p': // "ap" = a paragraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00007149 flag = current_par(cap->oap, cap->count1, include, 'p');
7150 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007151 case 's': // "as" = a sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152 flag = current_sent(cap->oap, cap->count1, include);
7153 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007154 case '"': // "a"" = a double quoted string
7155 case '\'': // "a'" = a single quoted string
7156 case '`': // "a`" = a backtick quoted string
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007157 flag = current_quote(cap->oap, cap->count1, include,
7158 cap->nchar);
7159 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007160#if 0 // TODO
7161 case 'S': // "aS" = a section
7162 case 'f': // "af" = a filename
7163 case 'u': // "au" = a URL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007164#endif
7165 default:
7166 flag = FAIL;
7167 break;
7168 }
7169
7170 curbuf->b_p_mps = mps_save;
7171 if (flag == FAIL)
7172 clearopbeep(cap->oap);
7173 adjust_cursor_col();
7174 curwin->w_set_curswant = TRUE;
7175}
7176#endif
7177
7178/*
7179 * "q" command: Start/stop recording.
7180 * "q:", "q/", "q?": edit command-line in command-line window.
7181 */
7182 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007183nv_record(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007184{
7185 if (cap->oap->op_type == OP_FORMAT)
7186 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007187 // "gqq" is the same as "gqgq": format line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007188 cap->cmdchar = 'g';
7189 cap->nchar = 'q';
7190 nv_operator(cap);
7191 }
7192 else if (!checkclearop(cap->oap))
7193 {
7194#ifdef FEAT_CMDWIN
7195 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
7196 {
7197 stuffcharReadbuff(cap->nchar);
7198 stuffcharReadbuff(K_CMDWIN);
7199 }
7200 else
7201#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007202 // (stop) recording into a named register, unless executing a
7203 // register
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02007204 if (reg_executing == 0 && do_record(cap->nchar) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007205 clearopbeep(cap->oap);
7206 }
7207}
7208
7209/*
7210 * Handle the "@r" command.
7211 */
7212 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007213nv_at(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007214{
7215 if (checkclearop(cap->oap))
7216 return;
7217#ifdef FEAT_EVAL
7218 if (cap->nchar == '=')
7219 {
7220 if (get_expr_register() == NUL)
7221 return;
7222 }
7223#endif
7224 while (cap->count1-- && !got_int)
7225 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00007226 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007227 {
7228 clearopbeep(cap->oap);
7229 break;
7230 }
7231 line_breakcheck();
7232 }
7233}
7234
7235/*
7236 * Handle the CTRL-U and CTRL-D commands.
7237 */
7238 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007239nv_halfpage(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240{
7241 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
7242 || (cap->cmdchar == Ctrl_D
7243 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
7244 clearopbeep(cap->oap);
7245 else if (!checkclearop(cap->oap))
7246 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
7247}
7248
7249/*
7250 * Handle "J" or "gJ" command.
7251 */
7252 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007253nv_join(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007254{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007255 if (VIsual_active) // join the visual lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00007256 nv_operator(cap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007257 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007258 {
7259 if (cap->count0 <= 1)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007260 cap->count0 = 2; // default for join is two lines!
Bram Moolenaar071d4272004-06-13 20:20:40 +00007261 if (curwin->w_cursor.lnum + cap->count0 - 1 >
7262 curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007263 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007264 // can't join when on the last line
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007265 if (cap->count0 <= 2)
7266 {
7267 clearopbeep(cap->oap);
7268 return;
7269 }
7270 cap->count0 = curbuf->b_ml.ml_line_count
7271 - curwin->w_cursor.lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272 }
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007273
7274 prep_redo(cap->oap->regname, cap->count0,
7275 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
7276 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007277 }
7278}
7279
7280/*
7281 * "P", "gP", "p" and "gp" commands.
7282 */
7283 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007284nv_put(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007285{
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007286 nv_put_opt(cap, FALSE);
7287}
7288
7289/*
7290 * "P", "gP", "p" and "gp" commands.
7291 * "fix_indent" is TRUE for "[p", "[P", "]p" and "]P".
7292 */
7293 static void
7294nv_put_opt(cmdarg_T *cap, int fix_indent)
7295{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007296 int regname = 0;
7297 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007298 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007299 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007300 int dir;
7301 int flags = 0;
7302
7303 if (cap->oap->op_type != OP_NOP)
7304 {
7305#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007306 // "dp" is ":diffput"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007307 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
7308 {
7309 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007310 nv_diffgetput(TRUE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311 }
7312 else
7313#endif
7314 clearopbeep(cap->oap);
7315 }
Bram Moolenaarf2732452018-06-03 14:47:35 +02007316#ifdef FEAT_JOB_CHANNEL
7317 else if (bt_prompt(curbuf) && !prompt_curpos_editable())
7318 {
7319 clearopbeep(cap->oap);
7320 }
7321#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007322 else
7323 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007324 if (fix_indent)
7325 {
7326 dir = (cap->cmdchar == ']' && cap->nchar == 'p')
7327 ? FORWARD : BACKWARD;
7328 flags |= PUT_FIXINDENT;
7329 }
7330 else
7331 dir = (cap->cmdchar == 'P'
7332 || (cap->cmdchar == 'g' && cap->nchar == 'P'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007333 ? BACKWARD : FORWARD;
7334 prep_redo_cmd(cap);
7335 if (cap->cmdchar == 'g')
7336 flags |= PUT_CURSEND;
7337
Bram Moolenaar071d4272004-06-13 20:20:40 +00007338 if (VIsual_active)
7339 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007340 // Putting in Visual mode: The put text replaces the selected
7341 // text. First delete the selected text, then put the new text.
7342 // Need to save and restore the registers that the delete
7343 // overwrites if the old contents is being put.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007344 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007345 regname = cap->oap->regname;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007346#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007347 adjust_clip_reg(&regname);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007348#endif
Bram Moolenaar7d311c52014-02-22 23:49:35 +01007349 if (regname == 0 || regname == '"'
Bram Moolenaarba6e8582012-12-12 18:20:32 +01007350 || VIM_ISDIGIT(regname) || regname == '-'
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007351#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007352 || (clip_unnamed && (regname == '*' || regname == '+'))
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007353#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007354
7355 )
7356 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007357 // The delete is going to overwrite the register we want to
7358 // put, save it first.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007359 reg1 = get_register(regname, TRUE);
7360 }
7361
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007362 // Now delete the selected text. Avoid messages here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007363 cap->cmdchar = 'd';
7364 cap->nchar = NUL;
7365 cap->oap->regname = NUL;
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007366 ++msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007367 nv_operator(cap);
7368 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007369 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007370 --msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007371
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007372 // delete PUT_LINE_BACKWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007373 cap->oap->regname = regname;
7374
7375 if (reg1 != NULL)
7376 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007377 // Delete probably changed the register we want to put, save
7378 // it first. Then put back what was there before the delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007379 reg2 = get_register(regname, FALSE);
7380 put_register(regname, reg1);
7381 }
7382
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007383 // When deleted a linewise Visual area, put the register as
7384 // lines to avoid it joined with the next line. When deletion was
7385 // characterwise, split a line when putting lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007386 if (VIsual_mode == 'V')
7387 flags |= PUT_LINE;
7388 else if (VIsual_mode == 'v')
7389 flags |= PUT_LINE_SPLIT;
7390 if (VIsual_mode == Ctrl_V && dir == FORWARD)
7391 flags |= PUT_LINE_FORWARD;
7392 dir = BACKWARD;
7393 if ((VIsual_mode != 'V'
7394 && curwin->w_cursor.col < curbuf->b_op_start.col)
7395 || (VIsual_mode == 'V'
7396 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007397 // cursor is at the end of the line or end of file, put
7398 // forward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007399 dir = FORWARD;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007400 // May have been reset in do_put().
Bram Moolenaarec11aef2013-09-22 15:23:44 +02007401 VIsual_active = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007403 do_put(cap->oap->regname, dir, cap->count1, flags);
7404
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007405 // If a register was saved, put it back now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007406 if (reg2 != NULL)
7407 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007408
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007409 // What to reselect with "gv"? Selecting the just put text seems to
7410 // be the most useful, since the original text was removed.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007411 if (was_visual)
7412 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007413 curbuf->b_visual.vi_start = curbuf->b_op_start;
7414 curbuf->b_visual.vi_end = curbuf->b_op_end;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007415 // need to adjust cursor position
Bram Moolenaard29c6fe2015-11-19 20:11:54 +01007416 if (*p_sel == 'e')
7417 inc(&curbuf->b_visual.vi_end);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007418 }
7419
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007420 // When all lines were selected and deleted do_put() leaves an empty
7421 // line that needs to be deleted now.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007422 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007423 {
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007424 ml_delete(curbuf->b_ml.ml_line_count, TRUE);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007425 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1);
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007426
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007427 // If the cursor was in that line, move it to the end of the last
7428 // line.
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007429 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7430 {
7431 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7432 coladvance((colnr_T)MAXCOL);
7433 }
7434 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007435 auto_format(FALSE, TRUE);
7436 }
7437}
7438
7439/*
7440 * "o" and "O" commands.
7441 */
7442 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007443nv_open(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007444{
7445#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007446 // "do" is ":diffget"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007447 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
7448 {
7449 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007450 nv_diffgetput(FALSE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007451 }
7452 else
7453#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007454 if (VIsual_active) // switch start and end of visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00007455 v_swap_corners(cap->cmdchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007456#ifdef FEAT_JOB_CHANNEL
7457 else if (bt_prompt(curbuf))
Bram Moolenaarf2732452018-06-03 14:47:35 +02007458 clearopbeep(cap->oap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007459#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007460 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007461 n_opencmd(cap);
7462}
7463
Bram Moolenaar071d4272004-06-13 20:20:40 +00007464#ifdef FEAT_NETBEANS_INTG
7465 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007466nv_nbcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007467{
7468 netbeans_keycommand(cap->nchar);
7469}
7470#endif
7471
7472#ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007473 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007474nv_drop(cmdarg_T *cap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007475{
7476 do_put('~', BACKWARD, 1L, PUT_CURSEND);
7477}
7478#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00007479
Bram Moolenaar3918c952005-03-15 22:34:55 +00007480/*
7481 * Trigger CursorHold event.
7482 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
7483 * input buffer. "did_cursorhold" is set to avoid retriggering.
7484 */
Bram Moolenaar3918c952005-03-15 22:34:55 +00007485 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007486nv_cursorhold(cmdarg_T *cap)
Bram Moolenaar3918c952005-03-15 22:34:55 +00007487{
7488 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
7489 did_cursorhold = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007490 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar3918c952005-03-15 22:34:55 +00007491}