blob: 553ed2409935c17ca2b63ae9a7caa4809a0c1279 [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
131/*
132 * Function to be called for a Normal or Visual mode command.
133 * The argument is a cmdarg_T.
134 */
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100135typedef void (*nv_func_T)(cmdarg_T *cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100137// Values for cmd_flags.
138#define NV_NCH 0x01 // may need to get a second char
139#define NV_NCH_NOP (0x02|NV_NCH) // get second char when no operator pending
140#define NV_NCH_ALW (0x04|NV_NCH) // always get a second char
141#define NV_LANG 0x08 // second char needs language adjustment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100143#define NV_SS 0x10 // may start selection
144#define NV_SSS 0x20 // may start selection with shift modifier
145#define NV_STS 0x40 // may stop selection without shift modif.
146#define NV_RL 0x80 // 'rightleft' modifies command
147#define NV_KEEPREG 0x100 // don't clear regname
148#define NV_NCW 0x200 // not allowed in command-line window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149
150/*
151 * Generally speaking, every Normal mode command should either clear any
152 * pending operator (with *clearop*()), or set the motion type variable
153 * oap->motion_type.
154 *
155 * When a cursor motion command is made, it is marked as being a character or
156 * line oriented motion. Then, if an operator is in effect, the operation
157 * becomes character or line oriented accordingly.
158 */
159
160/*
161 * This table contains one entry for every Normal or Visual mode command.
162 * The order doesn't matter, init_normal_cmds() will create a sorted index.
163 * It is faster when all keys from zero to '~' are present.
164 */
165static const struct nv_cmd
166{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100167 int cmd_char; // (first) command character
168 nv_func_T cmd_func; // function for this command
169 short_u cmd_flags; // NV_ flags
170 short cmd_arg; // value for ca.arg
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171} nv_cmds[] =
172{
173 {NUL, nv_error, 0, 0},
174 {Ctrl_A, nv_addsub, 0, 0},
175 {Ctrl_B, nv_page, NV_STS, BACKWARD},
176 {Ctrl_C, nv_esc, 0, TRUE},
177 {Ctrl_D, nv_halfpage, 0, 0},
178 {Ctrl_E, nv_scroll_line, 0, TRUE},
179 {Ctrl_F, nv_page, NV_STS, FORWARD},
180 {Ctrl_G, nv_ctrlg, 0, 0},
181 {Ctrl_H, nv_ctrlh, 0, 0},
182 {Ctrl_I, nv_pcmark, 0, 0},
183 {NL, nv_down, 0, FALSE},
184 {Ctrl_K, nv_error, 0, 0},
185 {Ctrl_L, nv_clear, 0, 0},
Bram Moolenaar2c519cf2019-03-21 21:45:34 +0100186 {CAR, nv_down, 0, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187 {Ctrl_N, nv_down, NV_STS, FALSE},
188 {Ctrl_O, nv_ctrlo, 0, 0},
189 {Ctrl_P, nv_up, NV_STS, FALSE},
Bram Moolenaardf177f62005-02-22 08:39:57 +0000190 {Ctrl_Q, nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 {Ctrl_R, nv_redo, 0, 0},
192 {Ctrl_S, nv_ignore, 0, 0},
193 {Ctrl_T, nv_tagpop, NV_NCW, 0},
194 {Ctrl_U, nv_halfpage, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 {Ctrl_V, nv_visual, 0, FALSE},
196 {'V', nv_visual, 0, FALSE},
197 {'v', nv_visual, 0, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 {Ctrl_W, nv_window, 0, 0},
199 {Ctrl_X, nv_addsub, 0, 0},
200 {Ctrl_Y, nv_scroll_line, 0, FALSE},
201 {Ctrl_Z, nv_suspend, 0, 0},
202 {ESC, nv_esc, 0, FALSE},
203 {Ctrl_BSL, nv_normal, NV_NCH_ALW, 0},
204 {Ctrl_RSB, nv_ident, NV_NCW, 0},
205 {Ctrl_HAT, nv_hat, NV_NCW, 0},
206 {Ctrl__, nv_error, 0, 0},
207 {' ', nv_right, 0, 0},
208 {'!', nv_operator, 0, 0},
209 {'"', nv_regname, NV_NCH_NOP|NV_KEEPREG, 0},
210 {'#', nv_ident, 0, 0},
211 {'$', nv_dollar, 0, 0},
212 {'%', nv_percent, 0, 0},
213 {'&', nv_optrans, 0, 0},
214 {'\'', nv_gomark, NV_NCH_ALW, TRUE},
215 {'(', nv_brace, 0, BACKWARD},
216 {')', nv_brace, 0, FORWARD},
217 {'*', nv_ident, 0, 0},
218 {'+', nv_down, 0, TRUE},
219 {',', nv_csearch, 0, TRUE},
220 {'-', nv_up, 0, TRUE},
221 {'.', nv_dot, NV_KEEPREG, 0},
222 {'/', nv_search, 0, FALSE},
223 {'0', nv_beginline, 0, 0},
224 {'1', nv_ignore, 0, 0},
225 {'2', nv_ignore, 0, 0},
226 {'3', nv_ignore, 0, 0},
227 {'4', nv_ignore, 0, 0},
228 {'5', nv_ignore, 0, 0},
229 {'6', nv_ignore, 0, 0},
230 {'7', nv_ignore, 0, 0},
231 {'8', nv_ignore, 0, 0},
232 {'9', nv_ignore, 0, 0},
233 {':', nv_colon, 0, 0},
234 {';', nv_csearch, 0, FALSE},
235 {'<', nv_operator, NV_RL, 0},
236 {'=', nv_operator, 0, 0},
237 {'>', nv_operator, NV_RL, 0},
238 {'?', nv_search, 0, FALSE},
239 {'@', nv_at, NV_NCH_NOP, FALSE},
240 {'A', nv_edit, 0, 0},
241 {'B', nv_bck_word, 0, 1},
242 {'C', nv_abbrev, NV_KEEPREG, 0},
243 {'D', nv_abbrev, NV_KEEPREG, 0},
244 {'E', nv_wordcmd, 0, TRUE},
245 {'F', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
246 {'G', nv_goto, 0, TRUE},
247 {'H', nv_scroll, 0, 0},
248 {'I', nv_edit, 0, 0},
249 {'J', nv_join, 0, 0},
250 {'K', nv_ident, 0, 0},
251 {'L', nv_scroll, 0, 0},
252 {'M', nv_scroll, 0, 0},
253 {'N', nv_next, 0, SEARCH_REV},
254 {'O', nv_open, 0, 0},
255 {'P', nv_put, 0, 0},
256 {'Q', nv_exmode, NV_NCW, 0},
257 {'R', nv_Replace, 0, FALSE},
258 {'S', nv_subst, NV_KEEPREG, 0},
259 {'T', nv_csearch, NV_NCH_ALW|NV_LANG, BACKWARD},
260 {'U', nv_Undo, 0, 0},
261 {'W', nv_wordcmd, 0, TRUE},
262 {'X', nv_abbrev, NV_KEEPREG, 0},
263 {'Y', nv_abbrev, NV_KEEPREG, 0},
264 {'Z', nv_Zet, NV_NCH_NOP|NV_NCW, 0},
265 {'[', nv_brackets, NV_NCH_ALW, BACKWARD},
266 {'\\', nv_error, 0, 0},
267 {']', nv_brackets, NV_NCH_ALW, FORWARD},
268 {'^', nv_beginline, 0, BL_WHITE | BL_FIX},
269 {'_', nv_lineop, 0, 0},
270 {'`', nv_gomark, NV_NCH_ALW, FALSE},
271 {'a', nv_edit, NV_NCH, 0},
272 {'b', nv_bck_word, 0, 0},
273 {'c', nv_operator, 0, 0},
274 {'d', nv_operator, 0, 0},
275 {'e', nv_wordcmd, 0, FALSE},
276 {'f', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
277 {'g', nv_g_cmd, NV_NCH_ALW, FALSE},
278 {'h', nv_left, NV_RL, 0},
279 {'i', nv_edit, NV_NCH, 0},
280 {'j', nv_down, 0, FALSE},
281 {'k', nv_up, 0, FALSE},
282 {'l', nv_right, NV_RL, 0},
283 {'m', nv_mark, NV_NCH_NOP, 0},
284 {'n', nv_next, 0, 0},
285 {'o', nv_open, 0, 0},
286 {'p', nv_put, 0, 0},
287 {'q', nv_record, NV_NCH, 0},
288 {'r', nv_replace, NV_NCH_NOP|NV_LANG, 0},
289 {'s', nv_subst, NV_KEEPREG, 0},
290 {'t', nv_csearch, NV_NCH_ALW|NV_LANG, FORWARD},
291 {'u', nv_undo, 0, 0},
292 {'w', nv_wordcmd, 0, FALSE},
293 {'x', nv_abbrev, NV_KEEPREG, 0},
294 {'y', nv_operator, 0, 0},
295 {'z', nv_zet, NV_NCH_ALW, 0},
296 {'{', nv_findpar, 0, BACKWARD},
297 {'|', nv_pipe, 0, 0},
298 {'}', nv_findpar, 0, FORWARD},
299 {'~', nv_tilde, 0, 0},
300
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100301 // pound sign
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302 {POUND, nv_ident, 0, 0},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200303 {K_MOUSEUP, nv_mousescroll, 0, MSCR_UP},
304 {K_MOUSEDOWN, nv_mousescroll, 0, MSCR_DOWN},
305 {K_MOUSELEFT, nv_mousescroll, 0, MSCR_LEFT},
306 {K_MOUSERIGHT, nv_mousescroll, 0, MSCR_RIGHT},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 {K_LEFTMOUSE, nv_mouse, 0, 0},
308 {K_LEFTMOUSE_NM, nv_mouse, 0, 0},
309 {K_LEFTDRAG, nv_mouse, 0, 0},
310 {K_LEFTRELEASE, nv_mouse, 0, 0},
311 {K_LEFTRELEASE_NM, nv_mouse, 0, 0},
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100312 {K_MOUSEMOVE, nv_mouse, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 {K_MIDDLEMOUSE, nv_mouse, 0, 0},
314 {K_MIDDLEDRAG, nv_mouse, 0, 0},
315 {K_MIDDLERELEASE, nv_mouse, 0, 0},
316 {K_RIGHTMOUSE, nv_mouse, 0, 0},
317 {K_RIGHTDRAG, nv_mouse, 0, 0},
318 {K_RIGHTRELEASE, nv_mouse, 0, 0},
319 {K_X1MOUSE, nv_mouse, 0, 0},
320 {K_X1DRAG, nv_mouse, 0, 0},
321 {K_X1RELEASE, nv_mouse, 0, 0},
322 {K_X2MOUSE, nv_mouse, 0, 0},
323 {K_X2DRAG, nv_mouse, 0, 0},
324 {K_X2RELEASE, nv_mouse, 0, 0},
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000325 {K_IGNORE, nv_ignore, NV_KEEPREG, 0},
Bram Moolenaarebefac62005-12-28 22:39:57 +0000326 {K_NOP, nv_nop, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 {K_INS, nv_edit, 0, 0},
328 {K_KINS, nv_edit, 0, 0},
329 {K_BS, nv_ctrlh, 0, 0},
330 {K_UP, nv_up, NV_SSS|NV_STS, FALSE},
331 {K_S_UP, nv_page, NV_SS, BACKWARD},
332 {K_DOWN, nv_down, NV_SSS|NV_STS, FALSE},
333 {K_S_DOWN, nv_page, NV_SS, FORWARD},
334 {K_LEFT, nv_left, NV_SSS|NV_STS|NV_RL, 0},
335 {K_S_LEFT, nv_bck_word, NV_SS|NV_RL, 0},
336 {K_C_LEFT, nv_bck_word, NV_SSS|NV_RL|NV_STS, 1},
337 {K_RIGHT, nv_right, NV_SSS|NV_STS|NV_RL, 0},
338 {K_S_RIGHT, nv_wordcmd, NV_SS|NV_RL, FALSE},
339 {K_C_RIGHT, nv_wordcmd, NV_SSS|NV_RL|NV_STS, TRUE},
340 {K_PAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
341 {K_KPAGEUP, nv_page, NV_SSS|NV_STS, BACKWARD},
342 {K_PAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
343 {K_KPAGEDOWN, nv_page, NV_SSS|NV_STS, FORWARD},
344 {K_END, nv_end, NV_SSS|NV_STS, FALSE},
345 {K_KEND, nv_end, NV_SSS|NV_STS, FALSE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 {K_S_END, nv_end, NV_SS, FALSE},
347 {K_C_END, nv_end, NV_SSS|NV_STS, TRUE},
348 {K_HOME, nv_home, NV_SSS|NV_STS, 0},
349 {K_KHOME, nv_home, NV_SSS|NV_STS, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 {K_S_HOME, nv_home, NV_SS, 0},
351 {K_C_HOME, nv_goto, NV_SSS|NV_STS, FALSE},
352 {K_DEL, nv_abbrev, 0, 0},
353 {K_KDEL, nv_abbrev, 0, 0},
354 {K_UNDO, nv_kundo, 0, 0},
355 {K_HELP, nv_help, NV_NCW, 0},
356 {K_F1, nv_help, NV_NCW, 0},
357 {K_XF1, nv_help, NV_NCW, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 {K_SELECT, nv_select, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359#ifdef FEAT_GUI
360 {K_VER_SCROLLBAR, nv_ver_scrollbar, 0, 0},
361 {K_HOR_SCROLLBAR, nv_hor_scrollbar, 0, 0},
362#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000363#ifdef FEAT_GUI_TABLINE
364 {K_TABLINE, nv_tabline, 0, 0},
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000365 {K_TABMENU, nv_tabmenu, 0, 0},
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000366#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367#ifdef FEAT_NETBEANS_INTG
368 {K_F21, nv_nbcmd, NV_NCH_ALW, 0},
369#endif
370#ifdef FEAT_DND
371 {K_DROP, nv_drop, NV_STS, 0},
372#endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000373 {K_CURSORHOLD, nv_cursorhold, NV_KEEPREG, 0},
Bram Moolenaarec2da362017-01-21 20:04:22 +0100374 {K_PS, nv_edit, 0, 0},
Bram Moolenaar957cf672020-11-12 14:21:06 +0100375 {K_COMMAND, nv_colon, 0, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376};
377
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100378// Number of commands in nv_cmds[].
K.Takataeeec2542021-06-02 13:28:16 +0200379#define NV_CMDS_SIZE ARRAY_LENGTH(nv_cmds)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380
Bram Moolenaar2228cd72021-11-22 14:16:08 +0000381#ifndef PROTO // cproto doesn't like this
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100382// Sorted index of commands in nv_cmds[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383static short nv_cmd_idx[NV_CMDS_SIZE];
Bram Moolenaar2228cd72021-11-22 14:16:08 +0000384#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100386// The highest index for which
387// nv_cmds[idx].cmd_char == nv_cmd_idx[nv_cmds[idx].cmd_char]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388static int nv_max_linear;
389
390/*
391 * Compare functions for qsort() below, that checks the command character
392 * through the index in nv_cmd_idx[].
393 */
394 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100395nv_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396{
397 int c1, c2;
398
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100399 // The commands are sorted on absolute value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 c1 = nv_cmds[*(const short *)s1].cmd_char;
401 c2 = nv_cmds[*(const short *)s2].cmd_char;
402 if (c1 < 0)
403 c1 = -c1;
404 if (c2 < 0)
405 c2 = -c2;
406 return c1 - c2;
407}
408
409/*
410 * Initialize the nv_cmd_idx[] table.
411 */
412 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100413init_normal_cmds(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414{
415 int i;
416
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100417 // Fill the index table with a one to one relation.
Bram Moolenaar78a15312009-05-15 19:33:18 +0000418 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419 nv_cmd_idx[i] = i;
420
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100421 // Sort the commands by the command character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare);
423
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100424 // Find the first entry that can't be indexed by the command character.
Bram Moolenaar78a15312009-05-15 19:33:18 +0000425 for (i = 0; i < (int)NV_CMDS_SIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 if (i != nv_cmds[nv_cmd_idx[i]].cmd_char)
427 break;
428 nv_max_linear = i - 1;
429}
430
431/*
432 * Search for a command in the commands table.
433 * Returns -1 for invalid command.
434 */
435 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100436find_command(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437{
438 int i;
439 int idx;
440 int top, bot;
441 int c;
442
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100443 // A multi-byte character is never a command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 if (cmdchar >= 0x100)
445 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100447 // We use the absolute value of the character. Special keys have a
448 // negative value, but are sorted on their absolute value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 if (cmdchar < 0)
450 cmdchar = -cmdchar;
451
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100452 // If the character is in the first part: The character is the index into
453 // nv_cmd_idx[].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 if (cmdchar <= nv_max_linear)
455 return nv_cmd_idx[cmdchar];
456
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100457 // Perform a binary search.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 bot = nv_max_linear + 1;
459 top = NV_CMDS_SIZE - 1;
460 idx = -1;
461 while (bot <= top)
462 {
463 i = (top + bot) / 2;
464 c = nv_cmds[nv_cmd_idx[i]].cmd_char;
465 if (c < 0)
466 c = -c;
467 if (cmdchar == c)
468 {
469 idx = nv_cmd_idx[i];
470 break;
471 }
472 if (cmdchar > c)
473 bot = i + 1;
474 else
475 top = i - 1;
476 }
477 return idx;
478}
479
480/*
481 * Execute a command in Normal mode.
482 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100484normal_cmd(
485 oparg_T *oap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100486 int toplevel UNUSED) // TRUE when called from main()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100488 cmdarg_T ca; // command arguments
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 int c;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100490 int ctrl_w = FALSE; // got CTRL-W command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 int old_col = curwin->w_curswant;
492#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100493 int need_flushbuf; // need to call out_flush()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100495 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 int mapped_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 static int old_mapped_len = 0;
498 int idx;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000499#ifdef FEAT_EVAL
500 int set_prevcount = FALSE;
501#endif
Bram Moolenaarb146e012020-07-19 23:06:05 +0200502 int save_did_cursorhold = did_cursorhold;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503
Bram Moolenaara80faa82020-04-12 19:37:17 +0200504 CLEAR_FIELD(ca); // also resets ca.retval
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 ca.oap = oap;
Bram Moolenaara983fe92008-07-31 20:04:27 +0000506
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100507 // Use a count remembered from before entering an operator. After typing
508 // "3d" we return from normal_cmd() and come back here, the "3" is
509 // remembered in "opcount".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 ca.opcount = opcount;
511
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 /*
513 * If there is an operator pending, then the command we take this time
514 * will terminate it. Finish_op tells us to finish the operation before
515 * returning this time (unless the operation was cancelled).
516 */
517#ifdef CURSOR_SHAPE
518 c = finish_op;
519#endif
520 finish_op = (oap->op_type != OP_NOP);
521#ifdef CURSOR_SHAPE
522 if (finish_op != c)
523 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100524 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525# ifdef FEAT_MOUSESHAPE
526 update_mouseshape(-1);
527# endif
528 }
529#endif
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +0100530 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100532 // When not finishing an operator and no register name typed, reset the
533 // count.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 if (!finish_op && !oap->regname)
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000535 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 ca.opcount = 0;
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000537#ifdef FEAT_EVAL
538 set_prevcount = TRUE;
539#endif
540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100542 // Restore counts from before receiving K_CURSORHOLD. This means after
543 // typing "3", handling K_CURSORHOLD and then typing "2" we get "32", not
544 // "3 * 2".
Bram Moolenaara983fe92008-07-31 20:04:27 +0000545 if (oap->prev_opcount > 0 || oap->prev_count0 > 0)
546 {
547 ca.opcount = oap->prev_opcount;
548 ca.count0 = oap->prev_count0;
549 oap->prev_opcount = 0;
550 oap->prev_count0 = 0;
551 }
Bram Moolenaara983fe92008-07-31 20:04:27 +0000552
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 mapped_len = typebuf_maplen();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554
555 State = NORMAL_BUSY;
556#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100557 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558#endif
559
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100560#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100561 // Set v:count here, when called from main() and not a stuffed
562 // command, so that v:count can be used in an expression mapping
563 // when there is no count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100564 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100565 set_vcount_ca(&ca, &set_prevcount);
566#endif
567
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 /*
569 * Get the command character from the user.
570 */
571 c = safe_vgetc();
Bram Moolenaar25281632016-01-21 23:32:32 +0100572 LANGMAP_ADJUST(c, get_real_state() != SELECTMODE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573
574 /*
575 * If a mapping was started in Visual or Select mode, remember the length
576 * of the mapping. This is used below to not return to Insert mode for as
577 * long as the mapping is being executed.
578 */
579 if (restart_edit == 0)
580 old_mapped_len = 0;
581 else if (old_mapped_len
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000582 || (VIsual_active && mapped_len == 0 && typebuf_maplen() > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 old_mapped_len = typebuf_maplen();
584
585 if (c == NUL)
586 c = K_ZERO;
587
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 /*
589 * In Select mode, typed text replaces the selection.
590 */
591 if (VIsual_active
592 && VIsual_select
593 && (vim_isprintc(c) || c == NL || c == CAR || c == K_KENTER))
594 {
Bram Moolenaarc88e9772022-01-03 13:47:50 +0000595 int len;
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 Moolenaarc88e9772022-01-03 13:47:50 +0000602 len = ins_char_typebuf(vgetc_char, vgetc_mod_mask);
603
604 // When recording the character will be recorded again, remove the
605 // previously recording.
606 ungetchars(len);
607
Bram Moolenaar686f51e2005-05-20 21:19:57 +0000608 if (restart_edit != 0)
609 c = 'd';
610 else
611 c = 'c';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100612 msg_nowait = TRUE; // don't delay going to insert mode
613 old_mapped_len = 0; // do go to Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615
Bram Moolenaard0fb9072021-12-09 11:57:22 +0000616 // If the window was made so small that nothing shows, make it at least one
617 // line and one column when typing a command.
618 if (KeyTyped && !KeyStuffed)
619 win_ensure_size();
620
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621#ifdef FEAT_CMDL_INFO
622 need_flushbuf = add_to_showcmd(c);
623#endif
624
625getcount:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 if (!(VIsual_active && VIsual_select))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627 {
628 /*
629 * Handle a count before a command and compute ca.count0.
630 * Note that '0' is a command and not the start of a count, but it's
631 * part of a count after other digits.
632 */
633 while ( (c >= '1' && c <= '9')
634 || (ca.count0 != 0 && (c == K_DEL || c == K_KDEL || c == '0')))
635 {
636 if (c == K_DEL || c == K_KDEL)
637 {
638 ca.count0 /= 10;
639#ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100640 del_from_showcmd(4); // delete the digit and ~@%
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641#endif
642 }
Bram Moolenaar9b0e82f2021-11-24 13:40:29 +0000643 else if (ca.count0 > 99999999L)
Bram Moolenaar03725c52021-11-24 12:17:53 +0000644 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 ca.count0 = 999999999L;
Bram Moolenaar03725c52021-11-24 12:17:53 +0000646 }
647 else
648 {
649 ca.count0 = ca.count0 * 10 + (c - '0');
650 }
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000651#ifdef FEAT_EVAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100652 // Set v:count here, when called from main() and not a stuffed
653 // command, so that v:count can be used in an expression mapping
654 // right after the count. Do set it for redo.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100655 if (toplevel && readbuf1_empty())
Bram Moolenaarf82a2d22010-12-17 18:53:01 +0100656 set_vcount_ca(&ca, &set_prevcount);
Bram Moolenaarf13249a2007-10-14 15:16:27 +0000657#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 if (ctrl_w)
659 {
660 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100661 ++allow_keys; // no mapping for nchar, but keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100663 ++no_zero_mapping; // don't map zero here
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000664 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 --no_zero_mapping;
667 if (ctrl_w)
668 {
669 --no_mapping;
670 --allow_keys;
671 }
672#ifdef FEAT_CMDL_INFO
673 need_flushbuf |= add_to_showcmd(c);
674#endif
675 }
676
677 /*
678 * If we got CTRL-W there may be a/another count
679 */
680 if (c == Ctrl_W && !ctrl_w && oap->op_type == OP_NOP)
681 {
682 ctrl_w = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100683 ca.opcount = ca.count0; // remember first count
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 ca.count0 = 0;
685 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100686 ++allow_keys; // no mapping for nchar, but keys
687 c = plain_vgetc(); // get next character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 LANGMAP_ADJUST(c, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 --no_mapping;
690 --allow_keys;
691#ifdef FEAT_CMDL_INFO
692 need_flushbuf |= add_to_showcmd(c);
693#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100694 goto getcount; // jump back
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 }
696 }
697
Bram Moolenaara983fe92008-07-31 20:04:27 +0000698 if (c == K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100700 // Save the count values so that ca.opcount and ca.count0 are exactly
701 // the same when coming back here after handling K_CURSORHOLD.
Bram Moolenaara983fe92008-07-31 20:04:27 +0000702 oap->prev_opcount = ca.opcount;
703 oap->prev_count0 = ca.count0;
704 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100705 else if (ca.opcount != 0)
Bram Moolenaara983fe92008-07-31 20:04:27 +0000706 {
707 /*
708 * If we're in the middle of an operator (including after entering a
709 * yank buffer with '"') AND we had a count before the operator, then
710 * that count overrides the current value of ca.count0.
711 * What this means effectively, is that commands like "3dw" get turned
712 * into "d3w" which makes things fall into place pretty neatly.
713 * If you give a count before AND after the operator, they are
714 * multiplied.
715 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 if (ca.count0)
Bram Moolenaar03725c52021-11-24 12:17:53 +0000717 {
718 if (ca.opcount >= 999999999L / ca.count0)
719 ca.count0 = 999999999L;
720 else
721 ca.count0 *= ca.opcount;
722 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 else
724 ca.count0 = ca.opcount;
725 }
726
727 /*
728 * Always remember the count. It will be set to zero (on the next call,
729 * above) when there is no pending operator.
730 * When called from main(), save the count for use by the "count" built-in
731 * variable.
732 */
733 ca.opcount = ca.count0;
734 ca.count1 = (ca.count0 == 0 ? 1 : ca.count0);
735
736#ifdef FEAT_EVAL
737 /*
738 * Only set v:count when called from main() and not a stuffed command.
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100739 * Do set it for redo.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +0100741 if (toplevel && readbuf1_empty())
Bram Moolenaar8df74be2008-11-20 15:12:02 +0000742 set_vcount(ca.count0, ca.count1, set_prevcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743#endif
744
745 /*
746 * Find the command character in the table of commands.
747 * For CTRL-W we already got nchar when looking for a count.
748 */
749 if (ctrl_w)
750 {
751 ca.nchar = c;
752 ca.cmdchar = Ctrl_W;
753 }
754 else
755 ca.cmdchar = c;
756 idx = find_command(ca.cmdchar);
757 if (idx < 0)
758 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100759 // Not a known command: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 clearopbeep(oap);
761 goto normal_end;
762 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +0000763
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000764 if (text_locked() && (nv_cmds[idx].cmd_flags & NV_NCW))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100766 // This command is not allowed while editing a cmdline: beep.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 clearopbeep(oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000768 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 goto normal_end;
770 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000771 if ((nv_cmds[idx].cmd_flags & NV_NCW) && curbuf_locked())
772 goto normal_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 /*
775 * In Visual/Select mode, a few keys are handled in a special way.
776 */
777 if (VIsual_active)
778 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100779 // when 'keymodel' contains "stopsel" may stop Select/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 if (km_stopsel
781 && (nv_cmds[idx].cmd_flags & NV_STS)
782 && !(mod_mask & MOD_MASK_SHIFT))
783 {
784 end_visual_mode();
785 redraw_curbuf_later(INVERTED);
786 }
787
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100788 // Keys that work different when 'keymodel' contains "startsel"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 if (km_startsel)
790 {
791 if (nv_cmds[idx].cmd_flags & NV_SS)
792 {
793 unshift_special(&ca);
794 idx = find_command(ca.cmdchar);
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000795 if (idx < 0)
796 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100797 // Just in case
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000798 clearopbeep(oap);
799 goto normal_end;
800 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 }
802 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
803 && (mod_mask & MOD_MASK_SHIFT))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 mod_mask &= ~MOD_MASK_SHIFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 }
806 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807
808#ifdef FEAT_RIGHTLEFT
809 if (curwin->w_p_rl && KeyTyped && !KeyStuffed
810 && (nv_cmds[idx].cmd_flags & NV_RL))
811 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100812 // Invert horizontal movements and operations. Only when typed by the
813 // user directly, not when the result of a mapping or "x" translated
814 // to "dl".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 switch (ca.cmdchar)
816 {
817 case 'l': ca.cmdchar = 'h'; break;
818 case K_RIGHT: ca.cmdchar = K_LEFT; break;
819 case K_S_RIGHT: ca.cmdchar = K_S_LEFT; break;
820 case K_C_RIGHT: ca.cmdchar = K_C_LEFT; break;
821 case 'h': ca.cmdchar = 'l'; break;
822 case K_LEFT: ca.cmdchar = K_RIGHT; break;
823 case K_S_LEFT: ca.cmdchar = K_S_RIGHT; break;
824 case K_C_LEFT: ca.cmdchar = K_C_RIGHT; break;
825 case '>': ca.cmdchar = '<'; break;
826 case '<': ca.cmdchar = '>'; break;
827 }
828 idx = find_command(ca.cmdchar);
829 }
830#endif
831
832 /*
833 * Get an additional character if we need one.
834 */
835 if ((nv_cmds[idx].cmd_flags & NV_NCH)
836 && (((nv_cmds[idx].cmd_flags & NV_NCH_NOP) == NV_NCH_NOP
837 && oap->op_type == OP_NOP)
838 || (nv_cmds[idx].cmd_flags & NV_NCH_ALW) == NV_NCH_ALW
839 || (ca.cmdchar == 'q'
840 && oap->op_type == OP_NOP
Bram Moolenaar0b6d9112018-05-22 20:35:17 +0200841 && reg_recording == 0
842 && reg_executing == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 || ((ca.cmdchar == 'a' || ca.cmdchar == 'i')
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100844 && (oap->op_type != OP_NOP || VIsual_active))))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 {
846 int *cp;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100847 int repl = FALSE; // get character for replace mode
848 int lit = FALSE; // get extra character literally
849 int langmap_active = FALSE; // using :lmap mappings
850 int lang; // getting a text character
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100851#ifdef HAVE_INPUT_METHOD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100852 int save_smd; // saved value of p_smd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853#endif
854
855 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100856 ++allow_keys; // no mapping for nchar, but allow key codes
857 // Don't generate a CursorHold event here, most commands can't handle
858 // it, e.g., nv_replace(), nv_csearch().
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +0000859 did_cursorhold = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 if (ca.cmdchar == 'g')
861 {
862 /*
863 * For 'g' get the next character now, so that we can check for
864 * "gr", "g'" and "g`".
865 */
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000866 ca.nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 LANGMAP_ADJUST(ca.nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868#ifdef FEAT_CMDL_INFO
869 need_flushbuf |= add_to_showcmd(ca.nchar);
870#endif
871 if (ca.nchar == 'r' || ca.nchar == '\'' || ca.nchar == '`'
Bram Moolenaarba2d44f2013-11-28 19:27:30 +0100872 || ca.nchar == Ctrl_BSL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100874 cp = &ca.extra_char; // need to get a third character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 if (ca.nchar != 'r')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100876 lit = TRUE; // get it literally
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100878 repl = TRUE; // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 }
880 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100881 cp = NULL; // no third character needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 }
883 else
884 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100885 if (ca.cmdchar == 'r') // get it in replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 repl = TRUE;
887 cp = &ca.nchar;
888 }
889 lang = (repl || (nv_cmds[idx].cmd_flags & NV_LANG));
890
891 /*
892 * Get a second or third character.
893 */
894 if (cp != NULL)
895 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 if (repl)
897 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100898 State = REPLACE; // pretend Replace mode
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100899#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100900 ui_cursor_shape(); // show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901#endif
Bram Moolenaar7a641ca2019-10-31 19:55:55 +0100902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 if (lang && curbuf->b_p_iminsert == B_IMODE_LMAP)
904 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100905 // Allow mappings defined with ":lmap".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 --no_mapping;
907 --allow_keys;
908 if (repl)
909 State = LREPLACE;
910 else
911 State = LANGMAP;
912 langmap_active = TRUE;
913 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100914#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 save_smd = p_smd;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100916 p_smd = FALSE; // Don't let the IM code show the mode here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 if (lang && curbuf->b_p_iminsert == B_IMODE_IM)
918 im_set_active(TRUE);
919#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200920 if ((State & INSERT) && !p_ek)
921 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200922#ifdef FEAT_JOB_CHANNEL
923 ch_log_output = TRUE;
924#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200925 // Disable bracketed paste and modifyOtherKeys here, we won't
926 // recognize the escape sequences with 'esckeys' off.
927 out_str(T_BD);
928 out_str(T_CTE);
929 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000931 *cp = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932
Bram Moolenaarca774f62020-08-30 20:46:38 +0200933 if ((State & INSERT) && !p_ek)
934 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200935#ifdef FEAT_JOB_CHANNEL
936 ch_log_output = TRUE;
937#endif
Bram Moolenaarca774f62020-08-30 20:46:38 +0200938 // Re-enable bracketed paste mode and modifyOtherKeys
939 out_str(T_BE);
940 out_str(T_CTI);
941 }
942
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 if (langmap_active)
944 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100945 // Undo the decrement done above
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 ++no_mapping;
947 ++allow_keys;
948 State = NORMAL_BUSY;
949 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100950#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 if (lang)
952 {
953 if (curbuf->b_p_iminsert != B_IMODE_LMAP)
954 im_save_status(&curbuf->b_p_iminsert);
955 im_set_active(FALSE);
956 }
957 p_smd = save_smd;
958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 State = NORMAL_BUSY;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960#ifdef FEAT_CMDL_INFO
961 need_flushbuf |= add_to_showcmd(*cp);
962#endif
963
964 if (!lit)
965 {
966#ifdef FEAT_DIGRAPHS
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100967 // Typing CTRL-K gets a digraph.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 if (*cp == Ctrl_K
969 && ((nv_cmds[idx].cmd_flags & NV_LANG)
970 || cp == &ca.extra_char)
971 && vim_strchr(p_cpo, CPO_DIGRAPH) == NULL)
972 {
973 c = get_digraph(FALSE);
974 if (c > 0)
975 {
976 *cp = c;
977# ifdef FEAT_CMDL_INFO
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100978 // Guessing how to update showcmd here...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 del_from_showcmd(3);
980 need_flushbuf |= add_to_showcmd(*cp);
981# endif
982 }
983 }
984#endif
985
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100986 // adjust chars > 127, except after "tTfFr" commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 LANGMAP_ADJUST(*cp, !lang);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e0ce172019-12-05 20:12:41 +0100989 // adjust Hebrew mapped char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 if (p_hkmap && lang && KeyTyped)
991 *cp = hkmap(*cp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992#endif
993 }
994
995 /*
996 * When the next character is CTRL-\ a following CTRL-N means the
997 * command is aborted and we go to Normal mode.
998 */
999 if (cp == &ca.extra_char
1000 && ca.nchar == Ctrl_BSL
1001 && (ca.extra_char == Ctrl_N || ca.extra_char == Ctrl_G))
1002 {
1003 ca.cmdchar = Ctrl_BSL;
1004 ca.nchar = ca.extra_char;
1005 idx = find_command(ca.cmdchar);
1006 }
Bram Moolenaar12a753a2012-10-23 05:08:53 +02001007 else if ((ca.nchar == 'n' || ca.nchar == 'N') && ca.cmdchar == 'g')
Bram Moolenaarf00dc262012-10-21 03:54:33 +02001008 ca.oap->op_type = get_op_type(*cp, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 else if (*cp == Ctrl_BSL)
1010 {
1011 long towait = (p_ttm >= 0 ? p_ttm : p_tm);
1012
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001013 // There is a busy wait here when typing "f<C-\>" and then
1014 // something different from CTRL-N. Can't be avoided.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 while ((c = vpeekc()) <= 0 && towait > 0L)
1016 {
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01001017 do_sleep(towait > 50L ? 50L : towait, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 towait -= 50L;
1019 }
1020 if (c > 0)
1021 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001022 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 if (c != Ctrl_N && c != Ctrl_G)
1024 vungetc(c);
1025 else
1026 {
1027 ca.cmdchar = Ctrl_BSL;
1028 ca.nchar = c;
1029 idx = find_command(ca.cmdchar);
1030 }
1031 }
1032 }
1033
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001034 // When getting a text character and the next character is a
1035 // multi-byte character, it could be a composing character.
1036 // However, don't wait for it to arrive. Also, do enable mapping,
1037 // because if it's put back with vungetc() it's too late to apply
1038 // mapping.
Bram Moolenaar4f880622014-07-23 12:31:20 +02001039 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 while (enc_utf8 && lang && (c = vpeekc()) > 0
1041 && (c >= 0x100 || MB_BYTE2LEN(vpeekc()) > 1))
1042 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001043 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 if (!utf_iscomposing(c))
1045 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001046 vungetc(c); // it wasn't, put it back
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 break;
1048 }
1049 else if (ca.ncharC1 == 0)
1050 ca.ncharC1 = c;
1051 else
1052 ca.ncharC2 = c;
1053 }
Bram Moolenaar4f880622014-07-23 12:31:20 +02001054 ++no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 }
1056 --no_mapping;
1057 --allow_keys;
1058 }
1059
1060#ifdef FEAT_CMDL_INFO
1061 /*
1062 * Flush the showcmd characters onto the screen so we can see them while
1063 * the command is being executed. Only do this when the shown command was
1064 * actually displayed, otherwise this will slow down a lot when executing
1065 * mappings.
1066 */
1067 if (need_flushbuf)
1068 out_flush();
1069#endif
Bram Moolenaard9205ca2008-10-02 20:55:54 +00001070 if (ca.cmdchar != K_IGNORE)
Bram Moolenaar08815a12020-07-20 23:10:56 +02001071 {
1072 if (ex_normal_busy)
1073 did_cursorhold = save_did_cursorhold;
1074 else
1075 did_cursorhold = FALSE;
1076 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077
1078 State = NORMAL;
1079
1080 if (ca.nchar == ESC)
1081 {
1082 clearop(oap);
1083 if (restart_edit == 0 && goto_im())
1084 restart_edit = 'a';
1085 goto normal_end;
1086 }
1087
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001088 if (ca.cmdchar != K_IGNORE)
1089 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001090 msg_didout = FALSE; // don't scroll screen up for normal command
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001091 msg_col = 0;
1092 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001094 old_pos = curwin->w_cursor; // remember where cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001096 // When 'keymodel' contains "startsel" some keys start Select/Visual
1097 // mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 if (!VIsual_active && km_startsel)
1099 {
1100 if (nv_cmds[idx].cmd_flags & NV_SS)
1101 {
1102 start_selection();
1103 unshift_special(&ca);
1104 idx = find_command(ca.cmdchar);
1105 }
1106 else if ((nv_cmds[idx].cmd_flags & NV_SSS)
1107 && (mod_mask & MOD_MASK_SHIFT))
1108 {
1109 start_selection();
1110 mod_mask &= ~MOD_MASK_SHIFT;
1111 }
1112 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113
1114 /*
1115 * Execute the command!
1116 * Call the command function found in the commands table.
1117 */
1118 ca.arg = nv_cmds[idx].cmd_arg;
1119 (nv_cmds[idx].cmd_func)(&ca);
1120
1121 /*
1122 * If we didn't start or finish an operator, reset oap->regname, unless we
1123 * need it later.
1124 */
1125 if (!finish_op
1126 && !oap->op_type
1127 && (idx < 0 || !(nv_cmds[idx].cmd_flags & NV_KEEPREG)))
1128 {
1129 clearop(oap);
1130#ifdef FEAT_EVAL
Bram Moolenaar439c0362020-06-06 15:58:03 +02001131 reset_reg_var();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132#endif
1133 }
1134
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001135 // Get the length of mapped chars again after typing a count, second
1136 // character or "z333<cr>".
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001137 if (old_mapped_len > 0)
1138 old_mapped_len = typebuf_maplen();
1139
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 /*
Bram Moolenaar1ad72c82021-05-04 21:56:28 +02001141 * If an operation is pending, handle it. But not for K_IGNORE or
1142 * K_MOUSEMOVE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 */
Bram Moolenaar1ad72c82021-05-04 21:56:28 +02001144 if (ca.cmdchar != K_IGNORE && ca.cmdchar != K_MOUSEMOVE)
Bram Moolenaarfa5612c2019-12-01 19:37:07 +01001145 do_pending_operator(&ca, old_col, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146
1147 /*
1148 * Wait for a moment when a message is displayed that will be overwritten
1149 * by the mode message.
1150 * In Visual mode and with "^O" in Insert mode, a short message will be
1151 * overwritten by the mode message. Wait a bit, until a key is hit.
1152 * In Visual mode, it's more important to keep the Visual area updated
1153 * than keeping a message (e.g. from a /pat search).
1154 * Only do this if the command was typed, not from a mapping.
1155 * Don't wait when emsg_silent is non-zero.
1156 * Also wait a bit after an error message, e.g. for "^O:".
1157 * Don't redraw the screen, it would remove the message.
1158 */
1159 if ( ((p_smd
Bram Moolenaar09df3122006-01-23 22:23:09 +00001160 && msg_silent == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 && (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 || (VIsual_active
1163 && old_pos.lnum == curwin->w_cursor.lnum
1164 && old_pos.col == curwin->w_cursor.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 )
1166 && (clear_cmdline
1167 || redraw_cmdline)
1168 && (msg_didout || (msg_didany && msg_scroll))
1169 && !msg_nowait
1170 && KeyTyped)
1171 || (restart_edit != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 && (msg_scroll
1174 || emsg_on_display)))
1175 && oap->regname == 0
1176 && !(ca.retval & CA_COMMAND_BUSY)
1177 && stuff_empty()
1178 && typebuf_typed()
1179 && emsg_silent == 0
Bram Moolenaar28ee8922020-10-28 20:20:00 +01001180 && !in_assert_fails
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 && !did_wait_return
1182 && oap->op_type == OP_NOP)
1183 {
1184 int save_State = State;
1185
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001186 // Draw the cursor with the right shape here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 if (restart_edit != 0)
1188 State = INSERT;
1189
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001190 // If need to redraw, and there is a "keep_msg", redraw before the
1191 // delay
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 if (must_redraw && keep_msg != NULL && !emsg_on_display)
1193 {
1194 char_u *kmsg;
1195
1196 kmsg = keep_msg;
1197 keep_msg = NULL;
Bram Moolenaar5715b312020-03-16 22:08:45 +01001198 // Showmode() will clear keep_msg, but we want to use it anyway.
1199 // First update w_topline.
1200 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 update_screen(0);
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001202 // now reset it, otherwise it's put in the history again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 keep_msg = kmsg;
Bram Moolenaare5fbd732019-09-09 20:04:13 +02001204
1205 kmsg = vim_strsave(keep_msg);
1206 if (kmsg != NULL)
1207 {
1208 msg_attr((char *)kmsg, keep_msg_attr);
1209 vim_free(kmsg);
1210 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 }
1212 setcursor();
Bram Moolenaar5715b312020-03-16 22:08:45 +01001213#ifdef CURSOR_SHAPE
1214 ui_cursor_shape(); // may show different cursor shape
1215#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 cursor_on();
1217 out_flush();
1218 if (msg_scroll || emsg_on_display)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001219 ui_delay(1003L, TRUE); // wait at least one second
1220 ui_delay(3003L, FALSE); // wait up to three seconds
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 State = save_State;
1222
1223 msg_scroll = FALSE;
1224 emsg_on_display = FALSE;
1225 }
1226
1227 /*
1228 * Finish up after executing a Normal mode command.
1229 */
1230normal_end:
1231
1232 msg_nowait = FALSE;
1233
Bram Moolenaarcc613032020-06-07 21:31:18 +02001234#ifdef FEAT_EVAL
1235 if (finish_op)
1236 reset_reg_var();
1237#endif
1238
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001239 // Reset finish_op, in case it was set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240#ifdef CURSOR_SHAPE
1241 c = finish_op;
1242#endif
1243 finish_op = FALSE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001244 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245#ifdef CURSOR_SHAPE
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001246 // Redraw the cursor with another shape, if we were in Operator-pending
1247 // mode or did a replace command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 if (c || ca.cmdchar == 'r')
1249 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001250 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251# ifdef FEAT_MOUSESHAPE
1252 update_mouseshape(-1);
1253# endif
1254 }
1255#endif
1256
1257#ifdef FEAT_CMDL_INFO
Bram Moolenaara983fe92008-07-31 20:04:27 +00001258 if (oap->op_type == OP_NOP && oap->regname == 0
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001259 && ca.cmdchar != K_CURSORHOLD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 clear_showcmd();
1261#endif
1262
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001263 checkpcmark(); // check if we moved since setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 vim_free(ca.searchbuf);
1265
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 if (has_mbyte)
1267 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269 if (curwin->w_p_scb && toplevel)
1270 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001271 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 do_check_scrollbind(TRUE);
1273 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274
Bram Moolenaar860cae12010-06-05 23:22:07 +02001275 if (curwin->w_p_crb && toplevel)
1276 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001277 validate_cursor(); // may need to update w_leftcol
Bram Moolenaar860cae12010-06-05 23:22:07 +02001278 do_check_cursorbind();
1279 }
Bram Moolenaar860cae12010-06-05 23:22:07 +02001280
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001281#ifdef FEAT_TERMINAL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001282 // don't go to Insert mode if a terminal has a running job
Bram Moolenaareef9add2017-09-16 15:38:04 +02001283 if (term_job_running(curbuf->b_term))
Bram Moolenaar6fe15bb2017-08-16 21:09:18 +02001284 restart_edit = 0;
1285#endif
1286
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 /*
1288 * May restart edit(), if we got here with CTRL-O in Insert mode (but not
1289 * if still inside a mapping that started in Visual mode).
1290 * May switch from Visual to Select mode after CTRL-O command.
1291 */
1292 if ( oap->op_type == OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 && ((restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
1294 || restart_VIsual_select == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 && !(ca.retval & CA_COMMAND_BUSY)
1296 && stuff_empty()
1297 && oap->regname == 0)
1298 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 if (restart_VIsual_select == 1)
1300 {
1301 VIsual_select = TRUE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001302 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 showmode();
1304 restart_VIsual_select = 0;
1305 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001306 if (restart_edit != 0 && !VIsual_active && old_mapped_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 (void)edit(restart_edit, FALSE, 1L);
1308 }
1309
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 if (restart_VIsual_select == 2)
1311 restart_VIsual_select = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001313 // Save count before an operator for next time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 opcount = ca.opcount;
1315}
1316
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001317#ifdef FEAT_EVAL
1318/*
1319 * Set v:count and v:count1 according to "cap".
1320 * Set v:prevcount only when "set_prevcount" is TRUE.
1321 */
1322 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001323set_vcount_ca(cmdarg_T *cap, int *set_prevcount)
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001324{
1325 long count = cap->count0;
1326
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001327 // multiply with cap->opcount the same way as above
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001328 if (cap->opcount != 0)
1329 count = cap->opcount * (count == 0 ? 1 : count);
1330 set_vcount(count, count == 0 ? 1 : count, *set_prevcount);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001331 *set_prevcount = FALSE; // only set v:prevcount once
Bram Moolenaarf82a2d22010-12-17 18:53:01 +01001332}
1333#endif
1334
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335/*
Bram Moolenaar5715b312020-03-16 22:08:45 +01001336 * Check if highlighting for Visual mode is possible, give a warning message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 * if not.
1338 */
1339 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001340check_visual_highlight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341{
1342 static int did_check = FALSE;
1343
1344 if (full_screen)
1345 {
Bram Moolenaar8820b482017-03-16 17:23:31 +01001346 if (!did_check && HL_ATTR(HLF_V) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001347 msg(_("Warning: terminal cannot highlight"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 did_check = TRUE;
1349 }
1350}
1351
Bram Moolenaarfccbf062020-11-26 20:34:00 +01001352#if defined(FEAT_CLIPBOARD) && defined(FEAT_EVAL)
1353/*
1354 * Call yank_do_autocmd() for "regname".
1355 */
1356 static void
1357call_yank_do_autocmd(int regname)
1358{
1359 oparg_T oa;
1360 yankreg_T *reg;
1361
1362 clear_oparg(&oa);
1363 oa.regname = regname;
1364 oa.op_type = OP_YANK;
1365 oa.is_VIsual = TRUE;
1366 reg = get_register(regname, TRUE);
1367 yank_do_autocmd(&oa, reg);
1368 free_register(reg);
1369}
1370#endif
1371
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372/*
Bram Moolenaar66fa2712006-01-22 23:22:22 +00001373 * End Visual mode.
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001374 * This function or the next should ALWAYS be called to end Visual mode, except
1375 * from do_pending_operator().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 */
1377 void
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001378end_visual_mode()
1379{
1380 end_visual_mode_keep_button();
1381 reset_held_button();
1382}
1383
1384 void
1385end_visual_mode_keep_button()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386{
1387#ifdef FEAT_CLIPBOARD
1388 /*
1389 * If we are using the clipboard, then remember what was selected in case
1390 * we need to paste it somewhere while we still own the selection.
1391 * Only do this when the clipboard is already owned. Don't want to grab
1392 * the selection when hitting ESC.
1393 */
1394 if (clip_star.available && clip_star.owned)
1395 clip_auto_select();
Bram Moolenaarfccbf062020-11-26 20:34:00 +01001396
1397# if defined(FEAT_EVAL)
1398 // Emit a TextYankPost for the automatic copy of the selection into the
1399 // star and/or plus register.
1400 if (has_textyankpost())
1401 {
1402 if (clip_isautosel_star())
1403 call_yank_do_autocmd('*');
1404 if (clip_isautosel_plus())
1405 call_yank_do_autocmd('+');
1406 }
1407# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408#endif
1409
1410 VIsual_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 setmouse();
1412 mouse_dragging = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001414 // Save the current VIsual area for '< and '> marks, and "gv"
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001415 curbuf->b_visual.vi_mode = VIsual_mode;
1416 curbuf->b_visual.vi_start = VIsual;
1417 curbuf->b_visual.vi_end = curwin->w_cursor;
1418 curbuf->b_visual.vi_curswant = curwin->w_curswant;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419#ifdef FEAT_EVAL
1420 curbuf->b_visual_mode_eval = VIsual_mode;
1421#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 if (!virtual_active())
1423 curwin->w_cursor.coladd = 0;
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001424 may_clear_cmdline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001426 adjust_cursor_eol();
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01001427 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428}
1429
1430/*
1431 * Reset VIsual_active and VIsual_reselect.
1432 */
1433 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001434reset_VIsual_and_resel(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435{
1436 if (VIsual_active)
1437 {
1438 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001439 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 }
1441 VIsual_reselect = FALSE;
1442}
1443
1444/*
1445 * Reset VIsual_active and VIsual_reselect if it's set.
1446 */
1447 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001448reset_VIsual(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449{
1450 if (VIsual_active)
1451 {
1452 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001453 redraw_curbuf_later(INVERTED); // delete the inversion later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 VIsual_reselect = FALSE;
1455 }
1456}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001458 void
1459restore_visual_mode(void)
1460{
1461 if (VIsual_mode_orig != NUL)
1462 {
1463 curbuf->b_visual.vi_mode = VIsual_mode_orig;
1464 VIsual_mode_orig = NUL;
1465 }
1466}
1467
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468/*
1469 * Check for a balloon-eval special item to include when searching for an
1470 * identifier. When "dir" is BACKWARD "ptr[-1]" must be valid!
1471 * Returns TRUE if the character at "*ptr" should be included.
1472 * "dir" is FORWARD or BACKWARD, the direction of searching.
1473 * "*colp" is in/decremented if "ptr[-dir]" should also be included.
1474 * "bnp" points to a counter for square brackets.
1475 */
1476 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001477find_is_eval_item(
1478 char_u *ptr,
1479 int *colp,
1480 int *bnp,
1481 int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001483 // Accept everything inside [].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 if ((*ptr == ']' && dir == BACKWARD) || (*ptr == '[' && dir == FORWARD))
1485 ++*bnp;
1486 if (*bnp > 0)
1487 {
1488 if ((*ptr == '[' && dir == BACKWARD) || (*ptr == ']' && dir == FORWARD))
1489 --*bnp;
1490 return TRUE;
1491 }
1492
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001493 // skip over "s.var"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 if (*ptr == '.')
1495 return TRUE;
1496
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001497 // two-character item: s->var
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 if (ptr[dir == BACKWARD ? 0 : 1] == '>'
1499 && ptr[dir == BACKWARD ? -1 : 0] == '-')
1500 {
1501 *colp += dir;
1502 return TRUE;
1503 }
1504 return FALSE;
1505}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506
1507/*
1508 * Find the identifier under or to the right of the cursor.
1509 * "find_type" can have one of three values:
1510 * FIND_IDENT: find an identifier (keyword)
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001511 * FIND_STRING: find any non-white text
1512 * FIND_IDENT + FIND_STRING: find any non-white text, identifier preferred.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001513 * FIND_EVAL: find text useful for C program debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 *
1515 * There are three steps:
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001516 * 1. Search forward for the start of an identifier/text. Doesn't move if
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 * already on one.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001518 * 2. Search backward for the start of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 * This doesn't match the real Vi but I like it a little better and it
1520 * shouldn't bother anyone.
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001521 * 3. Search forward to the end of this identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 * When FIND_IDENT isn't defined, we backup until a blank.
1523 *
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001524 * Returns the length of the text, or zero if no text is found.
1525 * If text is found, a pointer to the text is put in "*text". This
1526 * points into the current buffer line and is not always NUL terminated.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 */
1528 int
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001529find_ident_under_cursor(char_u **text, int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530{
1531 return find_ident_at_pos(curwin, curwin->w_cursor.lnum,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001532 curwin->w_cursor.col, text, NULL, find_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533}
1534
1535/*
1536 * Like find_ident_under_cursor(), but for any window and any position.
1537 * However: Uses 'iskeyword' from the current window!.
1538 */
1539 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001540find_ident_at_pos(
1541 win_T *wp,
1542 linenr_T lnum,
1543 colnr_T startcol,
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001544 char_u **text,
1545 int *textcol, // column where "text" starts, can be NULL
Bram Moolenaar9b578142016-01-30 19:39:49 +01001546 int find_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547{
1548 char_u *ptr;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001549 int col = 0; // init to shut up GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 int this_class = 0;
1552 int prev_class;
1553 int prevcol;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001554 int bn = 0; // bracket nesting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555
1556 /*
1557 * if i == 0: try to find an identifier
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001558 * if i == 1: try to find any non-white text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 */
1560 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
1561 for (i = (find_type & FIND_IDENT) ? 0 : 1; i < 2; ++i)
1562 {
1563 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001564 * 1. skip to start of identifier/text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 */
1566 col = startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 if (has_mbyte)
1568 {
1569 while (ptr[col] != NUL)
1570 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001571 // Stop at a ']' to evaluate "a[x]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1573 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 this_class = mb_get_class(ptr + col);
1575 if (this_class != 0 && (i == 1 || this_class != 1))
1576 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001577 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 }
1579 }
1580 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 while (ptr[col] != NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01001582 && (i == 0 ? !vim_iswordc(ptr[col]) : VIM_ISWHITE(ptr[col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 && (!(find_type & FIND_EVAL) || ptr[col] != ']')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 )
1585 ++col;
1586
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001587 // When starting on a ']' count it, so that we include the '['.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 bn = ptr[col] == ']';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589
1590 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001591 * 2. Back up to start of identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 if (has_mbyte)
1594 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001595 // Remember class of character under cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 if ((find_type & FIND_EVAL) && ptr[col] == ']')
1597 this_class = mb_get_class((char_u *)"a");
1598 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 this_class = mb_get_class(ptr + col);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001600 while (col > 0 && this_class != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 {
1602 prevcol = col - 1 - (*mb_head_off)(ptr, ptr + col - 1);
1603 prev_class = mb_get_class(ptr + prevcol);
1604 if (this_class != prev_class
1605 && (i == 0
1606 || prev_class == 0
1607 || (find_type & FIND_IDENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 && (!(find_type & FIND_EVAL)
1609 || prevcol == 0
1610 || !find_is_eval_item(ptr + prevcol, &prevcol,
1611 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 )
1613 break;
1614 col = prevcol;
1615 }
1616
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001617 // If we don't want just any old text, or we've found an
1618 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 if (this_class > 2)
1620 this_class = 2;
1621 if (!(find_type & FIND_STRING) || this_class == 2)
1622 break;
1623 }
1624 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 {
1626 while (col > 0
1627 && ((i == 0
1628 ? vim_iswordc(ptr[col - 1])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001629 : (!VIM_ISWHITE(ptr[col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 && (!(find_type & FIND_IDENT)
1631 || !vim_iswordc(ptr[col - 1]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 || ((find_type & FIND_EVAL)
1633 && col > 1
1634 && find_is_eval_item(ptr + col - 1, &col,
1635 &bn, BACKWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636 ))
1637 --col;
1638
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001639 // If we don't want just any old text, or we've found an
1640 // identifier, stop searching.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 if (!(find_type & FIND_STRING) || vim_iswordc(ptr[col]))
1642 break;
1643 }
1644 }
1645
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001646 if (ptr[col] == NUL || (i == 0
1647 && (has_mbyte ? this_class != 2 : !vim_iswordc(ptr[col]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001649 // didn't find an identifier or text
Bram Moolenaar17627312019-06-02 19:53:44 +02001650 if ((find_type & FIND_NOERROR) == 0)
1651 {
1652 if (find_type & FIND_STRING)
Bram Moolenaareaaac012022-01-02 17:00:40 +00001653 emsg(_(e_no_string_under_cursor));
Bram Moolenaar17627312019-06-02 19:53:44 +02001654 else
Bram Moolenaareaaac012022-01-02 17:00:40 +00001655 emsg(_(e_no_identifier_under_cursor));
Bram Moolenaar17627312019-06-02 19:53:44 +02001656 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 return 0;
1658 }
1659 ptr += col;
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001660 *text = ptr;
1661 if (textcol != NULL)
1662 *textcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663
1664 /*
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001665 * 3. Find the end if the identifier/text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 bn = 0;
1668 startcol -= col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 if (has_mbyte)
1671 {
Bram Moolenaar7ba343e2019-07-09 23:22:15 +02001672 // Search for point of changing multibyte character class.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 this_class = mb_get_class(ptr);
1674 while (ptr[col] != NUL
1675 && ((i == 0 ? mb_get_class(ptr + col) == this_class
1676 : mb_get_class(ptr + col) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 || ((find_type & FIND_EVAL)
1678 && col <= (int)startcol
1679 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680 ))
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001681 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 }
1683 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 while ((i == 0 ? vim_iswordc(ptr[col])
Bram Moolenaar1c465442017-03-12 20:10:05 +01001685 : (ptr[col] != NUL && !VIM_ISWHITE(ptr[col])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 || ((find_type & FIND_EVAL)
1687 && col <= (int)startcol
1688 && find_is_eval_item(ptr + col, &col, &bn, FORWARD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 ++col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691
1692 return col;
1693}
1694
1695/*
1696 * Prepare for redo of a normal command.
1697 */
1698 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001699prep_redo_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700{
1701 prep_redo(cap->oap->regname, cap->count0,
1702 NUL, cap->cmdchar, NUL, NUL, cap->nchar);
1703}
1704
1705/*
1706 * Prepare for redo of any command.
1707 * Note that only the last argument can be a multi-byte char.
1708 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001709 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001710prep_redo(
1711 int regname,
1712 long num,
1713 int cmd1,
1714 int cmd2,
1715 int cmd3,
1716 int cmd4,
1717 int cmd5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718{
Bram Moolenaar2228cd72021-11-22 14:16:08 +00001719 prep_redo_num2(regname, num, cmd1, cmd2, 0L, cmd3, cmd4, cmd5);
1720}
1721
1722/*
1723 * Prepare for redo of any command with extra count after "cmd2".
1724 */
1725 void
1726prep_redo_num2(
1727 int regname,
1728 long num1,
1729 int cmd1,
1730 int cmd2,
1731 long num2,
1732 int cmd3,
1733 int cmd4,
1734 int cmd5)
1735{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 ResetRedobuff();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001737 if (regname != 0) // yank from specified buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 {
1739 AppendCharToRedobuff('"');
1740 AppendCharToRedobuff(regname);
1741 }
Bram Moolenaar2228cd72021-11-22 14:16:08 +00001742 if (num1 != 0)
1743 AppendNumberToRedobuff(num1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 if (cmd1 != NUL)
1745 AppendCharToRedobuff(cmd1);
1746 if (cmd2 != NUL)
1747 AppendCharToRedobuff(cmd2);
Bram Moolenaar2228cd72021-11-22 14:16:08 +00001748 if (num2 != 0)
1749 AppendNumberToRedobuff(num2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 if (cmd3 != NUL)
1751 AppendCharToRedobuff(cmd3);
1752 if (cmd4 != NUL)
1753 AppendCharToRedobuff(cmd4);
1754 if (cmd5 != NUL)
1755 AppendCharToRedobuff(cmd5);
1756}
1757
1758/*
1759 * check for operator active and clear it
1760 *
1761 * return TRUE if operator was active
1762 */
1763 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001764checkclearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765{
1766 if (oap->op_type == OP_NOP)
1767 return FALSE;
1768 clearopbeep(oap);
1769 return TRUE;
1770}
1771
1772/*
Bram Moolenaarc980de32007-05-06 11:59:04 +00001773 * Check for operator or Visual active. Clear active operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 *
Bram Moolenaarc980de32007-05-06 11:59:04 +00001775 * Return TRUE if operator or Visual was active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 */
1777 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001778checkclearopq(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001780 if (oap->op_type == OP_NOP && !VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 return FALSE;
1782 clearopbeep(oap);
1783 return TRUE;
1784}
1785
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001786 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001787clearop(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788{
1789 oap->op_type = OP_NOP;
1790 oap->regname = 0;
1791 oap->motion_force = NUL;
1792 oap->use_reg_one = FALSE;
Bram Moolenaar21492742021-06-04 21:57:57 +02001793 motion_force = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794}
1795
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001796 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001797clearopbeep(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798{
1799 clearop(oap);
1800 beep_flush();
1801}
1802
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803/*
1804 * Remove the shift modifier from a special key.
1805 */
1806 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001807unshift_special(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808{
1809 switch (cap->cmdchar)
1810 {
1811 case K_S_RIGHT: cap->cmdchar = K_RIGHT; break;
1812 case K_S_LEFT: cap->cmdchar = K_LEFT; break;
1813 case K_S_UP: cap->cmdchar = K_UP; break;
1814 case K_S_DOWN: cap->cmdchar = K_DOWN; break;
1815 case K_S_HOME: cap->cmdchar = K_HOME; break;
1816 case K_S_END: cap->cmdchar = K_END; break;
1817 }
1818 cap->cmdchar = simplify_key(cap->cmdchar, &mod_mask);
1819}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001821/*
1822 * If the mode is currently displayed clear the command line or update the
1823 * command displayed.
1824 */
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001825 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001826may_clear_cmdline(void)
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001827{
1828 if (mode_displayed)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001829 clear_cmdline = TRUE; // unshow visual mode later
Bram Moolenaar0bbcb5c2015-08-04 19:18:52 +02001830#ifdef FEAT_CMDL_INFO
1831 else
1832 clear_showcmd();
1833#endif
1834}
1835
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836#if defined(FEAT_CMDL_INFO) || defined(PROTO)
1837/*
1838 * Routines for displaying a partly typed command
1839 */
1840
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001841#define SHOWCMD_BUFLEN SHOWCMD_COLS + 1 + 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842static char_u showcmd_buf[SHOWCMD_BUFLEN];
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001843static char_u old_showcmd_buf[SHOWCMD_BUFLEN]; // For push_showcmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844static int showcmd_is_clear = TRUE;
1845static int showcmd_visual = FALSE;
1846
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001847static void display_showcmd(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848
1849 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001850clear_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851{
1852 if (!p_sc)
1853 return;
1854
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 if (VIsual_active && !char_avail())
1856 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001857 int cursor_bot = LT_POS(VIsual, curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 long lines;
1859 colnr_T leftcol, rightcol;
1860 linenr_T top, bot;
1861
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001862 // Show the size of the Visual area.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001863 if (cursor_bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 {
1865 top = VIsual.lnum;
1866 bot = curwin->w_cursor.lnum;
1867 }
1868 else
1869 {
1870 top = curwin->w_cursor.lnum;
1871 bot = VIsual.lnum;
1872 }
1873# ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001874 // Include closed folds as a whole.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001875 (void)hasFolding(top, &top, NULL);
1876 (void)hasFolding(bot, NULL, &bot);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877# endif
1878 lines = bot - top + 1;
1879
1880 if (VIsual_mode == Ctrl_V)
1881 {
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001882# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001883 char_u *saved_sbr = p_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001884 char_u *saved_w_sbr = curwin->w_p_sbr;
Bram Moolenaar81d00072009-04-29 15:41:40 +00001885
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001886 // Make 'sbr' empty for a moment to get the correct size.
Bram Moolenaar81d00072009-04-29 15:41:40 +00001887 p_sbr = empty_option;
Bram Moolenaaree857022019-11-09 23:26:40 +01001888 curwin->w_p_sbr = empty_option;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001889# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol);
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001891# ifdef FEAT_LINEBREAK
Bram Moolenaar81d00072009-04-29 15:41:40 +00001892 p_sbr = saved_sbr;
Bram Moolenaaree857022019-11-09 23:26:40 +01001893 curwin->w_p_sbr = saved_w_sbr;
Bram Moolenaarfdf732e2010-07-18 14:20:35 +02001894# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 sprintf((char *)showcmd_buf, "%ldx%ld", lines,
1896 (long)(rightcol - leftcol + 1));
1897 }
1898 else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum)
1899 sprintf((char *)showcmd_buf, "%ld", lines);
1900 else
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001901 {
1902 char_u *s, *e;
1903 int l;
1904 int bytes = 0;
1905 int chars = 0;
1906
1907 if (cursor_bot)
1908 {
1909 s = ml_get_pos(&VIsual);
1910 e = ml_get_cursor();
1911 }
1912 else
1913 {
1914 s = ml_get_cursor();
1915 e = ml_get_pos(&VIsual);
1916 }
1917 while ((*p_sel != 'e') ? s <= e : s < e)
1918 {
1919 l = (*mb_ptr2len)(s);
1920 if (l == 0)
1921 {
1922 ++bytes;
1923 ++chars;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001924 break; // end of line
Bram Moolenaarf91787c2010-07-17 12:47:16 +02001925 }
1926 bytes += l;
1927 ++chars;
1928 s += l;
1929 }
1930 if (bytes == chars)
1931 sprintf((char *)showcmd_buf, "%d", chars);
1932 else
1933 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes);
1934 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001935 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 showcmd_visual = TRUE;
1937 }
1938 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 {
1940 showcmd_buf[0] = NUL;
1941 showcmd_visual = FALSE;
1942
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001943 // Don't actually display something if there is nothing to clear.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 if (showcmd_is_clear)
1945 return;
1946 }
1947
1948 display_showcmd();
1949}
1950
1951/*
1952 * Add 'c' to string of shown command chars.
1953 * Return TRUE if output has been written (and setcursor() has been called).
1954 */
1955 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001956add_to_showcmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957{
1958 char_u *p;
1959 int old_len;
1960 int extra_len;
1961 int overflow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 int i;
1963 static int ignore[] =
1964 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001965#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 K_VER_SCROLLBAR, K_HOR_SCROLLBAR,
1967 K_LEFTMOUSE_NM, K_LEFTRELEASE_NM,
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001968#endif
Bram Moolenaarec2da362017-01-21 20:04:22 +01001969 K_IGNORE, K_PS,
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001970 K_LEFTMOUSE, K_LEFTDRAG, K_LEFTRELEASE, K_MOUSEMOVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 K_MIDDLEMOUSE, K_MIDDLEDRAG, K_MIDDLERELEASE,
1972 K_RIGHTMOUSE, K_RIGHTDRAG, K_RIGHTRELEASE,
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001973 K_MOUSEDOWN, K_MOUSEUP, K_MOUSELEFT, K_MOUSERIGHT,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 K_X1MOUSE, K_X1DRAG, K_X1RELEASE, K_X2MOUSE, K_X2DRAG, K_X2RELEASE,
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001975 K_CURSORHOLD,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 0
1977 };
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978
Bram Moolenaar09df3122006-01-23 22:23:09 +00001979 if (!p_sc || msg_silent != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 return FALSE;
1981
1982 if (showcmd_visual)
1983 {
1984 showcmd_buf[0] = NUL;
1985 showcmd_visual = FALSE;
1986 }
1987
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01001988 // Ignore keys that are scrollbar updates and mouse clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 if (IS_SPECIAL(c))
1990 for (i = 0; ignore[i] != 0; ++i)
1991 if (ignore[i] == c)
1992 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993
1994 p = transchar(c);
Bram Moolenaar7ba07412013-12-11 14:55:01 +01001995 if (*p == ' ')
1996 STRCPY(p, "<20>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 old_len = (int)STRLEN(showcmd_buf);
1998 extra_len = (int)STRLEN(p);
1999 overflow = old_len + extra_len - SHOWCMD_COLS;
2000 if (overflow > 0)
Bram Moolenaarb0db5692007-08-14 20:54:49 +00002001 mch_memmove(showcmd_buf, showcmd_buf + overflow,
2002 old_len - overflow + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 STRCAT(showcmd_buf, p);
2004
2005 if (char_avail())
2006 return FALSE;
2007
2008 display_showcmd();
2009
2010 return TRUE;
2011}
2012
2013 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002014add_to_showcmd_c(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015{
2016 if (!add_to_showcmd(c))
2017 setcursor();
2018}
2019
2020/*
2021 * Delete 'len' characters from the end of the shown command.
2022 */
2023 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002024del_from_showcmd(int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025{
2026 int old_len;
2027
2028 if (!p_sc)
2029 return;
2030
2031 old_len = (int)STRLEN(showcmd_buf);
2032 if (len > old_len)
2033 len = old_len;
2034 showcmd_buf[old_len - len] = NUL;
2035
2036 if (!char_avail())
2037 display_showcmd();
2038}
2039
2040/*
2041 * push_showcmd() and pop_showcmd() are used when waiting for the user to type
2042 * something and there is a partial mapping.
2043 */
2044 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002045push_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046{
2047 if (p_sc)
2048 STRCPY(old_showcmd_buf, showcmd_buf);
2049}
2050
2051 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002052pop_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053{
2054 if (!p_sc)
2055 return;
2056
2057 STRCPY(showcmd_buf, old_showcmd_buf);
2058
2059 display_showcmd();
2060}
2061
2062 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002063display_showcmd(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064{
2065 int len;
2066
2067 cursor_off();
2068
2069 len = (int)STRLEN(showcmd_buf);
2070 if (len == 0)
2071 showcmd_is_clear = TRUE;
2072 else
2073 {
2074 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0);
2075 showcmd_is_clear = FALSE;
2076 }
2077
2078 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00002079 * clear the rest of an old message by outputting up to SHOWCMD_COLS
2080 * spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 */
2082 screen_puts((char_u *)" " + len, (int)Rows - 1, sc_col + len, 0);
2083
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002084 setcursor(); // put cursor back where it belongs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085}
2086#endif
2087
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088/*
2089 * When "check" is FALSE, prepare for commands that scroll the window.
2090 * When "check" is TRUE, take care of scroll-binding after the window has
2091 * scrolled. Called from normal_cmd() and edit().
2092 */
2093 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002094do_check_scrollbind(int check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095{
2096 static win_T *old_curwin = NULL;
2097 static linenr_T old_topline = 0;
2098#ifdef FEAT_DIFF
2099 static int old_topfill = 0;
2100#endif
2101 static buf_T *old_buf = NULL;
2102 static colnr_T old_leftcol = 0;
2103
2104 if (check && curwin->w_p_scb)
2105 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002106 // If a ":syncbind" command was just used, don't scroll, only reset
2107 // the values.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 if (did_syncbind)
2109 did_syncbind = FALSE;
2110 else if (curwin == old_curwin)
2111 {
2112 /*
2113 * Synchronize other windows, as necessary according to
2114 * 'scrollbind'. Don't do this after an ":edit" command, except
2115 * when 'diff' is set.
2116 */
2117 if ((curwin->w_buffer == old_buf
2118#ifdef FEAT_DIFF
2119 || curwin->w_p_diff
2120#endif
2121 )
2122 && (curwin->w_topline != old_topline
2123#ifdef FEAT_DIFF
2124 || curwin->w_topfill != old_topfill
2125#endif
2126 || curwin->w_leftcol != old_leftcol))
2127 {
2128 check_scrollbind(curwin->w_topline - old_topline,
2129 (long)(curwin->w_leftcol - old_leftcol));
2130 }
2131 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002132 else if (vim_strchr(p_sbo, 'j')) // jump flag set in 'scrollopt'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 {
2134 /*
2135 * When switching between windows, make sure that the relative
2136 * vertical offset is valid for the new window. The relative
2137 * offset is invalid whenever another 'scrollbind' window has
2138 * scrolled to a point that would force the current window to
2139 * scroll past the beginning or end of its buffer. When the
2140 * resync is performed, some of the other 'scrollbind' windows may
2141 * need to jump so that the current window's relative position is
2142 * visible on-screen.
2143 */
2144 check_scrollbind(curwin->w_topline - curwin->w_scbind_pos, 0L);
2145 }
2146 curwin->w_scbind_pos = curwin->w_topline;
2147 }
2148
2149 old_curwin = curwin;
2150 old_topline = curwin->w_topline;
2151#ifdef FEAT_DIFF
2152 old_topfill = curwin->w_topfill;
2153#endif
2154 old_buf = curwin->w_buffer;
2155 old_leftcol = curwin->w_leftcol;
2156}
2157
2158/*
2159 * Synchronize any windows that have "scrollbind" set, based on the
2160 * number of rows by which the current window has changed
2161 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
2162 */
2163 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002164check_scrollbind(linenr_T topline_diff, long leftcol_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165{
2166 int want_ver;
2167 int want_hor;
2168 win_T *old_curwin = curwin;
2169 buf_T *old_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 int old_VIsual_select = VIsual_select;
2171 int old_VIsual_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 colnr_T tgt_leftcol = curwin->w_leftcol;
2173 long topline;
2174 long y;
2175
2176 /*
2177 * check 'scrollopt' string for vertical and horizontal scroll options
2178 */
2179 want_ver = (vim_strchr(p_sbo, 'v') && topline_diff != 0);
2180#ifdef FEAT_DIFF
2181 want_ver |= old_curwin->w_p_diff;
2182#endif
2183 want_hor = (vim_strchr(p_sbo, 'h') && (leftcol_diff || topline_diff != 0));
2184
2185 /*
2186 * loop through the scrollbound windows and scroll accordingly
2187 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 VIsual_select = VIsual_active = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02002189 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 {
2191 curbuf = curwin->w_buffer;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002192 // skip original window and windows with 'noscrollbind'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 if (curwin != old_curwin && curwin->w_p_scb)
2194 {
2195 /*
2196 * do the vertical scroll
2197 */
2198 if (want_ver)
2199 {
2200#ifdef FEAT_DIFF
2201 if (old_curwin->w_p_diff && curwin->w_p_diff)
2202 {
2203 diff_set_topline(old_curwin, curwin);
2204 }
2205 else
2206#endif
2207 {
2208 curwin->w_scbind_pos += topline_diff;
2209 topline = curwin->w_scbind_pos;
2210 if (topline > curbuf->b_ml.ml_line_count)
2211 topline = curbuf->b_ml.ml_line_count;
2212 if (topline < 1)
2213 topline = 1;
2214
2215 y = topline - curwin->w_topline;
2216 if (y > 0)
2217 scrollup(y, FALSE);
2218 else
2219 scrolldown(-y, FALSE);
2220 }
2221
2222 redraw_later(VALID);
2223 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 }
2226
2227 /*
2228 * do the horizontal scroll
2229 */
2230 if (want_hor && curwin->w_leftcol != tgt_leftcol)
2231 {
2232 curwin->w_leftcol = tgt_leftcol;
2233 leftcol_changed();
2234 }
2235 }
2236 }
2237
2238 /*
2239 * reset current-window
2240 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 VIsual_select = old_VIsual_select;
2242 VIsual_active = old_VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 curwin = old_curwin;
2244 curbuf = old_curbuf;
2245}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246
2247/*
2248 * Command character that's ignored.
2249 * Used for CTRL-Q and CTRL-S to avoid problems with terminals that use
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02002250 * xon/xoff.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002253nv_ignore(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002255 cap->retval |= CA_COMMAND_BUSY; // don't call edit() now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256}
2257
2258/*
Bram Moolenaarebefac62005-12-28 22:39:57 +00002259 * Command character that doesn't do anything, but unlike nv_ignore() does
2260 * start edit(). Used for "startinsert" executed while starting up.
2261 */
Bram Moolenaarebefac62005-12-28 22:39:57 +00002262 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002263nv_nop(cmdarg_T *cap UNUSED)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002264{
2265}
2266
2267/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 * Command character doesn't exist.
2269 */
2270 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002271nv_error(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272{
2273 clearopbeep(cap->oap);
2274}
2275
2276/*
2277 * <Help> and <F1> commands.
2278 */
2279 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002280nv_help(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281{
2282 if (!checkclearopq(cap->oap))
2283 ex_help(NULL);
2284}
2285
2286/*
2287 * CTRL-A and CTRL-X: Add or subtract from letter or number under cursor.
2288 */
2289 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002290nv_addsub(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291{
Bram Moolenaarf2732452018-06-03 14:47:35 +02002292#ifdef FEAT_JOB_CHANNEL
2293 if (bt_prompt(curbuf) && !prompt_curpos_editable())
2294 clearopbeep(cap->oap);
2295 else
2296#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01002297 if (!VIsual_active && cap->oap->op_type == OP_NOP)
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002298 {
Bram Moolenaaref2b5032016-01-12 22:20:58 +01002299 prep_redo_cmd(cap);
Bram Moolenaard79e5502016-01-10 22:13:02 +01002300 cap->oap->op_type = cap->cmdchar == Ctrl_A ? OP_NR_ADD : OP_NR_SUB;
2301 op_addsub(cap->oap, cap->count1, cap->arg);
2302 cap->oap->op_type = OP_NOP;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02002303 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01002304 else if (VIsual_active)
2305 nv_operator(cap);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02002306 else
Bram Moolenaard79e5502016-01-10 22:13:02 +01002307 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308}
2309
2310/*
2311 * CTRL-F, CTRL-B, etc: Scroll page up or down.
2312 */
2313 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002314nv_page(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315{
2316 if (!checkclearop(cap->oap))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002317 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002318 if (mod_mask & MOD_MASK_CTRL)
2319 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002320 // <C-PageUp>: tab page back; <C-PageDown>: tab page forward
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002321 if (cap->arg == BACKWARD)
2322 goto_tabpage(-(int)cap->count1);
2323 else
2324 goto_tabpage((int)cap->count0);
2325 }
2326 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02002327 (void)onepage(cap->arg, cap->count1);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002328 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329}
2330
2331/*
2332 * Implementation of "gd" and "gD" command.
2333 */
2334 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002335nv_gd(
2336 oparg_T *oap,
2337 int nchar,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002338 int thisblock) // 1 for "1gd" and "1gD"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339{
2340 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 char_u *ptr;
2342
Bram Moolenaard9d30582005-05-18 22:10:28 +00002343 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0
Bram Moolenaar1538fc32016-04-16 09:13:34 +02002344 || find_decl(ptr, len, nchar == 'd', thisblock, SEARCH_START)
Bram Moolenaar0c711142021-11-12 10:30:04 +00002345 == FAIL)
2346 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347 clearopbeep(oap);
Bram Moolenaar0c711142021-11-12 10:30:04 +00002348 }
2349 else
2350 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002351#ifdef FEAT_FOLDING
Bram Moolenaar0c711142021-11-12 10:30:04 +00002352 if ((fdo_flags & FDO_SEARCH) && KeyTyped && oap->op_type == OP_NOP)
2353 foldOpenCursor();
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002354#endif
Bram Moolenaar0c711142021-11-12 10:30:04 +00002355 // clear any search statistics
2356 if (messaging() && !msg_silent && !shortmess(SHM_SEARCHCOUNT))
2357 clear_cmdline = TRUE;
2358 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002359}
2360
2361/*
Bram Moolenaar226630a2016-10-08 19:21:31 +02002362 * Return TRUE if line[offset] is not inside a C-style comment or string, FALSE
2363 * otherwise.
2364 */
2365 static int
2366is_ident(char_u *line, int offset)
2367{
2368 int i;
2369 int incomment = FALSE;
2370 int instring = 0;
2371 int prev = 0;
2372
2373 for (i = 0; i < offset && line[i] != NUL; i++)
2374 {
2375 if (instring != 0)
2376 {
2377 if (prev != '\\' && line[i] == instring)
2378 instring = 0;
2379 }
2380 else if ((line[i] == '"' || line[i] == '\'') && !incomment)
2381 {
2382 instring = line[i];
2383 }
2384 else
2385 {
2386 if (incomment)
2387 {
2388 if (prev == '*' && line[i] == '/')
2389 incomment = FALSE;
2390 }
2391 else if (prev == '/' && line[i] == '*')
2392 {
2393 incomment = TRUE;
2394 }
2395 else if (prev == '/' && line[i] == '/')
2396 {
2397 return FALSE;
2398 }
2399 }
2400
2401 prev = line[i];
2402 }
2403
2404 return incomment == FALSE && instring == 0;
2405}
2406
2407/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002408 * Search for variable declaration of "ptr[len]".
2409 * When "locally" is TRUE in the current function ("gd"), otherwise in the
2410 * current file ("gD").
2411 * When "thisblock" is TRUE check the {} block scope.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002412 * Return FAIL when not found.
2413 */
2414 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002415find_decl(
2416 char_u *ptr,
2417 int len,
2418 int locally,
2419 int thisblock,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002420 int flags_arg) // flags passed to searchit()
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002421{
2422 char_u *pat;
2423 pos_T old_pos;
2424 pos_T par_pos;
2425 pos_T found_pos;
2426 int t;
2427 int save_p_ws;
2428 int save_p_scs;
2429 int retval = OK;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002430 int incll;
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002431 int searchflags = flags_arg;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002432 int valid;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002433
2434 if ((pat = alloc(len + 7)) == NULL)
2435 return FAIL;
Bram Moolenaard9d30582005-05-18 22:10:28 +00002436
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002437 // Put "\V" before the pattern to avoid that the special meaning of "."
2438 // and "~" causes trouble.
Bram Moolenaard9d30582005-05-18 22:10:28 +00002439 sprintf((char *)pat, vim_iswordp(ptr) ? "\\V\\<%.*s\\>" : "\\V%.*s",
2440 len, ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 old_pos = curwin->w_cursor;
2442 save_p_ws = p_ws;
2443 save_p_scs = p_scs;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002444 p_ws = FALSE; // don't wrap around end of file now
2445 p_scs = FALSE; // don't switch ignorecase off now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446
2447 /*
2448 * With "gD" go to line 1.
2449 * With "gd" Search back for the start of the current function, then go
2450 * back until a blank line. If this fails go to line 1.
2451 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002452 if (!locally || !findpar(&incll, BACKWARD, 1L, '{', FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002454 setpcmark(); // Set in findpar() otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 curwin->w_cursor.lnum = 1;
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002456 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 }
2458 else
2459 {
Bram Moolenaarbb15b652005-10-03 21:52:09 +00002460 par_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 while (curwin->w_cursor.lnum > 1 && *skipwhite(ml_get_curline()) != NUL)
2462 --curwin->w_cursor.lnum;
2463 }
2464 curwin->w_cursor.col = 0;
2465
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002466 // Search forward for the identifier, ignore comment lines.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002467 CLEAR_POS(&found_pos);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002468 for (;;)
2469 {
Bram Moolenaar5d24a222018-12-23 19:10:09 +01002470 t = searchit(curwin, curbuf, &curwin->w_cursor, NULL, FORWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02002471 pat, 1L, searchflags, RE_LAST, NULL);
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002472 if (curwin->w_cursor.lnum >= old_pos.lnum)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002473 t = FAIL; // match after start is failure too
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002474
Bram Moolenaar0fd92892006-03-09 22:27:48 +00002475 if (thisblock && t != FAIL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002476 {
2477 pos_T *pos;
2478
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002479 // Check that the block the match is in doesn't end before the
2480 // position where we started the search from.
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002481 if ((pos = findmatchlimit(NULL, '}', FM_FORWARD,
2482 (int)(old_pos.lnum - curwin->w_cursor.lnum + 1))) != NULL
2483 && pos->lnum < old_pos.lnum)
Bram Moolenaar60402d62017-04-20 18:54:50 +02002484 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002485 // There can't be a useful match before the end of this block.
2486 // Skip to the end.
Bram Moolenaar60402d62017-04-20 18:54:50 +02002487 curwin->w_cursor = *pos;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002488 continue;
Bram Moolenaar60402d62017-04-20 18:54:50 +02002489 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002490 }
2491
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002492 if (t == FAIL)
2493 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002494 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002495 if (found_pos.lnum != 0)
2496 {
2497 curwin->w_cursor = found_pos;
2498 t = OK;
2499 }
2500 break;
2501 }
Bram Moolenaar81340392012-06-06 16:12:59 +02002502 if (get_leader_len(ml_get_curline(), NULL, FALSE, TRUE) > 0)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002503 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002504 // Ignore this line, continue at start of next line.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002505 ++curwin->w_cursor.lnum;
2506 curwin->w_cursor.col = 0;
2507 continue;
2508 }
Bram Moolenaar226630a2016-10-08 19:21:31 +02002509 valid = is_ident(ml_get_curline(), curwin->w_cursor.col);
2510
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002511 // If the current position is not a valid identifier and a previous
2512 // match is present, favor that one instead.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002513 if (!valid && found_pos.lnum != 0)
2514 {
2515 curwin->w_cursor = found_pos;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002516 break;
Bram Moolenaar226630a2016-10-08 19:21:31 +02002517 }
2518
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002519 // Global search: use first valid match found
Bram Moolenaar226630a2016-10-08 19:21:31 +02002520 if (valid && !locally)
2521 break;
2522 if (valid && curwin->w_cursor.lnum >= par_pos.lnum)
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002523 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002524 // If we previously found a valid position, use it.
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002525 if (found_pos.lnum != 0)
2526 curwin->w_cursor = found_pos;
2527 break;
2528 }
2529
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002530 // For finding a local variable and the match is before the "{" or
2531 // inside a comment, continue searching. For K&R style function
2532 // declarations this skips the function header without types.
Bram Moolenaar226630a2016-10-08 19:21:31 +02002533 if (!valid)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002534 CLEAR_POS(&found_pos);
Bram Moolenaar226630a2016-10-08 19:21:31 +02002535 else
Bram Moolenaar226630a2016-10-08 19:21:31 +02002536 found_pos = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002537 // Remove SEARCH_START from flags to avoid getting stuck at one
2538 // position.
Bram Moolenaar23c60f22016-06-15 22:03:48 +02002539 searchflags &= ~SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 }
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002541
2542 if (t == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 {
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002544 retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 curwin->w_cursor = old_pos;
2546 }
2547 else
2548 {
2549 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002550 // "n" searches forward now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 reset_search_dir();
2552 }
2553
2554 vim_free(pat);
2555 p_ws = save_p_ws;
2556 p_scs = save_p_scs;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00002557
2558 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559}
2560
2561/*
2562 * Move 'dist' lines in direction 'dir', counting lines by *screen*
2563 * lines rather than lines in the file.
2564 * 'dist' must be positive.
2565 *
2566 * Return OK if able to move cursor, FAIL otherwise.
2567 */
2568 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002569nv_screengo(oparg_T *oap, int dir, long dist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570{
2571 int linelen = linetabsize(ml_get_curline());
2572 int retval = OK;
2573 int atend = FALSE;
2574 int n;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002575 int col_off1; // margin offset for first screen line
2576 int col_off2; // margin offset for wrapped screen line
2577 int width1; // text width for first screen line
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002578 int width2; // text width for wrapped screen line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579
2580 oap->motion_type = MCHAR;
Bram Moolenaar91b2bdb2013-07-14 13:32:15 +02002581 oap->inclusive = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582
2583 col_off1 = curwin_col_off();
2584 col_off2 = col_off1 - curwin_col_off2();
Bram Moolenaar02631462017-09-22 15:20:32 +02002585 width1 = curwin->w_width - col_off1;
2586 width2 = curwin->w_width - col_off2;
Bram Moolenaar7cc8ec42015-01-27 20:59:31 +01002587 if (width2 == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002588 width2 = 1; // avoid divide by zero
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 if (curwin->w_width != 0)
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002591 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 /*
2593 * Instead of sticking at the last character of the buffer line we
2594 * try to stick in the last column of the screen.
2595 */
2596 if (curwin->w_curswant == MAXCOL)
2597 {
2598 atend = TRUE;
2599 validate_virtcol();
2600 if (width1 <= 0)
2601 curwin->w_curswant = 0;
2602 else
2603 {
2604 curwin->w_curswant = width1 - 1;
2605 if (curwin->w_virtcol > curwin->w_curswant)
2606 curwin->w_curswant += ((curwin->w_virtcol
2607 - curwin->w_curswant - 1) / width2 + 1) * width2;
2608 }
2609 }
2610 else
2611 {
2612 if (linelen > width1)
2613 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2614 else
2615 n = width1;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002616 if (curwin->w_curswant >= (colnr_T)n)
2617 curwin->w_curswant = n - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 }
2619
2620 while (dist--)
2621 {
2622 if (dir == BACKWARD)
2623 {
Bram Moolenaar3c49e742021-04-04 21:26:04 +02002624 if ((long)curwin->w_curswant >= width1
2625#ifdef FEAT_FOLDING
2626 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL)
2627#endif
2628 )
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002629 // Move back within the line. This can give a negative value
2630 // for w_curswant if width1 < width2 (with cpoptions+=n),
2631 // which will get clipped to column 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 curwin->w_curswant -= width2;
2633 else
2634 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002635 // to previous line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002637 // Move to the start of a closed fold. Don't do that when
2638 // 'foldopen' contains "all": it will open in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 if (!(fdo_flags & FDO_ALL))
2640 (void)hasFolding(curwin->w_cursor.lnum,
2641 &curwin->w_cursor.lnum, NULL);
2642#endif
Bram Moolenaare71996b2021-01-21 17:03:07 +01002643 if (curwin->w_cursor.lnum == 1)
2644 {
2645 retval = FAIL;
2646 break;
2647 }
2648 --curwin->w_cursor.lnum;
2649
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 linelen = linetabsize(ml_get_curline());
2651 if (linelen > width1)
2652 curwin->w_curswant += (((linelen - width1 - 1) / width2)
2653 + 1) * width2;
2654 }
2655 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002656 else // dir == FORWARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 {
2658 if (linelen > width1)
2659 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
2660 else
2661 n = width1;
Bram Moolenaar3c49e742021-04-04 21:26:04 +02002662 if (curwin->w_curswant + width2 < (colnr_T)n
2663#ifdef FEAT_FOLDING
2664 && !hasFolding(curwin->w_cursor.lnum, NULL, NULL)
2665#endif
2666 )
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002667 // move forward within line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 curwin->w_curswant += width2;
2669 else
2670 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002671 // to next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002673 // Move to the end of a closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 (void)hasFolding(curwin->w_cursor.lnum, NULL,
2675 &curwin->w_cursor.lnum);
2676#endif
2677 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
2678 {
2679 retval = FAIL;
2680 break;
2681 }
2682 curwin->w_cursor.lnum++;
2683 curwin->w_curswant %= width2;
Bram Moolenaarceba3dd2019-10-12 16:12:54 +02002684 // Check if the cursor has moved below the number display
2685 // when width1 < width2 (with cpoptions+=n). Subtract width2
2686 // to get a negative value for w_curswant, which will get
2687 // clipped to column 0.
2688 if (curwin->w_curswant >= width1)
2689 curwin->w_curswant -= width2;
Bram Moolenaar914968e2011-06-20 00:45:58 +02002690 linelen = linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 }
2692 }
2693 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695
Bram Moolenaar6cd3aee2014-01-14 13:18:58 +01002696 if (virtual_active() && atend)
2697 coladvance(MAXCOL);
2698 else
2699 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
2702 {
Bram Moolenaar773b1582014-08-29 14:20:51 +02002703 colnr_T virtcol;
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002704 int c;
Bram Moolenaar773b1582014-08-29 14:20:51 +02002705
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 /*
2707 * Check for landing on a character that got split at the end of the
2708 * last line. We want to advance a screenline, not end up in the same
2709 * screenline or move two screenlines.
2710 */
2711 validate_virtcol();
Bram Moolenaar773b1582014-08-29 14:20:51 +02002712 virtcol = curwin->w_virtcol;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002713#if defined(FEAT_LINEBREAK)
Bram Moolenaaree857022019-11-09 23:26:40 +01002714 if (virtcol > (colnr_T)width1 && *get_showbreak_value(curwin) != NUL)
2715 virtcol -= vim_strsize(get_showbreak_value(curwin));
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002716#endif
Bram Moolenaar773b1582014-08-29 14:20:51 +02002717
Christian Brabandtaaec1d42021-11-04 13:28:29 +00002718 c = (*mb_ptr2char)(ml_get_cursor());
2719 if (dir == FORWARD && virtcol < curwin->w_curswant
2720 && (curwin->w_curswant <= (colnr_T)width1)
2721 && !vim_isprintc(c) && c > 255)
2722 oneright();
2723
Bram Moolenaar773b1582014-08-29 14:20:51 +02002724 if (virtcol > curwin->w_curswant
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 && (curwin->w_curswant < (colnr_T)width1
2726 ? (curwin->w_curswant > (colnr_T)width1 / 2)
2727 : ((curwin->w_curswant - width1) % width2
2728 > (colnr_T)width2 / 2)))
2729 --curwin->w_cursor.col;
2730 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731
2732 if (atend)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002733 curwin->w_curswant = MAXCOL; // stick in the last column
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734
2735 return retval;
2736}
2737
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738/*
2739 * Handle CTRL-E and CTRL-Y commands: scroll a line up or down.
2740 * cap->arg must be TRUE for CTRL-E.
2741 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002742 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002743nv_scroll_line(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744{
2745 if (!checkclearop(cap->oap))
2746 scroll_redraw(cap->arg, cap->count1);
2747}
2748
2749/*
2750 * Scroll "count" lines up or down, and redraw.
2751 */
2752 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002753scroll_redraw(int up, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754{
2755 linenr_T prev_topline = curwin->w_topline;
2756#ifdef FEAT_DIFF
2757 int prev_topfill = curwin->w_topfill;
2758#endif
2759 linenr_T prev_lnum = curwin->w_cursor.lnum;
2760
2761 if (up)
2762 scrollup(count, TRUE);
2763 else
2764 scrolldown(count, TRUE);
Bram Moolenaar375e3392019-01-31 18:26:10 +01002765 if (get_scrolloff_value())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002767 // Adjust the cursor position for 'scrolloff'. Mark w_topline as
2768 // valid, otherwise the screen jumps back at the end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 cursor_correct();
2770 check_cursor_moved(curwin);
2771 curwin->w_valid |= VALID_TOPLINE;
2772
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002773 // If moved back to where we were, at least move the cursor, otherwise
2774 // we get stuck at one position. Don't move the cursor up if the
2775 // first line of the buffer is already on the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 while (curwin->w_topline == prev_topline
2777#ifdef FEAT_DIFF
2778 && curwin->w_topfill == prev_topfill
2779#endif
2780 )
2781 {
2782 if (up)
2783 {
2784 if (curwin->w_cursor.lnum > prev_lnum
2785 || cursor_down(1L, FALSE) == FAIL)
2786 break;
2787 }
2788 else
2789 {
2790 if (curwin->w_cursor.lnum < prev_lnum
2791 || prev_topline == 1L
2792 || cursor_up(1L, FALSE) == FAIL)
2793 break;
2794 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002795 // Mark w_topline as valid, otherwise the screen jumps back at the
2796 // end of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 check_cursor_moved(curwin);
2798 curwin->w_valid |= VALID_TOPLINE;
2799 }
2800 }
2801 if (curwin->w_cursor.lnum != prev_lnum)
2802 coladvance(curwin->w_curswant);
2803 redraw_later(VALID);
2804}
2805
2806/*
2807 * Commands that start with "z".
2808 */
2809 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002810nv_zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811{
2812 long n;
2813 colnr_T col;
2814 int nchar = cap->nchar;
2815#ifdef FEAT_FOLDING
2816 long old_fdl = curwin->w_p_fdl;
2817 int old_fen = curwin->w_p_fen;
2818#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00002819#ifdef FEAT_SPELL
Bram Moolenaard0131a82006-03-04 21:46:13 +00002820 int undo = FALSE;
2821#endif
Bram Moolenaar375e3392019-01-31 18:26:10 +01002822 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823
2824 if (VIM_ISDIGIT(nchar))
2825 {
2826 /*
2827 * "z123{nchar}": edit the count before obtaining {nchar}
2828 */
2829 if (checkclearop(cap->oap))
2830 return;
2831 n = nchar - '0';
2832 for (;;)
2833 {
2834#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002835 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836#endif
2837 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002838 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00002839 nchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 --no_mapping;
2842 --allow_keys;
2843#ifdef FEAT_CMDL_INFO
2844 (void)add_to_showcmd(nchar);
2845#endif
2846 if (nchar == K_DEL || nchar == K_KDEL)
2847 n /= 10;
2848 else if (VIM_ISDIGIT(nchar))
2849 n = n * 10 + (nchar - '0');
2850 else if (nchar == CAR)
2851 {
2852#ifdef FEAT_GUI
2853 need_mouse_correct = TRUE;
2854#endif
2855 win_setheight((int)n);
2856 break;
2857 }
2858 else if (nchar == 'l'
2859 || nchar == 'h'
2860 || nchar == K_LEFT
Bram Moolenaara88d9682005-03-25 21:45:43 +00002861 || nchar == K_RIGHT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 {
2863 cap->count1 = n ? n * cap->count1 : cap->count1;
2864 goto dozet;
2865 }
2866 else
2867 {
2868 clearopbeep(cap->oap);
2869 break;
2870 }
2871 }
2872 cap->oap->op_type = OP_NOP;
2873 return;
2874 }
2875
2876dozet:
2877 if (
2878#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002879 // "zf" and "zF" are always an operator, "zd", "zo", "zO", "zc"
2880 // and "zC" only in Visual mode. "zj" and "zk" are motion
2881 // commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 cap->nchar != 'f' && cap->nchar != 'F'
2883 && !(VIsual_active && vim_strchr((char_u *)"dcCoO", cap->nchar))
2884 && cap->nchar != 'j' && cap->nchar != 'k'
2885 &&
2886#endif
2887 checkclearop(cap->oap))
2888 return;
2889
2890 /*
2891 * For "z+", "z<CR>", "zt", "z.", "zz", "z^", "z-", "zb":
2892 * If line number given, set cursor.
2893 */
2894 if ((vim_strchr((char_u *)"+\r\nt.z^-b", nchar) != NULL)
2895 && cap->count0
2896 && cap->count0 != curwin->w_cursor.lnum)
2897 {
2898 setpcmark();
2899 if (cap->count0 > curbuf->b_ml.ml_line_count)
2900 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2901 else
2902 curwin->w_cursor.lnum = cap->count0;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002903 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 }
2905
2906 switch (nchar)
2907 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002908 // "z+", "z<CR>" and "zt": put cursor at top of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 case '+':
2910 if (cap->count0 == 0)
2911 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002912 // No count given: put cursor at the line below screen
2913 validate_botline(); // make sure w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 if (curwin->w_botline > curbuf->b_ml.ml_line_count)
2915 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2916 else
2917 curwin->w_cursor.lnum = curwin->w_botline;
2918 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002919 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 case NL:
2921 case CAR:
2922 case K_KENTER:
2923 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002924 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925
2926 case 't': scroll_cursor_top(0, TRUE);
2927 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002928 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 break;
2930
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002931 // "z." and "zz": put cursor in middle of screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 case '.': beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002933 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934
2935 case 'z': scroll_cursor_halfway(TRUE);
2936 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002937 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938 break;
2939
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002940 // "z^", "z-" and "zb": put cursor at bottom of screen
2941 case '^': // Strange Vi behavior: <count>z^ finds line at top of window
2942 // when <count> is at bottom of window, and puts that one at
2943 // bottom of window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944 if (cap->count0 != 0)
2945 {
2946 scroll_cursor_bot(0, TRUE);
2947 curwin->w_cursor.lnum = curwin->w_topline;
2948 }
2949 else if (curwin->w_topline == 1)
2950 curwin->w_cursor.lnum = 1;
2951 else
2952 curwin->w_cursor.lnum = curwin->w_topline - 1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002953 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 case '-':
2955 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002956 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957
2958 case 'b': scroll_cursor_bot(0, TRUE);
2959 redraw_later(VALID);
Bram Moolenaar9dc2ce32015-12-05 19:47:04 +01002960 set_fraction(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 break;
2962
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002963 // "zH" - scroll screen right half-page
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 case 'H':
Bram Moolenaar02631462017-09-22 15:20:32 +02002965 cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002966 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002968 // "zh" - scroll screen to the right
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 case 'h':
2970 case K_LEFT:
2971 if (!curwin->w_p_wrap)
2972 {
2973 if ((colnr_T)cap->count1 > curwin->w_leftcol)
2974 curwin->w_leftcol = 0;
2975 else
2976 curwin->w_leftcol -= (colnr_T)cap->count1;
2977 leftcol_changed();
2978 }
2979 break;
2980
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002981 // "zL" - scroll screen left half-page
Bram Moolenaar02631462017-09-22 15:20:32 +02002982 case 'L': cap->count1 *= curwin->w_width / 2;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002983 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002985 // "zl" - scroll screen to the left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 case 'l':
2987 case K_RIGHT:
2988 if (!curwin->w_p_wrap)
2989 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002990 // scroll the window left
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 curwin->w_leftcol += (colnr_T)cap->count1;
2992 leftcol_changed();
2993 }
2994 break;
2995
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01002996 // "zs" - scroll screen, cursor at the start
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 case 's': if (!curwin->w_p_wrap)
2998 {
2999#ifdef FEAT_FOLDING
3000 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003001 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 else
3003#endif
3004 getvcol(curwin, &curwin->w_cursor, &col, NULL, NULL);
Bram Moolenaar375e3392019-01-31 18:26:10 +01003005 if ((long)col > siso)
3006 col -= siso;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 else
3008 col = 0;
3009 if (curwin->w_leftcol != col)
3010 {
3011 curwin->w_leftcol = col;
3012 redraw_later(NOT_VALID);
3013 }
3014 }
3015 break;
3016
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003017 // "ze" - scroll screen, cursor at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 case 'e': if (!curwin->w_p_wrap)
3019 {
3020#ifdef FEAT_FOLDING
3021 if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003022 col = 0; // like the cursor is in col 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 else
3024#endif
3025 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
Bram Moolenaar02631462017-09-22 15:20:32 +02003026 n = curwin->w_width - curwin_col_off();
Bram Moolenaar375e3392019-01-31 18:26:10 +01003027 if ((long)col + siso < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028 col = 0;
3029 else
Bram Moolenaar375e3392019-01-31 18:26:10 +01003030 col = col + siso - n + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 if (curwin->w_leftcol != col)
3032 {
3033 curwin->w_leftcol = col;
3034 redraw_later(NOT_VALID);
3035 }
3036 }
3037 break;
3038
Christian Brabandt2fa93842021-05-30 22:17:25 +02003039 // "zp", "zP" in block mode put without addind trailing spaces
3040 case 'P':
3041 case 'p': nv_put(cap);
3042 break;
Christian Brabandt544a38e2021-06-10 19:39:11 +02003043 // "zy" Yank without trailing spaces
3044 case 'y': nv_operator(cap);
3045 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003047 // "zF": create fold command
3048 // "zf": create fold operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 case 'F':
3050 case 'f': if (foldManualAllowed(TRUE))
3051 {
3052 cap->nchar = 'f';
3053 nv_operator(cap);
3054 curwin->w_p_fen = TRUE;
3055
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003056 // "zF" is like "zfzf"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 if (nchar == 'F' && cap->oap->op_type == OP_FOLD)
3058 {
3059 nv_operator(cap);
3060 finish_op = TRUE;
3061 }
3062 }
3063 else
3064 clearopbeep(cap->oap);
3065 break;
3066
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003067 // "zd": delete fold at cursor
3068 // "zD": delete fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 case 'd':
3070 case 'D': if (foldManualAllowed(FALSE))
3071 {
3072 if (VIsual_active)
3073 nv_operator(cap);
3074 else
3075 deleteFold(curwin->w_cursor.lnum,
3076 curwin->w_cursor.lnum, nchar == 'D', FALSE);
3077 }
3078 break;
3079
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003080 // "zE": erase all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 case 'E': if (foldmethodIsManual(curwin))
3082 {
3083 clearFolding(curwin);
3084 changed_window_setting();
3085 }
3086 else if (foldmethodIsMarker(curwin))
3087 deleteFold((linenr_T)1, curbuf->b_ml.ml_line_count,
3088 TRUE, FALSE);
3089 else
Bram Moolenaarac78dd42022-01-02 19:25:26 +00003090 emsg(_(e_cannot_erase_folds_with_current_foldmethod));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091 break;
3092
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003093 // "zn": fold none: reset 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 case 'n': curwin->w_p_fen = FALSE;
3095 break;
3096
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003097 // "zN": fold Normal: set 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 case 'N': curwin->w_p_fen = TRUE;
3099 break;
3100
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003101 // "zi": invert folding: toggle 'foldenable'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 case 'i': curwin->w_p_fen = !curwin->w_p_fen;
3103 break;
3104
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003105 // "za": open closed fold or close open fold at cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 case 'a': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3107 openFold(curwin->w_cursor.lnum, cap->count1);
3108 else
3109 {
3110 closeFold(curwin->w_cursor.lnum, cap->count1);
3111 curwin->w_p_fen = TRUE;
3112 }
3113 break;
3114
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003115 // "zA": open fold at cursor recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116 case 'A': if (hasFolding(curwin->w_cursor.lnum, NULL, NULL))
3117 openFoldRecurse(curwin->w_cursor.lnum);
3118 else
3119 {
3120 closeFoldRecurse(curwin->w_cursor.lnum);
3121 curwin->w_p_fen = TRUE;
3122 }
3123 break;
3124
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003125 // "zo": open fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 case 'o': if (VIsual_active)
3127 nv_operator(cap);
3128 else
3129 openFold(curwin->w_cursor.lnum, cap->count1);
3130 break;
3131
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003132 // "zO": open fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 case 'O': if (VIsual_active)
3134 nv_operator(cap);
3135 else
3136 openFoldRecurse(curwin->w_cursor.lnum);
3137 break;
3138
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003139 // "zc": close fold at cursor or Visual area
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 case 'c': if (VIsual_active)
3141 nv_operator(cap);
3142 else
3143 closeFold(curwin->w_cursor.lnum, cap->count1);
3144 curwin->w_p_fen = TRUE;
3145 break;
3146
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003147 // "zC": close fold recursively
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 case 'C': if (VIsual_active)
3149 nv_operator(cap);
3150 else
3151 closeFoldRecurse(curwin->w_cursor.lnum);
3152 curwin->w_p_fen = TRUE;
3153 break;
3154
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003155 // "zv": open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 case 'v': foldOpenCursor();
3157 break;
3158
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003159 // "zx": re-apply 'foldlevel' and open folds at the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 case 'x': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003161 curwin->w_foldinvalid = TRUE; // recompute folds
3162 newFoldLevel(); // update right now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 foldOpenCursor();
3164 break;
3165
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003166 // "zX": undo manual opens/closes, re-apply 'foldlevel'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 case 'X': curwin->w_p_fen = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003168 curwin->w_foldinvalid = TRUE; // recompute folds
3169 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 break;
3171
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003172 // "zm": fold more
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 case 'm': if (curwin->w_p_fdl > 0)
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003174 {
3175 curwin->w_p_fdl -= cap->count1;
3176 if (curwin->w_p_fdl < 0)
3177 curwin->w_p_fdl = 0;
3178 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003179 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 curwin->w_p_fen = TRUE;
3181 break;
3182
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003183 // "zM": close all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 case 'M': curwin->w_p_fdl = 0;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003185 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 curwin->w_p_fen = TRUE;
3187 break;
3188
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003189 // "zr": reduce folding
Bram Moolenaar7d2757a2015-03-31 17:46:22 +02003190 case 'r': curwin->w_p_fdl += cap->count1;
3191 {
3192 int d = getDeepestNesting();
3193
3194 if (curwin->w_p_fdl >= d)
3195 curwin->w_p_fdl = d;
3196 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 break;
3198
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003199 // "zR": open all folds
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 case 'R': curwin->w_p_fdl = getDeepestNesting();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003201 old_fdl = -1; // force an update
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 break;
3203
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003204 case 'j': // "zj" move to next fold downwards
3205 case 'k': // "zk" move to next fold upwards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 if (foldMoveTo(TRUE, nchar == 'j' ? FORWARD : BACKWARD,
3207 cap->count1) == FAIL)
3208 clearopbeep(cap->oap);
3209 break;
3210
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003211#endif // FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00003213#ifdef FEAT_SPELL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003214 case 'u': // "zug" and "zuw": undo "zg" and "zw"
Bram Moolenaard0131a82006-03-04 21:46:13 +00003215 ++no_mapping;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003216 ++allow_keys; // no mapping for nchar, but allow key codes
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003217 nchar = plain_vgetc();
Bram Moolenaard0131a82006-03-04 21:46:13 +00003218 LANGMAP_ADJUST(nchar, TRUE);
Bram Moolenaard0131a82006-03-04 21:46:13 +00003219 --no_mapping;
3220 --allow_keys;
3221#ifdef FEAT_CMDL_INFO
3222 (void)add_to_showcmd(nchar);
3223#endif
3224 if (vim_strchr((char_u *)"gGwW", nchar) == NULL)
3225 {
3226 clearopbeep(cap->oap);
3227 break;
3228 }
3229 undo = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003230 // FALLTHROUGH
Bram Moolenaard0131a82006-03-04 21:46:13 +00003231
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003232 case 'g': // "zg": add good word to word list
3233 case 'w': // "zw": add wrong word to word list
3234 case 'G': // "zG": add good word to temp word list
3235 case 'W': // "zW": add wrong word to temp word list
Bram Moolenaarb765d632005-06-07 21:00:02 +00003236 {
3237 char_u *ptr = NULL;
3238 int len;
3239
3240 if (checkclearop(cap->oap))
3241 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003242 if (VIsual_active && get_visual_text(cap, &ptr, &len)
3243 == FAIL)
3244 return;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003245 if (ptr == NULL)
3246 {
3247 pos_T pos = curwin->w_cursor;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003248
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003249 // Find bad word under the cursor. When 'spell' is
3250 // off this fails and find_ident_under_cursor() is
3251 // used below.
Bram Moolenaar134bf072013-09-25 18:54:24 +02003252 emsg_off++;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003253 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, NULL);
Bram Moolenaar134bf072013-09-25 18:54:24 +02003254 emsg_off--;
Bram Moolenaarda2303d2005-08-30 21:55:26 +00003255 if (len != 0 && curwin->w_cursor.col <= pos.col)
3256 ptr = ml_get_pos(&curwin->w_cursor);
3257 curwin->w_cursor = pos;
3258 }
3259
Bram Moolenaarb765d632005-06-07 21:00:02 +00003260 if (ptr == NULL && (len = find_ident_under_cursor(&ptr,
3261 FIND_IDENT)) == 0)
3262 return;
Bram Moolenaar08cc3742019-08-11 22:51:14 +02003263 spell_add_word(ptr, len, nchar == 'w' || nchar == 'W'
3264 ? SPELL_ADD_BAD : SPELL_ADD_GOOD,
Bram Moolenaard0131a82006-03-04 21:46:13 +00003265 (nchar == 'G' || nchar == 'W')
3266 ? 0 : (int)cap->count1,
3267 undo);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003268 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00003269 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003270
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003271 case '=': // "z=": suggestions for a badly spelled word
Bram Moolenaar66fa2712006-01-22 23:22:22 +00003272 if (!checkclearop(cap->oap))
Bram Moolenaard12a1322005-08-21 22:08:24 +00003273 spell_suggest((int)cap->count0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003274 break;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003275#endif
3276
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 default: clearopbeep(cap->oap);
3278 }
3279
3280#ifdef FEAT_FOLDING
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003281 // Redraw when 'foldenable' changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 if (old_fen != curwin->w_p_fen)
3283 {
3284# ifdef FEAT_DIFF
3285 win_T *wp;
3286
3287 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
3288 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003289 // Adjust 'foldenable' in diff-synced windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 FOR_ALL_WINDOWS(wp)
3291 {
3292 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
3293 {
3294 wp->w_p_fen = curwin->w_p_fen;
3295 changed_window_setting_win(wp);
3296 }
3297 }
3298 }
3299# endif
3300 changed_window_setting();
3301 }
3302
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003303 // Redraw when 'foldlevel' changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304 if (old_fdl != curwin->w_p_fdl)
3305 newFoldLevel();
3306#endif
3307}
3308
3309#ifdef FEAT_GUI
3310/*
3311 * Vertical scrollbar movement.
3312 */
3313 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003314nv_ver_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315{
3316 if (cap->oap->op_type != OP_NOP)
3317 clearopbeep(cap->oap);
3318
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003319 // Even if an operator was pending, we still want to scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 gui_do_scroll();
3321}
3322
3323/*
3324 * Horizontal scrollbar movement.
3325 */
3326 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003327nv_hor_scrollbar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328{
3329 if (cap->oap->op_type != OP_NOP)
3330 clearopbeep(cap->oap);
3331
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003332 // Even if an operator was pending, we still want to scroll
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003333 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334}
3335#endif
3336
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003337#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003338/*
3339 * Click in GUI tab.
3340 */
3341 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003342nv_tabline(cmdarg_T *cap)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003343{
3344 if (cap->oap->op_type != OP_NOP)
3345 clearopbeep(cap->oap);
3346
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003347 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003348 goto_tabpage(current_tab);
3349}
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003350
3351/*
3352 * Selected item in tab line menu.
3353 */
3354 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003355nv_tabmenu(cmdarg_T *cap)
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003356{
3357 if (cap->oap->op_type != OP_NOP)
3358 clearopbeep(cap->oap);
3359
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003360 // Even if an operator was pending, we still want to jump tabs.
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003361 handle_tabmenu();
3362}
3363
3364/*
3365 * Handle selecting an item of the GUI tab line menu.
3366 * Used in Normal and Insert mode.
3367 */
3368 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003369handle_tabmenu(void)
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003370{
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003371 switch (current_tabmenu)
3372 {
3373 case TABLINE_MENU_CLOSE:
3374 if (current_tab == 0)
3375 do_cmdline_cmd((char_u *)"tabclose");
3376 else
3377 {
3378 vim_snprintf((char *)IObuff, IOSIZE, "tabclose %d",
3379 current_tab);
3380 do_cmdline_cmd(IObuff);
3381 }
3382 break;
3383
3384 case TABLINE_MENU_NEW:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003385 if (current_tab == 0)
3386 do_cmdline_cmd((char_u *)"$tabnew");
3387 else
3388 {
3389 vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
3390 current_tab - 1);
3391 do_cmdline_cmd(IObuff);
3392 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003393 break;
3394
3395 case TABLINE_MENU_OPEN:
Bram Moolenaardfd76912015-02-27 15:03:58 +01003396 if (current_tab == 0)
3397 do_cmdline_cmd((char_u *)"browse $tabnew");
3398 else
3399 {
3400 vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
3401 current_tab - 1);
3402 do_cmdline_cmd(IObuff);
3403 }
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003404 break;
3405 }
3406}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003407#endif
3408
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409/*
3410 * "Q" command.
3411 */
3412 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003413nv_exmode(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414{
3415 /*
3416 * Ignore 'Q' in Visual mode, just give a beep.
3417 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 if (VIsual_active)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003419 vim_beep(BO_EX);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003420 else if (!checkclearop(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 do_exmode(FALSE);
3422}
3423
3424/*
3425 * Handle a ":" command.
3426 */
3427 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003428nv_colon(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429{
Bram Moolenaar957cf672020-11-12 14:21:06 +01003430 int old_p_im;
3431 int cmd_result;
3432 int is_cmdkey = cap->cmdchar == K_COMMAND;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433
Bram Moolenaar957cf672020-11-12 14:21:06 +01003434 if (VIsual_active && !is_cmdkey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435 nv_operator(cap);
3436 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 {
3438 if (cap->oap->op_type != OP_NOP)
3439 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003440 // Using ":" as a movement is characterwise exclusive.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 cap->oap->motion_type = MCHAR;
3442 cap->oap->inclusive = FALSE;
3443 }
Bram Moolenaar957cf672020-11-12 14:21:06 +01003444 else if (cap->count0 && !is_cmdkey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003446 // translate "count:" into ":.,.+(count - 1)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 stuffcharReadbuff('.');
3448 if (cap->count0 > 1)
3449 {
3450 stuffReadbuff((char_u *)",.+");
3451 stuffnumReadbuff((long)cap->count0 - 1L);
3452 }
3453 }
3454
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003455 // When typing, don't type below an old message
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 if (KeyTyped)
3457 compute_cmdrow();
3458
3459 old_p_im = p_im;
3460
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003461 // get a command line and execute it
Bram Moolenaar957cf672020-11-12 14:21:06 +01003462 cmd_result = do_cmdline(NULL, is_cmdkey ? getcmdkeycmd : getexline, NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 cap->oap->op_type != OP_NOP ? DOCMD_KEEPLINE : 0);
3464
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003465 // If 'insertmode' changed, enter or exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 if (p_im != old_p_im)
3467 {
3468 if (p_im)
3469 restart_edit = 'i';
3470 else
3471 restart_edit = 0;
3472 }
3473
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003474 if (cmd_result == FAIL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003475 // The Ex command failed, do not execute the operator.
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003476 clearop(cap->oap);
3477 else if (cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count
3479 || cap->oap->start.col >
Bram Moolenaard7fbfe12013-04-05 17:43:14 +02003480 (colnr_T)STRLEN(ml_get(cap->oap->start.lnum))
3481 || did_emsg
3482 ))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003483 // The start of the operator has become invalid by the Ex command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 clearopbeep(cap->oap);
3485 }
3486}
3487
3488/*
3489 * Handle CTRL-G command.
3490 */
3491 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003492nv_ctrlg(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003494 if (VIsual_active) // toggle Selection/Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 {
3496 VIsual_select = !VIsual_select;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01003497 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 showmode();
3499 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003500 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003501 // print full name if count given or :cd used
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 fileinfo((int)cap->count0, FALSE, TRUE);
3503}
3504
3505/*
3506 * Handle CTRL-H <Backspace> command.
3507 */
3508 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003509nv_ctrlh(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 if (VIsual_active && VIsual_select)
3512 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003513 cap->cmdchar = 'x'; // BS key behaves like 'x' in Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 v_visop(cap);
3515 }
3516 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 nv_left(cap);
3518}
3519
3520/*
3521 * CTRL-L: clear screen and redraw.
3522 */
3523 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003524nv_clear(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525{
3526 if (!checkclearop(cap->oap))
3527 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528#ifdef FEAT_SYN_HL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003529 // Clear all syntax states to force resyncing.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003530 syn_stack_free_all(curwin->w_s);
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02003531# ifdef FEAT_RELTIME
3532 {
3533 win_T *wp;
3534
3535 FOR_ALL_WINDOWS(wp)
3536 wp->w_s->b_syn_slow = FALSE;
3537 }
3538# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539#endif
3540 redraw_later(CLEAR);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003541#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
3542# ifdef VIMDLL
3543 if (!gui.in_use)
3544# endif
3545 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01003546#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 }
3548}
3549
3550/*
3551 * CTRL-O: In Select mode: switch to Visual mode for one command.
3552 * Otherwise: Go to older pcmark.
3553 */
3554 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003555nv_ctrlo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 if (VIsual_active && VIsual_select)
3558 {
3559 VIsual_select = FALSE;
=?UTF-8?q?Magnus=20Gro=C3=9F?=25def2c2021-10-22 18:56:39 +01003560 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 showmode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003562 restart_VIsual_select = 2; // restart Select mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 }
3564 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 {
3566 cap->count1 = -cap->count1;
3567 nv_pcmark(cap);
3568 }
3569}
3570
3571/*
Bram Moolenaar1bbb6192018-11-10 16:02:01 +01003572 * CTRL-^ command, short for ":e #". Works even when the alternate buffer is
3573 * not named.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 */
3575 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003576nv_hat(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577{
3578 if (!checkclearopq(cap->oap))
3579 (void)buflist_getfile((int)cap->count0, (linenr_T)0,
3580 GETF_SETMARK|GETF_ALT, FALSE);
3581}
3582
3583/*
3584 * "Z" commands.
3585 */
3586 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003587nv_Zet(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588{
3589 if (!checkclearopq(cap->oap))
3590 {
3591 switch (cap->nchar)
3592 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003593 // "ZZ": equivalent to ":x".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594 case 'Z': do_cmdline_cmd((char_u *)"x");
3595 break;
3596
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003597 // "ZQ": equivalent to ":q!" (Elvis compatible).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 case 'Q': do_cmdline_cmd((char_u *)"q!");
3599 break;
3600
3601 default: clearopbeep(cap->oap);
3602 }
3603 }
3604}
3605
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606/*
3607 * Call nv_ident() as if "c1" was used, with "c2" as next character.
3608 */
3609 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003610do_nv_ident(int c1, int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611{
3612 oparg_T oa;
3613 cmdarg_T ca;
3614
3615 clear_oparg(&oa);
Bram Moolenaara80faa82020-04-12 19:37:17 +02003616 CLEAR_FIELD(ca);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 ca.oap = &oa;
3618 ca.cmdchar = c1;
3619 ca.nchar = c2;
3620 nv_ident(&ca);
3621}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622
3623/*
3624 * Handle the commands that use the word under the cursor.
3625 * [g] CTRL-] :ta to current identifier
3626 * [g] 'K' run program for current identifier
3627 * [g] '*' / to current identifier or string
3628 * [g] '#' ? to current identifier or string
3629 * g ']' :tselect for current identifier
3630 */
3631 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003632nv_ident(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633{
3634 char_u *ptr = NULL;
3635 char_u *buf;
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003636 unsigned buflen;
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003637 char_u *newbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 char_u *p;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003639 char_u *kp; // value of 'keywordprg'
3640 int kp_help; // 'keywordprg' is ":he"
3641 int kp_ex; // 'keywordprg' starts with ":"
3642 int n = 0; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 int cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003644 int g_cmd; // "g" command
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003645 int tag_cmd = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 char_u *aux_ptr;
3647 int isman;
3648 int isman_s;
3649
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003650 if (cap->cmdchar == 'g') // "g*", "g#", "g]" and "gCTRL-]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 {
3652 cmdchar = cap->nchar;
3653 g_cmd = TRUE;
3654 }
3655 else
3656 {
3657 cmdchar = cap->cmdchar;
3658 g_cmd = FALSE;
3659 }
3660
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003661 if (cmdchar == POUND) // the pound sign, '#' for English keyboards
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 cmdchar = '#';
3663
3664 /*
3665 * The "]", "CTRL-]" and "K" commands accept an argument in Visual mode.
3666 */
3667 if (cmdchar == ']' || cmdchar == Ctrl_RSB || cmdchar == 'K')
3668 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 if (VIsual_active && get_visual_text(cap, &ptr, &n) == FAIL)
3670 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 if (checkclearopq(cap->oap))
3672 return;
3673 }
3674
3675 if (ptr == NULL && (n = find_ident_under_cursor(&ptr,
3676 (cmdchar == '*' || cmdchar == '#')
3677 ? FIND_IDENT|FIND_STRING : FIND_IDENT)) == 0)
3678 {
3679 clearop(cap->oap);
3680 return;
3681 }
3682
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003683 // Allocate buffer to put the command in. Inserting backslashes can
3684 // double the length of the word. p_kp / curbuf->b_p_kp could be added
3685 // and some numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 kp = (*curbuf->b_p_kp == NUL ? p_kp : curbuf->b_p_kp);
3687 kp_help = (*kp == NUL || STRCMP(kp, ":he") == 0
3688 || STRCMP(kp, ":help") == 0);
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003689 if (kp_help && *skipwhite(ptr) == NUL)
3690 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00003691 emsg(_(e_no_identifier_under_cursor)); // found white space only
Bram Moolenaara4f99f52017-08-26 16:25:32 +02003692 return;
3693 }
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003694 kp_ex = (*kp == ':');
3695 buflen = (unsigned)(n * 2 + 30 + STRLEN(kp));
3696 buf = alloc(buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 if (buf == NULL)
3698 return;
3699 buf[0] = NUL;
3700
3701 switch (cmdchar)
3702 {
3703 case '*':
3704 case '#':
3705 /*
3706 * Put cursor at start of word, makes search skip the word
3707 * under the cursor.
3708 * Call setpcmark() first, so "*``" puts the cursor back where
3709 * it was.
3710 */
3711 setpcmark();
3712 curwin->w_cursor.col = (colnr_T) (ptr - ml_get_curline());
3713
3714 if (!g_cmd && vim_iswordp(ptr))
3715 STRCPY(buf, "\\<");
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003716 no_smartcase = TRUE; // don't use 'smartcase' now
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 break;
3718
3719 case 'K':
3720 if (kp_help)
3721 STRCPY(buf, "he! ");
Bram Moolenaar2ff8b642016-05-24 10:46:45 +02003722 else if (kp_ex)
3723 {
3724 if (cap->count0 != 0)
3725 vim_snprintf((char *)buf, buflen, "%s %ld",
3726 kp, cap->count0);
3727 else
3728 STRCPY(buf, kp);
3729 STRCAT(buf, " ");
3730 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 else
3732 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003733 // An external command will probably use an argument starting
3734 // with "-" as an option. To avoid trouble we skip the "-".
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003735 while (*ptr == '-' && n > 0)
3736 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003737 ++ptr;
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003738 --n;
3739 }
3740 if (n == 0)
3741 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00003742 // found dashes only
3743 emsg(_(e_no_identifier_under_cursor));
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003744 vim_free(buf);
3745 return;
3746 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003747
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003748 // When a count is given, turn it into a range. Is this
3749 // really what we want?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 isman = (STRCMP(kp, "man") == 0);
3751 isman_s = (STRCMP(kp, "man -s") == 0);
3752 if (cap->count0 != 0 && !(isman || isman_s))
3753 sprintf((char *)buf, ".,.+%ld", cap->count0 - 1);
3754
3755 STRCAT(buf, "! ");
3756 if (cap->count0 == 0 && isman_s)
3757 STRCAT(buf, "man");
3758 else
3759 STRCAT(buf, kp);
3760 STRCAT(buf, " ");
3761 if (cap->count0 != 0 && (isman || isman_s))
3762 {
3763 sprintf((char *)buf + STRLEN(buf), "%ld", cap->count0);
3764 STRCAT(buf, " ");
3765 }
3766 }
3767 break;
3768
3769 case ']':
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003770 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771#ifdef FEAT_CSCOPE
3772 if (p_cst)
3773 STRCPY(buf, "cstag ");
3774 else
3775#endif
3776 STRCPY(buf, "ts ");
3777 break;
3778
3779 default:
Bram Moolenaar97e7a842010-03-17 13:07:08 +01003780 tag_cmd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 if (curbuf->b_help)
3782 STRCPY(buf, "he! ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 else
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003784 {
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003785 if (g_cmd)
3786 STRCPY(buf, "tj ");
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003787 else if (cap->count0 == 0)
3788 STRCPY(buf, "ta ");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003789 else
Bram Moolenaarb3ea36c2020-08-23 21:46:32 +02003790 sprintf((char *)buf, ":%ldta ", cap->count0);
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792 }
3793
3794 /*
3795 * Now grab the chars in the identifier
3796 */
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003797 if (cmdchar == 'K' && !kp_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 {
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003799 ptr = vim_strnsave(ptr, n);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003800 if (kp_ex)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003801 // Escape the argument properly for an Ex command
Bram Moolenaar21c1a0c2021-10-17 17:20:23 +01003802 p = vim_strsave_fnameescape(ptr, VSE_NONE);
Bram Moolenaar426f3752016-11-04 21:22:37 +01003803 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003804 // Escape the argument properly for a shell command
Bram Moolenaar426f3752016-11-04 21:22:37 +01003805 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
Bram Moolenaar9fd01c62008-11-01 12:52:38 +00003806 vim_free(ptr);
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003807 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 {
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003809 vim_free(buf);
3810 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003812 newbuf = vim_realloc(buf, STRLEN(buf) + STRLEN(p) + 1);
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003813 if (newbuf == NULL)
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003814 {
3815 vim_free(buf);
3816 vim_free(p);
3817 return;
3818 }
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02003819 buf = newbuf;
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003820 STRCAT(buf, p);
3821 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003823 else
3824 {
3825 if (cmdchar == '*')
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003826 aux_ptr = (char_u *)(magic_isset() ? "/.*~[^$\\" : "/^$\\");
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003827 else if (cmdchar == '#')
Bram Moolenaarf4e20992020-12-21 19:59:08 +01003828 aux_ptr = (char_u *)(magic_isset() ? "/?.*~[^$\\" : "/?^$\\");
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003829 else if (tag_cmd)
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003830 {
3831 if (curbuf->b_help)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003832 // ":help" handles unescaped argument
Bram Moolenaar77a0aa42010-10-13 18:06:47 +02003833 aux_ptr = (char_u *)"";
3834 else
3835 aux_ptr = (char_u *)"\\|\"\n[";
3836 }
Bram Moolenaar6d8027a2010-01-19 15:24:27 +01003837 else
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003838 aux_ptr = (char_u *)"\\|\"\n*?[";
3839
3840 p = buf + STRLEN(buf);
3841 while (n-- > 0)
3842 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003843 // put a backslash before \ and some others
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003844 if (vim_strchr(aux_ptr, *ptr) != NULL)
3845 *p++ = '\\';
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003846 // When current byte is a part of multibyte character, copy all
3847 // bytes of that character.
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003848 if (has_mbyte)
3849 {
3850 int i;
3851 int len = (*mb_ptr2len)(ptr) - 1;
3852
3853 for (i = 0; i < len && n >= 1; ++i, --n)
3854 *p++ = *ptr++;
3855 }
Bram Moolenaar3094a9e2008-09-06 14:44:59 +00003856 *p++ = *ptr++;
3857 }
3858 *p = NUL;
3859 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860
3861 /*
3862 * Execute the command.
3863 */
3864 if (cmdchar == '*' || cmdchar == '#')
3865 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003866 if (!g_cmd && (has_mbyte
3867 ? vim_iswordp(mb_prevptr(ml_get_curline(), ptr))
3868 : vim_iswordc(ptr[-1])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 STRCAT(buf, "\\>");
Bram Moolenaard7663c22019-08-06 21:59:57 +02003870
3871 // put pattern in search history
Bram Moolenaarc7be3f32009-12-24 14:01:12 +00003872 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 add_to_history(HIST_SEARCH, buf, TRUE, NUL);
Bram Moolenaard7663c22019-08-06 21:59:57 +02003874
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003875 (void)normal_search(cap, cmdchar == '*' ? '/' : '?', buf, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 }
3877 else
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003878 {
3879 g_tag_at_cursor = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 do_cmdline_cmd(buf);
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02003881 g_tag_at_cursor = FALSE;
3882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883
3884 vim_free(buf);
3885}
3886
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887/*
3888 * Get visually selected text, within one line only.
3889 * Returns FAIL if more than one line selected.
3890 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003891 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003892get_visual_text(
3893 cmdarg_T *cap,
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003894 char_u **pp, // return: start of selected text
3895 int *lenp) // return: length of selected text
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896{
3897 if (VIsual_mode != 'V')
3898 unadjust_for_sel();
3899 if (VIsual.lnum != curwin->w_cursor.lnum)
3900 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003901 if (cap != NULL)
3902 clearopbeep(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 return FAIL;
3904 }
3905 if (VIsual_mode == 'V')
3906 {
3907 *pp = ml_get_curline();
3908 *lenp = (int)STRLEN(*pp);
3909 }
3910 else
3911 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003912 if (LT_POS(curwin->w_cursor, VIsual))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 {
3914 *pp = ml_get_pos(&curwin->w_cursor);
3915 *lenp = VIsual.col - curwin->w_cursor.col + 1;
3916 }
3917 else
3918 {
3919 *pp = ml_get_pos(&VIsual);
3920 *lenp = curwin->w_cursor.col - VIsual.col + 1;
3921 }
Bram Moolenaar615ddd52021-11-17 18:00:31 +00003922 if (**pp == NUL)
3923 *lenp = 0;
3924 if (has_mbyte && *lenp > 0)
3925 // Correct the length to include all bytes of the last character.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003926 *lenp += (*mb_ptr2len)(*pp + (*lenp - 1)) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 }
3928 reset_VIsual_and_resel();
3929 return OK;
3930}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931
3932/*
3933 * CTRL-T: backwards in tag stack
3934 */
3935 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003936nv_tagpop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937{
3938 if (!checkclearopq(cap->oap))
3939 do_tag((char_u *)"", DT_POP, (int)cap->count1, FALSE, TRUE);
3940}
3941
3942/*
3943 * Handle scrolling command 'H', 'L' and 'M'.
3944 */
3945 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003946nv_scroll(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947{
3948 int used = 0;
3949 long n;
3950#ifdef FEAT_FOLDING
3951 linenr_T lnum;
3952#endif
3953 int half;
3954
3955 cap->oap->motion_type = MLINE;
3956 setpcmark();
3957
3958 if (cap->cmdchar == 'L')
3959 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003960 validate_botline(); // make sure curwin->w_botline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 curwin->w_cursor.lnum = curwin->w_botline - 1;
3962 if (cap->count1 - 1 >= curwin->w_cursor.lnum)
3963 curwin->w_cursor.lnum = 1;
3964 else
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003965 {
3966#ifdef FEAT_FOLDING
3967 if (hasAnyFolding(curwin))
3968 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003969 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00003970 for (n = cap->count1 - 1; n > 0
3971 && curwin->w_cursor.lnum > curwin->w_topline; --n)
3972 {
3973 (void)hasFolding(curwin->w_cursor.lnum,
3974 &curwin->w_cursor.lnum, NULL);
3975 --curwin->w_cursor.lnum;
3976 }
3977 }
3978 else
3979#endif
3980 curwin->w_cursor.lnum -= cap->count1 - 1;
3981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 }
3983 else
3984 {
3985 if (cap->cmdchar == 'M')
3986 {
3987#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003988 // Don't count filler lines above the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 used -= diff_check_fill(curwin, curwin->w_topline)
3990 - curwin->w_topfill;
3991#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003992 validate_botline(); // make sure w_empty_rows is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 half = (curwin->w_height - curwin->w_empty_rows + 1) / 2;
3994 for (n = 0; curwin->w_topline + n < curbuf->b_ml.ml_line_count; ++n)
3995 {
3996#ifdef FEAT_DIFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01003997 // Count half he number of filler lines to be "below this
3998 // line" and half to be "above the next line".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 if (n > 0 && used + diff_check_fill(curwin, curwin->w_topline
4000 + n) / 2 >= half)
4001 {
4002 --n;
4003 break;
4004 }
4005#endif
4006 used += plines(curwin->w_topline + n);
4007 if (used >= half)
4008 break;
4009#ifdef FEAT_FOLDING
4010 if (hasFolding(curwin->w_topline + n, NULL, &lnum))
4011 n = lnum - curwin->w_topline;
4012#endif
4013 }
4014 if (n > 0 && used > curwin->w_height)
4015 --n;
4016 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004017 else // (cap->cmdchar == 'H')
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004018 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 n = cap->count1 - 1;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004020#ifdef FEAT_FOLDING
4021 if (hasAnyFolding(curwin))
4022 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004023 // Count a fold for one screen line.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004024 lnum = curwin->w_topline;
4025 while (n-- > 0 && lnum < curwin->w_botline - 1)
4026 {
Bram Moolenaarcde88542015-08-11 19:14:00 +02004027 (void)hasFolding(lnum, NULL, &lnum);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004028 ++lnum;
4029 }
4030 n = lnum - curwin->w_topline;
4031 }
4032#endif
4033 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 curwin->w_cursor.lnum = curwin->w_topline + n;
4035 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4036 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4037 }
4038
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004039 // Correct for 'so', except when an operator is pending.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02004040 if (cap->oap->op_type == OP_NOP)
4041 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 beginline(BL_SOL | BL_FIX);
4043}
4044
4045/*
4046 * Cursor right commands.
4047 */
4048 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004049nv_right(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050{
4051 long n;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004052 int past_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004054 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4055 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004056 // <C-Right> and <S-Right> move a word or WORD right
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004057 if (mod_mask & MOD_MASK_CTRL)
4058 cap->arg = TRUE;
4059 nv_wordcmd(cap);
4060 return;
4061 }
4062
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 cap->oap->motion_type = MCHAR;
4064 cap->oap->inclusive = FALSE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004065 past_line = (VIsual_active && *p_sel != 'o');
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 /*
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004068 * In virtual edit mode, there's no such thing as "past_line", as lines
4069 * are (theoretically) infinitely long.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 */
4071 if (virtual_active())
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004072 past_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073
4074 for (n = cap->count1; n > 0; --n)
4075 {
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004076 if ((!past_line && oneright() == FAIL)
4077 || (past_line && *ml_get_cursor() == NUL)
Bram Moolenaar78a15312009-05-15 19:33:18 +00004078 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 {
4080 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004081 * <Space> wraps to next line if 'whichwrap' has 's'.
4082 * 'l' wraps to next line if 'whichwrap' has 'l'.
4083 * CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 */
4085 if ( ((cap->cmdchar == ' '
4086 && vim_strchr(p_ww, 's') != NULL)
4087 || (cap->cmdchar == 'l'
4088 && vim_strchr(p_ww, 'l') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004089 || (cap->cmdchar == K_RIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 && vim_strchr(p_ww, '>') != NULL))
4091 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4092 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004093 // When deleting we also count the NL as a character.
4094 // Set cap->oap->inclusive when last char in the line is
4095 // included, move to next line after that
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004096 if ( cap->oap->op_type != OP_NOP
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 && !cap->oap->inclusive
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004098 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 cap->oap->inclusive = TRUE;
4100 else
4101 {
4102 ++curwin->w_cursor.lnum;
4103 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105 curwin->w_set_curswant = TRUE;
4106 cap->oap->inclusive = FALSE;
4107 }
4108 continue;
4109 }
4110 if (cap->oap->op_type == OP_NOP)
4111 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004112 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 if (n == cap->count1)
4114 beep_flush();
4115 }
4116 else
4117 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004118 if (!LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 cap->oap->inclusive = TRUE;
4120 }
4121 break;
4122 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004123 else if (past_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 {
4125 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 if (virtual_active())
4127 oneright();
4128 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 if (has_mbyte)
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02004131 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 ++curwin->w_cursor.col;
4134 }
4135 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 }
4137#ifdef FEAT_FOLDING
4138 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4139 && cap->oap->op_type == OP_NOP)
4140 foldOpenCursor();
4141#endif
4142}
4143
4144/*
4145 * Cursor left commands.
4146 *
4147 * Returns TRUE when operator end should not be adjusted.
4148 */
4149 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004150nv_left(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151{
4152 long n;
4153
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004154 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
4155 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004156 // <C-Left> and <S-Left> move a word or WORD left
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004157 if (mod_mask & MOD_MASK_CTRL)
4158 cap->arg = 1;
4159 nv_bck_word(cap);
4160 return;
4161 }
4162
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 cap->oap->motion_type = MCHAR;
4164 cap->oap->inclusive = FALSE;
4165 for (n = cap->count1; n > 0; --n)
4166 {
4167 if (oneleft() == FAIL)
4168 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004169 // <BS> and <Del> wrap to previous line if 'whichwrap' has 'b'.
4170 // 'h' wraps to previous line if 'whichwrap' has 'h'.
4171 // CURS_LEFT wraps to previous line if 'whichwrap' has '<'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 if ( (((cap->cmdchar == K_BS
4173 || cap->cmdchar == Ctrl_H)
4174 && vim_strchr(p_ww, 'b') != NULL)
4175 || (cap->cmdchar == 'h'
4176 && vim_strchr(p_ww, 'h') != NULL)
Bram Moolenaara88d9682005-03-25 21:45:43 +00004177 || (cap->cmdchar == K_LEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 && vim_strchr(p_ww, '<') != NULL))
4179 && curwin->w_cursor.lnum > 1)
4180 {
4181 --(curwin->w_cursor.lnum);
4182 coladvance((colnr_T)MAXCOL);
4183 curwin->w_set_curswant = TRUE;
4184
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004185 // When the NL before the first char has to be deleted we
4186 // put the cursor on the NUL after the previous line.
4187 // This is a very special case, be careful!
4188 // Don't adjust op_end now, otherwise it won't work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 if ( (cap->oap->op_type == OP_DELETE
4190 || cap->oap->op_type == OP_CHANGE)
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004191 && !LINEEMPTY(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004193 char_u *cp = ml_get_cursor();
4194
4195 if (*cp != NUL)
4196 {
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004197 if (has_mbyte)
4198 curwin->w_cursor.col += (*mb_ptr2len)(cp);
4199 else
Bram Moolenaar7d311c52014-02-22 23:49:35 +01004200 ++curwin->w_cursor.col;
4201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 cap->retval |= CA_NO_ADJ_OP_END;
4203 }
4204 continue;
4205 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004206 // Only beep and flush if not moved at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 else if (cap->oap->op_type == OP_NOP && n == cap->count1)
4208 beep_flush();
4209 break;
4210 }
4211 }
4212#ifdef FEAT_FOLDING
4213 if (n != cap->count1 && (fdo_flags & FDO_HOR) && KeyTyped
4214 && cap->oap->op_type == OP_NOP)
4215 foldOpenCursor();
4216#endif
4217}
4218
4219/*
4220 * Cursor up commands.
4221 * cap->arg is TRUE for "-": Move cursor to first non-blank.
4222 */
4223 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004224nv_up(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004226 if (mod_mask & MOD_MASK_SHIFT)
4227 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004228 // <S-Up> is page up
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004229 cap->arg = BACKWARD;
4230 nv_page(cap);
4231 }
4232 else
4233 {
4234 cap->oap->motion_type = MLINE;
4235 if (cursor_up(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4236 clearopbeep(cap->oap);
4237 else if (cap->arg)
4238 beginline(BL_WHITE | BL_FIX);
4239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240}
4241
4242/*
4243 * Cursor down commands.
4244 * cap->arg is TRUE for CR and "+": Move cursor to first non-blank.
4245 */
4246 static void
Bram Moolenaar1b010052016-09-12 12:24:11 +02004247nv_down(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004249 if (mod_mask & MOD_MASK_SHIFT)
4250 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004251 // <S-Down> is page down
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004252 cap->arg = FORWARD;
4253 nv_page(cap);
4254 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02004255#if defined(FEAT_QUICKFIX)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004256 // Quickfix window only: view the result under the cursor.
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004257 else if (bt_quickfix(curbuf) && cap->cmdchar == CAR)
4258 qf_view_result(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259#endif
Bram Moolenaar0a08c632018-07-25 22:36:52 +02004260 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 {
4262#ifdef FEAT_CMDWIN
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004263 // In the cmdline window a <CR> executes the command.
Bram Moolenaar05159a02005-02-26 23:04:13 +00004264 if (cmdwin_type != 0 && cap->cmdchar == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 cmdwin_result = CAR;
4266 else
4267#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02004268#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004269 // In a prompt buffer a <CR> in the last line invokes the callback.
Bram Moolenaarf2732452018-06-03 14:47:35 +02004270 if (bt_prompt(curbuf) && cap->cmdchar == CAR
4271 && curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4272 {
4273 invoke_prompt_callback();
4274 if (restart_edit == 0)
4275 restart_edit = 'a';
4276 }
4277 else
4278#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 {
4280 cap->oap->motion_type = MLINE;
4281 if (cursor_down(cap->count1, cap->oap->op_type == OP_NOP) == FAIL)
4282 clearopbeep(cap->oap);
4283 else if (cap->arg)
4284 beginline(BL_WHITE | BL_FIX);
4285 }
4286 }
4287}
4288
4289#ifdef FEAT_SEARCHPATH
4290/*
4291 * Grab the file name under the cursor and edit it.
4292 */
4293 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004294nv_gotofile(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295{
4296 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004297 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004299 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 {
4301 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004302 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 return;
4304 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004305 if (curbuf_locked())
4306 {
4307 clearop(cap->oap);
4308 return;
4309 }
Bram Moolenaar5aed0cc2020-05-12 22:02:21 +02004310#ifdef FEAT_PROP_POPUP
4311 if (ERROR_IF_TERM_POPUP_WINDOW)
4312 return;
4313#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004315 ptr = grab_file_name(cap->count1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316
4317 if (ptr != NULL)
4318 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004319 // do autowrite if necessary
Bram Moolenaareb44a682017-08-03 22:44:55 +02004320 if (curbufIsChanged() && curbuf->b_nwindows <= 1 && !buf_hide(curbuf))
Bram Moolenaarcde88542015-08-11 19:14:00 +02004321 (void)autowrite(curbuf, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 setpcmark();
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004323 if (do_ecmd(0, ptr, NULL, NULL, ECMD_LAST,
Bram Moolenaareb44a682017-08-03 22:44:55 +02004324 buf_hide(curbuf) ? ECMD_HIDE : 0, curwin) == OK
Bram Moolenaar2a79ed22017-05-24 09:51:39 +02004325 && cap->nchar == 'F' && lnum >= 0)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004326 {
4327 curwin->w_cursor.lnum = lnum;
4328 check_cursor_lnum();
4329 beginline(BL_SOL | BL_FIX);
4330 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 vim_free(ptr);
4332 }
4333 else
4334 clearop(cap->oap);
4335}
4336#endif
4337
4338/*
4339 * <End> command: to end of current line or last line.
4340 */
4341 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004342nv_end(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004344 if (cap->arg || (mod_mask & MOD_MASK_CTRL)) // CTRL-END = goto last line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004346 cap->arg = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 nv_goto(cap);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004348 cap->count1 = 1; // to end of current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 }
4350 nv_dollar(cap);
4351}
4352
4353/*
4354 * Handle the "$" command.
4355 */
4356 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004357nv_dollar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358{
4359 cap->oap->motion_type = MCHAR;
4360 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004361 // In virtual mode when off the edge of a line and an operator
4362 // is pending (whew!) keep the cursor where it is.
4363 // Otherwise, send it to the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 if (!virtual_active() || gchar_cursor() != NUL
4365 || cap->oap->op_type == OP_NOP)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004366 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 if (cursor_down((long)(cap->count1 - 1),
4368 cap->oap->op_type == OP_NOP) == FAIL)
4369 clearopbeep(cap->oap);
4370#ifdef FEAT_FOLDING
4371 else if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4372 foldOpenCursor();
4373#endif
4374}
4375
4376/*
4377 * Implementation of '?' and '/' commands.
4378 * If cap->arg is TRUE don't set PC mark.
4379 */
4380 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004381nv_search(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382{
4383 oparg_T *oap = cap->oap;
Bram Moolenaardda933d2016-09-03 21:04:58 +02004384 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385
4386 if (cap->cmdchar == '?' && cap->oap->op_type == OP_ROT13)
4387 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004388 // Translate "g??" to "g?g?"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 cap->cmdchar = 'g';
4390 cap->nchar = '?';
4391 nv_operator(cap);
4392 return;
4393 }
4394
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004395 // When using 'incsearch' the cursor may be moved to set a different search
4396 // start position.
Bram Moolenaarc97f9a52021-12-28 20:59:56 +00004397 cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398
4399 if (cap->searchbuf == NULL)
4400 {
4401 clearop(oap);
4402 return;
4403 }
4404
Bram Moolenaar46539112015-02-17 15:43:57 +01004405 (void)normal_search(cap, cap->cmdchar, cap->searchbuf,
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004406 (cap->arg || !EQUAL_POS(save_cursor, curwin->w_cursor))
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004407 ? 0 : SEARCH_MARK, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408}
4409
4410/*
4411 * Handle "N" and "n" commands.
4412 * cap->arg is SEARCH_REV for "N", 0 for "n".
4413 */
4414 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004415nv_next(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416{
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004417 pos_T old = curwin->w_cursor;
4418 int wrapped = FALSE;
4419 int i = normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, &wrapped);
Bram Moolenaar46539112015-02-17 15:43:57 +01004420
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004421 if (i == 1 && !wrapped && EQUAL_POS(old, curwin->w_cursor))
Bram Moolenaar46539112015-02-17 15:43:57 +01004422 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004423 // Avoid getting stuck on the current cursor position, which can
4424 // happen when an offset is given and the cursor is on the last char
4425 // in the buffer: Repeat with count + 1.
Bram Moolenaar46539112015-02-17 15:43:57 +01004426 cap->count1 += 1;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004427 (void)normal_search(cap, 0, NULL, SEARCH_MARK | cap->arg, NULL);
Bram Moolenaar46539112015-02-17 15:43:57 +01004428 cap->count1 -= 1;
4429 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430}
4431
4432/*
4433 * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat).
4434 * Uses only cap->count1 and cap->oap from "cap".
Bram Moolenaar46539112015-02-17 15:43:57 +01004435 * Return 0 for failure, 1 for found, 2 for found and line offset added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 */
Bram Moolenaar46539112015-02-17 15:43:57 +01004437 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004438normal_search(
4439 cmdarg_T *cap,
4440 int dir,
4441 char_u *pat,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004442 int opt, // extra flags for do_search()
4443 int *wrapped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444{
4445 int i;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004446 searchit_arg_T sia;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447
4448 cap->oap->motion_type = MCHAR;
4449 cap->oap->inclusive = FALSE;
4450 cap->oap->use_reg_one = TRUE;
4451 curwin->w_set_curswant = TRUE;
4452
Bram Moolenaara80faa82020-04-12 19:37:17 +02004453 CLEAR_FIELD(sia);
Bram Moolenaarc036e872020-02-21 21:30:52 +01004454 i = do_search(cap->oap, dir, dir, pat, cap->count1,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004455 opt | SEARCH_OPT | SEARCH_ECHO | SEARCH_MSG, &sia);
4456 if (wrapped != NULL)
4457 *wrapped = sia.sa_wrapped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 if (i == 0)
4459 clearop(cap->oap);
4460 else
4461 {
4462 if (i == 2)
4463 cap->oap->motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465#ifdef FEAT_FOLDING
4466 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4467 foldOpenCursor();
4468#endif
4469 }
4470
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004471 // "/$" will put the cursor after the end of the line, may need to
4472 // correct that here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 check_cursor();
Bram Moolenaar46539112015-02-17 15:43:57 +01004474 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475}
4476
4477/*
4478 * Character search commands.
4479 * cap->arg is BACKWARD for 'F' and 'T', FORWARD for 'f' and 't', TRUE for
4480 * ',' and FALSE for ';'.
4481 * cap->nchar is NUL for ',' and ';' (repeat the search)
4482 */
4483 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004484nv_csearch(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485{
4486 int t_cmd;
4487
4488 if (cap->cmdchar == 't' || cap->cmdchar == 'T')
4489 t_cmd = TRUE;
4490 else
4491 t_cmd = FALSE;
4492
4493 cap->oap->motion_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 if (IS_SPECIAL(cap->nchar) || searchc(cap, t_cmd) == FAIL)
4495 clearopbeep(cap->oap);
4496 else
4497 {
4498 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004499 // Include a Tab for "tx" and for "dfx".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 if (gchar_cursor() == TAB && virtual_active() && cap->arg == FORWARD
4501 && (t_cmd || cap->oap->op_type != OP_NOP))
4502 {
4503 colnr_T scol, ecol;
4504
4505 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4506 curwin->w_cursor.coladd = ecol - scol;
4507 }
4508 else
4509 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511#ifdef FEAT_FOLDING
4512 if ((fdo_flags & FDO_HOR) && KeyTyped && cap->oap->op_type == OP_NOP)
4513 foldOpenCursor();
4514#endif
4515 }
4516}
4517
4518/*
4519 * "[" and "]" commands.
4520 * cap->arg is BACKWARD for "[" and FORWARD for "]".
4521 */
4522 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004523nv_brackets(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524{
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004525 pos_T new_pos = {0, 0, 0};
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 pos_T prev_pos;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004527 pos_T *pos = NULL; // init for GCC
4528 pos_T old_pos; // cursor position before command
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 int flag;
4530 long n;
4531 int findc;
4532 int c;
4533
4534 cap->oap->motion_type = MCHAR;
4535 cap->oap->inclusive = FALSE;
4536 old_pos = curwin->w_cursor;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004537 curwin->w_cursor.coladd = 0; // TODO: don't do this for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538
4539#ifdef FEAT_SEARCHPATH
4540 /*
4541 * "[f" or "]f" : Edit file under the cursor (same as "gf")
4542 */
4543 if (cap->nchar == 'f')
4544 nv_gotofile(cap);
4545 else
4546#endif
4547
4548#ifdef FEAT_FIND_ID
4549 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00004550 * Find the occurrence(s) of the identifier or define under cursor
4551 * in current and included files or jump to the first occurrence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552 *
4553 * search list jump
4554 * fwd bwd fwd bwd fwd bwd
4555 * identifier "]i" "[i" "]I" "[I" "]^I" "[^I"
4556 * define "]d" "[d" "]D" "[D" "]^D" "[^D"
4557 */
4558 if (vim_strchr((char_u *)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004559# ifdef EBCDIC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 "iI\005dD\067",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004561# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 "iI\011dD\004",
Bram Moolenaar32526b32019-01-19 17:43:09 +01004563# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 cap->nchar) != NULL)
4565 {
4566 char_u *ptr;
4567 int len;
4568
4569 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
4570 clearop(cap->oap);
4571 else
4572 {
4573 find_pattern_in_path(ptr, 0, len, TRUE,
4574 cap->count0 == 0 ? !isupper(cap->nchar) : FALSE,
4575 ((cap->nchar & 0xf) == ('d' & 0xf)) ? FIND_DEFINE : FIND_ANY,
4576 cap->count1,
4577 isupper(cap->nchar) ? ACTION_SHOW_ALL :
4578 islower(cap->nchar) ? ACTION_SHOW : ACTION_GOTO,
4579 cap->cmdchar == ']' ? curwin->w_cursor.lnum + 1 : (linenr_T)1,
4580 (linenr_T)MAXLNUM);
4581 curwin->w_set_curswant = TRUE;
4582 }
4583 }
4584 else
4585#endif
4586
4587 /*
4588 * "[{", "[(", "]}" or "])": go to Nth unclosed '{', '(', '}' or ')'
4589 * "[#", "]#": go to start/end of Nth innermost #if..#endif construct.
4590 * "[/", "[*", "]/", "]*": go to Nth comment start/end.
4591 * "[m" or "]m" search for prev/next start of (Java) method.
4592 * "[M" or "]M" search for prev/next end of (Java) method.
4593 */
4594 if ( (cap->cmdchar == '['
4595 && vim_strchr((char_u *)"{(*/#mM", cap->nchar) != NULL)
4596 || (cap->cmdchar == ']'
4597 && vim_strchr((char_u *)"})*/#mM", cap->nchar) != NULL))
4598 {
4599 if (cap->nchar == '*')
4600 cap->nchar = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 prev_pos.lnum = 0;
4602 if (cap->nchar == 'm' || cap->nchar == 'M')
4603 {
4604 if (cap->cmdchar == '[')
4605 findc = '{';
4606 else
4607 findc = '}';
4608 n = 9999;
4609 }
4610 else
4611 {
4612 findc = cap->nchar;
4613 n = cap->count1;
4614 }
4615 for ( ; n > 0; --n)
4616 {
4617 if ((pos = findmatchlimit(cap->oap, findc,
4618 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD, 0)) == NULL)
4619 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004620 if (new_pos.lnum == 0) // nothing found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 {
4622 if (cap->nchar != 'm' && cap->nchar != 'M')
4623 clearopbeep(cap->oap);
4624 }
4625 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004626 pos = &new_pos; // use last one found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 break;
4628 }
4629 prev_pos = new_pos;
4630 curwin->w_cursor = *pos;
4631 new_pos = *pos;
4632 }
4633 curwin->w_cursor = old_pos;
4634
4635 /*
4636 * Handle "[m", "]m", "[M" and "[M". The findmatchlimit() only
4637 * brought us to the match for "[m" and "]M" when inside a method.
4638 * Try finding the '{' or '}' we want to be at.
4639 * Also repeat for the given count.
4640 */
4641 if (cap->nchar == 'm' || cap->nchar == 'M')
4642 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004643 // norm is TRUE for "]M" and "[m"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 int norm = ((findc == '{') == (cap->nchar == 'm'));
4645
4646 n = cap->count1;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004647 // found a match: we were inside a method
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 if (prev_pos.lnum != 0)
4649 {
4650 pos = &prev_pos;
4651 curwin->w_cursor = prev_pos;
4652 if (norm)
4653 --n;
4654 }
4655 else
4656 pos = NULL;
4657 while (n > 0)
4658 {
4659 for (;;)
4660 {
4661 if ((findc == '{' ? dec_cursor() : inc_cursor()) < 0)
4662 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004663 // if not found anything, that's an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 if (pos == NULL)
4665 clearopbeep(cap->oap);
4666 n = 0;
4667 break;
4668 }
4669 c = gchar_cursor();
4670 if (c == '{' || c == '}')
4671 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004672 // Must have found end/start of class: use it.
4673 // Or found the place to be at.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 if ((c == findc && norm) || (n == 1 && !norm))
4675 {
4676 new_pos = curwin->w_cursor;
4677 pos = &new_pos;
4678 n = 0;
4679 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004680 // if no match found at all, we started outside of the
4681 // class and we're inside now. Just go on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 else if (new_pos.lnum == 0)
4683 {
4684 new_pos = curwin->w_cursor;
4685 pos = &new_pos;
4686 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004687 // found start/end of other method: go to match
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 else if ((pos = findmatchlimit(cap->oap, findc,
4689 (cap->cmdchar == '[') ? FM_BACKWARD : FM_FORWARD,
4690 0)) == NULL)
4691 n = 0;
4692 else
4693 curwin->w_cursor = *pos;
4694 break;
4695 }
4696 }
4697 --n;
4698 }
4699 curwin->w_cursor = old_pos;
4700 if (pos == NULL && new_pos.lnum != 0)
4701 clearopbeep(cap->oap);
4702 }
4703 if (pos != NULL)
4704 {
4705 setpcmark();
4706 curwin->w_cursor = *pos;
4707 curwin->w_set_curswant = TRUE;
4708#ifdef FEAT_FOLDING
4709 if ((fdo_flags & FDO_BLOCK) && KeyTyped
4710 && cap->oap->op_type == OP_NOP)
4711 foldOpenCursor();
4712#endif
4713 }
4714 }
4715
4716 /*
4717 * "[[", "[]", "]]" and "][": move to start or end of function
4718 */
4719 else if (cap->nchar == '[' || cap->nchar == ']')
4720 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004721 if (cap->nchar == cap->cmdchar) // "]]" or "[["
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 flag = '{';
4723 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004724 flag = '}'; // "][" or "[]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725
4726 curwin->w_set_curswant = TRUE;
4727 /*
4728 * Imitate strange Vi behaviour: When using "]]" with an operator
4729 * we also stop at '}'.
4730 */
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004731 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, flag,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 (cap->oap->op_type != OP_NOP
4733 && cap->arg == FORWARD && flag == '{')))
4734 clearopbeep(cap->oap);
4735 else
4736 {
4737 if (cap->oap->op_type == OP_NOP)
4738 beginline(BL_WHITE | BL_FIX);
4739#ifdef FEAT_FOLDING
4740 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4741 foldOpenCursor();
4742#endif
4743 }
4744 }
4745
4746 /*
4747 * "[p", "[P", "]P" and "]p": put with indent adjustment
4748 */
4749 else if (cap->nchar == 'p' || cap->nchar == 'P')
4750 {
Bram Moolenaar0ab190c2019-05-23 23:27:36 +02004751 nv_put_opt(cap, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 }
4753
4754 /*
4755 * "['", "[`", "]'" and "]`": jump to next mark
4756 */
4757 else if (cap->nchar == '\'' || cap->nchar == '`')
4758 {
4759 pos = &curwin->w_cursor;
4760 for (n = cap->count1; n > 0; --n)
4761 {
4762 prev_pos = *pos;
4763 pos = getnextmark(pos, cap->cmdchar == '[' ? BACKWARD : FORWARD,
4764 cap->nchar == '\'');
4765 if (pos == NULL)
4766 break;
4767 }
4768 if (pos == NULL)
4769 pos = &prev_pos;
4770 nv_cursormark(cap, cap->nchar == '\'', pos);
4771 }
4772
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 /*
4774 * [ or ] followed by a middle mouse click: put selected text with
4775 * indent adjustment. Any other button just does as usual.
4776 */
Bram Moolenaar5ea0ac72010-05-07 15:52:08 +02004777 else if (cap->nchar >= K_RIGHTRELEASE && cap->nchar <= K_LEFTMOUSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778 {
4779 (void)do_mouse(cap->oap, cap->nchar,
4780 (cap->cmdchar == ']') ? FORWARD : BACKWARD,
4781 cap->count1, PUT_FIXINDENT);
4782 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783
4784#ifdef FEAT_FOLDING
4785 /*
4786 * "[z" and "]z": move to start or end of open fold.
4787 */
4788 else if (cap->nchar == 'z')
4789 {
4790 if (foldMoveTo(FALSE, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4791 cap->count1) == FAIL)
4792 clearopbeep(cap->oap);
4793 }
4794#endif
4795
4796#ifdef FEAT_DIFF
4797 /*
4798 * "[c" and "]c": move to next or previous diff-change.
4799 */
4800 else if (cap->nchar == 'c')
4801 {
4802 if (diff_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD,
4803 cap->count1) == FAIL)
4804 clearopbeep(cap->oap);
4805 }
4806#endif
4807
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00004808#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004809 /*
4810 * "[s", "[S", "]s" and "]S": move to next spell error.
4811 */
4812 else if (cap->nchar == 's' || cap->nchar == 'S')
4813 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004814 setpcmark();
4815 for (n = 0; n < cap->count1; ++n)
Bram Moolenaar95529562005-08-25 21:21:38 +00004816 if (spell_move_to(curwin, cap->cmdchar == ']' ? FORWARD : BACKWARD,
4817 cap->nchar == 's' ? TRUE : FALSE, FALSE, NULL) == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004818 {
4819 clearopbeep(cap->oap);
4820 break;
4821 }
Bram Moolenaarb73fa622017-12-21 20:27:47 +01004822 else
4823 curwin->w_set_curswant = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004824# ifdef FEAT_FOLDING
4825 if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped)
4826 foldOpenCursor();
4827# endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004828 }
4829#endif
4830
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004831 // Not a valid cap->nchar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 else
4833 clearopbeep(cap->oap);
4834}
4835
4836/*
4837 * Handle Normal mode "%" command.
4838 */
4839 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004840nv_percent(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841{
4842 pos_T *pos;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02004843#if defined(FEAT_FOLDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 linenr_T lnum = curwin->w_cursor.lnum;
4845#endif
4846
4847 cap->oap->inclusive = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004848 if (cap->count0) // {cnt}% : goto {cnt} percentage in file
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 {
4850 if (cap->count0 > 100)
4851 clearopbeep(cap->oap);
4852 else
4853 {
4854 cap->oap->motion_type = MLINE;
4855 setpcmark();
Bram Moolenaar2c655342021-02-23 19:32:03 +01004856 // Round up, so 'normal 100%' always jumps at the line line.
4857 // Beyond 21474836 lines, (ml_line_count * 100 + 99) would
4858 // overflow on 32-bits, so use a formula with less accuracy
4859 // to avoid overflows.
4860 if (curbuf->b_ml.ml_line_count >= 21474836)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count + 99L)
4862 / 100L * cap->count0;
4863 else
4864 curwin->w_cursor.lnum = (curbuf->b_ml.ml_line_count *
4865 cap->count0 + 99L) / 100L;
Bram Moolenaar1d859e22021-01-28 17:24:58 +01004866 if (curwin->w_cursor.lnum < 1)
4867 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4869 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4870 beginline(BL_SOL | BL_FIX);
4871 }
4872 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004873 else // "%" : go to matching paren
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 {
4875 cap->oap->motion_type = MCHAR;
4876 cap->oap->use_reg_one = TRUE;
4877 if ((pos = findmatch(cap->oap, NUL)) == NULL)
4878 clearopbeep(cap->oap);
4879 else
4880 {
4881 setpcmark();
4882 curwin->w_cursor = *pos;
4883 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 }
4887 }
4888#ifdef FEAT_FOLDING
4889 if (cap->oap->op_type == OP_NOP
4890 && lnum != curwin->w_cursor.lnum
4891 && (fdo_flags & FDO_PERCENT)
4892 && KeyTyped)
4893 foldOpenCursor();
4894#endif
4895}
4896
4897/*
4898 * Handle "(" and ")" commands.
4899 * cap->arg is BACKWARD for "(" and FORWARD for ")".
4900 */
4901 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004902nv_brace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903{
4904 cap->oap->motion_type = MCHAR;
4905 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004906 // The motion used to be inclusive for "(", but that is not what Vi does.
Bram Moolenaarebefac62005-12-28 22:39:57 +00004907 cap->oap->inclusive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 curwin->w_set_curswant = TRUE;
4909
4910 if (findsent(cap->arg, cap->count1) == FAIL)
4911 clearopbeep(cap->oap);
4912 else
4913 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004914 // Don't leave the cursor on the NUL past end of line.
Bram Moolenaar1f14d572008-01-12 16:12:10 +00004915 adjust_cursor(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917#ifdef FEAT_FOLDING
4918 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4919 foldOpenCursor();
4920#endif
4921 }
4922}
4923
4924/*
4925 * "m" command: Mark a position.
4926 */
4927 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004928nv_mark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929{
4930 if (!checkclearop(cap->oap))
4931 {
4932 if (setmark(cap->nchar) == FAIL)
4933 clearopbeep(cap->oap);
4934 }
4935}
4936
4937/*
4938 * "{" and "}" commands.
4939 * cmd->arg is BACKWARD for "{" and FORWARD for "}".
4940 */
4941 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004942nv_findpar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943{
4944 cap->oap->motion_type = MCHAR;
4945 cap->oap->inclusive = FALSE;
4946 cap->oap->use_reg_one = TRUE;
4947 curwin->w_set_curswant = TRUE;
Bram Moolenaar8b96d642005-09-05 22:05:30 +00004948 if (!findpar(&cap->oap->inclusive, cap->arg, cap->count1, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 clearopbeep(cap->oap);
4950 else
4951 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953#ifdef FEAT_FOLDING
4954 if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP)
4955 foldOpenCursor();
4956#endif
4957 }
4958}
4959
4960/*
4961 * "u" command: Undo or make lower case.
4962 */
4963 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004964nv_undo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965{
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004966 if (cap->oap->op_type == OP_LOWER || VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01004968 // translate "<Visual>u" to "<Visual>gu" and "guu" to "gugu"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 cap->cmdchar = 'g';
4970 cap->nchar = 'u';
4971 nv_operator(cap);
4972 }
4973 else
4974 nv_kundo(cap);
4975}
4976
4977/*
4978 * <Undo> command.
4979 */
4980 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004981nv_kundo(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982{
4983 if (!checkclearopq(cap->oap))
4984 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02004985#ifdef FEAT_JOB_CHANNEL
4986 if (bt_prompt(curbuf))
4987 {
4988 clearopbeep(cap->oap);
4989 return;
4990 }
4991#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 u_undo((int)cap->count1);
4993 curwin->w_set_curswant = TRUE;
4994 }
4995}
4996
4997/*
4998 * Handle the "r" command.
4999 */
5000 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005001nv_replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002{
5003 char_u *ptr;
5004 int had_ctrl_v;
5005 long n;
5006
5007 if (checkclearop(cap->oap))
5008 return;
Bram Moolenaarf2732452018-06-03 14:47:35 +02005009#ifdef FEAT_JOB_CHANNEL
5010 if (bt_prompt(curbuf) && !prompt_curpos_editable())
5011 {
5012 clearopbeep(cap->oap);
5013 return;
5014 }
5015#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005017 // get another character
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 if (cap->nchar == Ctrl_V)
5019 {
5020 had_ctrl_v = Ctrl_V;
Bram Moolenaar0684e362020-12-03 19:54:42 +01005021 cap->nchar = get_literal(FALSE);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005022 // Don't redo a multibyte character with CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 if (cap->nchar > DEL)
5024 had_ctrl_v = NUL;
5025 }
5026 else
5027 had_ctrl_v = NUL;
5028
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005029 // Abort if the character is a special key.
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00005030 if (IS_SPECIAL(cap->nchar))
5031 {
5032 clearopbeep(cap->oap);
5033 return;
5034 }
5035
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005036 // Visual mode "r"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 if (VIsual_active)
5038 {
Bram Moolenaar57fb0da2009-02-04 10:46:25 +00005039 if (got_int)
5040 reset_VIsual();
Bram Moolenaard9820532013-11-04 01:41:17 +01005041 if (had_ctrl_v)
5042 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005043 // Use a special (negative) number to make a difference between a
5044 // literal CR or NL and a line break.
Bram Moolenaarf12519d2018-02-06 22:52:49 +01005045 if (cap->nchar == CAR)
5046 cap->nchar = REPLACE_CR_NCHAR;
5047 else if (cap->nchar == NL)
5048 cap->nchar = REPLACE_NL_NCHAR;
Bram Moolenaard9820532013-11-04 01:41:17 +01005049 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 nv_operator(cap);
5051 return;
5052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005054 // Break tabs, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 if (virtual_active())
5056 {
5057 if (u_save_cursor() == FAIL)
5058 return;
5059 if (gchar_cursor() == NUL)
5060 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005061 // Add extra space and put the cursor on the first one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 coladvance_force((colnr_T)(getviscol() + cap->count1));
5063 curwin->w_cursor.col -= cap->count1;
5064 }
5065 else if (gchar_cursor() == TAB)
5066 coladvance_force(getviscol());
5067 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005069 // Abort if not enough characters to replace.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 ptr = ml_get_cursor();
Bram Moolenaarc2f5abc2007-08-08 19:42:05 +00005071 if (STRLEN(ptr) < (unsigned)cap->count1
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005072 || (has_mbyte && mb_charlen(ptr) < cap->count1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 {
5074 clearopbeep(cap->oap);
5075 return;
5076 }
5077
5078 /*
5079 * Replacing with a TAB is done by edit() when it is complicated because
5080 * 'expandtab' or 'smarttab' is set. CTRL-V TAB inserts a literal TAB.
5081 * Other characters are done below to avoid problems with things like
5082 * CTRL-V 048 (for edit() this would be R CTRL-V 0 ESC).
5083 */
5084 if (had_ctrl_v != Ctrl_V && cap->nchar == '\t' && (curbuf->b_p_et || p_sta))
5085 {
5086 stuffnumReadbuff(cap->count1);
5087 stuffcharReadbuff('R');
5088 stuffcharReadbuff('\t');
5089 stuffcharReadbuff(ESC);
5090 return;
5091 }
5092
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005093 // save line for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 if (u_save_cursor() == FAIL)
5095 return;
5096
5097 if (had_ctrl_v != Ctrl_V && (cap->nchar == '\r' || cap->nchar == '\n'))
5098 {
5099 /*
5100 * Replace character(s) by a single newline.
5101 * Strange vi behaviour: Only one newline is inserted.
5102 * Delete the characters here.
5103 * Insert the newline with an insert command, takes care of
5104 * autoindent. The insert command depends on being on the last
5105 * character of a line or not.
5106 */
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005107 (void)del_chars(cap->count1, FALSE); // delete the characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 stuffcharReadbuff('\r');
5109 stuffcharReadbuff(ESC);
5110
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005111 // Give 'r' to edit(), to get the redo command right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 invoke_edit(cap, TRUE, 'r', FALSE);
5113 }
5114 else
5115 {
5116 prep_redo(cap->oap->regname, cap->count1,
5117 NUL, 'r', NUL, had_ctrl_v, cap->nchar);
5118
5119 curbuf->b_op_start = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120 if (has_mbyte)
5121 {
5122 int old_State = State;
5123
5124 if (cap->ncharC1 != 0)
5125 AppendCharToRedobuff(cap->ncharC1);
5126 if (cap->ncharC2 != 0)
5127 AppendCharToRedobuff(cap->ncharC2);
5128
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005129 // This is slow, but it handles replacing a single-byte with a
5130 // multi-byte and the other way around. Also handles adding
5131 // composing characters for utf-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 for (n = cap->count1; n > 0; --n)
5133 {
5134 State = REPLACE;
Bram Moolenaar8320da42012-04-30 18:18:47 +02005135 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5136 {
5137 int c = ins_copychar(curwin->w_cursor.lnum
5138 + (cap->nchar == Ctrl_Y ? -1 : 1));
5139 if (c != NUL)
5140 ins_char(c);
5141 else
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005142 // will be decremented further down
Bram Moolenaar8320da42012-04-30 18:18:47 +02005143 ++curwin->w_cursor.col;
5144 }
5145 else
5146 ins_char(cap->nchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 State = old_State;
5148 if (cap->ncharC1 != 0)
5149 ins_char(cap->ncharC1);
5150 if (cap->ncharC2 != 0)
5151 ins_char(cap->ncharC2);
5152 }
5153 }
5154 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 {
5156 /*
5157 * Replace the characters within one line.
5158 */
5159 for (n = cap->count1; n > 0; --n)
5160 {
5161 /*
5162 * Get ptr again, because u_save and/or showmatch() will have
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005163 * released the line. This may also happen in ins_copychar().
5164 * At the same time we let know that the line will be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 */
Bram Moolenaar8320da42012-04-30 18:18:47 +02005166 if (cap->nchar == Ctrl_E || cap->nchar == Ctrl_Y)
5167 {
5168 int c = ins_copychar(curwin->w_cursor.lnum
5169 + (cap->nchar == Ctrl_Y ? -1 : 1));
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005170
5171 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005172 if (c != NUL)
5173 ptr[curwin->w_cursor.col] = c;
5174 }
5175 else
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005176 {
5177 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
Bram Moolenaar8320da42012-04-30 18:18:47 +02005178 ptr[curwin->w_cursor.col] = cap->nchar;
Bram Moolenaar35a9a002021-09-11 21:14:20 +02005179 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 if (p_sm && msg_silent == 0)
5181 showmatch(cap->nchar);
5182 ++curwin->w_cursor.col;
5183 }
5184#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005185 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 {
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005187 colnr_T start = (colnr_T)(curwin->w_cursor.col - cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188
Bram Moolenaar009b2592004-10-24 19:18:58 +00005189 netbeans_removed(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005190 (long)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 netbeans_inserted(curbuf, curwin->w_cursor.lnum, start,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005192 &ptr[start], (int)cap->count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 }
5194#endif
5195
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005196 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 changed_bytes(curwin->w_cursor.lnum,
5198 (colnr_T)(curwin->w_cursor.col - cap->count1));
5199 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005200 --curwin->w_cursor.col; // cursor on the last replaced char
5201 // if the character on the left of the current cursor is a multi-byte
5202 // character, move two characters left
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 if (has_mbyte)
5204 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 curbuf->b_op_end = curwin->w_cursor;
5206 curwin->w_set_curswant = TRUE;
5207 set_last_insert(cap->nchar);
5208 }
5209}
5210
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211/*
5212 * 'o': Exchange start and end of Visual area.
5213 * 'O': same, but in block mode exchange left and right corners.
5214 */
5215 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005216v_swap_corners(int cmdchar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217{
5218 pos_T old_cursor;
5219 colnr_T left, right;
5220
5221 if (cmdchar == 'O' && VIsual_mode == Ctrl_V)
5222 {
5223 old_cursor = curwin->w_cursor;
5224 getvcols(curwin, &old_cursor, &VIsual, &left, &right);
5225 curwin->w_cursor.lnum = VIsual.lnum;
5226 coladvance(left);
5227 VIsual = curwin->w_cursor;
5228
5229 curwin->w_cursor.lnum = old_cursor.lnum;
5230 curwin->w_curswant = right;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005231 // 'selection "exclusive" and cursor at right-bottom corner: move it
5232 // right one column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233 if (old_cursor.lnum >= VIsual.lnum && *p_sel == 'e')
5234 ++curwin->w_curswant;
5235 coladvance(curwin->w_curswant);
5236 if (curwin->w_cursor.col == old_cursor.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 && (!virtual_active()
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005238 || curwin->w_cursor.coladd == old_cursor.coladd))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 {
5240 curwin->w_cursor.lnum = VIsual.lnum;
5241 if (old_cursor.lnum <= VIsual.lnum && *p_sel == 'e')
5242 ++right;
5243 coladvance(right);
5244 VIsual = curwin->w_cursor;
5245
5246 curwin->w_cursor.lnum = old_cursor.lnum;
5247 coladvance(left);
5248 curwin->w_curswant = left;
5249 }
5250 }
5251 else
5252 {
5253 old_cursor = curwin->w_cursor;
5254 curwin->w_cursor = VIsual;
5255 VIsual = old_cursor;
5256 curwin->w_set_curswant = TRUE;
5257 }
5258}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259
5260/*
5261 * "R" (cap->arg is FALSE) and "gR" (cap->arg is TRUE).
5262 */
5263 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005264nv_Replace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005266 if (VIsual_active) // "R" is replace lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 {
5268 cap->cmdchar = 'c';
5269 cap->nchar = NUL;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005270 VIsual_mode_orig = VIsual_mode; // remember original area for gv
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 VIsual_mode = 'V';
5272 nv_operator(cap);
5273 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005274 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 {
5276 if (!curbuf->b_p_ma)
Bram Moolenaar108010a2021-06-27 22:03:33 +02005277 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 else
5279 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 if (virtual_active())
5281 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282 invoke_edit(cap, FALSE, cap->arg ? 'V' : 'R', FALSE);
5283 }
5284 }
5285}
5286
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287/*
5288 * "gr".
5289 */
5290 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005291nv_vreplace(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293 if (VIsual_active)
5294 {
5295 cap->cmdchar = 'r';
5296 cap->nchar = cap->extra_char;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005297 nv_replace(cap); // Do same as "r" in Visual mode for now
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01005299 else if (!checkclearopq(cap->oap))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 {
5301 if (!curbuf->b_p_ma)
Bram Moolenaar108010a2021-06-27 22:03:33 +02005302 emsg(_(e_cannot_make_changes_modifiable_is_off));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 else
5304 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005305 if (cap->extra_char == Ctrl_V) // get another character
Bram Moolenaar0684e362020-12-03 19:54:42 +01005306 cap->extra_char = get_literal(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 stuffcharReadbuff(cap->extra_char);
5308 stuffcharReadbuff(ESC);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 if (virtual_active())
5310 coladvance(getviscol());
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 invoke_edit(cap, TRUE, 'v', FALSE);
5312 }
5313 }
5314}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315
5316/*
5317 * Swap case for "~" command, when it does not work like an operator.
5318 */
5319 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005320n_swapchar(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321{
5322 long n;
5323 pos_T startpos;
5324 int did_change = 0;
5325#ifdef FEAT_NETBEANS_INTG
5326 pos_T pos;
5327 char_u *ptr;
5328 int count;
5329#endif
5330
5331 if (checkclearopq(cap->oap))
5332 return;
5333
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005334 if (LINEEMPTY(curwin->w_cursor.lnum) && vim_strchr(p_ww, '~') == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 {
5336 clearopbeep(cap->oap);
5337 return;
5338 }
5339
5340 prep_redo_cmd(cap);
5341
5342 if (u_save_cursor() == FAIL)
5343 return;
5344
5345 startpos = curwin->w_cursor;
5346#ifdef FEAT_NETBEANS_INTG
5347 pos = startpos;
5348#endif
5349 for (n = cap->count1; n > 0; --n)
5350 {
5351 did_change |= swapchar(cap->oap->op_type, &curwin->w_cursor);
5352 inc_cursor();
5353 if (gchar_cursor() == NUL)
5354 {
5355 if (vim_strchr(p_ww, '~') != NULL
5356 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
5357 {
5358#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005359 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 {
5361 if (did_change)
5362 {
5363 ptr = ml_get(pos.lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005364 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005365 netbeans_removed(curbuf, pos.lnum, pos.col,
5366 (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00005368 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369 }
5370 pos.col = 0;
5371 pos.lnum++;
5372 }
5373#endif
5374 ++curwin->w_cursor.lnum;
5375 curwin->w_cursor.col = 0;
5376 if (n > 1)
5377 {
5378 if (u_savesub(curwin->w_cursor.lnum) == FAIL)
5379 break;
5380 u_clearline();
5381 }
5382 }
5383 else
5384 break;
5385 }
5386 }
5387#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005388 if (did_change && netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389 {
5390 ptr = ml_get(pos.lnum);
5391 count = curwin->w_cursor.col - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00005392 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
5393 netbeans_inserted(curbuf, pos.lnum, pos.col, &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 }
5395#endif
5396
5397
5398 check_cursor();
5399 curwin->w_set_curswant = TRUE;
5400 if (did_change)
5401 {
5402 changed_lines(startpos.lnum, startpos.col, curwin->w_cursor.lnum + 1,
5403 0L);
5404 curbuf->b_op_start = startpos;
5405 curbuf->b_op_end = curwin->w_cursor;
5406 if (curbuf->b_op_end.col > 0)
5407 --curbuf->b_op_end.col;
5408 }
5409}
5410
5411/*
5412 * Move cursor to mark.
5413 */
5414 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005415nv_cursormark(cmdarg_T *cap, int flag, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416{
5417 if (check_mark(pos) == FAIL)
5418 clearop(cap->oap);
5419 else
5420 {
5421 if (cap->cmdchar == '\''
5422 || cap->cmdchar == '`'
5423 || cap->cmdchar == '['
5424 || cap->cmdchar == ']')
5425 setpcmark();
5426 curwin->w_cursor = *pos;
5427 if (flag)
5428 beginline(BL_WHITE | BL_FIX);
5429 else
5430 check_cursor();
5431 }
5432 cap->oap->motion_type = flag ? MLINE : MCHAR;
5433 if (cap->cmdchar == '`')
5434 cap->oap->use_reg_one = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005435 cap->oap->inclusive = FALSE; // ignored if not MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 curwin->w_set_curswant = TRUE;
5437}
5438
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439/*
5440 * Handle commands that are operators in Visual mode.
5441 */
5442 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005443v_visop(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444{
5445 static char_u trans[] = "YyDdCcxdXdAAIIrr";
5446
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005447 // Uppercase means linewise, except in block mode, then "D" deletes till
5448 // the end of the line, and "C" replaces till EOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449 if (isupper(cap->cmdchar))
5450 {
5451 if (VIsual_mode != Ctrl_V)
Bram Moolenaara390bb62013-03-13 19:02:41 +01005452 {
5453 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 else if (cap->cmdchar == 'C' || cap->cmdchar == 'D')
5457 curwin->w_curswant = MAXCOL;
5458 }
5459 cap->cmdchar = *(vim_strchr(trans, cap->cmdchar) + 1);
5460 nv_operator(cap);
5461}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462
5463/*
5464 * "s" and "S" commands.
5465 */
5466 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005467nv_subst(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468{
Bram Moolenaard96ff162018-02-18 22:13:29 +01005469#ifdef FEAT_TERMINAL
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005470 // When showing output of term_dumpdiff() swap the top and bottom.
Bram Moolenaard96ff162018-02-18 22:13:29 +01005471 if (term_swap_diff() == OK)
5472 return;
5473#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02005474#ifdef FEAT_JOB_CHANNEL
5475 if (bt_prompt(curbuf) && !prompt_curpos_editable())
5476 {
5477 clearopbeep(cap->oap);
5478 return;
5479 }
5480#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005481 if (VIsual_active) // "vs" and "vS" are the same as "vc"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 {
5483 if (cap->cmdchar == 'S')
Bram Moolenaara390bb62013-03-13 19:02:41 +01005484 {
5485 VIsual_mode_orig = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 VIsual_mode = 'V';
Bram Moolenaara390bb62013-03-13 19:02:41 +01005487 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488 cap->cmdchar = 'c';
5489 nv_operator(cap);
5490 }
5491 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005492 nv_optrans(cap);
5493}
5494
5495/*
5496 * Abbreviated commands.
5497 */
5498 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005499nv_abbrev(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500{
5501 if (cap->cmdchar == K_DEL || cap->cmdchar == K_KDEL)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005502 cap->cmdchar = 'x'; // DEL key behaves like 'x'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005504 // in Visual mode these commands are operators
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 if (VIsual_active)
5506 v_visop(cap);
5507 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 nv_optrans(cap);
5509}
5510
5511/*
5512 * Translate a command into another command.
5513 */
5514 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005515nv_optrans(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516{
5517 static char_u *(ar[8]) = {(char_u *)"dl", (char_u *)"dh",
5518 (char_u *)"d$", (char_u *)"c$",
5519 (char_u *)"cl", (char_u *)"cc",
5520 (char_u *)"yy", (char_u *)":s\r"};
5521 static char_u *str = (char_u *)"xXDCsSY&";
5522
5523 if (!checkclearopq(cap->oap))
5524 {
Bram Moolenaar7a9bd7c2019-09-17 22:42:55 +02005525 // In Vi "2D" doesn't delete the next line. Can't translate it
5526 // either, because "2." should also not use the count.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005527 if (cap->cmdchar == 'D' && vim_strchr(p_cpo, CPO_HASH) != NULL)
5528 {
5529 cap->oap->start = curwin->w_cursor;
5530 cap->oap->op_type = OP_DELETE;
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +00005531#ifdef FEAT_EVAL
5532 set_op_var(OP_DELETE);
5533#endif
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005534 cap->count1 = 1;
5535 nv_dollar(cap);
5536 finish_op = TRUE;
5537 ResetRedobuff();
5538 AppendCharToRedobuff('D');
5539 }
5540 else
5541 {
5542 if (cap->count0)
5543 stuffnumReadbuff(cap->count0);
Bram Moolenaar56ebbab2019-09-20 13:40:14 +02005544 stuffReadbuff(ar[(int)(vim_strchr(str, cap->cmdchar) - str)]);
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005545 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 }
5547 cap->opcount = 0;
5548}
5549
5550/*
5551 * "'" and "`" commands. Also for "g'" and "g`".
5552 * cap->arg is TRUE for "'" and "g'".
5553 */
5554 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005555nv_gomark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556{
5557 pos_T *pos;
5558 int c;
5559#ifdef FEAT_FOLDING
Bram Moolenaar8754deb2013-01-17 13:24:08 +01005560 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005561 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562#endif
5563
5564 if (cap->cmdchar == 'g')
5565 c = cap->extra_char;
5566 else
5567 c = cap->nchar;
5568 pos = getmark(c, (cap->oap->op_type == OP_NOP));
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005569 if (pos == (pos_T *)-1) // jumped to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 {
5571 if (cap->arg)
5572 {
5573 check_cursor_lnum();
5574 beginline(BL_WHITE | BL_FIX);
5575 }
5576 else
5577 check_cursor();
5578 }
5579 else
5580 nv_cursormark(cap, cap->arg, pos);
5581
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005582 // May need to clear the coladd that a mark includes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 if (!virtual_active())
5584 curwin->w_cursor.coladd = 0;
Bram Moolenaar9aa15692017-08-19 15:05:32 +02005585 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586#ifdef FEAT_FOLDING
5587 if (cap->oap->op_type == OP_NOP
Bram Moolenaar15364d72013-01-24 21:00:20 +01005588 && pos != NULL
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005589 && (pos == (pos_T *)-1 || !EQUAL_POS(old_cursor, *pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 && (fdo_flags & FDO_MARK)
5591 && old_KeyTyped)
5592 foldOpenCursor();
5593#endif
5594}
5595
5596/*
Bram Moolenaar62a23252020-08-09 14:04:42 +02005597 * Handle CTRL-O, CTRL-I, "g;", "g," and "CTRL-Tab" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 */
5599 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005600nv_pcmark(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 pos_T *pos;
Bram Moolenaar739f13a2021-12-13 13:12:53 +00005603#ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005604 linenr_T lnum = curwin->w_cursor.lnum;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005605 int old_KeyTyped = KeyTyped; // getting file may reset it
Bram Moolenaar739f13a2021-12-13 13:12:53 +00005606#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607
5608 if (!checkclearopq(cap->oap))
5609 {
Bram Moolenaar62a23252020-08-09 14:04:42 +02005610 if (cap->cmdchar == TAB && mod_mask == MOD_MASK_CTRL)
5611 {
5612 if (goto_tabpage_lastused() == FAIL)
5613 clearopbeep(cap->oap);
5614 return;
5615 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616 if (cap->cmdchar == 'g')
5617 pos = movechangelist((int)cap->count1);
5618 else
5619 pos = movemark((int)cap->count1);
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005620 if (pos == (pos_T *)-1) // jump to other file
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 {
5622 curwin->w_set_curswant = TRUE;
5623 check_cursor();
5624 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005625 else if (pos != NULL) // can jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00005626 nv_cursormark(cap, FALSE, pos);
5627 else if (cap->cmdchar == 'g')
5628 {
5629 if (curbuf->b_changelistlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005630 emsg(_("E664: changelist is empty"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005631 else if (cap->count1 < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005632 emsg(_("E662: At start of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005634 emsg(_("E663: At end of changelist"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635 }
5636 else
5637 clearopbeep(cap->oap);
5638# ifdef FEAT_FOLDING
5639 if (cap->oap->op_type == OP_NOP
5640 && (pos == (pos_T *)-1 || lnum != curwin->w_cursor.lnum)
5641 && (fdo_flags & FDO_MARK)
5642 && old_KeyTyped)
5643 foldOpenCursor();
5644# endif
5645 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646}
5647
5648/*
5649 * Handle '"' command.
5650 */
5651 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005652nv_regname(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653{
5654 if (checkclearop(cap->oap))
5655 return;
5656#ifdef FEAT_EVAL
5657 if (cap->nchar == '=')
5658 cap->nchar = get_expr_register();
5659#endif
5660 if (cap->nchar != NUL && valid_yank_reg(cap->nchar, FALSE))
5661 {
5662 cap->oap->regname = cap->nchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005663 cap->opcount = cap->count0; // remember count before '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664#ifdef FEAT_EVAL
5665 set_reg_var(cap->oap->regname);
5666#endif
5667 }
5668 else
5669 clearopbeep(cap->oap);
5670}
5671
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672/*
5673 * Handle "v", "V" and "CTRL-V" commands.
5674 * Also for "gh", "gH" and "g^H" commands: Always start Select mode, cap->arg
5675 * is TRUE.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005676 * Handle CTRL-Q just like CTRL-V.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 */
5678 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005679nv_visual(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680{
Bram Moolenaardf177f62005-02-22 08:39:57 +00005681 if (cap->cmdchar == Ctrl_Q)
5682 cap->cmdchar = Ctrl_V;
5683
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005684 // 'v', 'V' and CTRL-V can be used while an operator is pending to make it
5685 // characterwise, linewise, or blockwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686 if (cap->oap->op_type != OP_NOP)
5687 {
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01005688 motion_force = cap->oap->motion_force = cap->cmdchar;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005689 finish_op = FALSE; // operator doesn't finish now but later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690 return;
5691 }
5692
5693 VIsual_select = cap->arg;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005694 if (VIsual_active) // change Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005696 if (VIsual_mode == cap->cmdchar) // stop visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 end_visual_mode();
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005698 else // toggle char/block mode
5699 { // or char/line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700 VIsual_mode = cap->cmdchar;
5701 showmode();
=?UTF-8?q?Magnus=20Gro=C3=9F?=f1e88762021-09-12 13:39:55 +02005702 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005704 redraw_curbuf_later(INVERTED); // update the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 }
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005706 else // start Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 {
5708 check_visual_highlight();
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005709 if (cap->count0 > 0 && resel_VIsual_mode != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005710 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005711 // use previously selected part
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 VIsual = curwin->w_cursor;
5713
5714 VIsual_active = TRUE;
5715 VIsual_reselect = TRUE;
5716 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005717 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005718 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 setmouse();
Bram Moolenaar09df3122006-01-23 22:23:09 +00005720 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005721 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722 /*
5723 * For V and ^V, we multiply the number of lines even if there
5724 * was only one -- webb
5725 */
5726 if (resel_VIsual_mode != 'v' || resel_VIsual_line_count > 1)
5727 {
5728 curwin->w_cursor.lnum +=
5729 resel_VIsual_line_count * cap->count0 - 1;
Bram Moolenaarb07626d2021-10-11 15:40:43 +01005730 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 }
5732 VIsual_mode = resel_VIsual_mode;
5733 if (VIsual_mode == 'v')
5734 {
5735 if (resel_VIsual_line_count <= 1)
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005736 {
5737 validate_virtcol();
5738 curwin->w_curswant = curwin->w_virtcol
5739 + resel_VIsual_vcol * cap->count0 - 1;
5740 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 else
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005742 curwin->w_curswant = resel_VIsual_vcol;
5743 coladvance(curwin->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744 }
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005745 if (resel_VIsual_vcol == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 {
5747 curwin->w_curswant = MAXCOL;
5748 coladvance((colnr_T)MAXCOL);
5749 }
5750 else if (VIsual_mode == Ctrl_V)
5751 {
5752 validate_virtcol();
5753 curwin->w_curswant = curwin->w_virtcol
Bram Moolenaarca0c9fc2011-10-04 21:22:44 +02005754 + resel_VIsual_vcol * cap->count0 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 coladvance(curwin->w_curswant);
5756 }
5757 else
5758 curwin->w_set_curswant = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005759 redraw_curbuf_later(INVERTED); // show the inversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 }
5761 else
5762 {
5763 if (!cap->arg)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005764 // start Select mode when 'selectmode' contains "cmd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 may_start_select('c');
5766 n_start_visual_mode(cap->cmdchar);
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005767 if (VIsual_mode != 'V' && *p_sel == 'e')
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005768 ++cap->count1; // include one more char
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005769 if (cap->count0 > 0 && --cap->count1 > 0)
5770 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005771 // With a count select that many characters or lines.
Bram Moolenaar6057b9c2012-05-25 13:12:36 +02005772 if (VIsual_mode == 'v' || VIsual_mode == Ctrl_V)
5773 nv_right(cap);
5774 else if (VIsual_mode == 'V')
5775 nv_down(cap);
5776 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777 }
5778 }
5779}
5780
5781/*
5782 * Start selection for Shift-movement keys.
5783 */
5784 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005785start_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786{
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005787 // if 'selectmode' contains "key", start Select mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788 may_start_select('k');
5789 n_start_visual_mode('v');
5790}
5791
5792/*
5793 * Start Select mode, if "c" is in 'selectmode' and not in a mapping or menu.
5794 */
5795 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005796may_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797{
5798 VIsual_select = (stuff_empty() && typebuf_typed()
5799 && (vim_strchr(p_slm, c) != NULL));
5800}
5801
5802/*
5803 * Start Visual mode "c".
5804 * Should set VIsual_select before calling this.
5805 */
5806 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005807n_start_visual_mode(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808{
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005809#ifdef FEAT_CONCEAL
Bram Moolenaarea042672021-06-29 20:22:32 +02005810 int cursor_line_was_concealed = curwin->w_p_cole > 0
5811 && conceal_cursor_line(curwin);
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005812#endif
5813
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814 VIsual_mode = c;
5815 VIsual_active = TRUE;
5816 VIsual_reselect = TRUE;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01005817
5818 // Corner case: the 0 position in a tab may change when going into
Bram Moolenaar4b96df52020-01-26 22:00:26 +01005819 // virtualedit. Recalculate curwin->w_cursor to avoid bad highlighting.
Gary Johnson53ba05b2021-07-26 22:19:10 +02005820 if (c == Ctrl_V && (get_ve_flags() & VE_BLOCK) && gchar_cursor() == TAB)
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005821 {
5822 validate_virtcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823 coladvance(curwin->w_virtcol);
Bram Moolenaar2dac2132012-08-15 13:31:00 +02005824 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825 VIsual = curwin->w_cursor;
5826
5827#ifdef FEAT_FOLDING
5828 foldAdjustVisual();
5829#endif
5830
Bram Moolenaara0620062021-11-17 16:52:40 +00005831 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832 setmouse();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005833#ifdef FEAT_CONCEAL
Bram Moolenaarea042672021-06-29 20:22:32 +02005834 // Check if redraw is needed after changing the state.
5835 conceal_check_cursor_line(cursor_line_was_concealed);
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005836#endif
5837
Bram Moolenaar09df3122006-01-23 22:23:09 +00005838 if (p_smd && msg_silent == 0)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005839 redraw_cmdline = TRUE; // show visual mode later
Bram Moolenaar071d4272004-06-13 20:20:40 +00005840#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005841 // Make sure the clipboard gets updated. Needed because start and
5842 // end may still be the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843 clip_star.vmode = NUL;
5844#endif
5845
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005846 // Only need to redraw this line, unless still need to redraw an old
5847 // Visual area (when 'lazyredraw' is set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 if (curwin->w_redr_type < INVERTED)
5849 {
5850 curwin->w_old_cursor_lnum = curwin->w_cursor.lnum;
5851 curwin->w_old_visual_lnum = curwin->w_cursor.lnum;
5852 }
5853}
5854
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855
5856/*
5857 * CTRL-W: Window commands
5858 */
5859 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005860nv_window(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861{
Bram Moolenaar938783d2017-07-16 20:13:26 +02005862 if (cap->nchar == ':')
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005863 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005864 // "CTRL-W :" is the same as typing ":"; useful in a terminal window
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005865 cap->cmdchar = ':';
5866 cap->nchar = NUL;
Bram Moolenaar938783d2017-07-16 20:13:26 +02005867 nv_colon(cap);
Bram Moolenaar2efb3232017-12-19 12:27:23 +01005868 }
Bram Moolenaar938783d2017-07-16 20:13:26 +02005869 else if (!checkclearop(cap->oap))
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005870 do_window(cap->nchar, cap->count0, NUL); // everything is in window.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871}
5872
5873/*
5874 * CTRL-Z: Suspend
5875 */
5876 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005877nv_suspend(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878{
5879 clearop(cap->oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880 if (VIsual_active)
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005881 end_visual_mode(); // stop Visual mode
Bram Moolenaar100118c2020-12-11 19:30:34 +01005882 do_cmdline_cmd((char_u *)"stop");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883}
5884
5885/*
5886 * Commands starting with "g".
5887 */
5888 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005889nv_g_cmd(cmdarg_T *cap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890{
5891 oparg_T *oap = cap->oap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892 pos_T tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893 int i;
5894 int flag = FALSE;
5895
5896 switch (cap->nchar)
5897 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005898 case Ctrl_A:
5899 case Ctrl_X:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900#ifdef MEM_PROFILE
5901 /*
5902 * "g^A": dump log of used memory.
5903 */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005904 if (!VIsual_active && cap->nchar == Ctrl_A)
5905 vim_mem_profile_dump();
5906 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005908 /*
5909 * "g^A/g^X": sequentially increment visually selected region
5910 */
5911 if (VIsual_active)
5912 {
5913 cap->arg = TRUE;
5914 cap->cmdchar = cap->nchar;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005915 cap->nchar = NUL;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005916 nv_addsub(cap);
5917 }
5918 else
5919 clearopbeep(oap);
5920 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922 /*
5923 * "gR": Enter virtual replace mode.
5924 */
5925 case 'R':
5926 cap->arg = TRUE;
5927 nv_Replace(cap);
5928 break;
5929
5930 case 'r':
5931 nv_vreplace(cap);
5932 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933
5934 case '&':
5935 do_cmdline_cmd((char_u *)"%s//~/&");
5936 break;
5937
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 /*
5939 * "gv": Reselect the previous Visual area. If Visual already active,
5940 * exchange previous and current Visual area.
5941 */
5942 case 'v':
5943 if (checkclearop(oap))
5944 break;
5945
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005946 if ( curbuf->b_visual.vi_start.lnum == 0
5947 || curbuf->b_visual.vi_start.lnum > curbuf->b_ml.ml_line_count
5948 || curbuf->b_visual.vi_end.lnum == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005949 beep_flush();
5950 else
5951 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005952 // set w_cursor to the start of the Visual area, tpos to the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953 if (VIsual_active)
5954 {
5955 i = VIsual_mode;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005956 VIsual_mode = curbuf->b_visual.vi_mode;
5957 curbuf->b_visual.vi_mode = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958# ifdef FEAT_EVAL
5959 curbuf->b_visual_mode_eval = i;
5960# endif
5961 i = curwin->w_curswant;
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005962 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5963 curbuf->b_visual.vi_curswant = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005965 tpos = curbuf->b_visual.vi_end;
5966 curbuf->b_visual.vi_end = curwin->w_cursor;
5967 curwin->w_cursor = curbuf->b_visual.vi_start;
5968 curbuf->b_visual.vi_start = VIsual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005969 }
5970 else
5971 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +00005972 VIsual_mode = curbuf->b_visual.vi_mode;
5973 curwin->w_curswant = curbuf->b_visual.vi_curswant;
5974 tpos = curbuf->b_visual.vi_end;
5975 curwin->w_cursor = curbuf->b_visual.vi_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 }
5977
5978 VIsual_active = TRUE;
5979 VIsual_reselect = TRUE;
5980
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005981 // Set Visual to the start and w_cursor to the end of the Visual
5982 // area. Make sure they are on an existing character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005983 check_cursor();
5984 VIsual = curwin->w_cursor;
5985 curwin->w_cursor = tpos;
5986 check_cursor();
5987 update_topline();
5988 /*
5989 * When called from normal "g" command: start Select mode when
5990 * 'selectmode' contains "cmd". When called for K_SELECT, always
5991 * start Select mode.
5992 */
5993 if (cap->arg)
5994 VIsual_select = TRUE;
5995 else
5996 may_start_select('c');
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998#ifdef FEAT_CLIPBOARD
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01005999 // Make sure the clipboard gets updated. Needed because start and
6000 // end are still the same, and the selection needs to be owned
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 clip_star.vmode = NUL;
6002#endif
6003 redraw_curbuf_later(INVERTED);
6004 showmode();
6005 }
6006 break;
6007 /*
6008 * "gV": Don't reselect the previous Visual area after a Select mode
6009 * mapping of menu.
6010 */
6011 case 'V':
6012 VIsual_reselect = FALSE;
6013 break;
6014
6015 /*
6016 * "gh": start Select mode.
6017 * "gH": start Select line mode.
6018 * "g^H": start Select block mode.
6019 */
6020 case K_BS:
6021 cap->nchar = Ctrl_H;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006022 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023 case 'h':
6024 case 'H':
6025 case Ctrl_H:
6026# ifdef EBCDIC
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006027 // EBCDIC: 'v'-'h' != '^v'-'^h'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 if (cap->nchar == Ctrl_H)
6029 cap->cmdchar = Ctrl_V;
6030 else
6031# endif
6032 cap->cmdchar = cap->nchar + ('v' - 'h');
6033 cap->arg = TRUE;
6034 nv_visual(cap);
6035 break;
Bram Moolenaar641e2862012-07-25 15:06:34 +02006036
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006037 // "gn", "gN" visually select next/previous search match
6038 // "gn" selects next match
6039 // "gN" selects previous match
Bram Moolenaar641e2862012-07-25 15:06:34 +02006040 case 'N':
6041 case 'n':
6042 if (!current_search(cap->count1, cap->nchar == 'n'))
Bram Moolenaarf00dc262012-10-21 03:54:33 +02006043 clearopbeep(oap);
Bram Moolenaar641e2862012-07-25 15:06:34 +02006044 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045
6046 /*
6047 * "gj" and "gk" two new funny movement keys -- up and down
6048 * movement based on *screen* line rather than *file* line.
6049 */
6050 case 'j':
6051 case K_DOWN:
Bram Moolenaare71996b2021-01-21 17:03:07 +01006052 // with 'nowrap' it works just like the normal "j" command.
6053 if (!curwin->w_p_wrap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054 {
6055 oap->motion_type = MLINE;
6056 i = cursor_down(cap->count1, oap->op_type == OP_NOP);
6057 }
6058 else
6059 i = nv_screengo(oap, FORWARD, cap->count1);
6060 if (i == FAIL)
6061 clearopbeep(oap);
6062 break;
6063
6064 case 'k':
6065 case K_UP:
Bram Moolenaare71996b2021-01-21 17:03:07 +01006066 // with 'nowrap' it works just like the normal "k" command.
6067 if (!curwin->w_p_wrap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 {
6069 oap->motion_type = MLINE;
6070 i = cursor_up(cap->count1, oap->op_type == OP_NOP);
6071 }
6072 else
6073 i = nv_screengo(oap, BACKWARD, cap->count1);
6074 if (i == FAIL)
6075 clearopbeep(oap);
6076 break;
6077
6078 /*
6079 * "gJ": join two lines without inserting a space.
6080 */
6081 case 'J':
6082 nv_join(cap);
6083 break;
6084
6085 /*
6086 * "g0", "g^" and "g$": Like "0", "^" and "$" but for screen lines.
6087 * "gm": middle of "g0" and "g$".
6088 */
6089 case '^':
6090 flag = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006091 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006092
6093 case '0':
6094 case 'm':
6095 case K_HOME:
6096 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006097 oap->motion_type = MCHAR;
6098 oap->inclusive = FALSE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006099 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006101 int width1 = curwin->w_width - curwin_col_off();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102 int width2 = width1 + curwin_col_off2();
6103
6104 validate_virtcol();
6105 i = 0;
6106 if (curwin->w_virtcol >= (colnr_T)width1 && width2 > 0)
6107 i = (curwin->w_virtcol - width1) / width2 * width2 + width1;
6108 }
6109 else
6110 i = curwin->w_leftcol;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006111 // Go to the middle of the screen line. When 'number' or
6112 // 'relativenumber' is on and lines are wrapping the middle can be more
6113 // to the left.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114 if (cap->nchar == 'm')
Bram Moolenaar02631462017-09-22 15:20:32 +02006115 i += (curwin->w_width - curwin_col_off()
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 + ((curwin->w_p_wrap && i > 0)
6117 ? curwin_col_off2() : 0)) / 2;
6118 coladvance((colnr_T)i);
6119 if (flag)
6120 {
6121 do
6122 i = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01006123 while (VIM_ISWHITE(i) && oneright() == OK);
Bram Moolenaarf9514162018-11-22 03:08:29 +01006124 curwin->w_valid &= ~VALID_WCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125 }
6126 curwin->w_set_curswant = TRUE;
6127 break;
6128
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006129 case 'M':
6130 {
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006131 oap->motion_type = MCHAR;
6132 oap->inclusive = FALSE;
Bram Moolenaar71c41252021-12-26 15:00:07 +00006133 i = linetabsize(ml_get_curline());
Bram Moolenaar8b530c12019-10-28 02:13:05 +01006134 if (cap->count0 > 0 && cap->count0 <= 100)
6135 coladvance((colnr_T)(i * cap->count0 / 100));
6136 else
6137 coladvance((colnr_T)(i / 2));
6138 curwin->w_set_curswant = TRUE;
6139 }
6140 break;
6141
Bram Moolenaar071d4272004-06-13 20:20:40 +00006142 case '_':
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006143 // "g_": to the last non-blank character in the line or <count> lines
6144 // downward.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145 cap->oap->motion_type = MCHAR;
6146 cap->oap->inclusive = TRUE;
6147 curwin->w_curswant = MAXCOL;
6148 if (cursor_down((long)(cap->count1 - 1),
6149 cap->oap->op_type == OP_NOP) == FAIL)
6150 clearopbeep(cap->oap);
6151 else
6152 {
6153 char_u *ptr = ml_get_curline();
6154
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006155 // In Visual mode we may end up after the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156 if (curwin->w_cursor.col > 0 && ptr[curwin->w_cursor.col] == NUL)
6157 --curwin->w_cursor.col;
6158
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006159 // Decrease the cursor column until it's on a non-blank.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 while (curwin->w_cursor.col > 0
Bram Moolenaar1c465442017-03-12 20:10:05 +01006161 && VIM_ISWHITE(ptr[curwin->w_cursor.col]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162 --curwin->w_cursor.col;
6163 curwin->w_set_curswant = TRUE;
Bram Moolenaar5890b2c2010-01-12 15:42:37 +01006164 adjust_for_sel(cap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 }
6166 break;
6167
6168 case '$':
6169 case K_END:
6170 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 {
6172 int col_off = curwin_col_off();
6173
6174 oap->motion_type = MCHAR;
6175 oap->inclusive = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006176 if (curwin->w_p_wrap && curwin->w_width != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177 {
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006178 curwin->w_curswant = MAXCOL; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179 if (cap->count1 == 1)
6180 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006181 int width1 = curwin->w_width - col_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182 int width2 = width1 + curwin_col_off2();
6183
6184 validate_virtcol();
6185 i = width1 - 1;
6186 if (curwin->w_virtcol >= (colnr_T)width1)
6187 i += ((curwin->w_virtcol - width1) / width2 + 1)
6188 * width2;
6189 coladvance((colnr_T)i);
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006190
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006191 // Make sure we stick in this column.
Bram Moolenaarb69510e2013-07-09 17:08:29 +02006192 validate_virtcol();
6193 curwin->w_curswant = curwin->w_virtcol;
6194 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195 if (curwin->w_cursor.col > 0 && curwin->w_p_wrap)
6196 {
6197 /*
6198 * Check for landing on a character that got split at
6199 * the end of the line. We do not want to advance to
6200 * the next screen line.
6201 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202 if (curwin->w_virtcol > (colnr_T)i)
6203 --curwin->w_cursor.col;
6204 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 }
6206 else if (nv_screengo(oap, FORWARD, cap->count1 - 1) == FAIL)
6207 clearopbeep(oap);
6208 }
6209 else
6210 {
Bram Moolenaard5c82342019-07-27 18:44:57 +02006211 if (cap->count1 > 1)
6212 // if it fails, let the cursor still move to the last char
Bram Moolenaar9c272a92019-08-16 21:54:27 +02006213 (void)cursor_down(cap->count1 - 1, FALSE);
Bram Moolenaard5c82342019-07-27 18:44:57 +02006214
Bram Moolenaar02631462017-09-22 15:20:32 +02006215 i = curwin->w_leftcol + curwin->w_width - col_off - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216 coladvance((colnr_T)i);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006217
Bram Moolenaar74ede802021-05-29 19:18:01 +02006218 // if the character doesn't fit move one back
6219 if (curwin->w_cursor.col > 0
6220 && (*mb_ptr2cells)(ml_get_cursor()) > 1)
6221 {
6222 colnr_T vcol;
6223
6224 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &vcol);
6225 if (vcol >= curwin->w_leftcol + curwin->w_width - col_off)
6226 --curwin->w_cursor.col;
6227 }
6228
Bram Moolenaard5c82342019-07-27 18:44:57 +02006229 // Make sure we stick in this column.
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006230 validate_virtcol();
6231 curwin->w_curswant = curwin->w_virtcol;
6232 curwin->w_set_curswant = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 }
6234 }
6235 break;
6236
6237 /*
6238 * "g*" and "g#", like "*" and "#" but without using "\<" and "\>"
6239 */
6240 case '*':
6241 case '#':
6242#if POUND != '#'
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006243 case POUND: // pound sign (sometimes equal to '#')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244#endif
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006245 case Ctrl_RSB: // :tag or :tselect for current identifier
6246 case ']': // :tselect for current identifier
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 nv_ident(cap);
6248 break;
6249
6250 /*
6251 * ge and gE: go back to end of word
6252 */
6253 case 'e':
6254 case 'E':
6255 oap->motion_type = MCHAR;
6256 curwin->w_set_curswant = TRUE;
6257 oap->inclusive = TRUE;
6258 if (bckend_word(cap->count1, cap->nchar == 'E', FALSE) == FAIL)
6259 clearopbeep(oap);
6260 break;
6261
6262 /*
6263 * "g CTRL-G": display info about cursor position
6264 */
6265 case Ctrl_G:
Bram Moolenaared767a22016-01-03 22:49:16 +01006266 cursor_pos_info(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267 break;
6268
6269 /*
6270 * "gi": start Insert at the last position.
6271 */
6272 case 'i':
6273 if (curbuf->b_last_insert.lnum != 0)
6274 {
6275 curwin->w_cursor = curbuf->b_last_insert;
6276 check_cursor_lnum();
6277 i = (int)STRLEN(ml_get_curline());
6278 if (curwin->w_cursor.col > (colnr_T)i)
6279 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 if (virtual_active())
6281 curwin->w_cursor.coladd += curwin->w_cursor.col - i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 curwin->w_cursor.col = i;
6283 }
6284 }
6285 cap->cmdchar = 'i';
6286 nv_edit(cap);
6287 break;
6288
6289 /*
6290 * "gI": Start insert in column 1.
6291 */
6292 case 'I':
6293 beginline(0);
6294 if (!checkclearopq(oap))
6295 invoke_edit(cap, FALSE, 'g', FALSE);
6296 break;
6297
6298#ifdef FEAT_SEARCHPATH
6299 /*
6300 * "gf": goto file, edit file under cursor
6301 * "]f" and "[f": can also be used.
6302 */
6303 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006304 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305 nv_gotofile(cap);
6306 break;
6307#endif
6308
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006309 // "g'm" and "g`m": jump to mark without setting pcmark
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310 case '\'':
6311 cap->arg = TRUE;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006312 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313 case '`':
6314 nv_gomark(cap);
6315 break;
6316
6317 /*
6318 * "gs": Goto sleep.
6319 */
6320 case 's':
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01006321 do_sleep(cap->count1 * 1000L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006322 break;
6323
6324 /*
6325 * "ga": Display the ascii value of the character under the
6326 * cursor. It is displayed in decimal, hex, and octal. -- webb
6327 */
6328 case 'a':
6329 do_ascii(NULL);
6330 break;
6331
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 /*
6333 * "g8": Display the bytes used for the UTF-8 character under the
6334 * cursor. It is displayed in hex.
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006335 * "8g8" finds illegal byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336 */
6337 case '8':
Bram Moolenaara83c3e02006-03-17 23:10:44 +00006338 if (cap->count0 == 8)
6339 utf_find_illegal();
6340 else
6341 show_utf8();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006344 // "g<": show scrollback text
Bram Moolenaarcfc7d632005-07-28 22:28:16 +00006345 case '<':
6346 show_sb_text();
6347 break;
6348
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349 /*
6350 * "gg": Goto the first line in file. With a count it goes to
6351 * that line number like for "G". -- webb
6352 */
6353 case 'g':
6354 cap->arg = FALSE;
6355 nv_goto(cap);
6356 break;
6357
6358 /*
6359 * Two-character operators:
6360 * "gq" Format text
6361 * "gw" Format text and keep cursor position
6362 * "g~" Toggle the case of the text.
6363 * "gu" Change text to lower case.
6364 * "gU" Change text to upper case.
6365 * "g?" rot13 encoding
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006366 * "g@" call 'operatorfunc'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367 */
6368 case 'q':
6369 case 'w':
6370 oap->cursor_start = curwin->w_cursor;
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006371 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 case '~':
6373 case 'u':
6374 case 'U':
6375 case '?':
Bram Moolenaar12033fb2005-12-16 21:49:31 +00006376 case '@':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006377 nv_operator(cap);
6378 break;
6379
6380 /*
Bram Moolenaarf711faf2007-05-10 16:48:19 +00006381 * "gd": Find first occurrence of pattern under the cursor in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 * current function
6383 * "gD": idem, but in the current file.
6384 */
6385 case 'd':
6386 case 'D':
Bram Moolenaarf75a9632005-09-13 21:20:47 +00006387 nv_gd(oap, cap->nchar, (int)cap->count0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388 break;
6389
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 /*
6391 * g<*Mouse> : <C-*mouse>
6392 */
6393 case K_MIDDLEMOUSE:
6394 case K_MIDDLEDRAG:
6395 case K_MIDDLERELEASE:
6396 case K_LEFTMOUSE:
6397 case K_LEFTDRAG:
6398 case K_LEFTRELEASE:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01006399 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00006400 case K_RIGHTMOUSE:
6401 case K_RIGHTDRAG:
6402 case K_RIGHTRELEASE:
6403 case K_X1MOUSE:
6404 case K_X1DRAG:
6405 case K_X1RELEASE:
6406 case K_X2MOUSE:
6407 case K_X2DRAG:
6408 case K_X2RELEASE:
6409 mod_mask = MOD_MASK_CTRL;
6410 (void)do_mouse(oap, cap->nchar, BACKWARD, cap->count1, 0);
6411 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006412
6413 case K_IGNORE:
6414 break;
6415
6416 /*
6417 * "gP" and "gp": same as "P" and "p" but leave cursor just after new text
6418 */
6419 case 'p':
6420 case 'P':
6421 nv_put(cap);
6422 break;
6423
6424#ifdef FEAT_BYTEOFF
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006425 // "go": goto byte count from start of buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426 case 'o':
6427 goto_byte(cap->count0);
6428 break;
6429#endif
6430
Bram Moolenaar6e0ce172019-12-05 20:12:41 +01006431 // "gQ": improved Ex mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432 case 'Q':
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006433 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006434 {
6435 clearopbeep(cap->oap);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006436 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006437 break;
6438 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006439
Bram Moolenaar071d4272004-06-13 20:20:40 +00006440 if (!checkclearopq(oap))
6441 do_exmode(TRUE);
6442 break;
6443
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444 case ',':
6445 nv_pcmark(cap);
6446 break;
6447
6448 case ';':
6449 cap->count1 = -cap->count1;
6450 nv_pcmark(cap);
6451 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452
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,
Bram Moolenaar6e371ec2021-12-12 14:16:39 +00006509 0, NULL) == 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}