blob: f925aa14ab7253b6d3c4194380a694360c1cab0d [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 Moolenaar2228cd72021-11-22 14:16:08 +0000383#ifndef PROTO // cproto doesn't like this
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100384// Sorted index of commands in nv_cmds[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385static short nv_cmd_idx[NV_CMDS_SIZE];
Bram Moolenaar2228cd72021-11-22 14:16:08 +0000386#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100388// The highest index for which
389// nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390static int nv_max_linear;
391
392/*
393 * Compare functions for qsort() below, that checks the command character
394 * through the index in nv_cmd_idx[].
395 */
396 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100397nv_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398{
399 int c1, c2;
400
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100401 // The commands are sorted on absolute value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402 c1 = nv_cmds[*(const short *)s1].cmd_char;
403 c2 = nv_cmds[*(const short *)s2].cmd_char;
404 if (c1 < 0)
405 c1 = -c1;
406 if (c2 < 0)
407 c2 = -c2;
408 return c1 - c2;
409}
410
411/*
412 * Initialize the nv_cmd_idx[] table.
413 */
414 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100415init_normal_cmds(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416{
417 int i;
418
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100419 // Fill the index table with a one to one relation.
Bram Moolenaar78a15312009-05-15 19:33:18 +0000420 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 nv_cmd_idx[i] = i;
422
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100423 // Sort the commands by the command character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
425
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100426 // Find the first entry that can't be indexed by the command character.
Bram Moolenaar78a15312009-05-15 19:33:18 +0000427 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char)
429 break;
430 nv_max_linear = i - 1;
431}
432
433/*
434 * Search for a command in the commands table.
435 * Returns -1 for invalid command.
436 */
437 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100438find_command(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439{
440 int i;
441 int idx;
442 int top, bot;
443 int c;
444
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100445 // A multi-byte character is never a command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446 if (cmdchar >= 0x100)
447 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100449 // We use the absolute value of the character. Special keys have a
450 // negative value, but are sorted on their absolute value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451 if (cmdchar < 0)
452 cmdchar = -cmdchar;
453
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100454 // If the character is in the first part: The character is the index into
455 // nv_cmd_idx[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456 if (cmdchar <= nv_max_linear)
457 return nv_cmd_idx[cmdchar];
458
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100459 // Perform a binary search.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 bot = nv_max_linear + 1;
461 top = NV_CMDS_SIZE - 1;
462 idx = -1;
463 while (bot <= top)
464 {
465 i = (top + bot) / 2;
466 c = nv_cmds[nv_cmd_idx[i]].cmd_char;
467 if (c < 0)
468 c = -c;
469 if (cmdchar == c)
470 {
471 idx = nv_cmd_idx[i];
472 break;
473 }
474 if (cmdchar > c)
475 bot = i + 1;
476 else
477 top = i - 1;
478 }
479 return idx;
480}
481
482/*
483 * Execute a command in Normal mode.
484 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100486normal_cmd(
487 oparg_T *oap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100488 int toplevel UNUSED) // TRUE when called from main()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100490 cmdarg_T ca; // command arguments
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 int c;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100492 int ctrl_w = FALSE; // got CTRL-W command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493 int old_col = curwin->w_curswant;
494#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100495 int need_flushbuf; // need to call out_flush()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100497 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 int mapped_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 static int old_mapped_len = 0;
500 int idx;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000501#ifdef FEAT_EVAL
502 int set_prevcount = FALSE;
503#endif
Bram Moolenaarb146e012020-07-19 23:06:05 +0200504 int save_did_cursorhold = did_cursorhold;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505
Bram Moolenaara80faa82020-04-12 19:37:17 +0200506 CLEAR_FIELD(ca); // also resets ca.retval
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507 ca.oap = oap;
Bram Moolenaara983fe92008-07-31 20:04:27 +0000508
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100509 // Use a count remembered from before entering an operator. After typing
510 // "3d" we return from normal_cmd() and come back here, the "3" is
511 // remembered in "opcount".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 ca.opcount = opcount;
513
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514 /*
515 * If there is an operator pending, then the command we take this time
516 * will terminate it. Finish_op tells us to finish the operation before
517 * returning this time (unless the operation was cancelled).
518 */
519#ifdef CURSOR_SHAPE
520 c = finish_op;
521#endif
522 finish_op = (oap->op_type != OP_NOP);
523#ifdef CURSOR_SHAPE
524 if (finish_op != c)
525 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100526 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527# ifdef FEAT_MOUSESHAPE
528 update_mouseshape(-1);
529# endif
530 }
531#endif
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +0100532 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100534 // When not finishing an operator and no register name typed, reset the
535 // count.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 if (!finish_op && !oap->regname)
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000537 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 ca.opcount = 0;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000539#ifdef FEAT_EVAL
540 set_prevcount = TRUE;
541#endif
542 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100544 // Restore counts from before receiving K_CURSORHOLD. This means after
545 // typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not
546 // "3 * 2".
Bram Moolenaara983fe92008-07-31 20:04:27 +0000547 if (oap->prev_opcount > 0 || oap->prev_count0 > 0)
548 {
549 ca.opcount = oap->prev_opcount;
550 ca.count0 = oap->prev_count0;
551 oap->prev_opcount = 0;
552 oap->prev_count0 = 0;
553 }
Bram Moolenaara983fe92008-07-31 20:04:27 +0000554
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 mapped_len = typebuf_maplen();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556
557 State = NORMAL_BUSY;
558#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100559 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560#endif
561
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100562#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100563 // Set v:count here, when called from main() and not a stuffed
564 // command, so that v:count can be used in an expression mapping
565 // when there is no count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100566 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100567 set_vcount_ca(&ca, &set_prevcount);
568#endif
569
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 /*
571 * Get the command character from the user.
572 */
573 c = safe_vgetc();
Bram Moolenaar25281632016-01-21 23:32:32 +0100574 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575
576 /*
577 * If a mapping was started in Visual or Select mode, remember the length
578 * of the mapping. This is used below to not return to Insert mode for as
579 * long as the mapping is being executed.
580 */
581 if (restart_edit == 0)
582 old_mapped_len = 0;
583 else if (old_mapped_len
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000584 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 old_mapped_len = typebuf_maplen();
586
587 if (c == NUL)
588 c = K_ZERO;
589
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 /*
591 * In Select mode, typed text replaces the selection.
592 */
593 if (VIsual_active
594 && VIsual_select
595 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
596 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100597 // Fake a "c"hange command. When "restart_edit" is set (e.g., because
598 // 'insertmode' is set) fake a "d"elete command, Insert mode will
599 // restart automatically.
600 // Insert the typed character in the typeahead buffer, so that it can
601 // be mapped in Insert mode. Required for ":lmap" to work.
Bram Moolenaarb42c0d52020-05-29 22:41:41 +0200602 ins_char_typebuf(vgetc_char, vgetc_mod_mask);
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000603 if (restart_edit != 0)
604 c = 'd';
605 else
606 c = 'c';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100607 msg_nowait = TRUE; // don't delay going to insert mode
608 old_mapped_len = 0; // do go to Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610
Bram Moolenaard0fb9072021-12-09 11:57:22 +0000611 // If the window was made so small that nothing shows, make it at least one
612 // line and one column when typing a command.
613 if (KeyTyped && !KeyStuffed)
614 win_ensure_size();
615
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616#ifdef FEAT_CMDL_INFO
617 need_flushbuf = add_to_showcmd(c);
618#endif
619
620getcount:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 if (!(VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 {
623 /*
624 * Handle a count before a command and compute ca.count0.
625 * Note that '0' is a command and not the start of a count, but it's
626 * part of a count after other digits.
627 */
628 while ( (c >= '1' && c <= '9')
629 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
630 {
631 if (c == K_DEL || c == K_KDEL)
632 {
633 ca.count0 /= 10;
634#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100635 del_from_showcmd(4); // delete the digit and ~@%
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636#endif
637 }
Bram Moolenaar9b0e82f2021-11-24 13:40:29 +0000638 else if (ca.count0 > 99999999L)
Bram Moolenaar03725c52021-11-24 12:17:53 +0000639 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 ca.count0 = 999999999L;
Bram Moolenaar03725c52021-11-24 12:17:53 +0000641 }
642 else
643 {
644 ca.count0 = ca.count0 * 10 + (c - '0');
645 }
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000646#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100647 // Set v:count here, when called from main() and not a stuffed
648 // command, so that v:count can be used in an expression mapping
649 // right after the count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100650 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100651 set_vcount_ca(&ca, &set_prevcount);
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000652#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 if (ctrl_w)
654 {
655 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100656 ++allow_keys; // no mapping for nchar, but keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100658 ++no_zero_mapping; // don't map zero here
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000659 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 --no_zero_mapping;
662 if (ctrl_w)
663 {
664 --no_mapping;
665 --allow_keys;
666 }
667#ifdef FEAT_CMDL_INFO
668 need_flushbuf |= add_to_showcmd(c);
669#endif
670 }
671
672 /*
673 * If we got CTRL-W there may be a/another count
674 */
675 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
676 {
677 ctrl_w = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100678 ca.opcount = ca.count0; // remember first count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 ca.count0 = 0;
680 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100681 ++allow_keys; // no mapping for nchar, but keys
682 c = plain_vgetc(); // get next character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 --no_mapping;
685 --allow_keys;
686#ifdef FEAT_CMDL_INFO
687 need_flushbuf |= add_to_showcmd(c);
688#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100689 goto getcount; // jump back
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 }
691 }
692
Bram Moolenaara983fe92008-07-31 20:04:27 +0000693 if (c == K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100695 // Save the count values so that ca.opcount and ca.count0 are exactly
696 // the same when coming back here after handling K_CURSORHOLD.
Bram Moolenaara983fe92008-07-31 20:04:27 +0000697 oap->prev_opcount = ca.opcount;
698 oap->prev_count0 = ca.count0;
699 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100700 else if (ca.opcount != 0)
Bram Moolenaara983fe92008-07-31 20:04:27 +0000701 {
702 /*
703 * If we're in the middle of an operator (including after entering a
704 * yank buffer with '"') AND we had a count before the operator, then
705 * that count overrides the current value of ca.count0.
706 * What this means effectively, is that commands like "3dw" get turned
707 * into "d3w" which makes things fall into place pretty neatly.
708 * If you give a count before AND after the operator, they are
709 * multiplied.
710 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 if (ca.count0)
Bram Moolenaar03725c52021-11-24 12:17:53 +0000712 {
713 if (ca.opcount >= 999999999L / ca.count0)
714 ca.count0 = 999999999L;
715 else
716 ca.count0 *= ca.opcount;
717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 else
719 ca.count0 = ca.opcount;
720 }
721
722 /*
723 * Always remember the count. It will be set to zero (on the next call,
724 * above) when there is no pending operator.
725 * When called from main(), save the count for use by the "count" built-in
726 * variable.
727 */
728 ca.opcount = ca.count0;
729 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
730
731#ifdef FEAT_EVAL
732 /*
733 * Only set v:count when called from main() and not a stuffed command.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100734 * Do set it for redo.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100736 if (toplevel && readbuf1_empty())
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000737 set_vcount(ca.count0, ca.count1, set_prevcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738#endif
739
740 /*
741 * Find the command character in the table of commands.
742 * For CTRL-W we already got nchar when looking for a count.
743 */
744 if (ctrl_w)
745 {
746 ca.nchar = c;
747 ca.cmdchar = Ctrl_W;
748 }
749 else
750 ca.cmdchar = c;
751 idx = find_command(ca.cmdchar);
752 if (idx < 0)
753 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100754 // Not a known command: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 clearopbeep(oap);
756 goto normal_end;
757 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +0000758
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000759 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100761 // This command is not allowed while editing a cmdline: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 clearopbeep(oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000763 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 goto normal_end;
765 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000766 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
767 goto normal_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 /*
770 * In Visual/Select mode, a few keys are handled in a special way.
771 */
772 if (VIsual_active)
773 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100774 // when 'keymodel' contains "stopsel" may stop Select/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 if (km_stopsel
776 && (nv_cmds[idx].cmd_flags & NV_STS)
777 && !(mod_mask & MOD_MASK_SHIFT))
778 {
779 end_visual_mode();
780 redraw_curbuf_later(INVERTED);
781 }
782
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100783 // Keys that work different when 'keymodel' contains "startsel"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 if (km_startsel)
785 {
786 if (nv_cmds[idx].cmd_flags & NV_SS)
787 {
788 unshift_special(&ca);
789 idx = find_command(ca.cmdchar);
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000790 if (idx < 0)
791 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100792 // Just in case
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000793 clearopbeep(oap);
794 goto normal_end;
795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 }
797 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
798 && (mod_mask & MOD_MASK_SHIFT))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 mod_mask &= ~MOD_MASK_SHIFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 }
801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802
803#ifdef FEAT_RIGHTLEFT
804 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
805 && (nv_cmds[idx].cmd_flags & NV_RL))
806 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100807 // Invert horizontal movements and operations. Only when typed by the
808 // user directly, not when the result of a mapping or "x" translated
809 // to "dl".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 switch (ca.cmdchar)
811 {
812 case 'l': ca.cmdchar = 'h'; break;
813 case K_RIGHT: ca.cmdchar = K_LEFT; break;
814 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
815 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
816 case 'h': ca.cmdchar = 'l'; break;
817 case K_LEFT: ca.cmdchar = K_RIGHT; break;
818 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
819 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
820 case '>': ca.cmdchar = '<'; break;
821 case '<': ca.cmdchar = '>'; break;
822 }
823 idx = find_command(ca.cmdchar);
824 }
825#endif
826
827 /*
828 * Get an additional character if we need one.
829 */
830 if ((nv_cmds[idx].cmd_flags & NV_NCH)
831 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
832 && oap->op_type == OP_NOP)
833 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
834 || (ca.cmdchar == 'q'
835 && oap->op_type == OP_NOP
Bram Moolenaar0b6d9112018-05-22 20:35:17 +0200836 && reg_recording == 0
837 && reg_executing == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100839 && (oap->op_type != OP_NOP || VIsual_active))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 {
841 int *cp;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100842 int repl = FALSE; // get character for replace mode
843 int lit = FALSE; // get extra character literally
844 int langmap_active = FALSE; // using :lmap mappings
845 int lang; // getting a text character
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100846#ifdef HAVE_INPUT_METHOD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100847 int save_smd; // saved value of p_smd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848#endif
849
850 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100851 ++allow_keys; // no mapping for nchar, but allow key codes
852 // Don't generate a CursorHold event here, most commands can't handle
853 // it, e.g., nv_replace(), nv_csearch().
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +0000854 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 if (ca.cmdchar == 'g')
856 {
857 /*
858 * For 'g' get the next character now, so that we can check for
859 * "gr", "g'" and "g`".
860 */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000861 ca.nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 LANGMAP_ADJUST(ca.nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863#ifdef FEAT_CMDL_INFO
864 need_flushbuf |= add_to_showcmd(ca.nchar);
865#endif
866 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
Bram Moolenaarba2d44f2013-11-28 19:27:30 +0100867 || ca.nchar == Ctrl_BSL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100869 cp = &ca.extra_char; // need to get a third character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 if (ca.nchar != 'r')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100871 lit = TRUE; // get it literally
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100873 repl = TRUE; // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 }
875 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100876 cp = NULL; // no third character needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 }
878 else
879 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100880 if (ca.cmdchar == 'r') // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 repl = TRUE;
882 cp = &ca.nchar;
883 }
884 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
885
886 /*
887 * Get a second or third character.
888 */
889 if (cp != NULL)
890 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 if (repl)
892 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100893 State = REPLACE; // pretend Replace mode
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100894#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100895 ui_cursor_shape(); // show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896#endif
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100897 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
899 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100900 // Allow mappings defined with ":lmap".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 --no_mapping;
902 --allow_keys;
903 if (repl)
904 State = LREPLACE;
905 else
906 State = LANGMAP;
907 langmap_active = TRUE;
908 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100909#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 save_smd = p_smd;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100911 p_smd = FALSE; // Don't let the IM code show the mode here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
913 im_set_active(TRUE);
914#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200915 if ((State & INSERT) && !p_ek)
916 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200917#ifdef FEAT_JOB_CHANNEL
918 ch_log_output = TRUE;
919#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200920 // Disable bracketed paste and modifyOtherKeys here, we won't
921 // recognize the escape sequences with 'esckeys' off.
922 out_str(T_BD);
923 out_str(T_CTE);
924 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000926 *cp = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927
Bram Moolenaarca774f62020-08-30 20:46:38 +0200928 if ((State & INSERT) && !p_ek)
929 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200930#ifdef FEAT_JOB_CHANNEL
931 ch_log_output = TRUE;
932#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200933 // Re-enable bracketed paste mode and modifyOtherKeys
934 out_str(T_BE);
935 out_str(T_CTI);
936 }
937
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 if (langmap_active)
939 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100940 // Undo the decrement done above
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 ++no_mapping;
942 ++allow_keys;
943 State = NORMAL_BUSY;
944 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100945#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 if (lang)
947 {
948 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
949 im_save_status(&curbuf->b_p_iminsert);
950 im_set_active(FALSE);
951 }
952 p_smd = save_smd;
953#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954 State = NORMAL_BUSY;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955#ifdef FEAT_CMDL_INFO
956 need_flushbuf |= add_to_showcmd(*cp);
957#endif
958
959 if (!lit)
960 {
961#ifdef FEAT_DIGRAPHS
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100962 // Typing CTRL-K gets a digraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 if (*cp == Ctrl_K
964 && ((nv_cmds[idx].cmd_flags & NV_LANG)
965 || cp == &ca.extra_char)
966 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
967 {
968 c = get_digraph(FALSE);
969 if (c > 0)
970 {
971 *cp = c;
972# ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100973 // Guessing how to update showcmd here...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 del_from_showcmd(3);
975 need_flushbuf |= add_to_showcmd(*cp);
976# endif
977 }
978 }
979#endif
980
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100981 // adjust chars > 127, except after "tTfFr" commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 LANGMAP_ADJUST(*cp, !lang);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100984 // adjust Hebrew mapped char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 if (p_hkmap && lang && KeyTyped)
986 *cp = hkmap(*cp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987#endif
988 }
989
990 /*
991 * When the next character is CTRL-\ a following CTRL-N means the
992 * command is aborted and we go to Normal mode.
993 */
994 if (cp == &ca.extra_char
995 && ca.nchar == Ctrl_BSL
996 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
997 {
998 ca.cmdchar = Ctrl_BSL;
999 ca.nchar = ca.extra_char;
1000 idx = find_command(ca.cmdchar);
1001 }
Bram Moolenaar12a753a2012-10-23 05:08:53 +02001002 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g')
Bram Moolenaarf00dc262012-10-21 03:54:33 +02001003 ca.oap->op_type = get_op_type(*cp, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 else if (*cp == Ctrl_BSL)
1005 {
1006 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
1007
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001008 // There is a busy wait here when typing "f<C-\>" and then
1009 // something different from CTRL-N. Can't be avoided.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 while ((c = vpeekc()) <= 0 && towait > 0L)
1011 {
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01001012 do_sleep(towait > 50L ? 50L : towait, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 towait -= 50L;
1014 }
1015 if (c > 0)
1016 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001017 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 if (c != Ctrl_N && c != Ctrl_G)
1019 vungetc(c);
1020 else
1021 {
1022 ca.cmdchar = Ctrl_BSL;
1023 ca.nchar = c;
1024 idx = find_command(ca.cmdchar);
1025 }
1026 }
1027 }
1028
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001029 // When getting a text character and the next character is a
1030 // multi-byte character, it could be a composing character.
1031 // However, don't wait for it to arrive. Also, do enable mapping,
1032 // because if it's put back with vungetc() it's too late to apply
1033 // mapping.
Bram Moolenaar4f880622014-07-23 12:31:20 +02001034 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 while (enc_utf8 && lang && (c = vpeekc()) > 0
1036 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1037 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001038 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 if (!utf_iscomposing(c))
1040 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001041 vungetc(c); // it wasn't, put it back
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 break;
1043 }
1044 else if (ca.ncharC1 == 0)
1045 ca.ncharC1 = c;
1046 else
1047 ca.ncharC2 = c;
1048 }
Bram Moolenaar4f880622014-07-23 12:31:20 +02001049 ++no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 }
1051 --no_mapping;
1052 --allow_keys;
1053 }
1054
1055#ifdef FEAT_CMDL_INFO
1056 /*
1057 * Flush the showcmd characters onto the screen so we can see them while
1058 * the command is being executed. Only do this when the shown command was
1059 * actually displayed, otherwise this will slow down a lot when executing
1060 * mappings.
1061 */
1062 if (need_flushbuf)
1063 out_flush();
1064#endif
Bram Moolenaard9205ca2008-10-02 20:55:54 +00001065 if (ca.cmdchar != K_IGNORE)
Bram Moolenaar08815a12020-07-20 23:10:56 +02001066 {
1067 if (ex_normal_busy)
1068 did_cursorhold = save_did_cursorhold;
1069 else
1070 did_cursorhold = FALSE;
1071 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072
1073 State = NORMAL;
1074
1075 if (ca.nchar == ESC)
1076 {
1077 clearop(oap);
1078 if (restart_edit == 0 && goto_im())
1079 restart_edit = 'a';
1080 goto normal_end;
1081 }
1082
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001083 if (ca.cmdchar != K_IGNORE)
1084 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001085 msg_didout = FALSE; // don't scroll screen up for normal command
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001086 msg_col = 0;
1087 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001089 old_pos = curwin->w_cursor; // remember where cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001091 // When 'keymodel' contains "startsel" some keys start Select/Visual
1092 // mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 if (!VIsual_active && km_startsel)
1094 {
1095 if (nv_cmds[idx].cmd_flags & NV_SS)
1096 {
1097 start_selection();
1098 unshift_special(&ca);
1099 idx = find_command(ca.cmdchar);
1100 }
1101 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1102 && (mod_mask & MOD_MASK_SHIFT))
1103 {
1104 start_selection();
1105 mod_mask &= ~MOD_MASK_SHIFT;
1106 }
1107 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108
1109 /*
1110 * Execute the command!
1111 * Call the command function found in the commands table.
1112 */
1113 ca.arg = nv_cmds[idx].cmd_arg;
1114 (nv_cmds[idx].cmd_func)(&ca);
1115
1116 /*
1117 * If we didn't start or finish an operator, reset oap->regname, unless we
1118 * need it later.
1119 */
1120 if (!finish_op
1121 && !oap->op_type
1122 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1123 {
1124 clearop(oap);
1125#ifdef FEAT_EVAL
Bram Moolenaar439c0362020-06-06 15:58:03 +02001126 reset_reg_var();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127#endif
1128 }
1129
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001130 // Get the length of mapped chars again after typing a count, second
1131 // character or "z333<cr>".
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001132 if (old_mapped_len > 0)
1133 old_mapped_len = typebuf_maplen();
1134
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 /*
Bram Moolenaar1ad72c82021-05-04 21:56:28 +02001136 * If an operation is pending, handle it. But not for K_IGNORE or
1137 * K_MOUSEMOVE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 */
Bram Moolenaar1ad72c82021-05-04 21:56:28 +02001139 if (ca.cmdchar != K_IGNORE && ca.cmdchar != K_MOUSEMOVE)
Bram Moolenaarfa5612c2019-12-01 19:37:07 +01001140 do_pending_operator(&ca, old_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141
1142 /*
1143 * Wait for a moment when a message is displayed that will be overwritten
1144 * by the mode message.
1145 * In Visual mode and with "^O" in Insert mode, a short message will be
1146 * overwritten by the mode message. Wait a bit, until a key is hit.
1147 * In Visual mode, it's more important to keep the Visual area updated
1148 * than keeping a message (e.g. from a /pat search).
1149 * Only do this if the command was typed, not from a mapping.
1150 * Don't wait when emsg_silent is non-zero.
1151 * Also wait a bit after an error message, e.g. for "^O:".
1152 * Don't redraw the screen, it would remove the message.
1153 */
1154 if ( ((p_smd
Bram Moolenaar09df3122006-01-23 22:23:09 +00001155 && msg_silent == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 && (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 || (VIsual_active
1158 && old_pos.lnum == curwin->w_cursor.lnum
1159 && old_pos.col == curwin->w_cursor.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 )
1161 && (clear_cmdline
1162 || redraw_cmdline)
1163 && (msg_didout || (msg_didany && msg_scroll))
1164 && !msg_nowait
1165 && KeyTyped)
1166 || (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 && (msg_scroll
1169 || emsg_on_display)))
1170 && oap->regname == 0
1171 && !(ca.retval & CA_COMMAND_BUSY)
1172 && stuff_empty()
1173 && typebuf_typed()
1174 && emsg_silent == 0
Bram Moolenaar28ee8922020-10-28 20:20:00 +01001175 && !in_assert_fails
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 && !did_wait_return
1177 && oap->op_type == OP_NOP)
1178 {
1179 int save_State = State;
1180
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001181 // Draw the cursor with the right shape here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 if (restart_edit != 0)
1183 State = INSERT;
1184
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001185 // If need to redraw, and there is a "keep_msg", redraw before the
1186 // delay
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1188 {
1189 char_u *kmsg;
1190
1191 kmsg = keep_msg;
1192 keep_msg = NULL;
Bram Moolenaar5715b312020-03-16 22:08:45 +01001193 // Showmode() will clear keep_msg, but we want to use it anyway.
1194 // First update w_topline.
1195 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 update_screen(0);
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001197 // now reset it, otherwise it's put in the history again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 keep_msg = kmsg;
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001199
1200 kmsg = vim_strsave(keep_msg);
1201 if (kmsg != NULL)
1202 {
1203 msg_attr((char *)kmsg, keep_msg_attr);
1204 vim_free(kmsg);
1205 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 }
1207 setcursor();
Bram Moolenaar5715b312020-03-16 22:08:45 +01001208#ifdef CURSOR_SHAPE
1209 ui_cursor_shape(); // may show different cursor shape
1210#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 cursor_on();
1212 out_flush();
1213 if (msg_scroll || emsg_on_display)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001214 ui_delay(1003L, TRUE); // wait at least one second
1215 ui_delay(3003L, FALSE); // wait up to three seconds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 State = save_State;
1217
1218 msg_scroll = FALSE;
1219 emsg_on_display = FALSE;
1220 }
1221
1222 /*
1223 * Finish up after executing a Normal mode command.
1224 */
1225normal_end:
1226
1227 msg_nowait = FALSE;
1228
Bram Moolenaarcc613032020-06-07 21:31:18 +02001229#ifdef FEAT_EVAL
1230 if (finish_op)
1231 reset_reg_var();
1232#endif
1233
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001234 // Reset finish_op, in case it was set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235#ifdef CURSOR_SHAPE
1236 c = finish_op;
1237#endif
1238 finish_op = FALSE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001239 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001241 // Redraw the cursor with another shape, if we were in Operator-pending
1242 // mode or did a replace command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 if (c || ca.cmdchar == 'r')
1244 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001245 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246# ifdef FEAT_MOUSESHAPE
1247 update_mouseshape(-1);
1248# endif
1249 }
1250#endif
1251
1252#ifdef FEAT_CMDL_INFO
Bram Moolenaara983fe92008-07-31 20:04:27 +00001253 if (oap->op_type == OP_NOP && oap->regname == 0
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001254 && ca.cmdchar != K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 clear_showcmd();
1256#endif
1257
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001258 checkpcmark(); // check if we moved since setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 vim_free(ca.searchbuf);
1260
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 if (has_mbyte)
1262 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 if (curwin->w_p_scb && toplevel)
1265 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001266 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 do_check_scrollbind(TRUE);
1268 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269
Bram Moolenaar860cae12010-06-05 23:22:07 +02001270 if (curwin->w_p_crb && toplevel)
1271 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001272 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar860cae12010-06-05 23:22:07 +02001273 do_check_cursorbind();
1274 }
Bram Moolenaar860cae12010-06-05 23:22:07 +02001275
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001276#ifdef FEAT_TERMINAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001277 // don't go to Insert mode if a terminal has a running job
Bram Moolenaareef9add2017-09-16 15:38:04 +02001278 if (term_job_running(curbuf->b_term))
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001279 restart_edit = 0;
1280#endif
1281
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 /*
1283 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1284 * if still inside a mapping that started in Visual mode).
1285 * May switch from Visual to Select mode after CTRL-O command.
1286 */
1287 if ( oap->op_type == OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1289 || restart_VIsual_select == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 && !(ca.retval & CA_COMMAND_BUSY)
1291 && stuff_empty()
1292 && oap->regname == 0)
1293 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 if (restart_VIsual_select == 1)
1295 {
1296 VIsual_select = TRUE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001297 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 showmode();
1299 restart_VIsual_select = 0;
1300 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001301 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 (void)edit(restart_edit, FALSE, 1L);
1303 }
1304
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 if (restart_VIsual_select == 2)
1306 restart_VIsual_select = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001308 // Save count before an operator for next time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 opcount = ca.opcount;
1310}
1311
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001312#ifdef FEAT_EVAL
1313/*
1314 * Set v:count and v:count1 according to "cap".
1315 * Set v:prevcount only when "set_prevcount" is TRUE.
1316 */
1317 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001318set_vcount_ca(cmdarg_T *cap, int *set_prevcount)
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001319{
1320 long count = cap->count0;
1321
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001322 // multiply with cap->opcount the same way as above
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001323 if (cap->opcount != 0)
1324 count = cap->opcount * (count == 0 ? 1 : count);
1325 set_vcount(count, count == 0 ? 1 : count, *set_prevcount);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001326 *set_prevcount = FALSE; // only set v:prevcount once
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001327}
1328#endif
1329
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330/*
Bram Moolenaar5715b312020-03-16 22:08:45 +01001331 * Check if highlighting for Visual mode is possible, give a warning message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 * if not.
1333 */
1334 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001335check_visual_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336{
1337 static int did_check = FALSE;
1338
1339 if (full_screen)
1340 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001341 if (!did_check && HL_ATTR(HLF_V) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001342 msg(_("Warning: terminal cannot highlight"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 did_check = TRUE;
1344 }
1345}
1346
Bram Moolenaarfccbf062020-11-26 20:34:00 +01001347#if defined(FEAT_CLIPBOARD) && defined(FEAT_EVAL)
1348/*
1349 * Call yank_do_autocmd() for "regname".
1350 */
1351 static void
1352call_yank_do_autocmd(int regname)
1353{
1354 oparg_T oa;
1355 yankreg_T *reg;
1356
1357 clear_oparg(&oa);
1358 oa.regname = regname;
1359 oa.op_type = OP_YANK;
1360 oa.is_VIsual = TRUE;
1361 reg = get_register(regname, TRUE);
1362 yank_do_autocmd(&oa, reg);
1363 free_register(reg);
1364}
1365#endif
1366
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367/*
Bram Moolenaar66fa2712006-01-22 23:22:22 +00001368 * End Visual mode.
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001369 * This function or the next should ALWAYS be called to end Visual mode, except
1370 * from do_pending_operator().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 */
1372 void
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001373end_visual_mode()
1374{
1375 end_visual_mode_keep_button();
1376 reset_held_button();
1377}
1378
1379 void
1380end_visual_mode_keep_button()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381{
1382#ifdef FEAT_CLIPBOARD
1383 /*
1384 * If we are using the clipboard, then remember what was selected in case
1385 * we need to paste it somewhere while we still own the selection.
1386 * Only do this when the clipboard is already owned. Don't want to grab
1387 * the selection when hitting ESC.
1388 */
1389 if (clip_star.available && clip_star.owned)
1390 clip_auto_select();
Bram Moolenaarfccbf062020-11-26 20:34:00 +01001391
1392# if defined(FEAT_EVAL)
1393 // Emit a TextYankPost for the automatic copy of the selection into the
1394 // star and/or plus register.
1395 if (has_textyankpost())
1396 {
1397 if (clip_isautosel_star())
1398 call_yank_do_autocmd('*');
1399 if (clip_isautosel_plus())
1400 call_yank_do_autocmd('+');
1401 }
1402# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403#endif
1404
1405 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 setmouse();
1407 mouse_dragging = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001409 // Save the current VIsual area for '< and '> marks, and "gv"
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001410 curbuf->b_visual.vi_mode = VIsual_mode;
1411 curbuf->b_visual.vi_start = VIsual;
1412 curbuf->b_visual.vi_end = curwin->w_cursor;
1413 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414#ifdef FEAT_EVAL
1415 curbuf->b_visual_mode_eval = VIsual_mode;
1416#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 if (!virtual_active())
1418 curwin->w_cursor.coladd = 0;
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001419 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001421 adjust_cursor_eol();
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001422 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423}
1424
1425/*
1426 * Reset VIsual_active and VIsual_reselect.
1427 */
1428 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001429reset_VIsual_and_resel(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 }
1436 VIsual_reselect = FALSE;
1437}
1438
1439/*
1440 * Reset VIsual_active and VIsual_reselect if it's set.
1441 */
1442 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001443reset_VIsual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444{
1445 if (VIsual_active)
1446 {
1447 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001448 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 VIsual_reselect = FALSE;
1450 }
1451}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001453 void
1454restore_visual_mode(void)
1455{
1456 if (VIsual_mode_orig != NUL)
1457 {
1458 curbuf->b_visual.vi_mode = VIsual_mode_orig;
1459 VIsual_mode_orig = NUL;
1460 }
1461}
1462
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463/*
1464 * Check for a balloon-eval special item to include when searching for an
1465 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
1466 * Returns TRUE if the character at "*ptr" should be included.
1467 * "dir" is FORWARD or BACKWARD, the direction of searching.
1468 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
1469 * "bnp" points to a counter for square brackets.
1470 */
1471 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001472find_is_eval_item(
1473 char_u *ptr,
1474 int *colp,
1475 int *bnp,
1476 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001478 // Accept everything inside [].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
1480 ++*bnp;
1481 if (*bnp > 0)
1482 {
1483 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
1484 --*bnp;
1485 return TRUE;
1486 }
1487
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001488 // skip over "s.var"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 if (*ptr == '.')
1490 return TRUE;
1491
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001492 // two-character item: s->var
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
1494 && ptr[dir == BACKWARD ? -1 : 0] == '-')
1495 {
1496 *colp += dir;
1497 return TRUE;
1498 }
1499 return FALSE;
1500}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501
1502/*
1503 * Find the identifier under or to the right of the cursor.
1504 * "find_type" can have one of three values:
1505 * FIND_IDENT: find an identifier (keyword)
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001506 * FIND_STRING: find any non-white text
1507 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001508 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 *
1510 * There are three steps:
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001511 * 1. Search forward for the start of an identifier/text. Doesn't move if
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 * already on one.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001513 * 2. Search backward for the start of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 * This doesn't match the real Vi but I like it a little better and it
1515 * shouldn't bother anyone.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001516 * 3. Search forward to the end of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 * When FIND_IDENT isn't defined, we backup until a blank.
1518 *
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001519 * Returns the length of the text, or zero if no text is found.
1520 * If text is found, a pointer to the text is put in "*text". This
1521 * points into the current buffer line and is not always NUL terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 */
1523 int
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001524find_ident_under_cursor(char_u **text, int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525{
1526 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001527 curwin->w_cursor.col, text, NULL, find_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528}
1529
1530/*
1531 * Like find_ident_under_cursor(), but for any window and any position.
1532 * However: Uses 'iskeyword' from the current window!.
1533 */
1534 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001535find_ident_at_pos(
1536 win_T *wp,
1537 linenr_T lnum,
1538 colnr_T startcol,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001539 char_u **text,
1540 int *textcol, // column where "text" starts, can be NULL
Bram Moolenaar9b578142016-01-30 19:39:49 +01001541 int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542{
1543 char_u *ptr;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001544 int col = 0; // init to shut up GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 int this_class = 0;
1547 int prev_class;
1548 int prevcol;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001549 int bn = 0; // bracket nesting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550
1551 /*
1552 * if i == 0: try to find an identifier
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001553 * if i == 1: try to find any non-white text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 */
1555 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
1556 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
1557 {
1558 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001559 * 1. skip to start of identifier/text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 */
1561 col = startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 if (has_mbyte)
1563 {
1564 while (ptr[col] != NUL)
1565 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001566 // Stop at a ']' to evaluate "a[x]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1568 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 this_class = mb_get_class(ptr + col);
1570 if (this_class != 0 && (i == 1 || this_class != 1))
1571 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001572 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 }
1574 }
1575 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 while (ptr[col] != NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01001577 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 )
1580 ++col;
1581
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001582 // When starting on a ']' count it, so that we include the '['.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 bn = ptr[col] == ']';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584
1585 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001586 * 2. Back up to start of identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 if (has_mbyte)
1589 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001590 // Remember class of character under cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1592 this_class = mb_get_class((char_u *)"a");
1593 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 this_class = mb_get_class(ptr + col);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001595 while (col > 0 && this_class != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 {
1597 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
1598 prev_class = mb_get_class(ptr + prevcol);
1599 if (this_class != prev_class
1600 && (i == 0
1601 || prev_class == 0
1602 || (find_type & FIND_IDENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 && (!(find_type & FIND_EVAL)
1604 || prevcol == 0
1605 || !find_is_eval_item(ptr + prevcol, &prevcol,
1606 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 )
1608 break;
1609 col = prevcol;
1610 }
1611
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001612 // If we don't want just any old text, or we've found an
1613 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 if (this_class > 2)
1615 this_class = 2;
1616 if (!(find_type & FIND_STRING) || this_class == 2)
1617 break;
1618 }
1619 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 {
1621 while (col > 0
1622 && ((i == 0
1623 ? vim_iswordc(ptr[col - 1])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001624 : (!VIM_ISWHITE(ptr[col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 && (!(find_type & FIND_IDENT)
1626 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 || ((find_type & FIND_EVAL)
1628 && col > 1
1629 && find_is_eval_item(ptr + col - 1, &col,
1630 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 ))
1632 --col;
1633
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001634 // If we don't want just any old text, or we've found an
1635 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
1637 break;
1638 }
1639 }
1640
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001641 if (ptr[col] == NUL || (i == 0
1642 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001644 // didn't find an identifier or text
Bram Moolenaar17627312019-06-02 19:53:44 +02001645 if ((find_type & FIND_NOERROR) == 0)
1646 {
1647 if (find_type & FIND_STRING)
1648 emsg(_("E348: No string under cursor"));
1649 else
1650 emsg(_(e_noident));
1651 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 return 0;
1653 }
1654 ptr += col;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001655 *text = ptr;
1656 if (textcol != NULL)
1657 *textcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658
1659 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001660 * 3. Find the end if the identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 bn = 0;
1663 startcol -= col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 if (has_mbyte)
1666 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001667 // Search for point of changing multibyte character class.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 this_class = mb_get_class(ptr);
1669 while (ptr[col] != NUL
1670 && ((i == 0 ? mb_get_class(ptr + col) == this_class
1671 : mb_get_class(ptr + col) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 || ((find_type & FIND_EVAL)
1673 && col <= (int)startcol
1674 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 ))
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001676 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 }
1678 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 while ((i == 0 ? vim_iswordc(ptr[col])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001680 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 || ((find_type & FIND_EVAL)
1682 && col <= (int)startcol
1683 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 ++col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686
1687 return col;
1688}
1689
1690/*
1691 * Prepare for redo of a normal command.
1692 */
1693 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001694prep_redo_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695{
1696 prep_redo(cap->oap->regname, cap->count0,
1697 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
1698}
1699
1700/*
1701 * Prepare for redo of any command.
1702 * Note that only the last argument can be a multi-byte char.
1703 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001704 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001705prep_redo(
1706 int regname,
1707 long num,
1708 int cmd1,
1709 int cmd2,
1710 int cmd3,
1711 int cmd4,
1712 int cmd5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713{
Bram Moolenaar2228cd72021-11-22 14:16:08 +00001714 prep_redo_num2(regname, num, cmd1, cmd2, 0L, cmd3, cmd4, cmd5);
1715}
1716
1717/*
1718 * Prepare for redo of any command with extra count after "cmd2".
1719 */
1720 void
1721prep_redo_num2(
1722 int regname,
1723 long num1,
1724 int cmd1,
1725 int cmd2,
1726 long num2,
1727 int cmd3,
1728 int cmd4,
1729 int cmd5)
1730{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 ResetRedobuff();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001732 if (regname != 0) // yank from specified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 {
1734 AppendCharToRedobuff('"');
1735 AppendCharToRedobuff(regname);
1736 }
Bram Moolenaar2228cd72021-11-22 14:16:08 +00001737 if (num1 != 0)
1738 AppendNumberToRedobuff(num1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 if (cmd1 != NUL)
1740 AppendCharToRedobuff(cmd1);
1741 if (cmd2 != NUL)
1742 AppendCharToRedobuff(cmd2);
Bram Moolenaar2228cd72021-11-22 14:16:08 +00001743 if (num2 != 0)
1744 AppendNumberToRedobuff(num2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 if (cmd3 != NUL)
1746 AppendCharToRedobuff(cmd3);
1747 if (cmd4 != NUL)
1748 AppendCharToRedobuff(cmd4);
1749 if (cmd5 != NUL)
1750 AppendCharToRedobuff(cmd5);
1751}
1752
1753/*
1754 * check for operator active and clear it
1755 *
1756 * return TRUE if operator was active
1757 */
1758 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001759checkclearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760{
1761 if (oap->op_type == OP_NOP)
1762 return FALSE;
1763 clearopbeep(oap);
1764 return TRUE;
1765}
1766
1767/*
Bram Moolenaarc980de32007-05-06 11:59:04 +00001768 * Check for operator or Visual active. Clear active operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 *
Bram Moolenaarc980de32007-05-06 11:59:04 +00001770 * Return TRUE if operator or Visual was active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 */
1772 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001773checkclearopq(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001775 if (oap->op_type == OP_NOP && !VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 return FALSE;
1777 clearopbeep(oap);
1778 return TRUE;
1779}
1780
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001781 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001782clearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783{
1784 oap->op_type = OP_NOP;
1785 oap->regname = 0;
1786 oap->motion_force = NUL;
1787 oap->use_reg_one = FALSE;
Bram Moolenaar21492742021-06-04 21:57:57 +02001788 motion_force = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789}
1790
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001791 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001792clearopbeep(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793{
1794 clearop(oap);
1795 beep_flush();
1796}
1797
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798/*
1799 * Remove the shift modifier from a special key.
1800 */
1801 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001802unshift_special(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803{
1804 switch (cap->cmdchar)
1805 {
1806 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
1807 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
1808 case K_S_UP: cap->cmdchar = K_UP; break;
1809 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
1810 case K_S_HOME: cap->cmdchar = K_HOME; break;
1811 case K_S_END: cap->cmdchar = K_END; break;
1812 }
1813 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
1814}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001816/*
1817 * If the mode is currently displayed clear the command line or update the
1818 * command displayed.
1819 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001820 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001821may_clear_cmdline(void)
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001822{
1823 if (mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001824 clear_cmdline = TRUE; // unshow visual mode later
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001825#ifdef FEAT_CMDL_INFO
1826 else
1827 clear_showcmd();
1828#endif
1829}
1830
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831#if defined(FEAT_CMDL_INFO) || defined(PROTO)
1832/*
1833 * Routines for displaying a partly typed command
1834 */
1835
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001836#define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837static char_u showcmd_buf[SHOWCMD_BUFLEN];
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001838static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839static int showcmd_is_clear = TRUE;
1840static int showcmd_visual = FALSE;
1841
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001842static void display_showcmd(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843
1844 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001845clear_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846{
1847 if (!p_sc)
1848 return;
1849
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 if (VIsual_active && !char_avail())
1851 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001852 int cursor_bot = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 long lines;
1854 colnr_T leftcol, rightcol;
1855 linenr_T top, bot;
1856
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001857 // Show the size of the Visual area.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001858 if (cursor_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 {
1860 top = VIsual.lnum;
1861 bot = curwin->w_cursor.lnum;
1862 }
1863 else
1864 {
1865 top = curwin->w_cursor.lnum;
1866 bot = VIsual.lnum;
1867 }
1868# ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001869 // Include closed folds as a whole.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001870 (void)hasFolding(top, &top, NULL);
1871 (void)hasFolding(bot, NULL, &bot);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872# endif
1873 lines = bot - top + 1;
1874
1875 if (VIsual_mode == Ctrl_V)
1876 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001877# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001878 char_u *saved_sbr = p_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001879 char_u *saved_w_sbr = curwin->w_p_sbr;
Bram Moolenaar81d00072009-04-29 15:41:40 +00001880
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001881 // Make 'sbr' empty for a moment to get the correct size.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001882 p_sbr = empty_option;
Bram Moolenaaree857022019-11-09 23:26:40 +01001883 curwin->w_p_sbr = empty_option;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001884# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001886# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001887 p_sbr = saved_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001888 curwin->w_p_sbr = saved_w_sbr;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001889# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
1891 (long)(rightcol - leftcol + 1));
1892 }
1893 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
1894 sprintf((char *)showcmd_buf, "%ld", lines);
1895 else
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001896 {
1897 char_u *s, *e;
1898 int l;
1899 int bytes = 0;
1900 int chars = 0;
1901
1902 if (cursor_bot)
1903 {
1904 s = ml_get_pos(&VIsual);
1905 e = ml_get_cursor();
1906 }
1907 else
1908 {
1909 s = ml_get_cursor();
1910 e = ml_get_pos(&VIsual);
1911 }
1912 while ((*p_sel != 'e') ? s <= e : s < e)
1913 {
1914 l = (*mb_ptr2len)(s);
1915 if (l == 0)
1916 {
1917 ++bytes;
1918 ++chars;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001919 break; // end of line
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001920 }
1921 bytes += l;
1922 ++chars;
1923 s += l;
1924 }
1925 if (bytes == chars)
1926 sprintf((char *)showcmd_buf, "%d", chars);
1927 else
1928 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes);
1929 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001930 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 showcmd_visual = TRUE;
1932 }
1933 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 {
1935 showcmd_buf[0] = NUL;
1936 showcmd_visual = FALSE;
1937
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001938 // Don't actually display something if there is nothing to clear.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 if (showcmd_is_clear)
1940 return;
1941 }
1942
1943 display_showcmd();
1944}
1945
1946/*
1947 * Add 'c' to string of shown command chars.
1948 * Return TRUE if output has been written (and setcursor() has been called).
1949 */
1950 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001951add_to_showcmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952{
1953 char_u *p;
1954 int old_len;
1955 int extra_len;
1956 int overflow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 int i;
1958 static int ignore[] =
1959 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001960#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
1962 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001963#endif
Bram Moolenaarec2da362017-01-21 20:04:22 +01001964 K_IGNORE, K_PS,
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001965 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
1967 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001968 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001970 K_CURSORHOLD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 0
1972 };
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973
Bram Moolenaar09df3122006-01-23 22:23:09 +00001974 if (!p_sc || msg_silent != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 return FALSE;
1976
1977 if (showcmd_visual)
1978 {
1979 showcmd_buf[0] = NUL;
1980 showcmd_visual = FALSE;
1981 }
1982
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001983 // Ignore keys that are scrollbar updates and mouse clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 if (IS_SPECIAL(c))
1985 for (i = 0; ignore[i] != 0; ++i)
1986 if (ignore[i] == c)
1987 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988
1989 p = transchar(c);
Bram Moolenaar7ba07412013-12-11 14:55:01 +01001990 if (*p == ' ')
1991 STRCPY(p, "<20>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 old_len = (int)STRLEN(showcmd_buf);
1993 extra_len = (int)STRLEN(p);
1994 overflow = old_len + extra_len - SHOWCMD_COLS;
1995 if (overflow > 0)
Bram Moolenaarb0db5692007-08-14 20:54:49 +00001996 mch_memmove(showcmd_buf, showcmd_buf + overflow,
1997 old_len - overflow + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 STRCAT(showcmd_buf, p);
1999
2000 if (char_avail())
2001 return FALSE;
2002
2003 display_showcmd();
2004
2005 return TRUE;
2006}
2007
2008 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002009add_to_showcmd_c(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010{
2011 if (!add_to_showcmd(c))
2012 setcursor();
2013}
2014
2015/*
2016 * Delete 'len' characters from the end of the shown command.
2017 */
2018 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002019del_from_showcmd(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020{
2021 int old_len;
2022
2023 if (!p_sc)
2024 return;
2025
2026 old_len = (int)STRLEN(showcmd_buf);
2027 if (len > old_len)
2028 len = old_len;
2029 showcmd_buf[old_len - len] = NUL;
2030
2031 if (!char_avail())
2032 display_showcmd();
2033}
2034
2035/*
2036 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
2037 * something and there is a partial mapping.
2038 */
2039 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002040push_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041{
2042 if (p_sc)
2043 STRCPY(old_showcmd_buf, showcmd_buf);
2044}
2045
2046 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002047pop_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048{
2049 if (!p_sc)
2050 return;
2051
2052 STRCPY(showcmd_buf, old_showcmd_buf);
2053
2054 display_showcmd();
2055}
2056
2057 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002058display_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059{
2060 int len;
2061
2062 cursor_off();
2063
2064 len = (int)STRLEN(showcmd_buf);
2065 if (len == 0)
2066 showcmd_is_clear = TRUE;
2067 else
2068 {
2069 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
2070 showcmd_is_clear = FALSE;
2071 }
2072
2073 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00002074 * clear the rest of an old message by outputting up to SHOWCMD_COLS
2075 * spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 */
2077 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
2078
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002079 setcursor(); // put cursor back where it belongs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080}
2081#endif
2082
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083/*
2084 * When "check" is FALSE, prepare for commands that scroll the window.
2085 * When "check" is TRUE, take care of scroll-binding after the window has
2086 * scrolled. Called from normal_cmd() and edit().
2087 */
2088 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002089do_check_scrollbind(int check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090{
2091 static win_T *old_curwin = NULL;
2092 static linenr_T old_topline = 0;
2093#ifdef FEAT_DIFF
2094 static int old_topfill = 0;
2095#endif
2096 static buf_T *old_buf = NULL;
2097 static colnr_T old_leftcol = 0;
2098
2099 if (check && curwin->w_p_scb)
2100 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002101 // If a ":syncbind" command was just used, don't scroll, only reset
2102 // the values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 if (did_syncbind)
2104 did_syncbind = FALSE;
2105 else if (curwin == old_curwin)
2106 {
2107 /*
2108 * Synchronize other windows, as necessary according to
2109 * 'scrollbind'. Don't do this after an ":edit" command, except
2110 * when 'diff' is set.
2111 */
2112 if ((curwin->w_buffer == old_buf
2113#ifdef FEAT_DIFF
2114 || curwin->w_p_diff
2115#endif
2116 )
2117 && (curwin->w_topline != old_topline
2118#ifdef FEAT_DIFF
2119 || curwin->w_topfill != old_topfill
2120#endif
2121 || curwin->w_leftcol != old_leftcol))
2122 {
2123 check_scrollbind(curwin->w_topline - old_topline,
2124 (long)(curwin->w_leftcol - old_leftcol));
2125 }
2126 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002127 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 {
2129 /*
2130 * When switching between windows, make sure that the relative
2131 * vertical offset is valid for the new window. The relative
2132 * offset is invalid whenever another 'scrollbind' window has
2133 * scrolled to a point that would force the current window to
2134 * scroll past the beginning or end of its buffer. When the
2135 * resync is performed, some of the other 'scrollbind' windows may
2136 * need to jump so that the current window's relative position is
2137 * visible on-screen.
2138 */
2139 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
2140 }
2141 curwin->w_scbind_pos = curwin->w_topline;
2142 }
2143
2144 old_curwin = curwin;
2145 old_topline = curwin->w_topline;
2146#ifdef FEAT_DIFF
2147 old_topfill = curwin->w_topfill;
2148#endif
2149 old_buf = curwin->w_buffer;
2150 old_leftcol = curwin->w_leftcol;
2151}
2152
2153/*
2154 * Synchronize any windows that have "scrollbind" set, based on the
2155 * number of rows by which the current window has changed
2156 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
2157 */
2158 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002159check_scrollbind(linenr_T topline_diff, long leftcol_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160{
2161 int want_ver;
2162 int want_hor;
2163 win_T *old_curwin = curwin;
2164 buf_T *old_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 int old_VIsual_select = VIsual_select;
2166 int old_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 colnr_T tgt_leftcol = curwin->w_leftcol;
2168 long topline;
2169 long y;
2170
2171 /*
2172 * check 'scrollopt' string for vertical and horizontal scroll options
2173 */
2174 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
2175#ifdef FEAT_DIFF
2176 want_ver |= old_curwin->w_p_diff;
2177#endif
2178 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
2179
2180 /*
2181 * loop through the scrollbound windows and scroll accordingly
2182 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002184 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 {
2186 curbuf = curwin->w_buffer;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002187 // skip original window and windows with 'noscrollbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 if (curwin != old_curwin && curwin->w_p_scb)
2189 {
2190 /*
2191 * do the vertical scroll
2192 */
2193 if (want_ver)
2194 {
2195#ifdef FEAT_DIFF
2196 if (old_curwin->w_p_diff && curwin->w_p_diff)
2197 {
2198 diff_set_topline(old_curwin, curwin);
2199 }
2200 else
2201#endif
2202 {
2203 curwin->w_scbind_pos += topline_diff;
2204 topline = curwin->w_scbind_pos;
2205 if (topline > curbuf->b_ml.ml_line_count)
2206 topline = curbuf->b_ml.ml_line_count;
2207 if (topline < 1)
2208 topline = 1;
2209
2210 y = topline - curwin->w_topline;
2211 if (y > 0)
2212 scrollup(y, FALSE);
2213 else
2214 scrolldown(-y, FALSE);
2215 }
2216
2217 redraw_later(VALID);
2218 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 }
2221
2222 /*
2223 * do the horizontal scroll
2224 */
2225 if (want_hor && curwin->w_leftcol != tgt_leftcol)
2226 {
2227 curwin->w_leftcol = tgt_leftcol;
2228 leftcol_changed();
2229 }
2230 }
2231 }
2232
2233 /*
2234 * reset current-window
2235 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 VIsual_select = old_VIsual_select;
2237 VIsual_active = old_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 curwin = old_curwin;
2239 curbuf = old_curbuf;
2240}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241
2242/*
2243 * Command character that's ignored.
2244 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02002245 * xon/xoff.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002248nv_ignore(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002250 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251}
2252
2253/*
Bram Moolenaarebefac62005-12-28 22:39:57 +00002254 * Command character that doesn't do anything, but unlike nv_ignore() does
2255 * start edit(). Used for "startinsert" executed while starting up.
2256 */
Bram Moolenaarebefac62005-12-28 22:39:57 +00002257 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002258nv_nop(cmdarg_T *cap UNUSED)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002259{
2260}
2261
2262/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 * Command character doesn't exist.
2264 */
2265 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002266nv_error(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267{
2268 clearopbeep(cap->oap);
2269}
2270
2271/*
2272 * <Help> and <F1> commands.
2273 */
2274 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002275nv_help(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276{
2277 if (!checkclearopq(cap->oap))
2278 ex_help(NULL);
2279}
2280
2281/*
2282 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
2283 */
2284 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002285nv_addsub(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286{
Bram Moolenaarf2732452018-06-03 14:47:35 +02002287#ifdef FEAT_JOB_CHANNEL
2288 if (bt_prompt(curbuf) && !prompt_curpos_editable())
2289 clearopbeep(cap->oap);
2290 else
2291#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01002292 if (!VIsual_active && cap->oap->op_type == OP_NOP)
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002293 {
Bram Moolenaaref2b5032016-01-12 22:20:58 +01002294 prep_redo_cmd(cap);
Bram Moolenaard79e5502016-01-10 22:13:02 +01002295 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB;
2296 op_addsub(cap->oap, cap->count1, cap->arg);
2297 cap->oap->op_type = OP_NOP;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002298 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01002299 else if (VIsual_active)
2300 nv_operator(cap);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02002301 else
Bram Moolenaard79e5502016-01-10 22:13:02 +01002302 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303}
2304
2305/*
2306 * CTRL-F, CTRL-B, etc: Scroll page up or down.
2307 */
2308 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002309nv_page(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310{
2311 if (!checkclearop(cap->oap))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002312 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002313 if (mod_mask & MOD_MASK_CTRL)
2314 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002315 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002316 if (cap->arg == BACKWARD)
2317 goto_tabpage(-(int)cap->count1);
2318 else
2319 goto_tabpage((int)cap->count0);
2320 }
2321 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02002322 (void)onepage(cap->arg, cap->count1);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002323 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324}
2325
2326/*
2327 * Implementation of "gd" and "gD" command.
2328 */
2329 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002330nv_gd(
2331 oparg_T *oap,
2332 int nchar,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002333 int thisblock) // 1 for "1gd" and "1gD"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334{
2335 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 char_u *ptr;
2337
Bram Moolenaard9d30582005-05-18 22:10:28 +00002338 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
Bram Moolenaar1538fc32016-04-16 09:13:34 +02002339 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)
Bram Moolenaar0c711142021-11-12 10:30:04 +00002340 == FAIL)
2341 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 clearopbeep(oap);
Bram Moolenaar0c711142021-11-12 10:30:04 +00002343 }
2344 else
2345 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002346#ifdef FEAT_FOLDING
Bram Moolenaar0c711142021-11-12 10:30:04 +00002347 if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
2348 foldOpenCursor();
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002349#endif
Bram Moolenaar0c711142021-11-12 10:30:04 +00002350 // clear any search statistics
2351 if (messaging() && !msg_silent && !shortmess(SHM_SEARCHCOUNT))
2352 clear_cmdline = TRUE;
2353 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002354}
2355
2356/*
Bram Moolenaar226630a2016-10-08 19:21:31 +02002357 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE
2358 * otherwise.
2359 */
2360 static int
2361is_ident(char_u *line, int offset)
2362{
2363 int i;
2364 int incomment = FALSE;
2365 int instring = 0;
2366 int prev = 0;
2367
2368 for (i = 0; i < offset && line[i] != NUL; i++)
2369 {
2370 if (instring != 0)
2371 {
2372 if (prev != '\\' && line[i] == instring)
2373 instring = 0;
2374 }
2375 else if ((line[i] == '"' || line[i] == '\'') && !incomment)
2376 {
2377 instring = line[i];
2378 }
2379 else
2380 {
2381 if (incomment)
2382 {
2383 if (prev == '*' && line[i] == '/')
2384 incomment = FALSE;
2385 }
2386 else if (prev == '/' && line[i] == '*')
2387 {
2388 incomment = TRUE;
2389 }
2390 else if (prev == '/' && line[i] == '/')
2391 {
2392 return FALSE;
2393 }
2394 }
2395
2396 prev = line[i];
2397 }
2398
2399 return incomment == FALSE && instring == 0;
2400}
2401
2402/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002403 * Search for variable declaration of "ptr[len]".
2404 * When "locally" is TRUE in the current function ("gd"), otherwise in the
2405 * current file ("gD").
2406 * When "thisblock" is TRUE check the {} block scope.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002407 * Return FAIL when not found.
2408 */
2409 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002410find_decl(
2411 char_u *ptr,
2412 int len,
2413 int locally,
2414 int thisblock,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002415 int flags_arg) // flags passed to searchit()
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002416{
2417 char_u *pat;
2418 pos_T old_pos;
2419 pos_T par_pos;
2420 pos_T found_pos;
2421 int t;
2422 int save_p_ws;
2423 int save_p_scs;
2424 int retval = OK;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002425 int incll;
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002426 int searchflags = flags_arg;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002427 int valid;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002428
2429 if ((pat = alloc(len + 7)) == NULL)
2430 return FAIL;
Bram Moolenaard9d30582005-05-18 22:10:28 +00002431
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002432 // Put "\V" before the pattern to avoid that the special meaning of "."
2433 // and "~" causes trouble.
Bram Moolenaard9d30582005-05-18 22:10:28 +00002434 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
2435 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 old_pos = curwin->w_cursor;
2437 save_p_ws = p_ws;
2438 save_p_scs = p_scs;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002439 p_ws = FALSE; // don't wrap around end of file now
2440 p_scs = FALSE; // don't switch ignorecase off now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441
2442 /*
2443 * With "gD" go to line 1.
2444 * With "gd" Search back for the start of the current function, then go
2445 * back until a blank line. If this fails go to line 1.
2446 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002447 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002449 setpcmark(); // Set in findpar() otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 curwin->w_cursor.lnum = 1;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002451 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 }
2453 else
2454 {
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002455 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
2457 --curwin->w_cursor.lnum;
2458 }
2459 curwin->w_cursor.col = 0;
2460
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002461 // Search forward for the identifier, ignore comment lines.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002462 CLEAR_POS(&found_pos);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002463 for (;;)
2464 {
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002465 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02002466 pat, 1L, searchflags, RE_LAST, NULL);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002467 if (curwin->w_cursor.lnum >= old_pos.lnum)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002468 t = FAIL; // match after start is failure too
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002469
Bram Moolenaar0fd92892006-03-09 22:27:48 +00002470 if (thisblock && t != FAIL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002471 {
2472 pos_T *pos;
2473
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002474 // Check that the block the match is in doesn't end before the
2475 // position where we started the search from.
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002476 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
2477 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
2478 && pos->lnum < old_pos.lnum)
Bram Moolenaar60402d62017-04-20 18:54:50 +02002479 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002480 // There can't be a useful match before the end of this block.
2481 // Skip to the end.
Bram Moolenaar60402d62017-04-20 18:54:50 +02002482 curwin->w_cursor = *pos;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002483 continue;
Bram Moolenaar60402d62017-04-20 18:54:50 +02002484 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002485 }
2486
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002487 if (t == FAIL)
2488 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002489 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002490 if (found_pos.lnum != 0)
2491 {
2492 curwin->w_cursor = found_pos;
2493 t = OK;
2494 }
2495 break;
2496 }
Bram Moolenaar81340392012-06-06 16:12:59 +02002497 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002498 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002499 // Ignore this line, continue at start of next line.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002500 ++curwin->w_cursor.lnum;
2501 curwin->w_cursor.col = 0;
2502 continue;
2503 }
Bram Moolenaar226630a2016-10-08 19:21:31 +02002504 valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
2505
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002506 // If the current position is not a valid identifier and a previous
2507 // match is present, favor that one instead.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002508 if (!valid && found_pos.lnum != 0)
2509 {
2510 curwin->w_cursor = found_pos;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002511 break;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002512 }
2513
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002514 // Global search: use first valid match found
Bram Moolenaar226630a2016-10-08 19:21:31 +02002515 if (valid && !locally)
2516 break;
2517 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002518 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002519 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002520 if (found_pos.lnum != 0)
2521 curwin->w_cursor = found_pos;
2522 break;
2523 }
2524
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002525 // For finding a local variable and the match is before the "{" or
2526 // inside a comment, continue searching. For K&R style function
2527 // declarations this skips the function header without types.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002528 if (!valid)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002529 CLEAR_POS(&found_pos);
Bram Moolenaar226630a2016-10-08 19:21:31 +02002530 else
Bram Moolenaar226630a2016-10-08 19:21:31 +02002531 found_pos = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002532 // Remove SEARCH_START from flags to avoid getting stuck at one
2533 // position.
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002534 searchflags &= ~SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002536
2537 if (t == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002539 retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 curwin->w_cursor = old_pos;
2541 }
2542 else
2543 {
2544 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002545 // "n" searches forward now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 reset_search_dir();
2547 }
2548
2549 vim_free(pat);
2550 p_ws = save_p_ws;
2551 p_scs = save_p_scs;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002552
2553 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554}
2555
2556/*
2557 * Move 'dist' lines in direction 'dir', counting lines by *screen*
2558 * lines rather than lines in the file.
2559 * 'dist' must be positive.
2560 *
2561 * Return OK if able to move cursor, FAIL otherwise.
2562 */
2563 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002564nv_screengo(oparg_T *oap, int dir, long dist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565{
2566 int linelen = linetabsize(ml_get_curline());
2567 int retval = OK;
2568 int atend = FALSE;
2569 int n;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002570 int col_off1; // margin offset for first screen line
2571 int col_off2; // margin offset for wrapped screen line
2572 int width1; // text width for first screen line
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002573 int width2; // text width for wrapped screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574
2575 oap->motion_type = MCHAR;
Bram Moolenaar91b2bdb2013-07-14 13:32:15 +02002576 oap->inclusive = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577
2578 col_off1 = curwin_col_off();
2579 col_off2 = col_off1 - curwin_col_off2();
Bram Moolenaar02631462017-09-22 15:20:32 +02002580 width1 = curwin->w_width - col_off1;
2581 width2 = curwin->w_width - col_off2;
Bram Moolenaar7cc8ec42015-01-27 20:59:31 +01002582 if (width2 == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002583 width2 = 1; // avoid divide by zero
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 if (curwin->w_width != 0)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002586 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 /*
2588 * Instead of sticking at the last character of the buffer line we
2589 * try to stick in the last column of the screen.
2590 */
2591 if (curwin->w_curswant == MAXCOL)
2592 {
2593 atend = TRUE;
2594 validate_virtcol();
2595 if (width1 <= 0)
2596 curwin->w_curswant = 0;
2597 else
2598 {
2599 curwin->w_curswant = width1 - 1;
2600 if (curwin->w_virtcol > curwin->w_curswant)
2601 curwin->w_curswant += ((curwin->w_virtcol
2602 - curwin->w_curswant - 1) / width2 + 1) * width2;
2603 }
2604 }
2605 else
2606 {
2607 if (linelen > width1)
2608 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2609 else
2610 n = width1;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002611 if (curwin->w_curswant >= (colnr_T)n)
2612 curwin->w_curswant = n - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 }
2614
2615 while (dist--)
2616 {
2617 if (dir == BACKWARD)
2618 {
Bram Moolenaar3c49e742021-04-04 21:26:04 +02002619 if ((long)curwin->w_curswant >= width1
2620#ifdef FEAT_FOLDING
2621 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL)
2622#endif
2623 )
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002624 // Move back within the line. This can give a negative value
2625 // for w_curswant if width1 < width2 (with cpoptions+=n),
2626 // which will get clipped to column 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 curwin->w_curswant -= width2;
2628 else
2629 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002630 // to previous line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002632 // Move to the start of a closed fold. Don't do that when
2633 // 'foldopen' contains "all": it will open in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 if (!(fdo_flags & FDO_ALL))
2635 (void)hasFolding(curwin->w_cursor.lnum,
2636 &curwin->w_cursor.lnum, NULL);
2637#endif
Bram Moolenaare71996b2021-01-21 17:03:07 +01002638 if (curwin->w_cursor.lnum == 1)
2639 {
2640 retval = FAIL;
2641 break;
2642 }
2643 --curwin->w_cursor.lnum;
2644
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 linelen = linetabsize(ml_get_curline());
2646 if (linelen > width1)
2647 curwin->w_curswant += (((linelen - width1 - 1) / width2)
2648 + 1) * width2;
2649 }
2650 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002651 else // dir == FORWARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 {
2653 if (linelen > width1)
2654 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2655 else
2656 n = width1;
Bram Moolenaar3c49e742021-04-04 21:26:04 +02002657 if (curwin->w_curswant + width2 < (colnr_T)n
2658#ifdef FEAT_FOLDING
2659 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL)
2660#endif
2661 )
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002662 // move forward within line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 curwin->w_curswant += width2;
2664 else
2665 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002666 // to next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002668 // Move to the end of a closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2670 &curwin->w_cursor.lnum);
2671#endif
2672 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
2673 {
2674 retval = FAIL;
2675 break;
2676 }
2677 curwin->w_cursor.lnum++;
2678 curwin->w_curswant %= width2;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002679 // Check if the cursor has moved below the number display
2680 // when width1 < width2 (with cpoptions+=n). Subtract width2
2681 // to get a negative value for w_curswant, which will get
2682 // clipped to column 0.
2683 if (curwin->w_curswant >= width1)
2684 curwin->w_curswant -= width2;
Bram Moolenaar914968e2011-06-20 00:45:58 +02002685 linelen = linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 }
2687 }
2688 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690
Bram Moolenaar6cd3aee2014-01-14 13:18:58 +01002691 if (virtual_active() && atend)
2692 coladvance(MAXCOL);
2693 else
2694 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
2697 {
Bram Moolenaar773b1582014-08-29 14:20:51 +02002698 colnr_T virtcol;
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002699 int c;
Bram Moolenaar773b1582014-08-29 14:20:51 +02002700
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 /*
2702 * Check for landing on a character that got split at the end of the
2703 * last line. We want to advance a screenline, not end up in the same
2704 * screenline or move two screenlines.
2705 */
2706 validate_virtcol();
Bram Moolenaar773b1582014-08-29 14:20:51 +02002707 virtcol = curwin->w_virtcol;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002708#if defined(FEAT_LINEBREAK)
Bram Moolenaaree857022019-11-09 23:26:40 +01002709 if (virtcol > (colnr_T)width1 && *get_showbreak_value(curwin) != NUL)
2710 virtcol -= vim_strsize(get_showbreak_value(curwin));
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002711#endif
Bram Moolenaar773b1582014-08-29 14:20:51 +02002712
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002713 c = (*mb_ptr2char)(ml_get_cursor());
2714 if (dir == FORWARD && virtcol < curwin->w_curswant
2715 && (curwin->w_curswant <= (colnr_T)width1)
2716 && !vim_isprintc(c) && c > 255)
2717 oneright();
2718
Bram Moolenaar773b1582014-08-29 14:20:51 +02002719 if (virtcol > curwin->w_curswant
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 && (curwin->w_curswant < (colnr_T)width1
2721 ? (curwin->w_curswant > (colnr_T)width1 / 2)
2722 : ((curwin->w_curswant - width1) % width2
2723 > (colnr_T)width2 / 2)))
2724 --curwin->w_cursor.col;
2725 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726
2727 if (atend)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002728 curwin->w_curswant = MAXCOL; // stick in the last column
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729
2730 return retval;
2731}
2732
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733/*
2734 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
2735 * cap->arg must be TRUE for CTRL-E.
2736 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002737 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002738nv_scroll_line(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739{
2740 if (!checkclearop(cap->oap))
2741 scroll_redraw(cap->arg, cap->count1);
2742}
2743
2744/*
2745 * Scroll "count" lines up or down, and redraw.
2746 */
2747 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002748scroll_redraw(int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749{
2750 linenr_T prev_topline = curwin->w_topline;
2751#ifdef FEAT_DIFF
2752 int prev_topfill = curwin->w_topfill;
2753#endif
2754 linenr_T prev_lnum = curwin->w_cursor.lnum;
2755
2756 if (up)
2757 scrollup(count, TRUE);
2758 else
2759 scrolldown(count, TRUE);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002760 if (get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002762 // Adjust the cursor position for 'scrolloff'. Mark w_topline as
2763 // valid, otherwise the screen jumps back at the end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 cursor_correct();
2765 check_cursor_moved(curwin);
2766 curwin->w_valid |= VALID_TOPLINE;
2767
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002768 // If moved back to where we were, at least move the cursor, otherwise
2769 // we get stuck at one position. Don't move the cursor up if the
2770 // first line of the buffer is already on the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 while (curwin->w_topline == prev_topline
2772#ifdef FEAT_DIFF
2773 && curwin->w_topfill == prev_topfill
2774#endif
2775 )
2776 {
2777 if (up)
2778 {
2779 if (curwin->w_cursor.lnum > prev_lnum
2780 || cursor_down(1L, FALSE) == FAIL)
2781 break;
2782 }
2783 else
2784 {
2785 if (curwin->w_cursor.lnum < prev_lnum
2786 || prev_topline == 1L
2787 || cursor_up(1L, FALSE) == FAIL)
2788 break;
2789 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002790 // Mark w_topline as valid, otherwise the screen jumps back at the
2791 // end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 check_cursor_moved(curwin);
2793 curwin->w_valid |= VALID_TOPLINE;
2794 }
2795 }
2796 if (curwin->w_cursor.lnum != prev_lnum)
2797 coladvance(curwin->w_curswant);
2798 redraw_later(VALID);
2799}
2800
2801/*
2802 * Commands that start with "z".
2803 */
2804 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002805nv_zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806{
2807 long n;
2808 colnr_T col;
2809 int nchar = cap->nchar;
2810#ifdef FEAT_FOLDING
2811 long old_fdl = curwin->w_p_fdl;
2812 int old_fen = curwin->w_p_fen;
2813#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002814#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00002815 int undo = FALSE;
2816#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +01002817 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818
2819 if (VIM_ISDIGIT(nchar))
2820 {
2821 /*
2822 * "z123{nchar}": edit the count before obtaining {nchar}
2823 */
2824 if (checkclearop(cap->oap))
2825 return;
2826 n = nchar - '0';
2827 for (;;)
2828 {
2829#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002830 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831#endif
2832 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002833 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00002834 nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 --no_mapping;
2837 --allow_keys;
2838#ifdef FEAT_CMDL_INFO
2839 (void)add_to_showcmd(nchar);
2840#endif
2841 if (nchar == K_DEL || nchar == K_KDEL)
2842 n /= 10;
2843 else if (VIM_ISDIGIT(nchar))
2844 n = n * 10 + (nchar - '0');
2845 else if (nchar == CAR)
2846 {
2847#ifdef FEAT_GUI
2848 need_mouse_correct = TRUE;
2849#endif
2850 win_setheight((int)n);
2851 break;
2852 }
2853 else if (nchar == 'l'
2854 || nchar == 'h'
2855 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00002856 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 {
2858 cap->count1 = n ? n * cap->count1 : cap->count1;
2859 goto dozet;
2860 }
2861 else
2862 {
2863 clearopbeep(cap->oap);
2864 break;
2865 }
2866 }
2867 cap->oap->op_type = OP_NOP;
2868 return;
2869 }
2870
2871dozet:
2872 if (
2873#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002874 // "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
2875 // and "zC" only in Visual mode. "zj" and "zk" are motion
2876 // commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 cap->nchar != 'f' && cap->nchar != 'F'
2878 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
2879 && cap->nchar != 'j' && cap->nchar != 'k'
2880 &&
2881#endif
2882 checkclearop(cap->oap))
2883 return;
2884
2885 /*
2886 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
2887 * If line number given, set cursor.
2888 */
2889 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
2890 && cap->count0
2891 && cap->count0 != curwin->w_cursor.lnum)
2892 {
2893 setpcmark();
2894 if (cap->count0 > curbuf->b_ml.ml_line_count)
2895 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2896 else
2897 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002898 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 }
2900
2901 switch (nchar)
2902 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002903 // "z+", "z<CR>" and "zt": put cursor at top of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 case '+':
2905 if (cap->count0 == 0)
2906 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002907 // No count given: put cursor at the line below screen
2908 validate_botline(); // make sure w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2910 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2911 else
2912 curwin->w_cursor.lnum = curwin->w_botline;
2913 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002914 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 case NL:
2916 case CAR:
2917 case K_KENTER:
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 't': scroll_cursor_top(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 // "z." and "zz": put cursor in middle of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 case '.': beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002928 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929
2930 case 'z': scroll_cursor_halfway(TRUE);
2931 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002932 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 break;
2934
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002935 // "z^", "z-" and "zb": put cursor at bottom of screen
2936 case '^': // Strange Vi behavior: <count>z^ finds line at top of window
2937 // when <count> is at bottom of window, and puts that one at
2938 // bottom of window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 if (cap->count0 != 0)
2940 {
2941 scroll_cursor_bot(0, TRUE);
2942 curwin->w_cursor.lnum = curwin->w_topline;
2943 }
2944 else if (curwin->w_topline == 1)
2945 curwin->w_cursor.lnum = 1;
2946 else
2947 curwin->w_cursor.lnum = curwin->w_topline - 1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002948 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 case '-':
2950 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002951 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952
2953 case 'b': scroll_cursor_bot(0, TRUE);
2954 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002955 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 break;
2957
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002958 // "zH" - scroll screen right half-page
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959 case 'H':
Bram Moolenaar02631462017-09-22 15:20:32 +02002960 cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002961 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002963 // "zh" - scroll screen to the right
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 case 'h':
2965 case K_LEFT:
2966 if (!curwin->w_p_wrap)
2967 {
2968 if ((colnr_T)cap->count1 > curwin->w_leftcol)
2969 curwin->w_leftcol = 0;
2970 else
2971 curwin->w_leftcol -= (colnr_T)cap->count1;
2972 leftcol_changed();
2973 }
2974 break;
2975
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002976 // "zL" - scroll screen left half-page
Bram Moolenaar02631462017-09-22 15:20:32 +02002977 case 'L': cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002978 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002980 // "zl" - scroll screen to the left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 case 'l':
2982 case K_RIGHT:
2983 if (!curwin->w_p_wrap)
2984 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002985 // scroll the window left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 curwin->w_leftcol += (colnr_T)cap->count1;
2987 leftcol_changed();
2988 }
2989 break;
2990
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002991 // "zs" - scroll screen, cursor at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 case 's': if (!curwin->w_p_wrap)
2993 {
2994#ifdef FEAT_FOLDING
2995 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002996 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 else
2998#endif
2999 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
Bram Moolenaar375e3392019-01-31 18:26:10 +01003000 if ((long)col > siso)
3001 col -= siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 else
3003 col = 0;
3004 if (curwin->w_leftcol != col)
3005 {
3006 curwin->w_leftcol = col;
3007 redraw_later(NOT_VALID);
3008 }
3009 }
3010 break;
3011
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003012 // "ze" - scroll screen, cursor at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 case 'e': if (!curwin->w_p_wrap)
3014 {
3015#ifdef FEAT_FOLDING
3016 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003017 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 else
3019#endif
3020 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
Bram Moolenaar02631462017-09-22 15:20:32 +02003021 n = curwin->w_width - curwin_col_off();
Bram Moolenaar375e3392019-01-31 18:26:10 +01003022 if ((long)col + siso < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 col = 0;
3024 else
Bram Moolenaar375e3392019-01-31 18:26:10 +01003025 col = col + siso - n + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 if (curwin->w_leftcol != col)
3027 {
3028 curwin->w_leftcol = col;
3029 redraw_later(NOT_VALID);
3030 }
3031 }
3032 break;
3033
Christian Brabandt2fa93842021-05-30 22:17:25 +02003034 // "zp", "zP" in block mode put without addind trailing spaces
3035 case 'P':
3036 case 'p': nv_put(cap);
3037 break;
Christian Brabandt544a38e2021-06-10 19:39:11 +02003038 // "zy" Yank without trailing spaces
3039 case 'y': nv_operator(cap);
3040 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003042 // "zF": create fold command
3043 // "zf": create fold operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 case 'F':
3045 case 'f': if (foldManualAllowed(TRUE))
3046 {
3047 cap->nchar = 'f';
3048 nv_operator(cap);
3049 curwin->w_p_fen = TRUE;
3050
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003051 // "zF" is like "zfzf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
3053 {
3054 nv_operator(cap);
3055 finish_op = TRUE;
3056 }
3057 }
3058 else
3059 clearopbeep(cap->oap);
3060 break;
3061
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003062 // "zd": delete fold at cursor
3063 // "zD": delete fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 case 'd':
3065 case 'D': if (foldManualAllowed(FALSE))
3066 {
3067 if (VIsual_active)
3068 nv_operator(cap);
3069 else
3070 deleteFold(curwin->w_cursor.lnum,
3071 curwin->w_cursor.lnum, nchar == 'D', FALSE);
3072 }
3073 break;
3074
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003075 // "zE": erase all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 case 'E': if (foldmethodIsManual(curwin))
3077 {
3078 clearFolding(curwin);
3079 changed_window_setting();
3080 }
3081 else if (foldmethodIsMarker(curwin))
3082 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
3083 TRUE, FALSE);
3084 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003085 emsg(_("E352: Cannot erase folds with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 break;
3087
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003088 // "zn": fold none: reset 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 case 'n': curwin->w_p_fen = FALSE;
3090 break;
3091
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003092 // "zN": fold Normal: set 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 case 'N': curwin->w_p_fen = TRUE;
3094 break;
3095
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003096 // "zi": invert folding: toggle 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
3098 break;
3099
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003100 // "za": open closed fold or close open fold at cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3102 openFold(curwin->w_cursor.lnum, cap->count1);
3103 else
3104 {
3105 closeFold(curwin->w_cursor.lnum, cap->count1);
3106 curwin->w_p_fen = TRUE;
3107 }
3108 break;
3109
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003110 // "zA": open fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3112 openFoldRecurse(curwin->w_cursor.lnum);
3113 else
3114 {
3115 closeFoldRecurse(curwin->w_cursor.lnum);
3116 curwin->w_p_fen = TRUE;
3117 }
3118 break;
3119
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003120 // "zo": open fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 case 'o': if (VIsual_active)
3122 nv_operator(cap);
3123 else
3124 openFold(curwin->w_cursor.lnum, cap->count1);
3125 break;
3126
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003127 // "zO": open fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 case 'O': if (VIsual_active)
3129 nv_operator(cap);
3130 else
3131 openFoldRecurse(curwin->w_cursor.lnum);
3132 break;
3133
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003134 // "zc": close fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 case 'c': if (VIsual_active)
3136 nv_operator(cap);
3137 else
3138 closeFold(curwin->w_cursor.lnum, cap->count1);
3139 curwin->w_p_fen = TRUE;
3140 break;
3141
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003142 // "zC": close fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 case 'C': if (VIsual_active)
3144 nv_operator(cap);
3145 else
3146 closeFoldRecurse(curwin->w_cursor.lnum);
3147 curwin->w_p_fen = TRUE;
3148 break;
3149
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003150 // "zv": open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 case 'v': foldOpenCursor();
3152 break;
3153
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003154 // "zx": re-apply 'foldlevel' and open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 case 'x': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003156 curwin->w_foldinvalid = TRUE; // recompute folds
3157 newFoldLevel(); // update right now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 foldOpenCursor();
3159 break;
3160
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003161 // "zX": undo manual opens/closes, re-apply 'foldlevel'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 case 'X': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003163 curwin->w_foldinvalid = TRUE; // recompute folds
3164 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 break;
3166
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003167 // "zm": fold more
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 case 'm': if (curwin->w_p_fdl > 0)
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003169 {
3170 curwin->w_p_fdl -= cap->count1;
3171 if (curwin->w_p_fdl < 0)
3172 curwin->w_p_fdl = 0;
3173 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003174 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 curwin->w_p_fen = TRUE;
3176 break;
3177
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003178 // "zM": close all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 case 'M': curwin->w_p_fdl = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003180 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 curwin->w_p_fen = TRUE;
3182 break;
3183
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003184 // "zr": reduce folding
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003185 case 'r': curwin->w_p_fdl += cap->count1;
3186 {
3187 int d = getDeepestNesting();
3188
3189 if (curwin->w_p_fdl >= d)
3190 curwin->w_p_fdl = d;
3191 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 break;
3193
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003194 // "zR": open all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 case 'R': curwin->w_p_fdl = getDeepestNesting();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003196 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 break;
3198
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003199 case 'j': // "zj" move to next fold downwards
3200 case 'k': // "zk" move to next fold upwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
3202 cap->count1) == FAIL)
3203 clearopbeep(cap->oap);
3204 break;
3205
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003206#endif // FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003207
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00003208#ifdef FEAT_SPELL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003209 case 'u': // "zug" and "zuw": undo "zg" and "zw"
Bram Moolenaard0131a82006-03-04 21:46:13 +00003210 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003211 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003212 nchar = plain_vgetc();
Bram Moolenaard0131a82006-03-04 21:46:13 +00003213 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaard0131a82006-03-04 21:46:13 +00003214 --no_mapping;
3215 --allow_keys;
3216#ifdef FEAT_CMDL_INFO
3217 (void)add_to_showcmd(nchar);
3218#endif
3219 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
3220 {
3221 clearopbeep(cap->oap);
3222 break;
3223 }
3224 undo = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003225 // FALLTHROUGH
Bram Moolenaard0131a82006-03-04 21:46:13 +00003226
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003227 case 'g': // "zg": add good word to word list
3228 case 'w': // "zw": add wrong word to word list
3229 case 'G': // "zG": add good word to temp word list
3230 case 'W': // "zW": add wrong word to temp word list
Bram Moolenaarb765d632005-06-07 21:00:02 +00003231 {
3232 char_u *ptr = NULL;
3233 int len;
3234
3235 if (checkclearop(cap->oap))
3236 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003237 if (VIsual_active && get_visual_text(cap, &ptr, &len)
3238 == FAIL)
3239 return;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003240 if (ptr == NULL)
3241 {
3242 pos_T pos = curwin->w_cursor;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003243
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003244 // Find bad word under the cursor. When 'spell' is
3245 // off this fails and find_ident_under_cursor() is
3246 // used below.
Bram Moolenaar134bf072013-09-25 18:54:24 +02003247 emsg_off++;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003248 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
Bram Moolenaar134bf072013-09-25 18:54:24 +02003249 emsg_off--;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003250 if (len != 0 && curwin->w_cursor.col <= pos.col)
3251 ptr = ml_get_pos(&curwin->w_cursor);
3252 curwin->w_cursor = pos;
3253 }
3254
Bram Moolenaarb765d632005-06-07 21:00:02 +00003255 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
3256 FIND_IDENT)) == 0)
3257 return;
Bram Moolenaar08cc3742019-08-11 22:51:14 +02003258 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W'
3259 ? SPELL_ADD_BAD : SPELL_ADD_GOOD,
Bram Moolenaard0131a82006-03-04 21:46:13 +00003260 (nchar == 'G' || nchar == 'W')
3261 ? 0 : (int)cap->count1,
3262 undo);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003263 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00003264 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003265
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003266 case '=': // "z=": suggestions for a badly spelled word
Bram Moolenaar66fa2712006-01-22 23:22:22 +00003267 if (!checkclearop(cap->oap))
Bram Moolenaard12a1322005-08-21 22:08:24 +00003268 spell_suggest((int)cap->count0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003269 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003270#endif
3271
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 default: clearopbeep(cap->oap);
3273 }
3274
3275#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003276 // Redraw when 'foldenable' changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 if (old_fen != curwin->w_p_fen)
3278 {
3279# ifdef FEAT_DIFF
3280 win_T *wp;
3281
3282 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
3283 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003284 // Adjust 'foldenable' in diff-synced windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 FOR_ALL_WINDOWS(wp)
3286 {
3287 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
3288 {
3289 wp->w_p_fen = curwin->w_p_fen;
3290 changed_window_setting_win(wp);
3291 }
3292 }
3293 }
3294# endif
3295 changed_window_setting();
3296 }
3297
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003298 // Redraw when 'foldlevel' changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 if (old_fdl != curwin->w_p_fdl)
3300 newFoldLevel();
3301#endif
3302}
3303
3304#ifdef FEAT_GUI
3305/*
3306 * Vertical scrollbar movement.
3307 */
3308 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003309nv_ver_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310{
3311 if (cap->oap->op_type != OP_NOP)
3312 clearopbeep(cap->oap);
3313
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003314 // Even if an operator was pending, we still want to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 gui_do_scroll();
3316}
3317
3318/*
3319 * Horizontal scrollbar movement.
3320 */
3321 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003322nv_hor_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323{
3324 if (cap->oap->op_type != OP_NOP)
3325 clearopbeep(cap->oap);
3326
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003327 // Even if an operator was pending, we still want to scroll
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003328 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329}
3330#endif
3331
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003332#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003333/*
3334 * Click in GUI tab.
3335 */
3336 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003337nv_tabline(cmdarg_T *cap)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003338{
3339 if (cap->oap->op_type != OP_NOP)
3340 clearopbeep(cap->oap);
3341
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003342 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003343 goto_tabpage(current_tab);
3344}
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003345
3346/*
3347 * Selected item in tab line menu.
3348 */
3349 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003350nv_tabmenu(cmdarg_T *cap)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003351{
3352 if (cap->oap->op_type != OP_NOP)
3353 clearopbeep(cap->oap);
3354
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003355 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003356 handle_tabmenu();
3357}
3358
3359/*
3360 * Handle selecting an item of the GUI tab line menu.
3361 * Used in Normal and Insert mode.
3362 */
3363 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003364handle_tabmenu(void)
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003365{
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003366 switch (current_tabmenu)
3367 {
3368 case TABLINE_MENU_CLOSE:
3369 if (current_tab == 0)
3370 do_cmdline_cmd((char_u *)"tabclose");
3371 else
3372 {
3373 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
3374 current_tab);
3375 do_cmdline_cmd(IObuff);
3376 }
3377 break;
3378
3379 case TABLINE_MENU_NEW:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003380 if (current_tab == 0)
3381 do_cmdline_cmd((char_u *)"$tabnew");
3382 else
3383 {
3384 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
3385 current_tab - 1);
3386 do_cmdline_cmd(IObuff);
3387 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003388 break;
3389
3390 case TABLINE_MENU_OPEN:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003391 if (current_tab == 0)
3392 do_cmdline_cmd((char_u *)"browse $tabnew");
3393 else
3394 {
3395 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
3396 current_tab - 1);
3397 do_cmdline_cmd(IObuff);
3398 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003399 break;
3400 }
3401}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003402#endif
3403
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404/*
3405 * "Q" command.
3406 */
3407 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003408nv_exmode(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409{
3410 /*
3411 * Ignore 'Q' in Visual mode, just give a beep.
3412 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 if (VIsual_active)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003414 vim_beep(BO_EX);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003415 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 do_exmode(FALSE);
3417}
3418
3419/*
3420 * Handle a ":" command.
3421 */
3422 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003423nv_colon(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424{
Bram Moolenaar957cf672020-11-12 14:21:06 +01003425 int old_p_im;
3426 int cmd_result;
3427 int is_cmdkey = cap->cmdchar == K_COMMAND;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428
Bram Moolenaar957cf672020-11-12 14:21:06 +01003429 if (VIsual_active && !is_cmdkey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 nv_operator(cap);
3431 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 {
3433 if (cap->oap->op_type != OP_NOP)
3434 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003435 // Using ":" as a movement is characterwise exclusive.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 cap->oap->motion_type = MCHAR;
3437 cap->oap->inclusive = FALSE;
3438 }
Bram Moolenaar957cf672020-11-12 14:21:06 +01003439 else if (cap->count0 && !is_cmdkey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003441 // translate "count:" into ":.,.+(count - 1)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 stuffcharReadbuff('.');
3443 if (cap->count0 > 1)
3444 {
3445 stuffReadbuff((char_u *)",.+");
3446 stuffnumReadbuff((long)cap->count0 - 1L);
3447 }
3448 }
3449
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003450 // When typing, don't type below an old message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 if (KeyTyped)
3452 compute_cmdrow();
3453
3454 old_p_im = p_im;
3455
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003456 // get a command line and execute it
Bram Moolenaar957cf672020-11-12 14:21:06 +01003457 cmd_result = do_cmdline(NULL, is_cmdkey ? getcmdkeycmd : getexline, NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
3459
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003460 // If 'insertmode' changed, enter or exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 if (p_im != old_p_im)
3462 {
3463 if (p_im)
3464 restart_edit = 'i';
3465 else
3466 restart_edit = 0;
3467 }
3468
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003469 if (cmd_result == FAIL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003470 // The Ex command failed, do not execute the operator.
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003471 clearop(cap->oap);
3472 else if (cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
3474 || cap->oap->start.col >
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003475 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
3476 || did_emsg
3477 ))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003478 // The start of the operator has become invalid by the Ex command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 clearopbeep(cap->oap);
3480 }
3481}
3482
3483/*
3484 * Handle CTRL-G command.
3485 */
3486 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003487nv_ctrlg(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003489 if (VIsual_active) // toggle Selection/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 {
3491 VIsual_select = !VIsual_select;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01003492 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 showmode();
3494 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003495 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003496 // print full name if count given or :cd used
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 fileinfo((int)cap->count0, FALSE, TRUE);
3498}
3499
3500/*
3501 * Handle CTRL-H <Backspace> command.
3502 */
3503 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003504nv_ctrlh(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 if (VIsual_active && VIsual_select)
3507 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003508 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 v_visop(cap);
3510 }
3511 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 nv_left(cap);
3513}
3514
3515/*
3516 * CTRL-L: clear screen and redraw.
3517 */
3518 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003519nv_clear(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520{
3521 if (!checkclearop(cap->oap))
3522 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523#ifdef FEAT_SYN_HL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003524 // Clear all syntax states to force resyncing.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003525 syn_stack_free_all(curwin->w_s);
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02003526# ifdef FEAT_RELTIME
3527 {
3528 win_T *wp;
3529
3530 FOR_ALL_WINDOWS(wp)
3531 wp->w_s->b_syn_slow = FALSE;
3532 }
3533# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534#endif
3535 redraw_later(CLEAR);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003536#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3537# ifdef VIMDLL
3538 if (!gui.in_use)
3539# endif
3540 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01003541#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 }
3543}
3544
3545/*
3546 * CTRL-O: In Select mode: switch to Visual mode for one command.
3547 * Otherwise: Go to older pcmark.
3548 */
3549 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003550nv_ctrlo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 if (VIsual_active && VIsual_select)
3553 {
3554 VIsual_select = FALSE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01003555 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 showmode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003557 restart_VIsual_select = 2; // restart Select mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 }
3559 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560 {
3561 cap->count1 = -cap->count1;
3562 nv_pcmark(cap);
3563 }
3564}
3565
3566/*
Bram Moolenaar1bbb6192018-11-10 16:02:01 +01003567 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is
3568 * not named.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 */
3570 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003571nv_hat(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572{
3573 if (!checkclearopq(cap->oap))
3574 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
3575 GETF_SETMARK|GETF_ALT, FALSE);
3576}
3577
3578/*
3579 * "Z" commands.
3580 */
3581 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003582nv_Zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583{
3584 if (!checkclearopq(cap->oap))
3585 {
3586 switch (cap->nchar)
3587 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003588 // "ZZ": equivalent to ":x".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 case 'Z': do_cmdline_cmd((char_u *)"x");
3590 break;
3591
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003592 // "ZQ": equivalent to ":q!" (Elvis compatible).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 case 'Q': do_cmdline_cmd((char_u *)"q!");
3594 break;
3595
3596 default: clearopbeep(cap->oap);
3597 }
3598 }
3599}
3600
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601/*
3602 * Call nv_ident() as if "c1" was used, with "c2" as next character.
3603 */
3604 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003605do_nv_ident(int c1, int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606{
3607 oparg_T oa;
3608 cmdarg_T ca;
3609
3610 clear_oparg(&oa);
Bram Moolenaara80faa82020-04-12 19:37:17 +02003611 CLEAR_FIELD(ca);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 ca.oap = &oa;
3613 ca.cmdchar = c1;
3614 ca.nchar = c2;
3615 nv_ident(&ca);
3616}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617
3618/*
3619 * Handle the commands that use the word under the cursor.
3620 * [g] CTRL-] :ta to current identifier
3621 * [g] 'K' run program for current identifier
3622 * [g] '*' / to current identifier or string
3623 * [g] '#' ? to current identifier or string
3624 * g ']' :tselect for current identifier
3625 */
3626 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003627nv_ident(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628{
3629 char_u *ptr = NULL;
3630 char_u *buf;
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003631 unsigned buflen;
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003632 char_u *newbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 char_u *p;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003634 char_u *kp; // value of 'keywordprg'
3635 int kp_help; // 'keywordprg' is ":he"
3636 int kp_ex; // 'keywordprg' starts with ":"
3637 int n = 0; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 int cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003639 int g_cmd; // "g" command
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003640 int tag_cmd = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 char_u *aux_ptr;
3642 int isman;
3643 int isman_s;
3644
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003645 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 {
3647 cmdchar = cap->nchar;
3648 g_cmd = TRUE;
3649 }
3650 else
3651 {
3652 cmdchar = cap->cmdchar;
3653 g_cmd = FALSE;
3654 }
3655
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003656 if (cmdchar == POUND) // the pound sign, '#' for English keyboards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 cmdchar = '#';
3658
3659 /*
3660 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
3661 */
3662 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
3663 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
3665 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 if (checkclearopq(cap->oap))
3667 return;
3668 }
3669
3670 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
3671 (cmdchar == '*' || cmdchar == '#')
3672 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
3673 {
3674 clearop(cap->oap);
3675 return;
3676 }
3677
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003678 // Allocate buffer to put the command in. Inserting backslashes can
3679 // double the length of the word. p_kp / curbuf->b_p_kp could be added
3680 // and some numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
3682 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
3683 || STRCMP(kp, ":help") == 0);
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003684 if (kp_help && *skipwhite(ptr) == NUL)
3685 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003686 emsg(_(e_noident)); // found white space only
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003687 return;
3688 }
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003689 kp_ex = (*kp == ':');
3690 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp));
3691 buf = alloc(buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 if (buf == NULL)
3693 return;
3694 buf[0] = NUL;
3695
3696 switch (cmdchar)
3697 {
3698 case '*':
3699 case '#':
3700 /*
3701 * Put cursor at start of word, makes search skip the word
3702 * under the cursor.
3703 * Call setpcmark() first, so "*``" puts the cursor back where
3704 * it was.
3705 */
3706 setpcmark();
3707 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
3708
3709 if (!g_cmd && vim_iswordp(ptr))
3710 STRCPY(buf, "\\<");
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003711 no_smartcase = TRUE; // don't use 'smartcase' now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 break;
3713
3714 case 'K':
3715 if (kp_help)
3716 STRCPY(buf, "he! ");
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003717 else if (kp_ex)
3718 {
3719 if (cap->count0 != 0)
3720 vim_snprintf((char *)buf, buflen, "%s %ld",
3721 kp, cap->count0);
3722 else
3723 STRCPY(buf, kp);
3724 STRCAT(buf, " ");
3725 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 else
3727 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003728 // An external command will probably use an argument starting
3729 // with "-" as an option. To avoid trouble we skip the "-".
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003730 while (*ptr == '-' && n > 0)
3731 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003732 ++ptr;
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003733 --n;
3734 }
3735 if (n == 0)
3736 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003737 emsg(_(e_noident)); // found dashes only
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003738 vim_free(buf);
3739 return;
3740 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003741
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003742 // When a count is given, turn it into a range. Is this
3743 // really what we want?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 isman = (STRCMP(kp, "man") == 0);
3745 isman_s = (STRCMP(kp, "man -s") == 0);
3746 if (cap->count0 != 0 && !(isman || isman_s))
3747 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
3748
3749 STRCAT(buf, "! ");
3750 if (cap->count0 == 0 && isman_s)
3751 STRCAT(buf, "man");
3752 else
3753 STRCAT(buf, kp);
3754 STRCAT(buf, " ");
3755 if (cap->count0 != 0 && (isman || isman_s))
3756 {
3757 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
3758 STRCAT(buf, " ");
3759 }
3760 }
3761 break;
3762
3763 case ']':
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003764 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765#ifdef FEAT_CSCOPE
3766 if (p_cst)
3767 STRCPY(buf, "cstag ");
3768 else
3769#endif
3770 STRCPY(buf, "ts ");
3771 break;
3772
3773 default:
Bram Moolenaar97e7a842010-03-17 13:07:08 +01003774 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 if (curbuf->b_help)
3776 STRCPY(buf, "he! ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 else
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003778 {
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003779 if (g_cmd)
3780 STRCPY(buf, "tj ");
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003781 else if (cap->count0 == 0)
3782 STRCPY(buf, "ta ");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003783 else
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003784 sprintf((char *)buf, ":%ldta ", cap->count0);
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003785 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 }
3787
3788 /*
3789 * Now grab the chars in the identifier
3790 */
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003791 if (cmdchar == 'K' && !kp_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792 {
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003793 ptr = vim_strnsave(ptr, n);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003794 if (kp_ex)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003795 // Escape the argument properly for an Ex command
Bram Moolenaar21c1a0c2021-10-17 17:20:23 +01003796 p = vim_strsave_fnameescape(ptr, VSE_NONE);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003797 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003798 // Escape the argument properly for a shell command
Bram Moolenaar426f3752016-11-04 21:22:37 +01003799 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003800 vim_free(ptr);
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003801 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003803 vim_free(buf);
3804 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003806 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003807 if (newbuf == NULL)
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003808 {
3809 vim_free(buf);
3810 vim_free(p);
3811 return;
3812 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003813 buf = newbuf;
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003814 STRCAT(buf, p);
3815 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003817 else
3818 {
3819 if (cmdchar == '*')
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003820 aux_ptr = (char_u *)(magic_isset() ? "/.*~[^$\\" : "/^$\\");
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003821 else if (cmdchar == '#')
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003822 aux_ptr = (char_u *)(magic_isset() ? "/?.*~[^$\\" : "/?^$\\");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003823 else if (tag_cmd)
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003824 {
3825 if (curbuf->b_help)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003826 // ":help" handles unescaped argument
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003827 aux_ptr = (char_u *)"";
3828 else
3829 aux_ptr = (char_u *)"\\|\"\n[";
3830 }
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003831 else
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003832 aux_ptr = (char_u *)"\\|\"\n*?[";
3833
3834 p = buf + STRLEN(buf);
3835 while (n-- > 0)
3836 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003837 // put a backslash before \ and some others
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003838 if (vim_strchr(aux_ptr, *ptr) != NULL)
3839 *p++ = '\\';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003840 // When current byte is a part of multibyte character, copy all
3841 // bytes of that character.
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003842 if (has_mbyte)
3843 {
3844 int i;
3845 int len = (*mb_ptr2len)(ptr) - 1;
3846
3847 for (i = 0; i < len && n >= 1; ++i, --n)
3848 *p++ = *ptr++;
3849 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003850 *p++ = *ptr++;
3851 }
3852 *p = NUL;
3853 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854
3855 /*
3856 * Execute the command.
3857 */
3858 if (cmdchar == '*' || cmdchar == '#')
3859 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003860 if (!g_cmd && (has_mbyte
3861 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr))
3862 : vim_iswordc(ptr[-1])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 STRCAT(buf, "\\>");
Bram Moolenaard7663c22019-08-06 21:59:57 +02003864
3865 // put pattern in search history
Bram Moolenaarc7be3f32009-12-24 14:01:12 +00003866 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
Bram Moolenaard7663c22019-08-06 21:59:57 +02003868
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003869 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 }
3871 else
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003872 {
3873 g_tag_at_cursor = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 do_cmdline_cmd(buf);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003875 g_tag_at_cursor = FALSE;
3876 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877
3878 vim_free(buf);
3879}
3880
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881/*
3882 * Get visually selected text, within one line only.
3883 * Returns FAIL if more than one line selected.
3884 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003885 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003886get_visual_text(
3887 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003888 char_u **pp, // return: start of selected text
3889 int *lenp) // return: length of selected text
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890{
3891 if (VIsual_mode != 'V')
3892 unadjust_for_sel();
3893 if (VIsual.lnum != curwin->w_cursor.lnum)
3894 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003895 if (cap != NULL)
3896 clearopbeep(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 return FAIL;
3898 }
3899 if (VIsual_mode == 'V')
3900 {
3901 *pp = ml_get_curline();
3902 *lenp = (int)STRLEN(*pp);
3903 }
3904 else
3905 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003906 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 {
3908 *pp = ml_get_pos(&curwin->w_cursor);
3909 *lenp = VIsual.col - curwin->w_cursor.col + 1;
3910 }
3911 else
3912 {
3913 *pp = ml_get_pos(&VIsual);
3914 *lenp = curwin->w_cursor.col - VIsual.col + 1;
3915 }
Bram Moolenaar615ddd52021-11-17 18:00:31 +00003916 if (**pp == NUL)
3917 *lenp = 0;
3918 if (has_mbyte && *lenp > 0)
3919 // Correct the length to include all bytes of the last character.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003920 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 }
3922 reset_VIsual_and_resel();
3923 return OK;
3924}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925
3926/*
3927 * CTRL-T: backwards in tag stack
3928 */
3929 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003930nv_tagpop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931{
3932 if (!checkclearopq(cap->oap))
3933 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
3934}
3935
3936/*
3937 * Handle scrolling command 'H', 'L' and 'M'.
3938 */
3939 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003940nv_scroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941{
3942 int used = 0;
3943 long n;
3944#ifdef FEAT_FOLDING
3945 linenr_T lnum;
3946#endif
3947 int half;
3948
3949 cap->oap->motion_type = MLINE;
3950 setpcmark();
3951
3952 if (cap->cmdchar == 'L')
3953 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003954 validate_botline(); // make sure curwin->w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 curwin->w_cursor.lnum = curwin->w_botline - 1;
3956 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
3957 curwin->w_cursor.lnum = 1;
3958 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003959 {
3960#ifdef FEAT_FOLDING
3961 if (hasAnyFolding(curwin))
3962 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003963 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003964 for (n = cap->count1 - 1; n > 0
3965 && curwin->w_cursor.lnum > curwin->w_topline; --n)
3966 {
3967 (void)hasFolding(curwin->w_cursor.lnum,
3968 &curwin->w_cursor.lnum, NULL);
3969 --curwin->w_cursor.lnum;
3970 }
3971 }
3972 else
3973#endif
3974 curwin->w_cursor.lnum -= cap->count1 - 1;
3975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 }
3977 else
3978 {
3979 if (cap->cmdchar == 'M')
3980 {
3981#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003982 // Don't count filler lines above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 used -= diff_check_fill(curwin, curwin->w_topline)
3984 - curwin->w_topfill;
3985#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003986 validate_botline(); // make sure w_empty_rows is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
3988 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
3989 {
3990#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003991 // Count half he number of filler lines to be "below this
3992 // line" and half to be "above the next line".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
3994 + n) / 2 >= half)
3995 {
3996 --n;
3997 break;
3998 }
3999#endif
4000 used += plines(curwin->w_topline + n);
4001 if (used >= half)
4002 break;
4003#ifdef FEAT_FOLDING
4004 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
4005 n = lnum - curwin->w_topline;
4006#endif
4007 }
4008 if (n > 0 && used > curwin->w_height)
4009 --n;
4010 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004011 else // (cap->cmdchar == 'H')
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004012 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004014#ifdef FEAT_FOLDING
4015 if (hasAnyFolding(curwin))
4016 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004017 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004018 lnum = curwin->w_topline;
4019 while (n-- > 0 && lnum < curwin->w_botline - 1)
4020 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02004021 (void)hasFolding(lnum, NULL, &lnum);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004022 ++lnum;
4023 }
4024 n = lnum - curwin->w_topline;
4025 }
4026#endif
4027 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 curwin->w_cursor.lnum = curwin->w_topline + n;
4029 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4030 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4031 }
4032
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004033 // Correct for 'so', except when an operator is pending.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02004034 if (cap->oap->op_type == OP_NOP)
4035 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 beginline(BL_SOL | BL_FIX);
4037}
4038
4039/*
4040 * Cursor right commands.
4041 */
4042 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004043nv_right(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044{
4045 long n;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004046 int past_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004048 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4049 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004050 // <C-Right> and <S-Right> move a word or WORD right
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004051 if (mod_mask & MOD_MASK_CTRL)
4052 cap->arg = TRUE;
4053 nv_wordcmd(cap);
4054 return;
4055 }
4056
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 cap->oap->motion_type = MCHAR;
4058 cap->oap->inclusive = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004059 past_line = (VIsual_active && *p_sel != 'o');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061 /*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004062 * In virtual edit mode, there's no such thing as "past_line", as lines
4063 * are (theoretically) infinitely long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 */
4065 if (virtual_active())
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004066 past_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067
4068 for (n = cap->count1; n > 0; --n)
4069 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004070 if ((!past_line && oneright() == FAIL)
4071 || (past_line && *ml_get_cursor() == NUL)
Bram Moolenaar78a15312009-05-15 19:33:18 +00004072 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 {
4074 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004075 * <Space> wraps to next line if 'whichwrap' has 's'.
4076 * 'l' wraps to next line if 'whichwrap' has 'l'.
4077 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 */
4079 if ( ((cap->cmdchar == ' '
4080 && vim_strchr(p_ww, 's') != NULL)
4081 || (cap->cmdchar == 'l'
4082 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004083 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 && vim_strchr(p_ww, '>') != NULL))
4085 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4086 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004087 // When deleting we also count the NL as a character.
4088 // Set cap->oap->inclusive when last char in the line is
4089 // included, move to next line after that
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004090 if ( cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 && !cap->oap->inclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004092 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 cap->oap->inclusive = TRUE;
4094 else
4095 {
4096 ++curwin->w_cursor.lnum;
4097 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 curwin->w_set_curswant = TRUE;
4100 cap->oap->inclusive = FALSE;
4101 }
4102 continue;
4103 }
4104 if (cap->oap->op_type == OP_NOP)
4105 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004106 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 if (n == cap->count1)
4108 beep_flush();
4109 }
4110 else
4111 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004112 if (!LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 cap->oap->inclusive = TRUE;
4114 }
4115 break;
4116 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004117 else if (past_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 {
4119 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 if (virtual_active())
4121 oneright();
4122 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 if (has_mbyte)
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02004125 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127 ++curwin->w_cursor.col;
4128 }
4129 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 }
4131#ifdef FEAT_FOLDING
4132 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4133 && cap->oap->op_type == OP_NOP)
4134 foldOpenCursor();
4135#endif
4136}
4137
4138/*
4139 * Cursor left commands.
4140 *
4141 * Returns TRUE when operator end should not be adjusted.
4142 */
4143 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004144nv_left(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145{
4146 long n;
4147
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004148 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4149 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004150 // <C-Left> and <S-Left> move a word or WORD left
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004151 if (mod_mask & MOD_MASK_CTRL)
4152 cap->arg = 1;
4153 nv_bck_word(cap);
4154 return;
4155 }
4156
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 cap->oap->motion_type = MCHAR;
4158 cap->oap->inclusive = FALSE;
4159 for (n = cap->count1; n > 0; --n)
4160 {
4161 if (oneleft() == FAIL)
4162 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004163 // <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
4164 // 'h' wraps to previous line if 'whichwrap' has 'h'.
4165 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166 if ( (((cap->cmdchar == K_BS
4167 || cap->cmdchar == Ctrl_H)
4168 && vim_strchr(p_ww, 'b') != NULL)
4169 || (cap->cmdchar == 'h'
4170 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004171 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 && vim_strchr(p_ww, '<') != NULL))
4173 && curwin->w_cursor.lnum > 1)
4174 {
4175 --(curwin->w_cursor.lnum);
4176 coladvance((colnr_T)MAXCOL);
4177 curwin->w_set_curswant = TRUE;
4178
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004179 // When the NL before the first char has to be deleted we
4180 // put the cursor on the NUL after the previous line.
4181 // This is a very special case, be careful!
4182 // Don't adjust op_end now, otherwise it won't work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 if ( (cap->oap->op_type == OP_DELETE
4184 || cap->oap->op_type == OP_CHANGE)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004185 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004187 char_u *cp = ml_get_cursor();
4188
4189 if (*cp != NUL)
4190 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004191 if (has_mbyte)
4192 curwin->w_cursor.col += (*mb_ptr2len)(cp);
4193 else
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004194 ++curwin->w_cursor.col;
4195 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 cap->retval |= CA_NO_ADJ_OP_END;
4197 }
4198 continue;
4199 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004200 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
4202 beep_flush();
4203 break;
4204 }
4205 }
4206#ifdef FEAT_FOLDING
4207 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4208 && cap->oap->op_type == OP_NOP)
4209 foldOpenCursor();
4210#endif
4211}
4212
4213/*
4214 * Cursor up commands.
4215 * cap->arg is TRUE for "-": Move cursor to first non-blank.
4216 */
4217 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004218nv_up(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004220 if (mod_mask & MOD_MASK_SHIFT)
4221 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004222 // <S-Up> is page up
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004223 cap->arg = BACKWARD;
4224 nv_page(cap);
4225 }
4226 else
4227 {
4228 cap->oap->motion_type = MLINE;
4229 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4230 clearopbeep(cap->oap);
4231 else if (cap->arg)
4232 beginline(BL_WHITE | BL_FIX);
4233 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234}
4235
4236/*
4237 * Cursor down commands.
4238 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
4239 */
4240 static void
Bram Moolenaar1b010052016-09-12 12:24:11 +02004241nv_down(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004243 if (mod_mask & MOD_MASK_SHIFT)
4244 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004245 // <S-Down> is page down
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004246 cap->arg = FORWARD;
4247 nv_page(cap);
4248 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02004249#if defined(FEAT_QUICKFIX)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004250 // Quickfix window only: view the result under the cursor.
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004251 else if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
4252 qf_view_result(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253#endif
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004254 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 {
4256#ifdef FEAT_CMDWIN
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004257 // In the cmdline window a <CR> executes the command.
Bram Moolenaar05159a02005-02-26 23:04:13 +00004258 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 cmdwin_result = CAR;
4260 else
4261#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02004262#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004263 // In a prompt buffer a <CR> in the last line invokes the callback.
Bram Moolenaarf2732452018-06-03 14:47:35 +02004264 if (bt_prompt(curbuf) && cap->cmdchar == CAR
4265 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4266 {
4267 invoke_prompt_callback();
4268 if (restart_edit == 0)
4269 restart_edit = 'a';
4270 }
4271 else
4272#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 {
4274 cap->oap->motion_type = MLINE;
4275 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4276 clearopbeep(cap->oap);
4277 else if (cap->arg)
4278 beginline(BL_WHITE | BL_FIX);
4279 }
4280 }
4281}
4282
4283#ifdef FEAT_SEARCHPATH
4284/*
4285 * Grab the file name under the cursor and edit it.
4286 */
4287 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004288nv_gotofile(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289{
4290 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004291 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004293 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 {
4295 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004296 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297 return;
4298 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004299 if (curbuf_locked())
4300 {
4301 clearop(cap->oap);
4302 return;
4303 }
Bram Moolenaar5aed0cc2020-05-12 22:02:21 +02004304#ifdef FEAT_PROP_POPUP
4305 if (ERROR_IF_TERM_POPUP_WINDOW)
4306 return;
4307#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004309 ptr = grab_file_name(cap->count1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310
4311 if (ptr != NULL)
4312 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004313 // do autowrite if necessary
Bram Moolenaareb44a682017-08-03 22:44:55 +02004314 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf))
Bram Moolenaarcde88542015-08-11 19:14:00 +02004315 (void)autowrite(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 setpcmark();
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004317 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
Bram Moolenaareb44a682017-08-03 22:44:55 +02004318 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004319 && cap->nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004320 {
4321 curwin->w_cursor.lnum = lnum;
4322 check_cursor_lnum();
4323 beginline(BL_SOL | BL_FIX);
4324 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 vim_free(ptr);
4326 }
4327 else
4328 clearop(cap->oap);
4329}
4330#endif
4331
4332/*
4333 * <End> command: to end of current line or last line.
4334 */
4335 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004336nv_end(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004338 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004340 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 nv_goto(cap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004342 cap->count1 = 1; // to end of current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343 }
4344 nv_dollar(cap);
4345}
4346
4347/*
4348 * Handle the "$" command.
4349 */
4350 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004351nv_dollar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352{
4353 cap->oap->motion_type = MCHAR;
4354 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004355 // In virtual mode when off the edge of a line and an operator
4356 // is pending (whew!) keep the cursor where it is.
4357 // Otherwise, send it to the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 if (!virtual_active() || gchar_cursor() != NUL
4359 || cap->oap->op_type == OP_NOP)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004360 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 if (cursor_down((long)(cap->count1 - 1),
4362 cap->oap->op_type == OP_NOP) == FAIL)
4363 clearopbeep(cap->oap);
4364#ifdef FEAT_FOLDING
4365 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4366 foldOpenCursor();
4367#endif
4368}
4369
4370/*
4371 * Implementation of '?' and '/' commands.
4372 * If cap->arg is TRUE don't set PC mark.
4373 */
4374 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004375nv_search(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376{
4377 oparg_T *oap = cap->oap;
Bram Moolenaardda933d2016-09-03 21:04:58 +02004378 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379
4380 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
4381 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004382 // Translate "g??" to "g?g?"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 cap->cmdchar = 'g';
4384 cap->nchar = '?';
4385 nv_operator(cap);
4386 return;
4387 }
4388
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004389 // When using 'incsearch' the cursor may be moved to set a different search
4390 // start position.
Bram Moolenaare96a2492019-06-25 04:12:16 +02004391 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392
4393 if (cap->searchbuf == NULL)
4394 {
4395 clearop(oap);
4396 return;
4397 }
4398
Bram Moolenaar46539112015-02-17 15:43:57 +01004399 (void)normal_search(cap, cap->cmdchar, cap->searchbuf,
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004400 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor))
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004401 ? 0 : SEARCH_MARK, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402}
4403
4404/*
4405 * Handle "N" and "n" commands.
4406 * cap->arg is SEARCH_REV for "N", 0 for "n".
4407 */
4408 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004409nv_next(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410{
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004411 pos_T old = curwin->w_cursor;
4412 int wrapped = FALSE;
4413 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, &wrapped);
Bram Moolenaar46539112015-02-17 15:43:57 +01004414
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004415 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor))
Bram Moolenaar46539112015-02-17 15:43:57 +01004416 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004417 // Avoid getting stuck on the current cursor position, which can
4418 // happen when an offset is given and the cursor is on the last char
4419 // in the buffer: Repeat with count + 1.
Bram Moolenaar46539112015-02-17 15:43:57 +01004420 cap->count1 += 1;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004421 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL);
Bram Moolenaar46539112015-02-17 15:43:57 +01004422 cap->count1 -= 1;
4423 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424}
4425
4426/*
4427 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
4428 * Uses only cap->count1 and cap->oap from "cap".
Bram Moolenaar46539112015-02-17 15:43:57 +01004429 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 */
Bram Moolenaar46539112015-02-17 15:43:57 +01004431 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004432normal_search(
4433 cmdarg_T *cap,
4434 int dir,
4435 char_u *pat,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004436 int opt, // extra flags for do_search()
4437 int *wrapped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438{
4439 int i;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004440 searchit_arg_T sia;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441
4442 cap->oap->motion_type = MCHAR;
4443 cap->oap->inclusive = FALSE;
4444 cap->oap->use_reg_one = TRUE;
4445 curwin->w_set_curswant = TRUE;
4446
Bram Moolenaara80faa82020-04-12 19:37:17 +02004447 CLEAR_FIELD(sia);
Bram Moolenaarc036e872020-02-21 21:30:52 +01004448 i = do_search(cap->oap, dir, dir, pat, cap->count1,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004449 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, &sia);
4450 if (wrapped != NULL)
4451 *wrapped = sia.sa_wrapped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 if (i == 0)
4453 clearop(cap->oap);
4454 else
4455 {
4456 if (i == 2)
4457 cap->oap->motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459#ifdef FEAT_FOLDING
4460 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4461 foldOpenCursor();
4462#endif
4463 }
4464
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004465 // "/$" will put the cursor after the end of the line, may need to
4466 // correct that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 check_cursor();
Bram Moolenaar46539112015-02-17 15:43:57 +01004468 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469}
4470
4471/*
4472 * Character search commands.
4473 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
4474 * ',' and FALSE for ';'.
4475 * cap->nchar is NUL for ',' and ';' (repeat the search)
4476 */
4477 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004478nv_csearch(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479{
4480 int t_cmd;
4481
4482 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
4483 t_cmd = TRUE;
4484 else
4485 t_cmd = FALSE;
4486
4487 cap->oap->motion_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
4489 clearopbeep(cap->oap);
4490 else
4491 {
4492 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004493 // Include a Tab for "tx" and for "dfx".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
4495 && (t_cmd || cap->oap->op_type != OP_NOP))
4496 {
4497 colnr_T scol, ecol;
4498
4499 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4500 curwin->w_cursor.coladd = ecol - scol;
4501 }
4502 else
4503 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505#ifdef FEAT_FOLDING
4506 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4507 foldOpenCursor();
4508#endif
4509 }
4510}
4511
4512/*
4513 * "[" and "]" commands.
4514 * cap->arg is BACKWARD for "[" and FORWARD for "]".
4515 */
4516 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004517nv_brackets(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518{
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004519 pos_T new_pos = {0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 pos_T prev_pos;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004521 pos_T *pos = NULL; // init for GCC
4522 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 int flag;
4524 long n;
4525 int findc;
4526 int c;
4527
4528 cap->oap->motion_type = MCHAR;
4529 cap->oap->inclusive = FALSE;
4530 old_pos = curwin->w_cursor;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004531 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532
4533#ifdef FEAT_SEARCHPATH
4534 /*
4535 * "[f" or "]f" : Edit file under the cursor (same as "gf")
4536 */
4537 if (cap->nchar == 'f')
4538 nv_gotofile(cap);
4539 else
4540#endif
4541
4542#ifdef FEAT_FIND_ID
4543 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00004544 * Find the occurrence(s) of the identifier or define under cursor
4545 * in current and included files or jump to the first occurrence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 *
4547 * search list jump
4548 * fwd bwd fwd bwd fwd bwd
4549 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
4550 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
4551 */
4552 if (vim_strchr((char_u *)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004553# ifdef EBCDIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004554 "iI\005dD\067",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004555# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 "iI\011dD\004",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004557# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 cap->nchar) != NULL)
4559 {
4560 char_u *ptr;
4561 int len;
4562
4563 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
4564 clearop(cap->oap);
4565 else
4566 {
4567 find_pattern_in_path(ptr, 0, len, TRUE,
4568 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
4569 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
4570 cap->count1,
4571 isupper(cap->nchar) ? ACTION_SHOW_ALL :
4572 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
4573 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
4574 (linenr_T)MAXLNUM);
4575 curwin->w_set_curswant = TRUE;
4576 }
4577 }
4578 else
4579#endif
4580
4581 /*
4582 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
4583 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
4584 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
4585 * "[m" or "]m" search for prev/next start of (Java) method.
4586 * "[M" or "]M" search for prev/next end of (Java) method.
4587 */
4588 if ( (cap->cmdchar == '['
4589 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
4590 || (cap->cmdchar == ']'
4591 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
4592 {
4593 if (cap->nchar == '*')
4594 cap->nchar = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 prev_pos.lnum = 0;
4596 if (cap->nchar == 'm' || cap->nchar == 'M')
4597 {
4598 if (cap->cmdchar == '[')
4599 findc = '{';
4600 else
4601 findc = '}';
4602 n = 9999;
4603 }
4604 else
4605 {
4606 findc = cap->nchar;
4607 n = cap->count1;
4608 }
4609 for ( ; n > 0; --n)
4610 {
4611 if ((pos = findmatchlimit(cap->oap, findc,
4612 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
4613 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004614 if (new_pos.lnum == 0) // nothing found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 {
4616 if (cap->nchar != 'm' && cap->nchar != 'M')
4617 clearopbeep(cap->oap);
4618 }
4619 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004620 pos = &new_pos; // use last one found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 break;
4622 }
4623 prev_pos = new_pos;
4624 curwin->w_cursor = *pos;
4625 new_pos = *pos;
4626 }
4627 curwin->w_cursor = old_pos;
4628
4629 /*
4630 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
4631 * brought us to the match for "[m" and "]M" when inside a method.
4632 * Try finding the '{' or '}' we want to be at.
4633 * Also repeat for the given count.
4634 */
4635 if (cap->nchar == 'm' || cap->nchar == 'M')
4636 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004637 // norm is TRUE for "]M" and "[m"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638 int norm = ((findc == '{') == (cap->nchar == 'm'));
4639
4640 n = cap->count1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004641 // found a match: we were inside a method
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 if (prev_pos.lnum != 0)
4643 {
4644 pos = &prev_pos;
4645 curwin->w_cursor = prev_pos;
4646 if (norm)
4647 --n;
4648 }
4649 else
4650 pos = NULL;
4651 while (n > 0)
4652 {
4653 for (;;)
4654 {
4655 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
4656 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004657 // if not found anything, that's an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 if (pos == NULL)
4659 clearopbeep(cap->oap);
4660 n = 0;
4661 break;
4662 }
4663 c = gchar_cursor();
4664 if (c == '{' || c == '}')
4665 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004666 // Must have found end/start of class: use it.
4667 // Or found the place to be at.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 if ((c == findc && norm) || (n == 1 && !norm))
4669 {
4670 new_pos = curwin->w_cursor;
4671 pos = &new_pos;
4672 n = 0;
4673 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004674 // if no match found at all, we started outside of the
4675 // class and we're inside now. Just go on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676 else if (new_pos.lnum == 0)
4677 {
4678 new_pos = curwin->w_cursor;
4679 pos = &new_pos;
4680 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004681 // found start/end of other method: go to match
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 else if ((pos = findmatchlimit(cap->oap, findc,
4683 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
4684 0)) == NULL)
4685 n = 0;
4686 else
4687 curwin->w_cursor = *pos;
4688 break;
4689 }
4690 }
4691 --n;
4692 }
4693 curwin->w_cursor = old_pos;
4694 if (pos == NULL && new_pos.lnum != 0)
4695 clearopbeep(cap->oap);
4696 }
4697 if (pos != NULL)
4698 {
4699 setpcmark();
4700 curwin->w_cursor = *pos;
4701 curwin->w_set_curswant = TRUE;
4702#ifdef FEAT_FOLDING
4703 if ((fdo_flags & FDO_BLOCK) && KeyTyped
4704 && cap->oap->op_type == OP_NOP)
4705 foldOpenCursor();
4706#endif
4707 }
4708 }
4709
4710 /*
4711 * "[[", "[]", "]]" and "][": move to start or end of function
4712 */
4713 else if (cap->nchar == '[' || cap->nchar == ']')
4714 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004715 if (cap->nchar == cap->cmdchar) // "]]" or "[["
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 flag = '{';
4717 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004718 flag = '}'; // "][" or "[]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719
4720 curwin->w_set_curswant = TRUE;
4721 /*
4722 * Imitate strange Vi behaviour: When using "]]" with an operator
4723 * we also stop at '}'.
4724 */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004725 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 (cap->oap->op_type != OP_NOP
4727 && cap->arg == FORWARD && flag == '{')))
4728 clearopbeep(cap->oap);
4729 else
4730 {
4731 if (cap->oap->op_type == OP_NOP)
4732 beginline(BL_WHITE | BL_FIX);
4733#ifdef FEAT_FOLDING
4734 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4735 foldOpenCursor();
4736#endif
4737 }
4738 }
4739
4740 /*
4741 * "[p", "[P", "]P" and "]p": put with indent adjustment
4742 */
4743 else if (cap->nchar == 'p' || cap->nchar == 'P')
4744 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02004745 nv_put_opt(cap, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 }
4747
4748 /*
4749 * "['", "[`", "]'" and "]`": jump to next mark
4750 */
4751 else if (cap->nchar == '\'' || cap->nchar == '`')
4752 {
4753 pos = &curwin->w_cursor;
4754 for (n = cap->count1; n > 0; --n)
4755 {
4756 prev_pos = *pos;
4757 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
4758 cap->nchar == '\'');
4759 if (pos == NULL)
4760 break;
4761 }
4762 if (pos == NULL)
4763 pos = &prev_pos;
4764 nv_cursormark(cap, cap->nchar == '\'', pos);
4765 }
4766
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 /*
4768 * [ or ] followed by a middle mouse click: put selected text with
4769 * indent adjustment. Any other button just does as usual.
4770 */
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02004771 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 {
4773 (void)do_mouse(cap->oap, cap->nchar,
4774 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
4775 cap->count1, PUT_FIXINDENT);
4776 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777
4778#ifdef FEAT_FOLDING
4779 /*
4780 * "[z" and "]z": move to start or end of open fold.
4781 */
4782 else if (cap->nchar == 'z')
4783 {
4784 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4785 cap->count1) == FAIL)
4786 clearopbeep(cap->oap);
4787 }
4788#endif
4789
4790#ifdef FEAT_DIFF
4791 /*
4792 * "[c" and "]c": move to next or previous diff-change.
4793 */
4794 else if (cap->nchar == 'c')
4795 {
4796 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
4797 cap->count1) == FAIL)
4798 clearopbeep(cap->oap);
4799 }
4800#endif
4801
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00004802#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004803 /*
4804 * "[s", "[S", "]s" and "]S": move to next spell error.
4805 */
4806 else if (cap->nchar == 's' || cap->nchar == 'S')
4807 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004808 setpcmark();
4809 for (n = 0; n < cap->count1; ++n)
Bram Moolenaar95529562005-08-25 21:21:38 +00004810 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4811 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004812 {
4813 clearopbeep(cap->oap);
4814 break;
4815 }
Bram Moolenaarb73fa622017-12-21 20:27:47 +01004816 else
4817 curwin->w_set_curswant = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004818# ifdef FEAT_FOLDING
4819 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4820 foldOpenCursor();
4821# endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004822 }
4823#endif
4824
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004825 // Not a valid cap->nchar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826 else
4827 clearopbeep(cap->oap);
4828}
4829
4830/*
4831 * Handle Normal mode "%" command.
4832 */
4833 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004834nv_percent(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835{
4836 pos_T *pos;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02004837#if defined(FEAT_FOLDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 linenr_T lnum = curwin->w_cursor.lnum;
4839#endif
4840
4841 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004842 if (cap->count0) // {cnt}% : goto {cnt} percentage in file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843 {
4844 if (cap->count0 > 100)
4845 clearopbeep(cap->oap);
4846 else
4847 {
4848 cap->oap->motion_type = MLINE;
4849 setpcmark();
Bram Moolenaar2c655342021-02-23 19:32:03 +01004850 // Round up, so 'normal 100%' always jumps at the line line.
4851 // Beyond 21474836 lines, (ml_line_count * 100 + 99) would
4852 // overflow on 32-bits, so use a formula with less accuracy
4853 // to avoid overflows.
4854 if (curbuf->b_ml.ml_line_count >= 21474836)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
4856 / 100L * cap->count0;
4857 else
4858 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
4859 cap->count0 + 99L) / 100L;
Bram Moolenaar1d859e22021-01-28 17:24:58 +01004860 if (curwin->w_cursor.lnum < 1)
4861 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4863 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4864 beginline(BL_SOL | BL_FIX);
4865 }
4866 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004867 else // "%" : go to matching paren
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 {
4869 cap->oap->motion_type = MCHAR;
4870 cap->oap->use_reg_one = TRUE;
4871 if ((pos = findmatch(cap->oap, NUL)) == NULL)
4872 clearopbeep(cap->oap);
4873 else
4874 {
4875 setpcmark();
4876 curwin->w_cursor = *pos;
4877 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 }
4881 }
4882#ifdef FEAT_FOLDING
4883 if (cap->oap->op_type == OP_NOP
4884 && lnum != curwin->w_cursor.lnum
4885 && (fdo_flags & FDO_PERCENT)
4886 && KeyTyped)
4887 foldOpenCursor();
4888#endif
4889}
4890
4891/*
4892 * Handle "(" and ")" commands.
4893 * cap->arg is BACKWARD for "(" and FORWARD for ")".
4894 */
4895 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004896nv_brace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897{
4898 cap->oap->motion_type = MCHAR;
4899 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004900 // The motion used to be inclusive for "(", but that is not what Vi does.
Bram Moolenaarebefac62005-12-28 22:39:57 +00004901 cap->oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902 curwin->w_set_curswant = TRUE;
4903
4904 if (findsent(cap->arg, cap->count1) == FAIL)
4905 clearopbeep(cap->oap);
4906 else
4907 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004908 // Don't leave the cursor on the NUL past end of line.
Bram Moolenaar1f14d572008-01-12 16:12:10 +00004909 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911#ifdef FEAT_FOLDING
4912 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4913 foldOpenCursor();
4914#endif
4915 }
4916}
4917
4918/*
4919 * "m" command: Mark a position.
4920 */
4921 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004922nv_mark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923{
4924 if (!checkclearop(cap->oap))
4925 {
4926 if (setmark(cap->nchar) == FAIL)
4927 clearopbeep(cap->oap);
4928 }
4929}
4930
4931/*
4932 * "{" and "}" commands.
4933 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
4934 */
4935 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004936nv_findpar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937{
4938 cap->oap->motion_type = MCHAR;
4939 cap->oap->inclusive = FALSE;
4940 cap->oap->use_reg_one = TRUE;
4941 curwin->w_set_curswant = TRUE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004942 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 clearopbeep(cap->oap);
4944 else
4945 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947#ifdef FEAT_FOLDING
4948 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4949 foldOpenCursor();
4950#endif
4951 }
4952}
4953
4954/*
4955 * "u" command: Undo or make lower case.
4956 */
4957 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004958nv_undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004960 if (cap->oap->op_type == OP_LOWER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004962 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 cap->cmdchar = 'g';
4964 cap->nchar = 'u';
4965 nv_operator(cap);
4966 }
4967 else
4968 nv_kundo(cap);
4969}
4970
4971/*
4972 * <Undo> command.
4973 */
4974 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004975nv_kundo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976{
4977 if (!checkclearopq(cap->oap))
4978 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02004979#ifdef FEAT_JOB_CHANNEL
4980 if (bt_prompt(curbuf))
4981 {
4982 clearopbeep(cap->oap);
4983 return;
4984 }
4985#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 u_undo((int)cap->count1);
4987 curwin->w_set_curswant = TRUE;
4988 }
4989}
4990
4991/*
4992 * Handle the "r" command.
4993 */
4994 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004995nv_replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996{
4997 char_u *ptr;
4998 int had_ctrl_v;
4999 long n;
5000
5001 if (checkclearop(cap->oap))
5002 return;
Bram Moolenaarf2732452018-06-03 14:47:35 +02005003#ifdef FEAT_JOB_CHANNEL
5004 if (bt_prompt(curbuf) && !prompt_curpos_editable())
5005 {
5006 clearopbeep(cap->oap);
5007 return;
5008 }
5009#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005011 // get another character
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 if (cap->nchar == Ctrl_V)
5013 {
5014 had_ctrl_v = Ctrl_V;
Bram Moolenaar0684e362020-12-03 19:54:42 +01005015 cap->nchar = get_literal(FALSE);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005016 // Don't redo a multibyte character with CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 if (cap->nchar > DEL)
5018 had_ctrl_v = NUL;
5019 }
5020 else
5021 had_ctrl_v = NUL;
5022
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005023 // Abort if the character is a special key.
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00005024 if (IS_SPECIAL(cap->nchar))
5025 {
5026 clearopbeep(cap->oap);
5027 return;
5028 }
5029
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005030 // Visual mode "r"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 if (VIsual_active)
5032 {
Bram Moolenaar57fb0da2009-02-04 10:46:25 +00005033 if (got_int)
5034 reset_VIsual();
Bram Moolenaard9820532013-11-04 01:41:17 +01005035 if (had_ctrl_v)
5036 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005037 // Use a special (negative) number to make a difference between a
5038 // literal CR or NL and a line break.
Bram Moolenaarf12519d2018-02-06 22:52:49 +01005039 if (cap->nchar == CAR)
5040 cap->nchar = REPLACE_CR_NCHAR;
5041 else if (cap->nchar == NL)
5042 cap->nchar = REPLACE_NL_NCHAR;
Bram Moolenaard9820532013-11-04 01:41:17 +01005043 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 nv_operator(cap);
5045 return;
5046 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005048 // Break tabs, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 if (virtual_active())
5050 {
5051 if (u_save_cursor() == FAIL)
5052 return;
5053 if (gchar_cursor() == NUL)
5054 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005055 // Add extra space and put the cursor on the first one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 coladvance_force((colnr_T)(getviscol() + cap->count1));
5057 curwin->w_cursor.col -= cap->count1;
5058 }
5059 else if (gchar_cursor() == TAB)
5060 coladvance_force(getviscol());
5061 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005063 // Abort if not enough characters to replace.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 ptr = ml_get_cursor();
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00005065 if (STRLEN(ptr) < (unsigned)cap->count1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005066 || (has_mbyte && mb_charlen(ptr) < cap->count1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 {
5068 clearopbeep(cap->oap);
5069 return;
5070 }
5071
5072 /*
5073 * Replacing with a TAB is done by edit() when it is complicated because
5074 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
5075 * Other characters are done below to avoid problems with things like
5076 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
5077 */
5078 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
5079 {
5080 stuffnumReadbuff(cap->count1);
5081 stuffcharReadbuff('R');
5082 stuffcharReadbuff('\t');
5083 stuffcharReadbuff(ESC);
5084 return;
5085 }
5086
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005087 // save line for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 if (u_save_cursor() == FAIL)
5089 return;
5090
5091 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
5092 {
5093 /*
5094 * Replace character(s) by a single newline.
5095 * Strange vi behaviour: Only one newline is inserted.
5096 * Delete the characters here.
5097 * Insert the newline with an insert command, takes care of
5098 * autoindent. The insert command depends on being on the last
5099 * character of a line or not.
5100 */
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005101 (void)del_chars(cap->count1, FALSE); // delete the characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 stuffcharReadbuff('\r');
5103 stuffcharReadbuff(ESC);
5104
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005105 // Give 'r' to edit(), to get the redo command right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106 invoke_edit(cap, TRUE, 'r', FALSE);
5107 }
5108 else
5109 {
5110 prep_redo(cap->oap->regname, cap->count1,
5111 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
5112
5113 curbuf->b_op_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 if (has_mbyte)
5115 {
5116 int old_State = State;
5117
5118 if (cap->ncharC1 != 0)
5119 AppendCharToRedobuff(cap->ncharC1);
5120 if (cap->ncharC2 != 0)
5121 AppendCharToRedobuff(cap->ncharC2);
5122
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005123 // This is slow, but it handles replacing a single-byte with a
5124 // multi-byte and the other way around. Also handles adding
5125 // composing characters for utf-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126 for (n = cap->count1; n > 0; --n)
5127 {
5128 State = REPLACE;
Bram Moolenaar8320da42012-04-30 18:18:47 +02005129 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5130 {
5131 int c = ins_copychar(curwin->w_cursor.lnum
5132 + (cap->nchar == Ctrl_Y ? -1 : 1));
5133 if (c != NUL)
5134 ins_char(c);
5135 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005136 // will be decremented further down
Bram Moolenaar8320da42012-04-30 18:18:47 +02005137 ++curwin->w_cursor.col;
5138 }
5139 else
5140 ins_char(cap->nchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 State = old_State;
5142 if (cap->ncharC1 != 0)
5143 ins_char(cap->ncharC1);
5144 if (cap->ncharC2 != 0)
5145 ins_char(cap->ncharC2);
5146 }
5147 }
5148 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 {
5150 /*
5151 * Replace the characters within one line.
5152 */
5153 for (n = cap->count1; n > 0; --n)
5154 {
5155 /*
5156 * Get ptr again, because u_save and/or showmatch() will have
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005157 * released the line. This may also happen in ins_copychar().
5158 * At the same time we let know that the line will be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 */
Bram Moolenaar8320da42012-04-30 18:18:47 +02005160 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5161 {
5162 int c = ins_copychar(curwin->w_cursor.lnum
5163 + (cap->nchar == Ctrl_Y ? -1 : 1));
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005164
5165 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005166 if (c != NUL)
5167 ptr[curwin->w_cursor.col] = c;
5168 }
5169 else
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005170 {
5171 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005172 ptr[curwin->w_cursor.col] = cap->nchar;
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005173 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 if (p_sm && msg_silent == 0)
5175 showmatch(cap->nchar);
5176 ++curwin->w_cursor.col;
5177 }
5178#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005179 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005181 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182
Bram Moolenaar009b2592004-10-24 19:18:58 +00005183 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005184 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005186 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187 }
5188#endif
5189
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005190 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 changed_bytes(curwin->w_cursor.lnum,
5192 (colnr_T)(curwin->w_cursor.col - cap->count1));
5193 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005194 --curwin->w_cursor.col; // cursor on the last replaced char
5195 // if the character on the left of the current cursor is a multi-byte
5196 // character, move two characters left
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 if (has_mbyte)
5198 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199 curbuf->b_op_end = curwin->w_cursor;
5200 curwin->w_set_curswant = TRUE;
5201 set_last_insert(cap->nchar);
5202 }
5203}
5204
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205/*
5206 * 'o': Exchange start and end of Visual area.
5207 * 'O': same, but in block mode exchange left and right corners.
5208 */
5209 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005210v_swap_corners(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211{
5212 pos_T old_cursor;
5213 colnr_T left, right;
5214
5215 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
5216 {
5217 old_cursor = curwin->w_cursor;
5218 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
5219 curwin->w_cursor.lnum = VIsual.lnum;
5220 coladvance(left);
5221 VIsual = curwin->w_cursor;
5222
5223 curwin->w_cursor.lnum = old_cursor.lnum;
5224 curwin->w_curswant = right;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005225 // 'selection "exclusive" and cursor at right-bottom corner: move it
5226 // right one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
5228 ++curwin->w_curswant;
5229 coladvance(curwin->w_curswant);
5230 if (curwin->w_cursor.col == old_cursor.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 && (!virtual_active()
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005232 || curwin->w_cursor.coladd == old_cursor.coladd))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233 {
5234 curwin->w_cursor.lnum = VIsual.lnum;
5235 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
5236 ++right;
5237 coladvance(right);
5238 VIsual = curwin->w_cursor;
5239
5240 curwin->w_cursor.lnum = old_cursor.lnum;
5241 coladvance(left);
5242 curwin->w_curswant = left;
5243 }
5244 }
5245 else
5246 {
5247 old_cursor = curwin->w_cursor;
5248 curwin->w_cursor = VIsual;
5249 VIsual = old_cursor;
5250 curwin->w_set_curswant = TRUE;
5251 }
5252}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253
5254/*
5255 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
5256 */
5257 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005258nv_Replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005260 if (VIsual_active) // "R" is replace lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 {
5262 cap->cmdchar = 'c';
5263 cap->nchar = NUL;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005264 VIsual_mode_orig = VIsual_mode; // remember original area for gv
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 VIsual_mode = 'V';
5266 nv_operator(cap);
5267 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005268 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 {
5270 if (!curbuf->b_p_ma)
Bram Moolenaar108010a2021-06-27 22:03:33 +02005271 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 else
5273 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 if (virtual_active())
5275 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
5277 }
5278 }
5279}
5280
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281/*
5282 * "gr".
5283 */
5284 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005285nv_vreplace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 if (VIsual_active)
5288 {
5289 cap->cmdchar = 'r';
5290 cap->nchar = cap->extra_char;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005291 nv_replace(cap); // Do same as "r" in Visual mode for now
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005293 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 {
5295 if (!curbuf->b_p_ma)
Bram Moolenaar108010a2021-06-27 22:03:33 +02005296 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 else
5298 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005299 if (cap->extra_char == Ctrl_V) // get another character
Bram Moolenaar0684e362020-12-03 19:54:42 +01005300 cap->extra_char = get_literal(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 stuffcharReadbuff(cap->extra_char);
5302 stuffcharReadbuff(ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 if (virtual_active())
5304 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 invoke_edit(cap, TRUE, 'v', FALSE);
5306 }
5307 }
5308}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309
5310/*
5311 * Swap case for "~" command, when it does not work like an operator.
5312 */
5313 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005314n_swapchar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315{
5316 long n;
5317 pos_T startpos;
5318 int did_change = 0;
5319#ifdef FEAT_NETBEANS_INTG
5320 pos_T pos;
5321 char_u *ptr;
5322 int count;
5323#endif
5324
5325 if (checkclearopq(cap->oap))
5326 return;
5327
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005328 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 {
5330 clearopbeep(cap->oap);
5331 return;
5332 }
5333
5334 prep_redo_cmd(cap);
5335
5336 if (u_save_cursor() == FAIL)
5337 return;
5338
5339 startpos = curwin->w_cursor;
5340#ifdef FEAT_NETBEANS_INTG
5341 pos = startpos;
5342#endif
5343 for (n = cap->count1; n > 0; --n)
5344 {
5345 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
5346 inc_cursor();
5347 if (gchar_cursor() == NUL)
5348 {
5349 if (vim_strchr(p_ww, '~') != NULL
5350 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5351 {
5352#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005353 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 {
5355 if (did_change)
5356 {
5357 ptr = ml_get(pos.lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005358 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005359 netbeans_removed(curbuf, pos.lnum, pos.col,
5360 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005362 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 }
5364 pos.col = 0;
5365 pos.lnum++;
5366 }
5367#endif
5368 ++curwin->w_cursor.lnum;
5369 curwin->w_cursor.col = 0;
5370 if (n > 1)
5371 {
5372 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
5373 break;
5374 u_clearline();
5375 }
5376 }
5377 else
5378 break;
5379 }
5380 }
5381#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005382 if (did_change && netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 {
5384 ptr = ml_get(pos.lnum);
5385 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005386 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
5387 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 }
5389#endif
5390
5391
5392 check_cursor();
5393 curwin->w_set_curswant = TRUE;
5394 if (did_change)
5395 {
5396 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
5397 0L);
5398 curbuf->b_op_start = startpos;
5399 curbuf->b_op_end = curwin->w_cursor;
5400 if (curbuf->b_op_end.col > 0)
5401 --curbuf->b_op_end.col;
5402 }
5403}
5404
5405/*
5406 * Move cursor to mark.
5407 */
5408 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005409nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410{
5411 if (check_mark(pos) == FAIL)
5412 clearop(cap->oap);
5413 else
5414 {
5415 if (cap->cmdchar == '\''
5416 || cap->cmdchar == '`'
5417 || cap->cmdchar == '['
5418 || cap->cmdchar == ']')
5419 setpcmark();
5420 curwin->w_cursor = *pos;
5421 if (flag)
5422 beginline(BL_WHITE | BL_FIX);
5423 else
5424 check_cursor();
5425 }
5426 cap->oap->motion_type = flag ? MLINE : MCHAR;
5427 if (cap->cmdchar == '`')
5428 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005429 cap->oap->inclusive = FALSE; // ignored if not MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 curwin->w_set_curswant = TRUE;
5431}
5432
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433/*
5434 * Handle commands that are operators in Visual mode.
5435 */
5436 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005437v_visop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438{
5439 static char_u trans[] = "YyDdCcxdXdAAIIrr";
5440
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005441 // Uppercase means linewise, except in block mode, then "D" deletes till
5442 // the end of the line, and "C" replaces till EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 if (isupper(cap->cmdchar))
5444 {
5445 if (VIsual_mode != Ctrl_V)
Bram Moolenaara390bb62013-03-13 19:02:41 +01005446 {
5447 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005449 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
5451 curwin->w_curswant = MAXCOL;
5452 }
5453 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
5454 nv_operator(cap);
5455}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456
5457/*
5458 * "s" and "S" commands.
5459 */
5460 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005461nv_subst(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462{
Bram Moolenaard96ff162018-02-18 22:13:29 +01005463#ifdef FEAT_TERMINAL
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005464 // When showing output of term_dumpdiff() swap the top and bottom.
Bram Moolenaard96ff162018-02-18 22:13:29 +01005465 if (term_swap_diff() == OK)
5466 return;
5467#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005468#ifdef FEAT_JOB_CHANNEL
5469 if (bt_prompt(curbuf) && !prompt_curpos_editable())
5470 {
5471 clearopbeep(cap->oap);
5472 return;
5473 }
5474#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005475 if (VIsual_active) // "vs" and "vS" are the same as "vc"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 {
5477 if (cap->cmdchar == 'S')
Bram Moolenaara390bb62013-03-13 19:02:41 +01005478 {
5479 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005481 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 cap->cmdchar = 'c';
5483 nv_operator(cap);
5484 }
5485 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 nv_optrans(cap);
5487}
5488
5489/*
5490 * Abbreviated commands.
5491 */
5492 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005493nv_abbrev(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494{
5495 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005496 cap->cmdchar = 'x'; // DEL key behaves like 'x'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005498 // in Visual mode these commands are operators
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 if (VIsual_active)
5500 v_visop(cap);
5501 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502 nv_optrans(cap);
5503}
5504
5505/*
5506 * Translate a command into another command.
5507 */
5508 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005509nv_optrans(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510{
5511 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
5512 (char_u *)"d$", (char_u *)"c$",
5513 (char_u *)"cl", (char_u *)"cc",
5514 (char_u *)"yy", (char_u *)":s\r"};
5515 static char_u *str = (char_u *)"xXDCsSY&";
5516
5517 if (!checkclearopq(cap->oap))
5518 {
Bram Moolenaar7a9bd7c2019-09-17 22:42:55 +02005519 // In Vi "2D" doesn't delete the next line. Can't translate it
5520 // either, because "2." should also not use the count.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005521 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
5522 {
5523 cap->oap->start = curwin->w_cursor;
5524 cap->oap->op_type = OP_DELETE;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00005525#ifdef FEAT_EVAL
5526 set_op_var(OP_DELETE);
5527#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005528 cap->count1 = 1;
5529 nv_dollar(cap);
5530 finish_op = TRUE;
5531 ResetRedobuff();
5532 AppendCharToRedobuff('D');
5533 }
5534 else
5535 {
5536 if (cap->count0)
5537 stuffnumReadbuff(cap->count0);
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02005538 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540 }
5541 cap->opcount = 0;
5542}
5543
5544/*
5545 * "'" and "`" commands. Also for "g'" and "g`".
5546 * cap->arg is TRUE for "'" and "g'".
5547 */
5548 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005549nv_gomark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550{
5551 pos_T *pos;
5552 int c;
5553#ifdef FEAT_FOLDING
Bram Moolenaar8754deb2013-01-17 13:24:08 +01005554 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005555 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556#endif
5557
5558 if (cap->cmdchar == 'g')
5559 c = cap->extra_char;
5560 else
5561 c = cap->nchar;
5562 pos = getmark(c, (cap->oap->op_type == OP_NOP));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005563 if (pos == (pos_T *)-1) // jumped to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 {
5565 if (cap->arg)
5566 {
5567 check_cursor_lnum();
5568 beginline(BL_WHITE | BL_FIX);
5569 }
5570 else
5571 check_cursor();
5572 }
5573 else
5574 nv_cursormark(cap, cap->arg, pos);
5575
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005576 // May need to clear the coladd that a mark includes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577 if (!virtual_active())
5578 curwin->w_cursor.coladd = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02005579 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580#ifdef FEAT_FOLDING
5581 if (cap->oap->op_type == OP_NOP
Bram Moolenaar15364d72013-01-24 21:00:20 +01005582 && pos != NULL
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005583 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 && (fdo_flags & FDO_MARK)
5585 && old_KeyTyped)
5586 foldOpenCursor();
5587#endif
5588}
5589
5590/*
Bram Moolenaar62a23252020-08-09 14:04:42 +02005591 * Handle CTRL-O, CTRL-I, "g;", "g," and "CTRL-Tab" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 */
5593 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005594nv_pcmark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 pos_T *pos;
Bram Moolenaar739f13a2021-12-13 13:12:53 +00005597#ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005599 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar739f13a2021-12-13 13:12:53 +00005600#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601
5602 if (!checkclearopq(cap->oap))
5603 {
Bram Moolenaar62a23252020-08-09 14:04:42 +02005604 if (cap->cmdchar == TAB && mod_mask == MOD_MASK_CTRL)
5605 {
5606 if (goto_tabpage_lastused() == FAIL)
5607 clearopbeep(cap->oap);
5608 return;
5609 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 if (cap->cmdchar == 'g')
5611 pos = movechangelist((int)cap->count1);
5612 else
5613 pos = movemark((int)cap->count1);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005614 if (pos == (pos_T *)-1) // jump to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 {
5616 curwin->w_set_curswant = TRUE;
5617 check_cursor();
5618 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005619 else if (pos != NULL) // can jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 nv_cursormark(cap, FALSE, pos);
5621 else if (cap->cmdchar == 'g')
5622 {
5623 if (curbuf->b_changelistlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005624 emsg(_("E664: changelist is empty"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625 else if (cap->count1 < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005626 emsg(_("E662: At start of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005628 emsg(_("E663: At end of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 }
5630 else
5631 clearopbeep(cap->oap);
5632# ifdef FEAT_FOLDING
5633 if (cap->oap->op_type == OP_NOP
5634 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
5635 && (fdo_flags & FDO_MARK)
5636 && old_KeyTyped)
5637 foldOpenCursor();
5638# endif
5639 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640}
5641
5642/*
5643 * Handle '"' command.
5644 */
5645 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005646nv_regname(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647{
5648 if (checkclearop(cap->oap))
5649 return;
5650#ifdef FEAT_EVAL
5651 if (cap->nchar == '=')
5652 cap->nchar = get_expr_register();
5653#endif
5654 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
5655 {
5656 cap->oap->regname = cap->nchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005657 cap->opcount = cap->count0; // remember count before '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658#ifdef FEAT_EVAL
5659 set_reg_var(cap->oap->regname);
5660#endif
5661 }
5662 else
5663 clearopbeep(cap->oap);
5664}
5665
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666/*
5667 * Handle "v", "V" and "CTRL-V" commands.
5668 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
5669 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005670 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671 */
5672 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005673nv_visual(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674{
Bram Moolenaardf177f62005-02-22 08:39:57 +00005675 if (cap->cmdchar == Ctrl_Q)
5676 cap->cmdchar = Ctrl_V;
5677
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005678 // 'v', 'V' and CTRL-V can be used while an operator is pending to make it
5679 // characterwise, linewise, or blockwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 if (cap->oap->op_type != OP_NOP)
5681 {
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01005682 motion_force = cap->oap->motion_force = cap->cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005683 finish_op = FALSE; // operator doesn't finish now but later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684 return;
5685 }
5686
5687 VIsual_select = cap->arg;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005688 if (VIsual_active) // change Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005690 if (VIsual_mode == cap->cmdchar) // stop visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005692 else // toggle char/block mode
5693 { // or char/line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694 VIsual_mode = cap->cmdchar;
5695 showmode();
=?UTF-8?q?Magnus=20Gro=C3=9F?=f1e88762021-09-12 13:39:55 +02005696 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005698 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005700 else // start Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 {
5702 check_visual_highlight();
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005703 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005705 // use previously selected part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 VIsual = curwin->w_cursor;
5707
5708 VIsual_active = TRUE;
5709 VIsual_reselect = TRUE;
5710 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005711 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 setmouse();
Bram Moolenaar09df3122006-01-23 22:23:09 +00005714 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005715 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716 /*
5717 * For V and ^V, we multiply the number of lines even if there
5718 * was only one -- webb
5719 */
5720 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
5721 {
5722 curwin->w_cursor.lnum +=
5723 resel_VIsual_line_count * cap->count0 - 1;
Bram Moolenaarb07626d2021-10-11 15:40:43 +01005724 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725 }
5726 VIsual_mode = resel_VIsual_mode;
5727 if (VIsual_mode == 'v')
5728 {
5729 if (resel_VIsual_line_count <= 1)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005730 {
5731 validate_virtcol();
5732 curwin->w_curswant = curwin->w_virtcol
5733 + resel_VIsual_vcol * cap->count0 - 1;
5734 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005736 curwin->w_curswant = resel_VIsual_vcol;
5737 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738 }
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005739 if (resel_VIsual_vcol == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 {
5741 curwin->w_curswant = MAXCOL;
5742 coladvance((colnr_T)MAXCOL);
5743 }
5744 else if (VIsual_mode == Ctrl_V)
5745 {
5746 validate_virtcol();
5747 curwin->w_curswant = curwin->w_virtcol
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005748 + resel_VIsual_vcol * cap->count0 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749 coladvance(curwin->w_curswant);
5750 }
5751 else
5752 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005753 redraw_curbuf_later(INVERTED); // show the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754 }
5755 else
5756 {
5757 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005758 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 may_start_select('c');
5760 n_start_visual_mode(cap->cmdchar);
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005761 if (VIsual_mode != 'V' && *p_sel == 'e')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005762 ++cap->count1; // include one more char
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005763 if (cap->count0 > 0 && --cap->count1 > 0)
5764 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005765 // With a count select that many characters or lines.
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005766 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
5767 nv_right(cap);
5768 else if (VIsual_mode == 'V')
5769 nv_down(cap);
5770 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771 }
5772 }
5773}
5774
5775/*
5776 * Start selection for Shift-movement keys.
5777 */
5778 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005779start_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005781 // if 'selectmode' contains "key", start Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782 may_start_select('k');
5783 n_start_visual_mode('v');
5784}
5785
5786/*
5787 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
5788 */
5789 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005790may_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791{
5792 VIsual_select = (stuff_empty() && typebuf_typed()
5793 && (vim_strchr(p_slm, c) != NULL));
5794}
5795
5796/*
5797 * Start Visual mode "c".
5798 * Should set VIsual_select before calling this.
5799 */
5800 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005801n_start_visual_mode(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802{
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005803#ifdef FEAT_CONCEAL
Bram Moolenaarea042672021-06-29 20:22:32 +02005804 int cursor_line_was_concealed = curwin->w_p_cole > 0
5805 && conceal_cursor_line(curwin);
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005806#endif
5807
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 VIsual_mode = c;
5809 VIsual_active = TRUE;
5810 VIsual_reselect = TRUE;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005811
5812 // Corner case: the 0 position in a tab may change when going into
Bram Moolenaar4b96df52020-01-26 22:00:26 +01005813 // virtualedit. Recalculate curwin->w_cursor to avoid bad highlighting.
Gary Johnson53ba05b2021-07-26 22:19:10 +02005814 if (c == Ctrl_V && (get_ve_flags() & VE_BLOCK) && gchar_cursor() == TAB)
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005815 {
5816 validate_virtcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817 coladvance(curwin->w_virtcol);
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005818 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819 VIsual = curwin->w_cursor;
5820
5821#ifdef FEAT_FOLDING
5822 foldAdjustVisual();
5823#endif
5824
Bram Moolenaara0620062021-11-17 16:52:40 +00005825 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826 setmouse();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005827#ifdef FEAT_CONCEAL
Bram Moolenaarea042672021-06-29 20:22:32 +02005828 // Check if redraw is needed after changing the state.
5829 conceal_check_cursor_line(cursor_line_was_concealed);
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005830#endif
5831
Bram Moolenaar09df3122006-01-23 22:23:09 +00005832 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005833 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005835 // Make sure the clipboard gets updated. Needed because start and
5836 // end may still be the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005837 clip_star.vmode = NUL;
5838#endif
5839
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005840 // Only need to redraw this line, unless still need to redraw an old
5841 // Visual area (when 'lazyredraw' is set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842 if (curwin->w_redr_type < INVERTED)
5843 {
5844 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
5845 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
5846 }
5847}
5848
Bram Moolenaar071d4272004-06-13 20:20:40 +00005849
5850/*
5851 * CTRL-W: Window commands
5852 */
5853 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005854nv_window(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855{
Bram Moolenaar938783d2017-07-16 20:13:26 +02005856 if (cap->nchar == ':')
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005857 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005858 // "CTRL-W :" is the same as typing ":"; useful in a terminal window
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005859 cap->cmdchar = ':';
5860 cap->nchar = NUL;
Bram Moolenaar938783d2017-07-16 20:13:26 +02005861 nv_colon(cap);
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005862 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02005863 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005864 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865}
5866
5867/*
5868 * CTRL-Z: Suspend
5869 */
5870 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005871nv_suspend(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005872{
5873 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 if (VIsual_active)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005875 end_visual_mode(); // stop Visual mode
Bram Moolenaar100118c2020-12-11 19:30:34 +01005876 do_cmdline_cmd((char_u *)"stop");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877}
5878
5879/*
5880 * Commands starting with "g".
5881 */
5882 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005883nv_g_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884{
5885 oparg_T *oap = cap->oap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 pos_T tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 int i;
5888 int flag = FALSE;
5889
5890 switch (cap->nchar)
5891 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005892 case Ctrl_A:
5893 case Ctrl_X:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894#ifdef MEM_PROFILE
5895 /*
5896 * "g^A": dump log of used memory.
5897 */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005898 if (!VIsual_active && cap->nchar == Ctrl_A)
5899 vim_mem_profile_dump();
5900 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005902 /*
5903 * "g^A/g^X": sequentially increment visually selected region
5904 */
5905 if (VIsual_active)
5906 {
5907 cap->arg = TRUE;
5908 cap->cmdchar = cap->nchar;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005909 cap->nchar = NUL;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005910 nv_addsub(cap);
5911 }
5912 else
5913 clearopbeep(oap);
5914 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 /*
5917 * "gR": Enter virtual replace mode.
5918 */
5919 case 'R':
5920 cap->arg = TRUE;
5921 nv_Replace(cap);
5922 break;
5923
5924 case 'r':
5925 nv_vreplace(cap);
5926 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927
5928 case '&':
5929 do_cmdline_cmd((char_u *)"%s//~/&");
5930 break;
5931
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932 /*
5933 * "gv": Reselect the previous Visual area. If Visual already active,
5934 * exchange previous and current Visual area.
5935 */
5936 case 'v':
5937 if (checkclearop(oap))
5938 break;
5939
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005940 if ( curbuf->b_visual.vi_start.lnum == 0
5941 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
5942 || curbuf->b_visual.vi_end.lnum == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943 beep_flush();
5944 else
5945 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005946 // set w_cursor to the start of the Visual area, tpos to the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947 if (VIsual_active)
5948 {
5949 i = VIsual_mode;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005950 VIsual_mode = curbuf->b_visual.vi_mode;
5951 curbuf->b_visual.vi_mode = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952# ifdef FEAT_EVAL
5953 curbuf->b_visual_mode_eval = i;
5954# endif
5955 i = curwin->w_curswant;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005956 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5957 curbuf->b_visual.vi_curswant = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005959 tpos = curbuf->b_visual.vi_end;
5960 curbuf->b_visual.vi_end = curwin->w_cursor;
5961 curwin->w_cursor = curbuf->b_visual.vi_start;
5962 curbuf->b_visual.vi_start = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 }
5964 else
5965 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005966 VIsual_mode = curbuf->b_visual.vi_mode;
5967 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5968 tpos = curbuf->b_visual.vi_end;
5969 curwin->w_cursor = curbuf->b_visual.vi_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970 }
5971
5972 VIsual_active = TRUE;
5973 VIsual_reselect = TRUE;
5974
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005975 // Set Visual to the start and w_cursor to the end of the Visual
5976 // area. Make sure they are on an existing character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 check_cursor();
5978 VIsual = curwin->w_cursor;
5979 curwin->w_cursor = tpos;
5980 check_cursor();
5981 update_topline();
5982 /*
5983 * When called from normal "g" command: start Select mode when
5984 * 'selectmode' contains "cmd". When called for K_SELECT, always
5985 * start Select mode.
5986 */
5987 if (cap->arg)
5988 VIsual_select = TRUE;
5989 else
5990 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005992#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005993 // Make sure the clipboard gets updated. Needed because start and
5994 // end are still the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995 clip_star.vmode = NUL;
5996#endif
5997 redraw_curbuf_later(INVERTED);
5998 showmode();
5999 }
6000 break;
6001 /*
6002 * "gV": Don't reselect the previous Visual area after a Select mode
6003 * mapping of menu.
6004 */
6005 case 'V':
6006 VIsual_reselect = FALSE;
6007 break;
6008
6009 /*
6010 * "gh": start Select mode.
6011 * "gH": start Select line mode.
6012 * "g^H": start Select block mode.
6013 */
6014 case K_BS:
6015 cap->nchar = Ctrl_H;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006016 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017 case 'h':
6018 case 'H':
6019 case Ctrl_H:
6020# ifdef EBCDIC
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006021 // EBCDIC: 'v'-'h' != '^v'-'^h'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022 if (cap->nchar == Ctrl_H)
6023 cap->cmdchar = Ctrl_V;
6024 else
6025# endif
6026 cap->cmdchar = cap->nchar + ('v' - 'h');
6027 cap->arg = TRUE;
6028 nv_visual(cap);
6029 break;
Bram Moolenaar641e2862012-07-25 15:06:34 +02006030
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006031 // "gn", "gN" visually select next/previous search match
6032 // "gn" selects next match
6033 // "gN" selects previous match
Bram Moolenaar641e2862012-07-25 15:06:34 +02006034 case 'N':
6035 case 'n':
6036 if (!current_search(cap->count1, cap->nchar == 'n'))
Bram Moolenaarf00dc262012-10-21 03:54:33 +02006037 clearopbeep(oap);
Bram Moolenaar641e2862012-07-25 15:06:34 +02006038 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039
6040 /*
6041 * "gj" and "gk" two new funny movement keys -- up and down
6042 * movement based on *screen* line rather than *file* line.
6043 */
6044 case 'j':
6045 case K_DOWN:
Bram Moolenaare71996b2021-01-21 17:03:07 +01006046 // with 'nowrap' it works just like the normal "j" command.
6047 if (!curwin->w_p_wrap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048 {
6049 oap->motion_type = MLINE;
6050 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
6051 }
6052 else
6053 i = nv_screengo(oap, FORWARD, cap->count1);
6054 if (i == FAIL)
6055 clearopbeep(oap);
6056 break;
6057
6058 case 'k':
6059 case K_UP:
Bram Moolenaare71996b2021-01-21 17:03:07 +01006060 // with 'nowrap' it works just like the normal "k" command.
6061 if (!curwin->w_p_wrap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 {
6063 oap->motion_type = MLINE;
6064 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
6065 }
6066 else
6067 i = nv_screengo(oap, BACKWARD, cap->count1);
6068 if (i == FAIL)
6069 clearopbeep(oap);
6070 break;
6071
6072 /*
6073 * "gJ": join two lines without inserting a space.
6074 */
6075 case 'J':
6076 nv_join(cap);
6077 break;
6078
6079 /*
6080 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
6081 * "gm": middle of "g0" and "g$".
6082 */
6083 case '^':
6084 flag = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006085 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086
6087 case '0':
6088 case 'm':
6089 case K_HOME:
6090 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091 oap->motion_type = MCHAR;
6092 oap->inclusive = FALSE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006093 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006095 int width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006096 int width2 = width1 + curwin_col_off2();
6097
6098 validate_virtcol();
6099 i = 0;
6100 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
6101 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
6102 }
6103 else
6104 i = curwin->w_leftcol;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006105 // Go to the middle of the screen line. When 'number' or
6106 // 'relativenumber' is on and lines are wrapping the middle can be more
6107 // to the left.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006108 if (cap->nchar == 'm')
Bram Moolenaar02631462017-09-22 15:20:32 +02006109 i += (curwin->w_width - curwin_col_off()
Bram Moolenaar071d4272004-06-13 20:20:40 +00006110 + ((curwin->w_p_wrap && i > 0)
6111 ? curwin_col_off2() : 0)) / 2;
6112 coladvance((colnr_T)i);
6113 if (flag)
6114 {
6115 do
6116 i = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01006117 while (VIM_ISWHITE(i) && oneright() == OK);
Bram Moolenaarf9514162018-11-22 03:08:29 +01006118 curwin->w_valid &= ~VALID_WCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006119 }
6120 curwin->w_set_curswant = TRUE;
6121 break;
6122
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006123 case 'M':
6124 {
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006125 oap->motion_type = MCHAR;
6126 oap->inclusive = FALSE;
Bram Moolenaar71c41252021-12-26 15:00:07 +00006127 i = linetabsize(ml_get_curline());
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006128 if (cap->count0 > 0 && cap->count0 <= 100)
6129 coladvance((colnr_T)(i * cap->count0 / 100));
6130 else
6131 coladvance((colnr_T)(i / 2));
6132 curwin->w_set_curswant = TRUE;
6133 }
6134 break;
6135
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136 case '_':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006137 // "g_": to the last non-blank character in the line or <count> lines
6138 // downward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139 cap->oap->motion_type = MCHAR;
6140 cap->oap->inclusive = TRUE;
6141 curwin->w_curswant = MAXCOL;
6142 if (cursor_down((long)(cap->count1 - 1),
6143 cap->oap->op_type == OP_NOP) == FAIL)
6144 clearopbeep(cap->oap);
6145 else
6146 {
6147 char_u *ptr = ml_get_curline();
6148
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006149 // In Visual mode we may end up after the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
6151 --curwin->w_cursor.col;
6152
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006153 // Decrease the cursor column until it's on a non-blank.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154 while (curwin->w_cursor.col > 0
Bram Moolenaar1c465442017-03-12 20:10:05 +01006155 && VIM_ISWHITE(ptr[curwin->w_cursor.col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156 --curwin->w_cursor.col;
6157 curwin->w_set_curswant = TRUE;
Bram Moolenaar5890b2c2010-01-12 15:42:37 +01006158 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 }
6160 break;
6161
6162 case '$':
6163 case K_END:
6164 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 {
6166 int col_off = curwin_col_off();
6167
6168 oap->motion_type = MCHAR;
6169 oap->inclusive = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006170 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006172 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173 if (cap->count1 == 1)
6174 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006175 int width1 = curwin->w_width - col_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176 int width2 = width1 + curwin_col_off2();
6177
6178 validate_virtcol();
6179 i = width1 - 1;
6180 if (curwin->w_virtcol >= (colnr_T)width1)
6181 i += ((curwin->w_virtcol - width1) / width2 + 1)
6182 * width2;
6183 coladvance((colnr_T)i);
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006184
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006185 // Make sure we stick in this column.
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006186 validate_virtcol();
6187 curwin->w_curswant = curwin->w_virtcol;
6188 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
6190 {
6191 /*
6192 * Check for landing on a character that got split at
6193 * the end of the line. We do not want to advance to
6194 * the next screen line.
6195 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006196 if (curwin->w_virtcol > (colnr_T)i)
6197 --curwin->w_cursor.col;
6198 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 }
6200 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
6201 clearopbeep(oap);
6202 }
6203 else
6204 {
Bram Moolenaard5c82342019-07-27 18:44:57 +02006205 if (cap->count1 > 1)
6206 // if it fails, let the cursor still move to the last char
Bram Moolenaar9c272a92019-08-16 21:54:27 +02006207 (void)cursor_down(cap->count1 - 1, FALSE);
Bram Moolenaard5c82342019-07-27 18:44:57 +02006208
Bram Moolenaar02631462017-09-22 15:20:32 +02006209 i = curwin->w_leftcol + curwin->w_width - col_off - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006210 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006211
Bram Moolenaar74ede802021-05-29 19:18:01 +02006212 // if the character doesn't fit move one back
6213 if (curwin->w_cursor.col > 0
6214 && (*mb_ptr2cells)(ml_get_cursor()) > 1)
6215 {
6216 colnr_T vcol;
6217
6218 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &vcol);
6219 if (vcol >= curwin->w_leftcol + curwin->w_width - col_off)
6220 --curwin->w_cursor.col;
6221 }
6222
Bram Moolenaard5c82342019-07-27 18:44:57 +02006223 // Make sure we stick in this column.
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006224 validate_virtcol();
6225 curwin->w_curswant = curwin->w_virtcol;
6226 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 }
6228 }
6229 break;
6230
6231 /*
6232 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
6233 */
6234 case '*':
6235 case '#':
6236#if POUND != '#'
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006237 case POUND: // pound sign (sometimes equal to '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006239 case Ctrl_RSB: // :tag or :tselect for current identifier
6240 case ']': // :tselect for current identifier
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 nv_ident(cap);
6242 break;
6243
6244 /*
6245 * ge and gE: go back to end of word
6246 */
6247 case 'e':
6248 case 'E':
6249 oap->motion_type = MCHAR;
6250 curwin->w_set_curswant = TRUE;
6251 oap->inclusive = TRUE;
6252 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
6253 clearopbeep(oap);
6254 break;
6255
6256 /*
6257 * "g CTRL-G": display info about cursor position
6258 */
6259 case Ctrl_G:
Bram Moolenaared767a22016-01-03 22:49:16 +01006260 cursor_pos_info(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261 break;
6262
6263 /*
6264 * "gi": start Insert at the last position.
6265 */
6266 case 'i':
6267 if (curbuf->b_last_insert.lnum != 0)
6268 {
6269 curwin->w_cursor = curbuf->b_last_insert;
6270 check_cursor_lnum();
6271 i = (int)STRLEN(ml_get_curline());
6272 if (curwin->w_cursor.col > (colnr_T)i)
6273 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006274 if (virtual_active())
6275 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 curwin->w_cursor.col = i;
6277 }
6278 }
6279 cap->cmdchar = 'i';
6280 nv_edit(cap);
6281 break;
6282
6283 /*
6284 * "gI": Start insert in column 1.
6285 */
6286 case 'I':
6287 beginline(0);
6288 if (!checkclearopq(oap))
6289 invoke_edit(cap, FALSE, 'g', FALSE);
6290 break;
6291
6292#ifdef FEAT_SEARCHPATH
6293 /*
6294 * "gf": goto file, edit file under cursor
6295 * "]f" and "[f": can also be used.
6296 */
6297 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006298 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006299 nv_gotofile(cap);
6300 break;
6301#endif
6302
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006303 // "g'm" and "g`m": jump to mark without setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304 case '\'':
6305 cap->arg = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006306 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307 case '`':
6308 nv_gomark(cap);
6309 break;
6310
6311 /*
6312 * "gs": Goto sleep.
6313 */
6314 case 's':
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01006315 do_sleep(cap->count1 * 1000L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316 break;
6317
6318 /*
6319 * "ga": Display the ascii value of the character under the
6320 * cursor. It is displayed in decimal, hex, and octal. -- webb
6321 */
6322 case 'a':
6323 do_ascii(NULL);
6324 break;
6325
Bram Moolenaar071d4272004-06-13 20:20:40 +00006326 /*
6327 * "g8": Display the bytes used for the UTF-8 character under the
6328 * cursor. It is displayed in hex.
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006329 * "8g8" finds illegal byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 */
6331 case '8':
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006332 if (cap->count0 == 8)
6333 utf_find_illegal();
6334 else
6335 show_utf8();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006338 // "g<": show scrollback text
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00006339 case '<':
6340 show_sb_text();
6341 break;
6342
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343 /*
6344 * "gg": Goto the first line in file. With a count it goes to
6345 * that line number like for "G". -- webb
6346 */
6347 case 'g':
6348 cap->arg = FALSE;
6349 nv_goto(cap);
6350 break;
6351
6352 /*
6353 * Two-character operators:
6354 * "gq" Format text
6355 * "gw" Format text and keep cursor position
6356 * "g~" Toggle the case of the text.
6357 * "gu" Change text to lower case.
6358 * "gU" Change text to upper case.
6359 * "g?" rot13 encoding
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006360 * "g@" call 'operatorfunc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006361 */
6362 case 'q':
6363 case 'w':
6364 oap->cursor_start = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006365 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366 case '~':
6367 case 'u':
6368 case 'U':
6369 case '?':
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006370 case '@':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371 nv_operator(cap);
6372 break;
6373
6374 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00006375 * "gd": Find first occurrence of pattern under the cursor in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376 * current function
6377 * "gD": idem, but in the current file.
6378 */
6379 case 'd':
6380 case 'D':
Bram Moolenaarf75a9632005-09-13 21:20:47 +00006381 nv_gd(oap, cap->nchar, (int)cap->count0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 break;
6383
Bram Moolenaar071d4272004-06-13 20:20:40 +00006384 /*
6385 * g<*Mouse> : <C-*mouse>
6386 */
6387 case K_MIDDLEMOUSE:
6388 case K_MIDDLEDRAG:
6389 case K_MIDDLERELEASE:
6390 case K_LEFTMOUSE:
6391 case K_LEFTDRAG:
6392 case K_LEFTRELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01006393 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394 case K_RIGHTMOUSE:
6395 case K_RIGHTDRAG:
6396 case K_RIGHTRELEASE:
6397 case K_X1MOUSE:
6398 case K_X1DRAG:
6399 case K_X1RELEASE:
6400 case K_X2MOUSE:
6401 case K_X2DRAG:
6402 case K_X2RELEASE:
6403 mod_mask = MOD_MASK_CTRL;
6404 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
6405 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406
6407 case K_IGNORE:
6408 break;
6409
6410 /*
6411 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
6412 */
6413 case 'p':
6414 case 'P':
6415 nv_put(cap);
6416 break;
6417
6418#ifdef FEAT_BYTEOFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006419 // "go": goto byte count from start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420 case 'o':
6421 goto_byte(cap->count0);
6422 break;
6423#endif
6424
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006425 // "gQ": improved Ex mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426 case 'Q':
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006427 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428 {
6429 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006430 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431 break;
6432 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006433
Bram Moolenaar071d4272004-06-13 20:20:40 +00006434 if (!checkclearopq(oap))
6435 do_exmode(TRUE);
6436 break;
6437
Bram Moolenaar071d4272004-06-13 20:20:40 +00006438 case ',':
6439 nv_pcmark(cap);
6440 break;
6441
6442 case ';':
6443 cap->count1 = -cap->count1;
6444 nv_pcmark(cap);
6445 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006446
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006447 case 't':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006448 if (!checkclearop(oap))
6449 goto_tabpage((int)cap->count0);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006450 break;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006451 case 'T':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006452 if (!checkclearop(oap))
6453 goto_tabpage(-(int)cap->count1);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006454 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006455
Bram Moolenaar62a23252020-08-09 14:04:42 +02006456 case TAB:
6457 if (!checkclearop(oap) && goto_tabpage_lastused() == FAIL)
6458 clearopbeep(oap);
6459 break;
6460
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006461 case '+':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006462 case '-': // "g+" and "g-": undo or redo along the timeline
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006463 if (!checkclearopq(oap))
Bram Moolenaard3667a22006-03-16 21:35:52 +00006464 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
Bram Moolenaar730cde92010-06-27 05:18:54 +02006465 FALSE, FALSE, FALSE);
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006466 break;
6467
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468 default:
6469 clearopbeep(oap);
6470 break;
6471 }
6472}
6473
6474/*
6475 * Handle "o" and "O" commands.
6476 */
6477 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006478n_opencmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479{
Bram Moolenaar860cae12010-06-05 23:22:07 +02006480#ifdef FEAT_CONCEAL
6481 linenr_T oldline = curwin->w_cursor.lnum;
6482#endif
6483
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 if (!checkclearopq(cap->oap))
6485 {
6486#ifdef FEAT_FOLDING
6487 if (cap->cmdchar == 'O')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006488 // Open above the first line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489 (void)hasFolding(curwin->w_cursor.lnum,
6490 &curwin->w_cursor.lnum, NULL);
6491 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006492 // Open below the last line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493 (void)hasFolding(curwin->w_cursor.lnum,
6494 NULL, &curwin->w_cursor.lnum);
6495#endif
6496 if (u_save((linenr_T)(curwin->w_cursor.lnum -
6497 (cap->cmdchar == 'O' ? 1 : 0)),
6498 (linenr_T)(curwin->w_cursor.lnum +
6499 (cap->cmdchar == 'o' ? 1 : 0))
6500 ) == OK
6501 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02006502 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0,
Bram Moolenaar6e371ec2021-12-12 14:16:39 +00006503 0, NULL) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006504 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02006505#ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02006506 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01006507 redrawWinline(curwin, oldline);
Bram Moolenaar860cae12010-06-05 23:22:07 +02006508#endif
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006509#ifdef FEAT_SYN_HL
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006510 if (curwin->w_p_cul)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006511 // force redraw of cursorline
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006512 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006513#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006514 // When '#' is in 'cpoptions' ignore the count.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006515 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
6516 cap->count1 = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006517 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
6518 }
6519 }
6520}
6521
6522/*
6523 * "." command: redo last change.
6524 */
6525 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006526nv_dot(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527{
6528 if (!checkclearopq(cap->oap))
6529 {
6530 /*
6531 * If "restart_edit" is TRUE, the last but one command is repeated
6532 * instead of the last command (inserting text). This is used for
6533 * CTRL-O <.> in insert mode.
6534 */
6535 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
6536 clearopbeep(cap->oap);
6537 }
6538}
6539
6540/*
6541 * CTRL-R: undo undo
6542 */
6543 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006544nv_redo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545{
6546 if (!checkclearopq(cap->oap))
6547 {
6548 u_redo((int)cap->count1);
6549 curwin->w_set_curswant = TRUE;
6550 }
6551}
6552
6553/*
6554 * Handle "U" command.
6555 */
6556 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006557nv_Undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006559 // In Visual mode and typing "gUU" triggers an operator
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006560 if (cap->oap->op_type == OP_UPPER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006561 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006562 // translate "gUU" to "gUgU"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563 cap->cmdchar = 'g';
6564 cap->nchar = 'U';
6565 nv_operator(cap);
6566 }
6567 else if (!checkclearopq(cap->oap))
6568 {
6569 u_undoline();
6570 curwin->w_set_curswant = TRUE;
6571 }
6572}
6573
6574/*
6575 * '~' command: If tilde is not an operator and Visual is off: swap case of a
6576 * single character.
6577 */
6578 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006579nv_tilde(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006581 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE)
Bram Moolenaarf2732452018-06-03 14:47:35 +02006582 {
6583#ifdef FEAT_JOB_CHANNEL
6584 if (bt_prompt(curbuf) && !prompt_curpos_editable())
6585 {
6586 clearopbeep(cap->oap);
6587 return;
6588 }
6589#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006590 n_swapchar(cap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592 else
6593 nv_operator(cap);
6594}
6595
6596/*
6597 * Handle an operator command.
6598 * The actual work is done by do_pending_operator().
6599 */
6600 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006601nv_operator(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006602{
6603 int op_type;
6604
6605 op_type = get_op_type(cap->cmdchar, cap->nchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006606#ifdef FEAT_JOB_CHANNEL
6607 if (bt_prompt(curbuf) && op_is_change(op_type) && !prompt_curpos_editable())
6608 {
6609 clearopbeep(cap->oap);
6610 return;
6611 }
6612#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006614 if (op_type == cap->oap->op_type) // double operator works on lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615 nv_lineop(cap);
6616 else if (!checkclearop(cap->oap))
6617 {
6618 cap->oap->start = curwin->w_cursor;
6619 cap->oap->op_type = op_type;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006620#ifdef FEAT_EVAL
6621 set_op_var(op_type);
6622#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006623 }
6624}
6625
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006626#ifdef FEAT_EVAL
6627/*
6628 * Set v:operator to the characters for "optype".
6629 */
6630 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006631set_op_var(int optype)
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006632{
6633 char_u opchars[3];
6634
6635 if (optype == OP_NOP)
6636 set_vim_var_string(VV_OP, NULL, 0);
6637 else
6638 {
6639 opchars[0] = get_op_char(optype);
6640 opchars[1] = get_extra_op_char(optype);
6641 opchars[2] = NUL;
6642 set_vim_var_string(VV_OP, opchars, -1);
6643 }
6644}
6645#endif
6646
Bram Moolenaar071d4272004-06-13 20:20:40 +00006647/*
6648 * Handle linewise operator "dd", "yy", etc.
6649 *
6650 * "_" is is a strange motion command that helps make operators more logical.
6651 * It is actually implemented, but not documented in the real Vi. This motion
6652 * command actually refers to "the current line". Commands like "dd" and "yy"
6653 * are really an alternate form of "d_" and "y_". It does accept a count, so
6654 * "d3_" works to delete 3 lines.
6655 */
6656 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006657nv_lineop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006658{
6659 cap->oap->motion_type = MLINE;
6660 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
6661 clearopbeep(cap->oap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006662 else if ( (cap->oap->op_type == OP_DELETE // only with linewise motions
Bram Moolenaar83dadaf2012-12-12 17:33:32 +01006663 && cap->oap->motion_force != 'v'
6664 && cap->oap->motion_force != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006665 || cap->oap->op_type == OP_LSHIFT
6666 || cap->oap->op_type == OP_RSHIFT)
6667 beginline(BL_SOL | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006668 else if (cap->oap->op_type != OP_YANK) // 'Y' does not move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669 beginline(BL_WHITE | BL_FIX);
6670}
6671
6672/*
6673 * <Home> command.
6674 */
6675 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006676nv_home(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006678 // CTRL-HOME is like "gg"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006679 if (mod_mask & MOD_MASK_CTRL)
6680 nv_goto(cap);
6681 else
6682 {
6683 cap->count0 = 1;
6684 nv_pipe(cap);
6685 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006686 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6687 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006688}
6689
6690/*
6691 * "|" command.
6692 */
6693 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006694nv_pipe(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006695{
6696 cap->oap->motion_type = MCHAR;
6697 cap->oap->inclusive = FALSE;
6698 beginline(0);
6699 if (cap->count0 > 0)
6700 {
6701 coladvance((colnr_T)(cap->count0 - 1));
6702 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
6703 }
6704 else
6705 curwin->w_curswant = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006706 // keep curswant at the column where we wanted to go, not where
6707 // we ended; differs if line is too short
Bram Moolenaar071d4272004-06-13 20:20:40 +00006708 curwin->w_set_curswant = FALSE;
6709}
6710
6711/*
6712 * Handle back-word command "b" and "B".
6713 * cap->arg is 1 for "B"
6714 */
6715 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006716nv_bck_word(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006717{
6718 cap->oap->motion_type = MCHAR;
6719 cap->oap->inclusive = FALSE;
6720 curwin->w_set_curswant = TRUE;
6721 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
6722 clearopbeep(cap->oap);
6723#ifdef FEAT_FOLDING
6724 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6725 foldOpenCursor();
6726#endif
6727}
6728
6729/*
6730 * Handle word motion commands "e", "E", "w" and "W".
6731 * cap->arg is TRUE for "E" and "W".
6732 */
6733 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006734nv_wordcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006735{
6736 int n;
6737 int word_end;
6738 int flag = FALSE;
Bram Moolenaardfefb982008-04-01 10:06:39 +00006739 pos_T startpos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740
6741 /*
6742 * Set inclusive for the "E" and "e" command.
6743 */
6744 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
6745 word_end = TRUE;
6746 else
6747 word_end = FALSE;
6748 cap->oap->inclusive = word_end;
6749
6750 /*
6751 * "cw" and "cW" are a special case.
6752 */
6753 if (!word_end && cap->oap->op_type == OP_CHANGE)
6754 {
6755 n = gchar_cursor();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006756 if (n != NUL) // not an empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006757 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01006758 if (VIM_ISWHITE(n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006759 {
6760 /*
6761 * Reproduce a funny Vi behaviour: "cw" on a blank only
6762 * changes one character, not all blanks until the start of
6763 * the next word. Only do this when the 'w' flag is included
6764 * in 'cpoptions'.
6765 */
6766 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
6767 {
6768 cap->oap->inclusive = TRUE;
6769 cap->oap->motion_type = MCHAR;
6770 return;
6771 }
6772 }
6773 else
6774 {
6775 /*
6776 * This is a little strange. To match what the real Vi does,
6777 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
6778 * that we are not on a space or a TAB. This seems impolite
6779 * at first, but it's really more what we mean when we say
6780 * 'cw'.
6781 * Another strangeness: When standing on the end of a word
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02006782 * "ce" will change until the end of the next word, but "cw"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006783 * will change only one character! This is done by setting
6784 * flag.
6785 */
6786 cap->oap->inclusive = TRUE;
6787 word_end = TRUE;
6788 flag = TRUE;
6789 }
6790 }
6791 }
6792
6793 cap->oap->motion_type = MCHAR;
6794 curwin->w_set_curswant = TRUE;
6795 if (word_end)
6796 n = end_word(cap->count1, cap->arg, flag, FALSE);
6797 else
6798 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
6799
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006800 // Don't leave the cursor on the NUL past the end of line. Unless we
6801 // didn't move it forward.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006802 if (LT_POS(startpos, curwin->w_cursor))
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006803 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006804
6805 if (n == FAIL && cap->oap->op_type == OP_NOP)
6806 clearopbeep(cap->oap);
6807 else
6808 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006809 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006810#ifdef FEAT_FOLDING
6811 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6812 foldOpenCursor();
6813#endif
6814 }
6815}
6816
6817/*
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006818 * Used after a movement command: If the cursor ends up on the NUL after the
6819 * end of the line, may move it back to the last character and make the motion
6820 * inclusive.
6821 */
6822 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006823adjust_cursor(oparg_T *oap)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006824{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006825 // The cursor cannot remain on the NUL when:
6826 // - the column is > 0
6827 // - not in Visual mode or 'selection' is "o"
6828 // - 'virtualedit' is not "all" and not "onemore".
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006829 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006830 && (!VIsual_active || *p_sel == 'o')
Gary Johnson53ba05b2021-07-26 22:19:10 +02006831 && !virtual_active() && (get_ve_flags() & VE_ONEMORE) == 0)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006832 {
6833 --curwin->w_cursor.col;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006834 // prevent cursor from moving on the trail byte
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006835 if (has_mbyte)
6836 mb_adjust_cursor();
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006837 oap->inclusive = TRUE;
6838 }
6839}
6840
6841/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842 * "0" and "^" commands.
6843 * cap->arg is the argument for beginline().
6844 */
6845 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006846nv_beginline(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006847{
6848 cap->oap->motion_type = MCHAR;
6849 cap->oap->inclusive = FALSE;
6850 beginline(cap->arg);
6851#ifdef FEAT_FOLDING
6852 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6853 foldOpenCursor();
6854#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006855 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6856 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006857}
6858
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859/*
6860 * In exclusive Visual mode, may include the last character.
6861 */
6862 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006863adjust_for_sel(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864{
6865 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006866 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006867 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868 if (has_mbyte)
6869 inc_cursor();
6870 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006871 ++curwin->w_cursor.col;
6872 cap->oap->inclusive = FALSE;
6873 }
6874}
6875
6876/*
6877 * Exclude last character at end of Visual area for 'selection' == "exclusive".
6878 * Should check VIsual_mode before calling this.
6879 * Returns TRUE when backed up to the previous line.
6880 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02006881 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006882unadjust_for_sel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883{
6884 pos_T *pp;
6885
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006886 if (*p_sel == 'e' && !EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006887 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006888 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006889 pp = &curwin->w_cursor;
6890 else
6891 pp = &VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006892 if (pp->coladd > 0)
6893 --pp->coladd;
6894 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006895 if (pp->col > 0)
6896 {
6897 --pp->col;
Bram Moolenaar03a807a2011-07-07 15:08:58 +02006898 mb_adjustpos(curbuf, pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 }
6900 else if (pp->lnum > 1)
6901 {
6902 --pp->lnum;
6903 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
6904 return TRUE;
6905 }
6906 }
6907 return FALSE;
6908}
6909
6910/*
6911 * SELECT key in Normal or Visual mode: end of Select mode mapping.
6912 */
6913 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006914nv_select(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006915{
6916 if (VIsual_active)
6917 VIsual_select = TRUE;
6918 else if (VIsual_reselect)
6919 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006920 cap->nchar = 'v'; // fake "gv" command
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921 cap->arg = TRUE;
6922 nv_g_cmd(cap);
6923 }
6924}
6925
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926
6927/*
6928 * "G", "gg", CTRL-END, CTRL-HOME.
6929 * cap->arg is TRUE for "G".
6930 */
6931 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006932nv_goto(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006933{
6934 linenr_T lnum;
6935
6936 if (cap->arg)
6937 lnum = curbuf->b_ml.ml_line_count;
6938 else
6939 lnum = 1L;
6940 cap->oap->motion_type = MLINE;
6941 setpcmark();
6942
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006943 // When a count is given, use it instead of the default lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00006944 if (cap->count0 != 0)
6945 lnum = cap->count0;
6946 if (lnum < 1L)
6947 lnum = 1L;
6948 else if (lnum > curbuf->b_ml.ml_line_count)
6949 lnum = curbuf->b_ml.ml_line_count;
6950 curwin->w_cursor.lnum = lnum;
6951 beginline(BL_SOL | BL_FIX);
6952#ifdef FEAT_FOLDING
6953 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
6954 foldOpenCursor();
6955#endif
6956}
6957
6958/*
6959 * CTRL-\ in Normal mode.
6960 */
6961 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006962nv_normal(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963{
6964 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
6965 {
6966 clearop(cap->oap);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00006967 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006968 clear_cmdline = TRUE; // unshow mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969 restart_edit = 0;
6970#ifdef FEAT_CMDWIN
6971 if (cmdwin_type != 0)
6972 cmdwin_result = Ctrl_C;
6973#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 if (VIsual_active)
6975 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006976 end_visual_mode(); // stop Visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00006977 redraw_curbuf_later(INVERTED);
6978 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006979 // CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980 if (cap->nchar == Ctrl_G && p_im)
6981 restart_edit = 'a';
6982 }
6983 else
6984 clearopbeep(cap->oap);
6985}
6986
6987/*
6988 * ESC in Normal mode: beep, but don't flush buffers.
6989 * Don't even beep if we are canceling a command.
6990 */
6991 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006992nv_esc(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993{
6994 int no_reason;
6995
6996 no_reason = (cap->oap->op_type == OP_NOP
6997 && cap->opcount == 0
6998 && cap->count0 == 0
6999 && cap->oap->regname == 0
7000 && !p_im);
7001
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007002 if (cap->arg) // TRUE for CTRL-C
Bram Moolenaar071d4272004-06-13 20:20:40 +00007003 {
7004 if (restart_edit == 0
7005#ifdef FEAT_CMDWIN
7006 && cmdwin_type == 0
7007#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009 && no_reason)
Bram Moolenaara84a3dd2019-03-25 22:21:24 +01007010 {
7011 if (anyBufIsChanged())
7012 msg(_("Type :qa! and press <Enter> to abandon all changes and exit Vim"));
7013 else
7014 msg(_("Type :qa and press <Enter> to exit Vim"));
7015 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007017 // Don't reset "restart_edit" when 'insertmode' is set, it won't be
7018 // set again below when halfway a mapping.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007019 if (!p_im)
7020 restart_edit = 0;
7021#ifdef FEAT_CMDWIN
7022 if (cmdwin_type != 0)
7023 {
7024 cmdwin_result = K_IGNORE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007025 got_int = FALSE; // don't stop executing autocommands et al.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026 return;
7027 }
7028#endif
7029 }
Bram Moolenaar7d414102021-02-23 19:39:20 +01007030#ifdef FEAT_CMDWIN
7031 else if (cmdwin_type != 0 && ex_normal_busy)
7032 {
7033 // When :normal runs out of characters while in the command line window
7034 // vgetorpeek() will return ESC. Exit the cmdline window to break the
7035 // loop.
7036 cmdwin_result = K_IGNORE;
7037 return;
7038 }
7039#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041 if (VIsual_active)
7042 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007043 end_visual_mode(); // stop Visual
7044 check_cursor_col(); // make sure cursor is not beyond EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045 curwin->w_set_curswant = TRUE;
7046 redraw_curbuf_later(INVERTED);
7047 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007048 else if (no_reason)
Bram Moolenaar165bc692015-07-21 17:53:25 +02007049 vim_beep(BO_ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050 clearop(cap->oap);
7051
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007052 // A CTRL-C is often used at the start of a menu. When 'insertmode' is
7053 // set return to Insert mode afterwards.
Bram Moolenaare2c38102016-01-31 14:55:40 +01007054 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007055 restart_edit = 'a';
7056}
7057
7058/*
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007059 * Move the cursor for the "A" command.
7060 */
7061 void
7062set_cursor_for_append_to_line(void)
7063{
7064 curwin->w_set_curswant = TRUE;
Gary Johnson53ba05b2021-07-26 22:19:10 +02007065 if (get_ve_flags() == VE_ALL)
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007066 {
7067 int save_State = State;
7068
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007069 // Pretend Insert mode here to allow the cursor on the
7070 // character past the end of the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007071 State = INSERT;
7072 coladvance((colnr_T)MAXCOL);
7073 State = save_State;
7074 }
7075 else
7076 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
7077}
7078
7079/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080 * Handle "A", "a", "I", "i" and <Insert> commands.
Bram Moolenaarec2da362017-01-21 20:04:22 +01007081 * Also handle K_PS, start bracketed paste.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082 */
7083 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007084nv_edit(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007086 // <Insert> is equal to "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
7088 cap->cmdchar = 'i';
7089
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007090 // in Visual mode "A" and "I" are an operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
Bram Moolenaareef9add2017-09-16 15:38:04 +02007092 {
7093#ifdef FEAT_TERMINAL
7094 if (term_in_normal_mode())
7095 {
7096 end_visual_mode();
7097 clearop(cap->oap);
7098 term_enter_job_mode();
7099 return;
7100 }
7101#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102 v_visop(cap);
Bram Moolenaareef9add2017-09-16 15:38:04 +02007103 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007104
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007105 // in Visual mode and after an operator "a" and "i" are for text objects
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007106 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
7107 && (cap->oap->op_type != OP_NOP || VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108 {
7109#ifdef FEAT_TEXTOBJ
7110 nv_object(cap);
7111#else
7112 clearopbeep(cap->oap);
7113#endif
7114 }
Bram Moolenaar662d9382017-07-31 22:56:24 +02007115#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02007116 else if (term_in_normal_mode())
Bram Moolenaar662d9382017-07-31 22:56:24 +02007117 {
7118 clearop(cap->oap);
Bram Moolenaar6d819742017-08-06 14:57:49 +02007119 term_enter_job_mode();
Bram Moolenaar662d9382017-07-31 22:56:24 +02007120 return;
7121 }
7122#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007123 else if (!curbuf->b_p_ma && !p_im)
7124 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007125 // Only give this error when 'insertmode' is off.
Bram Moolenaar108010a2021-06-27 22:03:33 +02007126 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007127 clearop(cap->oap);
Bram Moolenaarec2da362017-01-21 20:04:22 +01007128 if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007129 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01007130 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131 }
Bram Moolenaara1891842017-02-04 21:34:31 +01007132 else if (cap->cmdchar == K_PS && VIsual_active)
7133 {
7134 pos_T old_pos = curwin->w_cursor;
7135 pos_T old_visual = VIsual;
7136
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007137 // In Visual mode the selected text is deleted.
Bram Moolenaara1891842017-02-04 21:34:31 +01007138 if (VIsual_mode == 'V' || curwin->w_cursor.lnum != VIsual.lnum)
7139 {
7140 shift_delete_registers();
7141 cap->oap->regname = '1';
7142 }
7143 else
7144 cap->oap->regname = '-';
7145 cap->cmdchar = 'd';
7146 cap->nchar = NUL;
7147 nv_operator(cap);
7148 do_pending_operator(cap, 0, FALSE);
7149 cap->cmdchar = K_PS;
7150
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007151 // When the last char in the line was deleted then append. Detect this
7152 // by checking if the cursor moved to before the Visual area.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007153 if (*ml_get_cursor() != NUL && LT_POS(curwin->w_cursor, old_pos)
7154 && LT_POS(curwin->w_cursor, old_visual))
Bram Moolenaara1891842017-02-04 21:34:31 +01007155 inc_cursor();
7156
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007157 // Insert to replace the deleted text with the pasted text.
Bram Moolenaara1891842017-02-04 21:34:31 +01007158 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7159 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007160 else if (!checkclearopq(cap->oap))
7161 {
7162 switch (cap->cmdchar)
7163 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007164 case 'A': // "A"ppend after the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007165 set_cursor_for_append_to_line();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007166 break;
7167
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007168 case 'I': // "I"nsert before the first non-blank
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007169 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
7170 beginline(BL_WHITE);
7171 else
7172 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007173 break;
7174
Bram Moolenaara1891842017-02-04 21:34:31 +01007175 case K_PS:
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007176 // Bracketed paste works like "a"ppend, unless the cursor is in
7177 // the first column, then it inserts.
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007178 if (curwin->w_cursor.col == 0)
7179 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007180 // FALLTHROUGH
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007181
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007182 case 'a': // "a"ppend is like "i"nsert on the next character.
7183 // increment coladd when in virtual space, increment the
7184 // column otherwise, also to append after an unprintable char
Bram Moolenaar071d4272004-06-13 20:20:40 +00007185 if (virtual_active()
7186 && (curwin->w_cursor.coladd > 0
7187 || *ml_get_cursor() == NUL
7188 || *ml_get_cursor() == TAB))
7189 curwin->w_cursor.coladd++;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01007190 else if (*ml_get_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007191 inc_cursor();
7192 break;
7193 }
7194
Bram Moolenaar071d4272004-06-13 20:20:40 +00007195 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
7196 {
7197 int save_State = State;
7198
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007199 // Pretend Insert mode here to allow the cursor on the
7200 // character past the end of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201 State = INSERT;
7202 coladvance(getviscol());
7203 State = save_State;
7204 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007205
7206 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7207 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01007208 else if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007209 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01007210 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007211}
7212
7213/*
7214 * Invoke edit() and take care of "restart_edit" and the return value.
7215 */
7216 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007217invoke_edit(
7218 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007219 int repl, // "r" or "gr" command
Bram Moolenaar9b578142016-01-30 19:39:49 +01007220 int cmd,
7221 int startln)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222{
7223 int restart_edit_save = 0;
7224
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007225 // Complicated: When the user types "a<C-O>a" we don't want to do Insert
7226 // mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
7227 // it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007228 if (repl || !stuff_empty())
7229 restart_edit_save = restart_edit;
7230 else
7231 restart_edit_save = 0;
7232
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007233 // Always reset "restart_edit", this is not a restarted edit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234 restart_edit = 0;
7235
7236 if (edit(cmd, startln, cap->count1))
7237 cap->retval |= CA_COMMAND_BUSY;
7238
7239 if (restart_edit == 0)
7240 restart_edit = restart_edit_save;
7241}
7242
7243#ifdef FEAT_TEXTOBJ
7244/*
7245 * "a" or "i" while an operator is pending or in Visual mode: object motion.
7246 */
7247 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007248nv_object(
7249 cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250{
7251 int flag;
7252 int include;
7253 char_u *mps_save;
7254
7255 if (cap->cmdchar == 'i')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007256 include = FALSE; // "ix" = inner object: exclude white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007257 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007258 include = TRUE; // "ax" = an object: include white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007259
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007260 // Make sure (), [], {} and <> are in 'matchpairs'
Bram Moolenaar071d4272004-06-13 20:20:40 +00007261 mps_save = curbuf->b_p_mps;
7262 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
7263
7264 switch (cap->nchar)
7265 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007266 case 'w': // "aw" = a word
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267 flag = current_word(cap->oap, cap->count1, include, FALSE);
7268 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007269 case 'W': // "aW" = a WORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007270 flag = current_word(cap->oap, cap->count1, include, TRUE);
7271 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007272 case 'b': // "ab" = a braces block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007273 case '(':
7274 case ')':
7275 flag = current_block(cap->oap, cap->count1, include, '(', ')');
7276 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007277 case 'B': // "aB" = a Brackets block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007278 case '{':
7279 case '}':
7280 flag = current_block(cap->oap, cap->count1, include, '{', '}');
7281 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007282 case '[': // "a[" = a [] block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007283 case ']':
7284 flag = current_block(cap->oap, cap->count1, include, '[', ']');
7285 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007286 case '<': // "a<" = a <> block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007287 case '>':
7288 flag = current_block(cap->oap, cap->count1, include, '<', '>');
7289 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007290 case 't': // "at" = a tag block (xml and html)
7291 // Do not adjust oap->end in do_pending_operator()
7292 // otherwise there are different results for 'dit'
7293 // (note leading whitespace in last line):
7294 // 1) <b> 2) <b>
7295 // foobar foobar
7296 // </b> </b>
Bram Moolenaarb6c27352015-03-05 19:57:49 +01007297 cap->retval |= CA_NO_ADJ_OP_END;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00007298 flag = current_tagblock(cap->oap, cap->count1, include);
7299 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007300 case 'p': // "ap" = a paragraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00007301 flag = current_par(cap->oap, cap->count1, include, 'p');
7302 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007303 case 's': // "as" = a sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00007304 flag = current_sent(cap->oap, cap->count1, include);
7305 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007306 case '"': // "a"" = a double quoted string
7307 case '\'': // "a'" = a single quoted string
7308 case '`': // "a`" = a backtick quoted string
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007309 flag = current_quote(cap->oap, cap->count1, include,
7310 cap->nchar);
7311 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007312#if 0 // TODO
7313 case 'S': // "aS" = a section
7314 case 'f': // "af" = a filename
7315 case 'u': // "au" = a URL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316#endif
7317 default:
7318 flag = FAIL;
7319 break;
7320 }
7321
7322 curbuf->b_p_mps = mps_save;
7323 if (flag == FAIL)
7324 clearopbeep(cap->oap);
7325 adjust_cursor_col();
7326 curwin->w_set_curswant = TRUE;
7327}
7328#endif
7329
7330/*
7331 * "q" command: Start/stop recording.
7332 * "q:", "q/", "q?": edit command-line in command-line window.
7333 */
7334 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007335nv_record(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336{
7337 if (cap->oap->op_type == OP_FORMAT)
7338 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007339 // "gqq" is the same as "gqgq": format line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007340 cap->cmdchar = 'g';
7341 cap->nchar = 'q';
7342 nv_operator(cap);
7343 }
7344 else if (!checkclearop(cap->oap))
7345 {
7346#ifdef FEAT_CMDWIN
7347 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
7348 {
7349 stuffcharReadbuff(cap->nchar);
7350 stuffcharReadbuff(K_CMDWIN);
7351 }
7352 else
7353#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007354 // (stop) recording into a named register, unless executing a
7355 // register
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02007356 if (reg_executing == 0 && do_record(cap->nchar) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007357 clearopbeep(cap->oap);
7358 }
7359}
7360
7361/*
7362 * Handle the "@r" command.
7363 */
7364 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007365nv_at(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007366{
7367 if (checkclearop(cap->oap))
7368 return;
7369#ifdef FEAT_EVAL
7370 if (cap->nchar == '=')
7371 {
7372 if (get_expr_register() == NUL)
7373 return;
7374 }
7375#endif
7376 while (cap->count1-- && !got_int)
7377 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00007378 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007379 {
7380 clearopbeep(cap->oap);
7381 break;
7382 }
7383 line_breakcheck();
7384 }
7385}
7386
7387/*
7388 * Handle the CTRL-U and CTRL-D commands.
7389 */
7390 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007391nv_halfpage(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007392{
7393 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
7394 || (cap->cmdchar == Ctrl_D
7395 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
7396 clearopbeep(cap->oap);
7397 else if (!checkclearop(cap->oap))
7398 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
7399}
7400
7401/*
7402 * Handle "J" or "gJ" command.
7403 */
7404 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007405nv_join(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007406{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007407 if (VIsual_active) // join the visual lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00007408 nv_operator(cap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007409 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007410 {
7411 if (cap->count0 <= 1)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007412 cap->count0 = 2; // default for join is two lines!
Bram Moolenaar071d4272004-06-13 20:20:40 +00007413 if (curwin->w_cursor.lnum + cap->count0 - 1 >
7414 curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007415 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007416 // can't join when on the last line
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007417 if (cap->count0 <= 2)
7418 {
7419 clearopbeep(cap->oap);
7420 return;
7421 }
7422 cap->count0 = curbuf->b_ml.ml_line_count
7423 - curwin->w_cursor.lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007424 }
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007425
7426 prep_redo(cap->oap->regname, cap->count0,
7427 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
7428 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007429 }
7430}
7431
7432/*
7433 * "P", "gP", "p" and "gp" commands.
7434 */
7435 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007436nv_put(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007437{
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007438 nv_put_opt(cap, FALSE);
7439}
7440
7441/*
7442 * "P", "gP", "p" and "gp" commands.
7443 * "fix_indent" is TRUE for "[p", "[P", "]p" and "]P".
7444 */
7445 static void
7446nv_put_opt(cmdarg_T *cap, int fix_indent)
7447{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007448 int regname = 0;
7449 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007450 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007451 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007452 int dir;
7453 int flags = 0;
7454
7455 if (cap->oap->op_type != OP_NOP)
7456 {
7457#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007458 // "dp" is ":diffput"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007459 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
7460 {
7461 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007462 nv_diffgetput(TRUE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007463 }
7464 else
7465#endif
7466 clearopbeep(cap->oap);
7467 }
Bram Moolenaarf2732452018-06-03 14:47:35 +02007468#ifdef FEAT_JOB_CHANNEL
7469 else if (bt_prompt(curbuf) && !prompt_curpos_editable())
7470 {
7471 clearopbeep(cap->oap);
7472 }
7473#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 else
7475 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007476 if (fix_indent)
7477 {
7478 dir = (cap->cmdchar == ']' && cap->nchar == 'p')
7479 ? FORWARD : BACKWARD;
7480 flags |= PUT_FIXINDENT;
7481 }
7482 else
7483 dir = (cap->cmdchar == 'P'
Christian Brabandt2fa93842021-05-30 22:17:25 +02007484 || ((cap->cmdchar == 'g' || cap->cmdchar == 'z')
7485 && cap->nchar == 'P')) ? BACKWARD : FORWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007486 prep_redo_cmd(cap);
7487 if (cap->cmdchar == 'g')
7488 flags |= PUT_CURSEND;
Christian Brabandt2fa93842021-05-30 22:17:25 +02007489 else if (cap->cmdchar == 'z')
7490 flags |= PUT_BLOCK_INNER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007491
Bram Moolenaar071d4272004-06-13 20:20:40 +00007492 if (VIsual_active)
7493 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007494 // Putting in Visual mode: The put text replaces the selected
7495 // text. First delete the selected text, then put the new text.
7496 // Need to save and restore the registers that the delete
7497 // overwrites if the old contents is being put.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007498 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007499 regname = cap->oap->regname;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007500#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007501 adjust_clip_reg(&regname);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007502#endif
Bram Moolenaar7d311c52014-02-22 23:49:35 +01007503 if (regname == 0 || regname == '"'
Bram Moolenaarba6e8582012-12-12 18:20:32 +01007504 || VIM_ISDIGIT(regname) || regname == '-'
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007505#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007506 || (clip_unnamed && (regname == '*' || regname == '+'))
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007507#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007508
7509 )
7510 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007511 // The delete is going to overwrite the register we want to
7512 // put, save it first.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007513 reg1 = get_register(regname, TRUE);
7514 }
7515
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007516 // Now delete the selected text. Avoid messages here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007517 cap->cmdchar = 'd';
7518 cap->nchar = NUL;
7519 cap->oap->regname = NUL;
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007520 ++msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007521 nv_operator(cap);
7522 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007523 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007524 --msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007525
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007526 // delete PUT_LINE_BACKWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007527 cap->oap->regname = regname;
7528
7529 if (reg1 != NULL)
7530 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007531 // Delete probably changed the register we want to put, save
7532 // it first. Then put back what was there before the delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007533 reg2 = get_register(regname, FALSE);
7534 put_register(regname, reg1);
7535 }
7536
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007537 // When deleted a linewise Visual area, put the register as
7538 // lines to avoid it joined with the next line. When deletion was
7539 // characterwise, split a line when putting lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007540 if (VIsual_mode == 'V')
7541 flags |= PUT_LINE;
7542 else if (VIsual_mode == 'v')
7543 flags |= PUT_LINE_SPLIT;
7544 if (VIsual_mode == Ctrl_V && dir == FORWARD)
7545 flags |= PUT_LINE_FORWARD;
7546 dir = BACKWARD;
7547 if ((VIsual_mode != 'V'
7548 && curwin->w_cursor.col < curbuf->b_op_start.col)
7549 || (VIsual_mode == 'V'
7550 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007551 // cursor is at the end of the line or end of file, put
7552 // forward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007553 dir = FORWARD;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007554 // May have been reset in do_put().
Bram Moolenaarec11aef2013-09-22 15:23:44 +02007555 VIsual_active = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007556 }
Bram Moolenaarc3516f72020-09-08 22:45:35 +02007557 do_put(cap->oap->regname, NULL, dir, cap->count1, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007558
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007559 // If a register was saved, put it back now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560 if (reg2 != NULL)
7561 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007562
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007563 // What to reselect with "gv"? Selecting the just put text seems to
7564 // be the most useful, since the original text was removed.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007565 if (was_visual)
7566 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007567 curbuf->b_visual.vi_start = curbuf->b_op_start;
7568 curbuf->b_visual.vi_end = curbuf->b_op_end;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007569 // need to adjust cursor position
Bram Moolenaard29c6fe2015-11-19 20:11:54 +01007570 if (*p_sel == 'e')
7571 inc(&curbuf->b_visual.vi_end);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007572 }
7573
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007574 // When all lines were selected and deleted do_put() leaves an empty
7575 // line that needs to be deleted now.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007576 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007577 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02007578 ml_delete_flags(curbuf->b_ml.ml_line_count, ML_DEL_MESSAGE);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007579 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1);
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007580
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007581 // If the cursor was in that line, move it to the end of the last
7582 // line.
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007583 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7584 {
7585 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7586 coladvance((colnr_T)MAXCOL);
7587 }
7588 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007589 auto_format(FALSE, TRUE);
7590 }
7591}
7592
7593/*
7594 * "o" and "O" commands.
7595 */
7596 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007597nv_open(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007598{
7599#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007600 // "do" is ":diffget"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007601 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
7602 {
7603 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007604 nv_diffgetput(FALSE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007605 }
7606 else
7607#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007608 if (VIsual_active) // switch start and end of visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00007609 v_swap_corners(cap->cmdchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007610#ifdef FEAT_JOB_CHANNEL
7611 else if (bt_prompt(curbuf))
Bram Moolenaarf2732452018-06-03 14:47:35 +02007612 clearopbeep(cap->oap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007613#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007614 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007615 n_opencmd(cap);
7616}
7617
Bram Moolenaar071d4272004-06-13 20:20:40 +00007618#ifdef FEAT_NETBEANS_INTG
7619 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007620nv_nbcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007621{
7622 netbeans_keycommand(cap->nchar);
7623}
7624#endif
7625
7626#ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007627 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007628nv_drop(cmdarg_T *cap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007629{
Bram Moolenaarc3516f72020-09-08 22:45:35 +02007630 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007631}
7632#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00007633
Bram Moolenaar3918c952005-03-15 22:34:55 +00007634/*
7635 * Trigger CursorHold event.
7636 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
7637 * input buffer. "did_cursorhold" is set to avoid retriggering.
7638 */
Bram Moolenaar3918c952005-03-15 22:34:55 +00007639 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007640nv_cursorhold(cmdarg_T *cap)
Bram Moolenaar3918c952005-03-15 22:34:55 +00007641{
7642 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
7643 did_cursorhold = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007644 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar3918c952005-03-15 22:34:55 +00007645}