blob: 0fbfe9207699cef483046c13274e67fa49fba778 [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
611#ifdef FEAT_CMDL_INFO
612 need_flushbuf = add_to_showcmd(c);
613#endif
614
615getcount:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 if (!(VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617 {
618 /*
619 * Handle a count before a command and compute ca.count0.
620 * Note that '0' is a command and not the start of a count, but it's
621 * part of a count after other digits.
622 */
623 while ( (c >= '1' && c <= '9')
624 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
625 {
626 if (c == K_DEL || c == K_KDEL)
627 {
628 ca.count0 /= 10;
629#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100630 del_from_showcmd(4); // delete the digit and ~@%
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631#endif
632 }
Bram Moolenaar9b0e82f2021-11-24 13:40:29 +0000633 else if (ca.count0 > 99999999L)
Bram Moolenaar03725c52021-11-24 12:17:53 +0000634 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635 ca.count0 = 999999999L;
Bram Moolenaar03725c52021-11-24 12:17:53 +0000636 }
637 else
638 {
639 ca.count0 = ca.count0 * 10 + (c - '0');
640 }
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000641#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100642 // Set v:count here, when called from main() and not a stuffed
643 // command, so that v:count can be used in an expression mapping
644 // right after the count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100645 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100646 set_vcount_ca(&ca, &set_prevcount);
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000647#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648 if (ctrl_w)
649 {
650 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100651 ++allow_keys; // no mapping for nchar, but keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100653 ++no_zero_mapping; // don't map zero here
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000654 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 --no_zero_mapping;
657 if (ctrl_w)
658 {
659 --no_mapping;
660 --allow_keys;
661 }
662#ifdef FEAT_CMDL_INFO
663 need_flushbuf |= add_to_showcmd(c);
664#endif
665 }
666
667 /*
668 * If we got CTRL-W there may be a/another count
669 */
670 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
671 {
672 ctrl_w = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100673 ca.opcount = ca.count0; // remember first count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 ca.count0 = 0;
675 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100676 ++allow_keys; // no mapping for nchar, but keys
677 c = plain_vgetc(); // get next character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 --no_mapping;
680 --allow_keys;
681#ifdef FEAT_CMDL_INFO
682 need_flushbuf |= add_to_showcmd(c);
683#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100684 goto getcount; // jump back
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 }
686 }
687
Bram Moolenaara983fe92008-07-31 20:04:27 +0000688 if (c == K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100690 // Save the count values so that ca.opcount and ca.count0 are exactly
691 // the same when coming back here after handling K_CURSORHOLD.
Bram Moolenaara983fe92008-07-31 20:04:27 +0000692 oap->prev_opcount = ca.opcount;
693 oap->prev_count0 = ca.count0;
694 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100695 else if (ca.opcount != 0)
Bram Moolenaara983fe92008-07-31 20:04:27 +0000696 {
697 /*
698 * If we're in the middle of an operator (including after entering a
699 * yank buffer with '"') AND we had a count before the operator, then
700 * that count overrides the current value of ca.count0.
701 * What this means effectively, is that commands like "3dw" get turned
702 * into "d3w" which makes things fall into place pretty neatly.
703 * If you give a count before AND after the operator, they are
704 * multiplied.
705 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 if (ca.count0)
Bram Moolenaar03725c52021-11-24 12:17:53 +0000707 {
708 if (ca.opcount >= 999999999L / ca.count0)
709 ca.count0 = 999999999L;
710 else
711 ca.count0 *= ca.opcount;
712 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 else
714 ca.count0 = ca.opcount;
715 }
716
717 /*
718 * Always remember the count. It will be set to zero (on the next call,
719 * above) when there is no pending operator.
720 * When called from main(), save the count for use by the "count" built-in
721 * variable.
722 */
723 ca.opcount = ca.count0;
724 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
725
726#ifdef FEAT_EVAL
727 /*
728 * Only set v:count when called from main() and not a stuffed command.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100729 * Do set it for redo.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100731 if (toplevel && readbuf1_empty())
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000732 set_vcount(ca.count0, ca.count1, set_prevcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733#endif
734
735 /*
736 * Find the command character in the table of commands.
737 * For CTRL-W we already got nchar when looking for a count.
738 */
739 if (ctrl_w)
740 {
741 ca.nchar = c;
742 ca.cmdchar = Ctrl_W;
743 }
744 else
745 ca.cmdchar = c;
746 idx = find_command(ca.cmdchar);
747 if (idx < 0)
748 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100749 // Not a known command: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 clearopbeep(oap);
751 goto normal_end;
752 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +0000753
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000754 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100756 // This command is not allowed while editing a cmdline: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 clearopbeep(oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000758 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 goto normal_end;
760 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000761 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
762 goto normal_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 /*
765 * In Visual/Select mode, a few keys are handled in a special way.
766 */
767 if (VIsual_active)
768 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100769 // when 'keymodel' contains "stopsel" may stop Select/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 if (km_stopsel
771 && (nv_cmds[idx].cmd_flags & NV_STS)
772 && !(mod_mask & MOD_MASK_SHIFT))
773 {
774 end_visual_mode();
775 redraw_curbuf_later(INVERTED);
776 }
777
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100778 // Keys that work different when 'keymodel' contains "startsel"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 if (km_startsel)
780 {
781 if (nv_cmds[idx].cmd_flags & NV_SS)
782 {
783 unshift_special(&ca);
784 idx = find_command(ca.cmdchar);
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000785 if (idx < 0)
786 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100787 // Just in case
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000788 clearopbeep(oap);
789 goto normal_end;
790 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 }
792 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
793 && (mod_mask & MOD_MASK_SHIFT))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 mod_mask &= ~MOD_MASK_SHIFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 }
796 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797
798#ifdef FEAT_RIGHTLEFT
799 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
800 && (nv_cmds[idx].cmd_flags & NV_RL))
801 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100802 // Invert horizontal movements and operations. Only when typed by the
803 // user directly, not when the result of a mapping or "x" translated
804 // to "dl".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 switch (ca.cmdchar)
806 {
807 case 'l': ca.cmdchar = 'h'; break;
808 case K_RIGHT: ca.cmdchar = K_LEFT; break;
809 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
810 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
811 case 'h': ca.cmdchar = 'l'; break;
812 case K_LEFT: ca.cmdchar = K_RIGHT; break;
813 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
814 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
815 case '>': ca.cmdchar = '<'; break;
816 case '<': ca.cmdchar = '>'; break;
817 }
818 idx = find_command(ca.cmdchar);
819 }
820#endif
821
822 /*
823 * Get an additional character if we need one.
824 */
825 if ((nv_cmds[idx].cmd_flags & NV_NCH)
826 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
827 && oap->op_type == OP_NOP)
828 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
829 || (ca.cmdchar == 'q'
830 && oap->op_type == OP_NOP
Bram Moolenaar0b6d9112018-05-22 20:35:17 +0200831 && reg_recording == 0
832 && reg_executing == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100834 && (oap->op_type != OP_NOP || VIsual_active))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 {
836 int *cp;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100837 int repl = FALSE; // get character for replace mode
838 int lit = FALSE; // get extra character literally
839 int langmap_active = FALSE; // using :lmap mappings
840 int lang; // getting a text character
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100841#ifdef HAVE_INPUT_METHOD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100842 int save_smd; // saved value of p_smd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843#endif
844
845 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100846 ++allow_keys; // no mapping for nchar, but allow key codes
847 // Don't generate a CursorHold event here, most commands can't handle
848 // it, e.g., nv_replace(), nv_csearch().
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +0000849 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 if (ca.cmdchar == 'g')
851 {
852 /*
853 * For 'g' get the next character now, so that we can check for
854 * "gr", "g'" and "g`".
855 */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000856 ca.nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 LANGMAP_ADJUST(ca.nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858#ifdef FEAT_CMDL_INFO
859 need_flushbuf |= add_to_showcmd(ca.nchar);
860#endif
861 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
Bram Moolenaarba2d44f2013-11-28 19:27:30 +0100862 || ca.nchar == Ctrl_BSL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100864 cp = &ca.extra_char; // need to get a third character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 if (ca.nchar != 'r')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100866 lit = TRUE; // get it literally
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100868 repl = TRUE; // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 }
870 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100871 cp = NULL; // no third character needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 }
873 else
874 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100875 if (ca.cmdchar == 'r') // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 repl = TRUE;
877 cp = &ca.nchar;
878 }
879 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
880
881 /*
882 * Get a second or third character.
883 */
884 if (cp != NULL)
885 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 if (repl)
887 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100888 State = REPLACE; // pretend Replace mode
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100889#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100890 ui_cursor_shape(); // show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891#endif
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100892 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
894 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100895 // Allow mappings defined with ":lmap".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 --no_mapping;
897 --allow_keys;
898 if (repl)
899 State = LREPLACE;
900 else
901 State = LANGMAP;
902 langmap_active = TRUE;
903 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100904#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 save_smd = p_smd;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100906 p_smd = FALSE; // Don't let the IM code show the mode here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
908 im_set_active(TRUE);
909#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200910 if ((State & INSERT) && !p_ek)
911 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200912#ifdef FEAT_JOB_CHANNEL
913 ch_log_output = TRUE;
914#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200915 // Disable bracketed paste and modifyOtherKeys here, we won't
916 // recognize the escape sequences with 'esckeys' off.
917 out_str(T_BD);
918 out_str(T_CTE);
919 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000921 *cp = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922
Bram Moolenaarca774f62020-08-30 20:46:38 +0200923 if ((State & INSERT) && !p_ek)
924 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200925#ifdef FEAT_JOB_CHANNEL
926 ch_log_output = TRUE;
927#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200928 // Re-enable bracketed paste mode and modifyOtherKeys
929 out_str(T_BE);
930 out_str(T_CTI);
931 }
932
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 if (langmap_active)
934 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100935 // Undo the decrement done above
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 ++no_mapping;
937 ++allow_keys;
938 State = NORMAL_BUSY;
939 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100940#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 if (lang)
942 {
943 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
944 im_save_status(&curbuf->b_p_iminsert);
945 im_set_active(FALSE);
946 }
947 p_smd = save_smd;
948#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 State = NORMAL_BUSY;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950#ifdef FEAT_CMDL_INFO
951 need_flushbuf |= add_to_showcmd(*cp);
952#endif
953
954 if (!lit)
955 {
956#ifdef FEAT_DIGRAPHS
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100957 // Typing CTRL-K gets a digraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 if (*cp == Ctrl_K
959 && ((nv_cmds[idx].cmd_flags & NV_LANG)
960 || cp == &ca.extra_char)
961 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
962 {
963 c = get_digraph(FALSE);
964 if (c > 0)
965 {
966 *cp = c;
967# ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100968 // Guessing how to update showcmd here...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 del_from_showcmd(3);
970 need_flushbuf |= add_to_showcmd(*cp);
971# endif
972 }
973 }
974#endif
975
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100976 // adjust chars > 127, except after "tTfFr" commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 LANGMAP_ADJUST(*cp, !lang);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100979 // adjust Hebrew mapped char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 if (p_hkmap && lang && KeyTyped)
981 *cp = hkmap(*cp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982#endif
983 }
984
985 /*
986 * When the next character is CTRL-\ a following CTRL-N means the
987 * command is aborted and we go to Normal mode.
988 */
989 if (cp == &ca.extra_char
990 && ca.nchar == Ctrl_BSL
991 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
992 {
993 ca.cmdchar = Ctrl_BSL;
994 ca.nchar = ca.extra_char;
995 idx = find_command(ca.cmdchar);
996 }
Bram Moolenaar12a753a2012-10-23 05:08:53 +0200997 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g')
Bram Moolenaarf00dc262012-10-21 03:54:33 +0200998 ca.oap->op_type = get_op_type(*cp, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 else if (*cp == Ctrl_BSL)
1000 {
1001 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
1002
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001003 // There is a busy wait here when typing "f<C-\>" and then
1004 // something different from CTRL-N. Can't be avoided.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 while ((c = vpeekc()) <= 0 && towait > 0L)
1006 {
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01001007 do_sleep(towait > 50L ? 50L : towait, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 towait -= 50L;
1009 }
1010 if (c > 0)
1011 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001012 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 if (c != Ctrl_N && c != Ctrl_G)
1014 vungetc(c);
1015 else
1016 {
1017 ca.cmdchar = Ctrl_BSL;
1018 ca.nchar = c;
1019 idx = find_command(ca.cmdchar);
1020 }
1021 }
1022 }
1023
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001024 // When getting a text character and the next character is a
1025 // multi-byte character, it could be a composing character.
1026 // However, don't wait for it to arrive. Also, do enable mapping,
1027 // because if it's put back with vungetc() it's too late to apply
1028 // mapping.
Bram Moolenaar4f880622014-07-23 12:31:20 +02001029 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 while (enc_utf8 && lang && (c = vpeekc()) > 0
1031 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1032 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001033 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 if (!utf_iscomposing(c))
1035 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001036 vungetc(c); // it wasn't, put it back
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 break;
1038 }
1039 else if (ca.ncharC1 == 0)
1040 ca.ncharC1 = c;
1041 else
1042 ca.ncharC2 = c;
1043 }
Bram Moolenaar4f880622014-07-23 12:31:20 +02001044 ++no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 }
1046 --no_mapping;
1047 --allow_keys;
1048 }
1049
1050#ifdef FEAT_CMDL_INFO
1051 /*
1052 * Flush the showcmd characters onto the screen so we can see them while
1053 * the command is being executed. Only do this when the shown command was
1054 * actually displayed, otherwise this will slow down a lot when executing
1055 * mappings.
1056 */
1057 if (need_flushbuf)
1058 out_flush();
1059#endif
Bram Moolenaard9205ca2008-10-02 20:55:54 +00001060 if (ca.cmdchar != K_IGNORE)
Bram Moolenaar08815a12020-07-20 23:10:56 +02001061 {
1062 if (ex_normal_busy)
1063 did_cursorhold = save_did_cursorhold;
1064 else
1065 did_cursorhold = FALSE;
1066 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067
1068 State = NORMAL;
1069
1070 if (ca.nchar == ESC)
1071 {
1072 clearop(oap);
1073 if (restart_edit == 0 && goto_im())
1074 restart_edit = 'a';
1075 goto normal_end;
1076 }
1077
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001078 if (ca.cmdchar != K_IGNORE)
1079 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001080 msg_didout = FALSE; // don't scroll screen up for normal command
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001081 msg_col = 0;
1082 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001084 old_pos = curwin->w_cursor; // remember where cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001086 // When 'keymodel' contains "startsel" some keys start Select/Visual
1087 // mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 if (!VIsual_active && km_startsel)
1089 {
1090 if (nv_cmds[idx].cmd_flags & NV_SS)
1091 {
1092 start_selection();
1093 unshift_special(&ca);
1094 idx = find_command(ca.cmdchar);
1095 }
1096 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1097 && (mod_mask & MOD_MASK_SHIFT))
1098 {
1099 start_selection();
1100 mod_mask &= ~MOD_MASK_SHIFT;
1101 }
1102 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103
1104 /*
1105 * Execute the command!
1106 * Call the command function found in the commands table.
1107 */
1108 ca.arg = nv_cmds[idx].cmd_arg;
1109 (nv_cmds[idx].cmd_func)(&ca);
1110
1111 /*
1112 * If we didn't start or finish an operator, reset oap->regname, unless we
1113 * need it later.
1114 */
1115 if (!finish_op
1116 && !oap->op_type
1117 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1118 {
1119 clearop(oap);
1120#ifdef FEAT_EVAL
Bram Moolenaar439c0362020-06-06 15:58:03 +02001121 reset_reg_var();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122#endif
1123 }
1124
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001125 // Get the length of mapped chars again after typing a count, second
1126 // character or "z333<cr>".
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001127 if (old_mapped_len > 0)
1128 old_mapped_len = typebuf_maplen();
1129
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 /*
Bram Moolenaar1ad72c82021-05-04 21:56:28 +02001131 * If an operation is pending, handle it. But not for K_IGNORE or
1132 * K_MOUSEMOVE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 */
Bram Moolenaar1ad72c82021-05-04 21:56:28 +02001134 if (ca.cmdchar != K_IGNORE && ca.cmdchar != K_MOUSEMOVE)
Bram Moolenaarfa5612c2019-12-01 19:37:07 +01001135 do_pending_operator(&ca, old_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136
1137 /*
1138 * Wait for a moment when a message is displayed that will be overwritten
1139 * by the mode message.
1140 * In Visual mode and with "^O" in Insert mode, a short message will be
1141 * overwritten by the mode message. Wait a bit, until a key is hit.
1142 * In Visual mode, it's more important to keep the Visual area updated
1143 * than keeping a message (e.g. from a /pat search).
1144 * Only do this if the command was typed, not from a mapping.
1145 * Don't wait when emsg_silent is non-zero.
1146 * Also wait a bit after an error message, e.g. for "^O:".
1147 * Don't redraw the screen, it would remove the message.
1148 */
1149 if ( ((p_smd
Bram Moolenaar09df3122006-01-23 22:23:09 +00001150 && msg_silent == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 && (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 || (VIsual_active
1153 && old_pos.lnum == curwin->w_cursor.lnum
1154 && old_pos.col == curwin->w_cursor.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 )
1156 && (clear_cmdline
1157 || redraw_cmdline)
1158 && (msg_didout || (msg_didany && msg_scroll))
1159 && !msg_nowait
1160 && KeyTyped)
1161 || (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 && (msg_scroll
1164 || emsg_on_display)))
1165 && oap->regname == 0
1166 && !(ca.retval & CA_COMMAND_BUSY)
1167 && stuff_empty()
1168 && typebuf_typed()
1169 && emsg_silent == 0
Bram Moolenaar28ee8922020-10-28 20:20:00 +01001170 && !in_assert_fails
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 && !did_wait_return
1172 && oap->op_type == OP_NOP)
1173 {
1174 int save_State = State;
1175
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001176 // Draw the cursor with the right shape here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 if (restart_edit != 0)
1178 State = INSERT;
1179
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001180 // If need to redraw, and there is a "keep_msg", redraw before the
1181 // delay
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1183 {
1184 char_u *kmsg;
1185
1186 kmsg = keep_msg;
1187 keep_msg = NULL;
Bram Moolenaar5715b312020-03-16 22:08:45 +01001188 // Showmode() will clear keep_msg, but we want to use it anyway.
1189 // First update w_topline.
1190 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 update_screen(0);
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001192 // now reset it, otherwise it's put in the history again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 keep_msg = kmsg;
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001194
1195 kmsg = vim_strsave(keep_msg);
1196 if (kmsg != NULL)
1197 {
1198 msg_attr((char *)kmsg, keep_msg_attr);
1199 vim_free(kmsg);
1200 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 }
1202 setcursor();
Bram Moolenaar5715b312020-03-16 22:08:45 +01001203#ifdef CURSOR_SHAPE
1204 ui_cursor_shape(); // may show different cursor shape
1205#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 cursor_on();
1207 out_flush();
1208 if (msg_scroll || emsg_on_display)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001209 ui_delay(1003L, TRUE); // wait at least one second
1210 ui_delay(3003L, FALSE); // wait up to three seconds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 State = save_State;
1212
1213 msg_scroll = FALSE;
1214 emsg_on_display = FALSE;
1215 }
1216
1217 /*
1218 * Finish up after executing a Normal mode command.
1219 */
1220normal_end:
1221
1222 msg_nowait = FALSE;
1223
Bram Moolenaarcc613032020-06-07 21:31:18 +02001224#ifdef FEAT_EVAL
1225 if (finish_op)
1226 reset_reg_var();
1227#endif
1228
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001229 // Reset finish_op, in case it was set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230#ifdef CURSOR_SHAPE
1231 c = finish_op;
1232#endif
1233 finish_op = FALSE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001234 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001236 // Redraw the cursor with another shape, if we were in Operator-pending
1237 // mode or did a replace command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 if (c || ca.cmdchar == 'r')
1239 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001240 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241# ifdef FEAT_MOUSESHAPE
1242 update_mouseshape(-1);
1243# endif
1244 }
1245#endif
1246
1247#ifdef FEAT_CMDL_INFO
Bram Moolenaara983fe92008-07-31 20:04:27 +00001248 if (oap->op_type == OP_NOP && oap->regname == 0
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001249 && ca.cmdchar != K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 clear_showcmd();
1251#endif
1252
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001253 checkpcmark(); // check if we moved since setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 vim_free(ca.searchbuf);
1255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 if (has_mbyte)
1257 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 if (curwin->w_p_scb && toplevel)
1260 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001261 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 do_check_scrollbind(TRUE);
1263 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264
Bram Moolenaar860cae12010-06-05 23:22:07 +02001265 if (curwin->w_p_crb && toplevel)
1266 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001267 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar860cae12010-06-05 23:22:07 +02001268 do_check_cursorbind();
1269 }
Bram Moolenaar860cae12010-06-05 23:22:07 +02001270
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001271#ifdef FEAT_TERMINAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001272 // don't go to Insert mode if a terminal has a running job
Bram Moolenaareef9add2017-09-16 15:38:04 +02001273 if (term_job_running(curbuf->b_term))
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001274 restart_edit = 0;
1275#endif
1276
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 /*
1278 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1279 * if still inside a mapping that started in Visual mode).
1280 * May switch from Visual to Select mode after CTRL-O command.
1281 */
1282 if ( oap->op_type == OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1284 || restart_VIsual_select == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 && !(ca.retval & CA_COMMAND_BUSY)
1286 && stuff_empty()
1287 && oap->regname == 0)
1288 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if (restart_VIsual_select == 1)
1290 {
1291 VIsual_select = TRUE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001292 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 showmode();
1294 restart_VIsual_select = 0;
1295 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001296 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 (void)edit(restart_edit, FALSE, 1L);
1298 }
1299
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 if (restart_VIsual_select == 2)
1301 restart_VIsual_select = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001303 // Save count before an operator for next time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 opcount = ca.opcount;
1305}
1306
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001307#ifdef FEAT_EVAL
1308/*
1309 * Set v:count and v:count1 according to "cap".
1310 * Set v:prevcount only when "set_prevcount" is TRUE.
1311 */
1312 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001313set_vcount_ca(cmdarg_T *cap, int *set_prevcount)
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001314{
1315 long count = cap->count0;
1316
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001317 // multiply with cap->opcount the same way as above
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001318 if (cap->opcount != 0)
1319 count = cap->opcount * (count == 0 ? 1 : count);
1320 set_vcount(count, count == 0 ? 1 : count, *set_prevcount);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001321 *set_prevcount = FALSE; // only set v:prevcount once
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001322}
1323#endif
1324
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325/*
Bram Moolenaar5715b312020-03-16 22:08:45 +01001326 * Check if highlighting for Visual mode is possible, give a warning message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 * if not.
1328 */
1329 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001330check_visual_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331{
1332 static int did_check = FALSE;
1333
1334 if (full_screen)
1335 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001336 if (!did_check && HL_ATTR(HLF_V) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001337 msg(_("Warning: terminal cannot highlight"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 did_check = TRUE;
1339 }
1340}
1341
Bram Moolenaarfccbf062020-11-26 20:34:00 +01001342#if defined(FEAT_CLIPBOARD) && defined(FEAT_EVAL)
1343/*
1344 * Call yank_do_autocmd() for "regname".
1345 */
1346 static void
1347call_yank_do_autocmd(int regname)
1348{
1349 oparg_T oa;
1350 yankreg_T *reg;
1351
1352 clear_oparg(&oa);
1353 oa.regname = regname;
1354 oa.op_type = OP_YANK;
1355 oa.is_VIsual = TRUE;
1356 reg = get_register(regname, TRUE);
1357 yank_do_autocmd(&oa, reg);
1358 free_register(reg);
1359}
1360#endif
1361
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362/*
Bram Moolenaar66fa2712006-01-22 23:22:22 +00001363 * End Visual mode.
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001364 * This function or the next should ALWAYS be called to end Visual mode, except
1365 * from do_pending_operator().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 */
1367 void
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001368end_visual_mode()
1369{
1370 end_visual_mode_keep_button();
1371 reset_held_button();
1372}
1373
1374 void
1375end_visual_mode_keep_button()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376{
1377#ifdef FEAT_CLIPBOARD
1378 /*
1379 * If we are using the clipboard, then remember what was selected in case
1380 * we need to paste it somewhere while we still own the selection.
1381 * Only do this when the clipboard is already owned. Don't want to grab
1382 * the selection when hitting ESC.
1383 */
1384 if (clip_star.available && clip_star.owned)
1385 clip_auto_select();
Bram Moolenaarfccbf062020-11-26 20:34:00 +01001386
1387# if defined(FEAT_EVAL)
1388 // Emit a TextYankPost for the automatic copy of the selection into the
1389 // star and/or plus register.
1390 if (has_textyankpost())
1391 {
1392 if (clip_isautosel_star())
1393 call_yank_do_autocmd('*');
1394 if (clip_isautosel_plus())
1395 call_yank_do_autocmd('+');
1396 }
1397# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398#endif
1399
1400 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 setmouse();
1402 mouse_dragging = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001404 // Save the current VIsual area for '< and '> marks, and "gv"
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001405 curbuf->b_visual.vi_mode = VIsual_mode;
1406 curbuf->b_visual.vi_start = VIsual;
1407 curbuf->b_visual.vi_end = curwin->w_cursor;
1408 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409#ifdef FEAT_EVAL
1410 curbuf->b_visual_mode_eval = VIsual_mode;
1411#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 if (!virtual_active())
1413 curwin->w_cursor.coladd = 0;
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001414 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001416 adjust_cursor_eol();
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001417 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418}
1419
1420/*
1421 * Reset VIsual_active and VIsual_reselect.
1422 */
1423 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001424reset_VIsual_and_resel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425{
1426 if (VIsual_active)
1427 {
1428 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001429 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 }
1431 VIsual_reselect = FALSE;
1432}
1433
1434/*
1435 * Reset VIsual_active and VIsual_reselect if it's set.
1436 */
1437 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001438reset_VIsual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439{
1440 if (VIsual_active)
1441 {
1442 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001443 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 VIsual_reselect = FALSE;
1445 }
1446}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001448 void
1449restore_visual_mode(void)
1450{
1451 if (VIsual_mode_orig != NUL)
1452 {
1453 curbuf->b_visual.vi_mode = VIsual_mode_orig;
1454 VIsual_mode_orig = NUL;
1455 }
1456}
1457
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458/*
1459 * Check for a balloon-eval special item to include when searching for an
1460 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
1461 * Returns TRUE if the character at "*ptr" should be included.
1462 * "dir" is FORWARD or BACKWARD, the direction of searching.
1463 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
1464 * "bnp" points to a counter for square brackets.
1465 */
1466 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001467find_is_eval_item(
1468 char_u *ptr,
1469 int *colp,
1470 int *bnp,
1471 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001473 // Accept everything inside [].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
1475 ++*bnp;
1476 if (*bnp > 0)
1477 {
1478 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
1479 --*bnp;
1480 return TRUE;
1481 }
1482
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001483 // skip over "s.var"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 if (*ptr == '.')
1485 return TRUE;
1486
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001487 // two-character item: s->var
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
1489 && ptr[dir == BACKWARD ? -1 : 0] == '-')
1490 {
1491 *colp += dir;
1492 return TRUE;
1493 }
1494 return FALSE;
1495}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496
1497/*
1498 * Find the identifier under or to the right of the cursor.
1499 * "find_type" can have one of three values:
1500 * FIND_IDENT: find an identifier (keyword)
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001501 * FIND_STRING: find any non-white text
1502 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001503 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 *
1505 * There are three steps:
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001506 * 1. Search forward for the start of an identifier/text. Doesn't move if
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 * already on one.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001508 * 2. Search backward for the start of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 * This doesn't match the real Vi but I like it a little better and it
1510 * shouldn't bother anyone.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001511 * 3. Search forward to the end of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 * When FIND_IDENT isn't defined, we backup until a blank.
1513 *
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001514 * Returns the length of the text, or zero if no text is found.
1515 * If text is found, a pointer to the text is put in "*text". This
1516 * points into the current buffer line and is not always NUL terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 */
1518 int
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001519find_ident_under_cursor(char_u **text, int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520{
1521 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001522 curwin->w_cursor.col, text, NULL, find_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523}
1524
1525/*
1526 * Like find_ident_under_cursor(), but for any window and any position.
1527 * However: Uses 'iskeyword' from the current window!.
1528 */
1529 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001530find_ident_at_pos(
1531 win_T *wp,
1532 linenr_T lnum,
1533 colnr_T startcol,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001534 char_u **text,
1535 int *textcol, // column where "text" starts, can be NULL
Bram Moolenaar9b578142016-01-30 19:39:49 +01001536 int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537{
1538 char_u *ptr;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001539 int col = 0; // init to shut up GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 int this_class = 0;
1542 int prev_class;
1543 int prevcol;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001544 int bn = 0; // bracket nesting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545
1546 /*
1547 * if i == 0: try to find an identifier
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001548 * if i == 1: try to find any non-white text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 */
1550 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
1551 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
1552 {
1553 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001554 * 1. skip to start of identifier/text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 */
1556 col = startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 if (has_mbyte)
1558 {
1559 while (ptr[col] != NUL)
1560 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001561 // Stop at a ']' to evaluate "a[x]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1563 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 this_class = mb_get_class(ptr + col);
1565 if (this_class != 0 && (i == 1 || this_class != 1))
1566 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001567 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 }
1569 }
1570 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 while (ptr[col] != NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01001572 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 )
1575 ++col;
1576
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001577 // When starting on a ']' count it, so that we include the '['.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 bn = ptr[col] == ']';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579
1580 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001581 * 2. Back up to start of identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 if (has_mbyte)
1584 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001585 // Remember class of character under cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1587 this_class = mb_get_class((char_u *)"a");
1588 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 this_class = mb_get_class(ptr + col);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001590 while (col > 0 && this_class != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 {
1592 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
1593 prev_class = mb_get_class(ptr + prevcol);
1594 if (this_class != prev_class
1595 && (i == 0
1596 || prev_class == 0
1597 || (find_type & FIND_IDENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 && (!(find_type & FIND_EVAL)
1599 || prevcol == 0
1600 || !find_is_eval_item(ptr + prevcol, &prevcol,
1601 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 )
1603 break;
1604 col = prevcol;
1605 }
1606
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001607 // If we don't want just any old text, or we've found an
1608 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 if (this_class > 2)
1610 this_class = 2;
1611 if (!(find_type & FIND_STRING) || this_class == 2)
1612 break;
1613 }
1614 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 {
1616 while (col > 0
1617 && ((i == 0
1618 ? vim_iswordc(ptr[col - 1])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001619 : (!VIM_ISWHITE(ptr[col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 && (!(find_type & FIND_IDENT)
1621 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 || ((find_type & FIND_EVAL)
1623 && col > 1
1624 && find_is_eval_item(ptr + col - 1, &col,
1625 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 ))
1627 --col;
1628
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001629 // If we don't want just any old text, or we've found an
1630 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
1632 break;
1633 }
1634 }
1635
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001636 if (ptr[col] == NUL || (i == 0
1637 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001639 // didn't find an identifier or text
Bram Moolenaar17627312019-06-02 19:53:44 +02001640 if ((find_type & FIND_NOERROR) == 0)
1641 {
1642 if (find_type & FIND_STRING)
1643 emsg(_("E348: No string under cursor"));
1644 else
1645 emsg(_(e_noident));
1646 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 return 0;
1648 }
1649 ptr += col;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001650 *text = ptr;
1651 if (textcol != NULL)
1652 *textcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653
1654 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001655 * 3. Find the end if the identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 bn = 0;
1658 startcol -= col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 if (has_mbyte)
1661 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001662 // Search for point of changing multibyte character class.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 this_class = mb_get_class(ptr);
1664 while (ptr[col] != NUL
1665 && ((i == 0 ? mb_get_class(ptr + col) == this_class
1666 : mb_get_class(ptr + col) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 || ((find_type & FIND_EVAL)
1668 && col <= (int)startcol
1669 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 ))
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001671 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 }
1673 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 while ((i == 0 ? vim_iswordc(ptr[col])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001675 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 || ((find_type & FIND_EVAL)
1677 && col <= (int)startcol
1678 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680 ++col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681
1682 return col;
1683}
1684
1685/*
1686 * Prepare for redo of a normal command.
1687 */
1688 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001689prep_redo_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690{
1691 prep_redo(cap->oap->regname, cap->count0,
1692 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
1693}
1694
1695/*
1696 * Prepare for redo of any command.
1697 * Note that only the last argument can be a multi-byte char.
1698 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001699 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001700prep_redo(
1701 int regname,
1702 long num,
1703 int cmd1,
1704 int cmd2,
1705 int cmd3,
1706 int cmd4,
1707 int cmd5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708{
Bram Moolenaar2228cd72021-11-22 14:16:08 +00001709 prep_redo_num2(regname, num, cmd1, cmd2, 0L, cmd3, cmd4, cmd5);
1710}
1711
1712/*
1713 * Prepare for redo of any command with extra count after "cmd2".
1714 */
1715 void
1716prep_redo_num2(
1717 int regname,
1718 long num1,
1719 int cmd1,
1720 int cmd2,
1721 long num2,
1722 int cmd3,
1723 int cmd4,
1724 int cmd5)
1725{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 ResetRedobuff();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001727 if (regname != 0) // yank from specified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 {
1729 AppendCharToRedobuff('"');
1730 AppendCharToRedobuff(regname);
1731 }
Bram Moolenaar2228cd72021-11-22 14:16:08 +00001732 if (num1 != 0)
1733 AppendNumberToRedobuff(num1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 if (cmd1 != NUL)
1735 AppendCharToRedobuff(cmd1);
1736 if (cmd2 != NUL)
1737 AppendCharToRedobuff(cmd2);
Bram Moolenaar2228cd72021-11-22 14:16:08 +00001738 if (num2 != 0)
1739 AppendNumberToRedobuff(num2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 if (cmd3 != NUL)
1741 AppendCharToRedobuff(cmd3);
1742 if (cmd4 != NUL)
1743 AppendCharToRedobuff(cmd4);
1744 if (cmd5 != NUL)
1745 AppendCharToRedobuff(cmd5);
1746}
1747
1748/*
1749 * check for operator active and clear it
1750 *
1751 * return TRUE if operator was active
1752 */
1753 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001754checkclearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755{
1756 if (oap->op_type == OP_NOP)
1757 return FALSE;
1758 clearopbeep(oap);
1759 return TRUE;
1760}
1761
1762/*
Bram Moolenaarc980de32007-05-06 11:59:04 +00001763 * Check for operator or Visual active. Clear active operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 *
Bram Moolenaarc980de32007-05-06 11:59:04 +00001765 * Return TRUE if operator or Visual was active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 */
1767 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001768checkclearopq(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001770 if (oap->op_type == OP_NOP && !VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 return FALSE;
1772 clearopbeep(oap);
1773 return TRUE;
1774}
1775
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001776 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001777clearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778{
1779 oap->op_type = OP_NOP;
1780 oap->regname = 0;
1781 oap->motion_force = NUL;
1782 oap->use_reg_one = FALSE;
Bram Moolenaar21492742021-06-04 21:57:57 +02001783 motion_force = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784}
1785
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001786 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001787clearopbeep(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788{
1789 clearop(oap);
1790 beep_flush();
1791}
1792
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793/*
1794 * Remove the shift modifier from a special key.
1795 */
1796 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001797unshift_special(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798{
1799 switch (cap->cmdchar)
1800 {
1801 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
1802 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
1803 case K_S_UP: cap->cmdchar = K_UP; break;
1804 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
1805 case K_S_HOME: cap->cmdchar = K_HOME; break;
1806 case K_S_END: cap->cmdchar = K_END; break;
1807 }
1808 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
1809}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001811/*
1812 * If the mode is currently displayed clear the command line or update the
1813 * command displayed.
1814 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001815 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001816may_clear_cmdline(void)
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001817{
1818 if (mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001819 clear_cmdline = TRUE; // unshow visual mode later
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001820#ifdef FEAT_CMDL_INFO
1821 else
1822 clear_showcmd();
1823#endif
1824}
1825
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826#if defined(FEAT_CMDL_INFO) || defined(PROTO)
1827/*
1828 * Routines for displaying a partly typed command
1829 */
1830
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001831#define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832static char_u showcmd_buf[SHOWCMD_BUFLEN];
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001833static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834static int showcmd_is_clear = TRUE;
1835static int showcmd_visual = FALSE;
1836
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001837static void display_showcmd(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838
1839 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001840clear_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841{
1842 if (!p_sc)
1843 return;
1844
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 if (VIsual_active && !char_avail())
1846 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001847 int cursor_bot = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 long lines;
1849 colnr_T leftcol, rightcol;
1850 linenr_T top, bot;
1851
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001852 // Show the size of the Visual area.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001853 if (cursor_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 {
1855 top = VIsual.lnum;
1856 bot = curwin->w_cursor.lnum;
1857 }
1858 else
1859 {
1860 top = curwin->w_cursor.lnum;
1861 bot = VIsual.lnum;
1862 }
1863# ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001864 // Include closed folds as a whole.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001865 (void)hasFolding(top, &top, NULL);
1866 (void)hasFolding(bot, NULL, &bot);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867# endif
1868 lines = bot - top + 1;
1869
1870 if (VIsual_mode == Ctrl_V)
1871 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001872# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001873 char_u *saved_sbr = p_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001874 char_u *saved_w_sbr = curwin->w_p_sbr;
Bram Moolenaar81d00072009-04-29 15:41:40 +00001875
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001876 // Make 'sbr' empty for a moment to get the correct size.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001877 p_sbr = empty_option;
Bram Moolenaaree857022019-11-09 23:26:40 +01001878 curwin->w_p_sbr = empty_option;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001879# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001881# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001882 p_sbr = saved_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001883 curwin->w_p_sbr = saved_w_sbr;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001884# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
1886 (long)(rightcol - leftcol + 1));
1887 }
1888 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
1889 sprintf((char *)showcmd_buf, "%ld", lines);
1890 else
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001891 {
1892 char_u *s, *e;
1893 int l;
1894 int bytes = 0;
1895 int chars = 0;
1896
1897 if (cursor_bot)
1898 {
1899 s = ml_get_pos(&VIsual);
1900 e = ml_get_cursor();
1901 }
1902 else
1903 {
1904 s = ml_get_cursor();
1905 e = ml_get_pos(&VIsual);
1906 }
1907 while ((*p_sel != 'e') ? s <= e : s < e)
1908 {
1909 l = (*mb_ptr2len)(s);
1910 if (l == 0)
1911 {
1912 ++bytes;
1913 ++chars;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001914 break; // end of line
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001915 }
1916 bytes += l;
1917 ++chars;
1918 s += l;
1919 }
1920 if (bytes == chars)
1921 sprintf((char *)showcmd_buf, "%d", chars);
1922 else
1923 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes);
1924 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001925 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 showcmd_visual = TRUE;
1927 }
1928 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 {
1930 showcmd_buf[0] = NUL;
1931 showcmd_visual = FALSE;
1932
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001933 // Don't actually display something if there is nothing to clear.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 if (showcmd_is_clear)
1935 return;
1936 }
1937
1938 display_showcmd();
1939}
1940
1941/*
1942 * Add 'c' to string of shown command chars.
1943 * Return TRUE if output has been written (and setcursor() has been called).
1944 */
1945 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001946add_to_showcmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947{
1948 char_u *p;
1949 int old_len;
1950 int extra_len;
1951 int overflow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 int i;
1953 static int ignore[] =
1954 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001955#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
1957 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001958#endif
Bram Moolenaarec2da362017-01-21 20:04:22 +01001959 K_IGNORE, K_PS,
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001960 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
1962 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001963 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001965 K_CURSORHOLD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 0
1967 };
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968
Bram Moolenaar09df3122006-01-23 22:23:09 +00001969 if (!p_sc || msg_silent != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 return FALSE;
1971
1972 if (showcmd_visual)
1973 {
1974 showcmd_buf[0] = NUL;
1975 showcmd_visual = FALSE;
1976 }
1977
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001978 // Ignore keys that are scrollbar updates and mouse clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 if (IS_SPECIAL(c))
1980 for (i = 0; ignore[i] != 0; ++i)
1981 if (ignore[i] == c)
1982 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983
1984 p = transchar(c);
Bram Moolenaar7ba07412013-12-11 14:55:01 +01001985 if (*p == ' ')
1986 STRCPY(p, "<20>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 old_len = (int)STRLEN(showcmd_buf);
1988 extra_len = (int)STRLEN(p);
1989 overflow = old_len + extra_len - SHOWCMD_COLS;
1990 if (overflow > 0)
Bram Moolenaarb0db5692007-08-14 20:54:49 +00001991 mch_memmove(showcmd_buf, showcmd_buf + overflow,
1992 old_len - overflow + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 STRCAT(showcmd_buf, p);
1994
1995 if (char_avail())
1996 return FALSE;
1997
1998 display_showcmd();
1999
2000 return TRUE;
2001}
2002
2003 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002004add_to_showcmd_c(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005{
2006 if (!add_to_showcmd(c))
2007 setcursor();
2008}
2009
2010/*
2011 * Delete 'len' characters from the end of the shown command.
2012 */
2013 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002014del_from_showcmd(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015{
2016 int old_len;
2017
2018 if (!p_sc)
2019 return;
2020
2021 old_len = (int)STRLEN(showcmd_buf);
2022 if (len > old_len)
2023 len = old_len;
2024 showcmd_buf[old_len - len] = NUL;
2025
2026 if (!char_avail())
2027 display_showcmd();
2028}
2029
2030/*
2031 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
2032 * something and there is a partial mapping.
2033 */
2034 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002035push_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036{
2037 if (p_sc)
2038 STRCPY(old_showcmd_buf, showcmd_buf);
2039}
2040
2041 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002042pop_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043{
2044 if (!p_sc)
2045 return;
2046
2047 STRCPY(showcmd_buf, old_showcmd_buf);
2048
2049 display_showcmd();
2050}
2051
2052 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002053display_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054{
2055 int len;
2056
2057 cursor_off();
2058
2059 len = (int)STRLEN(showcmd_buf);
2060 if (len == 0)
2061 showcmd_is_clear = TRUE;
2062 else
2063 {
2064 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
2065 showcmd_is_clear = FALSE;
2066 }
2067
2068 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00002069 * clear the rest of an old message by outputting up to SHOWCMD_COLS
2070 * spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 */
2072 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
2073
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002074 setcursor(); // put cursor back where it belongs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075}
2076#endif
2077
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078/*
2079 * When "check" is FALSE, prepare for commands that scroll the window.
2080 * When "check" is TRUE, take care of scroll-binding after the window has
2081 * scrolled. Called from normal_cmd() and edit().
2082 */
2083 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002084do_check_scrollbind(int check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085{
2086 static win_T *old_curwin = NULL;
2087 static linenr_T old_topline = 0;
2088#ifdef FEAT_DIFF
2089 static int old_topfill = 0;
2090#endif
2091 static buf_T *old_buf = NULL;
2092 static colnr_T old_leftcol = 0;
2093
2094 if (check && curwin->w_p_scb)
2095 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002096 // If a ":syncbind" command was just used, don't scroll, only reset
2097 // the values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 if (did_syncbind)
2099 did_syncbind = FALSE;
2100 else if (curwin == old_curwin)
2101 {
2102 /*
2103 * Synchronize other windows, as necessary according to
2104 * 'scrollbind'. Don't do this after an ":edit" command, except
2105 * when 'diff' is set.
2106 */
2107 if ((curwin->w_buffer == old_buf
2108#ifdef FEAT_DIFF
2109 || curwin->w_p_diff
2110#endif
2111 )
2112 && (curwin->w_topline != old_topline
2113#ifdef FEAT_DIFF
2114 || curwin->w_topfill != old_topfill
2115#endif
2116 || curwin->w_leftcol != old_leftcol))
2117 {
2118 check_scrollbind(curwin->w_topline - old_topline,
2119 (long)(curwin->w_leftcol - old_leftcol));
2120 }
2121 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002122 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 {
2124 /*
2125 * When switching between windows, make sure that the relative
2126 * vertical offset is valid for the new window. The relative
2127 * offset is invalid whenever another 'scrollbind' window has
2128 * scrolled to a point that would force the current window to
2129 * scroll past the beginning or end of its buffer. When the
2130 * resync is performed, some of the other 'scrollbind' windows may
2131 * need to jump so that the current window's relative position is
2132 * visible on-screen.
2133 */
2134 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
2135 }
2136 curwin->w_scbind_pos = curwin->w_topline;
2137 }
2138
2139 old_curwin = curwin;
2140 old_topline = curwin->w_topline;
2141#ifdef FEAT_DIFF
2142 old_topfill = curwin->w_topfill;
2143#endif
2144 old_buf = curwin->w_buffer;
2145 old_leftcol = curwin->w_leftcol;
2146}
2147
2148/*
2149 * Synchronize any windows that have "scrollbind" set, based on the
2150 * number of rows by which the current window has changed
2151 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
2152 */
2153 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002154check_scrollbind(linenr_T topline_diff, long leftcol_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155{
2156 int want_ver;
2157 int want_hor;
2158 win_T *old_curwin = curwin;
2159 buf_T *old_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 int old_VIsual_select = VIsual_select;
2161 int old_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 colnr_T tgt_leftcol = curwin->w_leftcol;
2163 long topline;
2164 long y;
2165
2166 /*
2167 * check 'scrollopt' string for vertical and horizontal scroll options
2168 */
2169 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
2170#ifdef FEAT_DIFF
2171 want_ver |= old_curwin->w_p_diff;
2172#endif
2173 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
2174
2175 /*
2176 * loop through the scrollbound windows and scroll accordingly
2177 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002179 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 {
2181 curbuf = curwin->w_buffer;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002182 // skip original window and windows with 'noscrollbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 if (curwin != old_curwin && curwin->w_p_scb)
2184 {
2185 /*
2186 * do the vertical scroll
2187 */
2188 if (want_ver)
2189 {
2190#ifdef FEAT_DIFF
2191 if (old_curwin->w_p_diff && curwin->w_p_diff)
2192 {
2193 diff_set_topline(old_curwin, curwin);
2194 }
2195 else
2196#endif
2197 {
2198 curwin->w_scbind_pos += topline_diff;
2199 topline = curwin->w_scbind_pos;
2200 if (topline > curbuf->b_ml.ml_line_count)
2201 topline = curbuf->b_ml.ml_line_count;
2202 if (topline < 1)
2203 topline = 1;
2204
2205 y = topline - curwin->w_topline;
2206 if (y > 0)
2207 scrollup(y, FALSE);
2208 else
2209 scrolldown(-y, FALSE);
2210 }
2211
2212 redraw_later(VALID);
2213 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 }
2216
2217 /*
2218 * do the horizontal scroll
2219 */
2220 if (want_hor && curwin->w_leftcol != tgt_leftcol)
2221 {
2222 curwin->w_leftcol = tgt_leftcol;
2223 leftcol_changed();
2224 }
2225 }
2226 }
2227
2228 /*
2229 * reset current-window
2230 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 VIsual_select = old_VIsual_select;
2232 VIsual_active = old_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 curwin = old_curwin;
2234 curbuf = old_curbuf;
2235}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236
2237/*
2238 * Command character that's ignored.
2239 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02002240 * xon/xoff.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002243nv_ignore(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002245 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246}
2247
2248/*
Bram Moolenaarebefac62005-12-28 22:39:57 +00002249 * Command character that doesn't do anything, but unlike nv_ignore() does
2250 * start edit(). Used for "startinsert" executed while starting up.
2251 */
Bram Moolenaarebefac62005-12-28 22:39:57 +00002252 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002253nv_nop(cmdarg_T *cap UNUSED)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002254{
2255}
2256
2257/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 * Command character doesn't exist.
2259 */
2260 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002261nv_error(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262{
2263 clearopbeep(cap->oap);
2264}
2265
2266/*
2267 * <Help> and <F1> commands.
2268 */
2269 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002270nv_help(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271{
2272 if (!checkclearopq(cap->oap))
2273 ex_help(NULL);
2274}
2275
2276/*
2277 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
2278 */
2279 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002280nv_addsub(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281{
Bram Moolenaarf2732452018-06-03 14:47:35 +02002282#ifdef FEAT_JOB_CHANNEL
2283 if (bt_prompt(curbuf) && !prompt_curpos_editable())
2284 clearopbeep(cap->oap);
2285 else
2286#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01002287 if (!VIsual_active && cap->oap->op_type == OP_NOP)
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002288 {
Bram Moolenaaref2b5032016-01-12 22:20:58 +01002289 prep_redo_cmd(cap);
Bram Moolenaard79e5502016-01-10 22:13:02 +01002290 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB;
2291 op_addsub(cap->oap, cap->count1, cap->arg);
2292 cap->oap->op_type = OP_NOP;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002293 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01002294 else if (VIsual_active)
2295 nv_operator(cap);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02002296 else
Bram Moolenaard79e5502016-01-10 22:13:02 +01002297 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298}
2299
2300/*
2301 * CTRL-F, CTRL-B, etc: Scroll page up or down.
2302 */
2303 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002304nv_page(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305{
2306 if (!checkclearop(cap->oap))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002307 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002308 if (mod_mask & MOD_MASK_CTRL)
2309 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002310 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002311 if (cap->arg == BACKWARD)
2312 goto_tabpage(-(int)cap->count1);
2313 else
2314 goto_tabpage((int)cap->count0);
2315 }
2316 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02002317 (void)onepage(cap->arg, cap->count1);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002318 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319}
2320
2321/*
2322 * Implementation of "gd" and "gD" command.
2323 */
2324 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002325nv_gd(
2326 oparg_T *oap,
2327 int nchar,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002328 int thisblock) // 1 for "1gd" and "1gD"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329{
2330 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 char_u *ptr;
2332
Bram Moolenaard9d30582005-05-18 22:10:28 +00002333 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
Bram Moolenaar1538fc32016-04-16 09:13:34 +02002334 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)
Bram Moolenaar0c711142021-11-12 10:30:04 +00002335 == FAIL)
2336 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 clearopbeep(oap);
Bram Moolenaar0c711142021-11-12 10:30:04 +00002338 }
2339 else
2340 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002341#ifdef FEAT_FOLDING
Bram Moolenaar0c711142021-11-12 10:30:04 +00002342 if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
2343 foldOpenCursor();
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002344#endif
Bram Moolenaar0c711142021-11-12 10:30:04 +00002345 // clear any search statistics
2346 if (messaging() && !msg_silent && !shortmess(SHM_SEARCHCOUNT))
2347 clear_cmdline = TRUE;
2348 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002349}
2350
2351/*
Bram Moolenaar226630a2016-10-08 19:21:31 +02002352 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE
2353 * otherwise.
2354 */
2355 static int
2356is_ident(char_u *line, int offset)
2357{
2358 int i;
2359 int incomment = FALSE;
2360 int instring = 0;
2361 int prev = 0;
2362
2363 for (i = 0; i < offset && line[i] != NUL; i++)
2364 {
2365 if (instring != 0)
2366 {
2367 if (prev != '\\' && line[i] == instring)
2368 instring = 0;
2369 }
2370 else if ((line[i] == '"' || line[i] == '\'') && !incomment)
2371 {
2372 instring = line[i];
2373 }
2374 else
2375 {
2376 if (incomment)
2377 {
2378 if (prev == '*' && line[i] == '/')
2379 incomment = FALSE;
2380 }
2381 else if (prev == '/' && line[i] == '*')
2382 {
2383 incomment = TRUE;
2384 }
2385 else if (prev == '/' && line[i] == '/')
2386 {
2387 return FALSE;
2388 }
2389 }
2390
2391 prev = line[i];
2392 }
2393
2394 return incomment == FALSE && instring == 0;
2395}
2396
2397/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002398 * Search for variable declaration of "ptr[len]".
2399 * When "locally" is TRUE in the current function ("gd"), otherwise in the
2400 * current file ("gD").
2401 * When "thisblock" is TRUE check the {} block scope.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002402 * Return FAIL when not found.
2403 */
2404 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002405find_decl(
2406 char_u *ptr,
2407 int len,
2408 int locally,
2409 int thisblock,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002410 int flags_arg) // flags passed to searchit()
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002411{
2412 char_u *pat;
2413 pos_T old_pos;
2414 pos_T par_pos;
2415 pos_T found_pos;
2416 int t;
2417 int save_p_ws;
2418 int save_p_scs;
2419 int retval = OK;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002420 int incll;
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002421 int searchflags = flags_arg;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002422 int valid;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002423
2424 if ((pat = alloc(len + 7)) == NULL)
2425 return FAIL;
Bram Moolenaard9d30582005-05-18 22:10:28 +00002426
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002427 // Put "\V" before the pattern to avoid that the special meaning of "."
2428 // and "~" causes trouble.
Bram Moolenaard9d30582005-05-18 22:10:28 +00002429 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
2430 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 old_pos = curwin->w_cursor;
2432 save_p_ws = p_ws;
2433 save_p_scs = p_scs;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002434 p_ws = FALSE; // don't wrap around end of file now
2435 p_scs = FALSE; // don't switch ignorecase off now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436
2437 /*
2438 * With "gD" go to line 1.
2439 * With "gd" Search back for the start of the current function, then go
2440 * back until a blank line. If this fails go to line 1.
2441 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002442 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002444 setpcmark(); // Set in findpar() otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 curwin->w_cursor.lnum = 1;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002446 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 }
2448 else
2449 {
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002450 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
2452 --curwin->w_cursor.lnum;
2453 }
2454 curwin->w_cursor.col = 0;
2455
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002456 // Search forward for the identifier, ignore comment lines.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002457 CLEAR_POS(&found_pos);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002458 for (;;)
2459 {
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002460 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02002461 pat, 1L, searchflags, RE_LAST, NULL);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002462 if (curwin->w_cursor.lnum >= old_pos.lnum)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002463 t = FAIL; // match after start is failure too
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002464
Bram Moolenaar0fd92892006-03-09 22:27:48 +00002465 if (thisblock && t != FAIL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002466 {
2467 pos_T *pos;
2468
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002469 // Check that the block the match is in doesn't end before the
2470 // position where we started the search from.
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002471 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
2472 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
2473 && pos->lnum < old_pos.lnum)
Bram Moolenaar60402d62017-04-20 18:54:50 +02002474 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002475 // There can't be a useful match before the end of this block.
2476 // Skip to the end.
Bram Moolenaar60402d62017-04-20 18:54:50 +02002477 curwin->w_cursor = *pos;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002478 continue;
Bram Moolenaar60402d62017-04-20 18:54:50 +02002479 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002480 }
2481
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002482 if (t == FAIL)
2483 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002484 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002485 if (found_pos.lnum != 0)
2486 {
2487 curwin->w_cursor = found_pos;
2488 t = OK;
2489 }
2490 break;
2491 }
Bram Moolenaar81340392012-06-06 16:12:59 +02002492 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002493 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002494 // Ignore this line, continue at start of next line.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002495 ++curwin->w_cursor.lnum;
2496 curwin->w_cursor.col = 0;
2497 continue;
2498 }
Bram Moolenaar226630a2016-10-08 19:21:31 +02002499 valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
2500
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002501 // If the current position is not a valid identifier and a previous
2502 // match is present, favor that one instead.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002503 if (!valid && found_pos.lnum != 0)
2504 {
2505 curwin->w_cursor = found_pos;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002506 break;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002507 }
2508
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002509 // Global search: use first valid match found
Bram Moolenaar226630a2016-10-08 19:21:31 +02002510 if (valid && !locally)
2511 break;
2512 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002513 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002514 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002515 if (found_pos.lnum != 0)
2516 curwin->w_cursor = found_pos;
2517 break;
2518 }
2519
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002520 // For finding a local variable and the match is before the "{" or
2521 // inside a comment, continue searching. For K&R style function
2522 // declarations this skips the function header without types.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002523 if (!valid)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002524 CLEAR_POS(&found_pos);
Bram Moolenaar226630a2016-10-08 19:21:31 +02002525 else
Bram Moolenaar226630a2016-10-08 19:21:31 +02002526 found_pos = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002527 // Remove SEARCH_START from flags to avoid getting stuck at one
2528 // position.
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002529 searchflags &= ~SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002531
2532 if (t == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002534 retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 curwin->w_cursor = old_pos;
2536 }
2537 else
2538 {
2539 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002540 // "n" searches forward now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 reset_search_dir();
2542 }
2543
2544 vim_free(pat);
2545 p_ws = save_p_ws;
2546 p_scs = save_p_scs;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002547
2548 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549}
2550
2551/*
2552 * Move 'dist' lines in direction 'dir', counting lines by *screen*
2553 * lines rather than lines in the file.
2554 * 'dist' must be positive.
2555 *
2556 * Return OK if able to move cursor, FAIL otherwise.
2557 */
2558 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002559nv_screengo(oparg_T *oap, int dir, long dist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560{
2561 int linelen = linetabsize(ml_get_curline());
2562 int retval = OK;
2563 int atend = FALSE;
2564 int n;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002565 int col_off1; // margin offset for first screen line
2566 int col_off2; // margin offset for wrapped screen line
2567 int width1; // text width for first screen line
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002568 int width2; // text width for wrapped screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569
2570 oap->motion_type = MCHAR;
Bram Moolenaar91b2bdb2013-07-14 13:32:15 +02002571 oap->inclusive = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572
2573 col_off1 = curwin_col_off();
2574 col_off2 = col_off1 - curwin_col_off2();
Bram Moolenaar02631462017-09-22 15:20:32 +02002575 width1 = curwin->w_width - col_off1;
2576 width2 = curwin->w_width - col_off2;
Bram Moolenaar7cc8ec42015-01-27 20:59:31 +01002577 if (width2 == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002578 width2 = 1; // avoid divide by zero
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 if (curwin->w_width != 0)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002581 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 /*
2583 * Instead of sticking at the last character of the buffer line we
2584 * try to stick in the last column of the screen.
2585 */
2586 if (curwin->w_curswant == MAXCOL)
2587 {
2588 atend = TRUE;
2589 validate_virtcol();
2590 if (width1 <= 0)
2591 curwin->w_curswant = 0;
2592 else
2593 {
2594 curwin->w_curswant = width1 - 1;
2595 if (curwin->w_virtcol > curwin->w_curswant)
2596 curwin->w_curswant += ((curwin->w_virtcol
2597 - curwin->w_curswant - 1) / width2 + 1) * width2;
2598 }
2599 }
2600 else
2601 {
2602 if (linelen > width1)
2603 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2604 else
2605 n = width1;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002606 if (curwin->w_curswant >= (colnr_T)n)
2607 curwin->w_curswant = n - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 }
2609
2610 while (dist--)
2611 {
2612 if (dir == BACKWARD)
2613 {
Bram Moolenaar3c49e742021-04-04 21:26:04 +02002614 if ((long)curwin->w_curswant >= width1
2615#ifdef FEAT_FOLDING
2616 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL)
2617#endif
2618 )
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002619 // Move back within the line. This can give a negative value
2620 // for w_curswant if width1 < width2 (with cpoptions+=n),
2621 // which will get clipped to column 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 curwin->w_curswant -= width2;
2623 else
2624 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002625 // to previous line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002627 // Move to the start of a closed fold. Don't do that when
2628 // 'foldopen' contains "all": it will open in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 if (!(fdo_flags & FDO_ALL))
2630 (void)hasFolding(curwin->w_cursor.lnum,
2631 &curwin->w_cursor.lnum, NULL);
2632#endif
Bram Moolenaare71996b2021-01-21 17:03:07 +01002633 if (curwin->w_cursor.lnum == 1)
2634 {
2635 retval = FAIL;
2636 break;
2637 }
2638 --curwin->w_cursor.lnum;
2639
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 linelen = linetabsize(ml_get_curline());
2641 if (linelen > width1)
2642 curwin->w_curswant += (((linelen - width1 - 1) / width2)
2643 + 1) * width2;
2644 }
2645 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002646 else // dir == FORWARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 {
2648 if (linelen > width1)
2649 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2650 else
2651 n = width1;
Bram Moolenaar3c49e742021-04-04 21:26:04 +02002652 if (curwin->w_curswant + width2 < (colnr_T)n
2653#ifdef FEAT_FOLDING
2654 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL)
2655#endif
2656 )
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002657 // move forward within line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 curwin->w_curswant += width2;
2659 else
2660 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002661 // to next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002663 // Move to the end of a closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2665 &curwin->w_cursor.lnum);
2666#endif
2667 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
2668 {
2669 retval = FAIL;
2670 break;
2671 }
2672 curwin->w_cursor.lnum++;
2673 curwin->w_curswant %= width2;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002674 // Check if the cursor has moved below the number display
2675 // when width1 < width2 (with cpoptions+=n). Subtract width2
2676 // to get a negative value for w_curswant, which will get
2677 // clipped to column 0.
2678 if (curwin->w_curswant >= width1)
2679 curwin->w_curswant -= width2;
Bram Moolenaar914968e2011-06-20 00:45:58 +02002680 linelen = linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 }
2682 }
2683 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685
Bram Moolenaar6cd3aee2014-01-14 13:18:58 +01002686 if (virtual_active() && atend)
2687 coladvance(MAXCOL);
2688 else
2689 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
2692 {
Bram Moolenaar773b1582014-08-29 14:20:51 +02002693 colnr_T virtcol;
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002694 int c;
Bram Moolenaar773b1582014-08-29 14:20:51 +02002695
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 /*
2697 * Check for landing on a character that got split at the end of the
2698 * last line. We want to advance a screenline, not end up in the same
2699 * screenline or move two screenlines.
2700 */
2701 validate_virtcol();
Bram Moolenaar773b1582014-08-29 14:20:51 +02002702 virtcol = curwin->w_virtcol;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002703#if defined(FEAT_LINEBREAK)
Bram Moolenaaree857022019-11-09 23:26:40 +01002704 if (virtcol > (colnr_T)width1 && *get_showbreak_value(curwin) != NUL)
2705 virtcol -= vim_strsize(get_showbreak_value(curwin));
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002706#endif
Bram Moolenaar773b1582014-08-29 14:20:51 +02002707
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002708 c = (*mb_ptr2char)(ml_get_cursor());
2709 if (dir == FORWARD && virtcol < curwin->w_curswant
2710 && (curwin->w_curswant <= (colnr_T)width1)
2711 && !vim_isprintc(c) && c > 255)
2712 oneright();
2713
Bram Moolenaar773b1582014-08-29 14:20:51 +02002714 if (virtcol > curwin->w_curswant
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 && (curwin->w_curswant < (colnr_T)width1
2716 ? (curwin->w_curswant > (colnr_T)width1 / 2)
2717 : ((curwin->w_curswant - width1) % width2
2718 > (colnr_T)width2 / 2)))
2719 --curwin->w_cursor.col;
2720 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721
2722 if (atend)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002723 curwin->w_curswant = MAXCOL; // stick in the last column
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724
2725 return retval;
2726}
2727
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728/*
2729 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
2730 * cap->arg must be TRUE for CTRL-E.
2731 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002732 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002733nv_scroll_line(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734{
2735 if (!checkclearop(cap->oap))
2736 scroll_redraw(cap->arg, cap->count1);
2737}
2738
2739/*
2740 * Scroll "count" lines up or down, and redraw.
2741 */
2742 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002743scroll_redraw(int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744{
2745 linenr_T prev_topline = curwin->w_topline;
2746#ifdef FEAT_DIFF
2747 int prev_topfill = curwin->w_topfill;
2748#endif
2749 linenr_T prev_lnum = curwin->w_cursor.lnum;
2750
2751 if (up)
2752 scrollup(count, TRUE);
2753 else
2754 scrolldown(count, TRUE);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002755 if (get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002757 // Adjust the cursor position for 'scrolloff'. Mark w_topline as
2758 // valid, otherwise the screen jumps back at the end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 cursor_correct();
2760 check_cursor_moved(curwin);
2761 curwin->w_valid |= VALID_TOPLINE;
2762
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002763 // If moved back to where we were, at least move the cursor, otherwise
2764 // we get stuck at one position. Don't move the cursor up if the
2765 // first line of the buffer is already on the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 while (curwin->w_topline == prev_topline
2767#ifdef FEAT_DIFF
2768 && curwin->w_topfill == prev_topfill
2769#endif
2770 )
2771 {
2772 if (up)
2773 {
2774 if (curwin->w_cursor.lnum > prev_lnum
2775 || cursor_down(1L, FALSE) == FAIL)
2776 break;
2777 }
2778 else
2779 {
2780 if (curwin->w_cursor.lnum < prev_lnum
2781 || prev_topline == 1L
2782 || cursor_up(1L, FALSE) == FAIL)
2783 break;
2784 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002785 // Mark w_topline as valid, otherwise the screen jumps back at the
2786 // end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 check_cursor_moved(curwin);
2788 curwin->w_valid |= VALID_TOPLINE;
2789 }
2790 }
2791 if (curwin->w_cursor.lnum != prev_lnum)
2792 coladvance(curwin->w_curswant);
2793 redraw_later(VALID);
2794}
2795
2796/*
2797 * Commands that start with "z".
2798 */
2799 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002800nv_zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801{
2802 long n;
2803 colnr_T col;
2804 int nchar = cap->nchar;
2805#ifdef FEAT_FOLDING
2806 long old_fdl = curwin->w_p_fdl;
2807 int old_fen = curwin->w_p_fen;
2808#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002809#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00002810 int undo = FALSE;
2811#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +01002812 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813
2814 if (VIM_ISDIGIT(nchar))
2815 {
2816 /*
2817 * "z123{nchar}": edit the count before obtaining {nchar}
2818 */
2819 if (checkclearop(cap->oap))
2820 return;
2821 n = nchar - '0';
2822 for (;;)
2823 {
2824#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002825 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826#endif
2827 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002828 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00002829 nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831 --no_mapping;
2832 --allow_keys;
2833#ifdef FEAT_CMDL_INFO
2834 (void)add_to_showcmd(nchar);
2835#endif
2836 if (nchar == K_DEL || nchar == K_KDEL)
2837 n /= 10;
2838 else if (VIM_ISDIGIT(nchar))
2839 n = n * 10 + (nchar - '0');
2840 else if (nchar == CAR)
2841 {
2842#ifdef FEAT_GUI
2843 need_mouse_correct = TRUE;
2844#endif
2845 win_setheight((int)n);
2846 break;
2847 }
2848 else if (nchar == 'l'
2849 || nchar == 'h'
2850 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00002851 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 {
2853 cap->count1 = n ? n * cap->count1 : cap->count1;
2854 goto dozet;
2855 }
2856 else
2857 {
2858 clearopbeep(cap->oap);
2859 break;
2860 }
2861 }
2862 cap->oap->op_type = OP_NOP;
2863 return;
2864 }
2865
2866dozet:
2867 if (
2868#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002869 // "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
2870 // and "zC" only in Visual mode. "zj" and "zk" are motion
2871 // commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 cap->nchar != 'f' && cap->nchar != 'F'
2873 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
2874 && cap->nchar != 'j' && cap->nchar != 'k'
2875 &&
2876#endif
2877 checkclearop(cap->oap))
2878 return;
2879
2880 /*
2881 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
2882 * If line number given, set cursor.
2883 */
2884 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
2885 && cap->count0
2886 && cap->count0 != curwin->w_cursor.lnum)
2887 {
2888 setpcmark();
2889 if (cap->count0 > curbuf->b_ml.ml_line_count)
2890 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2891 else
2892 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002893 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 }
2895
2896 switch (nchar)
2897 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002898 // "z+", "z<CR>" and "zt": put cursor at top of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 case '+':
2900 if (cap->count0 == 0)
2901 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002902 // No count given: put cursor at the line below screen
2903 validate_botline(); // make sure w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2905 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2906 else
2907 curwin->w_cursor.lnum = curwin->w_botline;
2908 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002909 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 case NL:
2911 case CAR:
2912 case K_KENTER:
2913 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002914 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915
2916 case 't': scroll_cursor_top(0, TRUE);
2917 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002918 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 break;
2920
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002921 // "z." and "zz": put cursor in middle of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 case '.': beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002923 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924
2925 case 'z': scroll_cursor_halfway(TRUE);
2926 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002927 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928 break;
2929
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002930 // "z^", "z-" and "zb": put cursor at bottom of screen
2931 case '^': // Strange Vi behavior: <count>z^ finds line at top of window
2932 // when <count> is at bottom of window, and puts that one at
2933 // bottom of window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 if (cap->count0 != 0)
2935 {
2936 scroll_cursor_bot(0, TRUE);
2937 curwin->w_cursor.lnum = curwin->w_topline;
2938 }
2939 else if (curwin->w_topline == 1)
2940 curwin->w_cursor.lnum = 1;
2941 else
2942 curwin->w_cursor.lnum = curwin->w_topline - 1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002943 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944 case '-':
2945 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002946 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947
2948 case 'b': scroll_cursor_bot(0, TRUE);
2949 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002950 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 break;
2952
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002953 // "zH" - scroll screen right half-page
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 case 'H':
Bram Moolenaar02631462017-09-22 15:20:32 +02002955 cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002956 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002958 // "zh" - scroll screen to the right
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959 case 'h':
2960 case K_LEFT:
2961 if (!curwin->w_p_wrap)
2962 {
2963 if ((colnr_T)cap->count1 > curwin->w_leftcol)
2964 curwin->w_leftcol = 0;
2965 else
2966 curwin->w_leftcol -= (colnr_T)cap->count1;
2967 leftcol_changed();
2968 }
2969 break;
2970
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002971 // "zL" - scroll screen left half-page
Bram Moolenaar02631462017-09-22 15:20:32 +02002972 case 'L': cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002973 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002975 // "zl" - scroll screen to the left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 case 'l':
2977 case K_RIGHT:
2978 if (!curwin->w_p_wrap)
2979 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002980 // scroll the window left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 curwin->w_leftcol += (colnr_T)cap->count1;
2982 leftcol_changed();
2983 }
2984 break;
2985
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002986 // "zs" - scroll screen, cursor at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 case 's': if (!curwin->w_p_wrap)
2988 {
2989#ifdef FEAT_FOLDING
2990 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002991 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 else
2993#endif
2994 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002995 if ((long)col > siso)
2996 col -= siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 else
2998 col = 0;
2999 if (curwin->w_leftcol != col)
3000 {
3001 curwin->w_leftcol = col;
3002 redraw_later(NOT_VALID);
3003 }
3004 }
3005 break;
3006
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003007 // "ze" - scroll screen, cursor at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 case 'e': if (!curwin->w_p_wrap)
3009 {
3010#ifdef FEAT_FOLDING
3011 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003012 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 else
3014#endif
3015 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
Bram Moolenaar02631462017-09-22 15:20:32 +02003016 n = curwin->w_width - curwin_col_off();
Bram Moolenaar375e3392019-01-31 18:26:10 +01003017 if ((long)col + siso < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 col = 0;
3019 else
Bram Moolenaar375e3392019-01-31 18:26:10 +01003020 col = col + siso - n + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 if (curwin->w_leftcol != col)
3022 {
3023 curwin->w_leftcol = col;
3024 redraw_later(NOT_VALID);
3025 }
3026 }
3027 break;
3028
Christian Brabandt2fa93842021-05-30 22:17:25 +02003029 // "zp", "zP" in block mode put without addind trailing spaces
3030 case 'P':
3031 case 'p': nv_put(cap);
3032 break;
Christian Brabandt544a38e2021-06-10 19:39:11 +02003033 // "zy" Yank without trailing spaces
3034 case 'y': nv_operator(cap);
3035 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003037 // "zF": create fold command
3038 // "zf": create fold operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039 case 'F':
3040 case 'f': if (foldManualAllowed(TRUE))
3041 {
3042 cap->nchar = 'f';
3043 nv_operator(cap);
3044 curwin->w_p_fen = TRUE;
3045
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003046 // "zF" is like "zfzf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
3048 {
3049 nv_operator(cap);
3050 finish_op = TRUE;
3051 }
3052 }
3053 else
3054 clearopbeep(cap->oap);
3055 break;
3056
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003057 // "zd": delete fold at cursor
3058 // "zD": delete fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 case 'd':
3060 case 'D': if (foldManualAllowed(FALSE))
3061 {
3062 if (VIsual_active)
3063 nv_operator(cap);
3064 else
3065 deleteFold(curwin->w_cursor.lnum,
3066 curwin->w_cursor.lnum, nchar == 'D', FALSE);
3067 }
3068 break;
3069
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003070 // "zE": erase all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 case 'E': if (foldmethodIsManual(curwin))
3072 {
3073 clearFolding(curwin);
3074 changed_window_setting();
3075 }
3076 else if (foldmethodIsMarker(curwin))
3077 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
3078 TRUE, FALSE);
3079 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003080 emsg(_("E352: Cannot erase folds with current 'foldmethod'"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 break;
3082
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003083 // "zn": fold none: reset 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 case 'n': curwin->w_p_fen = FALSE;
3085 break;
3086
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003087 // "zN": fold Normal: set 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 case 'N': curwin->w_p_fen = TRUE;
3089 break;
3090
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003091 // "zi": invert folding: toggle 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
3093 break;
3094
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003095 // "za": open closed fold or close open fold at cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3097 openFold(curwin->w_cursor.lnum, cap->count1);
3098 else
3099 {
3100 closeFold(curwin->w_cursor.lnum, cap->count1);
3101 curwin->w_p_fen = TRUE;
3102 }
3103 break;
3104
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003105 // "zA": open fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3107 openFoldRecurse(curwin->w_cursor.lnum);
3108 else
3109 {
3110 closeFoldRecurse(curwin->w_cursor.lnum);
3111 curwin->w_p_fen = TRUE;
3112 }
3113 break;
3114
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003115 // "zo": open fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116 case 'o': if (VIsual_active)
3117 nv_operator(cap);
3118 else
3119 openFold(curwin->w_cursor.lnum, cap->count1);
3120 break;
3121
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003122 // "zO": open fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 case 'O': if (VIsual_active)
3124 nv_operator(cap);
3125 else
3126 openFoldRecurse(curwin->w_cursor.lnum);
3127 break;
3128
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003129 // "zc": close fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 case 'c': if (VIsual_active)
3131 nv_operator(cap);
3132 else
3133 closeFold(curwin->w_cursor.lnum, cap->count1);
3134 curwin->w_p_fen = TRUE;
3135 break;
3136
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003137 // "zC": close fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 case 'C': if (VIsual_active)
3139 nv_operator(cap);
3140 else
3141 closeFoldRecurse(curwin->w_cursor.lnum);
3142 curwin->w_p_fen = TRUE;
3143 break;
3144
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003145 // "zv": open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 case 'v': foldOpenCursor();
3147 break;
3148
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003149 // "zx": re-apply 'foldlevel' and open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 case 'x': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003151 curwin->w_foldinvalid = TRUE; // recompute folds
3152 newFoldLevel(); // update right now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 foldOpenCursor();
3154 break;
3155
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003156 // "zX": undo manual opens/closes, re-apply 'foldlevel'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 case 'X': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003158 curwin->w_foldinvalid = TRUE; // recompute folds
3159 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 break;
3161
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003162 // "zm": fold more
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 case 'm': if (curwin->w_p_fdl > 0)
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003164 {
3165 curwin->w_p_fdl -= cap->count1;
3166 if (curwin->w_p_fdl < 0)
3167 curwin->w_p_fdl = 0;
3168 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003169 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 curwin->w_p_fen = TRUE;
3171 break;
3172
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003173 // "zM": close all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174 case 'M': curwin->w_p_fdl = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003175 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 curwin->w_p_fen = TRUE;
3177 break;
3178
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003179 // "zr": reduce folding
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003180 case 'r': curwin->w_p_fdl += cap->count1;
3181 {
3182 int d = getDeepestNesting();
3183
3184 if (curwin->w_p_fdl >= d)
3185 curwin->w_p_fdl = d;
3186 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 break;
3188
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003189 // "zR": open all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 case 'R': curwin->w_p_fdl = getDeepestNesting();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003191 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 break;
3193
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003194 case 'j': // "zj" move to next fold downwards
3195 case 'k': // "zk" move to next fold upwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
3197 cap->count1) == FAIL)
3198 clearopbeep(cap->oap);
3199 break;
3200
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003201#endif // FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00003203#ifdef FEAT_SPELL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003204 case 'u': // "zug" and "zuw": undo "zg" and "zw"
Bram Moolenaard0131a82006-03-04 21:46:13 +00003205 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003206 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003207 nchar = plain_vgetc();
Bram Moolenaard0131a82006-03-04 21:46:13 +00003208 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaard0131a82006-03-04 21:46:13 +00003209 --no_mapping;
3210 --allow_keys;
3211#ifdef FEAT_CMDL_INFO
3212 (void)add_to_showcmd(nchar);
3213#endif
3214 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
3215 {
3216 clearopbeep(cap->oap);
3217 break;
3218 }
3219 undo = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003220 // FALLTHROUGH
Bram Moolenaard0131a82006-03-04 21:46:13 +00003221
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003222 case 'g': // "zg": add good word to word list
3223 case 'w': // "zw": add wrong word to word list
3224 case 'G': // "zG": add good word to temp word list
3225 case 'W': // "zW": add wrong word to temp word list
Bram Moolenaarb765d632005-06-07 21:00:02 +00003226 {
3227 char_u *ptr = NULL;
3228 int len;
3229
3230 if (checkclearop(cap->oap))
3231 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003232 if (VIsual_active && get_visual_text(cap, &ptr, &len)
3233 == FAIL)
3234 return;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003235 if (ptr == NULL)
3236 {
3237 pos_T pos = curwin->w_cursor;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003238
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003239 // Find bad word under the cursor. When 'spell' is
3240 // off this fails and find_ident_under_cursor() is
3241 // used below.
Bram Moolenaar134bf072013-09-25 18:54:24 +02003242 emsg_off++;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003243 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
Bram Moolenaar134bf072013-09-25 18:54:24 +02003244 emsg_off--;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003245 if (len != 0 && curwin->w_cursor.col <= pos.col)
3246 ptr = ml_get_pos(&curwin->w_cursor);
3247 curwin->w_cursor = pos;
3248 }
3249
Bram Moolenaarb765d632005-06-07 21:00:02 +00003250 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
3251 FIND_IDENT)) == 0)
3252 return;
Bram Moolenaar08cc3742019-08-11 22:51:14 +02003253 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W'
3254 ? SPELL_ADD_BAD : SPELL_ADD_GOOD,
Bram Moolenaard0131a82006-03-04 21:46:13 +00003255 (nchar == 'G' || nchar == 'W')
3256 ? 0 : (int)cap->count1,
3257 undo);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003258 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00003259 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003260
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003261 case '=': // "z=": suggestions for a badly spelled word
Bram Moolenaar66fa2712006-01-22 23:22:22 +00003262 if (!checkclearop(cap->oap))
Bram Moolenaard12a1322005-08-21 22:08:24 +00003263 spell_suggest((int)cap->count0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003264 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003265#endif
3266
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 default: clearopbeep(cap->oap);
3268 }
3269
3270#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003271 // Redraw when 'foldenable' changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 if (old_fen != curwin->w_p_fen)
3273 {
3274# ifdef FEAT_DIFF
3275 win_T *wp;
3276
3277 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
3278 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003279 // Adjust 'foldenable' in diff-synced windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 FOR_ALL_WINDOWS(wp)
3281 {
3282 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
3283 {
3284 wp->w_p_fen = curwin->w_p_fen;
3285 changed_window_setting_win(wp);
3286 }
3287 }
3288 }
3289# endif
3290 changed_window_setting();
3291 }
3292
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003293 // Redraw when 'foldlevel' changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 if (old_fdl != curwin->w_p_fdl)
3295 newFoldLevel();
3296#endif
3297}
3298
3299#ifdef FEAT_GUI
3300/*
3301 * Vertical scrollbar movement.
3302 */
3303 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003304nv_ver_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305{
3306 if (cap->oap->op_type != OP_NOP)
3307 clearopbeep(cap->oap);
3308
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003309 // Even if an operator was pending, we still want to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 gui_do_scroll();
3311}
3312
3313/*
3314 * Horizontal scrollbar movement.
3315 */
3316 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003317nv_hor_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318{
3319 if (cap->oap->op_type != OP_NOP)
3320 clearopbeep(cap->oap);
3321
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003322 // Even if an operator was pending, we still want to scroll
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003323 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324}
3325#endif
3326
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003327#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003328/*
3329 * Click in GUI tab.
3330 */
3331 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003332nv_tabline(cmdarg_T *cap)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003333{
3334 if (cap->oap->op_type != OP_NOP)
3335 clearopbeep(cap->oap);
3336
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003337 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003338 goto_tabpage(current_tab);
3339}
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003340
3341/*
3342 * Selected item in tab line menu.
3343 */
3344 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003345nv_tabmenu(cmdarg_T *cap)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003346{
3347 if (cap->oap->op_type != OP_NOP)
3348 clearopbeep(cap->oap);
3349
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003350 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003351 handle_tabmenu();
3352}
3353
3354/*
3355 * Handle selecting an item of the GUI tab line menu.
3356 * Used in Normal and Insert mode.
3357 */
3358 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003359handle_tabmenu(void)
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003360{
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003361 switch (current_tabmenu)
3362 {
3363 case TABLINE_MENU_CLOSE:
3364 if (current_tab == 0)
3365 do_cmdline_cmd((char_u *)"tabclose");
3366 else
3367 {
3368 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
3369 current_tab);
3370 do_cmdline_cmd(IObuff);
3371 }
3372 break;
3373
3374 case TABLINE_MENU_NEW:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003375 if (current_tab == 0)
3376 do_cmdline_cmd((char_u *)"$tabnew");
3377 else
3378 {
3379 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
3380 current_tab - 1);
3381 do_cmdline_cmd(IObuff);
3382 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003383 break;
3384
3385 case TABLINE_MENU_OPEN:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003386 if (current_tab == 0)
3387 do_cmdline_cmd((char_u *)"browse $tabnew");
3388 else
3389 {
3390 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
3391 current_tab - 1);
3392 do_cmdline_cmd(IObuff);
3393 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003394 break;
3395 }
3396}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003397#endif
3398
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399/*
3400 * "Q" command.
3401 */
3402 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003403nv_exmode(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404{
3405 /*
3406 * Ignore 'Q' in Visual mode, just give a beep.
3407 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 if (VIsual_active)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003409 vim_beep(BO_EX);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003410 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 do_exmode(FALSE);
3412}
3413
3414/*
3415 * Handle a ":" command.
3416 */
3417 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003418nv_colon(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419{
Bram Moolenaar957cf672020-11-12 14:21:06 +01003420 int old_p_im;
3421 int cmd_result;
3422 int is_cmdkey = cap->cmdchar == K_COMMAND;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423
Bram Moolenaar957cf672020-11-12 14:21:06 +01003424 if (VIsual_active && !is_cmdkey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 nv_operator(cap);
3426 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 {
3428 if (cap->oap->op_type != OP_NOP)
3429 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003430 // Using ":" as a movement is characterwise exclusive.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 cap->oap->motion_type = MCHAR;
3432 cap->oap->inclusive = FALSE;
3433 }
Bram Moolenaar957cf672020-11-12 14:21:06 +01003434 else if (cap->count0 && !is_cmdkey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003436 // translate "count:" into ":.,.+(count - 1)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 stuffcharReadbuff('.');
3438 if (cap->count0 > 1)
3439 {
3440 stuffReadbuff((char_u *)",.+");
3441 stuffnumReadbuff((long)cap->count0 - 1L);
3442 }
3443 }
3444
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003445 // When typing, don't type below an old message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 if (KeyTyped)
3447 compute_cmdrow();
3448
3449 old_p_im = p_im;
3450
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003451 // get a command line and execute it
Bram Moolenaar957cf672020-11-12 14:21:06 +01003452 cmd_result = do_cmdline(NULL, is_cmdkey ? getcmdkeycmd : getexline, NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
3454
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003455 // If 'insertmode' changed, enter or exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 if (p_im != old_p_im)
3457 {
3458 if (p_im)
3459 restart_edit = 'i';
3460 else
3461 restart_edit = 0;
3462 }
3463
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003464 if (cmd_result == FAIL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003465 // The Ex command failed, do not execute the operator.
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003466 clearop(cap->oap);
3467 else if (cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
3469 || cap->oap->start.col >
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003470 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
3471 || did_emsg
3472 ))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003473 // The start of the operator has become invalid by the Ex command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 clearopbeep(cap->oap);
3475 }
3476}
3477
3478/*
3479 * Handle CTRL-G command.
3480 */
3481 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003482nv_ctrlg(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003484 if (VIsual_active) // toggle Selection/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 {
3486 VIsual_select = !VIsual_select;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01003487 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 showmode();
3489 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003490 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003491 // print full name if count given or :cd used
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 fileinfo((int)cap->count0, FALSE, TRUE);
3493}
3494
3495/*
3496 * Handle CTRL-H <Backspace> command.
3497 */
3498 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003499nv_ctrlh(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 if (VIsual_active && VIsual_select)
3502 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003503 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 v_visop(cap);
3505 }
3506 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 nv_left(cap);
3508}
3509
3510/*
3511 * CTRL-L: clear screen and redraw.
3512 */
3513 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003514nv_clear(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515{
3516 if (!checkclearop(cap->oap))
3517 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518#ifdef FEAT_SYN_HL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003519 // Clear all syntax states to force resyncing.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003520 syn_stack_free_all(curwin->w_s);
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02003521# ifdef FEAT_RELTIME
3522 {
3523 win_T *wp;
3524
3525 FOR_ALL_WINDOWS(wp)
3526 wp->w_s->b_syn_slow = FALSE;
3527 }
3528# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529#endif
3530 redraw_later(CLEAR);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003531#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3532# ifdef VIMDLL
3533 if (!gui.in_use)
3534# endif
3535 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01003536#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 }
3538}
3539
3540/*
3541 * CTRL-O: In Select mode: switch to Visual mode for one command.
3542 * Otherwise: Go to older pcmark.
3543 */
3544 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003545nv_ctrlo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 if (VIsual_active && VIsual_select)
3548 {
3549 VIsual_select = FALSE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01003550 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 showmode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003552 restart_VIsual_select = 2; // restart Select mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 }
3554 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 {
3556 cap->count1 = -cap->count1;
3557 nv_pcmark(cap);
3558 }
3559}
3560
3561/*
Bram Moolenaar1bbb6192018-11-10 16:02:01 +01003562 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is
3563 * not named.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 */
3565 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003566nv_hat(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567{
3568 if (!checkclearopq(cap->oap))
3569 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
3570 GETF_SETMARK|GETF_ALT, FALSE);
3571}
3572
3573/*
3574 * "Z" commands.
3575 */
3576 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003577nv_Zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578{
3579 if (!checkclearopq(cap->oap))
3580 {
3581 switch (cap->nchar)
3582 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003583 // "ZZ": equivalent to ":x".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 case 'Z': do_cmdline_cmd((char_u *)"x");
3585 break;
3586
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003587 // "ZQ": equivalent to ":q!" (Elvis compatible).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 case 'Q': do_cmdline_cmd((char_u *)"q!");
3589 break;
3590
3591 default: clearopbeep(cap->oap);
3592 }
3593 }
3594}
3595
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596/*
3597 * Call nv_ident() as if "c1" was used, with "c2" as next character.
3598 */
3599 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003600do_nv_ident(int c1, int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601{
3602 oparg_T oa;
3603 cmdarg_T ca;
3604
3605 clear_oparg(&oa);
Bram Moolenaara80faa82020-04-12 19:37:17 +02003606 CLEAR_FIELD(ca);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 ca.oap = &oa;
3608 ca.cmdchar = c1;
3609 ca.nchar = c2;
3610 nv_ident(&ca);
3611}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612
3613/*
3614 * Handle the commands that use the word under the cursor.
3615 * [g] CTRL-] :ta to current identifier
3616 * [g] 'K' run program for current identifier
3617 * [g] '*' / to current identifier or string
3618 * [g] '#' ? to current identifier or string
3619 * g ']' :tselect for current identifier
3620 */
3621 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003622nv_ident(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623{
3624 char_u *ptr = NULL;
3625 char_u *buf;
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003626 unsigned buflen;
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003627 char_u *newbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 char_u *p;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003629 char_u *kp; // value of 'keywordprg'
3630 int kp_help; // 'keywordprg' is ":he"
3631 int kp_ex; // 'keywordprg' starts with ":"
3632 int n = 0; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 int cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003634 int g_cmd; // "g" command
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003635 int tag_cmd = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 char_u *aux_ptr;
3637 int isman;
3638 int isman_s;
3639
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003640 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 {
3642 cmdchar = cap->nchar;
3643 g_cmd = TRUE;
3644 }
3645 else
3646 {
3647 cmdchar = cap->cmdchar;
3648 g_cmd = FALSE;
3649 }
3650
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003651 if (cmdchar == POUND) // the pound sign, '#' for English keyboards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 cmdchar = '#';
3653
3654 /*
3655 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
3656 */
3657 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
3658 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
3660 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 if (checkclearopq(cap->oap))
3662 return;
3663 }
3664
3665 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
3666 (cmdchar == '*' || cmdchar == '#')
3667 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
3668 {
3669 clearop(cap->oap);
3670 return;
3671 }
3672
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003673 // Allocate buffer to put the command in. Inserting backslashes can
3674 // double the length of the word. p_kp / curbuf->b_p_kp could be added
3675 // and some numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
3677 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
3678 || STRCMP(kp, ":help") == 0);
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003679 if (kp_help && *skipwhite(ptr) == NUL)
3680 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003681 emsg(_(e_noident)); // found white space only
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003682 return;
3683 }
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003684 kp_ex = (*kp == ':');
3685 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp));
3686 buf = alloc(buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 if (buf == NULL)
3688 return;
3689 buf[0] = NUL;
3690
3691 switch (cmdchar)
3692 {
3693 case '*':
3694 case '#':
3695 /*
3696 * Put cursor at start of word, makes search skip the word
3697 * under the cursor.
3698 * Call setpcmark() first, so "*``" puts the cursor back where
3699 * it was.
3700 */
3701 setpcmark();
3702 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
3703
3704 if (!g_cmd && vim_iswordp(ptr))
3705 STRCPY(buf, "\\<");
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003706 no_smartcase = TRUE; // don't use 'smartcase' now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 break;
3708
3709 case 'K':
3710 if (kp_help)
3711 STRCPY(buf, "he! ");
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003712 else if (kp_ex)
3713 {
3714 if (cap->count0 != 0)
3715 vim_snprintf((char *)buf, buflen, "%s %ld",
3716 kp, cap->count0);
3717 else
3718 STRCPY(buf, kp);
3719 STRCAT(buf, " ");
3720 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 else
3722 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003723 // An external command will probably use an argument starting
3724 // with "-" as an option. To avoid trouble we skip the "-".
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003725 while (*ptr == '-' && n > 0)
3726 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003727 ++ptr;
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003728 --n;
3729 }
3730 if (n == 0)
3731 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003732 emsg(_(e_noident)); // found dashes only
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003733 vim_free(buf);
3734 return;
3735 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003736
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003737 // When a count is given, turn it into a range. Is this
3738 // really what we want?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 isman = (STRCMP(kp, "man") == 0);
3740 isman_s = (STRCMP(kp, "man -s") == 0);
3741 if (cap->count0 != 0 && !(isman || isman_s))
3742 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
3743
3744 STRCAT(buf, "! ");
3745 if (cap->count0 == 0 && isman_s)
3746 STRCAT(buf, "man");
3747 else
3748 STRCAT(buf, kp);
3749 STRCAT(buf, " ");
3750 if (cap->count0 != 0 && (isman || isman_s))
3751 {
3752 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
3753 STRCAT(buf, " ");
3754 }
3755 }
3756 break;
3757
3758 case ']':
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003759 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760#ifdef FEAT_CSCOPE
3761 if (p_cst)
3762 STRCPY(buf, "cstag ");
3763 else
3764#endif
3765 STRCPY(buf, "ts ");
3766 break;
3767
3768 default:
Bram Moolenaar97e7a842010-03-17 13:07:08 +01003769 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 if (curbuf->b_help)
3771 STRCPY(buf, "he! ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 else
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003773 {
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003774 if (g_cmd)
3775 STRCPY(buf, "tj ");
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003776 else if (cap->count0 == 0)
3777 STRCPY(buf, "ta ");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003778 else
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003779 sprintf((char *)buf, ":%ldta ", cap->count0);
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003780 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 }
3782
3783 /*
3784 * Now grab the chars in the identifier
3785 */
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003786 if (cmdchar == 'K' && !kp_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 {
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003788 ptr = vim_strnsave(ptr, n);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003789 if (kp_ex)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003790 // Escape the argument properly for an Ex command
Bram Moolenaar21c1a0c2021-10-17 17:20:23 +01003791 p = vim_strsave_fnameescape(ptr, VSE_NONE);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003792 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003793 // Escape the argument properly for a shell command
Bram Moolenaar426f3752016-11-04 21:22:37 +01003794 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003795 vim_free(ptr);
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003796 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003798 vim_free(buf);
3799 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003801 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003802 if (newbuf == NULL)
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003803 {
3804 vim_free(buf);
3805 vim_free(p);
3806 return;
3807 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003808 buf = newbuf;
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003809 STRCAT(buf, p);
3810 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003812 else
3813 {
3814 if (cmdchar == '*')
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003815 aux_ptr = (char_u *)(magic_isset() ? "/.*~[^$\\" : "/^$\\");
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003816 else if (cmdchar == '#')
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003817 aux_ptr = (char_u *)(magic_isset() ? "/?.*~[^$\\" : "/?^$\\");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003818 else if (tag_cmd)
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003819 {
3820 if (curbuf->b_help)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003821 // ":help" handles unescaped argument
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003822 aux_ptr = (char_u *)"";
3823 else
3824 aux_ptr = (char_u *)"\\|\"\n[";
3825 }
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003826 else
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003827 aux_ptr = (char_u *)"\\|\"\n*?[";
3828
3829 p = buf + STRLEN(buf);
3830 while (n-- > 0)
3831 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003832 // put a backslash before \ and some others
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003833 if (vim_strchr(aux_ptr, *ptr) != NULL)
3834 *p++ = '\\';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003835 // When current byte is a part of multibyte character, copy all
3836 // bytes of that character.
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003837 if (has_mbyte)
3838 {
3839 int i;
3840 int len = (*mb_ptr2len)(ptr) - 1;
3841
3842 for (i = 0; i < len && n >= 1; ++i, --n)
3843 *p++ = *ptr++;
3844 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003845 *p++ = *ptr++;
3846 }
3847 *p = NUL;
3848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849
3850 /*
3851 * Execute the command.
3852 */
3853 if (cmdchar == '*' || cmdchar == '#')
3854 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003855 if (!g_cmd && (has_mbyte
3856 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr))
3857 : vim_iswordc(ptr[-1])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 STRCAT(buf, "\\>");
Bram Moolenaard7663c22019-08-06 21:59:57 +02003859
3860 // put pattern in search history
Bram Moolenaarc7be3f32009-12-24 14:01:12 +00003861 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
Bram Moolenaard7663c22019-08-06 21:59:57 +02003863
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003864 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 }
3866 else
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003867 {
3868 g_tag_at_cursor = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 do_cmdline_cmd(buf);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003870 g_tag_at_cursor = FALSE;
3871 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872
3873 vim_free(buf);
3874}
3875
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876/*
3877 * Get visually selected text, within one line only.
3878 * Returns FAIL if more than one line selected.
3879 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003880 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003881get_visual_text(
3882 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003883 char_u **pp, // return: start of selected text
3884 int *lenp) // return: length of selected text
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885{
3886 if (VIsual_mode != 'V')
3887 unadjust_for_sel();
3888 if (VIsual.lnum != curwin->w_cursor.lnum)
3889 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003890 if (cap != NULL)
3891 clearopbeep(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 return FAIL;
3893 }
3894 if (VIsual_mode == 'V')
3895 {
3896 *pp = ml_get_curline();
3897 *lenp = (int)STRLEN(*pp);
3898 }
3899 else
3900 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003901 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 {
3903 *pp = ml_get_pos(&curwin->w_cursor);
3904 *lenp = VIsual.col - curwin->w_cursor.col + 1;
3905 }
3906 else
3907 {
3908 *pp = ml_get_pos(&VIsual);
3909 *lenp = curwin->w_cursor.col - VIsual.col + 1;
3910 }
Bram Moolenaar615ddd52021-11-17 18:00:31 +00003911 if (**pp == NUL)
3912 *lenp = 0;
3913 if (has_mbyte && *lenp > 0)
3914 // Correct the length to include all bytes of the last character.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003915 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 }
3917 reset_VIsual_and_resel();
3918 return OK;
3919}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920
3921/*
3922 * CTRL-T: backwards in tag stack
3923 */
3924 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003925nv_tagpop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926{
3927 if (!checkclearopq(cap->oap))
3928 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
3929}
3930
3931/*
3932 * Handle scrolling command 'H', 'L' and 'M'.
3933 */
3934 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003935nv_scroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936{
3937 int used = 0;
3938 long n;
3939#ifdef FEAT_FOLDING
3940 linenr_T lnum;
3941#endif
3942 int half;
3943
3944 cap->oap->motion_type = MLINE;
3945 setpcmark();
3946
3947 if (cap->cmdchar == 'L')
3948 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003949 validate_botline(); // make sure curwin->w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 curwin->w_cursor.lnum = curwin->w_botline - 1;
3951 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
3952 curwin->w_cursor.lnum = 1;
3953 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003954 {
3955#ifdef FEAT_FOLDING
3956 if (hasAnyFolding(curwin))
3957 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003958 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003959 for (n = cap->count1 - 1; n > 0
3960 && curwin->w_cursor.lnum > curwin->w_topline; --n)
3961 {
3962 (void)hasFolding(curwin->w_cursor.lnum,
3963 &curwin->w_cursor.lnum, NULL);
3964 --curwin->w_cursor.lnum;
3965 }
3966 }
3967 else
3968#endif
3969 curwin->w_cursor.lnum -= cap->count1 - 1;
3970 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 }
3972 else
3973 {
3974 if (cap->cmdchar == 'M')
3975 {
3976#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003977 // Don't count filler lines above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 used -= diff_check_fill(curwin, curwin->w_topline)
3979 - curwin->w_topfill;
3980#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003981 validate_botline(); // make sure w_empty_rows is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
3983 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
3984 {
3985#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003986 // Count half he number of filler lines to be "below this
3987 // line" and half to be "above the next line".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
3989 + n) / 2 >= half)
3990 {
3991 --n;
3992 break;
3993 }
3994#endif
3995 used += plines(curwin->w_topline + n);
3996 if (used >= half)
3997 break;
3998#ifdef FEAT_FOLDING
3999 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
4000 n = lnum - curwin->w_topline;
4001#endif
4002 }
4003 if (n > 0 && used > curwin->w_height)
4004 --n;
4005 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004006 else // (cap->cmdchar == 'H')
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004007 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004009#ifdef FEAT_FOLDING
4010 if (hasAnyFolding(curwin))
4011 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004012 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004013 lnum = curwin->w_topline;
4014 while (n-- > 0 && lnum < curwin->w_botline - 1)
4015 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02004016 (void)hasFolding(lnum, NULL, &lnum);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004017 ++lnum;
4018 }
4019 n = lnum - curwin->w_topline;
4020 }
4021#endif
4022 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 curwin->w_cursor.lnum = curwin->w_topline + n;
4024 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4025 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4026 }
4027
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004028 // Correct for 'so', except when an operator is pending.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02004029 if (cap->oap->op_type == OP_NOP)
4030 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 beginline(BL_SOL | BL_FIX);
4032}
4033
4034/*
4035 * Cursor right commands.
4036 */
4037 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004038nv_right(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039{
4040 long n;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004041 int past_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004043 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4044 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004045 // <C-Right> and <S-Right> move a word or WORD right
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004046 if (mod_mask & MOD_MASK_CTRL)
4047 cap->arg = TRUE;
4048 nv_wordcmd(cap);
4049 return;
4050 }
4051
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 cap->oap->motion_type = MCHAR;
4053 cap->oap->inclusive = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004054 past_line = (VIsual_active && *p_sel != 'o');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 /*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004057 * In virtual edit mode, there's no such thing as "past_line", as lines
4058 * are (theoretically) infinitely long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 */
4060 if (virtual_active())
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004061 past_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062
4063 for (n = cap->count1; n > 0; --n)
4064 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004065 if ((!past_line && oneright() == FAIL)
4066 || (past_line && *ml_get_cursor() == NUL)
Bram Moolenaar78a15312009-05-15 19:33:18 +00004067 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068 {
4069 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004070 * <Space> wraps to next line if 'whichwrap' has 's'.
4071 * 'l' wraps to next line if 'whichwrap' has 'l'.
4072 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 */
4074 if ( ((cap->cmdchar == ' '
4075 && vim_strchr(p_ww, 's') != NULL)
4076 || (cap->cmdchar == 'l'
4077 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004078 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 && vim_strchr(p_ww, '>') != NULL))
4080 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4081 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004082 // When deleting we also count the NL as a character.
4083 // Set cap->oap->inclusive when last char in the line is
4084 // included, move to next line after that
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004085 if ( cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 && !cap->oap->inclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004087 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 cap->oap->inclusive = TRUE;
4089 else
4090 {
4091 ++curwin->w_cursor.lnum;
4092 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 curwin->w_set_curswant = TRUE;
4095 cap->oap->inclusive = FALSE;
4096 }
4097 continue;
4098 }
4099 if (cap->oap->op_type == OP_NOP)
4100 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004101 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 if (n == cap->count1)
4103 beep_flush();
4104 }
4105 else
4106 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004107 if (!LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 cap->oap->inclusive = TRUE;
4109 }
4110 break;
4111 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004112 else if (past_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 {
4114 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 if (virtual_active())
4116 oneright();
4117 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 if (has_mbyte)
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02004120 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 ++curwin->w_cursor.col;
4123 }
4124 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 }
4126#ifdef FEAT_FOLDING
4127 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4128 && cap->oap->op_type == OP_NOP)
4129 foldOpenCursor();
4130#endif
4131}
4132
4133/*
4134 * Cursor left commands.
4135 *
4136 * Returns TRUE when operator end should not be adjusted.
4137 */
4138 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004139nv_left(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140{
4141 long n;
4142
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004143 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4144 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004145 // <C-Left> and <S-Left> move a word or WORD left
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004146 if (mod_mask & MOD_MASK_CTRL)
4147 cap->arg = 1;
4148 nv_bck_word(cap);
4149 return;
4150 }
4151
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152 cap->oap->motion_type = MCHAR;
4153 cap->oap->inclusive = FALSE;
4154 for (n = cap->count1; n > 0; --n)
4155 {
4156 if (oneleft() == FAIL)
4157 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004158 // <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
4159 // 'h' wraps to previous line if 'whichwrap' has 'h'.
4160 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 if ( (((cap->cmdchar == K_BS
4162 || cap->cmdchar == Ctrl_H)
4163 && vim_strchr(p_ww, 'b') != NULL)
4164 || (cap->cmdchar == 'h'
4165 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004166 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 && vim_strchr(p_ww, '<') != NULL))
4168 && curwin->w_cursor.lnum > 1)
4169 {
4170 --(curwin->w_cursor.lnum);
4171 coladvance((colnr_T)MAXCOL);
4172 curwin->w_set_curswant = TRUE;
4173
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004174 // When the NL before the first char has to be deleted we
4175 // put the cursor on the NUL after the previous line.
4176 // This is a very special case, be careful!
4177 // Don't adjust op_end now, otherwise it won't work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 if ( (cap->oap->op_type == OP_DELETE
4179 || cap->oap->op_type == OP_CHANGE)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004180 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004182 char_u *cp = ml_get_cursor();
4183
4184 if (*cp != NUL)
4185 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004186 if (has_mbyte)
4187 curwin->w_cursor.col += (*mb_ptr2len)(cp);
4188 else
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004189 ++curwin->w_cursor.col;
4190 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 cap->retval |= CA_NO_ADJ_OP_END;
4192 }
4193 continue;
4194 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004195 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
4197 beep_flush();
4198 break;
4199 }
4200 }
4201#ifdef FEAT_FOLDING
4202 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4203 && cap->oap->op_type == OP_NOP)
4204 foldOpenCursor();
4205#endif
4206}
4207
4208/*
4209 * Cursor up commands.
4210 * cap->arg is TRUE for "-": Move cursor to first non-blank.
4211 */
4212 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004213nv_up(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004215 if (mod_mask & MOD_MASK_SHIFT)
4216 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004217 // <S-Up> is page up
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004218 cap->arg = BACKWARD;
4219 nv_page(cap);
4220 }
4221 else
4222 {
4223 cap->oap->motion_type = MLINE;
4224 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4225 clearopbeep(cap->oap);
4226 else if (cap->arg)
4227 beginline(BL_WHITE | BL_FIX);
4228 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229}
4230
4231/*
4232 * Cursor down commands.
4233 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
4234 */
4235 static void
Bram Moolenaar1b010052016-09-12 12:24:11 +02004236nv_down(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004238 if (mod_mask & MOD_MASK_SHIFT)
4239 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004240 // <S-Down> is page down
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004241 cap->arg = FORWARD;
4242 nv_page(cap);
4243 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02004244#if defined(FEAT_QUICKFIX)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004245 // Quickfix window only: view the result under the cursor.
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004246 else if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
4247 qf_view_result(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248#endif
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004249 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 {
4251#ifdef FEAT_CMDWIN
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004252 // In the cmdline window a <CR> executes the command.
Bram Moolenaar05159a02005-02-26 23:04:13 +00004253 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 cmdwin_result = CAR;
4255 else
4256#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02004257#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004258 // In a prompt buffer a <CR> in the last line invokes the callback.
Bram Moolenaarf2732452018-06-03 14:47:35 +02004259 if (bt_prompt(curbuf) && cap->cmdchar == CAR
4260 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4261 {
4262 invoke_prompt_callback();
4263 if (restart_edit == 0)
4264 restart_edit = 'a';
4265 }
4266 else
4267#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 {
4269 cap->oap->motion_type = MLINE;
4270 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4271 clearopbeep(cap->oap);
4272 else if (cap->arg)
4273 beginline(BL_WHITE | BL_FIX);
4274 }
4275 }
4276}
4277
4278#ifdef FEAT_SEARCHPATH
4279/*
4280 * Grab the file name under the cursor and edit it.
4281 */
4282 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004283nv_gotofile(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284{
4285 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004286 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004288 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 {
4290 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004291 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 return;
4293 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004294 if (curbuf_locked())
4295 {
4296 clearop(cap->oap);
4297 return;
4298 }
Bram Moolenaar5aed0cc2020-05-12 22:02:21 +02004299#ifdef FEAT_PROP_POPUP
4300 if (ERROR_IF_TERM_POPUP_WINDOW)
4301 return;
4302#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004304 ptr = grab_file_name(cap->count1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305
4306 if (ptr != NULL)
4307 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004308 // do autowrite if necessary
Bram Moolenaareb44a682017-08-03 22:44:55 +02004309 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf))
Bram Moolenaarcde88542015-08-11 19:14:00 +02004310 (void)autowrite(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 setpcmark();
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004312 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
Bram Moolenaareb44a682017-08-03 22:44:55 +02004313 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004314 && cap->nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004315 {
4316 curwin->w_cursor.lnum = lnum;
4317 check_cursor_lnum();
4318 beginline(BL_SOL | BL_FIX);
4319 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 vim_free(ptr);
4321 }
4322 else
4323 clearop(cap->oap);
4324}
4325#endif
4326
4327/*
4328 * <End> command: to end of current line or last line.
4329 */
4330 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004331nv_end(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004333 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004335 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 nv_goto(cap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004337 cap->count1 = 1; // to end of current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 }
4339 nv_dollar(cap);
4340}
4341
4342/*
4343 * Handle the "$" command.
4344 */
4345 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004346nv_dollar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347{
4348 cap->oap->motion_type = MCHAR;
4349 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004350 // In virtual mode when off the edge of a line and an operator
4351 // is pending (whew!) keep the cursor where it is.
4352 // Otherwise, send it to the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 if (!virtual_active() || gchar_cursor() != NUL
4354 || cap->oap->op_type == OP_NOP)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004355 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 if (cursor_down((long)(cap->count1 - 1),
4357 cap->oap->op_type == OP_NOP) == FAIL)
4358 clearopbeep(cap->oap);
4359#ifdef FEAT_FOLDING
4360 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4361 foldOpenCursor();
4362#endif
4363}
4364
4365/*
4366 * Implementation of '?' and '/' commands.
4367 * If cap->arg is TRUE don't set PC mark.
4368 */
4369 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004370nv_search(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371{
4372 oparg_T *oap = cap->oap;
Bram Moolenaardda933d2016-09-03 21:04:58 +02004373 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374
4375 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
4376 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004377 // Translate "g??" to "g?g?"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 cap->cmdchar = 'g';
4379 cap->nchar = '?';
4380 nv_operator(cap);
4381 return;
4382 }
4383
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004384 // When using 'incsearch' the cursor may be moved to set a different search
4385 // start position.
Bram Moolenaare96a2492019-06-25 04:12:16 +02004386 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387
4388 if (cap->searchbuf == NULL)
4389 {
4390 clearop(oap);
4391 return;
4392 }
4393
Bram Moolenaar46539112015-02-17 15:43:57 +01004394 (void)normal_search(cap, cap->cmdchar, cap->searchbuf,
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004395 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor))
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004396 ? 0 : SEARCH_MARK, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397}
4398
4399/*
4400 * Handle "N" and "n" commands.
4401 * cap->arg is SEARCH_REV for "N", 0 for "n".
4402 */
4403 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004404nv_next(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405{
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004406 pos_T old = curwin->w_cursor;
4407 int wrapped = FALSE;
4408 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, &wrapped);
Bram Moolenaar46539112015-02-17 15:43:57 +01004409
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004410 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor))
Bram Moolenaar46539112015-02-17 15:43:57 +01004411 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004412 // Avoid getting stuck on the current cursor position, which can
4413 // happen when an offset is given and the cursor is on the last char
4414 // in the buffer: Repeat with count + 1.
Bram Moolenaar46539112015-02-17 15:43:57 +01004415 cap->count1 += 1;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004416 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL);
Bram Moolenaar46539112015-02-17 15:43:57 +01004417 cap->count1 -= 1;
4418 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419}
4420
4421/*
4422 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
4423 * Uses only cap->count1 and cap->oap from "cap".
Bram Moolenaar46539112015-02-17 15:43:57 +01004424 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 */
Bram Moolenaar46539112015-02-17 15:43:57 +01004426 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004427normal_search(
4428 cmdarg_T *cap,
4429 int dir,
4430 char_u *pat,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004431 int opt, // extra flags for do_search()
4432 int *wrapped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433{
4434 int i;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004435 searchit_arg_T sia;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436
4437 cap->oap->motion_type = MCHAR;
4438 cap->oap->inclusive = FALSE;
4439 cap->oap->use_reg_one = TRUE;
4440 curwin->w_set_curswant = TRUE;
4441
Bram Moolenaara80faa82020-04-12 19:37:17 +02004442 CLEAR_FIELD(sia);
Bram Moolenaarc036e872020-02-21 21:30:52 +01004443 i = do_search(cap->oap, dir, dir, pat, cap->count1,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004444 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, &sia);
4445 if (wrapped != NULL)
4446 *wrapped = sia.sa_wrapped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 if (i == 0)
4448 clearop(cap->oap);
4449 else
4450 {
4451 if (i == 2)
4452 cap->oap->motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454#ifdef FEAT_FOLDING
4455 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4456 foldOpenCursor();
4457#endif
4458 }
4459
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004460 // "/$" will put the cursor after the end of the line, may need to
4461 // correct that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 check_cursor();
Bram Moolenaar46539112015-02-17 15:43:57 +01004463 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464}
4465
4466/*
4467 * Character search commands.
4468 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
4469 * ',' and FALSE for ';'.
4470 * cap->nchar is NUL for ',' and ';' (repeat the search)
4471 */
4472 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004473nv_csearch(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474{
4475 int t_cmd;
4476
4477 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
4478 t_cmd = TRUE;
4479 else
4480 t_cmd = FALSE;
4481
4482 cap->oap->motion_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
4484 clearopbeep(cap->oap);
4485 else
4486 {
4487 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004488 // Include a Tab for "tx" and for "dfx".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
4490 && (t_cmd || cap->oap->op_type != OP_NOP))
4491 {
4492 colnr_T scol, ecol;
4493
4494 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4495 curwin->w_cursor.coladd = ecol - scol;
4496 }
4497 else
4498 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500#ifdef FEAT_FOLDING
4501 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4502 foldOpenCursor();
4503#endif
4504 }
4505}
4506
4507/*
4508 * "[" and "]" commands.
4509 * cap->arg is BACKWARD for "[" and FORWARD for "]".
4510 */
4511 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004512nv_brackets(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513{
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004514 pos_T new_pos = {0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 pos_T prev_pos;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004516 pos_T *pos = NULL; // init for GCC
4517 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 int flag;
4519 long n;
4520 int findc;
4521 int c;
4522
4523 cap->oap->motion_type = MCHAR;
4524 cap->oap->inclusive = FALSE;
4525 old_pos = curwin->w_cursor;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004526 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527
4528#ifdef FEAT_SEARCHPATH
4529 /*
4530 * "[f" or "]f" : Edit file under the cursor (same as "gf")
4531 */
4532 if (cap->nchar == 'f')
4533 nv_gotofile(cap);
4534 else
4535#endif
4536
4537#ifdef FEAT_FIND_ID
4538 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00004539 * Find the occurrence(s) of the identifier or define under cursor
4540 * in current and included files or jump to the first occurrence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 *
4542 * search list jump
4543 * fwd bwd fwd bwd fwd bwd
4544 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
4545 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
4546 */
4547 if (vim_strchr((char_u *)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004548# ifdef EBCDIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549 "iI\005dD\067",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004550# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 "iI\011dD\004",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004552# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 cap->nchar) != NULL)
4554 {
4555 char_u *ptr;
4556 int len;
4557
4558 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
4559 clearop(cap->oap);
4560 else
4561 {
4562 find_pattern_in_path(ptr, 0, len, TRUE,
4563 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
4564 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
4565 cap->count1,
4566 isupper(cap->nchar) ? ACTION_SHOW_ALL :
4567 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
4568 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
4569 (linenr_T)MAXLNUM);
4570 curwin->w_set_curswant = TRUE;
4571 }
4572 }
4573 else
4574#endif
4575
4576 /*
4577 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
4578 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
4579 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
4580 * "[m" or "]m" search for prev/next start of (Java) method.
4581 * "[M" or "]M" search for prev/next end of (Java) method.
4582 */
4583 if ( (cap->cmdchar == '['
4584 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
4585 || (cap->cmdchar == ']'
4586 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
4587 {
4588 if (cap->nchar == '*')
4589 cap->nchar = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 prev_pos.lnum = 0;
4591 if (cap->nchar == 'm' || cap->nchar == 'M')
4592 {
4593 if (cap->cmdchar == '[')
4594 findc = '{';
4595 else
4596 findc = '}';
4597 n = 9999;
4598 }
4599 else
4600 {
4601 findc = cap->nchar;
4602 n = cap->count1;
4603 }
4604 for ( ; n > 0; --n)
4605 {
4606 if ((pos = findmatchlimit(cap->oap, findc,
4607 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
4608 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004609 if (new_pos.lnum == 0) // nothing found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610 {
4611 if (cap->nchar != 'm' && cap->nchar != 'M')
4612 clearopbeep(cap->oap);
4613 }
4614 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004615 pos = &new_pos; // use last one found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 break;
4617 }
4618 prev_pos = new_pos;
4619 curwin->w_cursor = *pos;
4620 new_pos = *pos;
4621 }
4622 curwin->w_cursor = old_pos;
4623
4624 /*
4625 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
4626 * brought us to the match for "[m" and "]M" when inside a method.
4627 * Try finding the '{' or '}' we want to be at.
4628 * Also repeat for the given count.
4629 */
4630 if (cap->nchar == 'm' || cap->nchar == 'M')
4631 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004632 // norm is TRUE for "]M" and "[m"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 int norm = ((findc == '{') == (cap->nchar == 'm'));
4634
4635 n = cap->count1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004636 // found a match: we were inside a method
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 if (prev_pos.lnum != 0)
4638 {
4639 pos = &prev_pos;
4640 curwin->w_cursor = prev_pos;
4641 if (norm)
4642 --n;
4643 }
4644 else
4645 pos = NULL;
4646 while (n > 0)
4647 {
4648 for (;;)
4649 {
4650 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
4651 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004652 // if not found anything, that's an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 if (pos == NULL)
4654 clearopbeep(cap->oap);
4655 n = 0;
4656 break;
4657 }
4658 c = gchar_cursor();
4659 if (c == '{' || c == '}')
4660 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004661 // Must have found end/start of class: use it.
4662 // Or found the place to be at.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 if ((c == findc && norm) || (n == 1 && !norm))
4664 {
4665 new_pos = curwin->w_cursor;
4666 pos = &new_pos;
4667 n = 0;
4668 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004669 // if no match found at all, we started outside of the
4670 // class and we're inside now. Just go on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 else if (new_pos.lnum == 0)
4672 {
4673 new_pos = curwin->w_cursor;
4674 pos = &new_pos;
4675 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004676 // found start/end of other method: go to match
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 else if ((pos = findmatchlimit(cap->oap, findc,
4678 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
4679 0)) == NULL)
4680 n = 0;
4681 else
4682 curwin->w_cursor = *pos;
4683 break;
4684 }
4685 }
4686 --n;
4687 }
4688 curwin->w_cursor = old_pos;
4689 if (pos == NULL && new_pos.lnum != 0)
4690 clearopbeep(cap->oap);
4691 }
4692 if (pos != NULL)
4693 {
4694 setpcmark();
4695 curwin->w_cursor = *pos;
4696 curwin->w_set_curswant = TRUE;
4697#ifdef FEAT_FOLDING
4698 if ((fdo_flags & FDO_BLOCK) && KeyTyped
4699 && cap->oap->op_type == OP_NOP)
4700 foldOpenCursor();
4701#endif
4702 }
4703 }
4704
4705 /*
4706 * "[[", "[]", "]]" and "][": move to start or end of function
4707 */
4708 else if (cap->nchar == '[' || cap->nchar == ']')
4709 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004710 if (cap->nchar == cap->cmdchar) // "]]" or "[["
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 flag = '{';
4712 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004713 flag = '}'; // "][" or "[]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714
4715 curwin->w_set_curswant = TRUE;
4716 /*
4717 * Imitate strange Vi behaviour: When using "]]" with an operator
4718 * we also stop at '}'.
4719 */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004720 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 (cap->oap->op_type != OP_NOP
4722 && cap->arg == FORWARD && flag == '{')))
4723 clearopbeep(cap->oap);
4724 else
4725 {
4726 if (cap->oap->op_type == OP_NOP)
4727 beginline(BL_WHITE | BL_FIX);
4728#ifdef FEAT_FOLDING
4729 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4730 foldOpenCursor();
4731#endif
4732 }
4733 }
4734
4735 /*
4736 * "[p", "[P", "]P" and "]p": put with indent adjustment
4737 */
4738 else if (cap->nchar == 'p' || cap->nchar == 'P')
4739 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02004740 nv_put_opt(cap, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 }
4742
4743 /*
4744 * "['", "[`", "]'" and "]`": jump to next mark
4745 */
4746 else if (cap->nchar == '\'' || cap->nchar == '`')
4747 {
4748 pos = &curwin->w_cursor;
4749 for (n = cap->count1; n > 0; --n)
4750 {
4751 prev_pos = *pos;
4752 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
4753 cap->nchar == '\'');
4754 if (pos == NULL)
4755 break;
4756 }
4757 if (pos == NULL)
4758 pos = &prev_pos;
4759 nv_cursormark(cap, cap->nchar == '\'', pos);
4760 }
4761
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 /*
4763 * [ or ] followed by a middle mouse click: put selected text with
4764 * indent adjustment. Any other button just does as usual.
4765 */
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02004766 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 {
4768 (void)do_mouse(cap->oap, cap->nchar,
4769 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
4770 cap->count1, PUT_FIXINDENT);
4771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772
4773#ifdef FEAT_FOLDING
4774 /*
4775 * "[z" and "]z": move to start or end of open fold.
4776 */
4777 else if (cap->nchar == 'z')
4778 {
4779 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4780 cap->count1) == FAIL)
4781 clearopbeep(cap->oap);
4782 }
4783#endif
4784
4785#ifdef FEAT_DIFF
4786 /*
4787 * "[c" and "]c": move to next or previous diff-change.
4788 */
4789 else if (cap->nchar == 'c')
4790 {
4791 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
4792 cap->count1) == FAIL)
4793 clearopbeep(cap->oap);
4794 }
4795#endif
4796
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00004797#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004798 /*
4799 * "[s", "[S", "]s" and "]S": move to next spell error.
4800 */
4801 else if (cap->nchar == 's' || cap->nchar == 'S')
4802 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004803 setpcmark();
4804 for (n = 0; n < cap->count1; ++n)
Bram Moolenaar95529562005-08-25 21:21:38 +00004805 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4806 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004807 {
4808 clearopbeep(cap->oap);
4809 break;
4810 }
Bram Moolenaarb73fa622017-12-21 20:27:47 +01004811 else
4812 curwin->w_set_curswant = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004813# ifdef FEAT_FOLDING
4814 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4815 foldOpenCursor();
4816# endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004817 }
4818#endif
4819
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004820 // Not a valid cap->nchar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 else
4822 clearopbeep(cap->oap);
4823}
4824
4825/*
4826 * Handle Normal mode "%" command.
4827 */
4828 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004829nv_percent(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830{
4831 pos_T *pos;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02004832#if defined(FEAT_FOLDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833 linenr_T lnum = curwin->w_cursor.lnum;
4834#endif
4835
4836 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004837 if (cap->count0) // {cnt}% : goto {cnt} percentage in file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 {
4839 if (cap->count0 > 100)
4840 clearopbeep(cap->oap);
4841 else
4842 {
4843 cap->oap->motion_type = MLINE;
4844 setpcmark();
Bram Moolenaar2c655342021-02-23 19:32:03 +01004845 // Round up, so 'normal 100%' always jumps at the line line.
4846 // Beyond 21474836 lines, (ml_line_count * 100 + 99) would
4847 // overflow on 32-bits, so use a formula with less accuracy
4848 // to avoid overflows.
4849 if (curbuf->b_ml.ml_line_count >= 21474836)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
4851 / 100L * cap->count0;
4852 else
4853 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
4854 cap->count0 + 99L) / 100L;
Bram Moolenaar1d859e22021-01-28 17:24:58 +01004855 if (curwin->w_cursor.lnum < 1)
4856 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4858 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4859 beginline(BL_SOL | BL_FIX);
4860 }
4861 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004862 else // "%" : go to matching paren
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 {
4864 cap->oap->motion_type = MCHAR;
4865 cap->oap->use_reg_one = TRUE;
4866 if ((pos = findmatch(cap->oap, NUL)) == NULL)
4867 clearopbeep(cap->oap);
4868 else
4869 {
4870 setpcmark();
4871 curwin->w_cursor = *pos;
4872 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 }
4876 }
4877#ifdef FEAT_FOLDING
4878 if (cap->oap->op_type == OP_NOP
4879 && lnum != curwin->w_cursor.lnum
4880 && (fdo_flags & FDO_PERCENT)
4881 && KeyTyped)
4882 foldOpenCursor();
4883#endif
4884}
4885
4886/*
4887 * Handle "(" and ")" commands.
4888 * cap->arg is BACKWARD for "(" and FORWARD for ")".
4889 */
4890 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004891nv_brace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892{
4893 cap->oap->motion_type = MCHAR;
4894 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004895 // The motion used to be inclusive for "(", but that is not what Vi does.
Bram Moolenaarebefac62005-12-28 22:39:57 +00004896 cap->oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 curwin->w_set_curswant = TRUE;
4898
4899 if (findsent(cap->arg, cap->count1) == FAIL)
4900 clearopbeep(cap->oap);
4901 else
4902 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004903 // Don't leave the cursor on the NUL past end of line.
Bram Moolenaar1f14d572008-01-12 16:12:10 +00004904 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906#ifdef FEAT_FOLDING
4907 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4908 foldOpenCursor();
4909#endif
4910 }
4911}
4912
4913/*
4914 * "m" command: Mark a position.
4915 */
4916 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004917nv_mark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918{
4919 if (!checkclearop(cap->oap))
4920 {
4921 if (setmark(cap->nchar) == FAIL)
4922 clearopbeep(cap->oap);
4923 }
4924}
4925
4926/*
4927 * "{" and "}" commands.
4928 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
4929 */
4930 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004931nv_findpar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932{
4933 cap->oap->motion_type = MCHAR;
4934 cap->oap->inclusive = FALSE;
4935 cap->oap->use_reg_one = TRUE;
4936 curwin->w_set_curswant = TRUE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004937 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 clearopbeep(cap->oap);
4939 else
4940 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942#ifdef FEAT_FOLDING
4943 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4944 foldOpenCursor();
4945#endif
4946 }
4947}
4948
4949/*
4950 * "u" command: Undo or make lower case.
4951 */
4952 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004953nv_undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004955 if (cap->oap->op_type == OP_LOWER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004957 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958 cap->cmdchar = 'g';
4959 cap->nchar = 'u';
4960 nv_operator(cap);
4961 }
4962 else
4963 nv_kundo(cap);
4964}
4965
4966/*
4967 * <Undo> command.
4968 */
4969 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004970nv_kundo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971{
4972 if (!checkclearopq(cap->oap))
4973 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02004974#ifdef FEAT_JOB_CHANNEL
4975 if (bt_prompt(curbuf))
4976 {
4977 clearopbeep(cap->oap);
4978 return;
4979 }
4980#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 u_undo((int)cap->count1);
4982 curwin->w_set_curswant = TRUE;
4983 }
4984}
4985
4986/*
4987 * Handle the "r" command.
4988 */
4989 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004990nv_replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991{
4992 char_u *ptr;
4993 int had_ctrl_v;
4994 long n;
4995
4996 if (checkclearop(cap->oap))
4997 return;
Bram Moolenaarf2732452018-06-03 14:47:35 +02004998#ifdef FEAT_JOB_CHANNEL
4999 if (bt_prompt(curbuf) && !prompt_curpos_editable())
5000 {
5001 clearopbeep(cap->oap);
5002 return;
5003 }
5004#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005006 // get another character
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 if (cap->nchar == Ctrl_V)
5008 {
5009 had_ctrl_v = Ctrl_V;
Bram Moolenaar0684e362020-12-03 19:54:42 +01005010 cap->nchar = get_literal(FALSE);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005011 // Don't redo a multibyte character with CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 if (cap->nchar > DEL)
5013 had_ctrl_v = NUL;
5014 }
5015 else
5016 had_ctrl_v = NUL;
5017
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005018 // Abort if the character is a special key.
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00005019 if (IS_SPECIAL(cap->nchar))
5020 {
5021 clearopbeep(cap->oap);
5022 return;
5023 }
5024
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005025 // Visual mode "r"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 if (VIsual_active)
5027 {
Bram Moolenaar57fb0da2009-02-04 10:46:25 +00005028 if (got_int)
5029 reset_VIsual();
Bram Moolenaard9820532013-11-04 01:41:17 +01005030 if (had_ctrl_v)
5031 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005032 // Use a special (negative) number to make a difference between a
5033 // literal CR or NL and a line break.
Bram Moolenaarf12519d2018-02-06 22:52:49 +01005034 if (cap->nchar == CAR)
5035 cap->nchar = REPLACE_CR_NCHAR;
5036 else if (cap->nchar == NL)
5037 cap->nchar = REPLACE_NL_NCHAR;
Bram Moolenaard9820532013-11-04 01:41:17 +01005038 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 nv_operator(cap);
5040 return;
5041 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005043 // Break tabs, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 if (virtual_active())
5045 {
5046 if (u_save_cursor() == FAIL)
5047 return;
5048 if (gchar_cursor() == NUL)
5049 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005050 // Add extra space and put the cursor on the first one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051 coladvance_force((colnr_T)(getviscol() + cap->count1));
5052 curwin->w_cursor.col -= cap->count1;
5053 }
5054 else if (gchar_cursor() == TAB)
5055 coladvance_force(getviscol());
5056 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005058 // Abort if not enough characters to replace.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 ptr = ml_get_cursor();
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00005060 if (STRLEN(ptr) < (unsigned)cap->count1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005061 || (has_mbyte && mb_charlen(ptr) < cap->count1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 {
5063 clearopbeep(cap->oap);
5064 return;
5065 }
5066
5067 /*
5068 * Replacing with a TAB is done by edit() when it is complicated because
5069 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
5070 * Other characters are done below to avoid problems with things like
5071 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
5072 */
5073 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
5074 {
5075 stuffnumReadbuff(cap->count1);
5076 stuffcharReadbuff('R');
5077 stuffcharReadbuff('\t');
5078 stuffcharReadbuff(ESC);
5079 return;
5080 }
5081
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005082 // save line for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 if (u_save_cursor() == FAIL)
5084 return;
5085
5086 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
5087 {
5088 /*
5089 * Replace character(s) by a single newline.
5090 * Strange vi behaviour: Only one newline is inserted.
5091 * Delete the characters here.
5092 * Insert the newline with an insert command, takes care of
5093 * autoindent. The insert command depends on being on the last
5094 * character of a line or not.
5095 */
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005096 (void)del_chars(cap->count1, FALSE); // delete the characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 stuffcharReadbuff('\r');
5098 stuffcharReadbuff(ESC);
5099
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005100 // Give 'r' to edit(), to get the redo command right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 invoke_edit(cap, TRUE, 'r', FALSE);
5102 }
5103 else
5104 {
5105 prep_redo(cap->oap->regname, cap->count1,
5106 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
5107
5108 curbuf->b_op_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 if (has_mbyte)
5110 {
5111 int old_State = State;
5112
5113 if (cap->ncharC1 != 0)
5114 AppendCharToRedobuff(cap->ncharC1);
5115 if (cap->ncharC2 != 0)
5116 AppendCharToRedobuff(cap->ncharC2);
5117
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005118 // This is slow, but it handles replacing a single-byte with a
5119 // multi-byte and the other way around. Also handles adding
5120 // composing characters for utf-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 for (n = cap->count1; n > 0; --n)
5122 {
5123 State = REPLACE;
Bram Moolenaar8320da42012-04-30 18:18:47 +02005124 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5125 {
5126 int c = ins_copychar(curwin->w_cursor.lnum
5127 + (cap->nchar == Ctrl_Y ? -1 : 1));
5128 if (c != NUL)
5129 ins_char(c);
5130 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005131 // will be decremented further down
Bram Moolenaar8320da42012-04-30 18:18:47 +02005132 ++curwin->w_cursor.col;
5133 }
5134 else
5135 ins_char(cap->nchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 State = old_State;
5137 if (cap->ncharC1 != 0)
5138 ins_char(cap->ncharC1);
5139 if (cap->ncharC2 != 0)
5140 ins_char(cap->ncharC2);
5141 }
5142 }
5143 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 {
5145 /*
5146 * Replace the characters within one line.
5147 */
5148 for (n = cap->count1; n > 0; --n)
5149 {
5150 /*
5151 * Get ptr again, because u_save and/or showmatch() will have
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005152 * released the line. This may also happen in ins_copychar().
5153 * At the same time we let know that the line will be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 */
Bram Moolenaar8320da42012-04-30 18:18:47 +02005155 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5156 {
5157 int c = ins_copychar(curwin->w_cursor.lnum
5158 + (cap->nchar == Ctrl_Y ? -1 : 1));
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005159
5160 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005161 if (c != NUL)
5162 ptr[curwin->w_cursor.col] = c;
5163 }
5164 else
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005165 {
5166 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005167 ptr[curwin->w_cursor.col] = cap->nchar;
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 if (p_sm && msg_silent == 0)
5170 showmatch(cap->nchar);
5171 ++curwin->w_cursor.col;
5172 }
5173#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005174 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005176 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177
Bram Moolenaar009b2592004-10-24 19:18:58 +00005178 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005179 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005181 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182 }
5183#endif
5184
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005185 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 changed_bytes(curwin->w_cursor.lnum,
5187 (colnr_T)(curwin->w_cursor.col - cap->count1));
5188 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005189 --curwin->w_cursor.col; // cursor on the last replaced char
5190 // if the character on the left of the current cursor is a multi-byte
5191 // character, move two characters left
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192 if (has_mbyte)
5193 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194 curbuf->b_op_end = curwin->w_cursor;
5195 curwin->w_set_curswant = TRUE;
5196 set_last_insert(cap->nchar);
5197 }
5198}
5199
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200/*
5201 * 'o': Exchange start and end of Visual area.
5202 * 'O': same, but in block mode exchange left and right corners.
5203 */
5204 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005205v_swap_corners(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206{
5207 pos_T old_cursor;
5208 colnr_T left, right;
5209
5210 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
5211 {
5212 old_cursor = curwin->w_cursor;
5213 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
5214 curwin->w_cursor.lnum = VIsual.lnum;
5215 coladvance(left);
5216 VIsual = curwin->w_cursor;
5217
5218 curwin->w_cursor.lnum = old_cursor.lnum;
5219 curwin->w_curswant = right;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005220 // 'selection "exclusive" and cursor at right-bottom corner: move it
5221 // right one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
5223 ++curwin->w_curswant;
5224 coladvance(curwin->w_curswant);
5225 if (curwin->w_cursor.col == old_cursor.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 && (!virtual_active()
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005227 || curwin->w_cursor.coladd == old_cursor.coladd))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 {
5229 curwin->w_cursor.lnum = VIsual.lnum;
5230 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
5231 ++right;
5232 coladvance(right);
5233 VIsual = curwin->w_cursor;
5234
5235 curwin->w_cursor.lnum = old_cursor.lnum;
5236 coladvance(left);
5237 curwin->w_curswant = left;
5238 }
5239 }
5240 else
5241 {
5242 old_cursor = curwin->w_cursor;
5243 curwin->w_cursor = VIsual;
5244 VIsual = old_cursor;
5245 curwin->w_set_curswant = TRUE;
5246 }
5247}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248
5249/*
5250 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
5251 */
5252 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005253nv_Replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005255 if (VIsual_active) // "R" is replace lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 {
5257 cap->cmdchar = 'c';
5258 cap->nchar = NUL;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005259 VIsual_mode_orig = VIsual_mode; // remember original area for gv
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 VIsual_mode = 'V';
5261 nv_operator(cap);
5262 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005263 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264 {
5265 if (!curbuf->b_p_ma)
Bram Moolenaar108010a2021-06-27 22:03:33 +02005266 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 else
5268 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 if (virtual_active())
5270 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
5272 }
5273 }
5274}
5275
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276/*
5277 * "gr".
5278 */
5279 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005280nv_vreplace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282 if (VIsual_active)
5283 {
5284 cap->cmdchar = 'r';
5285 cap->nchar = cap->extra_char;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005286 nv_replace(cap); // Do same as "r" in Visual mode for now
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005288 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 {
5290 if (!curbuf->b_p_ma)
Bram Moolenaar108010a2021-06-27 22:03:33 +02005291 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 else
5293 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005294 if (cap->extra_char == Ctrl_V) // get another character
Bram Moolenaar0684e362020-12-03 19:54:42 +01005295 cap->extra_char = get_literal(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 stuffcharReadbuff(cap->extra_char);
5297 stuffcharReadbuff(ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 if (virtual_active())
5299 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 invoke_edit(cap, TRUE, 'v', FALSE);
5301 }
5302 }
5303}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304
5305/*
5306 * Swap case for "~" command, when it does not work like an operator.
5307 */
5308 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005309n_swapchar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310{
5311 long n;
5312 pos_T startpos;
5313 int did_change = 0;
5314#ifdef FEAT_NETBEANS_INTG
5315 pos_T pos;
5316 char_u *ptr;
5317 int count;
5318#endif
5319
5320 if (checkclearopq(cap->oap))
5321 return;
5322
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005323 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 {
5325 clearopbeep(cap->oap);
5326 return;
5327 }
5328
5329 prep_redo_cmd(cap);
5330
5331 if (u_save_cursor() == FAIL)
5332 return;
5333
5334 startpos = curwin->w_cursor;
5335#ifdef FEAT_NETBEANS_INTG
5336 pos = startpos;
5337#endif
5338 for (n = cap->count1; n > 0; --n)
5339 {
5340 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
5341 inc_cursor();
5342 if (gchar_cursor() == NUL)
5343 {
5344 if (vim_strchr(p_ww, '~') != NULL
5345 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5346 {
5347#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005348 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 {
5350 if (did_change)
5351 {
5352 ptr = ml_get(pos.lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005353 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005354 netbeans_removed(curbuf, pos.lnum, pos.col,
5355 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005357 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 }
5359 pos.col = 0;
5360 pos.lnum++;
5361 }
5362#endif
5363 ++curwin->w_cursor.lnum;
5364 curwin->w_cursor.col = 0;
5365 if (n > 1)
5366 {
5367 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
5368 break;
5369 u_clearline();
5370 }
5371 }
5372 else
5373 break;
5374 }
5375 }
5376#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005377 if (did_change && netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 {
5379 ptr = ml_get(pos.lnum);
5380 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005381 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
5382 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 }
5384#endif
5385
5386
5387 check_cursor();
5388 curwin->w_set_curswant = TRUE;
5389 if (did_change)
5390 {
5391 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
5392 0L);
5393 curbuf->b_op_start = startpos;
5394 curbuf->b_op_end = curwin->w_cursor;
5395 if (curbuf->b_op_end.col > 0)
5396 --curbuf->b_op_end.col;
5397 }
5398}
5399
5400/*
5401 * Move cursor to mark.
5402 */
5403 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005404nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405{
5406 if (check_mark(pos) == FAIL)
5407 clearop(cap->oap);
5408 else
5409 {
5410 if (cap->cmdchar == '\''
5411 || cap->cmdchar == '`'
5412 || cap->cmdchar == '['
5413 || cap->cmdchar == ']')
5414 setpcmark();
5415 curwin->w_cursor = *pos;
5416 if (flag)
5417 beginline(BL_WHITE | BL_FIX);
5418 else
5419 check_cursor();
5420 }
5421 cap->oap->motion_type = flag ? MLINE : MCHAR;
5422 if (cap->cmdchar == '`')
5423 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005424 cap->oap->inclusive = FALSE; // ignored if not MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 curwin->w_set_curswant = TRUE;
5426}
5427
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428/*
5429 * Handle commands that are operators in Visual mode.
5430 */
5431 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005432v_visop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433{
5434 static char_u trans[] = "YyDdCcxdXdAAIIrr";
5435
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005436 // Uppercase means linewise, except in block mode, then "D" deletes till
5437 // the end of the line, and "C" replaces till EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 if (isupper(cap->cmdchar))
5439 {
5440 if (VIsual_mode != Ctrl_V)
Bram Moolenaara390bb62013-03-13 19:02:41 +01005441 {
5442 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005444 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
5446 curwin->w_curswant = MAXCOL;
5447 }
5448 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
5449 nv_operator(cap);
5450}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451
5452/*
5453 * "s" and "S" commands.
5454 */
5455 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005456nv_subst(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457{
Bram Moolenaard96ff162018-02-18 22:13:29 +01005458#ifdef FEAT_TERMINAL
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005459 // When showing output of term_dumpdiff() swap the top and bottom.
Bram Moolenaard96ff162018-02-18 22:13:29 +01005460 if (term_swap_diff() == OK)
5461 return;
5462#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005463#ifdef FEAT_JOB_CHANNEL
5464 if (bt_prompt(curbuf) && !prompt_curpos_editable())
5465 {
5466 clearopbeep(cap->oap);
5467 return;
5468 }
5469#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005470 if (VIsual_active) // "vs" and "vS" are the same as "vc"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 {
5472 if (cap->cmdchar == 'S')
Bram Moolenaara390bb62013-03-13 19:02:41 +01005473 {
5474 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005476 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 cap->cmdchar = 'c';
5478 nv_operator(cap);
5479 }
5480 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 nv_optrans(cap);
5482}
5483
5484/*
5485 * Abbreviated commands.
5486 */
5487 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005488nv_abbrev(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489{
5490 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005491 cap->cmdchar = 'x'; // DEL key behaves like 'x'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005492
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005493 // in Visual mode these commands are operators
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 if (VIsual_active)
5495 v_visop(cap);
5496 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497 nv_optrans(cap);
5498}
5499
5500/*
5501 * Translate a command into another command.
5502 */
5503 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005504nv_optrans(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505{
5506 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
5507 (char_u *)"d$", (char_u *)"c$",
5508 (char_u *)"cl", (char_u *)"cc",
5509 (char_u *)"yy", (char_u *)":s\r"};
5510 static char_u *str = (char_u *)"xXDCsSY&";
5511
5512 if (!checkclearopq(cap->oap))
5513 {
Bram Moolenaar7a9bd7c2019-09-17 22:42:55 +02005514 // In Vi "2D" doesn't delete the next line. Can't translate it
5515 // either, because "2." should also not use the count.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005516 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
5517 {
5518 cap->oap->start = curwin->w_cursor;
5519 cap->oap->op_type = OP_DELETE;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00005520#ifdef FEAT_EVAL
5521 set_op_var(OP_DELETE);
5522#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005523 cap->count1 = 1;
5524 nv_dollar(cap);
5525 finish_op = TRUE;
5526 ResetRedobuff();
5527 AppendCharToRedobuff('D');
5528 }
5529 else
5530 {
5531 if (cap->count0)
5532 stuffnumReadbuff(cap->count0);
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02005533 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005534 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535 }
5536 cap->opcount = 0;
5537}
5538
5539/*
5540 * "'" and "`" commands. Also for "g'" and "g`".
5541 * cap->arg is TRUE for "'" and "g'".
5542 */
5543 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005544nv_gomark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545{
5546 pos_T *pos;
5547 int c;
5548#ifdef FEAT_FOLDING
Bram Moolenaar8754deb2013-01-17 13:24:08 +01005549 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005550 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551#endif
5552
5553 if (cap->cmdchar == 'g')
5554 c = cap->extra_char;
5555 else
5556 c = cap->nchar;
5557 pos = getmark(c, (cap->oap->op_type == OP_NOP));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005558 if (pos == (pos_T *)-1) // jumped to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 {
5560 if (cap->arg)
5561 {
5562 check_cursor_lnum();
5563 beginline(BL_WHITE | BL_FIX);
5564 }
5565 else
5566 check_cursor();
5567 }
5568 else
5569 nv_cursormark(cap, cap->arg, pos);
5570
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005571 // May need to clear the coladd that a mark includes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 if (!virtual_active())
5573 curwin->w_cursor.coladd = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02005574 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575#ifdef FEAT_FOLDING
5576 if (cap->oap->op_type == OP_NOP
Bram Moolenaar15364d72013-01-24 21:00:20 +01005577 && pos != NULL
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005578 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579 && (fdo_flags & FDO_MARK)
5580 && old_KeyTyped)
5581 foldOpenCursor();
5582#endif
5583}
5584
5585/*
Bram Moolenaar62a23252020-08-09 14:04:42 +02005586 * Handle CTRL-O, CTRL-I, "g;", "g," and "CTRL-Tab" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 */
5588 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005589nv_pcmark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590{
5591#ifdef FEAT_JUMPLIST
5592 pos_T *pos;
5593# ifdef FEAT_FOLDING
5594 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005595 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596# endif
5597
5598 if (!checkclearopq(cap->oap))
5599 {
Bram Moolenaar62a23252020-08-09 14:04:42 +02005600 if (cap->cmdchar == TAB && mod_mask == MOD_MASK_CTRL)
5601 {
5602 if (goto_tabpage_lastused() == FAIL)
5603 clearopbeep(cap->oap);
5604 return;
5605 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 if (cap->cmdchar == 'g')
5607 pos = movechangelist((int)cap->count1);
5608 else
5609 pos = movemark((int)cap->count1);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005610 if (pos == (pos_T *)-1) // jump to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 {
5612 curwin->w_set_curswant = TRUE;
5613 check_cursor();
5614 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005615 else if (pos != NULL) // can jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616 nv_cursormark(cap, FALSE, pos);
5617 else if (cap->cmdchar == 'g')
5618 {
5619 if (curbuf->b_changelistlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005620 emsg(_("E664: changelist is empty"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 else if (cap->count1 < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005622 emsg(_("E662: At start of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005624 emsg(_("E663: At end of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625 }
5626 else
5627 clearopbeep(cap->oap);
5628# ifdef FEAT_FOLDING
5629 if (cap->oap->op_type == OP_NOP
5630 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
5631 && (fdo_flags & FDO_MARK)
5632 && old_KeyTyped)
5633 foldOpenCursor();
5634# endif
5635 }
5636#else
5637 clearopbeep(cap->oap);
5638#endif
5639}
5640
5641/*
5642 * Handle '"' command.
5643 */
5644 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005645nv_regname(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646{
5647 if (checkclearop(cap->oap))
5648 return;
5649#ifdef FEAT_EVAL
5650 if (cap->nchar == '=')
5651 cap->nchar = get_expr_register();
5652#endif
5653 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
5654 {
5655 cap->oap->regname = cap->nchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005656 cap->opcount = cap->count0; // remember count before '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657#ifdef FEAT_EVAL
5658 set_reg_var(cap->oap->regname);
5659#endif
5660 }
5661 else
5662 clearopbeep(cap->oap);
5663}
5664
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665/*
5666 * Handle "v", "V" and "CTRL-V" commands.
5667 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
5668 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005669 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005670 */
5671 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005672nv_visual(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673{
Bram Moolenaardf177f62005-02-22 08:39:57 +00005674 if (cap->cmdchar == Ctrl_Q)
5675 cap->cmdchar = Ctrl_V;
5676
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005677 // 'v', 'V' and CTRL-V can be used while an operator is pending to make it
5678 // characterwise, linewise, or blockwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679 if (cap->oap->op_type != OP_NOP)
5680 {
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01005681 motion_force = cap->oap->motion_force = cap->cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005682 finish_op = FALSE; // operator doesn't finish now but later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 return;
5684 }
5685
5686 VIsual_select = cap->arg;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005687 if (VIsual_active) // change Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005689 if (VIsual_mode == cap->cmdchar) // stop visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005691 else // toggle char/block mode
5692 { // or char/line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 VIsual_mode = cap->cmdchar;
5694 showmode();
=?UTF-8?q?Magnus=20Gro=C3=9F?=f1e88762021-09-12 13:39:55 +02005695 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005696 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005697 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005699 else // start Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700 {
5701 check_visual_highlight();
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005702 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005704 // use previously selected part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 VIsual = curwin->w_cursor;
5706
5707 VIsual_active = TRUE;
5708 VIsual_reselect = TRUE;
5709 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005710 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 setmouse();
Bram Moolenaar09df3122006-01-23 22:23:09 +00005713 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005714 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715 /*
5716 * For V and ^V, we multiply the number of lines even if there
5717 * was only one -- webb
5718 */
5719 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
5720 {
5721 curwin->w_cursor.lnum +=
5722 resel_VIsual_line_count * cap->count0 - 1;
Bram Moolenaarb07626d2021-10-11 15:40:43 +01005723 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 }
5725 VIsual_mode = resel_VIsual_mode;
5726 if (VIsual_mode == 'v')
5727 {
5728 if (resel_VIsual_line_count <= 1)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005729 {
5730 validate_virtcol();
5731 curwin->w_curswant = curwin->w_virtcol
5732 + resel_VIsual_vcol * cap->count0 - 1;
5733 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005735 curwin->w_curswant = resel_VIsual_vcol;
5736 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005737 }
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005738 if (resel_VIsual_vcol == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 {
5740 curwin->w_curswant = MAXCOL;
5741 coladvance((colnr_T)MAXCOL);
5742 }
5743 else if (VIsual_mode == Ctrl_V)
5744 {
5745 validate_virtcol();
5746 curwin->w_curswant = curwin->w_virtcol
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005747 + resel_VIsual_vcol * cap->count0 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 coladvance(curwin->w_curswant);
5749 }
5750 else
5751 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005752 redraw_curbuf_later(INVERTED); // show the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753 }
5754 else
5755 {
5756 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005757 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 may_start_select('c');
5759 n_start_visual_mode(cap->cmdchar);
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005760 if (VIsual_mode != 'V' && *p_sel == 'e')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005761 ++cap->count1; // include one more char
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005762 if (cap->count0 > 0 && --cap->count1 > 0)
5763 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005764 // With a count select that many characters or lines.
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005765 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
5766 nv_right(cap);
5767 else if (VIsual_mode == 'V')
5768 nv_down(cap);
5769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770 }
5771 }
5772}
5773
5774/*
5775 * Start selection for Shift-movement keys.
5776 */
5777 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005778start_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005780 // if 'selectmode' contains "key", start Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 may_start_select('k');
5782 n_start_visual_mode('v');
5783}
5784
5785/*
5786 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
5787 */
5788 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005789may_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790{
5791 VIsual_select = (stuff_empty() && typebuf_typed()
5792 && (vim_strchr(p_slm, c) != NULL));
5793}
5794
5795/*
5796 * Start Visual mode "c".
5797 * Should set VIsual_select before calling this.
5798 */
5799 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005800n_start_visual_mode(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801{
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005802#ifdef FEAT_CONCEAL
Bram Moolenaarea042672021-06-29 20:22:32 +02005803 int cursor_line_was_concealed = curwin->w_p_cole > 0
5804 && conceal_cursor_line(curwin);
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005805#endif
5806
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807 VIsual_mode = c;
5808 VIsual_active = TRUE;
5809 VIsual_reselect = TRUE;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005810
5811 // Corner case: the 0 position in a tab may change when going into
Bram Moolenaar4b96df52020-01-26 22:00:26 +01005812 // virtualedit. Recalculate curwin->w_cursor to avoid bad highlighting.
Gary Johnson53ba05b2021-07-26 22:19:10 +02005813 if (c == Ctrl_V && (get_ve_flags() & VE_BLOCK) && gchar_cursor() == TAB)
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005814 {
5815 validate_virtcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816 coladvance(curwin->w_virtcol);
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005817 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 VIsual = curwin->w_cursor;
5819
5820#ifdef FEAT_FOLDING
5821 foldAdjustVisual();
5822#endif
5823
Bram Moolenaara0620062021-11-17 16:52:40 +00005824 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825 setmouse();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005826#ifdef FEAT_CONCEAL
Bram Moolenaarea042672021-06-29 20:22:32 +02005827 // Check if redraw is needed after changing the state.
5828 conceal_check_cursor_line(cursor_line_was_concealed);
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005829#endif
5830
Bram Moolenaar09df3122006-01-23 22:23:09 +00005831 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005832 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005834 // Make sure the clipboard gets updated. Needed because start and
5835 // end may still be the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836 clip_star.vmode = NUL;
5837#endif
5838
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005839 // Only need to redraw this line, unless still need to redraw an old
5840 // Visual area (when 'lazyredraw' is set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 if (curwin->w_redr_type < INVERTED)
5842 {
5843 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
5844 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
5845 }
5846}
5847
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848
5849/*
5850 * CTRL-W: Window commands
5851 */
5852 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005853nv_window(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854{
Bram Moolenaar938783d2017-07-16 20:13:26 +02005855 if (cap->nchar == ':')
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005856 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005857 // "CTRL-W :" is the same as typing ":"; useful in a terminal window
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005858 cap->cmdchar = ':';
5859 cap->nchar = NUL;
Bram Moolenaar938783d2017-07-16 20:13:26 +02005860 nv_colon(cap);
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005861 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02005862 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005863 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864}
5865
5866/*
5867 * CTRL-Z: Suspend
5868 */
5869 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005870nv_suspend(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871{
5872 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873 if (VIsual_active)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005874 end_visual_mode(); // stop Visual mode
Bram Moolenaar100118c2020-12-11 19:30:34 +01005875 do_cmdline_cmd((char_u *)"stop");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876}
5877
5878/*
5879 * Commands starting with "g".
5880 */
5881 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005882nv_g_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883{
5884 oparg_T *oap = cap->oap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885 pos_T tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 int i;
5887 int flag = FALSE;
5888
5889 switch (cap->nchar)
5890 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005891 case Ctrl_A:
5892 case Ctrl_X:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893#ifdef MEM_PROFILE
5894 /*
5895 * "g^A": dump log of used memory.
5896 */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005897 if (!VIsual_active && cap->nchar == Ctrl_A)
5898 vim_mem_profile_dump();
5899 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005901 /*
5902 * "g^A/g^X": sequentially increment visually selected region
5903 */
5904 if (VIsual_active)
5905 {
5906 cap->arg = TRUE;
5907 cap->cmdchar = cap->nchar;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005908 cap->nchar = NUL;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005909 nv_addsub(cap);
5910 }
5911 else
5912 clearopbeep(oap);
5913 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915 /*
5916 * "gR": Enter virtual replace mode.
5917 */
5918 case 'R':
5919 cap->arg = TRUE;
5920 nv_Replace(cap);
5921 break;
5922
5923 case 'r':
5924 nv_vreplace(cap);
5925 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005926
5927 case '&':
5928 do_cmdline_cmd((char_u *)"%s//~/&");
5929 break;
5930
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931 /*
5932 * "gv": Reselect the previous Visual area. If Visual already active,
5933 * exchange previous and current Visual area.
5934 */
5935 case 'v':
5936 if (checkclearop(oap))
5937 break;
5938
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005939 if ( curbuf->b_visual.vi_start.lnum == 0
5940 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
5941 || curbuf->b_visual.vi_end.lnum == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 beep_flush();
5943 else
5944 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005945 // set w_cursor to the start of the Visual area, tpos to the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946 if (VIsual_active)
5947 {
5948 i = VIsual_mode;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005949 VIsual_mode = curbuf->b_visual.vi_mode;
5950 curbuf->b_visual.vi_mode = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005951# ifdef FEAT_EVAL
5952 curbuf->b_visual_mode_eval = i;
5953# endif
5954 i = curwin->w_curswant;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005955 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5956 curbuf->b_visual.vi_curswant = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005958 tpos = curbuf->b_visual.vi_end;
5959 curbuf->b_visual.vi_end = curwin->w_cursor;
5960 curwin->w_cursor = curbuf->b_visual.vi_start;
5961 curbuf->b_visual.vi_start = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 }
5963 else
5964 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005965 VIsual_mode = curbuf->b_visual.vi_mode;
5966 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5967 tpos = curbuf->b_visual.vi_end;
5968 curwin->w_cursor = curbuf->b_visual.vi_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005969 }
5970
5971 VIsual_active = TRUE;
5972 VIsual_reselect = TRUE;
5973
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005974 // Set Visual to the start and w_cursor to the end of the Visual
5975 // area. Make sure they are on an existing character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 check_cursor();
5977 VIsual = curwin->w_cursor;
5978 curwin->w_cursor = tpos;
5979 check_cursor();
5980 update_topline();
5981 /*
5982 * When called from normal "g" command: start Select mode when
5983 * 'selectmode' contains "cmd". When called for K_SELECT, always
5984 * start Select mode.
5985 */
5986 if (cap->arg)
5987 VIsual_select = TRUE;
5988 else
5989 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005992 // Make sure the clipboard gets updated. Needed because start and
5993 // end are still the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994 clip_star.vmode = NUL;
5995#endif
5996 redraw_curbuf_later(INVERTED);
5997 showmode();
5998 }
5999 break;
6000 /*
6001 * "gV": Don't reselect the previous Visual area after a Select mode
6002 * mapping of menu.
6003 */
6004 case 'V':
6005 VIsual_reselect = FALSE;
6006 break;
6007
6008 /*
6009 * "gh": start Select mode.
6010 * "gH": start Select line mode.
6011 * "g^H": start Select block mode.
6012 */
6013 case K_BS:
6014 cap->nchar = Ctrl_H;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006015 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006016 case 'h':
6017 case 'H':
6018 case Ctrl_H:
6019# ifdef EBCDIC
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006020 // EBCDIC: 'v'-'h' != '^v'-'^h'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021 if (cap->nchar == Ctrl_H)
6022 cap->cmdchar = Ctrl_V;
6023 else
6024# endif
6025 cap->cmdchar = cap->nchar + ('v' - 'h');
6026 cap->arg = TRUE;
6027 nv_visual(cap);
6028 break;
Bram Moolenaar641e2862012-07-25 15:06:34 +02006029
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006030 // "gn", "gN" visually select next/previous search match
6031 // "gn" selects next match
6032 // "gN" selects previous match
Bram Moolenaar641e2862012-07-25 15:06:34 +02006033 case 'N':
6034 case 'n':
6035 if (!current_search(cap->count1, cap->nchar == 'n'))
Bram Moolenaarf00dc262012-10-21 03:54:33 +02006036 clearopbeep(oap);
Bram Moolenaar641e2862012-07-25 15:06:34 +02006037 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038
6039 /*
6040 * "gj" and "gk" two new funny movement keys -- up and down
6041 * movement based on *screen* line rather than *file* line.
6042 */
6043 case 'j':
6044 case K_DOWN:
Bram Moolenaare71996b2021-01-21 17:03:07 +01006045 // with 'nowrap' it works just like the normal "j" command.
6046 if (!curwin->w_p_wrap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006047 {
6048 oap->motion_type = MLINE;
6049 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
6050 }
6051 else
6052 i = nv_screengo(oap, FORWARD, cap->count1);
6053 if (i == FAIL)
6054 clearopbeep(oap);
6055 break;
6056
6057 case 'k':
6058 case K_UP:
Bram Moolenaare71996b2021-01-21 17:03:07 +01006059 // with 'nowrap' it works just like the normal "k" command.
6060 if (!curwin->w_p_wrap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 {
6062 oap->motion_type = MLINE;
6063 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
6064 }
6065 else
6066 i = nv_screengo(oap, BACKWARD, cap->count1);
6067 if (i == FAIL)
6068 clearopbeep(oap);
6069 break;
6070
6071 /*
6072 * "gJ": join two lines without inserting a space.
6073 */
6074 case 'J':
6075 nv_join(cap);
6076 break;
6077
6078 /*
6079 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
6080 * "gm": middle of "g0" and "g$".
6081 */
6082 case '^':
6083 flag = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006084 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085
6086 case '0':
6087 case 'm':
6088 case K_HOME:
6089 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 oap->motion_type = MCHAR;
6091 oap->inclusive = FALSE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006092 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006093 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006094 int width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006095 int width2 = width1 + curwin_col_off2();
6096
6097 validate_virtcol();
6098 i = 0;
6099 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
6100 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
6101 }
6102 else
6103 i = curwin->w_leftcol;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006104 // Go to the middle of the screen line. When 'number' or
6105 // 'relativenumber' is on and lines are wrapping the middle can be more
6106 // to the left.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107 if (cap->nchar == 'm')
Bram Moolenaar02631462017-09-22 15:20:32 +02006108 i += (curwin->w_width - curwin_col_off()
Bram Moolenaar071d4272004-06-13 20:20:40 +00006109 + ((curwin->w_p_wrap && i > 0)
6110 ? curwin_col_off2() : 0)) / 2;
6111 coladvance((colnr_T)i);
6112 if (flag)
6113 {
6114 do
6115 i = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01006116 while (VIM_ISWHITE(i) && oneright() == OK);
Bram Moolenaarf9514162018-11-22 03:08:29 +01006117 curwin->w_valid &= ~VALID_WCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118 }
6119 curwin->w_set_curswant = TRUE;
6120 break;
6121
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006122 case 'M':
6123 {
6124 char_u *ptr = ml_get_curline();
6125
6126 oap->motion_type = MCHAR;
6127 oap->inclusive = FALSE;
6128 if (has_mbyte)
Bram Moolenaar69bf6342019-10-29 04:16:57 +01006129 i = mb_string2cells(ptr, (int)STRLEN(ptr));
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006130 else
6131 i = (int)STRLEN(ptr);
6132 if (cap->count0 > 0 && cap->count0 <= 100)
6133 coladvance((colnr_T)(i * cap->count0 / 100));
6134 else
6135 coladvance((colnr_T)(i / 2));
6136 curwin->w_set_curswant = TRUE;
6137 }
6138 break;
6139
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140 case '_':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006141 // "g_": to the last non-blank character in the line or <count> lines
6142 // downward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143 cap->oap->motion_type = MCHAR;
6144 cap->oap->inclusive = TRUE;
6145 curwin->w_curswant = MAXCOL;
6146 if (cursor_down((long)(cap->count1 - 1),
6147 cap->oap->op_type == OP_NOP) == FAIL)
6148 clearopbeep(cap->oap);
6149 else
6150 {
6151 char_u *ptr = ml_get_curline();
6152
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006153 // In Visual mode we may end up after the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
6155 --curwin->w_cursor.col;
6156
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006157 // Decrease the cursor column until it's on a non-blank.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006158 while (curwin->w_cursor.col > 0
Bram Moolenaar1c465442017-03-12 20:10:05 +01006159 && VIM_ISWHITE(ptr[curwin->w_cursor.col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 --curwin->w_cursor.col;
6161 curwin->w_set_curswant = TRUE;
Bram Moolenaar5890b2c2010-01-12 15:42:37 +01006162 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163 }
6164 break;
6165
6166 case '$':
6167 case K_END:
6168 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169 {
6170 int col_off = curwin_col_off();
6171
6172 oap->motion_type = MCHAR;
6173 oap->inclusive = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006174 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006176 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177 if (cap->count1 == 1)
6178 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006179 int width1 = curwin->w_width - col_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180 int width2 = width1 + curwin_col_off2();
6181
6182 validate_virtcol();
6183 i = width1 - 1;
6184 if (curwin->w_virtcol >= (colnr_T)width1)
6185 i += ((curwin->w_virtcol - width1) / width2 + 1)
6186 * width2;
6187 coladvance((colnr_T)i);
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006188
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006189 // Make sure we stick in this column.
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006190 validate_virtcol();
6191 curwin->w_curswant = curwin->w_virtcol;
6192 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006193 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
6194 {
6195 /*
6196 * Check for landing on a character that got split at
6197 * the end of the line. We do not want to advance to
6198 * the next screen line.
6199 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200 if (curwin->w_virtcol > (colnr_T)i)
6201 --curwin->w_cursor.col;
6202 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203 }
6204 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
6205 clearopbeep(oap);
6206 }
6207 else
6208 {
Bram Moolenaard5c82342019-07-27 18:44:57 +02006209 if (cap->count1 > 1)
6210 // if it fails, let the cursor still move to the last char
Bram Moolenaar9c272a92019-08-16 21:54:27 +02006211 (void)cursor_down(cap->count1 - 1, FALSE);
Bram Moolenaard5c82342019-07-27 18:44:57 +02006212
Bram Moolenaar02631462017-09-22 15:20:32 +02006213 i = curwin->w_leftcol + curwin->w_width - col_off - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006215
Bram Moolenaar74ede802021-05-29 19:18:01 +02006216 // if the character doesn't fit move one back
6217 if (curwin->w_cursor.col > 0
6218 && (*mb_ptr2cells)(ml_get_cursor()) > 1)
6219 {
6220 colnr_T vcol;
6221
6222 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &vcol);
6223 if (vcol >= curwin->w_leftcol + curwin->w_width - col_off)
6224 --curwin->w_cursor.col;
6225 }
6226
Bram Moolenaard5c82342019-07-27 18:44:57 +02006227 // Make sure we stick in this column.
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006228 validate_virtcol();
6229 curwin->w_curswant = curwin->w_virtcol;
6230 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231 }
6232 }
6233 break;
6234
6235 /*
6236 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
6237 */
6238 case '*':
6239 case '#':
6240#if POUND != '#'
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006241 case POUND: // pound sign (sometimes equal to '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006242#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006243 case Ctrl_RSB: // :tag or :tselect for current identifier
6244 case ']': // :tselect for current identifier
Bram Moolenaar071d4272004-06-13 20:20:40 +00006245 nv_ident(cap);
6246 break;
6247
6248 /*
6249 * ge and gE: go back to end of word
6250 */
6251 case 'e':
6252 case 'E':
6253 oap->motion_type = MCHAR;
6254 curwin->w_set_curswant = TRUE;
6255 oap->inclusive = TRUE;
6256 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
6257 clearopbeep(oap);
6258 break;
6259
6260 /*
6261 * "g CTRL-G": display info about cursor position
6262 */
6263 case Ctrl_G:
Bram Moolenaared767a22016-01-03 22:49:16 +01006264 cursor_pos_info(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006265 break;
6266
6267 /*
6268 * "gi": start Insert at the last position.
6269 */
6270 case 'i':
6271 if (curbuf->b_last_insert.lnum != 0)
6272 {
6273 curwin->w_cursor = curbuf->b_last_insert;
6274 check_cursor_lnum();
6275 i = (int)STRLEN(ml_get_curline());
6276 if (curwin->w_cursor.col > (colnr_T)i)
6277 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278 if (virtual_active())
6279 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 curwin->w_cursor.col = i;
6281 }
6282 }
6283 cap->cmdchar = 'i';
6284 nv_edit(cap);
6285 break;
6286
6287 /*
6288 * "gI": Start insert in column 1.
6289 */
6290 case 'I':
6291 beginline(0);
6292 if (!checkclearopq(oap))
6293 invoke_edit(cap, FALSE, 'g', FALSE);
6294 break;
6295
6296#ifdef FEAT_SEARCHPATH
6297 /*
6298 * "gf": goto file, edit file under cursor
6299 * "]f" and "[f": can also be used.
6300 */
6301 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006302 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 nv_gotofile(cap);
6304 break;
6305#endif
6306
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006307 // "g'm" and "g`m": jump to mark without setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308 case '\'':
6309 cap->arg = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006310 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311 case '`':
6312 nv_gomark(cap);
6313 break;
6314
6315 /*
6316 * "gs": Goto sleep.
6317 */
6318 case 's':
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01006319 do_sleep(cap->count1 * 1000L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006320 break;
6321
6322 /*
6323 * "ga": Display the ascii value of the character under the
6324 * cursor. It is displayed in decimal, hex, and octal. -- webb
6325 */
6326 case 'a':
6327 do_ascii(NULL);
6328 break;
6329
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 /*
6331 * "g8": Display the bytes used for the UTF-8 character under the
6332 * cursor. It is displayed in hex.
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006333 * "8g8" finds illegal byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334 */
6335 case '8':
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006336 if (cap->count0 == 8)
6337 utf_find_illegal();
6338 else
6339 show_utf8();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006342 // "g<": show scrollback text
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00006343 case '<':
6344 show_sb_text();
6345 break;
6346
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347 /*
6348 * "gg": Goto the first line in file. With a count it goes to
6349 * that line number like for "G". -- webb
6350 */
6351 case 'g':
6352 cap->arg = FALSE;
6353 nv_goto(cap);
6354 break;
6355
6356 /*
6357 * Two-character operators:
6358 * "gq" Format text
6359 * "gw" Format text and keep cursor position
6360 * "g~" Toggle the case of the text.
6361 * "gu" Change text to lower case.
6362 * "gU" Change text to upper case.
6363 * "g?" rot13 encoding
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006364 * "g@" call 'operatorfunc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365 */
6366 case 'q':
6367 case 'w':
6368 oap->cursor_start = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006369 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370 case '~':
6371 case 'u':
6372 case 'U':
6373 case '?':
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006374 case '@':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375 nv_operator(cap);
6376 break;
6377
6378 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00006379 * "gd": Find first occurrence of pattern under the cursor in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00006380 * current function
6381 * "gD": idem, but in the current file.
6382 */
6383 case 'd':
6384 case 'D':
Bram Moolenaarf75a9632005-09-13 21:20:47 +00006385 nv_gd(oap, cap->nchar, (int)cap->count0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006386 break;
6387
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388 /*
6389 * g<*Mouse> : <C-*mouse>
6390 */
6391 case K_MIDDLEMOUSE:
6392 case K_MIDDLEDRAG:
6393 case K_MIDDLERELEASE:
6394 case K_LEFTMOUSE:
6395 case K_LEFTDRAG:
6396 case K_LEFTRELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01006397 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006398 case K_RIGHTMOUSE:
6399 case K_RIGHTDRAG:
6400 case K_RIGHTRELEASE:
6401 case K_X1MOUSE:
6402 case K_X1DRAG:
6403 case K_X1RELEASE:
6404 case K_X2MOUSE:
6405 case K_X2DRAG:
6406 case K_X2RELEASE:
6407 mod_mask = MOD_MASK_CTRL;
6408 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
6409 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410
6411 case K_IGNORE:
6412 break;
6413
6414 /*
6415 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
6416 */
6417 case 'p':
6418 case 'P':
6419 nv_put(cap);
6420 break;
6421
6422#ifdef FEAT_BYTEOFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006423 // "go": goto byte count from start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424 case 'o':
6425 goto_byte(cap->count0);
6426 break;
6427#endif
6428
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006429 // "gQ": improved Ex mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430 case 'Q':
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006431 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432 {
6433 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006434 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006435 break;
6436 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006437
Bram Moolenaar071d4272004-06-13 20:20:40 +00006438 if (!checkclearopq(oap))
6439 do_exmode(TRUE);
6440 break;
6441
6442#ifdef FEAT_JUMPLIST
6443 case ',':
6444 nv_pcmark(cap);
6445 break;
6446
6447 case ';':
6448 cap->count1 = -cap->count1;
6449 nv_pcmark(cap);
6450 break;
6451#endif
6452
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006453 case 't':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006454 if (!checkclearop(oap))
6455 goto_tabpage((int)cap->count0);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006456 break;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006457 case 'T':
Bram Moolenaar89f940f2012-06-29 13:56:06 +02006458 if (!checkclearop(oap))
6459 goto_tabpage(-(int)cap->count1);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006460 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006461
Bram Moolenaar62a23252020-08-09 14:04:42 +02006462 case TAB:
6463 if (!checkclearop(oap) && goto_tabpage_lastused() == FAIL)
6464 clearopbeep(oap);
6465 break;
6466
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006467 case '+':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006468 case '-': // "g+" and "g-": undo or redo along the timeline
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006469 if (!checkclearopq(oap))
Bram Moolenaard3667a22006-03-16 21:35:52 +00006470 undo_time(cap->nchar == '-' ? -cap->count1 : cap->count1,
Bram Moolenaar730cde92010-06-27 05:18:54 +02006471 FALSE, FALSE, FALSE);
Bram Moolenaar35a2e192006-03-13 22:07:11 +00006472 break;
6473
Bram Moolenaar071d4272004-06-13 20:20:40 +00006474 default:
6475 clearopbeep(oap);
6476 break;
6477 }
6478}
6479
6480/*
6481 * Handle "o" and "O" commands.
6482 */
6483 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006484n_opencmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006485{
Bram Moolenaar860cae12010-06-05 23:22:07 +02006486#ifdef FEAT_CONCEAL
6487 linenr_T oldline = curwin->w_cursor.lnum;
6488#endif
6489
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490 if (!checkclearopq(cap->oap))
6491 {
6492#ifdef FEAT_FOLDING
6493 if (cap->cmdchar == 'O')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006494 // Open above the first line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006495 (void)hasFolding(curwin->w_cursor.lnum,
6496 &curwin->w_cursor.lnum, NULL);
6497 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006498 // Open below the last line of a folded sequence of lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499 (void)hasFolding(curwin->w_cursor.lnum,
6500 NULL, &curwin->w_cursor.lnum);
6501#endif
6502 if (u_save((linenr_T)(curwin->w_cursor.lnum -
6503 (cap->cmdchar == 'O' ? 1 : 0)),
6504 (linenr_T)(curwin->w_cursor.lnum +
6505 (cap->cmdchar == 'o' ? 1 : 0))
6506 ) == OK
6507 && open_line(cap->cmdchar == 'O' ? BACKWARD : FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02006508 has_format_option(FO_OPEN_COMS) ? OPENLINE_DO_COM : 0,
6509 0) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006510 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02006511#ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02006512 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01006513 redrawWinline(curwin, oldline);
Bram Moolenaar860cae12010-06-05 23:22:07 +02006514#endif
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006515#ifdef FEAT_SYN_HL
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006516 if (curwin->w_p_cul)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006517 // force redraw of cursorline
Bram Moolenaard0d0fe02015-06-09 19:23:46 +02006518 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaard710e0d2015-06-10 12:16:47 +02006519#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006520 // When '#' is in 'cpoptions' ignore the count.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006521 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
6522 cap->count1 = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523 invoke_edit(cap, FALSE, cap->cmdchar, TRUE);
6524 }
6525 }
6526}
6527
6528/*
6529 * "." command: redo last change.
6530 */
6531 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006532nv_dot(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006533{
6534 if (!checkclearopq(cap->oap))
6535 {
6536 /*
6537 * If "restart_edit" is TRUE, the last but one command is repeated
6538 * instead of the last command (inserting text). This is used for
6539 * CTRL-O <.> in insert mode.
6540 */
6541 if (start_redo(cap->count0, restart_edit != 0 && !arrow_used) == FAIL)
6542 clearopbeep(cap->oap);
6543 }
6544}
6545
6546/*
6547 * CTRL-R: undo undo
6548 */
6549 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006550nv_redo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551{
6552 if (!checkclearopq(cap->oap))
6553 {
6554 u_redo((int)cap->count1);
6555 curwin->w_set_curswant = TRUE;
6556 }
6557}
6558
6559/*
6560 * Handle "U" command.
6561 */
6562 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006563nv_Undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006565 // In Visual mode and typing "gUU" triggers an operator
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006566 if (cap->oap->op_type == OP_UPPER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006568 // translate "gUU" to "gUgU"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006569 cap->cmdchar = 'g';
6570 cap->nchar = 'U';
6571 nv_operator(cap);
6572 }
6573 else if (!checkclearopq(cap->oap))
6574 {
6575 u_undoline();
6576 curwin->w_set_curswant = TRUE;
6577 }
6578}
6579
6580/*
6581 * '~' command: If tilde is not an operator and Visual is off: swap case of a
6582 * single character.
6583 */
6584 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006585nv_tilde(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01006587 if (!p_to && !VIsual_active && cap->oap->op_type != OP_TILDE)
Bram Moolenaarf2732452018-06-03 14:47:35 +02006588 {
6589#ifdef FEAT_JOB_CHANNEL
6590 if (bt_prompt(curbuf) && !prompt_curpos_editable())
6591 {
6592 clearopbeep(cap->oap);
6593 return;
6594 }
6595#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 n_swapchar(cap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006597 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598 else
6599 nv_operator(cap);
6600}
6601
6602/*
6603 * Handle an operator command.
6604 * The actual work is done by do_pending_operator().
6605 */
6606 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006607nv_operator(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608{
6609 int op_type;
6610
6611 op_type = get_op_type(cap->cmdchar, cap->nchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02006612#ifdef FEAT_JOB_CHANNEL
6613 if (bt_prompt(curbuf) && op_is_change(op_type) && !prompt_curpos_editable())
6614 {
6615 clearopbeep(cap->oap);
6616 return;
6617 }
6618#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006620 if (op_type == cap->oap->op_type) // double operator works on lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621 nv_lineop(cap);
6622 else if (!checkclearop(cap->oap))
6623 {
6624 cap->oap->start = curwin->w_cursor;
6625 cap->oap->op_type = op_type;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006626#ifdef FEAT_EVAL
6627 set_op_var(op_type);
6628#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006629 }
6630}
6631
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006632#ifdef FEAT_EVAL
6633/*
6634 * Set v:operator to the characters for "optype".
6635 */
6636 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006637set_op_var(int optype)
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00006638{
6639 char_u opchars[3];
6640
6641 if (optype == OP_NOP)
6642 set_vim_var_string(VV_OP, NULL, 0);
6643 else
6644 {
6645 opchars[0] = get_op_char(optype);
6646 opchars[1] = get_extra_op_char(optype);
6647 opchars[2] = NUL;
6648 set_vim_var_string(VV_OP, opchars, -1);
6649 }
6650}
6651#endif
6652
Bram Moolenaar071d4272004-06-13 20:20:40 +00006653/*
6654 * Handle linewise operator "dd", "yy", etc.
6655 *
6656 * "_" is is a strange motion command that helps make operators more logical.
6657 * It is actually implemented, but not documented in the real Vi. This motion
6658 * command actually refers to "the current line". Commands like "dd" and "yy"
6659 * are really an alternate form of "d_" and "y_". It does accept a count, so
6660 * "d3_" works to delete 3 lines.
6661 */
6662 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006663nv_lineop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006664{
6665 cap->oap->motion_type = MLINE;
6666 if (cursor_down(cap->count1 - 1L, cap->oap->op_type == OP_NOP) == FAIL)
6667 clearopbeep(cap->oap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006668 else if ( (cap->oap->op_type == OP_DELETE // only with linewise motions
Bram Moolenaar83dadaf2012-12-12 17:33:32 +01006669 && cap->oap->motion_force != 'v'
6670 && cap->oap->motion_force != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006671 || cap->oap->op_type == OP_LSHIFT
6672 || cap->oap->op_type == OP_RSHIFT)
6673 beginline(BL_SOL | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006674 else if (cap->oap->op_type != OP_YANK) // 'Y' does not move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00006675 beginline(BL_WHITE | BL_FIX);
6676}
6677
6678/*
6679 * <Home> command.
6680 */
6681 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006682nv_home(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006683{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006684 // CTRL-HOME is like "gg"
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00006685 if (mod_mask & MOD_MASK_CTRL)
6686 nv_goto(cap);
6687 else
6688 {
6689 cap->count0 = 1;
6690 nv_pipe(cap);
6691 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006692 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6693 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006694}
6695
6696/*
6697 * "|" command.
6698 */
6699 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006700nv_pipe(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006701{
6702 cap->oap->motion_type = MCHAR;
6703 cap->oap->inclusive = FALSE;
6704 beginline(0);
6705 if (cap->count0 > 0)
6706 {
6707 coladvance((colnr_T)(cap->count0 - 1));
6708 curwin->w_curswant = (colnr_T)(cap->count0 - 1);
6709 }
6710 else
6711 curwin->w_curswant = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006712 // keep curswant at the column where we wanted to go, not where
6713 // we ended; differs if line is too short
Bram Moolenaar071d4272004-06-13 20:20:40 +00006714 curwin->w_set_curswant = FALSE;
6715}
6716
6717/*
6718 * Handle back-word command "b" and "B".
6719 * cap->arg is 1 for "B"
6720 */
6721 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006722nv_bck_word(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006723{
6724 cap->oap->motion_type = MCHAR;
6725 cap->oap->inclusive = FALSE;
6726 curwin->w_set_curswant = TRUE;
6727 if (bck_word(cap->count1, cap->arg, FALSE) == FAIL)
6728 clearopbeep(cap->oap);
6729#ifdef FEAT_FOLDING
6730 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6731 foldOpenCursor();
6732#endif
6733}
6734
6735/*
6736 * Handle word motion commands "e", "E", "w" and "W".
6737 * cap->arg is TRUE for "E" and "W".
6738 */
6739 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006740nv_wordcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741{
6742 int n;
6743 int word_end;
6744 int flag = FALSE;
Bram Moolenaardfefb982008-04-01 10:06:39 +00006745 pos_T startpos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746
6747 /*
6748 * Set inclusive for the "E" and "e" command.
6749 */
6750 if (cap->cmdchar == 'e' || cap->cmdchar == 'E')
6751 word_end = TRUE;
6752 else
6753 word_end = FALSE;
6754 cap->oap->inclusive = word_end;
6755
6756 /*
6757 * "cw" and "cW" are a special case.
6758 */
6759 if (!word_end && cap->oap->op_type == OP_CHANGE)
6760 {
6761 n = gchar_cursor();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006762 if (n != NUL) // not an empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006763 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01006764 if (VIM_ISWHITE(n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006765 {
6766 /*
6767 * Reproduce a funny Vi behaviour: "cw" on a blank only
6768 * changes one character, not all blanks until the start of
6769 * the next word. Only do this when the 'w' flag is included
6770 * in 'cpoptions'.
6771 */
6772 if (cap->count1 == 1 && vim_strchr(p_cpo, CPO_CW) != NULL)
6773 {
6774 cap->oap->inclusive = TRUE;
6775 cap->oap->motion_type = MCHAR;
6776 return;
6777 }
6778 }
6779 else
6780 {
6781 /*
6782 * This is a little strange. To match what the real Vi does,
6783 * we effectively map 'cw' to 'ce', and 'cW' to 'cE', provided
6784 * that we are not on a space or a TAB. This seems impolite
6785 * at first, but it's really more what we mean when we say
6786 * 'cw'.
6787 * Another strangeness: When standing on the end of a word
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02006788 * "ce" will change until the end of the next word, but "cw"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006789 * will change only one character! This is done by setting
6790 * flag.
6791 */
6792 cap->oap->inclusive = TRUE;
6793 word_end = TRUE;
6794 flag = TRUE;
6795 }
6796 }
6797 }
6798
6799 cap->oap->motion_type = MCHAR;
6800 curwin->w_set_curswant = TRUE;
6801 if (word_end)
6802 n = end_word(cap->count1, cap->arg, flag, FALSE);
6803 else
6804 n = fwd_word(cap->count1, cap->arg, cap->oap->op_type != OP_NOP);
6805
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006806 // Don't leave the cursor on the NUL past the end of line. Unless we
6807 // didn't move it forward.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006808 if (LT_POS(startpos, curwin->w_cursor))
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006809 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006810
6811 if (n == FAIL && cap->oap->op_type == OP_NOP)
6812 clearopbeep(cap->oap);
6813 else
6814 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006816#ifdef FEAT_FOLDING
6817 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6818 foldOpenCursor();
6819#endif
6820 }
6821}
6822
6823/*
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006824 * Used after a movement command: If the cursor ends up on the NUL after the
6825 * end of the line, may move it back to the last character and make the motion
6826 * inclusive.
6827 */
6828 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006829adjust_cursor(oparg_T *oap)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006830{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006831 // The cursor cannot remain on the NUL when:
6832 // - the column is > 0
6833 // - not in Visual mode or 'selection' is "o"
6834 // - 'virtualedit' is not "all" and not "onemore".
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006835 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006836 && (!VIsual_active || *p_sel == 'o')
Gary Johnson53ba05b2021-07-26 22:19:10 +02006837 && !virtual_active() && (get_ve_flags() & VE_ONEMORE) == 0)
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006838 {
6839 --curwin->w_cursor.col;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006840 // prevent cursor from moving on the trail byte
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006841 if (has_mbyte)
6842 mb_adjust_cursor();
Bram Moolenaar1f14d572008-01-12 16:12:10 +00006843 oap->inclusive = TRUE;
6844 }
6845}
6846
6847/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848 * "0" and "^" commands.
6849 * cap->arg is the argument for beginline().
6850 */
6851 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006852nv_beginline(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006853{
6854 cap->oap->motion_type = MCHAR;
6855 cap->oap->inclusive = FALSE;
6856 beginline(cap->arg);
6857#ifdef FEAT_FOLDING
6858 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
6859 foldOpenCursor();
6860#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006861 ins_at_eol = FALSE; // Don't move cursor past eol (only necessary in a
6862 // one-character line).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863}
6864
Bram Moolenaar071d4272004-06-13 20:20:40 +00006865/*
6866 * In exclusive Visual mode, may include the last character.
6867 */
6868 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006869adjust_for_sel(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006870{
6871 if (VIsual_active && cap->oap->inclusive && *p_sel == 'e'
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006872 && gchar_cursor() != NUL && LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006874 if (has_mbyte)
6875 inc_cursor();
6876 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006877 ++curwin->w_cursor.col;
6878 cap->oap->inclusive = FALSE;
6879 }
6880}
6881
6882/*
6883 * Exclude last character at end of Visual area for 'selection' == "exclusive".
6884 * Should check VIsual_mode before calling this.
6885 * Returns TRUE when backed up to the previous line.
6886 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02006887 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006888unadjust_for_sel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006889{
6890 pos_T *pp;
6891
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006892 if (*p_sel == 'e' && !EQUAL_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006893 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01006894 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006895 pp = &curwin->w_cursor;
6896 else
6897 pp = &VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006898 if (pp->coladd > 0)
6899 --pp->coladd;
6900 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006901 if (pp->col > 0)
6902 {
6903 --pp->col;
Bram Moolenaar03a807a2011-07-07 15:08:58 +02006904 mb_adjustpos(curbuf, pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 }
6906 else if (pp->lnum > 1)
6907 {
6908 --pp->lnum;
6909 pp->col = (colnr_T)STRLEN(ml_get(pp->lnum));
6910 return TRUE;
6911 }
6912 }
6913 return FALSE;
6914}
6915
6916/*
6917 * SELECT key in Normal or Visual mode: end of Select mode mapping.
6918 */
6919 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006920nv_select(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921{
6922 if (VIsual_active)
6923 VIsual_select = TRUE;
6924 else if (VIsual_reselect)
6925 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006926 cap->nchar = 'v'; // fake "gv" command
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927 cap->arg = TRUE;
6928 nv_g_cmd(cap);
6929 }
6930}
6931
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932
6933/*
6934 * "G", "gg", CTRL-END, CTRL-HOME.
6935 * cap->arg is TRUE for "G".
6936 */
6937 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006938nv_goto(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939{
6940 linenr_T lnum;
6941
6942 if (cap->arg)
6943 lnum = curbuf->b_ml.ml_line_count;
6944 else
6945 lnum = 1L;
6946 cap->oap->motion_type = MLINE;
6947 setpcmark();
6948
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006949 // When a count is given, use it instead of the default lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 if (cap->count0 != 0)
6951 lnum = cap->count0;
6952 if (lnum < 1L)
6953 lnum = 1L;
6954 else if (lnum > curbuf->b_ml.ml_line_count)
6955 lnum = curbuf->b_ml.ml_line_count;
6956 curwin->w_cursor.lnum = lnum;
6957 beginline(BL_SOL | BL_FIX);
6958#ifdef FEAT_FOLDING
6959 if ((fdo_flags & FDO_JUMP) && KeyTyped && cap->oap->op_type == OP_NOP)
6960 foldOpenCursor();
6961#endif
6962}
6963
6964/*
6965 * CTRL-\ in Normal mode.
6966 */
6967 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006968nv_normal(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969{
6970 if (cap->nchar == Ctrl_N || cap->nchar == Ctrl_G)
6971 {
6972 clearop(cap->oap);
Bram Moolenaar28c258f2006-01-25 22:02:51 +00006973 if (restart_edit != 0 && mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006974 clear_cmdline = TRUE; // unshow mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975 restart_edit = 0;
6976#ifdef FEAT_CMDWIN
6977 if (cmdwin_type != 0)
6978 cmdwin_result = Ctrl_C;
6979#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980 if (VIsual_active)
6981 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006982 end_visual_mode(); // stop Visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00006983 redraw_curbuf_later(INVERTED);
6984 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006985 // CTRL-\ CTRL-G restarts Insert mode when 'insertmode' is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986 if (cap->nchar == Ctrl_G && p_im)
6987 restart_edit = 'a';
6988 }
6989 else
6990 clearopbeep(cap->oap);
6991}
6992
6993/*
6994 * ESC in Normal mode: beep, but don't flush buffers.
6995 * Don't even beep if we are canceling a command.
6996 */
6997 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006998nv_esc(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999{
7000 int no_reason;
7001
7002 no_reason = (cap->oap->op_type == OP_NOP
7003 && cap->opcount == 0
7004 && cap->count0 == 0
7005 && cap->oap->regname == 0
7006 && !p_im);
7007
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007008 if (cap->arg) // TRUE for CTRL-C
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009 {
7010 if (restart_edit == 0
7011#ifdef FEAT_CMDWIN
7012 && cmdwin_type == 0
7013#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00007015 && no_reason)
Bram Moolenaara84a3dd2019-03-25 22:21:24 +01007016 {
7017 if (anyBufIsChanged())
7018 msg(_("Type :qa! and press <Enter> to abandon all changes and exit Vim"));
7019 else
7020 msg(_("Type :qa and press <Enter> to exit Vim"));
7021 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007023 // Don't reset "restart_edit" when 'insertmode' is set, it won't be
7024 // set again below when halfway a mapping.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025 if (!p_im)
7026 restart_edit = 0;
7027#ifdef FEAT_CMDWIN
7028 if (cmdwin_type != 0)
7029 {
7030 cmdwin_result = K_IGNORE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007031 got_int = FALSE; // don't stop executing autocommands et al.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032 return;
7033 }
7034#endif
7035 }
Bram Moolenaar7d414102021-02-23 19:39:20 +01007036#ifdef FEAT_CMDWIN
7037 else if (cmdwin_type != 0 && ex_normal_busy)
7038 {
7039 // When :normal runs out of characters while in the command line window
7040 // vgetorpeek() will return ESC. Exit the cmdline window to break the
7041 // loop.
7042 cmdwin_result = K_IGNORE;
7043 return;
7044 }
7045#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007046
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047 if (VIsual_active)
7048 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007049 end_visual_mode(); // stop Visual
7050 check_cursor_col(); // make sure cursor is not beyond EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 curwin->w_set_curswant = TRUE;
7052 redraw_curbuf_later(INVERTED);
7053 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007054 else if (no_reason)
Bram Moolenaar165bc692015-07-21 17:53:25 +02007055 vim_beep(BO_ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056 clearop(cap->oap);
7057
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007058 // A CTRL-C is often used at the start of a menu. When 'insertmode' is
7059 // set return to Insert mode afterwards.
Bram Moolenaare2c38102016-01-31 14:55:40 +01007060 if (restart_edit == 0 && goto_im() && ex_normal_busy == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061 restart_edit = 'a';
7062}
7063
7064/*
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007065 * Move the cursor for the "A" command.
7066 */
7067 void
7068set_cursor_for_append_to_line(void)
7069{
7070 curwin->w_set_curswant = TRUE;
Gary Johnson53ba05b2021-07-26 22:19:10 +02007071 if (get_ve_flags() == VE_ALL)
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007072 {
7073 int save_State = State;
7074
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007075 // Pretend Insert mode here to allow the cursor on the
7076 // character past the end of the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007077 State = INSERT;
7078 coladvance((colnr_T)MAXCOL);
7079 State = save_State;
7080 }
7081 else
7082 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
7083}
7084
7085/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086 * Handle "A", "a", "I", "i" and <Insert> commands.
Bram Moolenaarec2da362017-01-21 20:04:22 +01007087 * Also handle K_PS, start bracketed paste.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007088 */
7089 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007090nv_edit(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007092 // <Insert> is equal to "i"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 if (cap->cmdchar == K_INS || cap->cmdchar == K_KINS)
7094 cap->cmdchar = 'i';
7095
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007096 // in Visual mode "A" and "I" are an operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097 if (VIsual_active && (cap->cmdchar == 'A' || cap->cmdchar == 'I'))
Bram Moolenaareef9add2017-09-16 15:38:04 +02007098 {
7099#ifdef FEAT_TERMINAL
7100 if (term_in_normal_mode())
7101 {
7102 end_visual_mode();
7103 clearop(cap->oap);
7104 term_enter_job_mode();
7105 return;
7106 }
7107#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108 v_visop(cap);
Bram Moolenaareef9add2017-09-16 15:38:04 +02007109 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007110
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007111 // in Visual mode and after an operator "a" and "i" are for text objects
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007112 else if ((cap->cmdchar == 'a' || cap->cmdchar == 'i')
7113 && (cap->oap->op_type != OP_NOP || VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007114 {
7115#ifdef FEAT_TEXTOBJ
7116 nv_object(cap);
7117#else
7118 clearopbeep(cap->oap);
7119#endif
7120 }
Bram Moolenaar662d9382017-07-31 22:56:24 +02007121#ifdef FEAT_TERMINAL
Bram Moolenaar6d819742017-08-06 14:57:49 +02007122 else if (term_in_normal_mode())
Bram Moolenaar662d9382017-07-31 22:56:24 +02007123 {
7124 clearop(cap->oap);
Bram Moolenaar6d819742017-08-06 14:57:49 +02007125 term_enter_job_mode();
Bram Moolenaar662d9382017-07-31 22:56:24 +02007126 return;
7127 }
7128#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007129 else if (!curbuf->b_p_ma && !p_im)
7130 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007131 // Only give this error when 'insertmode' is off.
Bram Moolenaar108010a2021-06-27 22:03:33 +02007132 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007133 clearop(cap->oap);
Bram Moolenaarec2da362017-01-21 20:04:22 +01007134 if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007135 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01007136 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137 }
Bram Moolenaara1891842017-02-04 21:34:31 +01007138 else if (cap->cmdchar == K_PS && VIsual_active)
7139 {
7140 pos_T old_pos = curwin->w_cursor;
7141 pos_T old_visual = VIsual;
7142
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007143 // In Visual mode the selected text is deleted.
Bram Moolenaara1891842017-02-04 21:34:31 +01007144 if (VIsual_mode == 'V' || curwin->w_cursor.lnum != VIsual.lnum)
7145 {
7146 shift_delete_registers();
7147 cap->oap->regname = '1';
7148 }
7149 else
7150 cap->oap->regname = '-';
7151 cap->cmdchar = 'd';
7152 cap->nchar = NUL;
7153 nv_operator(cap);
7154 do_pending_operator(cap, 0, FALSE);
7155 cap->cmdchar = K_PS;
7156
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007157 // When the last char in the line was deleted then append. Detect this
7158 // by checking if the cursor moved to before the Visual area.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007159 if (*ml_get_cursor() != NUL && LT_POS(curwin->w_cursor, old_pos)
7160 && LT_POS(curwin->w_cursor, old_visual))
Bram Moolenaara1891842017-02-04 21:34:31 +01007161 inc_cursor();
7162
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007163 // Insert to replace the deleted text with the pasted text.
Bram Moolenaara1891842017-02-04 21:34:31 +01007164 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7165 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007166 else if (!checkclearopq(cap->oap))
7167 {
7168 switch (cap->cmdchar)
7169 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007170 case 'A': // "A"ppend after the line
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007171 set_cursor_for_append_to_line();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007172 break;
7173
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007174 case 'I': // "I"nsert before the first non-blank
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007175 if (vim_strchr(p_cpo, CPO_INSEND) == NULL)
7176 beginline(BL_WHITE);
7177 else
7178 beginline(BL_WHITE|BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179 break;
7180
Bram Moolenaara1891842017-02-04 21:34:31 +01007181 case K_PS:
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007182 // Bracketed paste works like "a"ppend, unless the cursor is in
7183 // the first column, then it inserts.
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007184 if (curwin->w_cursor.col == 0)
7185 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007186 // FALLTHROUGH
Bram Moolenaarfd8983b2017-02-02 22:21:29 +01007187
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007188 case 'a': // "a"ppend is like "i"nsert on the next character.
7189 // increment coladd when in virtual space, increment the
7190 // column otherwise, also to append after an unprintable char
Bram Moolenaar071d4272004-06-13 20:20:40 +00007191 if (virtual_active()
7192 && (curwin->w_cursor.coladd > 0
7193 || *ml_get_cursor() == NUL
7194 || *ml_get_cursor() == TAB))
7195 curwin->w_cursor.coladd++;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01007196 else if (*ml_get_cursor() != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007197 inc_cursor();
7198 break;
7199 }
7200
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201 if (curwin->w_cursor.coladd && cap->cmdchar != 'A')
7202 {
7203 int save_State = State;
7204
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007205 // Pretend Insert mode here to allow the cursor on the
7206 // character past the end of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007207 State = INSERT;
7208 coladvance(getviscol());
7209 State = save_State;
7210 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007211
7212 invoke_edit(cap, FALSE, cap->cmdchar, FALSE);
7213 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01007214 else if (cap->cmdchar == K_PS)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007215 // drop the pasted text
Bram Moolenaarec2da362017-01-21 20:04:22 +01007216 bracketed_paste(PASTE_INSERT, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007217}
7218
7219/*
7220 * Invoke edit() and take care of "restart_edit" and the return value.
7221 */
7222 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007223invoke_edit(
7224 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007225 int repl, // "r" or "gr" command
Bram Moolenaar9b578142016-01-30 19:39:49 +01007226 int cmd,
7227 int startln)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007228{
7229 int restart_edit_save = 0;
7230
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007231 // Complicated: When the user types "a<C-O>a" we don't want to do Insert
7232 // mode recursively. But when doing "a<C-O>." or "a<C-O>rx" we do allow
7233 // it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234 if (repl || !stuff_empty())
7235 restart_edit_save = restart_edit;
7236 else
7237 restart_edit_save = 0;
7238
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007239 // Always reset "restart_edit", this is not a restarted edit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240 restart_edit = 0;
7241
7242 if (edit(cmd, startln, cap->count1))
7243 cap->retval |= CA_COMMAND_BUSY;
7244
7245 if (restart_edit == 0)
7246 restart_edit = restart_edit_save;
7247}
7248
7249#ifdef FEAT_TEXTOBJ
7250/*
7251 * "a" or "i" while an operator is pending or in Visual mode: object motion.
7252 */
7253 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007254nv_object(
7255 cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007256{
7257 int flag;
7258 int include;
7259 char_u *mps_save;
7260
7261 if (cap->cmdchar == 'i')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007262 include = FALSE; // "ix" = inner object: exclude white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007263 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007264 include = TRUE; // "ax" = an object: include white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007266 // Make sure (), [], {} and <> are in 'matchpairs'
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267 mps_save = curbuf->b_p_mps;
7268 curbuf->b_p_mps = (char_u *)"(:),{:},[:],<:>";
7269
7270 switch (cap->nchar)
7271 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007272 case 'w': // "aw" = a word
Bram Moolenaar071d4272004-06-13 20:20:40 +00007273 flag = current_word(cap->oap, cap->count1, include, FALSE);
7274 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007275 case 'W': // "aW" = a WORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007276 flag = current_word(cap->oap, cap->count1, include, TRUE);
7277 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007278 case 'b': // "ab" = a braces block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007279 case '(':
7280 case ')':
7281 flag = current_block(cap->oap, cap->count1, include, '(', ')');
7282 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007283 case 'B': // "aB" = a Brackets block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007284 case '{':
7285 case '}':
7286 flag = current_block(cap->oap, cap->count1, include, '{', '}');
7287 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007288 case '[': // "a[" = a [] block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007289 case ']':
7290 flag = current_block(cap->oap, cap->count1, include, '[', ']');
7291 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007292 case '<': // "a<" = a <> block
Bram Moolenaar071d4272004-06-13 20:20:40 +00007293 case '>':
7294 flag = current_block(cap->oap, cap->count1, include, '<', '>');
7295 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007296 case 't': // "at" = a tag block (xml and html)
7297 // Do not adjust oap->end in do_pending_operator()
7298 // otherwise there are different results for 'dit'
7299 // (note leading whitespace in last line):
7300 // 1) <b> 2) <b>
7301 // foobar foobar
7302 // </b> </b>
Bram Moolenaarb6c27352015-03-05 19:57:49 +01007303 cap->retval |= CA_NO_ADJ_OP_END;
Bram Moolenaarf8c07b22005-07-19 22:10:03 +00007304 flag = current_tagblock(cap->oap, cap->count1, include);
7305 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007306 case 'p': // "ap" = a paragraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00007307 flag = current_par(cap->oap, cap->count1, include, 'p');
7308 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007309 case 's': // "as" = a sentence
Bram Moolenaar071d4272004-06-13 20:20:40 +00007310 flag = current_sent(cap->oap, cap->count1, include);
7311 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007312 case '"': // "a"" = a double quoted string
7313 case '\'': // "a'" = a single quoted string
7314 case '`': // "a`" = a backtick quoted string
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007315 flag = current_quote(cap->oap, cap->count1, include,
7316 cap->nchar);
7317 break;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007318#if 0 // TODO
7319 case 'S': // "aS" = a section
7320 case 'f': // "af" = a filename
7321 case 'u': // "au" = a URL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007322#endif
7323 default:
7324 flag = FAIL;
7325 break;
7326 }
7327
7328 curbuf->b_p_mps = mps_save;
7329 if (flag == FAIL)
7330 clearopbeep(cap->oap);
7331 adjust_cursor_col();
7332 curwin->w_set_curswant = TRUE;
7333}
7334#endif
7335
7336/*
7337 * "q" command: Start/stop recording.
7338 * "q:", "q/", "q?": edit command-line in command-line window.
7339 */
7340 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007341nv_record(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007342{
7343 if (cap->oap->op_type == OP_FORMAT)
7344 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007345 // "gqq" is the same as "gqgq": format line
Bram Moolenaar071d4272004-06-13 20:20:40 +00007346 cap->cmdchar = 'g';
7347 cap->nchar = 'q';
7348 nv_operator(cap);
7349 }
7350 else if (!checkclearop(cap->oap))
7351 {
7352#ifdef FEAT_CMDWIN
7353 if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?')
7354 {
7355 stuffcharReadbuff(cap->nchar);
7356 stuffcharReadbuff(K_CMDWIN);
7357 }
7358 else
7359#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007360 // (stop) recording into a named register, unless executing a
7361 // register
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02007362 if (reg_executing == 0 && do_record(cap->nchar) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007363 clearopbeep(cap->oap);
7364 }
7365}
7366
7367/*
7368 * Handle the "@r" command.
7369 */
7370 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007371nv_at(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007372{
7373 if (checkclearop(cap->oap))
7374 return;
7375#ifdef FEAT_EVAL
7376 if (cap->nchar == '=')
7377 {
7378 if (get_expr_register() == NUL)
7379 return;
7380 }
7381#endif
7382 while (cap->count1-- && !got_int)
7383 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00007384 if (do_execreg(cap->nchar, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007385 {
7386 clearopbeep(cap->oap);
7387 break;
7388 }
7389 line_breakcheck();
7390 }
7391}
7392
7393/*
7394 * Handle the CTRL-U and CTRL-D commands.
7395 */
7396 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007397nv_halfpage(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007398{
7399 if ((cap->cmdchar == Ctrl_U && curwin->w_cursor.lnum == 1)
7400 || (cap->cmdchar == Ctrl_D
7401 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count))
7402 clearopbeep(cap->oap);
7403 else if (!checkclearop(cap->oap))
7404 halfpage(cap->cmdchar == Ctrl_D, cap->count0);
7405}
7406
7407/*
7408 * Handle "J" or "gJ" command.
7409 */
7410 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007411nv_join(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007412{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007413 if (VIsual_active) // join the visual lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00007414 nv_operator(cap);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007415 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007416 {
7417 if (cap->count0 <= 1)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007418 cap->count0 = 2; // default for join is two lines!
Bram Moolenaar071d4272004-06-13 20:20:40 +00007419 if (curwin->w_cursor.lnum + cap->count0 - 1 >
7420 curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007422 // can't join when on the last line
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007423 if (cap->count0 <= 2)
7424 {
7425 clearopbeep(cap->oap);
7426 return;
7427 }
7428 cap->count0 = curbuf->b_ml.ml_line_count
7429 - curwin->w_cursor.lnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007430 }
Bram Moolenaar41e0f2f2016-03-08 14:44:42 +01007431
7432 prep_redo(cap->oap->regname, cap->count0,
7433 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
7434 (void)do_join(cap->count0, cap->nchar == NUL, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007435 }
7436}
7437
7438/*
7439 * "P", "gP", "p" and "gp" commands.
7440 */
7441 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007442nv_put(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007443{
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007444 nv_put_opt(cap, FALSE);
7445}
7446
7447/*
7448 * "P", "gP", "p" and "gp" commands.
7449 * "fix_indent" is TRUE for "[p", "[P", "]p" and "]P".
7450 */
7451 static void
7452nv_put_opt(cmdarg_T *cap, int fix_indent)
7453{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007454 int regname = 0;
7455 void *reg1 = NULL, *reg2 = NULL;
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007456 int empty = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007457 int was_visual = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007458 int dir;
7459 int flags = 0;
7460
7461 if (cap->oap->op_type != OP_NOP)
7462 {
7463#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007464 // "dp" is ":diffput"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007465 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'p')
7466 {
7467 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007468 nv_diffgetput(TRUE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007469 }
7470 else
7471#endif
7472 clearopbeep(cap->oap);
7473 }
Bram Moolenaarf2732452018-06-03 14:47:35 +02007474#ifdef FEAT_JOB_CHANNEL
7475 else if (bt_prompt(curbuf) && !prompt_curpos_editable())
7476 {
7477 clearopbeep(cap->oap);
7478 }
7479#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007480 else
7481 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02007482 if (fix_indent)
7483 {
7484 dir = (cap->cmdchar == ']' && cap->nchar == 'p')
7485 ? FORWARD : BACKWARD;
7486 flags |= PUT_FIXINDENT;
7487 }
7488 else
7489 dir = (cap->cmdchar == 'P'
Christian Brabandt2fa93842021-05-30 22:17:25 +02007490 || ((cap->cmdchar == 'g' || cap->cmdchar == 'z')
7491 && cap->nchar == 'P')) ? BACKWARD : FORWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007492 prep_redo_cmd(cap);
7493 if (cap->cmdchar == 'g')
7494 flags |= PUT_CURSEND;
Christian Brabandt2fa93842021-05-30 22:17:25 +02007495 else if (cap->cmdchar == 'z')
7496 flags |= PUT_BLOCK_INNER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007497
Bram Moolenaar071d4272004-06-13 20:20:40 +00007498 if (VIsual_active)
7499 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007500 // Putting in Visual mode: The put text replaces the selected
7501 // text. First delete the selected text, then put the new text.
7502 // Need to save and restore the registers that the delete
7503 // overwrites if the old contents is being put.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007504 was_visual = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007505 regname = cap->oap->regname;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007506#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007507 adjust_clip_reg(&regname);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007508#endif
Bram Moolenaar7d311c52014-02-22 23:49:35 +01007509 if (regname == 0 || regname == '"'
Bram Moolenaarba6e8582012-12-12 18:20:32 +01007510 || VIM_ISDIGIT(regname) || regname == '-'
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007511#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00007512 || (clip_unnamed && (regname == '*' || regname == '+'))
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007513#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007514
7515 )
7516 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007517 // The delete is going to overwrite the register we want to
7518 // put, save it first.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007519 reg1 = get_register(regname, TRUE);
7520 }
7521
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007522 // Now delete the selected text. Avoid messages here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007523 cap->cmdchar = 'd';
7524 cap->nchar = NUL;
7525 cap->oap->regname = NUL;
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007526 ++msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007527 nv_operator(cap);
7528 do_pending_operator(cap, 0, FALSE);
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007529 empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007530 --msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007531
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007532 // delete PUT_LINE_BACKWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007533 cap->oap->regname = regname;
7534
7535 if (reg1 != NULL)
7536 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007537 // Delete probably changed the register we want to put, save
7538 // it first. Then put back what was there before the delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007539 reg2 = get_register(regname, FALSE);
7540 put_register(regname, reg1);
7541 }
7542
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007543 // When deleted a linewise Visual area, put the register as
7544 // lines to avoid it joined with the next line. When deletion was
7545 // characterwise, split a line when putting lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007546 if (VIsual_mode == 'V')
7547 flags |= PUT_LINE;
7548 else if (VIsual_mode == 'v')
7549 flags |= PUT_LINE_SPLIT;
7550 if (VIsual_mode == Ctrl_V && dir == FORWARD)
7551 flags |= PUT_LINE_FORWARD;
7552 dir = BACKWARD;
7553 if ((VIsual_mode != 'V'
7554 && curwin->w_cursor.col < curbuf->b_op_start.col)
7555 || (VIsual_mode == 'V'
7556 && curwin->w_cursor.lnum < curbuf->b_op_start.lnum))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007557 // cursor is at the end of the line or end of file, put
7558 // forward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007559 dir = FORWARD;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007560 // May have been reset in do_put().
Bram Moolenaarec11aef2013-09-22 15:23:44 +02007561 VIsual_active = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007562 }
Bram Moolenaarc3516f72020-09-08 22:45:35 +02007563 do_put(cap->oap->regname, NULL, dir, cap->count1, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007564
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007565 // If a register was saved, put it back now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007566 if (reg2 != NULL)
7567 put_register(regname, reg2);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007568
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007569 // What to reselect with "gv"? Selecting the just put text seems to
7570 // be the most useful, since the original text was removed.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007571 if (was_visual)
7572 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00007573 curbuf->b_visual.vi_start = curbuf->b_op_start;
7574 curbuf->b_visual.vi_end = curbuf->b_op_end;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007575 // need to adjust cursor position
Bram Moolenaard29c6fe2015-11-19 20:11:54 +01007576 if (*p_sel == 'e')
7577 inc(&curbuf->b_visual.vi_end);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007578 }
7579
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007580 // When all lines were selected and deleted do_put() leaves an empty
7581 // line that needs to be deleted now.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +00007582 if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL)
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007583 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02007584 ml_delete_flags(curbuf->b_ml.ml_line_count, ML_DEL_MESSAGE);
Bram Moolenaar9a4a8c42019-08-19 22:48:30 +02007585 deleted_lines(curbuf->b_ml.ml_line_count + 1, 1);
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007586
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007587 // If the cursor was in that line, move it to the end of the last
7588 // line.
Bram Moolenaar86ca6e32006-03-29 21:06:37 +00007589 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
7590 {
7591 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
7592 coladvance((colnr_T)MAXCOL);
7593 }
7594 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007595 auto_format(FALSE, TRUE);
7596 }
7597}
7598
7599/*
7600 * "o" and "O" commands.
7601 */
7602 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007603nv_open(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007604{
7605#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007606 // "do" is ":diffget"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007607 if (cap->oap->op_type == OP_DELETE && cap->cmdchar == 'o')
7608 {
7609 clearop(cap->oap);
Bram Moolenaar6a643652014-10-31 13:54:25 +01007610 nv_diffgetput(FALSE, cap->opcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007611 }
7612 else
7613#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007614 if (VIsual_active) // switch start and end of visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00007615 v_swap_corners(cap->cmdchar);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007616#ifdef FEAT_JOB_CHANNEL
7617 else if (bt_prompt(curbuf))
Bram Moolenaarf2732452018-06-03 14:47:35 +02007618 clearopbeep(cap->oap);
Bram Moolenaarf2732452018-06-03 14:47:35 +02007619#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007620 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007621 n_opencmd(cap);
7622}
7623
Bram Moolenaar071d4272004-06-13 20:20:40 +00007624#ifdef FEAT_NETBEANS_INTG
7625 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007626nv_nbcmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007627{
7628 netbeans_keycommand(cap->nchar);
7629}
7630#endif
7631
7632#ifdef FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007633 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007634nv_drop(cmdarg_T *cap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007635{
Bram Moolenaarc3516f72020-09-08 22:45:35 +02007636 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007637}
7638#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00007639
Bram Moolenaar3918c952005-03-15 22:34:55 +00007640/*
7641 * Trigger CursorHold event.
7642 * When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
7643 * input buffer. "did_cursorhold" is set to avoid retriggering.
7644 */
Bram Moolenaar3918c952005-03-15 22:34:55 +00007645 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007646nv_cursorhold(cmdarg_T *cap)
Bram Moolenaar3918c952005-03-15 22:34:55 +00007647{
7648 apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
7649 did_cursorhold = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01007650 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar3918c952005-03-15 22:34:55 +00007651}