blob: 11b61f92a6cf9644d0a2c318e79d0777605c4688 [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 +000018
Bram Moolenaarf82a2d22010-12-17 18:53:01 +010019#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010020static void set_vcount_ca(cmdarg_T *cap, int *set_prevcount);
Bram Moolenaarf82a2d22010-12-17 18:53:01 +010021#endif
Bram Moolenaareae1b912019-05-09 15:12:55 +020022static int nv_compare(const void *s1, const void *s2);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010023static void unshift_special(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000024#ifdef FEAT_CMDL_INFO
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010025static void del_from_showcmd(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +000026#endif
27
28/*
29 * nv_*(): functions called to handle Normal and Visual mode commands.
30 * n_*(): functions called to handle Normal mode commands.
31 * v_*(): functions called to handle Visual mode commands.
32 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010033static void nv_ignore(cmdarg_T *cap);
34static void nv_nop(cmdarg_T *cap);
35static void nv_error(cmdarg_T *cap);
36static void nv_help(cmdarg_T *cap);
37static void nv_addsub(cmdarg_T *cap);
38static void nv_page(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010039static void nv_zet(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#ifdef FEAT_GUI
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010041static void nv_ver_scrollbar(cmdarg_T *cap);
42static void nv_hor_scrollbar(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000043#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +000044#ifdef FEAT_GUI_TABLINE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010045static void nv_tabline(cmdarg_T *cap);
46static void nv_tabmenu(cmdarg_T *cap);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000047#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010048static void nv_exmode(cmdarg_T *cap);
49static void nv_colon(cmdarg_T *cap);
50static void nv_ctrlg(cmdarg_T *cap);
51static void nv_ctrlh(cmdarg_T *cap);
52static void nv_clear(cmdarg_T *cap);
53static void nv_ctrlo(cmdarg_T *cap);
54static void nv_hat(cmdarg_T *cap);
55static void nv_Zet(cmdarg_T *cap);
56static void nv_ident(cmdarg_T *cap);
57static void nv_tagpop(cmdarg_T *cap);
58static void nv_scroll(cmdarg_T *cap);
59static void nv_right(cmdarg_T *cap);
60static void nv_left(cmdarg_T *cap);
61static void nv_up(cmdarg_T *cap);
62static void nv_down(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010063static void nv_end(cmdarg_T *cap);
64static void nv_dollar(cmdarg_T *cap);
65static void nv_search(cmdarg_T *cap);
66static void nv_next(cmdarg_T *cap);
Bram Moolenaar92ea26b2019-10-18 20:53:34 +020067static int normal_search(cmdarg_T *cap, int dir, char_u *pat, int opt, int *wrapped);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010068static void nv_csearch(cmdarg_T *cap);
69static void nv_brackets(cmdarg_T *cap);
70static void nv_percent(cmdarg_T *cap);
71static void nv_brace(cmdarg_T *cap);
72static void nv_mark(cmdarg_T *cap);
73static void nv_findpar(cmdarg_T *cap);
74static void nv_undo(cmdarg_T *cap);
75static void nv_kundo(cmdarg_T *cap);
76static void nv_Replace(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010077static void nv_replace(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010078static void nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos);
79static void v_visop(cmdarg_T *cap);
80static void nv_subst(cmdarg_T *cap);
81static void nv_abbrev(cmdarg_T *cap);
82static void nv_optrans(cmdarg_T *cap);
83static void nv_gomark(cmdarg_T *cap);
84static void nv_pcmark(cmdarg_T *cap);
85static void nv_regname(cmdarg_T *cap);
86static void nv_visual(cmdarg_T *cap);
87static void n_start_visual_mode(int c);
88static void nv_window(cmdarg_T *cap);
89static void nv_suspend(cmdarg_T *cap);
90static void nv_g_cmd(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010091static void nv_dot(cmdarg_T *cap);
92static void nv_redo(cmdarg_T *cap);
93static void nv_Undo(cmdarg_T *cap);
94static void nv_tilde(cmdarg_T *cap);
95static void nv_operator(cmdarg_T *cap);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +000096#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010097static void set_op_var(int optype);
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +000098#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010099static void nv_lineop(cmdarg_T *cap);
100static void nv_home(cmdarg_T *cap);
101static void nv_pipe(cmdarg_T *cap);
102static void nv_bck_word(cmdarg_T *cap);
103static void nv_wordcmd(cmdarg_T *cap);
104static void nv_beginline(cmdarg_T *cap);
105static void adjust_cursor(oparg_T *oap);
106static void adjust_for_sel(cmdarg_T *cap);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100107static void nv_select(cmdarg_T *cap);
108static void nv_goto(cmdarg_T *cap);
109static void nv_normal(cmdarg_T *cap);
110static void nv_esc(cmdarg_T *oap);
111static void nv_edit(cmdarg_T *cap);
112static void invoke_edit(cmdarg_T *cap, int repl, int cmd, int startln);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113#ifdef FEAT_TEXTOBJ
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100114static void nv_object(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100116static void nv_record(cmdarg_T *cap);
117static void nv_at(cmdarg_T *cap);
118static void nv_halfpage(cmdarg_T *cap);
119static void nv_join(cmdarg_T *cap);
120static void nv_put(cmdarg_T *cap);
Bram Moolenaar0ab190c2019-05-23 23:27:36 +0200121static void nv_put_opt(cmdarg_T *cap, int fix_indent);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100122static void nv_open(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100124static void nv_nbcmd(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125#endif
126#ifdef FEAT_DND
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100127static void nv_drop(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100129static void nv_cursorhold(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130
Bram Moolenaar9fd01c62008-11-01 12:52:38 +0000131static char *e_noident = N_("E349: No identifier under cursor");
132
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133/*
134 * Function to be called for a Normal or Visual mode command.
135 * The argument is a cmdarg_T.
136 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100137typedef void (*nv_func_T)(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100139// Values for cmd_flags.
140#define NV_NCH 0x01 // may need to get a second char
141#define NV_NCH_NOP (0x02|NV_NCH) // get second char when no operator pending
142#define NV_NCH_ALW (0x04|NV_NCH) // always get a second char
143#define NV_LANG 0x08 // second char needs language adjustment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100145#define NV_SS 0x10 // may start selection
146#define NV_SSS 0x20 // may start selection with shift modifier
147#define NV_STS 0x40 // may stop selection without shift modif.
148#define NV_RL 0x80 // 'rightleft' modifies command
149#define NV_KEEPREG 0x100 // don't clear regname
150#define NV_NCW 0x200 // not allowed in command-line window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151
152/*
153 * Generally speaking, every Normal mode command should either clear any
154 * pending operator (with *clearop*()), or set the motion type variable
155 * oap->motion_type.
156 *
157 * When a cursor motion command is made, it is marked as being a character or
158 * line oriented motion. Then, if an operator is in effect, the operation
159 * becomes character or line oriented accordingly.
160 */
161
162/*
163 * This table contains one entry for every Normal or Visual mode command.
164 * The order doesn't matter, init_normal_cmds() will create a sorted index.
165 * It is faster when all keys from zero to '~' are present.
166 */
167static const struct nv_cmd
168{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100169 int cmd_char; // (first) command character
170 nv_func_T cmd_func; // function for this command
171 short_u cmd_flags; // NV_ flags
172 short cmd_arg; // value for ca.arg
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173} nv_cmds[] =
174{
175 {NUL, nv_error, 0, 0},
176 {Ctrl_A, nv_addsub, 0, 0},
177 {Ctrl_B, nv_page, NV_STS, BACKWARD},
178 {Ctrl_C, nv_esc, 0, TRUE},
179 {Ctrl_D, nv_halfpage, 0, 0},
180 {Ctrl_E, nv_scroll_line, 0, TRUE},
181 {Ctrl_F, nv_page, NV_STS, FORWARD},
182 {Ctrl_G, nv_ctrlg, 0, 0},
183 {Ctrl_H, nv_ctrlh, 0, 0},
184 {Ctrl_I, nv_pcmark, 0, 0},
185 {NL, nv_down, 0, FALSE},
186 {Ctrl_K, nv_error, 0, 0},
187 {Ctrl_L, nv_clear, 0, 0},
Bram Moolenaar2c519cf2019-03-21 21:45:34 +0100188 {CAR, nv_down, 0, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189 {Ctrl_N, nv_down, NV_STS, FALSE},
190 {Ctrl_O, nv_ctrlo, 0, 0},
191 {Ctrl_P, nv_up, NV_STS, FALSE},
Bram Moolenaardf177f62005-02-22 08:39:57 +0000192 {Ctrl_Q, nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193 {Ctrl_R, nv_redo, 0, 0},
194 {Ctrl_S, nv_ignore, 0, 0},
195 {Ctrl_T, nv_tagpop, NV_NCW, 0},
196 {Ctrl_U, nv_halfpage, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197 {Ctrl_V, nv_visual, 0, FALSE},
198 {'V', nv_visual, 0, FALSE},
199 {'v', nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200 {Ctrl_W, nv_window, 0, 0},
201 {Ctrl_X, nv_addsub, 0, 0},
202 {Ctrl_Y, nv_scroll_line, 0, FALSE},
203 {Ctrl_Z, nv_suspend, 0, 0},
204 {ESC, nv_esc, 0, FALSE},
205 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0},
206 {Ctrl_RSB, nv_ident, NV_NCW, 0},
207 {Ctrl_HAT, nv_hat, NV_NCW, 0},
208 {Ctrl__, nv_error, 0, 0},
209 {' ', nv_right, 0, 0},
210 {'!', nv_operator, 0, 0},
211 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0},
212 {'#', nv_ident, 0, 0},
213 {'$', nv_dollar, 0, 0},
214 {'%', nv_percent, 0, 0},
215 {'&', nv_optrans, 0, 0},
216 {'\'', nv_gomark, NV_NCH_ALW, TRUE},
217 {'(', nv_brace, 0, BACKWARD},
218 {')', nv_brace, 0, FORWARD},
219 {'*', nv_ident, 0, 0},
220 {'+', nv_down, 0, TRUE},
221 {',', nv_csearch, 0, TRUE},
222 {'-', nv_up, 0, TRUE},
223 {'.', nv_dot, NV_KEEPREG, 0},
224 {'/', nv_search, 0, FALSE},
225 {'0', nv_beginline, 0, 0},
226 {'1', nv_ignore, 0, 0},
227 {'2', nv_ignore, 0, 0},
228 {'3', nv_ignore, 0, 0},
229 {'4', nv_ignore, 0, 0},
230 {'5', nv_ignore, 0, 0},
231 {'6', nv_ignore, 0, 0},
232 {'7', nv_ignore, 0, 0},
233 {'8', nv_ignore, 0, 0},
234 {'9', nv_ignore, 0, 0},
235 {':', nv_colon, 0, 0},
236 {';', nv_csearch, 0, FALSE},
237 {'<', nv_operator, NV_RL, 0},
238 {'=', nv_operator, 0, 0},
239 {'>', nv_operator, NV_RL, 0},
240 {'?', nv_search, 0, FALSE},
241 {'@', nv_at, NV_NCH_NOP, FALSE},
242 {'A', nv_edit, 0, 0},
243 {'B', nv_bck_word, 0, 1},
244 {'C', nv_abbrev, NV_KEEPREG, 0},
245 {'D', nv_abbrev, NV_KEEPREG, 0},
246 {'E', nv_wordcmd, 0, TRUE},
247 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
248 {'G', nv_goto, 0, TRUE},
249 {'H', nv_scroll, 0, 0},
250 {'I', nv_edit, 0, 0},
251 {'J', nv_join, 0, 0},
252 {'K', nv_ident, 0, 0},
253 {'L', nv_scroll, 0, 0},
254 {'M', nv_scroll, 0, 0},
255 {'N', nv_next, 0, SEARCH_REV},
256 {'O', nv_open, 0, 0},
257 {'P', nv_put, 0, 0},
258 {'Q', nv_exmode, NV_NCW, 0},
259 {'R', nv_Replace, 0, FALSE},
260 {'S', nv_subst, NV_KEEPREG, 0},
261 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
262 {'U', nv_Undo, 0, 0},
263 {'W', nv_wordcmd, 0, TRUE},
264 {'X', nv_abbrev, NV_KEEPREG, 0},
265 {'Y', nv_abbrev, NV_KEEPREG, 0},
266 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0},
267 {'[', nv_brackets, NV_NCH_ALW, BACKWARD},
268 {'\\', nv_error, 0, 0},
269 {']', nv_brackets, NV_NCH_ALW, FORWARD},
270 {'^', nv_beginline, 0, BL_WHITE | BL_FIX},
271 {'_', nv_lineop, 0, 0},
272 {'`', nv_gomark, NV_NCH_ALW, FALSE},
273 {'a', nv_edit, NV_NCH, 0},
274 {'b', nv_bck_word, 0, 0},
275 {'c', nv_operator, 0, 0},
276 {'d', nv_operator, 0, 0},
277 {'e', nv_wordcmd, 0, FALSE},
278 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
279 {'g', nv_g_cmd, NV_NCH_ALW, FALSE},
280 {'h', nv_left, NV_RL, 0},
281 {'i', nv_edit, NV_NCH, 0},
282 {'j', nv_down, 0, FALSE},
283 {'k', nv_up, 0, FALSE},
284 {'l', nv_right, NV_RL, 0},
285 {'m', nv_mark, NV_NCH_NOP, 0},
286 {'n', nv_next, 0, 0},
287 {'o', nv_open, 0, 0},
288 {'p', nv_put, 0, 0},
289 {'q', nv_record, NV_NCH, 0},
290 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0},
291 {'s', nv_subst, NV_KEEPREG, 0},
292 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
293 {'u', nv_undo, 0, 0},
294 {'w', nv_wordcmd, 0, FALSE},
295 {'x', nv_abbrev, NV_KEEPREG, 0},
296 {'y', nv_operator, 0, 0},
297 {'z', nv_zet, NV_NCH_ALW, 0},
298 {'{', nv_findpar, 0, BACKWARD},
299 {'|', nv_pipe, 0, 0},
300 {'}', nv_findpar, 0, FORWARD},
301 {'~', nv_tilde, 0, 0},
302
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100303 // pound sign
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304 {POUND, nv_ident, 0, 0},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200305 {K_MOUSEUP, nv_mousescroll, 0, MSCR_UP},
306 {K_MOUSEDOWN, nv_mousescroll, 0, MSCR_DOWN},
307 {K_MOUSELEFT, nv_mousescroll, 0, MSCR_LEFT},
308 {K_MOUSERIGHT, nv_mousescroll, 0, MSCR_RIGHT},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 {K_LEFTMOUSE, nv_mouse, 0, 0},
310 {K_LEFTMOUSE_NM, nv_mouse, 0, 0},
311 {K_LEFTDRAG, nv_mouse, 0, 0},
312 {K_LEFTRELEASE, nv_mouse, 0, 0},
313 {K_LEFTRELEASE_NM, nv_mouse, 0, 0},
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100314 {K_MOUSEMOVE, nv_mouse, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315 {K_MIDDLEMOUSE, nv_mouse, 0, 0},
316 {K_MIDDLEDRAG, nv_mouse, 0, 0},
317 {K_MIDDLERELEASE, nv_mouse, 0, 0},
318 {K_RIGHTMOUSE, nv_mouse, 0, 0},
319 {K_RIGHTDRAG, nv_mouse, 0, 0},
320 {K_RIGHTRELEASE, nv_mouse, 0, 0},
321 {K_X1MOUSE, nv_mouse, 0, 0},
322 {K_X1DRAG, nv_mouse, 0, 0},
323 {K_X1RELEASE, nv_mouse, 0, 0},
324 {K_X2MOUSE, nv_mouse, 0, 0},
325 {K_X2DRAG, nv_mouse, 0, 0},
326 {K_X2RELEASE, nv_mouse, 0, 0},
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000327 {K_IGNORE, nv_ignore, NV_KEEPREG, 0},
Bram Moolenaarebefac62005-12-28 22:39:57 +0000328 {K_NOP, nv_nop, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 {K_INS, nv_edit, 0, 0},
330 {K_KINS, nv_edit, 0, 0},
331 {K_BS, nv_ctrlh, 0, 0},
332 {K_UP, nv_up, NV_SSS|NV_STS, FALSE},
333 {K_S_UP, nv_page, NV_SS, BACKWARD},
334 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE},
335 {K_S_DOWN, nv_page, NV_SS, FORWARD},
336 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0},
337 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0},
338 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1},
339 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0},
340 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE},
341 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE},
342 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
343 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
344 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
345 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
346 {K_END, nv_end, NV_SSS|NV_STS, FALSE},
347 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 {K_S_END, nv_end, NV_SS, FALSE},
349 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE},
350 {K_HOME, nv_home, NV_SSS|NV_STS, 0},
351 {K_KHOME, nv_home, NV_SSS|NV_STS, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352 {K_S_HOME, nv_home, NV_SS, 0},
353 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE},
354 {K_DEL, nv_abbrev, 0, 0},
355 {K_KDEL, nv_abbrev, 0, 0},
356 {K_UNDO, nv_kundo, 0, 0},
357 {K_HELP, nv_help, NV_NCW, 0},
358 {K_F1, nv_help, NV_NCW, 0},
359 {K_XF1, nv_help, NV_NCW, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 {K_SELECT, nv_select, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361#ifdef FEAT_GUI
362 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0},
363 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0},
364#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000365#ifdef FEAT_GUI_TABLINE
366 {K_TABLINE, nv_tabline, 0, 0},
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000367 {K_TABMENU, nv_tabmenu, 0, 0},
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369#ifdef FEAT_NETBEANS_INTG
370 {K_F21, nv_nbcmd, NV_NCH_ALW, 0},
371#endif
372#ifdef FEAT_DND
373 {K_DROP, nv_drop, NV_STS, 0},
374#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000375 {K_CURSORHOLD, nv_cursorhold, NV_KEEPREG, 0},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100376 {K_PS, nv_edit, 0, 0},
Bram Moolenaar957cf672020-11-12 14:21:06 +0100377 {K_COMMAND, nv_colon, 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[].
K.Takataeeec2542021-06-02 13:28:16 +0200381#define NV_CMDS_SIZE ARRAY_LENGTH(nv_cmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382
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 Moolenaarb146e012020-07-19 23:06:05 +0200502 int save_did_cursorhold = did_cursorhold;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503
Bram Moolenaara80faa82020-04-12 19:37:17 +0200504 CLEAR_FIELD(ca); // also resets ca.retval
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 ca.oap = oap;
Bram Moolenaara983fe92008-07-31 20:04:27 +0000506
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100507 // Use a count remembered from before entering an operator. After typing
508 // "3d" we return from normal_cmd() and come back here, the "3" is
509 // remembered in "opcount".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 ca.opcount = opcount;
511
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 /*
513 * If there is an operator pending, then the command we take this time
514 * will terminate it. Finish_op tells us to finish the operation before
515 * returning this time (unless the operation was cancelled).
516 */
517#ifdef CURSOR_SHAPE
518 c = finish_op;
519#endif
520 finish_op = (oap->op_type != OP_NOP);
521#ifdef CURSOR_SHAPE
522 if (finish_op != c)
523 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100524 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525# ifdef FEAT_MOUSESHAPE
526 update_mouseshape(-1);
527# endif
528 }
529#endif
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +0100530 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100532 // When not finishing an operator and no register name typed, reset the
533 // count.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 if (!finish_op && !oap->regname)
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000535 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 ca.opcount = 0;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000537#ifdef FEAT_EVAL
538 set_prevcount = TRUE;
539#endif
540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100542 // Restore counts from before receiving K_CURSORHOLD. This means after
543 // typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not
544 // "3 * 2".
Bram Moolenaara983fe92008-07-31 20:04:27 +0000545 if (oap->prev_opcount > 0 || oap->prev_count0 > 0)
546 {
547 ca.opcount = oap->prev_opcount;
548 ca.count0 = oap->prev_count0;
549 oap->prev_opcount = 0;
550 oap->prev_count0 = 0;
551 }
Bram Moolenaara983fe92008-07-31 20:04:27 +0000552
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 mapped_len = typebuf_maplen();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554
555 State = NORMAL_BUSY;
556#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100557 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558#endif
559
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100560#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100561 // Set v:count here, when called from main() and not a stuffed
562 // command, so that v:count can be used in an expression mapping
563 // when there is no count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100564 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100565 set_vcount_ca(&ca, &set_prevcount);
566#endif
567
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 /*
569 * Get the command character from the user.
570 */
571 c = safe_vgetc();
Bram Moolenaar25281632016-01-21 23:32:32 +0100572 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573
574 /*
575 * If a mapping was started in Visual or Select mode, remember the length
576 * of the mapping. This is used below to not return to Insert mode for as
577 * long as the mapping is being executed.
578 */
579 if (restart_edit == 0)
580 old_mapped_len = 0;
581 else if (old_mapped_len
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000582 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 old_mapped_len = typebuf_maplen();
584
585 if (c == NUL)
586 c = K_ZERO;
587
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 /*
589 * In Select mode, typed text replaces the selection.
590 */
591 if (VIsual_active
592 && VIsual_select
593 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
594 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100595 // Fake a "c"hange command. When "restart_edit" is set (e.g., because
596 // 'insertmode' is set) fake a "d"elete command, Insert mode will
597 // restart automatically.
598 // Insert the typed character in the typeahead buffer, so that it can
599 // be mapped in Insert mode. Required for ":lmap" to work.
Bram Moolenaarb42c0d52020-05-29 22:41:41 +0200600 ins_char_typebuf(vgetc_char, vgetc_mod_mask);
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000601 if (restart_edit != 0)
602 c = 'd';
603 else
604 c = 'c';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100605 msg_nowait = TRUE; // don't delay going to insert mode
606 old_mapped_len = 0; // do go to Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608
609#ifdef FEAT_CMDL_INFO
610 need_flushbuf = add_to_showcmd(c);
611#endif
612
613getcount:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 if (!(VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 {
616 /*
617 * Handle a count before a command and compute ca.count0.
618 * Note that '0' is a command and not the start of a count, but it's
619 * part of a count after other digits.
620 */
621 while ( (c >= '1' && c <= '9')
622 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
623 {
624 if (c == K_DEL || c == K_KDEL)
625 {
626 ca.count0 /= 10;
627#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100628 del_from_showcmd(4); // delete the digit and ~@%
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629#endif
630 }
631 else
632 ca.count0 = ca.count0 * 10 + (c - '0');
Bram Moolenaar1d859e22021-01-28 17:24:58 +0100633 if (ca.count0 < 0) // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 ca.count0 = 999999999L;
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000635#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100636 // Set v:count here, when called from main() and not a stuffed
637 // command, so that v:count can be used in an expression mapping
638 // right after the count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100639 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100640 set_vcount_ca(&ca, &set_prevcount);
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000641#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 if (ctrl_w)
643 {
644 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100645 ++allow_keys; // no mapping for nchar, but keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100647 ++no_zero_mapping; // don't map zero here
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000648 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 --no_zero_mapping;
651 if (ctrl_w)
652 {
653 --no_mapping;
654 --allow_keys;
655 }
656#ifdef FEAT_CMDL_INFO
657 need_flushbuf |= add_to_showcmd(c);
658#endif
659 }
660
661 /*
662 * If we got CTRL-W there may be a/another count
663 */
664 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
665 {
666 ctrl_w = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100667 ca.opcount = ca.count0; // remember first count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 ca.count0 = 0;
669 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100670 ++allow_keys; // no mapping for nchar, but keys
671 c = plain_vgetc(); // get next character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 --no_mapping;
674 --allow_keys;
675#ifdef FEAT_CMDL_INFO
676 need_flushbuf |= add_to_showcmd(c);
677#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100678 goto getcount; // jump back
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 }
680 }
681
Bram Moolenaara983fe92008-07-31 20:04:27 +0000682 if (c == K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100684 // Save the count values so that ca.opcount and ca.count0 are exactly
685 // the same when coming back here after handling K_CURSORHOLD.
Bram Moolenaara983fe92008-07-31 20:04:27 +0000686 oap->prev_opcount = ca.opcount;
687 oap->prev_count0 = ca.count0;
688 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100689 else if (ca.opcount != 0)
Bram Moolenaara983fe92008-07-31 20:04:27 +0000690 {
691 /*
692 * If we're in the middle of an operator (including after entering a
693 * yank buffer with '"') AND we had a count before the operator, then
694 * that count overrides the current value of ca.count0.
695 * What this means effectively, is that commands like "3dw" get turned
696 * into "d3w" which makes things fall into place pretty neatly.
697 * If you give a count before AND after the operator, they are
698 * multiplied.
699 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 if (ca.count0)
701 ca.count0 *= ca.opcount;
702 else
703 ca.count0 = ca.opcount;
Bram Moolenaar1d859e22021-01-28 17:24:58 +0100704 if (ca.count0 < 0) // overflow
705 ca.count0 = 999999999L;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 }
707
708 /*
709 * Always remember the count. It will be set to zero (on the next call,
710 * above) when there is no pending operator.
711 * When called from main(), save the count for use by the "count" built-in
712 * variable.
713 */
714 ca.opcount = ca.count0;
715 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
716
717#ifdef FEAT_EVAL
718 /*
719 * Only set v:count when called from main() and not a stuffed command.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100720 * Do set it for redo.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100722 if (toplevel && readbuf1_empty())
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000723 set_vcount(ca.count0, ca.count1, set_prevcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724#endif
725
726 /*
727 * Find the command character in the table of commands.
728 * For CTRL-W we already got nchar when looking for a count.
729 */
730 if (ctrl_w)
731 {
732 ca.nchar = c;
733 ca.cmdchar = Ctrl_W;
734 }
735 else
736 ca.cmdchar = c;
737 idx = find_command(ca.cmdchar);
738 if (idx < 0)
739 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100740 // Not a known command: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 clearopbeep(oap);
742 goto normal_end;
743 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +0000744
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000745 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100747 // This command is not allowed while editing a cmdline: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 clearopbeep(oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000749 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 goto normal_end;
751 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000752 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
753 goto normal_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 /*
756 * In Visual/Select mode, a few keys are handled in a special way.
757 */
758 if (VIsual_active)
759 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100760 // when 'keymodel' contains "stopsel" may stop Select/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 if (km_stopsel
762 && (nv_cmds[idx].cmd_flags & NV_STS)
763 && !(mod_mask & MOD_MASK_SHIFT))
764 {
765 end_visual_mode();
766 redraw_curbuf_later(INVERTED);
767 }
768
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100769 // Keys that work different when 'keymodel' contains "startsel"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 if (km_startsel)
771 {
772 if (nv_cmds[idx].cmd_flags & NV_SS)
773 {
774 unshift_special(&ca);
775 idx = find_command(ca.cmdchar);
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000776 if (idx < 0)
777 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100778 // Just in case
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000779 clearopbeep(oap);
780 goto normal_end;
781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 }
783 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
784 && (mod_mask & MOD_MASK_SHIFT))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 mod_mask &= ~MOD_MASK_SHIFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 }
787 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788
789#ifdef FEAT_RIGHTLEFT
790 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
791 && (nv_cmds[idx].cmd_flags & NV_RL))
792 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100793 // Invert horizontal movements and operations. Only when typed by the
794 // user directly, not when the result of a mapping or "x" translated
795 // to "dl".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 switch (ca.cmdchar)
797 {
798 case 'l': ca.cmdchar = 'h'; break;
799 case K_RIGHT: ca.cmdchar = K_LEFT; break;
800 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
801 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
802 case 'h': ca.cmdchar = 'l'; break;
803 case K_LEFT: ca.cmdchar = K_RIGHT; break;
804 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
805 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
806 case '>': ca.cmdchar = '<'; break;
807 case '<': ca.cmdchar = '>'; break;
808 }
809 idx = find_command(ca.cmdchar);
810 }
811#endif
812
813 /*
814 * Get an additional character if we need one.
815 */
816 if ((nv_cmds[idx].cmd_flags & NV_NCH)
817 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
818 && oap->op_type == OP_NOP)
819 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
820 || (ca.cmdchar == 'q'
821 && oap->op_type == OP_NOP
Bram Moolenaar0b6d9112018-05-22 20:35:17 +0200822 && reg_recording == 0
823 && reg_executing == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100825 && (oap->op_type != OP_NOP || VIsual_active))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 {
827 int *cp;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100828 int repl = FALSE; // get character for replace mode
829 int lit = FALSE; // get extra character literally
830 int langmap_active = FALSE; // using :lmap mappings
831 int lang; // getting a text character
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100832#ifdef HAVE_INPUT_METHOD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100833 int save_smd; // saved value of p_smd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834#endif
835
836 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100837 ++allow_keys; // no mapping for nchar, but allow key codes
838 // Don't generate a CursorHold event here, most commands can't handle
839 // it, e.g., nv_replace(), nv_csearch().
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +0000840 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 if (ca.cmdchar == 'g')
842 {
843 /*
844 * For 'g' get the next character now, so that we can check for
845 * "gr", "g'" and "g`".
846 */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000847 ca.nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 LANGMAP_ADJUST(ca.nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849#ifdef FEAT_CMDL_INFO
850 need_flushbuf |= add_to_showcmd(ca.nchar);
851#endif
852 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
Bram Moolenaarba2d44f2013-11-28 19:27:30 +0100853 || ca.nchar == Ctrl_BSL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100855 cp = &ca.extra_char; // need to get a third character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 if (ca.nchar != 'r')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100857 lit = TRUE; // get it literally
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100859 repl = TRUE; // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 }
861 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100862 cp = NULL; // no third character needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 }
864 else
865 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100866 if (ca.cmdchar == 'r') // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 repl = TRUE;
868 cp = &ca.nchar;
869 }
870 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
871
872 /*
873 * Get a second or third character.
874 */
875 if (cp != NULL)
876 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 if (repl)
878 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100879 State = REPLACE; // pretend Replace mode
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100880#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100881 ui_cursor_shape(); // show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882#endif
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
885 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100886 // Allow mappings defined with ":lmap".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 --no_mapping;
888 --allow_keys;
889 if (repl)
890 State = LREPLACE;
891 else
892 State = LANGMAP;
893 langmap_active = TRUE;
894 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100895#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 save_smd = p_smd;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100897 p_smd = FALSE; // Don't let the IM code show the mode here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
899 im_set_active(TRUE);
900#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200901 if ((State & INSERT) && !p_ek)
902 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200903#ifdef FEAT_JOB_CHANNEL
904 ch_log_output = TRUE;
905#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200906 // Disable bracketed paste and modifyOtherKeys here, we won't
907 // recognize the escape sequences with 'esckeys' off.
908 out_str(T_BD);
909 out_str(T_CTE);
910 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000912 *cp = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913
Bram Moolenaarca774f62020-08-30 20:46:38 +0200914 if ((State & INSERT) && !p_ek)
915 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200916#ifdef FEAT_JOB_CHANNEL
917 ch_log_output = TRUE;
918#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200919 // Re-enable bracketed paste mode and modifyOtherKeys
920 out_str(T_BE);
921 out_str(T_CTI);
922 }
923
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 if (langmap_active)
925 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100926 // Undo the decrement done above
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 ++no_mapping;
928 ++allow_keys;
929 State = NORMAL_BUSY;
930 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100931#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 if (lang)
933 {
934 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
935 im_save_status(&curbuf->b_p_iminsert);
936 im_set_active(FALSE);
937 }
938 p_smd = save_smd;
939#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 State = NORMAL_BUSY;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941#ifdef FEAT_CMDL_INFO
942 need_flushbuf |= add_to_showcmd(*cp);
943#endif
944
945 if (!lit)
946 {
947#ifdef FEAT_DIGRAPHS
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100948 // Typing CTRL-K gets a digraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 if (*cp == Ctrl_K
950 && ((nv_cmds[idx].cmd_flags & NV_LANG)
951 || cp == &ca.extra_char)
952 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
953 {
954 c = get_digraph(FALSE);
955 if (c > 0)
956 {
957 *cp = c;
958# ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100959 // Guessing how to update showcmd here...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 del_from_showcmd(3);
961 need_flushbuf |= add_to_showcmd(*cp);
962# endif
963 }
964 }
965#endif
966
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100967 // adjust chars > 127, except after "tTfFr" commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 LANGMAP_ADJUST(*cp, !lang);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100970 // adjust Hebrew mapped char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 if (p_hkmap && lang && KeyTyped)
972 *cp = hkmap(*cp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973#endif
974 }
975
976 /*
977 * When the next character is CTRL-\ a following CTRL-N means the
978 * command is aborted and we go to Normal mode.
979 */
980 if (cp == &ca.extra_char
981 && ca.nchar == Ctrl_BSL
982 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
983 {
984 ca.cmdchar = Ctrl_BSL;
985 ca.nchar = ca.extra_char;
986 idx = find_command(ca.cmdchar);
987 }
Bram Moolenaar12a753a2012-10-23 05:08:53 +0200988 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g')
Bram Moolenaarf00dc262012-10-21 03:54:33 +0200989 ca.oap->op_type = get_op_type(*cp, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 else if (*cp == Ctrl_BSL)
991 {
992 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
993
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100994 // There is a busy wait here when typing "f<C-\>" and then
995 // something different from CTRL-N. Can't be avoided.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 while ((c = vpeekc()) <= 0 && towait > 0L)
997 {
Bram Moolenaare2edc2e2021-01-16 20:21:23 +0100998 do_sleep(towait > 50L ? 50L : towait, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 towait -= 50L;
1000 }
1001 if (c > 0)
1002 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001003 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 if (c != Ctrl_N && c != Ctrl_G)
1005 vungetc(c);
1006 else
1007 {
1008 ca.cmdchar = Ctrl_BSL;
1009 ca.nchar = c;
1010 idx = find_command(ca.cmdchar);
1011 }
1012 }
1013 }
1014
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001015 // When getting a text character and the next character is a
1016 // multi-byte character, it could be a composing character.
1017 // However, don't wait for it to arrive. Also, do enable mapping,
1018 // because if it's put back with vungetc() it's too late to apply
1019 // mapping.
Bram Moolenaar4f880622014-07-23 12:31:20 +02001020 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 while (enc_utf8 && lang && (c = vpeekc()) > 0
1022 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1023 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001024 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 if (!utf_iscomposing(c))
1026 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001027 vungetc(c); // it wasn't, put it back
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 break;
1029 }
1030 else if (ca.ncharC1 == 0)
1031 ca.ncharC1 = c;
1032 else
1033 ca.ncharC2 = c;
1034 }
Bram Moolenaar4f880622014-07-23 12:31:20 +02001035 ++no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 }
1037 --no_mapping;
1038 --allow_keys;
1039 }
1040
1041#ifdef FEAT_CMDL_INFO
1042 /*
1043 * Flush the showcmd characters onto the screen so we can see them while
1044 * the command is being executed. Only do this when the shown command was
1045 * actually displayed, otherwise this will slow down a lot when executing
1046 * mappings.
1047 */
1048 if (need_flushbuf)
1049 out_flush();
1050#endif
Bram Moolenaard9205ca2008-10-02 20:55:54 +00001051 if (ca.cmdchar != K_IGNORE)
Bram Moolenaar08815a12020-07-20 23:10:56 +02001052 {
1053 if (ex_normal_busy)
1054 did_cursorhold = save_did_cursorhold;
1055 else
1056 did_cursorhold = FALSE;
1057 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058
1059 State = NORMAL;
1060
1061 if (ca.nchar == ESC)
1062 {
1063 clearop(oap);
1064 if (restart_edit == 0 && goto_im())
1065 restart_edit = 'a';
1066 goto normal_end;
1067 }
1068
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001069 if (ca.cmdchar != K_IGNORE)
1070 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001071 msg_didout = FALSE; // don't scroll screen up for normal command
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001072 msg_col = 0;
1073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001075 old_pos = curwin->w_cursor; // remember where cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001077 // When 'keymodel' contains "startsel" some keys start Select/Visual
1078 // mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 if (!VIsual_active && km_startsel)
1080 {
1081 if (nv_cmds[idx].cmd_flags & NV_SS)
1082 {
1083 start_selection();
1084 unshift_special(&ca);
1085 idx = find_command(ca.cmdchar);
1086 }
1087 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1088 && (mod_mask & MOD_MASK_SHIFT))
1089 {
1090 start_selection();
1091 mod_mask &= ~MOD_MASK_SHIFT;
1092 }
1093 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094
1095 /*
1096 * Execute the command!
1097 * Call the command function found in the commands table.
1098 */
1099 ca.arg = nv_cmds[idx].cmd_arg;
1100 (nv_cmds[idx].cmd_func)(&ca);
1101
1102 /*
1103 * If we didn't start or finish an operator, reset oap->regname, unless we
1104 * need it later.
1105 */
1106 if (!finish_op
1107 && !oap->op_type
1108 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1109 {
1110 clearop(oap);
1111#ifdef FEAT_EVAL
Bram Moolenaar439c0362020-06-06 15:58:03 +02001112 reset_reg_var();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113#endif
1114 }
1115
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001116 // Get the length of mapped chars again after typing a count, second
1117 // character or "z333<cr>".
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001118 if (old_mapped_len > 0)
1119 old_mapped_len = typebuf_maplen();
1120
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 /*
Bram Moolenaar1ad72c82021-05-04 21:56:28 +02001122 * If an operation is pending, handle it. But not for K_IGNORE or
1123 * K_MOUSEMOVE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 */
Bram Moolenaar1ad72c82021-05-04 21:56:28 +02001125 if (ca.cmdchar != K_IGNORE && ca.cmdchar != K_MOUSEMOVE)
Bram Moolenaarfa5612c2019-12-01 19:37:07 +01001126 do_pending_operator(&ca, old_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127
1128 /*
1129 * Wait for a moment when a message is displayed that will be overwritten
1130 * by the mode message.
1131 * In Visual mode and with "^O" in Insert mode, a short message will be
1132 * overwritten by the mode message. Wait a bit, until a key is hit.
1133 * In Visual mode, it's more important to keep the Visual area updated
1134 * than keeping a message (e.g. from a /pat search).
1135 * Only do this if the command was typed, not from a mapping.
1136 * Don't wait when emsg_silent is non-zero.
1137 * Also wait a bit after an error message, e.g. for "^O:".
1138 * Don't redraw the screen, it would remove the message.
1139 */
1140 if ( ((p_smd
Bram Moolenaar09df3122006-01-23 22:23:09 +00001141 && msg_silent == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 && (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 || (VIsual_active
1144 && old_pos.lnum == curwin->w_cursor.lnum
1145 && old_pos.col == curwin->w_cursor.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 )
1147 && (clear_cmdline
1148 || redraw_cmdline)
1149 && (msg_didout || (msg_didany && msg_scroll))
1150 && !msg_nowait
1151 && KeyTyped)
1152 || (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 && (msg_scroll
1155 || emsg_on_display)))
1156 && oap->regname == 0
1157 && !(ca.retval & CA_COMMAND_BUSY)
1158 && stuff_empty()
1159 && typebuf_typed()
1160 && emsg_silent == 0
Bram Moolenaar28ee8922020-10-28 20:20:00 +01001161 && !in_assert_fails
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 && !did_wait_return
1163 && oap->op_type == OP_NOP)
1164 {
1165 int save_State = State;
1166
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001167 // Draw the cursor with the right shape here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 if (restart_edit != 0)
1169 State = INSERT;
1170
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001171 // If need to redraw, and there is a "keep_msg", redraw before the
1172 // delay
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1174 {
1175 char_u *kmsg;
1176
1177 kmsg = keep_msg;
1178 keep_msg = NULL;
Bram Moolenaar5715b312020-03-16 22:08:45 +01001179 // Showmode() will clear keep_msg, but we want to use it anyway.
1180 // First update w_topline.
1181 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 update_screen(0);
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001183 // now reset it, otherwise it's put in the history again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 keep_msg = kmsg;
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001185
1186 kmsg = vim_strsave(keep_msg);
1187 if (kmsg != NULL)
1188 {
1189 msg_attr((char *)kmsg, keep_msg_attr);
1190 vim_free(kmsg);
1191 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 }
1193 setcursor();
Bram Moolenaar5715b312020-03-16 22:08:45 +01001194#ifdef CURSOR_SHAPE
1195 ui_cursor_shape(); // may show different cursor shape
1196#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 cursor_on();
1198 out_flush();
1199 if (msg_scroll || emsg_on_display)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001200 ui_delay(1003L, TRUE); // wait at least one second
1201 ui_delay(3003L, FALSE); // wait up to three seconds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 State = save_State;
1203
1204 msg_scroll = FALSE;
1205 emsg_on_display = FALSE;
1206 }
1207
1208 /*
1209 * Finish up after executing a Normal mode command.
1210 */
1211normal_end:
1212
1213 msg_nowait = FALSE;
1214
Bram Moolenaarcc613032020-06-07 21:31:18 +02001215#ifdef FEAT_EVAL
1216 if (finish_op)
1217 reset_reg_var();
1218#endif
1219
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001220 // Reset finish_op, in case it was set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221#ifdef CURSOR_SHAPE
1222 c = finish_op;
1223#endif
1224 finish_op = FALSE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001225 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001227 // Redraw the cursor with another shape, if we were in Operator-pending
1228 // mode or did a replace command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 if (c || ca.cmdchar == 'r')
1230 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001231 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232# ifdef FEAT_MOUSESHAPE
1233 update_mouseshape(-1);
1234# endif
1235 }
1236#endif
1237
1238#ifdef FEAT_CMDL_INFO
Bram Moolenaara983fe92008-07-31 20:04:27 +00001239 if (oap->op_type == OP_NOP && oap->regname == 0
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001240 && ca.cmdchar != K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 clear_showcmd();
1242#endif
1243
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001244 checkpcmark(); // check if we moved since setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 vim_free(ca.searchbuf);
1246
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 if (has_mbyte)
1248 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 if (curwin->w_p_scb && toplevel)
1251 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001252 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 do_check_scrollbind(TRUE);
1254 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255
Bram Moolenaar860cae12010-06-05 23:22:07 +02001256 if (curwin->w_p_crb && toplevel)
1257 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001258 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar860cae12010-06-05 23:22:07 +02001259 do_check_cursorbind();
1260 }
Bram Moolenaar860cae12010-06-05 23:22:07 +02001261
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001262#ifdef FEAT_TERMINAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001263 // don't go to Insert mode if a terminal has a running job
Bram Moolenaareef9add2017-09-16 15:38:04 +02001264 if (term_job_running(curbuf->b_term))
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001265 restart_edit = 0;
1266#endif
1267
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 /*
1269 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1270 * if still inside a mapping that started in Visual mode).
1271 * May switch from Visual to Select mode after CTRL-O command.
1272 */
1273 if ( oap->op_type == OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1275 || restart_VIsual_select == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 && !(ca.retval & CA_COMMAND_BUSY)
1277 && stuff_empty()
1278 && oap->regname == 0)
1279 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 if (restart_VIsual_select == 1)
1281 {
1282 VIsual_select = TRUE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001283 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 showmode();
1285 restart_VIsual_select = 0;
1286 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001287 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 (void)edit(restart_edit, FALSE, 1L);
1289 }
1290
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 if (restart_VIsual_select == 2)
1292 restart_VIsual_select = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001294 // Save count before an operator for next time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 opcount = ca.opcount;
1296}
1297
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001298#ifdef FEAT_EVAL
1299/*
1300 * Set v:count and v:count1 according to "cap".
1301 * Set v:prevcount only when "set_prevcount" is TRUE.
1302 */
1303 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001304set_vcount_ca(cmdarg_T *cap, int *set_prevcount)
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001305{
1306 long count = cap->count0;
1307
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001308 // multiply with cap->opcount the same way as above
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001309 if (cap->opcount != 0)
1310 count = cap->opcount * (count == 0 ? 1 : count);
1311 set_vcount(count, count == 0 ? 1 : count, *set_prevcount);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001312 *set_prevcount = FALSE; // only set v:prevcount once
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001313}
1314#endif
1315
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316/*
Bram Moolenaar5715b312020-03-16 22:08:45 +01001317 * Check if highlighting for Visual mode is possible, give a warning message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 * if not.
1319 */
1320 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001321check_visual_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322{
1323 static int did_check = FALSE;
1324
1325 if (full_screen)
1326 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001327 if (!did_check && HL_ATTR(HLF_V) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001328 msg(_("Warning: terminal cannot highlight"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 did_check = TRUE;
1330 }
1331}
1332
Bram Moolenaarfccbf062020-11-26 20:34:00 +01001333#if defined(FEAT_CLIPBOARD) && defined(FEAT_EVAL)
1334/*
1335 * Call yank_do_autocmd() for "regname".
1336 */
1337 static void
1338call_yank_do_autocmd(int regname)
1339{
1340 oparg_T oa;
1341 yankreg_T *reg;
1342
1343 clear_oparg(&oa);
1344 oa.regname = regname;
1345 oa.op_type = OP_YANK;
1346 oa.is_VIsual = TRUE;
1347 reg = get_register(regname, TRUE);
1348 yank_do_autocmd(&oa, reg);
1349 free_register(reg);
1350}
1351#endif
1352
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353/*
Bram Moolenaar66fa2712006-01-22 23:22:22 +00001354 * End Visual mode.
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001355 * This function or the next should ALWAYS be called to end Visual mode, except
1356 * from do_pending_operator().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 */
1358 void
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001359end_visual_mode()
1360{
1361 end_visual_mode_keep_button();
1362 reset_held_button();
1363}
1364
1365 void
1366end_visual_mode_keep_button()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367{
1368#ifdef FEAT_CLIPBOARD
1369 /*
1370 * If we are using the clipboard, then remember what was selected in case
1371 * we need to paste it somewhere while we still own the selection.
1372 * Only do this when the clipboard is already owned. Don't want to grab
1373 * the selection when hitting ESC.
1374 */
1375 if (clip_star.available && clip_star.owned)
1376 clip_auto_select();
Bram Moolenaarfccbf062020-11-26 20:34:00 +01001377
1378# if defined(FEAT_EVAL)
1379 // Emit a TextYankPost for the automatic copy of the selection into the
1380 // star and/or plus register.
1381 if (has_textyankpost())
1382 {
1383 if (clip_isautosel_star())
1384 call_yank_do_autocmd('*');
1385 if (clip_isautosel_plus())
1386 call_yank_do_autocmd('+');
1387 }
1388# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389#endif
1390
1391 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 setmouse();
1393 mouse_dragging = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001395 // Save the current VIsual area for '< and '> marks, and "gv"
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001396 curbuf->b_visual.vi_mode = VIsual_mode;
1397 curbuf->b_visual.vi_start = VIsual;
1398 curbuf->b_visual.vi_end = curwin->w_cursor;
1399 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400#ifdef FEAT_EVAL
1401 curbuf->b_visual_mode_eval = VIsual_mode;
1402#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 if (!virtual_active())
1404 curwin->w_cursor.coladd = 0;
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001405 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001407 adjust_cursor_eol();
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001408 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409}
1410
1411/*
1412 * Reset VIsual_active and VIsual_reselect.
1413 */
1414 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001415reset_VIsual_and_resel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416{
1417 if (VIsual_active)
1418 {
1419 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001420 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 }
1422 VIsual_reselect = FALSE;
1423}
1424
1425/*
1426 * Reset VIsual_active and VIsual_reselect if it's set.
1427 */
1428 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001429reset_VIsual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430{
1431 if (VIsual_active)
1432 {
1433 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001434 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 VIsual_reselect = FALSE;
1436 }
1437}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001439 void
1440restore_visual_mode(void)
1441{
1442 if (VIsual_mode_orig != NUL)
1443 {
1444 curbuf->b_visual.vi_mode = VIsual_mode_orig;
1445 VIsual_mode_orig = NUL;
1446 }
1447}
1448
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449/*
1450 * Check for a balloon-eval special item to include when searching for an
1451 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
1452 * Returns TRUE if the character at "*ptr" should be included.
1453 * "dir" is FORWARD or BACKWARD, the direction of searching.
1454 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
1455 * "bnp" points to a counter for square brackets.
1456 */
1457 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001458find_is_eval_item(
1459 char_u *ptr,
1460 int *colp,
1461 int *bnp,
1462 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001464 // Accept everything inside [].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
1466 ++*bnp;
1467 if (*bnp > 0)
1468 {
1469 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
1470 --*bnp;
1471 return TRUE;
1472 }
1473
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001474 // skip over "s.var"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 if (*ptr == '.')
1476 return TRUE;
1477
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001478 // two-character item: s->var
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
1480 && ptr[dir == BACKWARD ? -1 : 0] == '-')
1481 {
1482 *colp += dir;
1483 return TRUE;
1484 }
1485 return FALSE;
1486}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487
1488/*
1489 * Find the identifier under or to the right of the cursor.
1490 * "find_type" can have one of three values:
1491 * FIND_IDENT: find an identifier (keyword)
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001492 * FIND_STRING: find any non-white text
1493 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001494 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 *
1496 * There are three steps:
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001497 * 1. Search forward for the start of an identifier/text. Doesn't move if
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 * already on one.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001499 * 2. Search backward for the start of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 * This doesn't match the real Vi but I like it a little better and it
1501 * shouldn't bother anyone.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001502 * 3. Search forward to the end of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 * When FIND_IDENT isn't defined, we backup until a blank.
1504 *
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001505 * Returns the length of the text, or zero if no text is found.
1506 * If text is found, a pointer to the text is put in "*text". This
1507 * points into the current buffer line and is not always NUL terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 */
1509 int
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001510find_ident_under_cursor(char_u **text, int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511{
1512 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001513 curwin->w_cursor.col, text, NULL, find_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514}
1515
1516/*
1517 * Like find_ident_under_cursor(), but for any window and any position.
1518 * However: Uses 'iskeyword' from the current window!.
1519 */
1520 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001521find_ident_at_pos(
1522 win_T *wp,
1523 linenr_T lnum,
1524 colnr_T startcol,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001525 char_u **text,
1526 int *textcol, // column where "text" starts, can be NULL
Bram Moolenaar9b578142016-01-30 19:39:49 +01001527 int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528{
1529 char_u *ptr;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001530 int col = 0; // init to shut up GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 int this_class = 0;
1533 int prev_class;
1534 int prevcol;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001535 int bn = 0; // bracket nesting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536
1537 /*
1538 * if i == 0: try to find an identifier
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001539 * if i == 1: try to find any non-white text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 */
1541 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
1542 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
1543 {
1544 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001545 * 1. skip to start of identifier/text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 */
1547 col = startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 if (has_mbyte)
1549 {
1550 while (ptr[col] != NUL)
1551 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001552 // Stop at a ']' to evaluate "a[x]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1554 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 this_class = mb_get_class(ptr + col);
1556 if (this_class != 0 && (i == 1 || this_class != 1))
1557 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001558 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 }
1560 }
1561 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 while (ptr[col] != NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01001563 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 )
1566 ++col;
1567
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001568 // When starting on a ']' count it, so that we include the '['.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 bn = ptr[col] == ']';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570
1571 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001572 * 2. Back up to start of identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 if (has_mbyte)
1575 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001576 // Remember class of character under cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1578 this_class = mb_get_class((char_u *)"a");
1579 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 this_class = mb_get_class(ptr + col);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001581 while (col > 0 && this_class != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 {
1583 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
1584 prev_class = mb_get_class(ptr + prevcol);
1585 if (this_class != prev_class
1586 && (i == 0
1587 || prev_class == 0
1588 || (find_type & FIND_IDENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 && (!(find_type & FIND_EVAL)
1590 || prevcol == 0
1591 || !find_is_eval_item(ptr + prevcol, &prevcol,
1592 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 )
1594 break;
1595 col = prevcol;
1596 }
1597
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001598 // If we don't want just any old text, or we've found an
1599 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 if (this_class > 2)
1601 this_class = 2;
1602 if (!(find_type & FIND_STRING) || this_class == 2)
1603 break;
1604 }
1605 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 {
1607 while (col > 0
1608 && ((i == 0
1609 ? vim_iswordc(ptr[col - 1])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001610 : (!VIM_ISWHITE(ptr[col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 && (!(find_type & FIND_IDENT)
1612 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 || ((find_type & FIND_EVAL)
1614 && col > 1
1615 && find_is_eval_item(ptr + col - 1, &col,
1616 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 ))
1618 --col;
1619
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001620 // If we don't want just any old text, or we've found an
1621 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
1623 break;
1624 }
1625 }
1626
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001627 if (ptr[col] == NUL || (i == 0
1628 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001630 // didn't find an identifier or text
Bram Moolenaar17627312019-06-02 19:53:44 +02001631 if ((find_type & FIND_NOERROR) == 0)
1632 {
1633 if (find_type & FIND_STRING)
1634 emsg(_("E348: No string under cursor"));
1635 else
1636 emsg(_(e_noident));
1637 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 return 0;
1639 }
1640 ptr += col;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001641 *text = ptr;
1642 if (textcol != NULL)
1643 *textcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
1645 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001646 * 3. Find the end if the identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 bn = 0;
1649 startcol -= col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 if (has_mbyte)
1652 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001653 // Search for point of changing multibyte character class.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 this_class = mb_get_class(ptr);
1655 while (ptr[col] != NUL
1656 && ((i == 0 ? mb_get_class(ptr + col) == this_class
1657 : mb_get_class(ptr + col) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 || ((find_type & FIND_EVAL)
1659 && col <= (int)startcol
1660 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 ))
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001662 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 }
1664 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 while ((i == 0 ? vim_iswordc(ptr[col])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001666 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 || ((find_type & FIND_EVAL)
1668 && col <= (int)startcol
1669 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 ++col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672
1673 return col;
1674}
1675
1676/*
1677 * Prepare for redo of a normal command.
1678 */
1679 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001680prep_redo_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681{
1682 prep_redo(cap->oap->regname, cap->count0,
1683 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
1684}
1685
1686/*
1687 * Prepare for redo of any command.
1688 * Note that only the last argument can be a multi-byte char.
1689 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001690 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001691prep_redo(
1692 int regname,
1693 long num,
1694 int cmd1,
1695 int cmd2,
1696 int cmd3,
1697 int cmd4,
1698 int cmd5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699{
1700 ResetRedobuff();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001701 if (regname != 0) // yank from specified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 {
1703 AppendCharToRedobuff('"');
1704 AppendCharToRedobuff(regname);
1705 }
1706 if (num)
1707 AppendNumberToRedobuff(num);
1708
1709 if (cmd1 != NUL)
1710 AppendCharToRedobuff(cmd1);
1711 if (cmd2 != NUL)
1712 AppendCharToRedobuff(cmd2);
1713 if (cmd3 != NUL)
1714 AppendCharToRedobuff(cmd3);
1715 if (cmd4 != NUL)
1716 AppendCharToRedobuff(cmd4);
1717 if (cmd5 != NUL)
1718 AppendCharToRedobuff(cmd5);
1719}
1720
1721/*
1722 * check for operator active and clear it
1723 *
1724 * return TRUE if operator was active
1725 */
1726 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001727checkclearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728{
1729 if (oap->op_type == OP_NOP)
1730 return FALSE;
1731 clearopbeep(oap);
1732 return TRUE;
1733}
1734
1735/*
Bram Moolenaarc980de32007-05-06 11:59:04 +00001736 * Check for operator or Visual active. Clear active operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 *
Bram Moolenaarc980de32007-05-06 11:59:04 +00001738 * Return TRUE if operator or Visual was active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 */
1740 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001741checkclearopq(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001743 if (oap->op_type == OP_NOP && !VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 return FALSE;
1745 clearopbeep(oap);
1746 return TRUE;
1747}
1748
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001749 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001750clearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751{
1752 oap->op_type = OP_NOP;
1753 oap->regname = 0;
1754 oap->motion_force = NUL;
1755 oap->use_reg_one = FALSE;
Bram Moolenaar21492742021-06-04 21:57:57 +02001756 motion_force = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757}
1758
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001759 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001760clearopbeep(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761{
1762 clearop(oap);
1763 beep_flush();
1764}
1765
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766/*
1767 * Remove the shift modifier from a special key.
1768 */
1769 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001770unshift_special(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771{
1772 switch (cap->cmdchar)
1773 {
1774 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
1775 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
1776 case K_S_UP: cap->cmdchar = K_UP; break;
1777 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
1778 case K_S_HOME: cap->cmdchar = K_HOME; break;
1779 case K_S_END: cap->cmdchar = K_END; break;
1780 }
1781 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
1782}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001784/*
1785 * If the mode is currently displayed clear the command line or update the
1786 * command displayed.
1787 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001788 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001789may_clear_cmdline(void)
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001790{
1791 if (mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001792 clear_cmdline = TRUE; // unshow visual mode later
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001793#ifdef FEAT_CMDL_INFO
1794 else
1795 clear_showcmd();
1796#endif
1797}
1798
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799#if defined(FEAT_CMDL_INFO) || defined(PROTO)
1800/*
1801 * Routines for displaying a partly typed command
1802 */
1803
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001804#define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805static char_u showcmd_buf[SHOWCMD_BUFLEN];
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001806static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807static int showcmd_is_clear = TRUE;
1808static int showcmd_visual = FALSE;
1809
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001810static void display_showcmd(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811
1812 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001813clear_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814{
1815 if (!p_sc)
1816 return;
1817
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 if (VIsual_active && !char_avail())
1819 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001820 int cursor_bot = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 long lines;
1822 colnr_T leftcol, rightcol;
1823 linenr_T top, bot;
1824
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001825 // Show the size of the Visual area.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001826 if (cursor_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 {
1828 top = VIsual.lnum;
1829 bot = curwin->w_cursor.lnum;
1830 }
1831 else
1832 {
1833 top = curwin->w_cursor.lnum;
1834 bot = VIsual.lnum;
1835 }
1836# ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001837 // Include closed folds as a whole.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001838 (void)hasFolding(top, &top, NULL);
1839 (void)hasFolding(bot, NULL, &bot);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840# endif
1841 lines = bot - top + 1;
1842
1843 if (VIsual_mode == Ctrl_V)
1844 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001845# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001846 char_u *saved_sbr = p_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001847 char_u *saved_w_sbr = curwin->w_p_sbr;
Bram Moolenaar81d00072009-04-29 15:41:40 +00001848
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001849 // Make 'sbr' empty for a moment to get the correct size.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001850 p_sbr = empty_option;
Bram Moolenaaree857022019-11-09 23:26:40 +01001851 curwin->w_p_sbr = empty_option;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001852# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001854# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001855 p_sbr = saved_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001856 curwin->w_p_sbr = saved_w_sbr;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001857# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
1859 (long)(rightcol - leftcol + 1));
1860 }
1861 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
1862 sprintf((char *)showcmd_buf, "%ld", lines);
1863 else
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001864 {
1865 char_u *s, *e;
1866 int l;
1867 int bytes = 0;
1868 int chars = 0;
1869
1870 if (cursor_bot)
1871 {
1872 s = ml_get_pos(&VIsual);
1873 e = ml_get_cursor();
1874 }
1875 else
1876 {
1877 s = ml_get_cursor();
1878 e = ml_get_pos(&VIsual);
1879 }
1880 while ((*p_sel != 'e') ? s <= e : s < e)
1881 {
1882 l = (*mb_ptr2len)(s);
1883 if (l == 0)
1884 {
1885 ++bytes;
1886 ++chars;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001887 break; // end of line
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001888 }
1889 bytes += l;
1890 ++chars;
1891 s += l;
1892 }
1893 if (bytes == chars)
1894 sprintf((char *)showcmd_buf, "%d", chars);
1895 else
1896 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes);
1897 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001898 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 showcmd_visual = TRUE;
1900 }
1901 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 {
1903 showcmd_buf[0] = NUL;
1904 showcmd_visual = FALSE;
1905
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001906 // Don't actually display something if there is nothing to clear.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 if (showcmd_is_clear)
1908 return;
1909 }
1910
1911 display_showcmd();
1912}
1913
1914/*
1915 * Add 'c' to string of shown command chars.
1916 * Return TRUE if output has been written (and setcursor() has been called).
1917 */
1918 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001919add_to_showcmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920{
1921 char_u *p;
1922 int old_len;
1923 int extra_len;
1924 int overflow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 int i;
1926 static int ignore[] =
1927 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001928#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
1930 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001931#endif
Bram Moolenaarec2da362017-01-21 20:04:22 +01001932 K_IGNORE, K_PS,
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001933 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
1935 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001936 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001938 K_CURSORHOLD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 0
1940 };
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941
Bram Moolenaar09df3122006-01-23 22:23:09 +00001942 if (!p_sc || msg_silent != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 return FALSE;
1944
1945 if (showcmd_visual)
1946 {
1947 showcmd_buf[0] = NUL;
1948 showcmd_visual = FALSE;
1949 }
1950
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001951 // Ignore keys that are scrollbar updates and mouse clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 if (IS_SPECIAL(c))
1953 for (i = 0; ignore[i] != 0; ++i)
1954 if (ignore[i] == c)
1955 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956
1957 p = transchar(c);
Bram Moolenaar7ba07412013-12-11 14:55:01 +01001958 if (*p == ' ')
1959 STRCPY(p, "<20>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 old_len = (int)STRLEN(showcmd_buf);
1961 extra_len = (int)STRLEN(p);
1962 overflow = old_len + extra_len - SHOWCMD_COLS;
1963 if (overflow > 0)
Bram Moolenaarb0db5692007-08-14 20:54:49 +00001964 mch_memmove(showcmd_buf, showcmd_buf + overflow,
1965 old_len - overflow + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 STRCAT(showcmd_buf, p);
1967
1968 if (char_avail())
1969 return FALSE;
1970
1971 display_showcmd();
1972
1973 return TRUE;
1974}
1975
1976 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001977add_to_showcmd_c(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978{
1979 if (!add_to_showcmd(c))
1980 setcursor();
1981}
1982
1983/*
1984 * Delete 'len' characters from the end of the shown command.
1985 */
1986 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001987del_from_showcmd(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988{
1989 int old_len;
1990
1991 if (!p_sc)
1992 return;
1993
1994 old_len = (int)STRLEN(showcmd_buf);
1995 if (len > old_len)
1996 len = old_len;
1997 showcmd_buf[old_len - len] = NUL;
1998
1999 if (!char_avail())
2000 display_showcmd();
2001}
2002
2003/*
2004 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
2005 * something and there is a partial mapping.
2006 */
2007 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002008push_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009{
2010 if (p_sc)
2011 STRCPY(old_showcmd_buf, showcmd_buf);
2012}
2013
2014 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002015pop_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016{
2017 if (!p_sc)
2018 return;
2019
2020 STRCPY(showcmd_buf, old_showcmd_buf);
2021
2022 display_showcmd();
2023}
2024
2025 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002026display_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027{
2028 int len;
2029
2030 cursor_off();
2031
2032 len = (int)STRLEN(showcmd_buf);
2033 if (len == 0)
2034 showcmd_is_clear = TRUE;
2035 else
2036 {
2037 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
2038 showcmd_is_clear = FALSE;
2039 }
2040
2041 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00002042 * clear the rest of an old message by outputting up to SHOWCMD_COLS
2043 * spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 */
2045 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
2046
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002047 setcursor(); // put cursor back where it belongs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048}
2049#endif
2050
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051/*
2052 * When "check" is FALSE, prepare for commands that scroll the window.
2053 * When "check" is TRUE, take care of scroll-binding after the window has
2054 * scrolled. Called from normal_cmd() and edit().
2055 */
2056 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002057do_check_scrollbind(int check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058{
2059 static win_T *old_curwin = NULL;
2060 static linenr_T old_topline = 0;
2061#ifdef FEAT_DIFF
2062 static int old_topfill = 0;
2063#endif
2064 static buf_T *old_buf = NULL;
2065 static colnr_T old_leftcol = 0;
2066
2067 if (check && curwin->w_p_scb)
2068 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002069 // If a ":syncbind" command was just used, don't scroll, only reset
2070 // the values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 if (did_syncbind)
2072 did_syncbind = FALSE;
2073 else if (curwin == old_curwin)
2074 {
2075 /*
2076 * Synchronize other windows, as necessary according to
2077 * 'scrollbind'. Don't do this after an ":edit" command, except
2078 * when 'diff' is set.
2079 */
2080 if ((curwin->w_buffer == old_buf
2081#ifdef FEAT_DIFF
2082 || curwin->w_p_diff
2083#endif
2084 )
2085 && (curwin->w_topline != old_topline
2086#ifdef FEAT_DIFF
2087 || curwin->w_topfill != old_topfill
2088#endif
2089 || curwin->w_leftcol != old_leftcol))
2090 {
2091 check_scrollbind(curwin->w_topline - old_topline,
2092 (long)(curwin->w_leftcol - old_leftcol));
2093 }
2094 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002095 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 {
2097 /*
2098 * When switching between windows, make sure that the relative
2099 * vertical offset is valid for the new window. The relative
2100 * offset is invalid whenever another 'scrollbind' window has
2101 * scrolled to a point that would force the current window to
2102 * scroll past the beginning or end of its buffer. When the
2103 * resync is performed, some of the other 'scrollbind' windows may
2104 * need to jump so that the current window's relative position is
2105 * visible on-screen.
2106 */
2107 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
2108 }
2109 curwin->w_scbind_pos = curwin->w_topline;
2110 }
2111
2112 old_curwin = curwin;
2113 old_topline = curwin->w_topline;
2114#ifdef FEAT_DIFF
2115 old_topfill = curwin->w_topfill;
2116#endif
2117 old_buf = curwin->w_buffer;
2118 old_leftcol = curwin->w_leftcol;
2119}
2120
2121/*
2122 * Synchronize any windows that have "scrollbind" set, based on the
2123 * number of rows by which the current window has changed
2124 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
2125 */
2126 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002127check_scrollbind(linenr_T topline_diff, long leftcol_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128{
2129 int want_ver;
2130 int want_hor;
2131 win_T *old_curwin = curwin;
2132 buf_T *old_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 int old_VIsual_select = VIsual_select;
2134 int old_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 colnr_T tgt_leftcol = curwin->w_leftcol;
2136 long topline;
2137 long y;
2138
2139 /*
2140 * check 'scrollopt' string for vertical and horizontal scroll options
2141 */
2142 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
2143#ifdef FEAT_DIFF
2144 want_ver |= old_curwin->w_p_diff;
2145#endif
2146 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
2147
2148 /*
2149 * loop through the scrollbound windows and scroll accordingly
2150 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002152 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 {
2154 curbuf = curwin->w_buffer;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002155 // skip original window and windows with 'noscrollbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 if (curwin != old_curwin && curwin->w_p_scb)
2157 {
2158 /*
2159 * do the vertical scroll
2160 */
2161 if (want_ver)
2162 {
2163#ifdef FEAT_DIFF
2164 if (old_curwin->w_p_diff && curwin->w_p_diff)
2165 {
2166 diff_set_topline(old_curwin, curwin);
2167 }
2168 else
2169#endif
2170 {
2171 curwin->w_scbind_pos += topline_diff;
2172 topline = curwin->w_scbind_pos;
2173 if (topline > curbuf->b_ml.ml_line_count)
2174 topline = curbuf->b_ml.ml_line_count;
2175 if (topline < 1)
2176 topline = 1;
2177
2178 y = topline - curwin->w_topline;
2179 if (y > 0)
2180 scrollup(y, FALSE);
2181 else
2182 scrolldown(-y, FALSE);
2183 }
2184
2185 redraw_later(VALID);
2186 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 }
2189
2190 /*
2191 * do the horizontal scroll
2192 */
2193 if (want_hor && curwin->w_leftcol != tgt_leftcol)
2194 {
2195 curwin->w_leftcol = tgt_leftcol;
2196 leftcol_changed();
2197 }
2198 }
2199 }
2200
2201 /*
2202 * reset current-window
2203 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 VIsual_select = old_VIsual_select;
2205 VIsual_active = old_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 curwin = old_curwin;
2207 curbuf = old_curbuf;
2208}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209
2210/*
2211 * Command character that's ignored.
2212 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02002213 * xon/xoff.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002216nv_ignore(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002218 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219}
2220
2221/*
Bram Moolenaarebefac62005-12-28 22:39:57 +00002222 * Command character that doesn't do anything, but unlike nv_ignore() does
2223 * start edit(). Used for "startinsert" executed while starting up.
2224 */
Bram Moolenaarebefac62005-12-28 22:39:57 +00002225 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002226nv_nop(cmdarg_T *cap UNUSED)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002227{
2228}
2229
2230/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 * Command character doesn't exist.
2232 */
2233 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002234nv_error(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235{
2236 clearopbeep(cap->oap);
2237}
2238
2239/*
2240 * <Help> and <F1> commands.
2241 */
2242 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002243nv_help(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244{
2245 if (!checkclearopq(cap->oap))
2246 ex_help(NULL);
2247}
2248
2249/*
2250 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
2251 */
2252 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002253nv_addsub(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254{
Bram Moolenaarf2732452018-06-03 14:47:35 +02002255#ifdef FEAT_JOB_CHANNEL
2256 if (bt_prompt(curbuf) && !prompt_curpos_editable())
2257 clearopbeep(cap->oap);
2258 else
2259#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01002260 if (!VIsual_active && cap->oap->op_type == OP_NOP)
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002261 {
Bram Moolenaaref2b5032016-01-12 22:20:58 +01002262 prep_redo_cmd(cap);
Bram Moolenaard79e5502016-01-10 22:13:02 +01002263 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB;
2264 op_addsub(cap->oap, cap->count1, cap->arg);
2265 cap->oap->op_type = OP_NOP;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002266 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01002267 else if (VIsual_active)
2268 nv_operator(cap);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02002269 else
Bram Moolenaard79e5502016-01-10 22:13:02 +01002270 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271}
2272
2273/*
2274 * CTRL-F, CTRL-B, etc: Scroll page up or down.
2275 */
2276 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002277nv_page(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278{
2279 if (!checkclearop(cap->oap))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002280 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002281 if (mod_mask & MOD_MASK_CTRL)
2282 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002283 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002284 if (cap->arg == BACKWARD)
2285 goto_tabpage(-(int)cap->count1);
2286 else
2287 goto_tabpage((int)cap->count0);
2288 }
2289 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02002290 (void)onepage(cap->arg, cap->count1);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002291 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292}
2293
2294/*
2295 * Implementation of "gd" and "gD" command.
2296 */
2297 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002298nv_gd(
2299 oparg_T *oap,
2300 int nchar,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002301 int thisblock) // 1 for "1gd" and "1gD"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302{
2303 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 char_u *ptr;
2305
Bram Moolenaard9d30582005-05-18 22:10:28 +00002306 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
Bram Moolenaar1538fc32016-04-16 09:13:34 +02002307 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)
Bram Moolenaar0c711142021-11-12 10:30:04 +00002308 == FAIL)
2309 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 clearopbeep(oap);
Bram Moolenaar0c711142021-11-12 10:30:04 +00002311 }
2312 else
2313 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002314#ifdef FEAT_FOLDING
Bram Moolenaar0c711142021-11-12 10:30:04 +00002315 if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
2316 foldOpenCursor();
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002317#endif
Bram Moolenaar0c711142021-11-12 10:30:04 +00002318 // clear any search statistics
2319 if (messaging() && !msg_silent && !shortmess(SHM_SEARCHCOUNT))
2320 clear_cmdline = TRUE;
2321 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002322}
2323
2324/*
Bram Moolenaar226630a2016-10-08 19:21:31 +02002325 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE
2326 * otherwise.
2327 */
2328 static int
2329is_ident(char_u *line, int offset)
2330{
2331 int i;
2332 int incomment = FALSE;
2333 int instring = 0;
2334 int prev = 0;
2335
2336 for (i = 0; i < offset && line[i] != NUL; i++)
2337 {
2338 if (instring != 0)
2339 {
2340 if (prev != '\\' && line[i] == instring)
2341 instring = 0;
2342 }
2343 else if ((line[i] == '"' || line[i] == '\'') && !incomment)
2344 {
2345 instring = line[i];
2346 }
2347 else
2348 {
2349 if (incomment)
2350 {
2351 if (prev == '*' && line[i] == '/')
2352 incomment = FALSE;
2353 }
2354 else if (prev == '/' && line[i] == '*')
2355 {
2356 incomment = TRUE;
2357 }
2358 else if (prev == '/' && line[i] == '/')
2359 {
2360 return FALSE;
2361 }
2362 }
2363
2364 prev = line[i];
2365 }
2366
2367 return incomment == FALSE && instring == 0;
2368}
2369
2370/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002371 * Search for variable declaration of "ptr[len]".
2372 * When "locally" is TRUE in the current function ("gd"), otherwise in the
2373 * current file ("gD").
2374 * When "thisblock" is TRUE check the {} block scope.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002375 * Return FAIL when not found.
2376 */
2377 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002378find_decl(
2379 char_u *ptr,
2380 int len,
2381 int locally,
2382 int thisblock,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002383 int flags_arg) // flags passed to searchit()
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002384{
2385 char_u *pat;
2386 pos_T old_pos;
2387 pos_T par_pos;
2388 pos_T found_pos;
2389 int t;
2390 int save_p_ws;
2391 int save_p_scs;
2392 int retval = OK;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002393 int incll;
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002394 int searchflags = flags_arg;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002395 int valid;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002396
2397 if ((pat = alloc(len + 7)) == NULL)
2398 return FAIL;
Bram Moolenaard9d30582005-05-18 22:10:28 +00002399
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002400 // Put "\V" before the pattern to avoid that the special meaning of "."
2401 // and "~" causes trouble.
Bram Moolenaard9d30582005-05-18 22:10:28 +00002402 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
2403 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 old_pos = curwin->w_cursor;
2405 save_p_ws = p_ws;
2406 save_p_scs = p_scs;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002407 p_ws = FALSE; // don't wrap around end of file now
2408 p_scs = FALSE; // don't switch ignorecase off now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409
2410 /*
2411 * With "gD" go to line 1.
2412 * With "gd" Search back for the start of the current function, then go
2413 * back until a blank line. If this fails go to line 1.
2414 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002415 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002417 setpcmark(); // Set in findpar() otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 curwin->w_cursor.lnum = 1;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002419 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 }
2421 else
2422 {
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002423 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
2425 --curwin->w_cursor.lnum;
2426 }
2427 curwin->w_cursor.col = 0;
2428
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002429 // Search forward for the identifier, ignore comment lines.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002430 CLEAR_POS(&found_pos);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002431 for (;;)
2432 {
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002433 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02002434 pat, 1L, searchflags, RE_LAST, NULL);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002435 if (curwin->w_cursor.lnum >= old_pos.lnum)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002436 t = FAIL; // match after start is failure too
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002437
Bram Moolenaar0fd92892006-03-09 22:27:48 +00002438 if (thisblock && t != FAIL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002439 {
2440 pos_T *pos;
2441
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002442 // Check that the block the match is in doesn't end before the
2443 // position where we started the search from.
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002444 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
2445 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
2446 && pos->lnum < old_pos.lnum)
Bram Moolenaar60402d62017-04-20 18:54:50 +02002447 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002448 // There can't be a useful match before the end of this block.
2449 // Skip to the end.
Bram Moolenaar60402d62017-04-20 18:54:50 +02002450 curwin->w_cursor = *pos;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002451 continue;
Bram Moolenaar60402d62017-04-20 18:54:50 +02002452 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002453 }
2454
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002455 if (t == FAIL)
2456 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002457 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002458 if (found_pos.lnum != 0)
2459 {
2460 curwin->w_cursor = found_pos;
2461 t = OK;
2462 }
2463 break;
2464 }
Bram Moolenaar81340392012-06-06 16:12:59 +02002465 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002466 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002467 // Ignore this line, continue at start of next line.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002468 ++curwin->w_cursor.lnum;
2469 curwin->w_cursor.col = 0;
2470 continue;
2471 }
Bram Moolenaar226630a2016-10-08 19:21:31 +02002472 valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
2473
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002474 // If the current position is not a valid identifier and a previous
2475 // match is present, favor that one instead.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002476 if (!valid && found_pos.lnum != 0)
2477 {
2478 curwin->w_cursor = found_pos;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002479 break;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002480 }
2481
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002482 // Global search: use first valid match found
Bram Moolenaar226630a2016-10-08 19:21:31 +02002483 if (valid && !locally)
2484 break;
2485 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002486 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002487 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002488 if (found_pos.lnum != 0)
2489 curwin->w_cursor = found_pos;
2490 break;
2491 }
2492
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002493 // For finding a local variable and the match is before the "{" or
2494 // inside a comment, continue searching. For K&R style function
2495 // declarations this skips the function header without types.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002496 if (!valid)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002497 CLEAR_POS(&found_pos);
Bram Moolenaar226630a2016-10-08 19:21:31 +02002498 else
Bram Moolenaar226630a2016-10-08 19:21:31 +02002499 found_pos = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002500 // Remove SEARCH_START from flags to avoid getting stuck at one
2501 // position.
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002502 searchflags &= ~SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002504
2505 if (t == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002507 retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 curwin->w_cursor = old_pos;
2509 }
2510 else
2511 {
2512 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002513 // "n" searches forward now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 reset_search_dir();
2515 }
2516
2517 vim_free(pat);
2518 p_ws = save_p_ws;
2519 p_scs = save_p_scs;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002520
2521 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522}
2523
2524/*
2525 * Move 'dist' lines in direction 'dir', counting lines by *screen*
2526 * lines rather than lines in the file.
2527 * 'dist' must be positive.
2528 *
2529 * Return OK if able to move cursor, FAIL otherwise.
2530 */
2531 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002532nv_screengo(oparg_T *oap, int dir, long dist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533{
2534 int linelen = linetabsize(ml_get_curline());
2535 int retval = OK;
2536 int atend = FALSE;
2537 int n;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002538 int col_off1; // margin offset for first screen line
2539 int col_off2; // margin offset for wrapped screen line
2540 int width1; // text width for first screen line
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002541 int width2; // text width for wrapped screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542
2543 oap->motion_type = MCHAR;
Bram Moolenaar91b2bdb2013-07-14 13:32:15 +02002544 oap->inclusive = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545
2546 col_off1 = curwin_col_off();
2547 col_off2 = col_off1 - curwin_col_off2();
Bram Moolenaar02631462017-09-22 15:20:32 +02002548 width1 = curwin->w_width - col_off1;
2549 width2 = curwin->w_width - col_off2;
Bram Moolenaar7cc8ec42015-01-27 20:59:31 +01002550 if (width2 == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002551 width2 = 1; // avoid divide by zero
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 if (curwin->w_width != 0)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002554 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 /*
2556 * Instead of sticking at the last character of the buffer line we
2557 * try to stick in the last column of the screen.
2558 */
2559 if (curwin->w_curswant == MAXCOL)
2560 {
2561 atend = TRUE;
2562 validate_virtcol();
2563 if (width1 <= 0)
2564 curwin->w_curswant = 0;
2565 else
2566 {
2567 curwin->w_curswant = width1 - 1;
2568 if (curwin->w_virtcol > curwin->w_curswant)
2569 curwin->w_curswant += ((curwin->w_virtcol
2570 - curwin->w_curswant - 1) / width2 + 1) * width2;
2571 }
2572 }
2573 else
2574 {
2575 if (linelen > width1)
2576 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2577 else
2578 n = width1;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002579 if (curwin->w_curswant >= (colnr_T)n)
2580 curwin->w_curswant = n - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 }
2582
2583 while (dist--)
2584 {
2585 if (dir == BACKWARD)
2586 {
Bram Moolenaar3c49e742021-04-04 21:26:04 +02002587 if ((long)curwin->w_curswant >= width1
2588#ifdef FEAT_FOLDING
2589 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL)
2590#endif
2591 )
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002592 // Move back within the line. This can give a negative value
2593 // for w_curswant if width1 < width2 (with cpoptions+=n),
2594 // which will get clipped to column 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 curwin->w_curswant -= width2;
2596 else
2597 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002598 // to previous line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002600 // Move to the start of a closed fold. Don't do that when
2601 // 'foldopen' contains "all": it will open in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 if (!(fdo_flags & FDO_ALL))
2603 (void)hasFolding(curwin->w_cursor.lnum,
2604 &curwin->w_cursor.lnum, NULL);
2605#endif
Bram Moolenaare71996b2021-01-21 17:03:07 +01002606 if (curwin->w_cursor.lnum == 1)
2607 {
2608 retval = FAIL;
2609 break;
2610 }
2611 --curwin->w_cursor.lnum;
2612
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 linelen = linetabsize(ml_get_curline());
2614 if (linelen > width1)
2615 curwin->w_curswant += (((linelen - width1 - 1) / width2)
2616 + 1) * width2;
2617 }
2618 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002619 else // dir == FORWARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 {
2621 if (linelen > width1)
2622 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2623 else
2624 n = width1;
Bram Moolenaar3c49e742021-04-04 21:26:04 +02002625 if (curwin->w_curswant + width2 < (colnr_T)n
2626#ifdef FEAT_FOLDING
2627 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL)
2628#endif
2629 )
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002630 // move forward within line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 curwin->w_curswant += width2;
2632 else
2633 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002634 // to next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002636 // Move to the end of a closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2638 &curwin->w_cursor.lnum);
2639#endif
2640 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
2641 {
2642 retval = FAIL;
2643 break;
2644 }
2645 curwin->w_cursor.lnum++;
2646 curwin->w_curswant %= width2;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002647 // Check if the cursor has moved below the number display
2648 // when width1 < width2 (with cpoptions+=n). Subtract width2
2649 // to get a negative value for w_curswant, which will get
2650 // clipped to column 0.
2651 if (curwin->w_curswant >= width1)
2652 curwin->w_curswant -= width2;
Bram Moolenaar914968e2011-06-20 00:45:58 +02002653 linelen = linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 }
2655 }
2656 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658
Bram Moolenaar6cd3aee2014-01-14 13:18:58 +01002659 if (virtual_active() && atend)
2660 coladvance(MAXCOL);
2661 else
2662 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
2665 {
Bram Moolenaar773b1582014-08-29 14:20:51 +02002666 colnr_T virtcol;
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002667 int c;
Bram Moolenaar773b1582014-08-29 14:20:51 +02002668
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 /*
2670 * Check for landing on a character that got split at the end of the
2671 * last line. We want to advance a screenline, not end up in the same
2672 * screenline or move two screenlines.
2673 */
2674 validate_virtcol();
Bram Moolenaar773b1582014-08-29 14:20:51 +02002675 virtcol = curwin->w_virtcol;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002676#if defined(FEAT_LINEBREAK)
Bram Moolenaaree857022019-11-09 23:26:40 +01002677 if (virtcol > (colnr_T)width1 && *get_showbreak_value(curwin) != NUL)
2678 virtcol -= vim_strsize(get_showbreak_value(curwin));
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002679#endif
Bram Moolenaar773b1582014-08-29 14:20:51 +02002680
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002681 c = (*mb_ptr2char)(ml_get_cursor());
2682 if (dir == FORWARD && virtcol < curwin->w_curswant
2683 && (curwin->w_curswant <= (colnr_T)width1)
2684 && !vim_isprintc(c) && c > 255)
2685 oneright();
2686
Bram Moolenaar773b1582014-08-29 14:20:51 +02002687 if (virtcol > curwin->w_curswant
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 && (curwin->w_curswant < (colnr_T)width1
2689 ? (curwin->w_curswant > (colnr_T)width1 / 2)
2690 : ((curwin->w_curswant - width1) % width2
2691 > (colnr_T)width2 / 2)))
2692 --curwin->w_cursor.col;
2693 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694
2695 if (atend)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002696 curwin->w_curswant = MAXCOL; // stick in the last column
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697
2698 return retval;
2699}
2700
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701/*
2702 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
2703 * cap->arg must be TRUE for CTRL-E.
2704 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002705 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002706nv_scroll_line(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707{
2708 if (!checkclearop(cap->oap))
2709 scroll_redraw(cap->arg, cap->count1);
2710}
2711
2712/*
2713 * Scroll "count" lines up or down, and redraw.
2714 */
2715 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002716scroll_redraw(int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717{
2718 linenr_T prev_topline = curwin->w_topline;
2719#ifdef FEAT_DIFF
2720 int prev_topfill = curwin->w_topfill;
2721#endif
2722 linenr_T prev_lnum = curwin->w_cursor.lnum;
2723
2724 if (up)
2725 scrollup(count, TRUE);
2726 else
2727 scrolldown(count, TRUE);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002728 if (get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002730 // Adjust the cursor position for 'scrolloff'. Mark w_topline as
2731 // valid, otherwise the screen jumps back at the end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 cursor_correct();
2733 check_cursor_moved(curwin);
2734 curwin->w_valid |= VALID_TOPLINE;
2735
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002736 // If moved back to where we were, at least move the cursor, otherwise
2737 // we get stuck at one position. Don't move the cursor up if the
2738 // first line of the buffer is already on the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 while (curwin->w_topline == prev_topline
2740#ifdef FEAT_DIFF
2741 && curwin->w_topfill == prev_topfill
2742#endif
2743 )
2744 {
2745 if (up)
2746 {
2747 if (curwin->w_cursor.lnum > prev_lnum
2748 || cursor_down(1L, FALSE) == FAIL)
2749 break;
2750 }
2751 else
2752 {
2753 if (curwin->w_cursor.lnum < prev_lnum
2754 || prev_topline == 1L
2755 || cursor_up(1L, FALSE) == FAIL)
2756 break;
2757 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002758 // Mark w_topline as valid, otherwise the screen jumps back at the
2759 // end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 check_cursor_moved(curwin);
2761 curwin->w_valid |= VALID_TOPLINE;
2762 }
2763 }
2764 if (curwin->w_cursor.lnum != prev_lnum)
2765 coladvance(curwin->w_curswant);
2766 redraw_later(VALID);
2767}
2768
2769/*
2770 * Commands that start with "z".
2771 */
2772 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002773nv_zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774{
2775 long n;
2776 colnr_T col;
2777 int nchar = cap->nchar;
2778#ifdef FEAT_FOLDING
2779 long old_fdl = curwin->w_p_fdl;
2780 int old_fen = curwin->w_p_fen;
2781#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002782#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00002783 int undo = FALSE;
2784#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +01002785 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786
2787 if (VIM_ISDIGIT(nchar))
2788 {
2789 /*
2790 * "z123{nchar}": edit the count before obtaining {nchar}
2791 */
2792 if (checkclearop(cap->oap))
2793 return;
2794 n = nchar - '0';
2795 for (;;)
2796 {
2797#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002798 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799#endif
2800 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002801 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00002802 nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 --no_mapping;
2805 --allow_keys;
2806#ifdef FEAT_CMDL_INFO
2807 (void)add_to_showcmd(nchar);
2808#endif
2809 if (nchar == K_DEL || nchar == K_KDEL)
2810 n /= 10;
2811 else if (VIM_ISDIGIT(nchar))
2812 n = n * 10 + (nchar - '0');
2813 else if (nchar == CAR)
2814 {
2815#ifdef FEAT_GUI
2816 need_mouse_correct = TRUE;
2817#endif
2818 win_setheight((int)n);
2819 break;
2820 }
2821 else if (nchar == 'l'
2822 || nchar == 'h'
2823 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00002824 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 {
2826 cap->count1 = n ? n * cap->count1 : cap->count1;
2827 goto dozet;
2828 }
2829 else
2830 {
2831 clearopbeep(cap->oap);
2832 break;
2833 }
2834 }
2835 cap->oap->op_type = OP_NOP;
2836 return;
2837 }
2838
2839dozet:
2840 if (
2841#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002842 // "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
2843 // and "zC" only in Visual mode. "zj" and "zk" are motion
2844 // commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 cap->nchar != 'f' && cap->nchar != 'F'
2846 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
2847 && cap->nchar != 'j' && cap->nchar != 'k'
2848 &&
2849#endif
2850 checkclearop(cap->oap))
2851 return;
2852
2853 /*
2854 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
2855 * If line number given, set cursor.
2856 */
2857 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
2858 && cap->count0
2859 && cap->count0 != curwin->w_cursor.lnum)
2860 {
2861 setpcmark();
2862 if (cap->count0 > curbuf->b_ml.ml_line_count)
2863 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2864 else
2865 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002866 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 }
2868
2869 switch (nchar)
2870 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002871 // "z+", "z<CR>" and "zt": put cursor at top of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 case '+':
2873 if (cap->count0 == 0)
2874 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002875 // No count given: put cursor at the line below screen
2876 validate_botline(); // make sure w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2878 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2879 else
2880 curwin->w_cursor.lnum = curwin->w_botline;
2881 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002882 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883 case NL:
2884 case CAR:
2885 case K_KENTER:
2886 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002887 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888
2889 case 't': scroll_cursor_top(0, TRUE);
2890 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002891 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 break;
2893
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002894 // "z." and "zz": put cursor in middle of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895 case '.': beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002896 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897
2898 case 'z': scroll_cursor_halfway(TRUE);
2899 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002900 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 break;
2902
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002903 // "z^", "z-" and "zb": put cursor at bottom of screen
2904 case '^': // Strange Vi behavior: <count>z^ finds line at top of window
2905 // when <count> is at bottom of window, and puts that one at
2906 // bottom of window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 if (cap->count0 != 0)
2908 {
2909 scroll_cursor_bot(0, TRUE);
2910 curwin->w_cursor.lnum = curwin->w_topline;
2911 }
2912 else if (curwin->w_topline == 1)
2913 curwin->w_cursor.lnum = 1;
2914 else
2915 curwin->w_cursor.lnum = curwin->w_topline - 1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002916 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 case '-':
2918 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002919 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920
2921 case 'b': scroll_cursor_bot(0, TRUE);
2922 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002923 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924 break;
2925
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002926 // "zH" - scroll screen right half-page
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 case 'H':
Bram Moolenaar02631462017-09-22 15:20:32 +02002928 cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002929 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002931 // "zh" - scroll screen to the right
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 case 'h':
2933 case K_LEFT:
2934 if (!curwin->w_p_wrap)
2935 {
2936 if ((colnr_T)cap->count1 > curwin->w_leftcol)
2937 curwin->w_leftcol = 0;
2938 else
2939 curwin->w_leftcol -= (colnr_T)cap->count1;
2940 leftcol_changed();
2941 }
2942 break;
2943
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002944 // "zL" - scroll screen left half-page
Bram Moolenaar02631462017-09-22 15:20:32 +02002945 case 'L': cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002946 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002948 // "zl" - scroll screen to the left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 case 'l':
2950 case K_RIGHT:
2951 if (!curwin->w_p_wrap)
2952 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002953 // scroll the window left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 curwin->w_leftcol += (colnr_T)cap->count1;
2955 leftcol_changed();
2956 }
2957 break;
2958
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002959 // "zs" - scroll screen, cursor at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 case 's': if (!curwin->w_p_wrap)
2961 {
2962#ifdef FEAT_FOLDING
2963 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002964 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 else
2966#endif
2967 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002968 if ((long)col > siso)
2969 col -= siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 else
2971 col = 0;
2972 if (curwin->w_leftcol != col)
2973 {
2974 curwin->w_leftcol = col;
2975 redraw_later(NOT_VALID);
2976 }
2977 }
2978 break;
2979
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002980 // "ze" - scroll screen, cursor at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 case 'e': if (!curwin->w_p_wrap)
2982 {
2983#ifdef FEAT_FOLDING
2984 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002985 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 else
2987#endif
2988 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
Bram Moolenaar02631462017-09-22 15:20:32 +02002989 n = curwin->w_width - curwin_col_off();
Bram Moolenaar375e3392019-01-31 18:26:10 +01002990 if ((long)col + siso < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 col = 0;
2992 else
Bram Moolenaar375e3392019-01-31 18:26:10 +01002993 col = col + siso - n + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 if (curwin->w_leftcol != col)
2995 {
2996 curwin->w_leftcol = col;
2997 redraw_later(NOT_VALID);
2998 }
2999 }
3000 break;
3001
Christian Brabandt2fa93842021-05-30 22:17:25 +02003002 // "zp", "zP" in block mode put without addind trailing spaces
3003 case 'P':
3004 case 'p': nv_put(cap);
3005 break;
Christian Brabandt544a38e2021-06-10 19:39:11 +02003006 // "zy" Yank without trailing spaces
3007 case 'y': nv_operator(cap);
3008 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003010 // "zF": create fold command
3011 // "zf": create fold operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 case 'F':
3013 case 'f': if (foldManualAllowed(TRUE))
3014 {
3015 cap->nchar = 'f';
3016 nv_operator(cap);
3017 curwin->w_p_fen = TRUE;
3018
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003019 // "zF" is like "zfzf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
3021 {
3022 nv_operator(cap);
3023 finish_op = TRUE;
3024 }
3025 }
3026 else
3027 clearopbeep(cap->oap);
3028 break;
3029
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003030 // "zd": delete fold at cursor
3031 // "zD": delete fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032 case 'd':
3033 case 'D': if (foldManualAllowed(FALSE))
3034 {
3035 if (VIsual_active)
3036 nv_operator(cap);
3037 else
3038 deleteFold(curwin->w_cursor.lnum,
3039 curwin->w_cursor.lnum, nchar == 'D', FALSE);
3040 }
3041 break;
3042
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003043 // "zE": erase all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 case 'E': if (foldmethodIsManual(curwin))
3045 {
3046 clearFolding(curwin);
3047 changed_window_setting();
3048 }
3049 else if (foldmethodIsMarker(curwin))
3050 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
3051 TRUE, FALSE);
3052 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003053 emsg(_("E352: Cannot erase folds with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 break;
3055
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003056 // "zn": fold none: reset 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 case 'n': curwin->w_p_fen = FALSE;
3058 break;
3059
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003060 // "zN": fold Normal: set 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 case 'N': curwin->w_p_fen = TRUE;
3062 break;
3063
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003064 // "zi": invert folding: toggle 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
3066 break;
3067
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003068 // "za": open closed fold or close open fold at cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3070 openFold(curwin->w_cursor.lnum, cap->count1);
3071 else
3072 {
3073 closeFold(curwin->w_cursor.lnum, cap->count1);
3074 curwin->w_p_fen = TRUE;
3075 }
3076 break;
3077
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003078 // "zA": open fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3080 openFoldRecurse(curwin->w_cursor.lnum);
3081 else
3082 {
3083 closeFoldRecurse(curwin->w_cursor.lnum);
3084 curwin->w_p_fen = TRUE;
3085 }
3086 break;
3087
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003088 // "zo": open fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 case 'o': if (VIsual_active)
3090 nv_operator(cap);
3091 else
3092 openFold(curwin->w_cursor.lnum, cap->count1);
3093 break;
3094
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003095 // "zO": open fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 case 'O': if (VIsual_active)
3097 nv_operator(cap);
3098 else
3099 openFoldRecurse(curwin->w_cursor.lnum);
3100 break;
3101
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003102 // "zc": close fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 case 'c': if (VIsual_active)
3104 nv_operator(cap);
3105 else
3106 closeFold(curwin->w_cursor.lnum, cap->count1);
3107 curwin->w_p_fen = TRUE;
3108 break;
3109
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003110 // "zC": close fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 case 'C': if (VIsual_active)
3112 nv_operator(cap);
3113 else
3114 closeFoldRecurse(curwin->w_cursor.lnum);
3115 curwin->w_p_fen = TRUE;
3116 break;
3117
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003118 // "zv": open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 case 'v': foldOpenCursor();
3120 break;
3121
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003122 // "zx": re-apply 'foldlevel' and open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 case 'x': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003124 curwin->w_foldinvalid = TRUE; // recompute folds
3125 newFoldLevel(); // update right now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 foldOpenCursor();
3127 break;
3128
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003129 // "zX": undo manual opens/closes, re-apply 'foldlevel'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 case 'X': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003131 curwin->w_foldinvalid = TRUE; // recompute folds
3132 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 break;
3134
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003135 // "zm": fold more
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 case 'm': if (curwin->w_p_fdl > 0)
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003137 {
3138 curwin->w_p_fdl -= cap->count1;
3139 if (curwin->w_p_fdl < 0)
3140 curwin->w_p_fdl = 0;
3141 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003142 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 curwin->w_p_fen = TRUE;
3144 break;
3145
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003146 // "zM": close all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 case 'M': curwin->w_p_fdl = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003148 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 curwin->w_p_fen = TRUE;
3150 break;
3151
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003152 // "zr": reduce folding
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003153 case 'r': curwin->w_p_fdl += cap->count1;
3154 {
3155 int d = getDeepestNesting();
3156
3157 if (curwin->w_p_fdl >= d)
3158 curwin->w_p_fdl = d;
3159 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 break;
3161
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003162 // "zR": open all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 case 'R': curwin->w_p_fdl = getDeepestNesting();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003164 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 break;
3166
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003167 case 'j': // "zj" move to next fold downwards
3168 case 'k': // "zk" move to next fold upwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
3170 cap->count1) == FAIL)
3171 clearopbeep(cap->oap);
3172 break;
3173
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003174#endif // FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00003176#ifdef FEAT_SPELL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003177 case 'u': // "zug" and "zuw": undo "zg" and "zw"
Bram Moolenaard0131a82006-03-04 21:46:13 +00003178 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003179 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003180 nchar = plain_vgetc();
Bram Moolenaard0131a82006-03-04 21:46:13 +00003181 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaard0131a82006-03-04 21:46:13 +00003182 --no_mapping;
3183 --allow_keys;
3184#ifdef FEAT_CMDL_INFO
3185 (void)add_to_showcmd(nchar);
3186#endif
3187 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
3188 {
3189 clearopbeep(cap->oap);
3190 break;
3191 }
3192 undo = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003193 // FALLTHROUGH
Bram Moolenaard0131a82006-03-04 21:46:13 +00003194
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003195 case 'g': // "zg": add good word to word list
3196 case 'w': // "zw": add wrong word to word list
3197 case 'G': // "zG": add good word to temp word list
3198 case 'W': // "zW": add wrong word to temp word list
Bram Moolenaarb765d632005-06-07 21:00:02 +00003199 {
3200 char_u *ptr = NULL;
3201 int len;
3202
3203 if (checkclearop(cap->oap))
3204 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003205 if (VIsual_active && get_visual_text(cap, &ptr, &len)
3206 == FAIL)
3207 return;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003208 if (ptr == NULL)
3209 {
3210 pos_T pos = curwin->w_cursor;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003211
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003212 // Find bad word under the cursor. When 'spell' is
3213 // off this fails and find_ident_under_cursor() is
3214 // used below.
Bram Moolenaar134bf072013-09-25 18:54:24 +02003215 emsg_off++;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003216 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
Bram Moolenaar134bf072013-09-25 18:54:24 +02003217 emsg_off--;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003218 if (len != 0 && curwin->w_cursor.col <= pos.col)
3219 ptr = ml_get_pos(&curwin->w_cursor);
3220 curwin->w_cursor = pos;
3221 }
3222
Bram Moolenaarb765d632005-06-07 21:00:02 +00003223 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
3224 FIND_IDENT)) == 0)
3225 return;
Bram Moolenaar08cc3742019-08-11 22:51:14 +02003226 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W'
3227 ? SPELL_ADD_BAD : SPELL_ADD_GOOD,
Bram Moolenaard0131a82006-03-04 21:46:13 +00003228 (nchar == 'G' || nchar == 'W')
3229 ? 0 : (int)cap->count1,
3230 undo);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003231 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00003232 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003233
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003234 case '=': // "z=": suggestions for a badly spelled word
Bram Moolenaar66fa2712006-01-22 23:22:22 +00003235 if (!checkclearop(cap->oap))
Bram Moolenaard12a1322005-08-21 22:08:24 +00003236 spell_suggest((int)cap->count0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003237 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003238#endif
3239
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240 default: clearopbeep(cap->oap);
3241 }
3242
3243#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003244 // Redraw when 'foldenable' changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 if (old_fen != curwin->w_p_fen)
3246 {
3247# ifdef FEAT_DIFF
3248 win_T *wp;
3249
3250 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
3251 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003252 // Adjust 'foldenable' in diff-synced windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 FOR_ALL_WINDOWS(wp)
3254 {
3255 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
3256 {
3257 wp->w_p_fen = curwin->w_p_fen;
3258 changed_window_setting_win(wp);
3259 }
3260 }
3261 }
3262# endif
3263 changed_window_setting();
3264 }
3265
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003266 // Redraw when 'foldlevel' changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 if (old_fdl != curwin->w_p_fdl)
3268 newFoldLevel();
3269#endif
3270}
3271
3272#ifdef FEAT_GUI
3273/*
3274 * Vertical scrollbar movement.
3275 */
3276 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003277nv_ver_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278{
3279 if (cap->oap->op_type != OP_NOP)
3280 clearopbeep(cap->oap);
3281
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003282 // Even if an operator was pending, we still want to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 gui_do_scroll();
3284}
3285
3286/*
3287 * Horizontal scrollbar movement.
3288 */
3289 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003290nv_hor_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291{
3292 if (cap->oap->op_type != OP_NOP)
3293 clearopbeep(cap->oap);
3294
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003295 // Even if an operator was pending, we still want to scroll
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003296 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297}
3298#endif
3299
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003300#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003301/*
3302 * Click in GUI tab.
3303 */
3304 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003305nv_tabline(cmdarg_T *cap)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003306{
3307 if (cap->oap->op_type != OP_NOP)
3308 clearopbeep(cap->oap);
3309
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003310 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003311 goto_tabpage(current_tab);
3312}
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003313
3314/*
3315 * Selected item in tab line menu.
3316 */
3317 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003318nv_tabmenu(cmdarg_T *cap)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003319{
3320 if (cap->oap->op_type != OP_NOP)
3321 clearopbeep(cap->oap);
3322
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003323 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003324 handle_tabmenu();
3325}
3326
3327/*
3328 * Handle selecting an item of the GUI tab line menu.
3329 * Used in Normal and Insert mode.
3330 */
3331 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003332handle_tabmenu(void)
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003333{
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003334 switch (current_tabmenu)
3335 {
3336 case TABLINE_MENU_CLOSE:
3337 if (current_tab == 0)
3338 do_cmdline_cmd((char_u *)"tabclose");
3339 else
3340 {
3341 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
3342 current_tab);
3343 do_cmdline_cmd(IObuff);
3344 }
3345 break;
3346
3347 case TABLINE_MENU_NEW:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003348 if (current_tab == 0)
3349 do_cmdline_cmd((char_u *)"$tabnew");
3350 else
3351 {
3352 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
3353 current_tab - 1);
3354 do_cmdline_cmd(IObuff);
3355 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003356 break;
3357
3358 case TABLINE_MENU_OPEN:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003359 if (current_tab == 0)
3360 do_cmdline_cmd((char_u *)"browse $tabnew");
3361 else
3362 {
3363 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
3364 current_tab - 1);
3365 do_cmdline_cmd(IObuff);
3366 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003367 break;
3368 }
3369}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003370#endif
3371
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372/*
3373 * "Q" command.
3374 */
3375 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003376nv_exmode(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377{
3378 /*
3379 * Ignore 'Q' in Visual mode, just give a beep.
3380 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 if (VIsual_active)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003382 vim_beep(BO_EX);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003383 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 do_exmode(FALSE);
3385}
3386
3387/*
3388 * Handle a ":" command.
3389 */
3390 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003391nv_colon(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392{
Bram Moolenaar957cf672020-11-12 14:21:06 +01003393 int old_p_im;
3394 int cmd_result;
3395 int is_cmdkey = cap->cmdchar == K_COMMAND;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396
Bram Moolenaar957cf672020-11-12 14:21:06 +01003397 if (VIsual_active && !is_cmdkey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 nv_operator(cap);
3399 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 {
3401 if (cap->oap->op_type != OP_NOP)
3402 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003403 // Using ":" as a movement is characterwise exclusive.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 cap->oap->motion_type = MCHAR;
3405 cap->oap->inclusive = FALSE;
3406 }
Bram Moolenaar957cf672020-11-12 14:21:06 +01003407 else if (cap->count0 && !is_cmdkey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003409 // translate "count:" into ":.,.+(count - 1)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 stuffcharReadbuff('.');
3411 if (cap->count0 > 1)
3412 {
3413 stuffReadbuff((char_u *)",.+");
3414 stuffnumReadbuff((long)cap->count0 - 1L);
3415 }
3416 }
3417
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003418 // When typing, don't type below an old message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 if (KeyTyped)
3420 compute_cmdrow();
3421
3422 old_p_im = p_im;
3423
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003424 // get a command line and execute it
Bram Moolenaar957cf672020-11-12 14:21:06 +01003425 cmd_result = do_cmdline(NULL, is_cmdkey ? getcmdkeycmd : getexline, NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
3427
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003428 // If 'insertmode' changed, enter or exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 if (p_im != old_p_im)
3430 {
3431 if (p_im)
3432 restart_edit = 'i';
3433 else
3434 restart_edit = 0;
3435 }
3436
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003437 if (cmd_result == FAIL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003438 // The Ex command failed, do not execute the operator.
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003439 clearop(cap->oap);
3440 else if (cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
3442 || cap->oap->start.col >
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003443 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
3444 || did_emsg
3445 ))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003446 // The start of the operator has become invalid by the Ex command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 clearopbeep(cap->oap);
3448 }
3449}
3450
3451/*
3452 * Handle CTRL-G command.
3453 */
3454 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003455nv_ctrlg(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003457 if (VIsual_active) // toggle Selection/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 {
3459 VIsual_select = !VIsual_select;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01003460 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 showmode();
3462 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003463 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003464 // print full name if count given or :cd used
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 fileinfo((int)cap->count0, FALSE, TRUE);
3466}
3467
3468/*
3469 * Handle CTRL-H <Backspace> command.
3470 */
3471 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003472nv_ctrlh(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 if (VIsual_active && VIsual_select)
3475 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003476 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 v_visop(cap);
3478 }
3479 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 nv_left(cap);
3481}
3482
3483/*
3484 * CTRL-L: clear screen and redraw.
3485 */
3486 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003487nv_clear(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488{
3489 if (!checkclearop(cap->oap))
3490 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491#ifdef FEAT_SYN_HL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003492 // Clear all syntax states to force resyncing.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003493 syn_stack_free_all(curwin->w_s);
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02003494# ifdef FEAT_RELTIME
3495 {
3496 win_T *wp;
3497
3498 FOR_ALL_WINDOWS(wp)
3499 wp->w_s->b_syn_slow = FALSE;
3500 }
3501# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502#endif
3503 redraw_later(CLEAR);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003504#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3505# ifdef VIMDLL
3506 if (!gui.in_use)
3507# endif
3508 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01003509#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510 }
3511}
3512
3513/*
3514 * CTRL-O: In Select mode: switch to Visual mode for one command.
3515 * Otherwise: Go to older pcmark.
3516 */
3517 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003518nv_ctrlo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 if (VIsual_active && VIsual_select)
3521 {
3522 VIsual_select = FALSE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01003523 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524 showmode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003525 restart_VIsual_select = 2; // restart Select mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 }
3527 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528 {
3529 cap->count1 = -cap->count1;
3530 nv_pcmark(cap);
3531 }
3532}
3533
3534/*
Bram Moolenaar1bbb6192018-11-10 16:02:01 +01003535 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is
3536 * not named.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 */
3538 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003539nv_hat(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540{
3541 if (!checkclearopq(cap->oap))
3542 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
3543 GETF_SETMARK|GETF_ALT, FALSE);
3544}
3545
3546/*
3547 * "Z" commands.
3548 */
3549 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003550nv_Zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551{
3552 if (!checkclearopq(cap->oap))
3553 {
3554 switch (cap->nchar)
3555 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003556 // "ZZ": equivalent to ":x".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 case 'Z': do_cmdline_cmd((char_u *)"x");
3558 break;
3559
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003560 // "ZQ": equivalent to ":q!" (Elvis compatible).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 case 'Q': do_cmdline_cmd((char_u *)"q!");
3562 break;
3563
3564 default: clearopbeep(cap->oap);
3565 }
3566 }
3567}
3568
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569/*
3570 * Call nv_ident() as if "c1" was used, with "c2" as next character.
3571 */
3572 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003573do_nv_ident(int c1, int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574{
3575 oparg_T oa;
3576 cmdarg_T ca;
3577
3578 clear_oparg(&oa);
Bram Moolenaara80faa82020-04-12 19:37:17 +02003579 CLEAR_FIELD(ca);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 ca.oap = &oa;
3581 ca.cmdchar = c1;
3582 ca.nchar = c2;
3583 nv_ident(&ca);
3584}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585
3586/*
3587 * Handle the commands that use the word under the cursor.
3588 * [g] CTRL-] :ta to current identifier
3589 * [g] 'K' run program for current identifier
3590 * [g] '*' / to current identifier or string
3591 * [g] '#' ? to current identifier or string
3592 * g ']' :tselect for current identifier
3593 */
3594 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003595nv_ident(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596{
3597 char_u *ptr = NULL;
3598 char_u *buf;
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003599 unsigned buflen;
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003600 char_u *newbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 char_u *p;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003602 char_u *kp; // value of 'keywordprg'
3603 int kp_help; // 'keywordprg' is ":he"
3604 int kp_ex; // 'keywordprg' starts with ":"
3605 int n = 0; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606 int cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003607 int g_cmd; // "g" command
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003608 int tag_cmd = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 char_u *aux_ptr;
3610 int isman;
3611 int isman_s;
3612
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003613 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 {
3615 cmdchar = cap->nchar;
3616 g_cmd = TRUE;
3617 }
3618 else
3619 {
3620 cmdchar = cap->cmdchar;
3621 g_cmd = FALSE;
3622 }
3623
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003624 if (cmdchar == POUND) // the pound sign, '#' for English keyboards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 cmdchar = '#';
3626
3627 /*
3628 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
3629 */
3630 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
3631 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
3633 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 if (checkclearopq(cap->oap))
3635 return;
3636 }
3637
3638 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
3639 (cmdchar == '*' || cmdchar == '#')
3640 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
3641 {
3642 clearop(cap->oap);
3643 return;
3644 }
3645
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003646 // Allocate buffer to put the command in. Inserting backslashes can
3647 // double the length of the word. p_kp / curbuf->b_p_kp could be added
3648 // and some numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
3650 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
3651 || STRCMP(kp, ":help") == 0);
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003652 if (kp_help && *skipwhite(ptr) == NUL)
3653 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003654 emsg(_(e_noident)); // found white space only
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003655 return;
3656 }
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003657 kp_ex = (*kp == ':');
3658 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp));
3659 buf = alloc(buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 if (buf == NULL)
3661 return;
3662 buf[0] = NUL;
3663
3664 switch (cmdchar)
3665 {
3666 case '*':
3667 case '#':
3668 /*
3669 * Put cursor at start of word, makes search skip the word
3670 * under the cursor.
3671 * Call setpcmark() first, so "*``" puts the cursor back where
3672 * it was.
3673 */
3674 setpcmark();
3675 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
3676
3677 if (!g_cmd && vim_iswordp(ptr))
3678 STRCPY(buf, "\\<");
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003679 no_smartcase = TRUE; // don't use 'smartcase' now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 break;
3681
3682 case 'K':
3683 if (kp_help)
3684 STRCPY(buf, "he! ");
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003685 else if (kp_ex)
3686 {
3687 if (cap->count0 != 0)
3688 vim_snprintf((char *)buf, buflen, "%s %ld",
3689 kp, cap->count0);
3690 else
3691 STRCPY(buf, kp);
3692 STRCAT(buf, " ");
3693 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 else
3695 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003696 // An external command will probably use an argument starting
3697 // with "-" as an option. To avoid trouble we skip the "-".
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003698 while (*ptr == '-' && n > 0)
3699 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003700 ++ptr;
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003701 --n;
3702 }
3703 if (n == 0)
3704 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003705 emsg(_(e_noident)); // found dashes only
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003706 vim_free(buf);
3707 return;
3708 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003709
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003710 // When a count is given, turn it into a range. Is this
3711 // really what we want?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 isman = (STRCMP(kp, "man") == 0);
3713 isman_s = (STRCMP(kp, "man -s") == 0);
3714 if (cap->count0 != 0 && !(isman || isman_s))
3715 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
3716
3717 STRCAT(buf, "! ");
3718 if (cap->count0 == 0 && isman_s)
3719 STRCAT(buf, "man");
3720 else
3721 STRCAT(buf, kp);
3722 STRCAT(buf, " ");
3723 if (cap->count0 != 0 && (isman || isman_s))
3724 {
3725 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
3726 STRCAT(buf, " ");
3727 }
3728 }
3729 break;
3730
3731 case ']':
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003732 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733#ifdef FEAT_CSCOPE
3734 if (p_cst)
3735 STRCPY(buf, "cstag ");
3736 else
3737#endif
3738 STRCPY(buf, "ts ");
3739 break;
3740
3741 default:
Bram Moolenaar97e7a842010-03-17 13:07:08 +01003742 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 if (curbuf->b_help)
3744 STRCPY(buf, "he! ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 else
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003746 {
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003747 if (g_cmd)
3748 STRCPY(buf, "tj ");
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003749 else if (cap->count0 == 0)
3750 STRCPY(buf, "ta ");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003751 else
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003752 sprintf((char *)buf, ":%ldta ", cap->count0);
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003753 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 }
3755
3756 /*
3757 * Now grab the chars in the identifier
3758 */
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003759 if (cmdchar == 'K' && !kp_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 {
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003761 ptr = vim_strnsave(ptr, n);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003762 if (kp_ex)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003763 // Escape the argument properly for an Ex command
Bram Moolenaar21c1a0c2021-10-17 17:20:23 +01003764 p = vim_strsave_fnameescape(ptr, VSE_NONE);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003765 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003766 // Escape the argument properly for a shell command
Bram Moolenaar426f3752016-11-04 21:22:37 +01003767 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003768 vim_free(ptr);
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003769 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003771 vim_free(buf);
3772 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003774 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003775 if (newbuf == NULL)
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003776 {
3777 vim_free(buf);
3778 vim_free(p);
3779 return;
3780 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003781 buf = newbuf;
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003782 STRCAT(buf, p);
3783 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003785 else
3786 {
3787 if (cmdchar == '*')
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003788 aux_ptr = (char_u *)(magic_isset() ? "/.*~[^$\\" : "/^$\\");
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003789 else if (cmdchar == '#')
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003790 aux_ptr = (char_u *)(magic_isset() ? "/?.*~[^$\\" : "/?^$\\");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003791 else if (tag_cmd)
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003792 {
3793 if (curbuf->b_help)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003794 // ":help" handles unescaped argument
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003795 aux_ptr = (char_u *)"";
3796 else
3797 aux_ptr = (char_u *)"\\|\"\n[";
3798 }
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003799 else
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003800 aux_ptr = (char_u *)"\\|\"\n*?[";
3801
3802 p = buf + STRLEN(buf);
3803 while (n-- > 0)
3804 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003805 // put a backslash before \ and some others
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003806 if (vim_strchr(aux_ptr, *ptr) != NULL)
3807 *p++ = '\\';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003808 // When current byte is a part of multibyte character, copy all
3809 // bytes of that character.
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003810 if (has_mbyte)
3811 {
3812 int i;
3813 int len = (*mb_ptr2len)(ptr) - 1;
3814
3815 for (i = 0; i < len && n >= 1; ++i, --n)
3816 *p++ = *ptr++;
3817 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003818 *p++ = *ptr++;
3819 }
3820 *p = NUL;
3821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822
3823 /*
3824 * Execute the command.
3825 */
3826 if (cmdchar == '*' || cmdchar == '#')
3827 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003828 if (!g_cmd && (has_mbyte
3829 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr))
3830 : vim_iswordc(ptr[-1])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 STRCAT(buf, "\\>");
Bram Moolenaard7663c22019-08-06 21:59:57 +02003832
3833 // put pattern in search history
Bram Moolenaarc7be3f32009-12-24 14:01:12 +00003834 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
Bram Moolenaard7663c22019-08-06 21:59:57 +02003836
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003837 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 }
3839 else
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003840 {
3841 g_tag_at_cursor = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 do_cmdline_cmd(buf);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003843 g_tag_at_cursor = FALSE;
3844 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845
3846 vim_free(buf);
3847}
3848
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849/*
3850 * Get visually selected text, within one line only.
3851 * Returns FAIL if more than one line selected.
3852 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003853 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003854get_visual_text(
3855 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003856 char_u **pp, // return: start of selected text
3857 int *lenp) // return: length of selected text
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858{
3859 if (VIsual_mode != 'V')
3860 unadjust_for_sel();
3861 if (VIsual.lnum != curwin->w_cursor.lnum)
3862 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003863 if (cap != NULL)
3864 clearopbeep(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 return FAIL;
3866 }
3867 if (VIsual_mode == 'V')
3868 {
3869 *pp = ml_get_curline();
3870 *lenp = (int)STRLEN(*pp);
3871 }
3872 else
3873 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003874 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 {
3876 *pp = ml_get_pos(&curwin->w_cursor);
3877 *lenp = VIsual.col - curwin->w_cursor.col + 1;
3878 }
3879 else
3880 {
3881 *pp = ml_get_pos(&VIsual);
3882 *lenp = curwin->w_cursor.col - VIsual.col + 1;
3883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 if (has_mbyte)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003885 // Correct the length to include the whole last character.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003886 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 }
3888 reset_VIsual_and_resel();
3889 return OK;
3890}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891
3892/*
3893 * CTRL-T: backwards in tag stack
3894 */
3895 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003896nv_tagpop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897{
3898 if (!checkclearopq(cap->oap))
3899 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
3900}
3901
3902/*
3903 * Handle scrolling command 'H', 'L' and 'M'.
3904 */
3905 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003906nv_scroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907{
3908 int used = 0;
3909 long n;
3910#ifdef FEAT_FOLDING
3911 linenr_T lnum;
3912#endif
3913 int half;
3914
3915 cap->oap->motion_type = MLINE;
3916 setpcmark();
3917
3918 if (cap->cmdchar == 'L')
3919 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003920 validate_botline(); // make sure curwin->w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 curwin->w_cursor.lnum = curwin->w_botline - 1;
3922 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
3923 curwin->w_cursor.lnum = 1;
3924 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003925 {
3926#ifdef FEAT_FOLDING
3927 if (hasAnyFolding(curwin))
3928 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003929 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003930 for (n = cap->count1 - 1; n > 0
3931 && curwin->w_cursor.lnum > curwin->w_topline; --n)
3932 {
3933 (void)hasFolding(curwin->w_cursor.lnum,
3934 &curwin->w_cursor.lnum, NULL);
3935 --curwin->w_cursor.lnum;
3936 }
3937 }
3938 else
3939#endif
3940 curwin->w_cursor.lnum -= cap->count1 - 1;
3941 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 }
3943 else
3944 {
3945 if (cap->cmdchar == 'M')
3946 {
3947#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003948 // Don't count filler lines above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 used -= diff_check_fill(curwin, curwin->w_topline)
3950 - curwin->w_topfill;
3951#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003952 validate_botline(); // make sure w_empty_rows is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
3954 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
3955 {
3956#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003957 // Count half he number of filler lines to be "below this
3958 // line" and half to be "above the next line".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
3960 + n) / 2 >= half)
3961 {
3962 --n;
3963 break;
3964 }
3965#endif
3966 used += plines(curwin->w_topline + n);
3967 if (used >= half)
3968 break;
3969#ifdef FEAT_FOLDING
3970 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
3971 n = lnum - curwin->w_topline;
3972#endif
3973 }
3974 if (n > 0 && used > curwin->w_height)
3975 --n;
3976 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003977 else // (cap->cmdchar == 'H')
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003978 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003980#ifdef FEAT_FOLDING
3981 if (hasAnyFolding(curwin))
3982 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003983 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003984 lnum = curwin->w_topline;
3985 while (n-- > 0 && lnum < curwin->w_botline - 1)
3986 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02003987 (void)hasFolding(lnum, NULL, &lnum);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003988 ++lnum;
3989 }
3990 n = lnum - curwin->w_topline;
3991 }
3992#endif
3993 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 curwin->w_cursor.lnum = curwin->w_topline + n;
3995 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3996 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3997 }
3998
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003999 // Correct for 'so', except when an operator is pending.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02004000 if (cap->oap->op_type == OP_NOP)
4001 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 beginline(BL_SOL | BL_FIX);
4003}
4004
4005/*
4006 * Cursor right commands.
4007 */
4008 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004009nv_right(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010{
4011 long n;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004012 int past_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004014 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4015 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004016 // <C-Right> and <S-Right> move a word or WORD right
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004017 if (mod_mask & MOD_MASK_CTRL)
4018 cap->arg = TRUE;
4019 nv_wordcmd(cap);
4020 return;
4021 }
4022
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 cap->oap->motion_type = MCHAR;
4024 cap->oap->inclusive = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004025 past_line = (VIsual_active && *p_sel != 'o');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 /*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004028 * In virtual edit mode, there's no such thing as "past_line", as lines
4029 * are (theoretically) infinitely long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 */
4031 if (virtual_active())
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004032 past_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033
4034 for (n = cap->count1; n > 0; --n)
4035 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004036 if ((!past_line && oneright() == FAIL)
4037 || (past_line && *ml_get_cursor() == NUL)
Bram Moolenaar78a15312009-05-15 19:33:18 +00004038 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 {
4040 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004041 * <Space> wraps to next line if 'whichwrap' has 's'.
4042 * 'l' wraps to next line if 'whichwrap' has 'l'.
4043 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 */
4045 if ( ((cap->cmdchar == ' '
4046 && vim_strchr(p_ww, 's') != NULL)
4047 || (cap->cmdchar == 'l'
4048 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004049 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 && vim_strchr(p_ww, '>') != NULL))
4051 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4052 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004053 // When deleting we also count the NL as a character.
4054 // Set cap->oap->inclusive when last char in the line is
4055 // included, move to next line after that
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004056 if ( cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 && !cap->oap->inclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004058 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 cap->oap->inclusive = TRUE;
4060 else
4061 {
4062 ++curwin->w_cursor.lnum;
4063 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065 curwin->w_set_curswant = TRUE;
4066 cap->oap->inclusive = FALSE;
4067 }
4068 continue;
4069 }
4070 if (cap->oap->op_type == OP_NOP)
4071 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004072 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 if (n == cap->count1)
4074 beep_flush();
4075 }
4076 else
4077 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004078 if (!LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 cap->oap->inclusive = TRUE;
4080 }
4081 break;
4082 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004083 else if (past_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 {
4085 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 if (virtual_active())
4087 oneright();
4088 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 if (has_mbyte)
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02004091 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 ++curwin->w_cursor.col;
4094 }
4095 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096 }
4097#ifdef FEAT_FOLDING
4098 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4099 && cap->oap->op_type == OP_NOP)
4100 foldOpenCursor();
4101#endif
4102}
4103
4104/*
4105 * Cursor left commands.
4106 *
4107 * Returns TRUE when operator end should not be adjusted.
4108 */
4109 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004110nv_left(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111{
4112 long n;
4113
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004114 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4115 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004116 // <C-Left> and <S-Left> move a word or WORD left
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004117 if (mod_mask & MOD_MASK_CTRL)
4118 cap->arg = 1;
4119 nv_bck_word(cap);
4120 return;
4121 }
4122
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 cap->oap->motion_type = MCHAR;
4124 cap->oap->inclusive = FALSE;
4125 for (n = cap->count1; n > 0; --n)
4126 {
4127 if (oneleft() == FAIL)
4128 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004129 // <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
4130 // 'h' wraps to previous line if 'whichwrap' has 'h'.
4131 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 if ( (((cap->cmdchar == K_BS
4133 || cap->cmdchar == Ctrl_H)
4134 && vim_strchr(p_ww, 'b') != NULL)
4135 || (cap->cmdchar == 'h'
4136 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004137 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138 && vim_strchr(p_ww, '<') != NULL))
4139 && curwin->w_cursor.lnum > 1)
4140 {
4141 --(curwin->w_cursor.lnum);
4142 coladvance((colnr_T)MAXCOL);
4143 curwin->w_set_curswant = TRUE;
4144
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004145 // When the NL before the first char has to be deleted we
4146 // put the cursor on the NUL after the previous line.
4147 // This is a very special case, be careful!
4148 // Don't adjust op_end now, otherwise it won't work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 if ( (cap->oap->op_type == OP_DELETE
4150 || cap->oap->op_type == OP_CHANGE)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004151 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004153 char_u *cp = ml_get_cursor();
4154
4155 if (*cp != NUL)
4156 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004157 if (has_mbyte)
4158 curwin->w_cursor.col += (*mb_ptr2len)(cp);
4159 else
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004160 ++curwin->w_cursor.col;
4161 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 cap->retval |= CA_NO_ADJ_OP_END;
4163 }
4164 continue;
4165 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004166 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
4168 beep_flush();
4169 break;
4170 }
4171 }
4172#ifdef FEAT_FOLDING
4173 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4174 && cap->oap->op_type == OP_NOP)
4175 foldOpenCursor();
4176#endif
4177}
4178
4179/*
4180 * Cursor up commands.
4181 * cap->arg is TRUE for "-": Move cursor to first non-blank.
4182 */
4183 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004184nv_up(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004186 if (mod_mask & MOD_MASK_SHIFT)
4187 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004188 // <S-Up> is page up
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004189 cap->arg = BACKWARD;
4190 nv_page(cap);
4191 }
4192 else
4193 {
4194 cap->oap->motion_type = MLINE;
4195 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4196 clearopbeep(cap->oap);
4197 else if (cap->arg)
4198 beginline(BL_WHITE | BL_FIX);
4199 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200}
4201
4202/*
4203 * Cursor down commands.
4204 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
4205 */
4206 static void
Bram Moolenaar1b010052016-09-12 12:24:11 +02004207nv_down(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004209 if (mod_mask & MOD_MASK_SHIFT)
4210 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004211 // <S-Down> is page down
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004212 cap->arg = FORWARD;
4213 nv_page(cap);
4214 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02004215#if defined(FEAT_QUICKFIX)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004216 // Quickfix window only: view the result under the cursor.
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004217 else if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
4218 qf_view_result(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219#endif
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004220 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 {
4222#ifdef FEAT_CMDWIN
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004223 // In the cmdline window a <CR> executes the command.
Bram Moolenaar05159a02005-02-26 23:04:13 +00004224 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225 cmdwin_result = CAR;
4226 else
4227#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02004228#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004229 // In a prompt buffer a <CR> in the last line invokes the callback.
Bram Moolenaarf2732452018-06-03 14:47:35 +02004230 if (bt_prompt(curbuf) && cap->cmdchar == CAR
4231 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4232 {
4233 invoke_prompt_callback();
4234 if (restart_edit == 0)
4235 restart_edit = 'a';
4236 }
4237 else
4238#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 {
4240 cap->oap->motion_type = MLINE;
4241 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4242 clearopbeep(cap->oap);
4243 else if (cap->arg)
4244 beginline(BL_WHITE | BL_FIX);
4245 }
4246 }
4247}
4248
4249#ifdef FEAT_SEARCHPATH
4250/*
4251 * Grab the file name under the cursor and edit it.
4252 */
4253 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004254nv_gotofile(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255{
4256 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004257 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004259 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 {
4261 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004262 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 return;
4264 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004265 if (curbuf_locked())
4266 {
4267 clearop(cap->oap);
4268 return;
4269 }
Bram Moolenaar5aed0cc2020-05-12 22:02:21 +02004270#ifdef FEAT_PROP_POPUP
4271 if (ERROR_IF_TERM_POPUP_WINDOW)
4272 return;
4273#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004275 ptr = grab_file_name(cap->count1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276
4277 if (ptr != NULL)
4278 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004279 // do autowrite if necessary
Bram Moolenaareb44a682017-08-03 22:44:55 +02004280 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf))
Bram Moolenaarcde88542015-08-11 19:14:00 +02004281 (void)autowrite(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 setpcmark();
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004283 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
Bram Moolenaareb44a682017-08-03 22:44:55 +02004284 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004285 && cap->nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004286 {
4287 curwin->w_cursor.lnum = lnum;
4288 check_cursor_lnum();
4289 beginline(BL_SOL | BL_FIX);
4290 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 vim_free(ptr);
4292 }
4293 else
4294 clearop(cap->oap);
4295}
4296#endif
4297
4298/*
4299 * <End> command: to end of current line or last line.
4300 */
4301 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004302nv_end(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004304 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004306 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 nv_goto(cap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004308 cap->count1 = 1; // to end of current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 }
4310 nv_dollar(cap);
4311}
4312
4313/*
4314 * Handle the "$" command.
4315 */
4316 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004317nv_dollar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318{
4319 cap->oap->motion_type = MCHAR;
4320 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004321 // In virtual mode when off the edge of a line and an operator
4322 // is pending (whew!) keep the cursor where it is.
4323 // Otherwise, send it to the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 if (!virtual_active() || gchar_cursor() != NUL
4325 || cap->oap->op_type == OP_NOP)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004326 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 if (cursor_down((long)(cap->count1 - 1),
4328 cap->oap->op_type == OP_NOP) == FAIL)
4329 clearopbeep(cap->oap);
4330#ifdef FEAT_FOLDING
4331 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4332 foldOpenCursor();
4333#endif
4334}
4335
4336/*
4337 * Implementation of '?' and '/' commands.
4338 * If cap->arg is TRUE don't set PC mark.
4339 */
4340 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004341nv_search(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342{
4343 oparg_T *oap = cap->oap;
Bram Moolenaardda933d2016-09-03 21:04:58 +02004344 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345
4346 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
4347 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004348 // Translate "g??" to "g?g?"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 cap->cmdchar = 'g';
4350 cap->nchar = '?';
4351 nv_operator(cap);
4352 return;
4353 }
4354
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004355 // When using 'incsearch' the cursor may be moved to set a different search
4356 // start position.
Bram Moolenaare96a2492019-06-25 04:12:16 +02004357 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358
4359 if (cap->searchbuf == NULL)
4360 {
4361 clearop(oap);
4362 return;
4363 }
4364
Bram Moolenaar46539112015-02-17 15:43:57 +01004365 (void)normal_search(cap, cap->cmdchar, cap->searchbuf,
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004366 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor))
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004367 ? 0 : SEARCH_MARK, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368}
4369
4370/*
4371 * Handle "N" and "n" commands.
4372 * cap->arg is SEARCH_REV for "N", 0 for "n".
4373 */
4374 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004375nv_next(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376{
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004377 pos_T old = curwin->w_cursor;
4378 int wrapped = FALSE;
4379 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, &wrapped);
Bram Moolenaar46539112015-02-17 15:43:57 +01004380
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004381 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor))
Bram Moolenaar46539112015-02-17 15:43:57 +01004382 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004383 // Avoid getting stuck on the current cursor position, which can
4384 // happen when an offset is given and the cursor is on the last char
4385 // in the buffer: Repeat with count + 1.
Bram Moolenaar46539112015-02-17 15:43:57 +01004386 cap->count1 += 1;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004387 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL);
Bram Moolenaar46539112015-02-17 15:43:57 +01004388 cap->count1 -= 1;
4389 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390}
4391
4392/*
4393 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
4394 * Uses only cap->count1 and cap->oap from "cap".
Bram Moolenaar46539112015-02-17 15:43:57 +01004395 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 */
Bram Moolenaar46539112015-02-17 15:43:57 +01004397 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004398normal_search(
4399 cmdarg_T *cap,
4400 int dir,
4401 char_u *pat,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004402 int opt, // extra flags for do_search()
4403 int *wrapped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404{
4405 int i;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004406 searchit_arg_T sia;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407
4408 cap->oap->motion_type = MCHAR;
4409 cap->oap->inclusive = FALSE;
4410 cap->oap->use_reg_one = TRUE;
4411 curwin->w_set_curswant = TRUE;
4412
Bram Moolenaara80faa82020-04-12 19:37:17 +02004413 CLEAR_FIELD(sia);
Bram Moolenaarc036e872020-02-21 21:30:52 +01004414 i = do_search(cap->oap, dir, dir, pat, cap->count1,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004415 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, &sia);
4416 if (wrapped != NULL)
4417 *wrapped = sia.sa_wrapped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 if (i == 0)
4419 clearop(cap->oap);
4420 else
4421 {
4422 if (i == 2)
4423 cap->oap->motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425#ifdef FEAT_FOLDING
4426 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4427 foldOpenCursor();
4428#endif
4429 }
4430
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004431 // "/$" will put the cursor after the end of the line, may need to
4432 // correct that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 check_cursor();
Bram Moolenaar46539112015-02-17 15:43:57 +01004434 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435}
4436
4437/*
4438 * Character search commands.
4439 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
4440 * ',' and FALSE for ';'.
4441 * cap->nchar is NUL for ',' and ';' (repeat the search)
4442 */
4443 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004444nv_csearch(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445{
4446 int t_cmd;
4447
4448 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
4449 t_cmd = TRUE;
4450 else
4451 t_cmd = FALSE;
4452
4453 cap->oap->motion_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
4455 clearopbeep(cap->oap);
4456 else
4457 {
4458 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004459 // Include a Tab for "tx" and for "dfx".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
4461 && (t_cmd || cap->oap->op_type != OP_NOP))
4462 {
4463 colnr_T scol, ecol;
4464
4465 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4466 curwin->w_cursor.coladd = ecol - scol;
4467 }
4468 else
4469 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471#ifdef FEAT_FOLDING
4472 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4473 foldOpenCursor();
4474#endif
4475 }
4476}
4477
4478/*
4479 * "[" and "]" commands.
4480 * cap->arg is BACKWARD for "[" and FORWARD for "]".
4481 */
4482 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004483nv_brackets(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484{
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004485 pos_T new_pos = {0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 pos_T prev_pos;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004487 pos_T *pos = NULL; // init for GCC
4488 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 int flag;
4490 long n;
4491 int findc;
4492 int c;
4493
4494 cap->oap->motion_type = MCHAR;
4495 cap->oap->inclusive = FALSE;
4496 old_pos = curwin->w_cursor;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004497 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498
4499#ifdef FEAT_SEARCHPATH
4500 /*
4501 * "[f" or "]f" : Edit file under the cursor (same as "gf")
4502 */
4503 if (cap->nchar == 'f')
4504 nv_gotofile(cap);
4505 else
4506#endif
4507
4508#ifdef FEAT_FIND_ID
4509 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00004510 * Find the occurrence(s) of the identifier or define under cursor
4511 * in current and included files or jump to the first occurrence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 *
4513 * search list jump
4514 * fwd bwd fwd bwd fwd bwd
4515 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
4516 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
4517 */
4518 if (vim_strchr((char_u *)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004519# ifdef EBCDIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 "iI\005dD\067",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004521# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 "iI\011dD\004",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004523# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 cap->nchar) != NULL)
4525 {
4526 char_u *ptr;
4527 int len;
4528
4529 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
4530 clearop(cap->oap);
4531 else
4532 {
4533 find_pattern_in_path(ptr, 0, len, TRUE,
4534 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
4535 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
4536 cap->count1,
4537 isupper(cap->nchar) ? ACTION_SHOW_ALL :
4538 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
4539 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
4540 (linenr_T)MAXLNUM);
4541 curwin->w_set_curswant = TRUE;
4542 }
4543 }
4544 else
4545#endif
4546
4547 /*
4548 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
4549 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
4550 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
4551 * "[m" or "]m" search for prev/next start of (Java) method.
4552 * "[M" or "]M" search for prev/next end of (Java) method.
4553 */
4554 if ( (cap->cmdchar == '['
4555 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
4556 || (cap->cmdchar == ']'
4557 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
4558 {
4559 if (cap->nchar == '*')
4560 cap->nchar = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 prev_pos.lnum = 0;
4562 if (cap->nchar == 'm' || cap->nchar == 'M')
4563 {
4564 if (cap->cmdchar == '[')
4565 findc = '{';
4566 else
4567 findc = '}';
4568 n = 9999;
4569 }
4570 else
4571 {
4572 findc = cap->nchar;
4573 n = cap->count1;
4574 }
4575 for ( ; n > 0; --n)
4576 {
4577 if ((pos = findmatchlimit(cap->oap, findc,
4578 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
4579 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004580 if (new_pos.lnum == 0) // nothing found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 {
4582 if (cap->nchar != 'm' && cap->nchar != 'M')
4583 clearopbeep(cap->oap);
4584 }
4585 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004586 pos = &new_pos; // use last one found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 break;
4588 }
4589 prev_pos = new_pos;
4590 curwin->w_cursor = *pos;
4591 new_pos = *pos;
4592 }
4593 curwin->w_cursor = old_pos;
4594
4595 /*
4596 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
4597 * brought us to the match for "[m" and "]M" when inside a method.
4598 * Try finding the '{' or '}' we want to be at.
4599 * Also repeat for the given count.
4600 */
4601 if (cap->nchar == 'm' || cap->nchar == 'M')
4602 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004603 // norm is TRUE for "]M" and "[m"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 int norm = ((findc == '{') == (cap->nchar == 'm'));
4605
4606 n = cap->count1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004607 // found a match: we were inside a method
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 if (prev_pos.lnum != 0)
4609 {
4610 pos = &prev_pos;
4611 curwin->w_cursor = prev_pos;
4612 if (norm)
4613 --n;
4614 }
4615 else
4616 pos = NULL;
4617 while (n > 0)
4618 {
4619 for (;;)
4620 {
4621 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
4622 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004623 // if not found anything, that's an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 if (pos == NULL)
4625 clearopbeep(cap->oap);
4626 n = 0;
4627 break;
4628 }
4629 c = gchar_cursor();
4630 if (c == '{' || c == '}')
4631 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004632 // Must have found end/start of class: use it.
4633 // Or found the place to be at.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 if ((c == findc && norm) || (n == 1 && !norm))
4635 {
4636 new_pos = curwin->w_cursor;
4637 pos = &new_pos;
4638 n = 0;
4639 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004640 // if no match found at all, we started outside of the
4641 // class and we're inside now. Just go on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 else if (new_pos.lnum == 0)
4643 {
4644 new_pos = curwin->w_cursor;
4645 pos = &new_pos;
4646 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004647 // found start/end of other method: go to match
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 else if ((pos = findmatchlimit(cap->oap, findc,
4649 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
4650 0)) == NULL)
4651 n = 0;
4652 else
4653 curwin->w_cursor = *pos;
4654 break;
4655 }
4656 }
4657 --n;
4658 }
4659 curwin->w_cursor = old_pos;
4660 if (pos == NULL && new_pos.lnum != 0)
4661 clearopbeep(cap->oap);
4662 }
4663 if (pos != NULL)
4664 {
4665 setpcmark();
4666 curwin->w_cursor = *pos;
4667 curwin->w_set_curswant = TRUE;
4668#ifdef FEAT_FOLDING
4669 if ((fdo_flags & FDO_BLOCK) && KeyTyped
4670 && cap->oap->op_type == OP_NOP)
4671 foldOpenCursor();
4672#endif
4673 }
4674 }
4675
4676 /*
4677 * "[[", "[]", "]]" and "][": move to start or end of function
4678 */
4679 else if (cap->nchar == '[' || cap->nchar == ']')
4680 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004681 if (cap->nchar == cap->cmdchar) // "]]" or "[["
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 flag = '{';
4683 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004684 flag = '}'; // "][" or "[]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685
4686 curwin->w_set_curswant = TRUE;
4687 /*
4688 * Imitate strange Vi behaviour: When using "]]" with an operator
4689 * we also stop at '}'.
4690 */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004691 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 (cap->oap->op_type != OP_NOP
4693 && cap->arg == FORWARD && flag == '{')))
4694 clearopbeep(cap->oap);
4695 else
4696 {
4697 if (cap->oap->op_type == OP_NOP)
4698 beginline(BL_WHITE | BL_FIX);
4699#ifdef FEAT_FOLDING
4700 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4701 foldOpenCursor();
4702#endif
4703 }
4704 }
4705
4706 /*
4707 * "[p", "[P", "]P" and "]p": put with indent adjustment
4708 */
4709 else if (cap->nchar == 'p' || cap->nchar == 'P')
4710 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02004711 nv_put_opt(cap, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712 }
4713
4714 /*
4715 * "['", "[`", "]'" and "]`": jump to next mark
4716 */
4717 else if (cap->nchar == '\'' || cap->nchar == '`')
4718 {
4719 pos = &curwin->w_cursor;
4720 for (n = cap->count1; n > 0; --n)
4721 {
4722 prev_pos = *pos;
4723 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
4724 cap->nchar == '\'');
4725 if (pos == NULL)
4726 break;
4727 }
4728 if (pos == NULL)
4729 pos = &prev_pos;
4730 nv_cursormark(cap, cap->nchar == '\'', pos);
4731 }
4732
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 /*
4734 * [ or ] followed by a middle mouse click: put selected text with
4735 * indent adjustment. Any other button just does as usual.
4736 */
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02004737 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 {
4739 (void)do_mouse(cap->oap, cap->nchar,
4740 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
4741 cap->count1, PUT_FIXINDENT);
4742 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743
4744#ifdef FEAT_FOLDING
4745 /*
4746 * "[z" and "]z": move to start or end of open fold.
4747 */
4748 else if (cap->nchar == 'z')
4749 {
4750 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4751 cap->count1) == FAIL)
4752 clearopbeep(cap->oap);
4753 }
4754#endif
4755
4756#ifdef FEAT_DIFF
4757 /*
4758 * "[c" and "]c": move to next or previous diff-change.
4759 */
4760 else if (cap->nchar == 'c')
4761 {
4762 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
4763 cap->count1) == FAIL)
4764 clearopbeep(cap->oap);
4765 }
4766#endif
4767
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00004768#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004769 /*
4770 * "[s", "[S", "]s" and "]S": move to next spell error.
4771 */
4772 else if (cap->nchar == 's' || cap->nchar == 'S')
4773 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004774 setpcmark();
4775 for (n = 0; n < cap->count1; ++n)
Bram Moolenaar95529562005-08-25 21:21:38 +00004776 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4777 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004778 {
4779 clearopbeep(cap->oap);
4780 break;
4781 }
Bram Moolenaarb73fa622017-12-21 20:27:47 +01004782 else
4783 curwin->w_set_curswant = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004784# ifdef FEAT_FOLDING
4785 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4786 foldOpenCursor();
4787# endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004788 }
4789#endif
4790
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004791 // Not a valid cap->nchar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 else
4793 clearopbeep(cap->oap);
4794}
4795
4796/*
4797 * Handle Normal mode "%" command.
4798 */
4799 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004800nv_percent(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801{
4802 pos_T *pos;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02004803#if defined(FEAT_FOLDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 linenr_T lnum = curwin->w_cursor.lnum;
4805#endif
4806
4807 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004808 if (cap->count0) // {cnt}% : goto {cnt} percentage in file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 {
4810 if (cap->count0 > 100)
4811 clearopbeep(cap->oap);
4812 else
4813 {
4814 cap->oap->motion_type = MLINE;
4815 setpcmark();
Bram Moolenaar2c655342021-02-23 19:32:03 +01004816 // Round up, so 'normal 100%' always jumps at the line line.
4817 // Beyond 21474836 lines, (ml_line_count * 100 + 99) would
4818 // overflow on 32-bits, so use a formula with less accuracy
4819 // to avoid overflows.
4820 if (curbuf->b_ml.ml_line_count >= 21474836)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
4822 / 100L * cap->count0;
4823 else
4824 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
4825 cap->count0 + 99L) / 100L;
Bram Moolenaar1d859e22021-01-28 17:24:58 +01004826 if (curwin->w_cursor.lnum < 1)
4827 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4829 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4830 beginline(BL_SOL | BL_FIX);
4831 }
4832 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004833 else // "%" : go to matching paren
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 {
4835 cap->oap->motion_type = MCHAR;
4836 cap->oap->use_reg_one = TRUE;
4837 if ((pos = findmatch(cap->oap, NUL)) == NULL)
4838 clearopbeep(cap->oap);
4839 else
4840 {
4841 setpcmark();
4842 curwin->w_cursor = *pos;
4843 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 }
4847 }
4848#ifdef FEAT_FOLDING
4849 if (cap->oap->op_type == OP_NOP
4850 && lnum != curwin->w_cursor.lnum
4851 && (fdo_flags & FDO_PERCENT)
4852 && KeyTyped)
4853 foldOpenCursor();
4854#endif
4855}
4856
4857/*
4858 * Handle "(" and ")" commands.
4859 * cap->arg is BACKWARD for "(" and FORWARD for ")".
4860 */
4861 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004862nv_brace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863{
4864 cap->oap->motion_type = MCHAR;
4865 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004866 // The motion used to be inclusive for "(", but that is not what Vi does.
Bram Moolenaarebefac62005-12-28 22:39:57 +00004867 cap->oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 curwin->w_set_curswant = TRUE;
4869
4870 if (findsent(cap->arg, cap->count1) == FAIL)
4871 clearopbeep(cap->oap);
4872 else
4873 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004874 // Don't leave the cursor on the NUL past end of line.
Bram Moolenaar1f14d572008-01-12 16:12:10 +00004875 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877#ifdef FEAT_FOLDING
4878 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4879 foldOpenCursor();
4880#endif
4881 }
4882}
4883
4884/*
4885 * "m" command: Mark a position.
4886 */
4887 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004888nv_mark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889{
4890 if (!checkclearop(cap->oap))
4891 {
4892 if (setmark(cap->nchar) == FAIL)
4893 clearopbeep(cap->oap);
4894 }
4895}
4896
4897/*
4898 * "{" and "}" commands.
4899 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
4900 */
4901 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004902nv_findpar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903{
4904 cap->oap->motion_type = MCHAR;
4905 cap->oap->inclusive = FALSE;
4906 cap->oap->use_reg_one = TRUE;
4907 curwin->w_set_curswant = TRUE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004908 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 clearopbeep(cap->oap);
4910 else
4911 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913#ifdef FEAT_FOLDING
4914 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4915 foldOpenCursor();
4916#endif
4917 }
4918}
4919
4920/*
4921 * "u" command: Undo or make lower case.
4922 */
4923 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004924nv_undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004926 if (cap->oap->op_type == OP_LOWER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004928 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 cap->cmdchar = 'g';
4930 cap->nchar = 'u';
4931 nv_operator(cap);
4932 }
4933 else
4934 nv_kundo(cap);
4935}
4936
4937/*
4938 * <Undo> command.
4939 */
4940 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004941nv_kundo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942{
4943 if (!checkclearopq(cap->oap))
4944 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02004945#ifdef FEAT_JOB_CHANNEL
4946 if (bt_prompt(curbuf))
4947 {
4948 clearopbeep(cap->oap);
4949 return;
4950 }
4951#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 u_undo((int)cap->count1);
4953 curwin->w_set_curswant = TRUE;
4954 }
4955}
4956
4957/*
4958 * Handle the "r" command.
4959 */
4960 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004961nv_replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962{
4963 char_u *ptr;
4964 int had_ctrl_v;
4965 long n;
4966
4967 if (checkclearop(cap->oap))
4968 return;
Bram Moolenaarf2732452018-06-03 14:47:35 +02004969#ifdef FEAT_JOB_CHANNEL
4970 if (bt_prompt(curbuf) && !prompt_curpos_editable())
4971 {
4972 clearopbeep(cap->oap);
4973 return;
4974 }
4975#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004977 // get another character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 if (cap->nchar == Ctrl_V)
4979 {
4980 had_ctrl_v = Ctrl_V;
Bram Moolenaar0684e362020-12-03 19:54:42 +01004981 cap->nchar = get_literal(FALSE);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004982 // Don't redo a multibyte character with CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 if (cap->nchar > DEL)
4984 had_ctrl_v = NUL;
4985 }
4986 else
4987 had_ctrl_v = NUL;
4988
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004989 // Abort if the character is a special key.
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00004990 if (IS_SPECIAL(cap->nchar))
4991 {
4992 clearopbeep(cap->oap);
4993 return;
4994 }
4995
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004996 // Visual mode "r"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 if (VIsual_active)
4998 {
Bram Moolenaar57fb0da2009-02-04 10:46:25 +00004999 if (got_int)
5000 reset_VIsual();
Bram Moolenaard9820532013-11-04 01:41:17 +01005001 if (had_ctrl_v)
5002 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005003 // Use a special (negative) number to make a difference between a
5004 // literal CR or NL and a line break.
Bram Moolenaarf12519d2018-02-06 22:52:49 +01005005 if (cap->nchar == CAR)
5006 cap->nchar = REPLACE_CR_NCHAR;
5007 else if (cap->nchar == NL)
5008 cap->nchar = REPLACE_NL_NCHAR;
Bram Moolenaard9820532013-11-04 01:41:17 +01005009 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 nv_operator(cap);
5011 return;
5012 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005014 // Break tabs, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 if (virtual_active())
5016 {
5017 if (u_save_cursor() == FAIL)
5018 return;
5019 if (gchar_cursor() == NUL)
5020 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005021 // Add extra space and put the cursor on the first one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 coladvance_force((colnr_T)(getviscol() + cap->count1));
5023 curwin->w_cursor.col -= cap->count1;
5024 }
5025 else if (gchar_cursor() == TAB)
5026 coladvance_force(getviscol());
5027 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005029 // Abort if not enough characters to replace.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 ptr = ml_get_cursor();
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00005031 if (STRLEN(ptr) < (unsigned)cap->count1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005032 || (has_mbyte && mb_charlen(ptr) < cap->count1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 {
5034 clearopbeep(cap->oap);
5035 return;
5036 }
5037
5038 /*
5039 * Replacing with a TAB is done by edit() when it is complicated because
5040 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
5041 * Other characters are done below to avoid problems with things like
5042 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
5043 */
5044 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
5045 {
5046 stuffnumReadbuff(cap->count1);
5047 stuffcharReadbuff('R');
5048 stuffcharReadbuff('\t');
5049 stuffcharReadbuff(ESC);
5050 return;
5051 }
5052
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005053 // save line for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 if (u_save_cursor() == FAIL)
5055 return;
5056
5057 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
5058 {
5059 /*
5060 * Replace character(s) by a single newline.
5061 * Strange vi behaviour: Only one newline is inserted.
5062 * Delete the characters here.
5063 * Insert the newline with an insert command, takes care of
5064 * autoindent. The insert command depends on being on the last
5065 * character of a line or not.
5066 */
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005067 (void)del_chars(cap->count1, FALSE); // delete the characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 stuffcharReadbuff('\r');
5069 stuffcharReadbuff(ESC);
5070
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005071 // Give 'r' to edit(), to get the redo command right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 invoke_edit(cap, TRUE, 'r', FALSE);
5073 }
5074 else
5075 {
5076 prep_redo(cap->oap->regname, cap->count1,
5077 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
5078
5079 curbuf->b_op_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 if (has_mbyte)
5081 {
5082 int old_State = State;
5083
5084 if (cap->ncharC1 != 0)
5085 AppendCharToRedobuff(cap->ncharC1);
5086 if (cap->ncharC2 != 0)
5087 AppendCharToRedobuff(cap->ncharC2);
5088
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005089 // This is slow, but it handles replacing a single-byte with a
5090 // multi-byte and the other way around. Also handles adding
5091 // composing characters for utf-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 for (n = cap->count1; n > 0; --n)
5093 {
5094 State = REPLACE;
Bram Moolenaar8320da42012-04-30 18:18:47 +02005095 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5096 {
5097 int c = ins_copychar(curwin->w_cursor.lnum
5098 + (cap->nchar == Ctrl_Y ? -1 : 1));
5099 if (c != NUL)
5100 ins_char(c);
5101 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005102 // will be decremented further down
Bram Moolenaar8320da42012-04-30 18:18:47 +02005103 ++curwin->w_cursor.col;
5104 }
5105 else
5106 ins_char(cap->nchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 State = old_State;
5108 if (cap->ncharC1 != 0)
5109 ins_char(cap->ncharC1);
5110 if (cap->ncharC2 != 0)
5111 ins_char(cap->ncharC2);
5112 }
5113 }
5114 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 {
5116 /*
5117 * Replace the characters within one line.
5118 */
5119 for (n = cap->count1; n > 0; --n)
5120 {
5121 /*
5122 * Get ptr again, because u_save and/or showmatch() will have
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005123 * released the line. This may also happen in ins_copychar().
5124 * At the same time we let know that the line will be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 */
Bram Moolenaar8320da42012-04-30 18:18:47 +02005126 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5127 {
5128 int c = ins_copychar(curwin->w_cursor.lnum
5129 + (cap->nchar == Ctrl_Y ? -1 : 1));
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005130
5131 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005132 if (c != NUL)
5133 ptr[curwin->w_cursor.col] = c;
5134 }
5135 else
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005136 {
5137 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005138 ptr[curwin->w_cursor.col] = cap->nchar;
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005139 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 if (p_sm && msg_silent == 0)
5141 showmatch(cap->nchar);
5142 ++curwin->w_cursor.col;
5143 }
5144#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005145 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005147 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148
Bram Moolenaar009b2592004-10-24 19:18:58 +00005149 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005150 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005152 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 }
5154#endif
5155
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005156 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 changed_bytes(curwin->w_cursor.lnum,
5158 (colnr_T)(curwin->w_cursor.col - cap->count1));
5159 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005160 --curwin->w_cursor.col; // cursor on the last replaced char
5161 // if the character on the left of the current cursor is a multi-byte
5162 // character, move two characters left
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 if (has_mbyte)
5164 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 curbuf->b_op_end = curwin->w_cursor;
5166 curwin->w_set_curswant = TRUE;
5167 set_last_insert(cap->nchar);
5168 }
5169}
5170
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171/*
5172 * 'o': Exchange start and end of Visual area.
5173 * 'O': same, but in block mode exchange left and right corners.
5174 */
5175 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005176v_swap_corners(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177{
5178 pos_T old_cursor;
5179 colnr_T left, right;
5180
5181 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
5182 {
5183 old_cursor = curwin->w_cursor;
5184 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
5185 curwin->w_cursor.lnum = VIsual.lnum;
5186 coladvance(left);
5187 VIsual = curwin->w_cursor;
5188
5189 curwin->w_cursor.lnum = old_cursor.lnum;
5190 curwin->w_curswant = right;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005191 // 'selection "exclusive" and cursor at right-bottom corner: move it
5192 // right one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
5194 ++curwin->w_curswant;
5195 coladvance(curwin->w_curswant);
5196 if (curwin->w_cursor.col == old_cursor.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 && (!virtual_active()
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005198 || curwin->w_cursor.coladd == old_cursor.coladd))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199 {
5200 curwin->w_cursor.lnum = VIsual.lnum;
5201 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
5202 ++right;
5203 coladvance(right);
5204 VIsual = curwin->w_cursor;
5205
5206 curwin->w_cursor.lnum = old_cursor.lnum;
5207 coladvance(left);
5208 curwin->w_curswant = left;
5209 }
5210 }
5211 else
5212 {
5213 old_cursor = curwin->w_cursor;
5214 curwin->w_cursor = VIsual;
5215 VIsual = old_cursor;
5216 curwin->w_set_curswant = TRUE;
5217 }
5218}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005219
5220/*
5221 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
5222 */
5223 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005224nv_Replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005226 if (VIsual_active) // "R" is replace lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 {
5228 cap->cmdchar = 'c';
5229 cap->nchar = NUL;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005230 VIsual_mode_orig = VIsual_mode; // remember original area for gv
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 VIsual_mode = 'V';
5232 nv_operator(cap);
5233 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005234 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 {
5236 if (!curbuf->b_p_ma)
Bram Moolenaar108010a2021-06-27 22:03:33 +02005237 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 else
5239 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 if (virtual_active())
5241 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
5243 }
5244 }
5245}
5246
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247/*
5248 * "gr".
5249 */
5250 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005251nv_vreplace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 if (VIsual_active)
5254 {
5255 cap->cmdchar = 'r';
5256 cap->nchar = cap->extra_char;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005257 nv_replace(cap); // Do same as "r" in Visual mode for now
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005259 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 {
5261 if (!curbuf->b_p_ma)
Bram Moolenaar108010a2021-06-27 22:03:33 +02005262 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 else
5264 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005265 if (cap->extra_char == Ctrl_V) // get another character
Bram Moolenaar0684e362020-12-03 19:54:42 +01005266 cap->extra_char = get_literal(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 stuffcharReadbuff(cap->extra_char);
5268 stuffcharReadbuff(ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 if (virtual_active())
5270 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 invoke_edit(cap, TRUE, 'v', FALSE);
5272 }
5273 }
5274}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275
5276/*
5277 * Swap case for "~" command, when it does not work like an operator.
5278 */
5279 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005280n_swapchar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281{
5282 long n;
5283 pos_T startpos;
5284 int did_change = 0;
5285#ifdef FEAT_NETBEANS_INTG
5286 pos_T pos;
5287 char_u *ptr;
5288 int count;
5289#endif
5290
5291 if (checkclearopq(cap->oap))
5292 return;
5293
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005294 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 {
5296 clearopbeep(cap->oap);
5297 return;
5298 }
5299
5300 prep_redo_cmd(cap);
5301
5302 if (u_save_cursor() == FAIL)
5303 return;
5304
5305 startpos = curwin->w_cursor;
5306#ifdef FEAT_NETBEANS_INTG
5307 pos = startpos;
5308#endif
5309 for (n = cap->count1; n > 0; --n)
5310 {
5311 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
5312 inc_cursor();
5313 if (gchar_cursor() == NUL)
5314 {
5315 if (vim_strchr(p_ww, '~') != NULL
5316 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5317 {
5318#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005319 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 {
5321 if (did_change)
5322 {
5323 ptr = ml_get(pos.lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005324 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005325 netbeans_removed(curbuf, pos.lnum, pos.col,
5326 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005328 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 }
5330 pos.col = 0;
5331 pos.lnum++;
5332 }
5333#endif
5334 ++curwin->w_cursor.lnum;
5335 curwin->w_cursor.col = 0;
5336 if (n > 1)
5337 {
5338 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
5339 break;
5340 u_clearline();
5341 }
5342 }
5343 else
5344 break;
5345 }
5346 }
5347#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005348 if (did_change && netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 {
5350 ptr = ml_get(pos.lnum);
5351 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005352 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
5353 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 }
5355#endif
5356
5357
5358 check_cursor();
5359 curwin->w_set_curswant = TRUE;
5360 if (did_change)
5361 {
5362 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
5363 0L);
5364 curbuf->b_op_start = startpos;
5365 curbuf->b_op_end = curwin->w_cursor;
5366 if (curbuf->b_op_end.col > 0)
5367 --curbuf->b_op_end.col;
5368 }
5369}
5370
5371/*
5372 * Move cursor to mark.
5373 */
5374 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005375nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376{
5377 if (check_mark(pos) == FAIL)
5378 clearop(cap->oap);
5379 else
5380 {
5381 if (cap->cmdchar == '\''
5382 || cap->cmdchar == '`'
5383 || cap->cmdchar == '['
5384 || cap->cmdchar == ']')
5385 setpcmark();
5386 curwin->w_cursor = *pos;
5387 if (flag)
5388 beginline(BL_WHITE | BL_FIX);
5389 else
5390 check_cursor();
5391 }
5392 cap->oap->motion_type = flag ? MLINE : MCHAR;
5393 if (cap->cmdchar == '`')
5394 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005395 cap->oap->inclusive = FALSE; // ignored if not MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 curwin->w_set_curswant = TRUE;
5397}
5398
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399/*
5400 * Handle commands that are operators in Visual mode.
5401 */
5402 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005403v_visop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404{
5405 static char_u trans[] = "YyDdCcxdXdAAIIrr";
5406
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005407 // Uppercase means linewise, except in block mode, then "D" deletes till
5408 // the end of the line, and "C" replaces till EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 if (isupper(cap->cmdchar))
5410 {
5411 if (VIsual_mode != Ctrl_V)
Bram Moolenaara390bb62013-03-13 19:02:41 +01005412 {
5413 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005415 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
5417 curwin->w_curswant = MAXCOL;
5418 }
5419 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
5420 nv_operator(cap);
5421}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422
5423/*
5424 * "s" and "S" commands.
5425 */
5426 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005427nv_subst(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428{
Bram Moolenaard96ff162018-02-18 22:13:29 +01005429#ifdef FEAT_TERMINAL
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005430 // When showing output of term_dumpdiff() swap the top and bottom.
Bram Moolenaard96ff162018-02-18 22:13:29 +01005431 if (term_swap_diff() == OK)
5432 return;
5433#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005434#ifdef FEAT_JOB_CHANNEL
5435 if (bt_prompt(curbuf) && !prompt_curpos_editable())
5436 {
5437 clearopbeep(cap->oap);
5438 return;
5439 }
5440#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005441 if (VIsual_active) // "vs" and "vS" are the same as "vc"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 {
5443 if (cap->cmdchar == 'S')
Bram Moolenaara390bb62013-03-13 19:02:41 +01005444 {
5445 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 cap->cmdchar = 'c';
5449 nv_operator(cap);
5450 }
5451 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 nv_optrans(cap);
5453}
5454
5455/*
5456 * Abbreviated commands.
5457 */
5458 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005459nv_abbrev(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460{
5461 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005462 cap->cmdchar = 'x'; // DEL key behaves like 'x'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005464 // in Visual mode these commands are operators
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465 if (VIsual_active)
5466 v_visop(cap);
5467 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 nv_optrans(cap);
5469}
5470
5471/*
5472 * Translate a command into another command.
5473 */
5474 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005475nv_optrans(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476{
5477 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
5478 (char_u *)"d$", (char_u *)"c$",
5479 (char_u *)"cl", (char_u *)"cc",
5480 (char_u *)"yy", (char_u *)":s\r"};
5481 static char_u *str = (char_u *)"xXDCsSY&";
5482
5483 if (!checkclearopq(cap->oap))
5484 {
Bram Moolenaar7a9bd7c2019-09-17 22:42:55 +02005485 // In Vi "2D" doesn't delete the next line. Can't translate it
5486 // either, because "2." should also not use the count.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005487 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
5488 {
5489 cap->oap->start = curwin->w_cursor;
5490 cap->oap->op_type = OP_DELETE;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00005491#ifdef FEAT_EVAL
5492 set_op_var(OP_DELETE);
5493#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005494 cap->count1 = 1;
5495 nv_dollar(cap);
5496 finish_op = TRUE;
5497 ResetRedobuff();
5498 AppendCharToRedobuff('D');
5499 }
5500 else
5501 {
5502 if (cap->count0)
5503 stuffnumReadbuff(cap->count0);
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02005504 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005505 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 }
5507 cap->opcount = 0;
5508}
5509
5510/*
5511 * "'" and "`" commands. Also for "g'" and "g`".
5512 * cap->arg is TRUE for "'" and "g'".
5513 */
5514 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005515nv_gomark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516{
5517 pos_T *pos;
5518 int c;
5519#ifdef FEAT_FOLDING
Bram Moolenaar8754deb2013-01-17 13:24:08 +01005520 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005521 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522#endif
5523
5524 if (cap->cmdchar == 'g')
5525 c = cap->extra_char;
5526 else
5527 c = cap->nchar;
5528 pos = getmark(c, (cap->oap->op_type == OP_NOP));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005529 if (pos == (pos_T *)-1) // jumped to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 {
5531 if (cap->arg)
5532 {
5533 check_cursor_lnum();
5534 beginline(BL_WHITE | BL_FIX);
5535 }
5536 else
5537 check_cursor();
5538 }
5539 else
5540 nv_cursormark(cap, cap->arg, pos);
5541
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005542 // May need to clear the coladd that a mark includes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 if (!virtual_active())
5544 curwin->w_cursor.coladd = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02005545 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546#ifdef FEAT_FOLDING
5547 if (cap->oap->op_type == OP_NOP
Bram Moolenaar15364d72013-01-24 21:00:20 +01005548 && pos != NULL
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005549 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 && (fdo_flags & FDO_MARK)
5551 && old_KeyTyped)
5552 foldOpenCursor();
5553#endif
5554}
5555
5556/*
Bram Moolenaar62a23252020-08-09 14:04:42 +02005557 * Handle CTRL-O, CTRL-I, "g;", "g," and "CTRL-Tab" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 */
5559 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005560nv_pcmark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561{
5562#ifdef FEAT_JUMPLIST
5563 pos_T *pos;
5564# ifdef FEAT_FOLDING
5565 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005566 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567# endif
5568
5569 if (!checkclearopq(cap->oap))
5570 {
Bram Moolenaar62a23252020-08-09 14:04:42 +02005571 if (cap->cmdchar == TAB && mod_mask == MOD_MASK_CTRL)
5572 {
5573 if (goto_tabpage_lastused() == FAIL)
5574 clearopbeep(cap->oap);
5575 return;
5576 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577 if (cap->cmdchar == 'g')
5578 pos = movechangelist((int)cap->count1);
5579 else
5580 pos = movemark((int)cap->count1);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005581 if (pos == (pos_T *)-1) // jump to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 {
5583 curwin->w_set_curswant = TRUE;
5584 check_cursor();
5585 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005586 else if (pos != NULL) // can jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 nv_cursormark(cap, FALSE, pos);
5588 else if (cap->cmdchar == 'g')
5589 {
5590 if (curbuf->b_changelistlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005591 emsg(_("E664: changelist is empty"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 else if (cap->count1 < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005593 emsg(_("E662: At start of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005595 emsg(_("E663: At end of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 }
5597 else
5598 clearopbeep(cap->oap);
5599# ifdef FEAT_FOLDING
5600 if (cap->oap->op_type == OP_NOP
5601 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
5602 && (fdo_flags & FDO_MARK)
5603 && old_KeyTyped)
5604 foldOpenCursor();
5605# endif
5606 }
5607#else
5608 clearopbeep(cap->oap);
5609#endif
5610}
5611
5612/*
5613 * Handle '"' command.
5614 */
5615 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005616nv_regname(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617{
5618 if (checkclearop(cap->oap))
5619 return;
5620#ifdef FEAT_EVAL
5621 if (cap->nchar == '=')
5622 cap->nchar = get_expr_register();
5623#endif
5624 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
5625 {
5626 cap->oap->regname = cap->nchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005627 cap->opcount = cap->count0; // remember count before '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628#ifdef FEAT_EVAL
5629 set_reg_var(cap->oap->regname);
5630#endif
5631 }
5632 else
5633 clearopbeep(cap->oap);
5634}
5635
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636/*
5637 * Handle "v", "V" and "CTRL-V" commands.
5638 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
5639 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005640 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005641 */
5642 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005643nv_visual(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644{
Bram Moolenaardf177f62005-02-22 08:39:57 +00005645 if (cap->cmdchar == Ctrl_Q)
5646 cap->cmdchar = Ctrl_V;
5647
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005648 // 'v', 'V' and CTRL-V can be used while an operator is pending to make it
5649 // characterwise, linewise, or blockwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650 if (cap->oap->op_type != OP_NOP)
5651 {
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01005652 motion_force = cap->oap->motion_force = cap->cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005653 finish_op = FALSE; // operator doesn't finish now but later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 return;
5655 }
5656
5657 VIsual_select = cap->arg;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005658 if (VIsual_active) // change Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005660 if (VIsual_mode == cap->cmdchar) // stop visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005661 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005662 else // toggle char/block mode
5663 { // or char/line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664 VIsual_mode = cap->cmdchar;
5665 showmode();
=?UTF-8?q?Magnus=20Gro=C3=9F?=f1e88762021-09-12 13:39:55 +02005666 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005668 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005670 else // start Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671 {
5672 check_visual_highlight();
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005673 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005675 // use previously selected part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676 VIsual = curwin->w_cursor;
5677
5678 VIsual_active = TRUE;
5679 VIsual_reselect = TRUE;
5680 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005681 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 setmouse();
Bram Moolenaar09df3122006-01-23 22:23:09 +00005684 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005685 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686 /*
5687 * For V and ^V, we multiply the number of lines even if there
5688 * was only one -- webb
5689 */
5690 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
5691 {
5692 curwin->w_cursor.lnum +=
5693 resel_VIsual_line_count * cap->count0 - 1;
Bram Moolenaarb07626d2021-10-11 15:40:43 +01005694 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 }
5696 VIsual_mode = resel_VIsual_mode;
5697 if (VIsual_mode == 'v')
5698 {
5699 if (resel_VIsual_line_count <= 1)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005700 {
5701 validate_virtcol();
5702 curwin->w_curswant = curwin->w_virtcol
5703 + resel_VIsual_vcol * cap->count0 - 1;
5704 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005706 curwin->w_curswant = resel_VIsual_vcol;
5707 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 }
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005709 if (resel_VIsual_vcol == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005710 {
5711 curwin->w_curswant = MAXCOL;
5712 coladvance((colnr_T)MAXCOL);
5713 }
5714 else if (VIsual_mode == Ctrl_V)
5715 {
5716 validate_virtcol();
5717 curwin->w_curswant = curwin->w_virtcol
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005718 + resel_VIsual_vcol * cap->count0 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 coladvance(curwin->w_curswant);
5720 }
5721 else
5722 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005723 redraw_curbuf_later(INVERTED); // show the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 }
5725 else
5726 {
5727 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005728 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729 may_start_select('c');
5730 n_start_visual_mode(cap->cmdchar);
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005731 if (VIsual_mode != 'V' && *p_sel == 'e')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005732 ++cap->count1; // include one more char
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005733 if (cap->count0 > 0 && --cap->count1 > 0)
5734 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005735 // With a count select that many characters or lines.
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005736 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
5737 nv_right(cap);
5738 else if (VIsual_mode == 'V')
5739 nv_down(cap);
5740 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 }
5742 }
5743}
5744
5745/*
5746 * Start selection for Shift-movement keys.
5747 */
5748 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005749start_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005751 // if 'selectmode' contains "key", start Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005752 may_start_select('k');
5753 n_start_visual_mode('v');
5754}
5755
5756/*
5757 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
5758 */
5759 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005760may_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761{
5762 VIsual_select = (stuff_empty() && typebuf_typed()
5763 && (vim_strchr(p_slm, c) != NULL));
5764}
5765
5766/*
5767 * Start Visual mode "c".
5768 * Should set VIsual_select before calling this.
5769 */
5770 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005771n_start_visual_mode(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772{
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005773#ifdef FEAT_CONCEAL
Bram Moolenaarea042672021-06-29 20:22:32 +02005774 int cursor_line_was_concealed = curwin->w_p_cole > 0
5775 && conceal_cursor_line(curwin);
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005776#endif
5777
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778 VIsual_mode = c;
5779 VIsual_active = TRUE;
5780 VIsual_reselect = TRUE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=f1e88762021-09-12 13:39:55 +02005781 trigger_modechanged();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005782
5783 // Corner case: the 0 position in a tab may change when going into
Bram Moolenaar4b96df52020-01-26 22:00:26 +01005784 // virtualedit. Recalculate curwin->w_cursor to avoid bad highlighting.
Gary Johnson53ba05b2021-07-26 22:19:10 +02005785 if (c == Ctrl_V && (get_ve_flags() & VE_BLOCK) && gchar_cursor() == TAB)
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005786 {
5787 validate_virtcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788 coladvance(curwin->w_virtcol);
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005789 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790 VIsual = curwin->w_cursor;
5791
5792#ifdef FEAT_FOLDING
5793 foldAdjustVisual();
5794#endif
5795
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796 setmouse();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005797#ifdef FEAT_CONCEAL
Bram Moolenaarea042672021-06-29 20:22:32 +02005798 // Check if redraw is needed after changing the state.
5799 conceal_check_cursor_line(cursor_line_was_concealed);
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005800#endif
5801
Bram Moolenaar09df3122006-01-23 22:23:09 +00005802 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005803 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005805 // Make sure the clipboard gets updated. Needed because start and
5806 // end may still be the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807 clip_star.vmode = NUL;
5808#endif
5809
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005810 // Only need to redraw this line, unless still need to redraw an old
5811 // Visual area (when 'lazyredraw' is set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812 if (curwin->w_redr_type < INVERTED)
5813 {
5814 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
5815 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
5816 }
5817}
5818
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819
5820/*
5821 * CTRL-W: Window commands
5822 */
5823 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005824nv_window(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825{
Bram Moolenaar938783d2017-07-16 20:13:26 +02005826 if (cap->nchar == ':')
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005827 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005828 // "CTRL-W :" is the same as typing ":"; useful in a terminal window
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005829 cap->cmdchar = ':';
5830 cap->nchar = NUL;
Bram Moolenaar938783d2017-07-16 20:13:26 +02005831 nv_colon(cap);
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005832 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02005833 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005834 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835}
5836
5837/*
5838 * CTRL-Z: Suspend
5839 */
5840 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005841nv_suspend(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842{
5843 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 if (VIsual_active)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005845 end_visual_mode(); // stop Visual mode
Bram Moolenaar100118c2020-12-11 19:30:34 +01005846 do_cmdline_cmd((char_u *)"stop");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847}
5848
5849/*
5850 * Commands starting with "g".
5851 */
5852 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005853nv_g_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854{
5855 oparg_T *oap = cap->oap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 pos_T tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 int i;
5858 int flag = FALSE;
5859
5860 switch (cap->nchar)
5861 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005862 case Ctrl_A:
5863 case Ctrl_X:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864#ifdef MEM_PROFILE
5865 /*
5866 * "g^A": dump log of used memory.
5867 */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005868 if (!VIsual_active && cap->nchar == Ctrl_A)
5869 vim_mem_profile_dump();
5870 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005872 /*
5873 * "g^A/g^X": sequentially increment visually selected region
5874 */
5875 if (VIsual_active)
5876 {
5877 cap->arg = TRUE;
5878 cap->cmdchar = cap->nchar;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005879 cap->nchar = NUL;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005880 nv_addsub(cap);
5881 }
5882 else
5883 clearopbeep(oap);
5884 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 /*
5887 * "gR": Enter virtual replace mode.
5888 */
5889 case 'R':
5890 cap->arg = TRUE;
5891 nv_Replace(cap);
5892 break;
5893
5894 case 'r':
5895 nv_vreplace(cap);
5896 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897
5898 case '&':
5899 do_cmdline_cmd((char_u *)"%s//~/&");
5900 break;
5901
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 /*
5903 * "gv": Reselect the previous Visual area. If Visual already active,
5904 * exchange previous and current Visual area.
5905 */
5906 case 'v':
5907 if (checkclearop(oap))
5908 break;
5909
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005910 if ( curbuf->b_visual.vi_start.lnum == 0
5911 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
5912 || curbuf->b_visual.vi_end.lnum == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913 beep_flush();
5914 else
5915 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005916 // set w_cursor to the start of the Visual area, tpos to the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917 if (VIsual_active)
5918 {
5919 i = VIsual_mode;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005920 VIsual_mode = curbuf->b_visual.vi_mode;
5921 curbuf->b_visual.vi_mode = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922# ifdef FEAT_EVAL
5923 curbuf->b_visual_mode_eval = i;
5924# endif
5925 i = curwin->w_curswant;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005926 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5927 curbuf->b_visual.vi_curswant = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005929 tpos = curbuf->b_visual.vi_end;
5930 curbuf->b_visual.vi_end = curwin->w_cursor;
5931 curwin->w_cursor = curbuf->b_visual.vi_start;
5932 curbuf->b_visual.vi_start = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 }
5934 else
5935 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005936 VIsual_mode = curbuf->b_visual.vi_mode;
5937 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5938 tpos = curbuf->b_visual.vi_end;
5939 curwin->w_cursor = curbuf->b_visual.vi_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940 }
5941
5942 VIsual_active = TRUE;
5943 VIsual_reselect = TRUE;
5944
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005945 // Set Visual to the start and w_cursor to the end of the Visual
5946 // area. Make sure they are on an existing character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947 check_cursor();
5948 VIsual = curwin->w_cursor;
5949 curwin->w_cursor = tpos;
5950 check_cursor();
5951 update_topline();
5952 /*
5953 * When called from normal "g" command: start Select mode when
5954 * 'selectmode' contains "cmd". When called for K_SELECT, always
5955 * start Select mode.
5956 */
5957 if (cap->arg)
5958 VIsual_select = TRUE;
5959 else
5960 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005963 // Make sure the clipboard gets updated. Needed because start and
5964 // end are still the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 clip_star.vmode = NUL;
5966#endif
5967 redraw_curbuf_later(INVERTED);
5968 showmode();
5969 }
5970 break;
5971 /*
5972 * "gV": Don't reselect the previous Visual area after a Select mode
5973 * mapping of menu.
5974 */
5975 case 'V':
5976 VIsual_reselect = FALSE;
5977 break;
5978
5979 /*
5980 * "gh": start Select mode.
5981 * "gH": start Select line mode.
5982 * "g^H": start Select block mode.
5983 */
5984 case K_BS:
5985 cap->nchar = Ctrl_H;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005986 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005987 case 'h':
5988 case 'H':
5989 case Ctrl_H:
5990# ifdef EBCDIC
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005991 // EBCDIC: 'v'-'h' != '^v'-'^h'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005992 if (cap->nchar == Ctrl_H)
5993 cap->cmdchar = Ctrl_V;
5994 else
5995# endif
5996 cap->cmdchar = cap->nchar + ('v' - 'h');
5997 cap->arg = TRUE;
5998 nv_visual(cap);
5999 break;
Bram Moolenaar641e2862012-07-25 15:06:34 +02006000
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006001 // "gn", "gN" visually select next/previous search match
6002 // "gn" selects next match
6003 // "gN" selects previous match
Bram Moolenaar641e2862012-07-25 15:06:34 +02006004 case 'N':
6005 case 'n':
6006 if (!current_search(cap->count1, cap->nchar == 'n'))
Bram Moolenaarf00dc262012-10-21 03:54:33 +02006007 clearopbeep(oap);
Bram Moolenaar641e2862012-07-25 15:06:34 +02006008 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009
6010 /*
6011 * "gj" and "gk" two new funny movement keys -- up and down
6012 * movement based on *screen* line rather than *file* line.
6013 */
6014 case 'j':
6015 case K_DOWN:
Bram Moolenaare71996b2021-01-21 17:03:07 +01006016 // with 'nowrap' it works just like the normal "j" command.
6017 if (!curwin->w_p_wrap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018 {
6019 oap->motion_type = MLINE;
6020 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
6021 }
6022 else
6023 i = nv_screengo(oap, FORWARD, cap->count1);
6024 if (i == FAIL)
6025 clearopbeep(oap);
6026 break;
6027
6028 case 'k':
6029 case K_UP:
Bram Moolenaare71996b2021-01-21 17:03:07 +01006030 // with 'nowrap' it works just like the normal "k" command.
6031 if (!curwin->w_p_wrap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032 {
6033 oap->motion_type = MLINE;
6034 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
6035 }
6036 else
6037 i = nv_screengo(oap, BACKWARD, cap->count1);
6038 if (i == FAIL)
6039 clearopbeep(oap);
6040 break;
6041
6042 /*
6043 * "gJ": join two lines without inserting a space.
6044 */
6045 case 'J':
6046 nv_join(cap);
6047 break;
6048
6049 /*
6050 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
6051 * "gm": middle of "g0" and "g$".
6052 */
6053 case '^':
6054 flag = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006055 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056
6057 case '0':
6058 case 'm':
6059 case K_HOME:
6060 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 oap->motion_type = MCHAR;
6062 oap->inclusive = FALSE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006063 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006065 int width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006066 int width2 = width1 + curwin_col_off2();
6067
6068 validate_virtcol();
6069 i = 0;
6070 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
6071 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
6072 }
6073 else
6074 i = curwin->w_leftcol;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006075 // Go to the middle of the screen line. When 'number' or
6076 // 'relativenumber' is on and lines are wrapping the middle can be more
6077 // to the left.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006078 if (cap->nchar == 'm')
Bram Moolenaar02631462017-09-22 15:20:32 +02006079 i += (curwin->w_width - curwin_col_off()
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080 + ((curwin->w_p_wrap && i > 0)
6081 ? curwin_col_off2() : 0)) / 2;
6082 coladvance((colnr_T)i);
6083 if (flag)
6084 {
6085 do
6086 i = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01006087 while (VIM_ISWHITE(i) && oneright() == OK);
Bram Moolenaarf9514162018-11-22 03:08:29 +01006088 curwin->w_valid &= ~VALID_WCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 }
6090 curwin->w_set_curswant = TRUE;
6091 break;
6092
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006093 case 'M':
6094 {
6095 char_u *ptr = ml_get_curline();
6096
6097 oap->motion_type = MCHAR;
6098 oap->inclusive = FALSE;
6099 if (has_mbyte)
Bram Moolenaar69bf6342019-10-29 04:16:57 +01006100 i = mb_string2cells(ptr, (int)STRLEN(ptr));
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006101 else
6102 i = (int)STRLEN(ptr);
6103 if (cap->count0 > 0 && cap->count0 <= 100)
6104 coladvance((colnr_T)(i * cap->count0 / 100));
6105 else
6106 coladvance((colnr_T)(i / 2));
6107 curwin->w_set_curswant = TRUE;
6108 }
6109 break;
6110
Bram Moolenaar071d4272004-06-13 20:20:40 +00006111 case '_':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006112 // "g_": to the last non-blank character in the line or <count> lines
6113 // downward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114 cap->oap->motion_type = MCHAR;
6115 cap->oap->inclusive = TRUE;
6116 curwin->w_curswant = MAXCOL;
6117 if (cursor_down((long)(cap->count1 - 1),
6118 cap->oap->op_type == OP_NOP) == FAIL)
6119 clearopbeep(cap->oap);
6120 else
6121 {
6122 char_u *ptr = ml_get_curline();
6123
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006124 // In Visual mode we may end up after the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
6126 --curwin->w_cursor.col;
6127
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006128 // Decrease the cursor column until it's on a non-blank.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129 while (curwin->w_cursor.col > 0
Bram Moolenaar1c465442017-03-12 20:10:05 +01006130 && VIM_ISWHITE(ptr[curwin->w_cursor.col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131 --curwin->w_cursor.col;
6132 curwin->w_set_curswant = TRUE;
Bram Moolenaar5890b2c2010-01-12 15:42:37 +01006133 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134 }
6135 break;
6136
6137 case '$':
6138 case K_END:
6139 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140 {
6141 int col_off = curwin_col_off();
6142
6143 oap->motion_type = MCHAR;
6144 oap->inclusive = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006145 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006147 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148 if (cap->count1 == 1)
6149 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006150 int width1 = curwin->w_width - col_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151 int width2 = width1 + curwin_col_off2();
6152
6153 validate_virtcol();
6154 i = width1 - 1;
6155 if (curwin->w_virtcol >= (colnr_T)width1)
6156 i += ((curwin->w_virtcol - width1) / width2 + 1)
6157 * width2;
6158 coladvance((colnr_T)i);
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006159
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006160 // Make sure we stick in this column.
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006161 validate_virtcol();
6162 curwin->w_curswant = curwin->w_virtcol;
6163 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
6165 {
6166 /*
6167 * Check for landing on a character that got split at
6168 * the end of the line. We do not want to advance to
6169 * the next screen line.
6170 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 if (curwin->w_virtcol > (colnr_T)i)
6172 --curwin->w_cursor.col;
6173 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174 }
6175 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
6176 clearopbeep(oap);
6177 }
6178 else
6179 {
Bram Moolenaard5c82342019-07-27 18:44:57 +02006180 if (cap->count1 > 1)
6181 // if it fails, let the cursor still move to the last char
Bram Moolenaar9c272a92019-08-16 21:54:27 +02006182 (void)cursor_down(cap->count1 - 1, FALSE);
Bram Moolenaard5c82342019-07-27 18:44:57 +02006183
Bram Moolenaar02631462017-09-22 15:20:32 +02006184 i = curwin->w_leftcol + curwin->w_width - col_off - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006185 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006186
Bram Moolenaar74ede802021-05-29 19:18:01 +02006187 // if the character doesn't fit move one back
6188 if (curwin->w_cursor.col > 0
6189 && (*mb_ptr2cells)(ml_get_cursor()) > 1)
6190 {
6191 colnr_T vcol;
6192
6193 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &vcol);
6194 if (vcol >= curwin->w_leftcol + curwin->w_width - col_off)
6195 --curwin->w_cursor.col;
6196 }
6197
Bram Moolenaard5c82342019-07-27 18:44:57 +02006198 // Make sure we stick in this column.
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006199 validate_virtcol();
6200 curwin->w_curswant = curwin->w_virtcol;
6201 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202 }
6203 }
6204 break;
6205
6206 /*
6207 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
6208 */
6209 case '*':
6210 case '#':
6211#if POUND != '#'
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006212 case POUND: // pound sign (sometimes equal to '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006214 case Ctrl_RSB: // :tag or :tselect for current identifier
6215 case ']': // :tselect for current identifier
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216 nv_ident(cap);
6217 break;
6218
6219 /*
6220 * ge and gE: go back to end of word
6221 */
6222 case 'e':
6223 case 'E':
6224 oap->motion_type = MCHAR;
6225 curwin->w_set_curswant = TRUE;
6226 oap->inclusive = TRUE;
6227 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
6228 clearopbeep(oap);
6229 break;
6230
6231 /*
6232 * "g CTRL-G": display info about cursor position
6233 */
6234 case Ctrl_G:
Bram Moolenaared767a22016-01-03 22:49:16 +01006235 cursor_pos_info(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006236 break;
6237
6238 /*
6239 * "gi": start Insert at the last position.
6240 */
6241 case 'i':
6242 if (curbuf->b_last_insert.lnum != 0)
6243 {
6244 curwin->w_cursor = curbuf->b_last_insert;
6245 check_cursor_lnum();
6246 i = (int)STRLEN(ml_get_curline());
6247 if (curwin->w_cursor.col > (colnr_T)i)
6248 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 if (virtual_active())
6250 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251 curwin->w_cursor.col = i;
6252 }
6253 }
6254 cap->cmdchar = 'i';
6255 nv_edit(cap);
6256 break;
6257
6258 /*
6259 * "gI": Start insert in column 1.
6260 */
6261 case 'I':
6262 beginline(0);
6263 if (!checkclearopq(oap))
6264 invoke_edit(cap, FALSE, 'g', FALSE);
6265 break;
6266
6267#ifdef FEAT_SEARCHPATH
6268 /*
6269 * "gf": goto file, edit file under cursor
6270 * "]f" and "[f": can also be used.
6271 */
6272 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006273 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006274 nv_gotofile(cap);
6275 break;
6276#endif
6277
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006278 // "g'm" and "g`m": jump to mark without setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279 case '\'':
6280 cap->arg = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006281 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 case '`':
6283 nv_gomark(cap);
6284 break;
6285
6286 /*
6287 * "gs": Goto sleep.
6288 */
6289 case 's':
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01006290 do_sleep(cap->count1 * 1000L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291 break;
6292
6293 /*
6294 * "ga": Display the ascii value of the character under the
6295 * cursor. It is displayed in decimal, hex, and octal. -- webb
6296 */
6297 case 'a':
6298 do_ascii(NULL);
6299 break;
6300
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301 /*
6302 * "g8": Display the bytes used for the UTF-8 character under the
6303 * cursor. It is displayed in hex.
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006304 * "8g8" finds illegal byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305 */
6306 case '8':
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006307 if (cap->count0 == 8)
6308 utf_find_illegal();
6309 else
6310 show_utf8();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006313 // "g<": show scrollback text
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00006314 case '<':
6315 show_sb_text();
6316 break;
6317
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318 /*
6319 * "gg": Goto the first line in file. With a count it goes to
6320 * that line number like for "G". -- webb
6321 */
6322 case 'g':
6323 cap->arg = FALSE;
6324 nv_goto(cap);
6325 break;
6326
6327 /*
6328 * Two-character operators:
6329 * "gq" Format text
6330 * "gw" Format text and keep cursor position
6331 * "g~" Toggle the case of the text.
6332 * "gu" Change text to lower case.
6333 * "gU" Change text to upper case.
6334 * "g?" rot13 encoding
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006335 * "g@" call 'operatorfunc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336 */
6337 case 'q':
6338 case 'w':
6339 oap->cursor_start = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006340 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341 case '~':
6342 case 'u':
6343 case 'U':
6344 case '?':
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006345 case '@':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346 nv_operator(cap);
6347 break;
6348
6349 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00006350 * "gd": Find first occurrence of pattern under the cursor in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351 * current function
6352 * "gD": idem, but in the current file.
6353 */
6354 case 'd':
6355 case 'D':
Bram Moolenaarf75a9632005-09-13 21:20:47 +00006356 nv_gd(oap, cap->nchar, (int)cap->count0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357 break;
6358
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359 /*
6360 * g<*Mouse> : <C-*mouse>
6361 */
6362 case K_MIDDLEMOUSE:
6363 case K_MIDDLEDRAG:
6364 case K_MIDDLERELEASE:
6365 case K_LEFTMOUSE:
6366 case K_LEFTDRAG:
6367 case K_LEFTRELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01006368 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369 case K_RIGHTMOUSE:
6370 case K_RIGHTDRAG:
6371 case K_RIGHTRELEASE:
6372 case K_X1MOUSE:
6373 case K_X1DRAG:
6374 case K_X1RELEASE:
6375 case K_X2MOUSE:
6376 case K_X2DRAG:
6377 case K_X2RELEASE:
6378 mod_mask = MOD_MASK_CTRL;
6379 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
6380 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381
6382 case K_IGNORE:
6383 break;
6384
6385 /*
6386 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
6387 */
6388 case 'p':
6389 case 'P':
6390 nv_put(cap);
6391 break;
6392
6393#ifdef FEAT_BYTEOFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006394 // "go": goto byte count from start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00006395 case 'o':
6396 goto_byte(cap->count0);
6397 break;
6398#endif
6399
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006400 // "gQ": improved Ex mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 case 'Q':
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006402 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006403 {
6404 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006405 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406 break;
6407 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006408
Bram Moolenaar071d4272004-06-13 20:20:40 +00006409 if (!checkclearopq(oap))
6410 do_exmode(TRUE);
6411 break;
6412
6413#ifdef FEAT_JUMPLIST
6414 case ',':
6415 nv_pcmark(cap);
6416 break;
6417
6418 case ';':
6419 cap->count1 = -cap->count1;
6420 nv_pcmark(cap);
6421 break;
6422#endif
6423
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006424 case 't':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006425 if (!checkclearop(oap))
6426 goto_tabpage((int)cap->count0);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006427 break;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006428 case 'T':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006429 if (!checkclearop(oap))
6430 goto_tabpage(-(int)cap->count1);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006431 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006432
Bram Moolenaar62a23252020-08-09 14:04:42 +02006433 case TAB:
6434 if (!checkclearop(oap) && goto_tabpage_lastused() == FAIL)
6435 clearopbeep(oap);
6436 break;
6437
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006438 case '+':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006439 case '-': // "g+" and "g-": undo or redo along the timeline
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006440 if (!checkclearopq(oap))
Bram Moolenaard3667a22006-03-16 21:35:52 +00006441 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
Bram Moolenaar730cde92010-06-27 05:18:54 +02006442 FALSE, FALSE, FALSE);
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006443 break;
6444
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445 default:
6446 clearopbeep(oap);
6447 break;
6448 }
6449}
6450
6451/*
6452 * Handle "o" and "O" commands.
6453 */
6454 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006455n_opencmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456{
Bram Moolenaar860cae12010-06-05 23:22:07 +02006457#ifdef FEAT_CONCEAL
6458 linenr_T oldline = curwin->w_cursor.lnum;
6459#endif
6460
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461 if (!checkclearopq(cap->oap))
6462 {
6463#ifdef FEAT_FOLDING
6464 if (cap->cmdchar == 'O')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006465 // Open above the first line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006466 (void)hasFolding(curwin->w_cursor.lnum,
6467 &curwin->w_cursor.lnum, NULL);
6468 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006469 // Open below the last line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006470 (void)hasFolding(curwin->w_cursor.lnum,
6471 NULL, &curwin->w_cursor.lnum);
6472#endif
6473 if (u_save((linenr_T)(curwin->w_cursor.lnum -
6474 (cap->cmdchar == 'O' ? 1 : 0)),
6475 (linenr_T)(curwin->w_cursor.lnum +
6476 (cap->cmdchar == 'o' ? 1 : 0))
6477 ) == OK
6478 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02006479 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0,
6480 0) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02006482#ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02006483 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01006484 redrawWinline(curwin, oldline);
Bram Moolenaar860cae12010-06-05 23:22:07 +02006485#endif
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006486#ifdef FEAT_SYN_HL
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006487 if (curwin->w_p_cul)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006488 // force redraw of cursorline
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006489 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006490#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006491 // When '#' is in 'cpoptions' ignore the count.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006492 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
6493 cap->count1 = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
6495 }
6496 }
6497}
6498
6499/*
6500 * "." command: redo last change.
6501 */
6502 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006503nv_dot(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006504{
6505 if (!checkclearopq(cap->oap))
6506 {
6507 /*
6508 * If "restart_edit" is TRUE, the last but one command is repeated
6509 * instead of the last command (inserting text). This is used for
6510 * CTRL-O <.> in insert mode.
6511 */
6512 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
6513 clearopbeep(cap->oap);
6514 }
6515}
6516
6517/*
6518 * CTRL-R: undo undo
6519 */
6520 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006521nv_redo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522{
6523 if (!checkclearopq(cap->oap))
6524 {
6525 u_redo((int)cap->count1);
6526 curwin->w_set_curswant = TRUE;
6527 }
6528}
6529
6530/*
6531 * Handle "U" command.
6532 */
6533 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006534nv_Undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006536 // In Visual mode and typing "gUU" triggers an operator
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006537 if (cap->oap->op_type == OP_UPPER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006538 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006539 // translate "gUU" to "gUgU"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006540 cap->cmdchar = 'g';
6541 cap->nchar = 'U';
6542 nv_operator(cap);
6543 }
6544 else if (!checkclearopq(cap->oap))
6545 {
6546 u_undoline();
6547 curwin->w_set_curswant = TRUE;
6548 }
6549}
6550
6551/*
6552 * '~' command: If tilde is not an operator and Visual is off: swap case of a
6553 * single character.
6554 */
6555 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006556nv_tilde(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006557{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006558 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE)
Bram Moolenaarf2732452018-06-03 14:47:35 +02006559 {
6560#ifdef FEAT_JOB_CHANNEL
6561 if (bt_prompt(curbuf) && !prompt_curpos_editable())
6562 {
6563 clearopbeep(cap->oap);
6564 return;
6565 }
6566#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567 n_swapchar(cap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006568 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006569 else
6570 nv_operator(cap);
6571}
6572
6573/*
6574 * Handle an operator command.
6575 * The actual work is done by do_pending_operator().
6576 */
6577 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006578nv_operator(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006579{
6580 int op_type;
6581
6582 op_type = get_op_type(cap->cmdchar, cap->nchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006583#ifdef FEAT_JOB_CHANNEL
6584 if (bt_prompt(curbuf) && op_is_change(op_type) && !prompt_curpos_editable())
6585 {
6586 clearopbeep(cap->oap);
6587 return;
6588 }
6589#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006590
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006591 if (op_type == cap->oap->op_type) // double operator works on lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592 nv_lineop(cap);
6593 else if (!checkclearop(cap->oap))
6594 {
6595 cap->oap->start = curwin->w_cursor;
6596 cap->oap->op_type = op_type;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006597#ifdef FEAT_EVAL
6598 set_op_var(op_type);
6599#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006600 }
6601}
6602
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006603#ifdef FEAT_EVAL
6604/*
6605 * Set v:operator to the characters for "optype".
6606 */
6607 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006608set_op_var(int optype)
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006609{
6610 char_u opchars[3];
6611
6612 if (optype == OP_NOP)
6613 set_vim_var_string(VV_OP, NULL, 0);
6614 else
6615 {
6616 opchars[0] = get_op_char(optype);
6617 opchars[1] = get_extra_op_char(optype);
6618 opchars[2] = NUL;
6619 set_vim_var_string(VV_OP, opchars, -1);
6620 }
6621}
6622#endif
6623
Bram Moolenaar071d4272004-06-13 20:20:40 +00006624/*
6625 * Handle linewise operator "dd", "yy", etc.
6626 *
6627 * "_" is is a strange motion command that helps make operators more logical.
6628 * It is actually implemented, but not documented in the real Vi. This motion
6629 * command actually refers to "the current line". Commands like "dd" and "yy"
6630 * are really an alternate form of "d_" and "y_". It does accept a count, so
6631 * "d3_" works to delete 3 lines.
6632 */
6633 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006634nv_lineop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635{
6636 cap->oap->motion_type = MLINE;
6637 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
6638 clearopbeep(cap->oap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006639 else if ( (cap->oap->op_type == OP_DELETE // only with linewise motions
Bram Moolenaar83dadaf2012-12-12 17:33:32 +01006640 && cap->oap->motion_force != 'v'
6641 && cap->oap->motion_force != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006642 || cap->oap->op_type == OP_LSHIFT
6643 || cap->oap->op_type == OP_RSHIFT)
6644 beginline(BL_SOL | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006645 else if (cap->oap->op_type != OP_YANK) // 'Y' does not move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00006646 beginline(BL_WHITE | BL_FIX);
6647}
6648
6649/*
6650 * <Home> command.
6651 */
6652 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006653nv_home(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006655 // CTRL-HOME is like "gg"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006656 if (mod_mask & MOD_MASK_CTRL)
6657 nv_goto(cap);
6658 else
6659 {
6660 cap->count0 = 1;
6661 nv_pipe(cap);
6662 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006663 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6664 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006665}
6666
6667/*
6668 * "|" command.
6669 */
6670 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006671nv_pipe(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672{
6673 cap->oap->motion_type = MCHAR;
6674 cap->oap->inclusive = FALSE;
6675 beginline(0);
6676 if (cap->count0 > 0)
6677 {
6678 coladvance((colnr_T)(cap->count0 - 1));
6679 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
6680 }
6681 else
6682 curwin->w_curswant = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006683 // keep curswant at the column where we wanted to go, not where
6684 // we ended; differs if line is too short
Bram Moolenaar071d4272004-06-13 20:20:40 +00006685 curwin->w_set_curswant = FALSE;
6686}
6687
6688/*
6689 * Handle back-word command "b" and "B".
6690 * cap->arg is 1 for "B"
6691 */
6692 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006693nv_bck_word(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006694{
6695 cap->oap->motion_type = MCHAR;
6696 cap->oap->inclusive = FALSE;
6697 curwin->w_set_curswant = TRUE;
6698 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
6699 clearopbeep(cap->oap);
6700#ifdef FEAT_FOLDING
6701 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6702 foldOpenCursor();
6703#endif
6704}
6705
6706/*
6707 * Handle word motion commands "e", "E", "w" and "W".
6708 * cap->arg is TRUE for "E" and "W".
6709 */
6710 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006711nv_wordcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712{
6713 int n;
6714 int word_end;
6715 int flag = FALSE;
Bram Moolenaardfefb982008-04-01 10:06:39 +00006716 pos_T startpos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006717
6718 /*
6719 * Set inclusive for the "E" and "e" command.
6720 */
6721 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
6722 word_end = TRUE;
6723 else
6724 word_end = FALSE;
6725 cap->oap->inclusive = word_end;
6726
6727 /*
6728 * "cw" and "cW" are a special case.
6729 */
6730 if (!word_end && cap->oap->op_type == OP_CHANGE)
6731 {
6732 n = gchar_cursor();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006733 if (n != NUL) // not an empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01006735 if (VIM_ISWHITE(n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736 {
6737 /*
6738 * Reproduce a funny Vi behaviour: "cw" on a blank only
6739 * changes one character, not all blanks until the start of
6740 * the next word. Only do this when the 'w' flag is included
6741 * in 'cpoptions'.
6742 */
6743 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
6744 {
6745 cap->oap->inclusive = TRUE;
6746 cap->oap->motion_type = MCHAR;
6747 return;
6748 }
6749 }
6750 else
6751 {
6752 /*
6753 * This is a little strange. To match what the real Vi does,
6754 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
6755 * that we are not on a space or a TAB. This seems impolite
6756 * at first, but it's really more what we mean when we say
6757 * 'cw'.
6758 * Another strangeness: When standing on the end of a word
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02006759 * "ce" will change until the end of the next word, but "cw"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006760 * will change only one character! This is done by setting
6761 * flag.
6762 */
6763 cap->oap->inclusive = TRUE;
6764 word_end = TRUE;
6765 flag = TRUE;
6766 }
6767 }
6768 }
6769
6770 cap->oap->motion_type = MCHAR;
6771 curwin->w_set_curswant = TRUE;
6772 if (word_end)
6773 n = end_word(cap->count1, cap->arg, flag, FALSE);
6774 else
6775 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
6776
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006777 // Don't leave the cursor on the NUL past the end of line. Unless we
6778 // didn't move it forward.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006779 if (LT_POS(startpos, curwin->w_cursor))
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006780 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781
6782 if (n == FAIL && cap->oap->op_type == OP_NOP)
6783 clearopbeep(cap->oap);
6784 else
6785 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006786 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006787#ifdef FEAT_FOLDING
6788 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6789 foldOpenCursor();
6790#endif
6791 }
6792}
6793
6794/*
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006795 * Used after a movement command: If the cursor ends up on the NUL after the
6796 * end of the line, may move it back to the last character and make the motion
6797 * inclusive.
6798 */
6799 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006800adjust_cursor(oparg_T *oap)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006801{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006802 // The cursor cannot remain on the NUL when:
6803 // - the column is > 0
6804 // - not in Visual mode or 'selection' is "o"
6805 // - 'virtualedit' is not "all" and not "onemore".
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006806 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006807 && (!VIsual_active || *p_sel == 'o')
Gary Johnson53ba05b2021-07-26 22:19:10 +02006808 && !virtual_active() && (get_ve_flags() & VE_ONEMORE) == 0)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006809 {
6810 --curwin->w_cursor.col;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006811 // prevent cursor from moving on the trail byte
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006812 if (has_mbyte)
6813 mb_adjust_cursor();
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006814 oap->inclusive = TRUE;
6815 }
6816}
6817
6818/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006819 * "0" and "^" commands.
6820 * cap->arg is the argument for beginline().
6821 */
6822 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006823nv_beginline(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006824{
6825 cap->oap->motion_type = MCHAR;
6826 cap->oap->inclusive = FALSE;
6827 beginline(cap->arg);
6828#ifdef FEAT_FOLDING
6829 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6830 foldOpenCursor();
6831#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006832 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6833 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006834}
6835
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836/*
6837 * In exclusive Visual mode, may include the last character.
6838 */
6839 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006840adjust_for_sel(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006841{
6842 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006843 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006844 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845 if (has_mbyte)
6846 inc_cursor();
6847 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848 ++curwin->w_cursor.col;
6849 cap->oap->inclusive = FALSE;
6850 }
6851}
6852
6853/*
6854 * Exclude last character at end of Visual area for 'selection' == "exclusive".
6855 * Should check VIsual_mode before calling this.
6856 * Returns TRUE when backed up to the previous line.
6857 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02006858 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006859unadjust_for_sel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006860{
6861 pos_T *pp;
6862
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006863 if (*p_sel == 'e' && !EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006865 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866 pp = &curwin->w_cursor;
6867 else
6868 pp = &VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006869 if (pp->coladd > 0)
6870 --pp->coladd;
6871 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006872 if (pp->col > 0)
6873 {
6874 --pp->col;
Bram Moolenaar03a807a2011-07-07 15:08:58 +02006875 mb_adjustpos(curbuf, pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876 }
6877 else if (pp->lnum > 1)
6878 {
6879 --pp->lnum;
6880 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
6881 return TRUE;
6882 }
6883 }
6884 return FALSE;
6885}
6886
6887/*
6888 * SELECT key in Normal or Visual mode: end of Select mode mapping.
6889 */
6890 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006891nv_select(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006892{
6893 if (VIsual_active)
6894 VIsual_select = TRUE;
6895 else if (VIsual_reselect)
6896 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006897 cap->nchar = 'v'; // fake "gv" command
Bram Moolenaar071d4272004-06-13 20:20:40 +00006898 cap->arg = TRUE;
6899 nv_g_cmd(cap);
6900 }
6901}
6902
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903
6904/*
6905 * "G", "gg", CTRL-END, CTRL-HOME.
6906 * cap->arg is TRUE for "G".
6907 */
6908 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006909nv_goto(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910{
6911 linenr_T lnum;
6912
6913 if (cap->arg)
6914 lnum = curbuf->b_ml.ml_line_count;
6915 else
6916 lnum = 1L;
6917 cap->oap->motion_type = MLINE;
6918 setpcmark();
6919
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006920 // When a count is given, use it instead of the default lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921 if (cap->count0 != 0)
6922 lnum = cap->count0;
6923 if (lnum < 1L)
6924 lnum = 1L;
6925 else if (lnum > curbuf->b_ml.ml_line_count)
6926 lnum = curbuf->b_ml.ml_line_count;
6927 curwin->w_cursor.lnum = lnum;
6928 beginline(BL_SOL | BL_FIX);
6929#ifdef FEAT_FOLDING
6930 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
6931 foldOpenCursor();
6932#endif
6933}
6934
6935/*
6936 * CTRL-\ in Normal mode.
6937 */
6938 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006939nv_normal(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940{
6941 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
6942 {
6943 clearop(cap->oap);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00006944 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006945 clear_cmdline = TRUE; // unshow mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00006946 restart_edit = 0;
6947#ifdef FEAT_CMDWIN
6948 if (cmdwin_type != 0)
6949 cmdwin_result = Ctrl_C;
6950#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006951 if (VIsual_active)
6952 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006953 end_visual_mode(); // stop Visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954 redraw_curbuf_later(INVERTED);
6955 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006956 // CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006957 if (cap->nchar == Ctrl_G && p_im)
6958 restart_edit = 'a';
6959 }
6960 else
6961 clearopbeep(cap->oap);
6962}
6963
6964/*
6965 * ESC in Normal mode: beep, but don't flush buffers.
6966 * Don't even beep if we are canceling a command.
6967 */
6968 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006969nv_esc(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006970{
6971 int no_reason;
6972
6973 no_reason = (cap->oap->op_type == OP_NOP
6974 && cap->opcount == 0
6975 && cap->count0 == 0
6976 && cap->oap->regname == 0
6977 && !p_im);
6978
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006979 if (cap->arg) // TRUE for CTRL-C
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980 {
6981 if (restart_edit == 0
6982#ifdef FEAT_CMDWIN
6983 && cmdwin_type == 0
6984#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986 && no_reason)
Bram Moolenaara84a3dd2019-03-25 22:21:24 +01006987 {
6988 if (anyBufIsChanged())
6989 msg(_("Type :qa! and press <Enter> to abandon all changes and exit Vim"));
6990 else
6991 msg(_("Type :qa and press <Enter> to exit Vim"));
6992 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006994 // Don't reset "restart_edit" when 'insertmode' is set, it won't be
6995 // set again below when halfway a mapping.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996 if (!p_im)
6997 restart_edit = 0;
6998#ifdef FEAT_CMDWIN
6999 if (cmdwin_type != 0)
7000 {
7001 cmdwin_result = K_IGNORE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007002 got_int = FALSE; // don't stop executing autocommands et al.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007003 return;
7004 }
7005#endif
7006 }
Bram Moolenaar7d414102021-02-23 19:39:20 +01007007#ifdef FEAT_CMDWIN
7008 else if (cmdwin_type != 0 && ex_normal_busy)
7009 {
7010 // When :normal runs out of characters while in the command line window
7011 // vgetorpeek() will return ESC. Exit the cmdline window to break the
7012 // loop.
7013 cmdwin_result = K_IGNORE;
7014 return;
7015 }
7016#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007017
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018 if (VIsual_active)
7019 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007020 end_visual_mode(); // stop Visual
7021 check_cursor_col(); // make sure cursor is not beyond EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022 curwin->w_set_curswant = TRUE;
7023 redraw_curbuf_later(INVERTED);
7024 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007025 else if (no_reason)
Bram Moolenaar165bc692015-07-21 17:53:25 +02007026 vim_beep(BO_ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007027 clearop(cap->oap);
7028
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007029 // A CTRL-C is often used at the start of a menu. When 'insertmode' is
7030 // set return to Insert mode afterwards.
Bram Moolenaare2c38102016-01-31 14:55:40 +01007031 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032 restart_edit = 'a';
7033}
7034
7035/*
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007036 * Move the cursor for the "A" command.
7037 */
7038 void
7039set_cursor_for_append_to_line(void)
7040{
7041 curwin->w_set_curswant = TRUE;
Gary Johnson53ba05b2021-07-26 22:19:10 +02007042 if (get_ve_flags() == VE_ALL)
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007043 {
7044 int save_State = State;
7045
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007046 // Pretend Insert mode here to allow the cursor on the
7047 // character past the end of the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007048 State = INSERT;
7049 coladvance((colnr_T)MAXCOL);
7050 State = save_State;
7051 }
7052 else
7053 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
7054}
7055
7056/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 * Handle "A", "a", "I", "i" and <Insert> commands.
Bram Moolenaarec2da362017-01-21 20:04:22 +01007058 * Also handle K_PS, start bracketed paste.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059 */
7060 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007061nv_edit(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007063 // <Insert> is equal to "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
7065 cap->cmdchar = 'i';
7066
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007067 // in Visual mode "A" and "I" are an operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
Bram Moolenaareef9add2017-09-16 15:38:04 +02007069 {
7070#ifdef FEAT_TERMINAL
7071 if (term_in_normal_mode())
7072 {
7073 end_visual_mode();
7074 clearop(cap->oap);
7075 term_enter_job_mode();
7076 return;
7077 }
7078#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007079 v_visop(cap);
Bram Moolenaareef9add2017-09-16 15:38:04 +02007080 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007081
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007082 // in Visual mode and after an operator "a" and "i" are for text objects
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007083 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
7084 && (cap->oap->op_type != OP_NOP || VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085 {
7086#ifdef FEAT_TEXTOBJ
7087 nv_object(cap);
7088#else
7089 clearopbeep(cap->oap);
7090#endif
7091 }
Bram Moolenaar662d9382017-07-31 22:56:24 +02007092#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02007093 else if (term_in_normal_mode())
Bram Moolenaar662d9382017-07-31 22:56:24 +02007094 {
7095 clearop(cap->oap);
Bram Moolenaar6d819742017-08-06 14:57:49 +02007096 term_enter_job_mode();
Bram Moolenaar662d9382017-07-31 22:56:24 +02007097 return;
7098 }
7099#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007100 else if (!curbuf->b_p_ma && !p_im)
7101 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007102 // Only give this error when 'insertmode' is off.
Bram Moolenaar108010a2021-06-27 22:03:33 +02007103 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007104 clearop(cap->oap);
Bram Moolenaarec2da362017-01-21 20:04:22 +01007105 if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007106 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01007107 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108 }
Bram Moolenaara1891842017-02-04 21:34:31 +01007109 else if (cap->cmdchar == K_PS && VIsual_active)
7110 {
7111 pos_T old_pos = curwin->w_cursor;
7112 pos_T old_visual = VIsual;
7113
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007114 // In Visual mode the selected text is deleted.
Bram Moolenaara1891842017-02-04 21:34:31 +01007115 if (VIsual_mode == 'V' || curwin->w_cursor.lnum != VIsual.lnum)
7116 {
7117 shift_delete_registers();
7118 cap->oap->regname = '1';
7119 }
7120 else
7121 cap->oap->regname = '-';
7122 cap->cmdchar = 'd';
7123 cap->nchar = NUL;
7124 nv_operator(cap);
7125 do_pending_operator(cap, 0, FALSE);
7126 cap->cmdchar = K_PS;
7127
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007128 // When the last char in the line was deleted then append. Detect this
7129 // by checking if the cursor moved to before the Visual area.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007130 if (*ml_get_cursor() != NUL && LT_POS(curwin->w_cursor, old_pos)
7131 && LT_POS(curwin->w_cursor, old_visual))
Bram Moolenaara1891842017-02-04 21:34:31 +01007132 inc_cursor();
7133
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007134 // Insert to replace the deleted text with the pasted text.
Bram Moolenaara1891842017-02-04 21:34:31 +01007135 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7136 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137 else if (!checkclearopq(cap->oap))
7138 {
7139 switch (cap->cmdchar)
7140 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007141 case 'A': // "A"ppend after the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007142 set_cursor_for_append_to_line();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007143 break;
7144
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007145 case 'I': // "I"nsert before the first non-blank
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007146 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
7147 beginline(BL_WHITE);
7148 else
7149 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150 break;
7151
Bram Moolenaara1891842017-02-04 21:34:31 +01007152 case K_PS:
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007153 // Bracketed paste works like "a"ppend, unless the cursor is in
7154 // the first column, then it inserts.
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007155 if (curwin->w_cursor.col == 0)
7156 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007157 // FALLTHROUGH
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007158
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007159 case 'a': // "a"ppend is like "i"nsert on the next character.
7160 // increment coladd when in virtual space, increment the
7161 // column otherwise, also to append after an unprintable char
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162 if (virtual_active()
7163 && (curwin->w_cursor.coladd > 0
7164 || *ml_get_cursor() == NUL
7165 || *ml_get_cursor() == TAB))
7166 curwin->w_cursor.coladd++;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01007167 else if (*ml_get_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007168 inc_cursor();
7169 break;
7170 }
7171
Bram Moolenaar071d4272004-06-13 20:20:40 +00007172 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
7173 {
7174 int save_State = State;
7175
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007176 // Pretend Insert mode here to allow the cursor on the
7177 // character past the end of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007178 State = INSERT;
7179 coladvance(getviscol());
7180 State = save_State;
7181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007182
7183 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7184 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01007185 else if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007186 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01007187 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007188}
7189
7190/*
7191 * Invoke edit() and take care of "restart_edit" and the return value.
7192 */
7193 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007194invoke_edit(
7195 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007196 int repl, // "r" or "gr" command
Bram Moolenaar9b578142016-01-30 19:39:49 +01007197 int cmd,
7198 int startln)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199{
7200 int restart_edit_save = 0;
7201
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007202 // Complicated: When the user types "a<C-O>a" we don't want to do Insert
7203 // mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
7204 // it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007205 if (repl || !stuff_empty())
7206 restart_edit_save = restart_edit;
7207 else
7208 restart_edit_save = 0;
7209
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007210 // Always reset "restart_edit", this is not a restarted edit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007211 restart_edit = 0;
7212
7213 if (edit(cmd, startln, cap->count1))
7214 cap->retval |= CA_COMMAND_BUSY;
7215
7216 if (restart_edit == 0)
7217 restart_edit = restart_edit_save;
7218}
7219
7220#ifdef FEAT_TEXTOBJ
7221/*
7222 * "a" or "i" while an operator is pending or in Visual mode: object motion.
7223 */
7224 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007225nv_object(
7226 cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007227{
7228 int flag;
7229 int include;
7230 char_u *mps_save;
7231
7232 if (cap->cmdchar == 'i')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007233 include = FALSE; // "ix" = inner object: exclude white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007235 include = TRUE; // "ax" = an object: include white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007236
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007237 // Make sure (), [], {} and <> are in 'matchpairs'
Bram Moolenaar071d4272004-06-13 20:20:40 +00007238 mps_save = curbuf->b_p_mps;
7239 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
7240
7241 switch (cap->nchar)
7242 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007243 case 'w': // "aw" = a word
Bram Moolenaar071d4272004-06-13 20:20:40 +00007244 flag = current_word(cap->oap, cap->count1, include, FALSE);
7245 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007246 case 'W': // "aW" = a WORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 flag = current_word(cap->oap, cap->count1, include, TRUE);
7248 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007249 case 'b': // "ab" = a braces block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250 case '(':
7251 case ')':
7252 flag = current_block(cap->oap, cap->count1, include, '(', ')');
7253 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007254 case 'B': // "aB" = a Brackets block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007255 case '{':
7256 case '}':
7257 flag = current_block(cap->oap, cap->count1, include, '{', '}');
7258 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007259 case '[': // "a[" = a [] block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007260 case ']':
7261 flag = current_block(cap->oap, cap->count1, include, '[', ']');
7262 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007263 case '<': // "a<" = a <> block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007264 case '>':
7265 flag = current_block(cap->oap, cap->count1, include, '<', '>');
7266 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007267 case 't': // "at" = a tag block (xml and html)
7268 // Do not adjust oap->end in do_pending_operator()
7269 // otherwise there are different results for 'dit'
7270 // (note leading whitespace in last line):
7271 // 1) <b> 2) <b>
7272 // foobar foobar
7273 // </b> </b>
Bram Moolenaarb6c27352015-03-05 19:57:49 +01007274 cap->retval |= CA_NO_ADJ_OP_END;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00007275 flag = current_tagblock(cap->oap, cap->count1, include);
7276 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007277 case 'p': // "ap" = a paragraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00007278 flag = current_par(cap->oap, cap->count1, include, 'p');
7279 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007280 case 's': // "as" = a sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00007281 flag = current_sent(cap->oap, cap->count1, include);
7282 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007283 case '"': // "a"" = a double quoted string
7284 case '\'': // "a'" = a single quoted string
7285 case '`': // "a`" = a backtick quoted string
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007286 flag = current_quote(cap->oap, cap->count1, include,
7287 cap->nchar);
7288 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007289#if 0 // TODO
7290 case 'S': // "aS" = a section
7291 case 'f': // "af" = a filename
7292 case 'u': // "au" = a URL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007293#endif
7294 default:
7295 flag = FAIL;
7296 break;
7297 }
7298
7299 curbuf->b_p_mps = mps_save;
7300 if (flag == FAIL)
7301 clearopbeep(cap->oap);
7302 adjust_cursor_col();
7303 curwin->w_set_curswant = TRUE;
7304}
7305#endif
7306
7307/*
7308 * "q" command: Start/stop recording.
7309 * "q:", "q/", "q?": edit command-line in command-line window.
7310 */
7311 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007312nv_record(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007313{
7314 if (cap->oap->op_type == OP_FORMAT)
7315 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007316 // "gqq" is the same as "gqgq": format line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007317 cap->cmdchar = 'g';
7318 cap->nchar = 'q';
7319 nv_operator(cap);
7320 }
7321 else if (!checkclearop(cap->oap))
7322 {
7323#ifdef FEAT_CMDWIN
7324 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
7325 {
7326 stuffcharReadbuff(cap->nchar);
7327 stuffcharReadbuff(K_CMDWIN);
7328 }
7329 else
7330#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007331 // (stop) recording into a named register, unless executing a
7332 // register
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02007333 if (reg_executing == 0 && do_record(cap->nchar) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007334 clearopbeep(cap->oap);
7335 }
7336}
7337
7338/*
7339 * Handle the "@r" command.
7340 */
7341 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007342nv_at(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007343{
7344 if (checkclearop(cap->oap))
7345 return;
7346#ifdef FEAT_EVAL
7347 if (cap->nchar == '=')
7348 {
7349 if (get_expr_register() == NUL)
7350 return;
7351 }
7352#endif
7353 while (cap->count1-- && !got_int)
7354 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00007355 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007356 {
7357 clearopbeep(cap->oap);
7358 break;
7359 }
7360 line_breakcheck();
7361 }
7362}
7363
7364/*
7365 * Handle the CTRL-U and CTRL-D commands.
7366 */
7367 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007368nv_halfpage(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007369{
7370 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
7371 || (cap->cmdchar == Ctrl_D
7372 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
7373 clearopbeep(cap->oap);
7374 else if (!checkclearop(cap->oap))
7375 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
7376}
7377
7378/*
7379 * Handle "J" or "gJ" command.
7380 */
7381 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007382nv_join(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007383{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007384 if (VIsual_active) // join the visual lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00007385 nv_operator(cap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007386 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007387 {
7388 if (cap->count0 <= 1)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007389 cap->count0 = 2; // default for join is two lines!
Bram Moolenaar071d4272004-06-13 20:20:40 +00007390 if (curwin->w_cursor.lnum + cap->count0 - 1 >
7391 curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007392 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007393 // can't join when on the last line
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007394 if (cap->count0 <= 2)
7395 {
7396 clearopbeep(cap->oap);
7397 return;
7398 }
7399 cap->count0 = curbuf->b_ml.ml_line_count
7400 - curwin->w_cursor.lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007401 }
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007402
7403 prep_redo(cap->oap->regname, cap->count0,
7404 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
7405 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007406 }
7407}
7408
7409/*
7410 * "P", "gP", "p" and "gp" commands.
7411 */
7412 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007413nv_put(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007414{
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007415 nv_put_opt(cap, FALSE);
7416}
7417
7418/*
7419 * "P", "gP", "p" and "gp" commands.
7420 * "fix_indent" is TRUE for "[p", "[P", "]p" and "]P".
7421 */
7422 static void
7423nv_put_opt(cmdarg_T *cap, int fix_indent)
7424{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007425 int regname = 0;
7426 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007427 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007428 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007429 int dir;
7430 int flags = 0;
7431
7432 if (cap->oap->op_type != OP_NOP)
7433 {
7434#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007435 // "dp" is ":diffput"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007436 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
7437 {
7438 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007439 nv_diffgetput(TRUE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007440 }
7441 else
7442#endif
7443 clearopbeep(cap->oap);
7444 }
Bram Moolenaarf2732452018-06-03 14:47:35 +02007445#ifdef FEAT_JOB_CHANNEL
7446 else if (bt_prompt(curbuf) && !prompt_curpos_editable())
7447 {
7448 clearopbeep(cap->oap);
7449 }
7450#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007451 else
7452 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007453 if (fix_indent)
7454 {
7455 dir = (cap->cmdchar == ']' && cap->nchar == 'p')
7456 ? FORWARD : BACKWARD;
7457 flags |= PUT_FIXINDENT;
7458 }
7459 else
7460 dir = (cap->cmdchar == 'P'
Christian Brabandt2fa93842021-05-30 22:17:25 +02007461 || ((cap->cmdchar == 'g' || cap->cmdchar == 'z')
7462 && cap->nchar == 'P')) ? BACKWARD : FORWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007463 prep_redo_cmd(cap);
7464 if (cap->cmdchar == 'g')
7465 flags |= PUT_CURSEND;
Christian Brabandt2fa93842021-05-30 22:17:25 +02007466 else if (cap->cmdchar == 'z')
7467 flags |= PUT_BLOCK_INNER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007468
Bram Moolenaar071d4272004-06-13 20:20:40 +00007469 if (VIsual_active)
7470 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007471 // Putting in Visual mode: The put text replaces the selected
7472 // text. First delete the selected text, then put the new text.
7473 // Need to save and restore the registers that the delete
7474 // overwrites if the old contents is being put.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007475 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007476 regname = cap->oap->regname;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007477#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007478 adjust_clip_reg(&regname);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007479#endif
Bram Moolenaar7d311c52014-02-22 23:49:35 +01007480 if (regname == 0 || regname == '"'
Bram Moolenaarba6e8582012-12-12 18:20:32 +01007481 || VIM_ISDIGIT(regname) || regname == '-'
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007482#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007483 || (clip_unnamed && (regname == '*' || regname == '+'))
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007484#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485
7486 )
7487 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007488 // The delete is going to overwrite the register we want to
7489 // put, save it first.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007490 reg1 = get_register(regname, TRUE);
7491 }
7492
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007493 // Now delete the selected text. Avoid messages here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007494 cap->cmdchar = 'd';
7495 cap->nchar = NUL;
7496 cap->oap->regname = NUL;
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007497 ++msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007498 nv_operator(cap);
7499 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007500 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007501 --msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007502
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007503 // delete PUT_LINE_BACKWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007504 cap->oap->regname = regname;
7505
7506 if (reg1 != NULL)
7507 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007508 // Delete probably changed the register we want to put, save
7509 // it first. Then put back what was there before the delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007510 reg2 = get_register(regname, FALSE);
7511 put_register(regname, reg1);
7512 }
7513
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007514 // When deleted a linewise Visual area, put the register as
7515 // lines to avoid it joined with the next line. When deletion was
7516 // characterwise, split a line when putting lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007517 if (VIsual_mode == 'V')
7518 flags |= PUT_LINE;
7519 else if (VIsual_mode == 'v')
7520 flags |= PUT_LINE_SPLIT;
7521 if (VIsual_mode == Ctrl_V && dir == FORWARD)
7522 flags |= PUT_LINE_FORWARD;
7523 dir = BACKWARD;
7524 if ((VIsual_mode != 'V'
7525 && curwin->w_cursor.col < curbuf->b_op_start.col)
7526 || (VIsual_mode == 'V'
7527 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007528 // cursor is at the end of the line or end of file, put
7529 // forward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007530 dir = FORWARD;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007531 // May have been reset in do_put().
Bram Moolenaarec11aef2013-09-22 15:23:44 +02007532 VIsual_active = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007533 }
Bram Moolenaarc3516f72020-09-08 22:45:35 +02007534 do_put(cap->oap->regname, NULL, dir, cap->count1, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007535
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007536 // If a register was saved, put it back now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007537 if (reg2 != NULL)
7538 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007539
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007540 // What to reselect with "gv"? Selecting the just put text seems to
7541 // be the most useful, since the original text was removed.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007542 if (was_visual)
7543 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007544 curbuf->b_visual.vi_start = curbuf->b_op_start;
7545 curbuf->b_visual.vi_end = curbuf->b_op_end;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007546 // need to adjust cursor position
Bram Moolenaard29c6fe2015-11-19 20:11:54 +01007547 if (*p_sel == 'e')
7548 inc(&curbuf->b_visual.vi_end);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007549 }
7550
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007551 // When all lines were selected and deleted do_put() leaves an empty
7552 // line that needs to be deleted now.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007553 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007554 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02007555 ml_delete_flags(curbuf->b_ml.ml_line_count, ML_DEL_MESSAGE);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007556 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1);
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007557
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007558 // If the cursor was in that line, move it to the end of the last
7559 // line.
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007560 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7561 {
7562 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7563 coladvance((colnr_T)MAXCOL);
7564 }
7565 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007566 auto_format(FALSE, TRUE);
7567 }
7568}
7569
7570/*
7571 * "o" and "O" commands.
7572 */
7573 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007574nv_open(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007575{
7576#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007577 // "do" is ":diffget"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007578 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
7579 {
7580 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007581 nv_diffgetput(FALSE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007582 }
7583 else
7584#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007585 if (VIsual_active) // switch start and end of visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00007586 v_swap_corners(cap->cmdchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007587#ifdef FEAT_JOB_CHANNEL
7588 else if (bt_prompt(curbuf))
Bram Moolenaarf2732452018-06-03 14:47:35 +02007589 clearopbeep(cap->oap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007590#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007591 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007592 n_opencmd(cap);
7593}
7594
Bram Moolenaar071d4272004-06-13 20:20:40 +00007595#ifdef FEAT_NETBEANS_INTG
7596 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007597nv_nbcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007598{
7599 netbeans_keycommand(cap->nchar);
7600}
7601#endif
7602
7603#ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007604 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007605nv_drop(cmdarg_T *cap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007606{
Bram Moolenaarc3516f72020-09-08 22:45:35 +02007607 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007608}
7609#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00007610
Bram Moolenaar3918c952005-03-15 22:34:55 +00007611/*
7612 * Trigger CursorHold event.
7613 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
7614 * input buffer. "did_cursorhold" is set to avoid retriggering.
7615 */
Bram Moolenaar3918c952005-03-15 22:34:55 +00007616 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007617nv_cursorhold(cmdarg_T *cap)
Bram Moolenaar3918c952005-03-15 22:34:55 +00007618{
7619 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
7620 did_cursorhold = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007621 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar3918c952005-03-15 22:34:55 +00007622}